date
stringlengths 12
12
⌀ | text
stringlengths 98
60.4k
| topic
stringlengths 15
36k
| url
stringlengths 37
226
| root_topic
stringclasses 63
values | heading
stringlengths 1
148
| related_topics
stringlengths 7
36.6k
| author
stringclasses 1
value | vector
stringlengths 44.7k
45.8k
⌀ |
---|---|---|---|---|---|---|---|---|
10 Feb, 2025
|
Calculating the Product of List Lengths in a Dictionary – Python
10 Feb, 2025
The task of calculating the product of the lengths of lists in a dictionary involves iterating over the dictionary’s values, which are lists and determining the length of each list. These lengths are then multiplied together to get a single result. For example, if d = {‘A’: [1, 2, 3], ‘B’: [4, 5], ‘C’: [6, 7, 8, 9]}, the product of the lengths of the lists is calculated as 3 * 2 * 4 = 24.
Using math.prod()math.prod() is a highly optimized function that calculates the product of an iterable efficiently. By using a generator expression to iterate over the dictionary values, we avoid unnecessary memory consumption and achieve an optimal solution.
Python
import math
d = {'Gfg': [6, 5, 9, 3, 10],'is': [1, 3, 4],'best': [9, 16]}
res = math.prod(len(lst) for lst in d.values())
print(res)
Output30
Explanation: for loop iterates over the dictionary’s list values, calculates their lengths with len(lst), and math.prod() efficiently multiplies these lengths using a generator expression, avoiding intermediate lists.
Table of Content
Using functools.reduce()Using list comprehensionUsing for loopUsing functools.reduce()reduce() from functools applies an operation cumulatively, making it an efficient way to compute the product without explicit loops. By combining it with operator.mul, we achieve a clean, functional approach to multiplying the lengths of dictionary value lists.
Python
from functools import reduce
import operator
d = {'Gfg': [6, 5, 9, 3, 10],'is': [1, 3, 4],'best': [9, 16]}
res = reduce(operator.mul, map(len, d.values()), 1)
print(res)
Output30
Explanation: reduce() applies map(len, d.values()) to calculate their lengths and operator.mul multiplies these lengths together, starting with an initial value of 1.
Using list comprehensionList comprehension generate a list of lengths from dictionary values. While it introduces an intermediate list increasing memory usage , it remains a simple and readable method for computing the product when combined with math.prod() or reduce().
Python
import math
d = {'Gfg': [6, 5, 9, 3, 10], 'is': [1, 3, 4], 'best': [9, 16]}
lengths = [len(lst) for lst in d.values()]
res = math.prod(lengths)
print(res)
Output30
Explanation: list comprehension iterates over the dictionary’s list values, calculates their lengths with len(lst) and stores these lengths in the lengths list. The math.prod() then computes the product of the lengths .
Using for loopFor loop provides a straightforward and beginner-friendly approach to multiplying the lengths of dictionary values. Though it is not as concise as math.prod() or reduce(), it is still efficient and does not introduce extra memory overhead like list comprehension.
Python
import math
d = {'Gfg': [6, 5, 9, 3, 10],'is': [1, 3, 4],'best': [9, 16]}
res = 1
for lst in d.values():
res *= len(lst)
print(res)
Output30
Explanation: for loop iterates over the dictionary’s list values, calculates their lengths using len(lst) and multiplies these lengths together, updating the res variable.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python
|
https://www.geeksforgeeks.org/python-dictionary-value-lists-lengths-product/?ref=next_article
|
Pandas
|
Calculating the Product of List Lengths in a Dictionary – Python
|
Python | Pandas Series.shift(), Pandas, Python | Pandas Series.to_sparse(), Python | Pandas Series.str.swapcase(), Python | Pandas Series.sum(), Calculating the Product of List Lengths in a Dictionary – Python, Pandas Tutorial, Python – Dictionary values String Length Summation, Python | Pandas Series.sort_values(), Python | Pandas Series.to_string(), Dictionaries in Python, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Python | Pandas Series.var
|
GeeksforGeeks
|
[-0.00540516153, 0.00436408399, -0.00704556191, 0.0520426184, 0.0545186922, -0.000751967425, 0.0523127355, 0.0211366862, 0.0242430363, 0.00411647651, 0.0191108063, 0.00698366, 0.0101913037, -0.0139898304, 0.0227348804, 0.00954414811, 0.00586942583, 0.0132695166, -0.0071749934, 0.00788405165, 0.0076870909, -0.0176701788, -0.0340798125, 0.0173100233, 0.012335361, 0.0118514011, 0.0392795727, -0.00316262455, 0.0399773754, 0.011041048, 0.0145975938, -0.0104895588, -0.0475856811, -0.0242880564, -0.0212267246, 0.0219808035, 0.0376813747, 0.0148226917, 0.000144730875, -0.0162295531, -0.002122954, 0.00818793382, -0.0264264848, -0.0276870336, -0.0122453216, -0.0340798125, -0.00397297647, 0.0163983759, -0.0246031918, 0.0255711135, 0.0191445705, -0.0438490584, -0.0272143278, 0.0181879047, 0.00550645543, 7.03430715e-06, -0.014901476, 0.0109904017, -0.00527854403, 0.0236352719, 0.00348338881, -0.0373662375, 0.0115362639, -0.013382066, 0.030073069, 0.0373212211, -0.0235227235, 0.0131457131, 0.038041532, -0.0137197124, -0.0250083692, 0.0430161953, 0.0276195034, -0.011069186, 0.0033145654, -0.0141136339, -0.0172650032, 0.0133370459, 0.0286999736, 0.0611365698, 0.00297973258, -0.0131232031, -0.000812462473, -0.0404950976, -0.0211254302, 0.0138210068, -0.0555541441, -0.0291726775, -0.018998256, -0.0124929296, -0.0289475806, 0.00330049684, 0.00779964, 0.00559086725, 0.0039983, 0.00419526082, -0.0161732789, 0.0216769204, 0.00836238451, 0.0120427338, -0.00532637723, 0.0211817063, 0.0117838709, 0.00010876797, 0.0348226354, -0.00486492692, -0.00536858337, -0.0032020167, 0.0234777033, 0.030613305, 5.42081289e-05, -0.0155880246, -0.0150928097, -0.0108722253, -0.0160044562, -0.0469554067, -0.00215390488, -0.030613305, 0.0260663293, 0.00757454196, 0.0258637406, 0.00294034043, -0.00831173733, 0.0464601927, -0.042926155, 0.0188519433, -0.0159819461, 0.00459480938, -0.0111198323, -0.0402474925, -0.0253910348, 0.0183004532, -0.00707369903, -0.0196735505, 0.0244681332, 0.0371186323, 0.00874505099, 0.00935281441, 0.0447044298, 0.026966719, -0.010551461, -0.0243330747, 0.00653346442, -0.00994932372, -0.0135621438, -0.0198761374, 0.00501405401, 0.0473605841, 0.0220595878, 0.0139335552, -0.0455823094, -0.0206189603, 0.00686548371, 0.031873852, -0.0182329249, -0.0325941667, -0.0152503774, -0.0164208859, 0.0182329249, 0.0191558246, 0.0142149283, -0.00529261259, -0.00911083445, -0.00876193307, -0.00531230867, 0.0194146875, -0.008491816, -0.0205514319, -0.0392795727, 0.00997746084, 0.0286774635, 0.0139110461, 0.00132456, 0.00348338881, -0.0149352411, -0.0232526064, 0.020033706, -0.000105074963, 0.0218232349, 0.00220455183, 0.00931905, -0.0325941667, 0.0333369896, 0.0135621438, 0.00456948578, -0.031873852, 0.029555345, -0.00593132759, 0.0339897722, 0.0101181474, -0.00310916384, 0.0248057805, 0.0120652439, -0.000320060964, -0.00304726185, -0.0158581417, -0.00604950404, 0.00499435794, -0.0320089124, 0.0183679834, -0.00321608526, -0.00972985383, -0.00512097543, 0.00416149618, 0.018266689, -0.0388518833, -0.035250321, -0.00319638918, 0.0117050866, 0.00541078905, -0.0134721054, 0.0363532975, -0.0190657862, -0.0261338577, -0.00265896809, 0.0134721054, 0.00484241685, 0.0447494499, -0.000813165912, -0.0462801121, -0.0303882062, -0.00774336513, 0.00230584596, -0.0290601291, -0.0223972332, -0.00974110886, -0.0181316305, 0.0305682849, -0.0348676518, -0.0185593162, -0.0124366554, -0.0381540805, 0.0103826374, -0.0129431253, 0.0107709309, -0.00283060526, -0.016691003, -0.0204388835, 0.00596509222, 0.027529465, 0.00589756295, -0.0490263067, 0.0354078896, -0.00913334452, 0.011322421, -0.00653346442, -0.0698253438, -0.00223972346, 0.00109664851, 0.0153404167, 0.0105964802, -0.00259003183, 0.0262914263, -0.0241755061, -0.0362407491, -0.0136521831, 0.0500167385, 0.00216515968, -0.0286099333, 0.0217782147, 0.0158581417, -0.0104557937, -0.0315136947, -0.00619019, 0.022611076, 0.0268541705, 0.0107090287, -0.0217782147, 0.0226786062, -0.0131682232, 0.00839614868, -0.0328417718, -0.0140911238, -0.00694989553, 0.00976924598, 0.0316037349, 0.0406526662, -0.00786154158, 0.059380807, 0.0317387953, -0.0127630467, 0.00276448275, -0.000508932106, 0.020292569, 0.038041532, -0.0146088488, -0.00991556, -0.0739221275, -0.0130894389, -0.0158468876, 0.00528698508, 0.0208553132, 0.0400899239, 0.0142937116, -0.00469328975, -0.0220145676, -6.26053297e-05, -0.0252109561, -0.0236127619, -0.0125604589, -0.0505569726, 0.0205514319, -0.0115812831, -0.0124816746, -0.0242880564, -0.0176476706, -0.021069156, 0.00426279, 0.00507032871, 0.0149352411, 0.0158131216, -0.0828810185, -0.00703430688, -0.00332582043, 0.0148452017, 0.00881258, 0.0428361148, -0.0113393031, 0.0185480602, -0.0336521268, 0.0032245263, -0.032391578, -0.0261338577, 0.032886792, 0.0194034334, -0.0196735505, -0.0647831559, -0.007968463, 0.00129220227, -0.0324591063, -0.0151828481, -0.024670722, -0.0347776152, 0.0293527562, 0.0132244974, -0.016195789, -0.0119639495, -0.0418456867, -0.0173325334, -0.00048642233, 0.0469103865, 0.0343724377, 0.0105964802, 0.0197410788, 0.00053284876, -0.0188406873, -0.0107484208, 0.0146313589, -0.0168485716, -0.0265165232, 0.0006271085, -0.0197973531, 0.0072987969, -0.000329909, -0.00613954337, -0.00571467122, 0.00343836937, -0.000939783407, -0.0290151108, 0.00897577591, -0.0385817662, -0.0107821859, -0.0185930803, -0.0312435776, -0.0533031672, -0.0231850762, 0.00384354545, -0.00227630185, 0.0247607604, -0.00380133954, -0.00906018727, 0.00566402404, 0.0381540805, -0.0070962091, -0.00239588507, 0.0293977764, 0.0291051492, 0.0185030419, -0.0338997319, 0.00773773761, -0.0338547118, 0.00564714195, -0.00155458192, -0.0201912746, 0.00562181836, 0.0189307276, -0.0143162217, -0.0242655464, 0.0299830306, 0.0294653047, -0.0158468876, 0.0247382522, -0.00988742243, -0.0253009964, -0.000259741792, 0.0211704504, 0.016983632, 0.0318288319, 0.00120356993, -0.000375632, -0.0318063237, -0.00597071974, -0.038559258, -0.0311535392, -0.015678063, -0.0452896841, -0.0056302594, -0.00595946517, 0.0345750265, -0.0196510404, -0.0140461046, 0.0521776751, -0.0458299182, -0.0323465578, 0.0192233548, -0.0318063237, -0.0191895906, 0.0479008183, -0.0196960606, 0.0446368977, 0.0141023789, -0.020056216, 0.00944285374, -0.0217669606, -0.0160494745, -0.00375913363, 0.0413054526, 0.0104501667, -0.00148986629, 0.0163646117, -0.00847493298, 0.0273268763, 0.0266740918, 0.0130444188, -0.0255486034, -0.010298226, 0.0176251605, 0.0051434855, -0.00484523084, 0.0119977146, -0.0133145368, -0.0302981678, -0.00935281441, 0.0416205898, 0.0240854677, 0.0296678934, -0.0132244974, 0.0159594361, 0.019786099, -0.0122228116, 0.00959479529, -0.0278671104, -0.00255204667, 0.00128305762, 0.0528979897, -0.0179177877, 0.00138857227, -0.0116037931, 0.0110973231, 0.0176814348, 0.0382441208, 0.0253235064, 0.00312604615, 0.0422058441, 0.0461450554, 0.0366009064, -0.0153629268, -0.0372086726, -0.00482834829, 0.0311310291, -0.00257174275, -0.0113280481, -0.0528529696, 0.00613391586, 0.032391578, -0.0371411406, 0.0268316604, 0.0154417111, -0.0258862507, 0.00432750583, 0.0185368061, -0.0123916352, -0.0142374374, -0.0210128818, -0.0247607604, -0.00831736438, 0.00125914102, 0.0108272051, 0.0168710817, -0.0323015377, -0.00916148163, 0.0120427338, 0.0266515836, -0.00375350635, 0.0340122804, 0.0178615134, -0.0507370494, -0.0133483009, 0.0233651549, -0.0239729192, 0.0076308162, -0.0083342474, -0.00906018727, 0.0331344, 0.0147889275, 0.00443442725, 0.0244456232, -0.0119752046, -0.025953779, 0.00624646479, -0.0118626552, 0.0405401178, -0.0127517916, 0.0322790295, -0.0123128509, 0.00216234592, -0.0147889275, 0.0246257018, 0.00271102204, -0.0111479703, -0.00616205297, 0.00965669658, -0.0130444188, 0.0217331946, -0.0268541705, 0.0112155, -0.0136972032, 0.0150928097, 0.0322790295, 0.021856999, -0.00452446612, 0.00120919745, 0.0091952458, -0.00770397298, 0.00747887511, -0.0054276716, -0.00848056097, 0.0013498835, 0.0378164351, -0.015655553, -0.00948787387, 0.00916710868, -0.00707932655, 0.011840146, -0.000301420048, 0.00312604615, -0.0160607304, -0.0209453534, -0.0218007248, -0.00810914952, 0.000307926792, 0.00347776152, 0.0181316305, -0.0213392749, -0.0270567592, -0.0197073147, 0.00785591453, -0.0272143278, 0.00969608873, -0.0583453551, -0.0272368379, 0.0368935354, -0.0338997319, 0.00763644371, 0.0276870336, 0.0415980779, -0.00397860399, -0.00894201081, -0.0171074346, 0.00842991378, 0.00553177902, 0.0186043363, -0.00524759293, 0.0107034016, -0.0561394, 0.0281597376, 0.00121763861, -0.0198198631, -0.000276799983, -0.00161367, -0.00334551651, 0.00693864049, -0.0156217888, 0.00438096654, -0.0179290418, -0.0271918178, -0.0412154123, -0.00754640484, -0.0217444506, 0.00928528514, 0.014653869, 0.0471805036, 0.0101744216, -0.0190995503, 0.00927965809, 0.0116938325, 0.00498873042, -0.00674167974, 0.0180978645, -0.0151941031, -0.0146876331, 0.00986491237, 0.0331344, -0.0259988, 0.0239504091, -0.0103601273, 0.000844116847, -0.018525552, 0.0123691261, -0.0332694575, -0.0513673238, -0.0288575422, 0.00601011189, -0.0238603689, 0.00555991614, -7.15301139e-05, -0.0272368379, 0.0255486034, 0.0091446, -0.0235902518, 0.0312660895, -0.00228333613, -0.00316262455, -0.0196510404, 0.0324140862, 0.0108722253, -0.0191333145, -0.0105795981, -0.00138364825, -0.0381090604, 0.0307933837, -0.0159144159, -0.00530949514, 0.0230500177, 0.0237928405, -0.0268316604, 0.00101153331, 0.0112886559, -0.00664601335, 0.024670722, -0.00706807198, -0.0163533576, -0.00574843585, 0.071941264, -0.00490150508, -0.0014349987, -0.0423634127, -0.00553459302, 0.0500167385, 0.00445412332, -0.00340741826, -0.0231850762, 0.0197073147, 0.0224647634, 0.00077588408, -0.00721438555, -0.016195789, -0.0119977146, 0.0185368061, 0.0188406873, -0.0184692759, 0.0314911865, -0.0178164933, 0.0103938924, 0.0381090604, -0.0164096318, -0.0113899503, -0.012357871, 0.0143162217, 0.00862687454, 0.00934155937, -0.001350587, -0.00349183, 0.0114405975, 0.00946536381, -0.00847493298, -0.0329768322, 0.033967264, -0.0342823975, 0.0310635, 0.00495778, -0.00900391303, -0.0201462563, -0.0260888375, 0.0167360231, 0.00761393411, 0.0167135131, 0.0206639804, -0.0425434895, 0.0176476706, -0.0210579019, -0.0232300963, -0.0239954293, 0.00230725273, 0.00996057875, -0.020573942, -0.00494089723, 0.0551939867, 0.0517725, -0.00488743652, 0.0244906433, 0.0279346406, 0.0189532377, -0.0113730673, -0.0219245292, 0.0215080976, -0.0108497152, 0.00689924834, -0.0216994304, 0.0093077952, 0.00661787624, 0.000832862, -0.0205514319, -0.00946536381, 0.00161085627, 0.0121552823, -0.00795158092, 0.0168598276, -0.0128868502, -0.016702259, 0.0267866421, -0.00678669941, 0.0150365345, -0.049116347, -0.000777290959, -0.00929091312, -0.0328192636, -0.00775462, -0.0100112259, -0.0222734306, 0.0119189303, -0.0189082175, -0.016443396, 0.00402643718, -0.0164208859, -0.00118809449, 0.00053460733, 0.0311085191, -0.0230275076, 0.020067472, 0.0157906134, -0.00873379596, -0.0104839318, 0.00247889, -0.00879569724, -0.0475406609, 0.0026336445, 0.0235452335, 0.0180978645, -0.0295328349, -0.0038041533, 0.0300055407, 0.0592007302, 0.0324816182, 0.011570028, -0.00678669941, 0.0120990081, -0.00349464384, -0.00462857401, 0.0398873352, -0.0110297939, 0.0308609121, 0.00918961875, -0.0159256719, 0.0379289836, 0.00824420806, -0.0235227235, 0.0340122804, 0.000671072921, 0.00936406944, -0.000747043407, 0.0106358724, -0.00058349577, -0.0201237462, -0.0353178494, -0.0174675919, 0.0169611219, -0.00676419, 0.00275744847, 0.0310409907, -0.0320314206, 0.0183342174, 0.0124591645, 0.0294427965, -0.0162970833, 0.0307933837, 0.00187816, 4.28378326e-06, 0.0197973531, 0.0193584133, 0.013370811, 0.00392232975, 0.00285311486, 0.0420257635, -0.0166009646, -0.0362407491, -0.0126504982, -0.0273268763, 0.0157906134, -0.00748450262, 0.0263814647, 0.0150703, -0.0170849245, -0.0023269488, 0.00685422868, 0.00198648823, 0.0152841425, -0.0201124903, 0.0063702683, -0.0241079777, -0.027777072, -0.00373943755, -0.0238153506, 0.0029290854, 0.029037619, 0.0143049667, -0.0118851652, -0.0250308793, -0.0286774635, 0.0191445705, -0.00893638376, -0.0272368379, -0.00102489849, 0.0135846538, 0.00924589299, -0.00058244064, 0.0446594097, -0.0090264231, 0.024693232, 0.0287675019, -0.00807538442, 0.0066854055, -0.0276870336, -0.00355935935, -0.00528135756, 0.0346425548, 0.0385367498, 0.012864341, 0.0051885047, 0.0283623263, -0.0160269644, -0.00163477298, -0.0106302453, -0.00674730726, 0.011817636, -0.00515474, 0.0124479095, 0.00998871587, 0.0190995503, 0.0235452335, 0.0168598276, 0.00532074971, 0.0194709618, -0.0524027757, -0.0114462245, -0.0203713533, 0.0125492038, -0.0297804419, 0.0212942548, 0.0115137538, -0.00210044417, -0.0238828789, 0.000239518151, -0.0219808035, 0.0477207378, -0.0159594361, 0.0379740037, -0.00258299755, 0.0233426448, 0.0128868502, 0.00675856229, 0.00687111123, 0.0379740037, 0.0134495953, -0.0145413196, -0.0286549535, -0.0585254356, 0.0169273559, -0.0356780067, -0.0284748748, 0.00596509222, -0.0337421633, -0.0530780666, -0.0106752645, -0.0133032817, -0.0119752046, -5.54831e-05, -0.0132920267, 0.0352278091, -0.0146988882, 0.0255936235, -0.0291951876, 0.027754562, -0.0449295267, -0.00851995312, 0.0124254, 0.0434663892, 0.0182554331, 0.0144850453, -0.000894060417, 0.0179402977, -0.0123803802, -0.00602699444, -0.00323015382, 0.0162520632, -0.00425153505, 0.0234777033, 0.0240854677, -0.00592570053, 0.0101687945, 0.0049380837, 0.001543327, 0.00496340729, -0.0163533576, -0.00771522801, 0.0397072583, -0.012087753, -0.015171594, 0.000998168136, 0.000531441881, 0.000688306929, -0.00891950168, 0.0177151989, 0.0178615134, -0.0316937752, 0.0163083375, -0.0632074699, -0.00381822186, -0.0166572388, -0.00843554083, -0.00622958224, 0.0189644918, 0.00990993157, -0.0105120689, 0.00868877582, 0.0114405975, -0.0297804419, -0.019786099, -0.0456273295, -0.0201687645, 0.0320764408, 0.0436014496, 0.0382216126, 0.0175801404, -0.0139448103, -0.0187506489, 0.0162070431, 0.0183117092, -0.00353966327, -0.00482272077, 0.0554641038, 0.0256836619, 0.0304782465, -0.00386886881, -0.0039842315, -0.00817667879, 0.00879007, 0.035970632, 0.00480583869, -0.00566965155, -0.0116037931, -0.0138435168, 0.0202588048, -0.00364377117, -0.0182892, -0.00538265193, 0.0109228725, -0.054203555, -0.00715248333, -0.0312885977, 0.0366459265, -0.00293471292, 0.0262464061, 0.00649407227, -0.0253460146, 0.0594708472, -0.0375913382, -0.0122790867, -0.0164096318, 0.00859310944, -0.0145750847, 0.0421158038, 0.0105064409, -0.0148001825, -0.0248508, -0.00377320242, 0.0145188095, 0.00385480025, 0.0329993404, 0.0188744534, 0.00116277102, -0.0237253103, -0.0125492038, -0.0281147193, -0.0171974748, -0.0191670805, 0.0107371667, -0.0338096954, 0.00308946776, -0.0252559762, -0.0155542595, -0.0145638296, -0.0516374409, -0.00402925117, -0.00108750386, 0.00740009127, -0.00391107472, 0.00322171254, 0.00278417883, 0.00629148446, -0.00553740654, -0.0354078896, 0.0180190802, -0.0160157103, 0.0280922092, -0.00160100835, 0.000986209838, -0.00890261866, 0.00082301395, 0.0140461046, 0.0262689162, -0.0252559762, 0.00614517089, 0.011570028, -0.00101997459, 0.0133370459, -0.020821549, -0.0279346406, 0.00588068087, 0.00197804719, 0.0237028021, -0.00393358432, 0.00465108408, -0.0177602191, -0.0141136339, -0.0218007248, -0.00198086095, -0.0408777669, 0.00512097543, -0.0103094801, -0.00319920294, -0.00613391586, -0.00296566379, 0.00104107743, 8.72693709e-05, -0.010528951, 0.00212858128, 0.0182892, -0.0120990081, -0.00272649736, -0.00733818905, 0.0137647325, -0.010281343, -0.00265756133, 0.0228586849, 0.0327292234, 0.0065278369, -0.0117501067, -0.00252390932, 0.00139419967, 0.00430218223, 0.0186268445, 0.0166234747, 0.000807538454, -0.0257737, 0.0298929922, -0.00581877865, -0.00972422585, -0.0134045752, -0.00391388824, -0.0324816182, -0.00894201081, -0.010022481, 0.00906018727, 0.0190432761, -0.00273212488, 0.0187844131, 0.00502812257, -0.0137309674, -0.0178615134, 0.0133257918, -0.0117838709, 0.0151153188, -0.014901476, -0.0179740619, 0.019786099, 0.0125266938, 0.00622395473, -0.011817636, 0.000528276491, -0.00704556191, 0.0139898304, 0.018514296, -0.00419526082, -0.0158131216, -0.00587505335, -3.60288432e-05, 0.0553740673, 0.0026097279, -0.0158243775, 0.0109791467, 0.0151265739, -0.0038941924, 0.0122678317, 0.0446143895, 0.00891387369, -0.00268288469, -0.0140235946, 0.0186831187, -0.0125379488, 0.0441867039, -0.00855934527, 0.00202165986, -0.011069186, 0.00522789685, -0.0189419817, 0.0140686138, 0.00760830659, -0.0127180275, -0.024940839, 0.0102025587, 0.00661224872, 0.0232976247, -0.0130444188, 0.0250758976, -0.0223522149, -0.00232835556, 0.0159706902, 0.0135283796, 0.0141248889, -0.0181316305, 0.0101125203, 0.0317387953, 0.0190995503, 0.0096060494, -0.0345975347, 0.0155204954, -0.00567527907, -0.021575626, 0.0266065635, 0.00952726509, 0.00679232692, -0.0014589153, -0.00677544437, -0.0230725277, 0.00576813193, -0.0144287711, -0.031873852, -0.00920650084, -0.0121552823, 0.00699491519, 0.0026223897, 0.00927403, 0.0107202837, -0.00742822839, 0.00595946517, -0.0246482119, 0.00821607094, -0.00807538442, -0.0217444506, -0.00493245618, -0.012864341, 0.014653869, -0.0167697873, -0.0131006939, 0.000913053052, -0.00395609438, -0.0213842932, 0.0305457748, 0.0179177877, -0.00496622082, -0.00729316939, 0.00937532447, -0.0171637088, 0.00609452371, 0.0122115575, 0.0083455015, 0.000118440148, 0.027506955, -0.0351152606, 0.0227348804, -0.0153854368, 0.0147551624, -0.0121665373, -0.0116713224, -0.0172987673, -0.0387618467, -0.0076870909, 0.00978612807, 0.0121215181, 0.0225773118, -0.0241755061, -0.0249633491, 0.010022481, -0.0164659061, -0.0150140254, 0.00777712977, -0.00567246508, 0.0103376182, 0.0229149591, -0.0175576303, -0.0106921466, 0.00791218877, -0.00198789523, -0.0111873625, 0.0154867303, -0.000201357034, 0.0361732207, 0.0279121306, 0.0159932, 0.0262689162, 0.0204839017, 0.00776024768, -0.0160719845, -0.0458974466, 0.0185818262, 0.0111704795, 0.00560775, 0.00685422868, 0.00109664851, -0.00810352154, -0.0132807717, -0.0213842932, 0.0140461046, -0.0242880564, 0.0047326819, 0.00603262195, -0.0261788778, -0.00117191556, 0.0220258217, -0.0148902209, -0.0111479703, -0.000898281, 0.00367472204, -0.0147439074, -0.0183792375, 0.0114405975, -0.00548113231, 0.00762518868, 0.0244456232, -0.00364939845, -0.0133032817, 0.00819356088, 0.0294202864, 0.0473605841, 0.00309509505, 0.0158693977, -0.035182789, -0.011570028, 0.0162070431, -0.00857059937, -0.0133145368, -0.0133032817, 0.0225435477, -0.00801348221, -0.0103263631, 0.00403206469, 0.0078108944, -0.00873942301, -0.0140573597, 0.0249858592, 0.0108103231, -0.0188857075, -0.00866626669, 0.00458355434, -0.0109116174, -0.0047017308, -0.0184805319, -0.00150252797, -0.0066854055, -0.00682609156, 0.0027250906, 0.0108891074, -0.0267866421, 0.00019625717, 0.0164096318, 0.0130219096, -0.0176814348, 0.0229037032, 0.0184467677, -0.00208356185, -0.0211704504, 0.0253910348, 0.00539953401, 0.0114518516, -0.0127968118, -0.00553459302, -0.0130556738, 0.00414461363, 0.00413054507, 0.0170624144, -0.00833987445, 0.0111198323, 4.36786504e-05, -0.0224760175, 0.0046764072, -0.00536576938, -0.0177151989, -0.000605302106, -0.0245356634, -0.0114518516, -0.00902079511, -0.0222059, -0.00471298583, 0.00739446376, -0.00346932025, -0.0029290854, 0.00462013297, -0.0158581417, 0.0152503774, 0.0309284423, -0.0242880564, 0.0316262431, -0.00117754296, 0.00463982904, 0.00849744305, -0.0221833903, 0.00870565884, 0.0116263032, 0.0158919059, -0.0212267246, -0.000688306929, 0.00424028048, 0.00515474, 0.00737195369, 0.0143049667, 0.0116263032, -0.0260663293, -0.00168541993, 0.0109791467, 0.0367359668, 0.00994369667, 0.0213167649, 0.0296228733, 0.00483960332, -0.0394821577, 0.0361282, -0.0166684948, 0.0072200126, 0.00373662403, -0.0372987092, -0.0296453834, -9.8919947e-05, 0.00915585458, 0.0356554948, 0.0110354209, 0.0335395746, -0.0031344872, 0.0170849245, -0.0159819461, -0.0044738194, 0.0200899802, 0.00349183, 0.00820481591, -0.0117726168, -0.00147861138, 0.0210579019, 0.0322790295, 0.0271918178, 0.0168485716, -0.0117275966, 0.0156217888, 0.00873942301, -0.0374337696, 0.00783903152, 0.00950475596, -0.00897577591, -0.0290601291, 0.00379852578, -0.0353853777, 0.0257286821, 0.00082864135, -0.0164884161, 0.00999997091, 0.0314011462, -0.00245778682, -0.00640966045, -0.0208328031, -0.0169948861, 0.00100027851, -0.00688799331, -0.0152841425, -0.0121215181, 0.0178277474, -0.00268147793, 0.0122565767, -0.00369723188, -0.00472986791, -0.0178727675, -0.00474956399, -0.0204726476, -0.0321214609, 0.0595158674, -0.0246482119, -0.0385817662, -0.0032245263, 0.0117613617, -0.0545637123, -0.0207202546, 0.0114743616, 0.00755203189, 0.0102306958, -0.0306583233, 0.00321045774, 0.0230275076, 0.0505569726, -0.0152503774, 0.00956665725, -0.00264912, 0.0060720141, 0.00774336513, -0.0121552823, -0.0228361748, 0.0133145368, -0.00999434385, 0.002122954, -0.0261563677, 0.0137534775, 0.0109453816, 0.0335845947, -0.0152616324, -0.00969608873, -0.00693301298, -0.00218204199, -0.00577375945, -0.0151153188, 0.0144287711, 0.00578501401, 0.00448226044, -0.0219357833, 0.0197748449, 0.017490102, 0.00419807434, 0.00466796616, -0.0113561852, -0.0166234747, 0.0232976247, -0.00819918793, 0.0186493546, 0.000559227425, -0.0124591645, 0.0233651549, 0.00073227135, 0.027506955, 0.0296228733, -0.0044259862, -0.00818230584, -0.0211366862, -0.0268091504, 0.00497747585, -0.00516036758, 0.00157990539, 0.0118514011, 0.0120427338, -0.00614517089, 0.00929654, -0.00337646739, -0.039054472, -0.0217782147, 0.0124816746, -0.010545833, 0.0204163734, -0.00908832438, 0.0091052074, -0.0283848364, -0.012853086, 0.0059369551, 0.011828891, -0.00704556191, 0.0106302453, 0.0204951577, 0.00731567945, 0.0243780948, -0.00430499576, -0.006038249, 0.0171749648, 0.00185283646, -0.0276645236, -0.00983114727, -0.0264715049, 0.00435282942, -0.0153404167, 0.0078896787, -0.0139223, -0.0091839917, -0.00868314877, 0.0212379806, 0.0400449038, -0.00371692795, 0.0196285304, -0.000934859389, 0.00880132522, 0.00900391303, -0.0165446904, 0.00938657951, -0.000752670865, -0.00809226651, -0.0286324434, 0.025458565, 0.0305457748, -0.00341585954, 0.0084242858, -0.010540206, -0.0203263331, -0.0180078261, -0.0147664174, -0.0211929604, 0.0121215181, 0.0106021073, -0.0204951577, 0.0232526064, 0.0137534775, 0.000675645191, 0.0148001825, 0.0250083692, -0.0344174579, -0.0239504091, 0.0266515836, -0.0300280508, 0.00038864548, 0.009763618, -0.00315699703, 0.00714122877, -0.011828891, -0.0148001825, 0.00121693511, -0.00394765334, -0.0116600674, 0.0131682232, -0.0431287438, 0.0109791467, 0.021102922, 0.00925152097, 0.0255486034, 0.010292598, -0.00312604615, -0.00729316939, -0.00742822839, -0.0175126102, 0.00259565935, -0.0073550716, -0.0224535074, -0.00497466186, -0.000329381437, -0.00124858948, -0.0219470374, -0.00057997863, 0.0129093602, 0.0229149591, 0.00619581761, 0.00410803547, -0.00161789067, 0.0251659378, 0.0173775516, -0.0124028903, -0.0144625353, -0.0227686446, 0.00393077079, 0.00582440617, -0.016702259, -0.0013745036, 0.0044175447, -0.0153741818, -0.00212858128, -0.0233876649, 0.0154754752, 0.0236802921, 0.0058131516, -0.0125829689, -0.0156442989, -0.00555991614, 0.0136184189, -0.0284973849, -0.0159594361, -0.00488462299, -0.0177602191, 0.0184692759, 0.00513223046, 0.0177827291, 0.00877881516, 0.00165868958, -0.00532637723, 0.0375238061, -0.0124816746, 0.0214968417, -0.00896452088, -0.00481990725, 0.000742119388, 0.0127517916, -0.00988179445, -0.0123916352, 0.00122959691, 0.0138547709, -0.00337365363, 0.000673534931, -0.0115024988, 0.000557117106, 0.0121327732, 0.010033736, 0.00633087661, 0.00173747388, 0.00397297647, -0.0182779431, -0.0067079151, 0.0108891074, 0.00739446376, 0.0191558246, -0.0211704504, -0.0185030419, -0.00606638659, 0.00997183379, 0.0216544103, -0.0245356634, 0.0470454469, -0.00561619084, 0.0153066525, -0.000903908454, 0.0164659061, -0.0168373175, -0.00148001825, 0.0198536292, 0.024670722, 0.00804162, 0.0217331946, 0.035475418, 0.017726453, -0.0217444506, 0.0146088488, -0.00273775239, -0.00136113842, -0.00748450262, -0.0261563677, -0.00161085627, 0.011558773, 0.0172987673, 0.00464545656, -0.00433313334, -0.00985928439, -0.0207652748, -0.0281597376, 0.0214068033, 0.00496903434, 0.0121102631, 0.0355429463, 0.000533903891, -0.00113674405, 0.00466796616, 0.0297804419, -0.00185565022, 0.0126504982, 0.00269976701, -0.0261563677, -0.0076870909, 0.0128868502, 0.00205401774, -0.0143612418, 0.0150027703, -0.00675293477, -0.0140123395, 0.0252109561, 0.0171074346, -0.00219048327, -0.000141389566, -0.00531793619, 0.00876193307, -0.00426279, -0.00227348809, -0.0140911238, 0.00341304578, -0.00116206752, 0.0160719845, -0.00566121051, 0.00903205, 0.0070962091, 0.0026336445, -0.00224394398, -0.0139898304, 0.0100731282, 0.00532637723, 0.0124366554, 0.0109960288, 0.00719187548, 0.0115081267, 0.0109172445, 0.00545299472, -0.0167697873, -0.024940839, -0.0102194417, -0.00965669658, 0.0165221803, 0.00679232692, 0.00343274185, -0.00874505099, -0.0336296149, -0.000667555723, -0.0247382522, -0.00712434622, 0.0045751133, 0.0175688863, 0.0395496897, -0.0297354236, -0.0132695166, -0.00209481665, 0.00826671813, 0.000701320416, -0.00575969089, -0.0175576303, -0.00600448437, 0.00376476115, 0.000737195369, 0.0199661776, -0.0166009646, -0.00815979671, -0.0229374692, -5.44279501e-05, 0.0093077952, -0.0126279881, 0.0059369551, 0.00265193381, 0.00509846583, -0.0116825774, 0.00696115, 0.0106302453, 0.00631399406, 0.00139279279, 0.014901476, -0.00521664228, -0.00249436521, 0.00694426801, 0.000324984983, 0.0208890792, 0.00603262195, 0.028790012, 0.0147439074, -0.00263786525, -0.00140475109, -0.0144175161, -0.0183117092, 0.00392514328, 0.00133159431, -0.0102138137, 0.0121777924, -0.00777150271, 0.0078108944, -0.00872254092, -0.0271242876, 0.00680358196, 0.00661787624, 0.0303206779, 0.0012471826, 0.00361563382, 0.00749013, -0.0295328349, 0.00820481591, 0.0205176678, -0.00927403, -0.00588068087, -0.00135340064, 0.00143781235, -0.00511534791, -0.0180078261, 0.0330668725, 0.00719187548, 0.0143049667, 0.0166459847, 0.0150365345, 0.00220314506, -0.0116037931, -0.00208637537, -0.0115081267, 0.00756328693, -0.0116375573, 0.0331118889, 0.0281597376, 0.0103151081, -0.00123100379, -0.00693301298, 0.00678669941, 0.0183342174, 0.0133933211, -0.0235677417, -0.00277855131, -0.0147101432, -0.0117951259, -9.43476407e-05, 0.00164321414, -0.0242430363, -0.000363321975, 0.00215249788, -0.0141473981, -0.00580189656, 0.0041896333, -0.0108440882, -0.00440347614, 0.00611140579, -0.00821044296, 0.00985928439, -0.00684860162, 0.00651095482, 0.0323015377, 0.0103601273, -0.0330668725, -0.0132357525, -0.00609452371, 0.021856999, -0.0321439691, 0.000259214226, 0.00336802634, 0.00981989317, 0.0120652439, -0.0040067411, -0.0117050866, 0.00397860399, 0.0060157394, 0.0234326832, 0.00988179445, -0.000333426171, 0.0260438193, -0.0040405062, -0.0197410788, -0.0106358724, 0.00638152333, -0.0168148074, 0.00894763879, 0.00597634725, 0.0063702683, -0.011828891, 0.0193246491, 0.00976924598, 0.0267641321, 0.00588630838, -1.1408767e-05, 0.00566683803, 0.00444286829, 0.0187056288, 0.0250308793, 0.00411366299, -0.0119864596, -0.00698366, -0.0159706902, 0.00179515523, -0.0125492038, -0.00588068087, 0.00900954, -0.0011937219, -0.00311760488, -0.00101012655, 0.023657782, -0.0218795091, -0.0214630775, 0.000851854566, 0.00485085836, 0.0266515836, -0.00241558114, 0.0216769204, 0.00916148163, 0.011570028, 0.040360041, -0.0132357525, -0.000146577368, 0.0168260634, 0.0252784863, 0.027754562, 0.0132470075, 0.00433313334, 0.0138547709, 0.00562181836, -0.0100956373, -0.00411647651, -0.000896170735, -0.00685422868, 0.00181203755, 0.0271017775, -0.032886792, 0.0189532377, 0.00560493581, 0.0214180574, -0.00452728, 0.00392232975, -0.0024423115, 0.0163646117, 0.0125717139, -0.00249014469, 0.0159031618, 0.00557117118, 0.0166009646, 0.0160044562, -0.00633087661, 0.0136634381, -0.0103713823, -0.0135058695, 0.0129093602, 0.0152841425, 0.00889699161, 0.00778275728, 0.0119301844, 0.0100731282, -0.00130345707, -0.0189082175, -0.0043472019, -0.00427685864, 0.0272818562, 0.0200787261, -0.00699491519, -0.00635338621, 0.000117824646, 0.00988742243, -0.0211141761, 0.010033736, 0.0206414703, -0.00680358196, 0.010804696, -0.00489587756, 0.0146651231, 0.00716936588, 0.0120990081, -0.00954977516, 0.0135621438, 0.0127067724, 0.0150703, -0.00921775587, 0.000302475208, -0.0317162834, -0.00809789449, -0.00565839652, -0.00774336513, 0.00888573658, -0.020292569, -0.0150928097, -0.0119076753, -0.0405401178, -0.0139110461, 0.0112774009, -0.0219920576, -0.000870143762, 0.0176139046, 0.0115475189, -0.0213955492, -0.0188069232, 0.00674730726, -0.0190432761, 0.00787842367, 0.0178164933, -0.0197748449, 0.0252559762, -0.000132332905, 0.0253235064, 0.0294427965, -0.00131611887, -0.00949912798, -0.0118514011, 0.0251659378, 0.0202475488, -0.019538492, -0.0278446, 0.00464264257, -0.00838489365, 0.00307821273, -0.0100787552, -0.000787138939, -0.0104951859, -0.00370004564, 0.0045976229, -0.00766458083, -0.0110241659, -0.00495778, 0.000809648773, -0.0139448103, 0.022431, 0.00191614521, -0.00530949514, 0.0147439074, -0.00741697336, -0.00295440899, 0.000175418027, -0.00550082838, -0.0173550416, 0.0151040638, -0.0262464061, 0.0138997911, -0.0134045752, -0.0158693977, -0.00277433079, 0.00100590591, 0.00631962158, -8.20815694e-05, -0.00709058158, 6.15062236e-05, -0.000495215238, 0.0152616324, -0.00891387369, -0.0165672, -0.00531230867, 0.00512941694, 0.00181344443, 0.0178840216, 0.0175013561, -0.0130444188, -0.00470735831, 0.0245356634, -0.0145525746, -0.0048592994, 0.00413617259, -0.00191473844, -0.019786099, 0.00911083445, 0.0120652439, -0.0180753563, -0.00965106953, 0.00178812083, -0.0210353918, -0.0220370777, -0.00246904185, 0.00569497515, -0.00692738546, -0.00124929298, -0.00640966045, -0.00935281441, 0.0104276566, 0.00323578133, -0.0146876331, 0.0143049667, -0.00521664228, -0.00368034956, 0.0203263331, -0.0121777924, 0.0236127619, 0.00131400861, 0.00141741289, -0.0248508, -0.00643779803, 0.0120652439, 0.0111085782, 0.000770256622, -0.0138435168, 0.0195497461, 0.00872816797, 5.2669373e-05, -0.000118088428, -0.00129079539, 0.00828922726, 0.0023030322, -0.00766458083, -0.0121777924, -0.0138997911, 0.00063343934, 0.00333988899, -0.00718624797, 0.0220595878, 0.00913334452, 0.0124929296, -0.034957692, -0.0203263331, 0.0359481238, -0.0138210068, -0.00451883906, 0.0164884161, 0.020067472, 0.0258412305, 0.0311760493, 0.0106414994, -7.28490413e-05, -0.00715248333, 0.0127968118, -0.0159819461, 0.00145188102, 0.0186493546, 0.00815416873, 0.0215306077, 0.0202813148, 0.00129149877, -0.0122790867, -0.00505063264, -0.0192571189, 0.00379852578, 0.00895889383, -0.00833987445, -0.00706244446, 0.00697240513, 0.00831736438, 0.00682609156, 0.0127968118, 0.00648281723, -0.011558773, -0.000281899847, -0.0163983759, 0.00360156526, -0.0164208859, -0.0105008138, 0.009262776, -0.00454134867, -0.0154417111, 0.0126504982, 0.0157906134, 0.0305007547, 0.0219920576, 0.00092712167, 0.0215981361, 0.0145188095, 0.00223409594, 0.000937673147, 0.0409227833, 0.00134918012, 0.013359556, -0.00193162076, -0.0186268445, 0.00082371739, 0.0116263032, 0.0285649151, -0.0077658752, -0.0183004532, -0.0137647325, 0.0129656345, 0.0132357525, 0.0139335552, -0.00529824, 0.012335361, -0.0377489068, 0.00828922726, 0.0123241059, 0.0236802921, -0.0159144159, 0.0277095418, -0.004110849, -0.0304332264, 0.0148452017, -0.00224957149, 0.0131344581, -0.00309509505, -0.000564503134, -0.0218119789, -0.00519975973, -5.35047e-05, 0.00696677761, 0.00410803547, 0.00761956163, 0.00247185561, 0.00906581525, 0.0306583233, 0.0160494745, 0.00581877865, -0.00140686147, -0.0066854055, -0.0013442561, -0.0347325951, -0.00283623254, -0.0175463762, -0.0133370459, 0.0236802921, -0.000346791348, 0.00467359368, -0.0105570881, -0.000865219801, 0.00942034367, 0.0028038749, -0.00236071344, -0.0138210068, -0.011299911, -0.00740571832, 0.00228052237, -0.00818793382, 0.00898140296, -0.000774477201, -0.013370811, 0.0232751146, -0.0117838709, 0.0309959706, -0.0108215781, -0.000408693246, -0.0225435477, 0.0117388517, -0.00653346442, -0.00590319047, -0.0197298247, 0.00938657951, -0.0105795981, -0.012841831, -0.0140573597, 0.00840740371, 0.0122903418, -0.00368597684, -0.05091713, 0.0108328331, 0.00532074971, -0.00594821, 0.0250083692, -0.0002418043, 0.00947099086, 0.0169611219, 0.00432187831, 0.00868877582, 0.00404613325, -0.0204726476, -0.00936969742, -0.00553740654, -0.0145750847, 0.00132737379, 0.0177151989, -0.00468766224, -0.00126898906, 0.0476307, 0.000936969707, -0.0113505581, -0.0091502266, -0.0130331647, 0.000648914836, -0.0133933211, -0.0181541406, -0.00479458366, -0.00501968153, -0.0001070094, -0.00656722905, -0.0120202238, 0.00102138135, -0.0140798688, -0.00489306403, -0.00270961504, 0.00481709372, -0.0427685864, 0.0201575104, -0.0127855567, 0.00629148446, -0.00432750583, -0.0290826391, 0.00306977169, -0.0111142052, 0.0151153188, 0.00716373837, 0.019538492, -0.0110973231, -0.0151828481, -0.00597634725, -0.020033706, 0.0286999736, -0.00515755406, -0.0104107745, -0.00195694412, -0.002122954, -0.0189419817, -0.00641528796, 0.00104670494, -0.00630273903, -0.0159932, 0.0114237145, -0.00133933208, 0.0129768895, -0.00519975973, -0.0137084574, 0.0178277474, -0.013370811, -0.0215981361, -0.00815416873, 0.000684438099, -0.00230865949, 0.0123015959, 0.0330443606, -0.00450477, -0.00611703331, -0.0111142052, -0.00492120115, 0.0275969934, -0.00486774044, 0.000193091735, -0.003086654, -0.00413335906, -0.00463982904, -1.17604823e-05, 0.0237478204, 0.00243809074, 0.0118063809, 0.0137872417, 0.000320764404, -0.0292627178, -0.000399196928, 0.00977487303, -0.0152053582, -0.00805850234, 0.00898703095, -0.0163646117, 0.0209678635, 0.0153066525, -0.0186155904, 0.00242683594, 0.017985316, -0.0051885047, -0.00737195369, 0.00432750583, -0.00680920947, -0.0177151989, -0.00322734, 0.0146651231, 0.0111367153, -0.0259988, 0.030613305, 0.00446537836, 0.0067079151, 0.00175576308, 0.000285592861, -0.0206414703, 0.0160382204, -0.00850869808, -0.00762518868, 0.0159594361, -0.00490431907, 0.0151378289, -0.00729316939, -0.0115137538, 0.00242542918, -0.00758579699, 0.000884915818, -0.005402348, -0.0201124903, 0.00195835112, 0.000773773761, -0.00446256436, -0.0232300963, 0.0019541306, 0.0183342174, -0.0189194717, 0.000296847749, -0.0294202864, -0.0028390463, -0.00663475832, 0.00597634725, -0.0236352719, -0.0091446, 0.00279543363, 0.00107062154, -0.00589756295, -0.00394483935, 0.00939220656, -0.0020709, -0.00612828834, -0.00764207123, 0.0146201039, -0.0152841425, -0.00443442725, -0.0292402077, 0.00673605269, -0.00992681459, 0.0119189303, -0.0101631666, -0.00431625079, 0.0154529661, -0.0284973849, -0.0064040334, 0.0117163416, 0.00859310944, -0.0202700589, 0.0106752645, -7.47395097e-05, 0.011558773, 0.0157681033, 0.000620074163, -0.00912208948, 0.000664742, -0.0128755961, 0.00604387652, -0.033179421, 0.00201040506, -0.0102532059, 0.0156105347, -0.0152391233, -0.0151828481, 0.0234551933, -0.000801911, -0.0261338577, 0.000750560546, -0.0555991642, -0.000598619517, 0.0296228733, -0.0144850453, 0.0247607604, -1.19803044e-05, -0.0107821859, -0.00211591949, 0.000704485865, -0.00876193307, 0.00398704549, -0.00570060266, -0.0024296497, 0.0234326832, 0.013370811, 0.0059144455, -0.00167979253, 0.0126617532, -0.0270792693, 0.0314911865, -0.0139785754, 0.00239307131, 0.016724769, -0.0193359032, -0.00129149877, 0.0176139046, -0.00486774044, -0.0272143278, -0.00407145685, -0.00350589864, -0.00626897439, -0.00168541993, -0.000919383951, -0.0077658752, 0.0220933519, -0.000406231236, -0.0109341266, -0.012076498, -0.00356780062, 0.00391951576, 0.0225435477, -0.0281597376, -0.0066066212, 0.00491557363, -0.0145188095, -0.0204951577, 0.00980863813, 0.0426785499, -0.0129206153, 0.00961167738, 0.0194709618, 0.00323578133, 0.00342148705, 0.00966232456, -0.0010488152, -0.00738883624, 0.0236352719, 0.00038794204, 0.0105795981, 0.0262013879, 0.00862687454, 0.00224394398, 0.015430456, -0.000396734918, -0.00702868, 0.0149915153, 0.0255486034, 0.0330443606, -0.000248486904, -0.021069156, 0.0159144159, -0.000135410417, -0.030613305, 0.00347494776, 0.00302475202, 0.00724815, -0.00943722669, 0.00486774044, -0.00536014186, 0.0233426448, -0.00289532077, 0.0146763781, -0.0072200126, 0.0128305759, -0.0135733988, -0.00884071738, -0.0234326832, -0.00528135756, -0.00659536617, -0.0155992797, 0.0165221803, -0.00657285657, 0.00867189374, -0.0172424931, -0.034462478, 0.00806412939, 0.0157005731, 0.010545833, 0.0230950378, -0.0062127, -0.00687673874, -0.00677544437, 0.0353853777, -0.0140010845, -0.00143640547, 0.0240854677, 0.0317162834, -0.0180753563, -0.0189644918, -0.00268429169, -0.0162970833, 0.0125379488, -0.00371130044, -0.0183904916, 0.00379571202, -0.00658973912, -0.00264771329, 0.00164462102, -0.00505907368, -0.0115024988, -0.000373873423, -0.0038154081, 0.013877281, 0.00739446376, 0.0101125203, -3.01376094e-05, 0.00122326601, 0.00822169799, 0.0248733107, -0.00303882058, -0.0110804401, 0.00795720797, 0.013877281, -0.0186155904, 0.0171637088, -0.00175013556, 0.0010727318, 0.00522789685, 0.0132132424, -0.00742260087, 1.53985384e-05, -0.0114068324, 0.0305457748, 0.0162408091, 0.00516318157, 0.000175945606, -0.0286549535, 0.0194146875, 0.00248451717, -0.0334045179, -0.00969046168, 0.015171594, 0.0077883848, -0.00675856229, 0.0361056924, -0.00971297082, -0.0307483636, -0.0104895588, -0.013359556, 0.0220595878, 0.0231400561, -0.00518569117, -0.0244906433, -0.00877318811, -0.00721438555, 0.0173437875, 0.00906581525, 0.0154979853, 0.0221721362, 0.0141924182, -0.00559086725, 0.0137309674, -0.0155655146, 0.0317613035, -0.0247382522, 0.000149566957, 0.00899828598, -0.0091839917, 0.0260438193, 0.00476363255, 0.0103151081, -0.0204051174, 0.00813728664, -0.011817636, -0.00122748665, 0.013382066, -0.030613305, 0.00626897439, 0.0109453816, 0.0188406873, -0.0127743017, -0.032886792, 0.00578501401, 0.00529261259, -0.00892512873, 0.0212267246, -0.00589193543, -0.00548675936, -0.000466022844, -0.0104951859, -0.00793469884, 0.00286014937, -0.0024409045, -0.00802473724, 0.00673605269, 0.0160607304, -0.0181316305, 0.00254782592, -0.0236127619, 0.0108553432, -0.00240854686, 0.0130444188, 0.00171777781, 0.000740712567, -0.0120089687, -0.00201321859, 0.00554303406, -0.0299155, 0.0217106864, 0.00510409335, 0.0250308793, 0.0218232349, 0.010275716, -0.000394272909, 0.0204501376, -0.00545580871, -0.0004853672, 0.00118246698, -0.0172762591, -0.00490150508, -0.0225773118, -0.0192346089, -0.0145638296, 0.00886322651, 0.0106921466, 0.00863813, -0.0155092403, 0.00382947689, -0.0330443606, -0.00114448182, 0.0100562451, -0.0153066525, 0.00181766495, -0.00164321414, 0.0170399062, 0.0127517916, 0.0266966019, 0.00461169193, -0.00230865949, 0.00548113231, -0.010793441, -0.00160382199, -0.00903767813, -0.00431343727, -0.0138435168, -0.0314236581, 0.000494511798, -0.0179290418, -0.0298704822, -0.00249295845, -0.0273493864, -0.0124028903, -0.0206414703, -0.0125266938, -0.0133933211, -0.00428811368, 0.0291501693, 0.00297691883, -0.00448507443, 0.00616205297, -0.00765895378, 0.00523352437, 0.00171355717, 0.000110966197, -0.00819918793, 0.0318063237, -0.0129656345, -0.00548957335, -0.00437252549, -0.0176701788, -0.0374337696, 0.0154529661, 0.0184242576, 0.0244906433, -0.0379514955, 0.0263814647, -0.00611140579, 0.0120202238, -0.00240713987, -0.00913334452, 0.0199211575, 0.0238603689, -0.0103545, -0.00440629, 0.0225998219, -0.0175913945, 0.00927403, -0.0123015959, -0.000321819563, 0.0065053273, 0.0031344872, -0.00790656079, -0.0160269644, -0.00799097307, -0.0119301844, -0.0333144777, -0.0170061402, 0.00297973258, -0.0064490526, -0.0215981361, 0.00348620256, 0.0170511603, -0.0266290735, -0.00273212488, -0.0180528462, -0.0224760175, 0.0101350294, 0.0124028903, -0.000354177377, 0.00868877582, 0.0197635889, 0.00127109932, 0.0136746932, -0.0133370459, 0.0201800205, 0.0136521831, 0.00843554083, -0.0122003024, 0.00509565184, -0.0100055989, -0.0219132733, -0.00754640484, -0.00467359368, -0.00721438555, -0.0261563677, -0.0260663293, -0.0213730391, 0.00540516153, -0.00364095741, -0.0173325334, 0.0132132424, -0.015171594, 0.0159256719, 0.00371411419, 0.0245581735, 0.00694989553, -0.00470454479, 0.00977487303, -0.0103319902, -0.00684297411, 0.00819918793, 0.00519694621, 0.0300955791, -0.0021342088, 0.00458636833, 0.021575626, 0.0139335552, 0.0167135131, -0.00807538442, -0.00596509222, -0.0141586531, 0.029825462, -0.014923986, 0.00530386763, -0.0149464961, -0.0244456232, 0.0208890792, 0.00279261987, -0.0160269644, 0.0116488123, -0.00772648305, -0.0100449901, 0.016983632, -0.0028024679, -0.00858748239, 0.000718202733, -0.00585254328, -0.0157455932, 0.0100112259, 0.00153629272, -0.00566683803, -0.00716936588, -0.00177686603, -0.0134045752, -0.0034608792, -0.0150365345, 0.00171918469, 0.00212436076, -0.00189082173, 0.00166853762, 0.00197523343, -0.00171637093, -0.000330084848, -0.00129571941, 0.00978612807, -0.0114124594, -7.53989807e-05, -0.00298535987, 0.0140010845, -0.00252813, -0.0165559445, 0.00631399406, 0.0026336445, 0.0257511921, 0.00324422237, 0.000539531349, 0.0142712025, -0.00369160436, 0.025188446, 0.0209003333, 0.00953852, 0.0139560653, -0.00465952512, 0.00350589864, -0.0246257018, 0.00855371729, -0.017737709, -0.00983677525, -0.00646030763, -0.0147551624, 0.00311760488, 0.0140686138, -0.0109397545, -0.00206386577, -0.0146988882, 0.00639840588, 0.00956665725, 0.000670017733, -0.0152053582, 0.00240995362, 0.0273718964, 0.00606638659, -0.00579626905, -0.0253009964, -0.00846367795, -0.0141248889, 0.00332300668, 0.000722423312, -0.0124929296, -0.0219245292, -0.00872816797, -0.00538827945, 0.0271242876, -0.00505063264, -0.0128868502, -0.0165334363, 0.00841865875, 0.00978050102, 0.0174338259, -0.00746199302, -0.0054501812, -0.00773211056, -0.00558805373, -0.00147017022, 0.00626897439, 0.0152841425, 0.0250984076, 0.000993947615, 0.00521101477, 0.0180753563, -0.0126279881, 0.0121890474, -5.64942784e-05, -0.0103882644, 0.014383751, -0.00916148163, -0.00528417155, 0.0145863388, 0.0282047577, 0.0137422225, -0.00965106953, 0.0122228116, 0.0034186733, -0.0114180874, -0.00657285657, 0.0173775516, 0.000282779132, -0.013888536, -0.00137731736, -0.0119189303, 0.0249858592, -0.0278220922, -0.00495215226, 0.00116417778, -0.0155092403, 0.00290938932, -0.00447100541, -0.00224957149, 0.00400392758, 0.00418682, -0.0102138137, -0.00224535074, 0.0153179076, 0.00652220938, 0.0148677118, 0.00448788796, 0.0278220922, -0.002121547, 0.0292852279, 0.00112900627, 0.0274619348, 0.00892512873, -0.00500279944, -0.00131963601, -0.0114799896, 0.00377320242, 0.0162520632, -0.0344849862, -0.0232976247, 0.00254641916, 0.0058356612, 0.00793469884, -0.012841831, -0.0119639495, 0.0189870019, 0.0096060494, -0.00188660121, 0.00886322651, -0.00533481874, -0.0186493546, -0.0104895588, 0.0108497152, -0.00306133041, 0.013359556, 0.0107371667, -0.0176476706, -0.0029065758, -0.0165221803, 0.0154642211, -0.0141136339, 0.0121777924, 0.00122045225, -0.00653909193, -0.0125717139, 0.0118739102, 0.0213167649, 0.0307933837, 0.0179065317, -0.0246031918, -0.00228192913, -0.00603262195, -0.00443161326, -0.00651658233, 0.012076498, 0.00398704549, 0.010286971, -0.00989867654, 0.0135733988, -0.000979175558, -0.00335677131, -0.0204726476, 0.016454652, -0.00662350375, 0.00176983164, 0.0136634381, 0.0275744833, -0.00709058158, 0.00967920665, -0.0133370459, -0.0180753563, -0.000938376586, -0.0269217, 0.00494089723, 0.00327798701, -0.0123916352, 0.0250758976, -0.022644842, 0.0191558246, 0.00404331973, -0.00268851221, 0.0174113177, -0.00172903272, -0.0114912437, 0.00574280834, 0.0100449901, -0.0198648833, -0.0330218524, 0.022869939, -0.0114799896, -0.00365502597, 0.0166459847, -0.00906581525, 0.0277320519, -0.00278558559, 0.0241755061, 0.00517162262, 0.0178727675, -0.00188660121, -0.00568090659, -0.025458565, 0.00565558299, -0.00288125221, 0.0191558246, 0.0244681332, -0.00390263367, 0.0135846538, 0.00215390488, -0.0320764408, -0.005402348, -0.00122537627, 0.0113786953, 0.0112267537, -0.017478846, 0.00346932025, -0.0252559762, 0.0394146293, -0.00479458366, 0.0168598276, 0.000594750687, 0.0047326819, -0.00181907183, -0.00857622735, -0.0100562451, -0.00227770861, 0.0133370459, -0.0178164933, -0.0121552823, 0.00294596772, 0.0418907069, 0.0192120988, -0.00101645733, 0.014406261, 0.0101125203, -0.00974673592, -0.0100618731, 0.0307258535, 0.00663475832, 0.0137984967, 0.00470454479, -0.0316262431, 0.0286324434, -0.0108665973, -0.000931342249, -0.00225379202, 0.0129318703, 0.00575969089, 0.0279121306, -0.00494933827, 0.00515474, 0.0142486924, 0.00243246346, 0.0318288319, -0.000499435817, -0.0229712334, 0.0028390463, -0.00568372, 0.00743385591, 0.00483960332, 0.00410522148, -0.000520538713, 0.0265165232, 0.00267725717, -0.0156217888, 0.0127405366, 0.00558805373, 0.00266881613, -0.00602136692, 0.0130781839, -0.0130331647, 0.00563588692, -0.00969608873, -0.0103376182, -0.00116277102, 0.0194484517, -0.0156105347, 0.00644342508, 0.0104107745, -0.00796283595, 0.0130669288, -0.0130781839, 0.0176589247, -0.0189870019, 0.0143499868, 0.000263434806, -0.00130486395, -0.00252390932, 0.00381259434, 0.00351715344, -0.0158243775, 0.00979175512, 0.0216206461, 0.0125829689, 0.0248508, 0.0123241059, -0.00750701269, 0.00827797223, 0.00736069912, 0.0175013561, 0.00844679587, 0.000895467296, 0.0114349695, 0.0219470374, -0.00677544437, -0.00243387022, -0.00877318811, 0.00425153505, -0.00158834655, -0.0116825774, -0.00546706328, 0.0130556738, 0.00229881145, 0.00836238451, 0.0165334363, -0.00921212882]
|
05 Dec, 2024
|
Python – Access Dictionary items
05 Dec, 2024
A dictionary in Python is a useful way to store data in pairs, where each key is connected to a value. To access an item in the dictionary, refer to its key name inside square brackets.
Example:
Python
a = {"Geeks": 3, "for": 2, "geeks": 1}
#Access the value assosiated with "geeks"
x = a["geeks"]
print(x)
Output1
Let’s explore various ways to access keys, values or items in the Dictionary.
Table of Content
Using get() MethodAccessing All Keys, Values, and ItemsUsing key() MethodUsing values() MethodUsing ‘in’ OperatorUsing dict.items()Using get() MethodWe can access dictionary items by using get() method. This method returns None if the key is not found instead of raising an error. Additionally, we can specify a default value that will be returned if the key is not found:
Python
a = {"Geeks": 3, "for": 2, "geeks": 1}
#Accessing value associated with "for"
value = a.get("for")
print(value)
Output2
Accessing Keys, Values, and ItemsBy using methods like keys(), values(), and items() methods we can easily access required items from the dictionary.
Get all Keys Using key() Method In Python dictionaries, keys() method returns a view of the keys. By iterating through this view using a for loop, you can access keys in the dictionary efficiently. This approach simplifies key-specific operations without the need for additional methods.
Python
a = {"geeks": 3, "for": 2, "Geeks": 1}
#Looping through the keys of the dictionary
keys = a.keys()
print(keys)
Outputdict_keys(['geeks', 'for', 'Geeks'])
Get all values Using values() Method In Python, we can access the values in a dictionary using the values() method. This method returns a view of all values in the dictionary, allowing you to iterate through them using a for loop or convert them to a list.
Python
a = {"geeks": 3, "for": 2, "Geeks": 1}
# Accessing values using values() method
values = a.values()
print(values )
Outputdict_values([3, 2, 1])
Using ‘in’ OperatorThe in is most used method that can get all the keys along with its value, the “in” operator is widely used for this very purpose and highly recommended as it offers a concise method to achieve this task.
Python
a = {'geeks': 3, 'for': 2, 'Geeks': 1}
# Looping through each key in the dictionary 'a'
for key in a:
print(key, a[key])
Outputgeeks 3
for 2
Geeks 1
Get key-value Using dict.items()The items() method allows you to iterate over both keys and values simultaneously. It returns a view of key-value pairs in the dictionary as tuples.
Python
a = {'geeks': 3, 'for': 2, 'Geeks': 1}
# Iterating through key-value pairs
for key, value in a.items():
print(f"{key}: {value}")
Outputgeeks: 3
for: 2
Geeks: 1
Also Read:
Python Dictionary MethodsPython Dictionary get() MethodCheck whether given Key already exists in DictionarySort Python Dictionaries by Key or ValueAccessing Items in Lists Within Dictionary
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items
|
https://www.geeksforgeeks.org/python-accessing-key-value-in-dictionary/?ref=next_article
|
Pandas
|
Python – Access Dictionary items
|
Python | Pandas Series.shift(), Pandas, Python | Pandas Series.to_sparse(), Python | Pandas Series.str.swapcase(), Python | Pandas Series.sum(), Calculating the Product of List Lengths in a Dictionary – Python, Pandas Tutorial, Python – Dictionary values String Length Summation, Python | Pandas Series.sort_values(), Python | Pandas Series.to_string(), Dictionaries in Python, Python – Access Dictionary items, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Python | Pandas Series.var
|
GeeksforGeeks
|
[-0.0190299675, 0.0292893, -0.00167911476, 0.0236345492, -0.00461323792, 0.00792819075, 0.0292431396, 0.0110325338, -0.00224170461, -0.0160064064, -0.00883410498, 0.0022763256, 0.0110902358, -0.00874755252, 0.0202416983, 0.0183837097, 0.021061061, 0.0315050408, -0.00165170652, -0.0144830858, 0.0103574255, -0.0192261524, -0.0394216888, -0.00929571781, 0.00138627947, 0.00906491186, 0.0121865645, 0.0141830379, -0.00114609674, 0.00233402709, 0.00192001869, -0.0251117088, -0.0170219541, -0.0530854128, -0.0251117088, 0.0024350048, 0.00632985868, 0.00934187882, 0.000370011112, -0.0108478889, 0.0560397319, -0.0273274481, -0.00620291522, -0.0230806153, -0.024188485, 0.0221920107, 0.0299355574, -0.0367905, 0.00322840107, -0.00688379351, -0.0154640116, -0.0263119, -0.00585959107, 0.00832056161, 0.0176912919, 0.0198377892, -0.0446609892, -0.00837826356, -0.0360980816, -0.0379676111, -0.0124404514, -0.0462535508, 0.0189607255, -0.0165488012, -0.00514697703, 0.00381984166, -0.0128905233, 0.0324051827, 0.00827440061, -0.0220535267, 0.0295431875, 0.0674415529, 0.00877640396, 0.00196329481, -0.0041372003, 0.00679147104, -0.0178528558, 0.0247193389, 0.0127058784, 0.0340439081, -0.027927544, -0.0226651635, 0.0424683318, -0.0306048952, 0.00930725783, -0.0153139876, -0.0318050869, -0.0334668905, 0.035197936, -0.00457861694, 0.00196040981, -0.01390607, 0.0224112775, -0.0110556148, -7.2172e-05, -0.0270274, 0.0232306384, 0.013836829, 0.0078935707, 0.0127866603, -0.031112669, 0.0196300633, -0.0220766086, -0.0200108923, -0.0116903316, 0.000134156071, -0.00328610255, 0.0204263441, 0.01727584, -0.0331437625, 0.0267735124, -0.0164103173, -0.00746657886, 0.0219842847, -0.020991819, -0.00494213682, -0.00183490885, -0.0326129086, 0.00939381, -0.01725276, 0.0297739934, 0.031204991, 0.00447763922, 0.0432761535, -0.0518852212, 0.0308587812, -0.000233871542, -0.0113498922, 0.0105305305, -0.034759406, 0.0174604859, 0.0116672507, -0.0199531913, 0.0295893475, -0.00247395341, 0.0616252422, 0.0316204429, -0.00414297031, 0.0259195305, -0.000573048368, -0.0353133418, -0.0616714023, -0.00301779038, 0.00647411263, -0.00743772788, -0.00538355345, 0.0272120442, 0.0305125732, -0.0108421184, 0.0189261045, -0.020841796, -0.070026584, 0.00356595498, 0.0186491366, 0.0194454174, 0.0262657404, 0.0119672986, 0.0031591591, -0.003450552, -0.00209023827, 0.0154640116, -0.0191453695, 0.0224458985, 0.00672222907, 0.0300971214, 0.00358903548, 0.0327513926, -0.0216957778, -0.0680878162, 0.0316896848, 0.00385734765, -0.028019866, 0.0116384, 0.0148292948, -0.0352902599, -0.00856290851, 0.0228959695, -0.031204991, -0.0130520873, 0.00484981434, -0.0123250484, 0.00411989, 0.0283429958, 0.00334957428, -0.00576438336, 0.0105363009, -9.56583317e-05, -0.00902452, 0.0113729732, 0.00454111118, -0.00758198183, -0.0264965463, 0.0126597174, 0.0247424189, -0.0036467372, -0.00261964975, -0.0128559023, -0.0171488971, -0.0204609651, 0.0225497615, 0.0247424189, -0.0216034558, -0.0251578707, 0.038752351, 0.0299124774, 0.0201147553, -0.0196877643, -0.00248549366, 0.00183058123, 0.0222843327, -0.00836095307, 0.0122904275, -0.00635870919, -0.0238422751, 0.0182336848, 0.0325898267, -0.00813591667, 0.0302586854, 0.00870139152, -0.0142984409, -0.00659528561, 0.00440551247, 0.0285738017, 0.00749543, 0.00375348493, -0.0391908847, -0.0225959215, 0.013986853, -0.0275120921, -0.0103689665, 0.00742041785, -0.0231729373, -0.00265859836, -0.0496694818, 0.0135714011, -0.00956114475, -0.0150024, -0.0100862291, -0.0073627159, 0.0411065742, 0.00510081602, 0.0301894434, -0.000604423578, 0.0100227566, -0.0252732728, 0.0397679, -0.0368135795, 0.01389453, 0.00341304601, 0.00926686637, 0.0461381488, 0.00181038573, -0.0073396354, 0.00617983472, -0.0373905972, -0.00909376238, -0.0141830379, -0.0225728415, 0.0177374519, -0.0167565271, 0.0361442417, 0.00597787928, 0.00230950397, 0.0268658362, 0.0273736082, 0.00299759489, 0.0351748578, -0.0622253381, -0.0105882324, -0.020703312, 0.0123827495, -0.00273793796, -0.0150024, -0.00843596458, 0.00283170282, 0.0213726498, 0.0093303388, 0.00600096, 0.0148062147, 0.0160064064, -0.00173393113, -0.00482384861, 0.0356826298, 0.024373129, 0.0233691223, -0.00762237282, -0.0142291989, 0.00764545379, -0.0452841669, 0.00564609515, 0.0103805065, -0.00641641067, -0.0268889163, -0.00440839725, 0.0263580624, 0.0285507198, -0.017437404, -0.0428837836, -0.0457919389, 0.0322667, -0.00598364929, 0.00632408867, -0.0133059742, 0.0294970255, -0.00209889351, -0.0127520394, 0.0178643949, 0.024211565, 0.0279044639, -0.00830325112, 0.020737933, -0.0493463539, -0.0218342617, -0.0610713065, -0.0324975066, 0.000824410701, 0.0127289593, 0.0183606297, -0.00354287447, -0.0169065502, 0.00176133937, -0.0120942425, -0.0210033599, 0.0145061668, -0.0318281688, -0.0106863249, -0.045584213, -0.0199416503, 0.0329821967, -0.0394447707, -0.034828648, -0.0135944821, -0.0604250506, 0.0342977941, 0.0131444102, -0.024350049, -0.0327052325, -0.0405295603, 0.0129828462, -0.0278121401, 0.0308126211, 0.0169296302, 0.00301202014, -0.0225497615, -0.0143446019, -0.0129943863, -0.0262195785, 0.0264965463, -0.000476037676, -0.0158563815, 0.00098741753, 0.00131343119, -0.0235768482, 0.00252588466, -0.00907068141, -0.020795634, 0.00584228057, 0.00151178031, -0.0161218103, 0.00332360854, 0.0160179473, -0.0155217135, 0.00296874414, -0.035128694, -0.0168603882, -0.0222497117, 0.00373040442, 0.0202532392, 0.0330745205, 0.0201609172, -0.0251578707, -0.00720115192, -0.0285045598, -0.0442917, -0.0190299675, 0.0206225291, 0.0225728415, 0.0172412191, -0.0218458027, -0.00645680213, -0.0169642512, -0.00947459228, -0.0414527841, -0.00212341663, -0.0309280232, -0.00950344279, -0.0206802301, -0.0180605818, 0.00913992338, 0.0376444831, -0.013732966, -0.0112518, 0.0107555669, -0.0468998104, 0.024119243, -0.0181182828, 0.0178874768, -0.00197483506, 0.00368712819, 0.0110498443, -0.00476614712, 0.0264965463, -0.0388908349, -0.0192261524, -0.0493463539, -0.0385677069, -0.0548857, -0.00558839366, 0.0474999063, 0.0334668905, -0.0199878123, 0.0402295105, -0.0305125732, 0.0226536226, 0.0201147553, -0.00639910065, -0.0502695777, 0.0926917493, -0.00240759668, 0.00477480236, 0.0147023518, -0.00490463059, -0.00216236501, -0.0126366364, 0.00359192071, -0.00341593102, -0.0348517299, 0.00935918931, 0.00403910736, -0.045330327, 0.00510658603, 0.0211764649, 0.0396524966, 0.0262426585, 0.00572110759, -0.0462766327, 0.0152216656, -0.00918031484, 0.0190530475, -0.0234152842, -0.0182106048, 0.0195839014, -0.0299355574, 0.0226305425, 0.0315050408, -0.00971116871, -0.0263580624, 0.0253425147, 0.0341131501, 0.00317069935, -0.0277198181, -0.0321282148, -0.00828594062, -0.00705689797, 0.0361673236, -0.0108594289, -0.0166526642, -0.0116384, -0.0115922391, 0.038613867, 0.0406449623, -0.00156515418, 0.0273966901, -0.000849655131, 0.0457457788, -0.00585093582, 0.010351656, -0.0234268233, -0.0292431396, -0.0117249526, -0.0145523278, -0.0687802285, 0.0318743289, -0.00396698061, -0.00287209405, -0.00478634238, 0.00205994491, 0.0353825837, -0.0232191, -0.000481447205, 0.0612559505, -0.0333976485, 0.00556531316, 0.00644526165, -0.000770315528, -0.00998813566, 0.0156486575, 0.00892642792, -0.0166757442, -0.0480076782, -0.00306106661, 0.0449148752, 0.0193415545, -0.0182798468, -0.00776662678, 0.027835222, -0.0484692901, -0.0193415545, 0.0256194826, 0.0499926098, 0.0157640595, -0.0258272085, -0.0464843586, 0.0104382085, 0.0290584937, -0.0156601965, -0.0181875248, 0.00724731293, 0.00798012223, -0.0158333015, -0.0294277836, -0.0120019196, 0.0027105296, 0.0534085408, 0.0355903096, -0.00629523769, -0.00756467134, 0.0238884371, -0.0066125961, -0.0324051827, 0.000688451459, 0.0372521132, 0.00980349071, 0.0132828942, -0.0187645406, 0.0213149469, -0.0257118046, -0.0132136522, -0.00768007478, -0.0028432433, 0.0102535635, -0.00530854147, -0.0132251922, -0.0124058304, -0.0150139397, 0.00264273048, -0.0023758607, -0.0145754078, 0.0421913639, 0.0119672986, -0.028112188, 0.0471075363, 0.0233575813, -0.00980349071, 0.00387465814, 0.00631831819, -0.0268889163, 0.0115518477, -0.0137445061, 0.0080032032, 0.0273274481, 0.0119095976, 0.0167449862, 0.0104266675, -0.0236807112, -0.00786471926, -0.0187183786, 0.00206571491, -0.00247395341, -0.031204991, -0.0161679704, 0.0106170829, -0.014079175, -0.00961307622, 0.0396986566, 0.0167103652, 0.00150312507, 0.0148292948, -0.000481447205, 0.0304202493, 0.0177836139, -0.0106170829, 0.0539163165, 0.00260233926, -0.0379676111, 0.00952652376, 0.0398371406, -0.0316666029, 0.0142984409, -0.00118793035, -0.0189261045, 0.00158102217, 0.0148062147, -0.00876486301, 0.00410257932, -0.0188684016, -0.0291738976, 0.00932456832, -0.0487924181, 0.0386600308, -0.0148292948, 0.0154063106, 0.0136060221, -0.0300278794, -0.00870139152, 0.0222150926, -0.0090418309, 0.000615242636, 0.0259656925, 0.0286430437, 0.0412219763, 0.0187876206, 0.0258272085, -0.00419778703, 0.00880525447, -0.0133405952, -0.0113672027, -0.0133059742, 0.00336976978, -0.0226420835, -0.00511812652, -0.00849943608, 0.0150947217, -0.0356595479, 0.00243933243, -0.00539509347, -0.0131328702, 0.0296355095, -0.00411123456, -0.0309972651, -0.000438531686, -0.0112056388, 0.00938804, -0.00273505296, 0.0322667, -0.0124750724, 0.00705689797, -0.00469690515, -0.00724154292, 0.00151755044, 0.00568071613, -0.0265888683, -0.00497098733, 0.008799484, 0.0430453457, 0.0183606297, -0.0154870925, 0.0515159331, 0.00878794398, 0.0360057577, 0.00240182644, -0.000758775219, 0.0244192909, 0.11272572, -0.0107844174, 0.024603935, 0.000879227184, 0.0152216656, 0.0137906671, -0.0375983231, -0.00593171781, -0.0444071032, -0.0229075104, 0.00339285028, 0.00547010591, 0.00155938405, 0.00212774426, -0.0454226509, 0.0202994011, 0.0211072229, -0.00644526165, 0.0127404993, 0.00413143, 0.0231613964, 0.0173681621, -0.00359192071, 0.0123481285, -0.00589421205, 0.0117018716, 0.0147600528, 0.00611059275, 0.00133290549, -0.00855136756, 0.0174604859, -0.00860906951, 0.00313607859, -0.0140676349, -0.00971693918, 0.0171373561, -0.013825288, -0.013940691, -0.0156371165, -0.0177489929, -0.0402525924, -0.00368135795, -0.00467670942, -0.00275813346, 0.00211043376, -0.0121981045, 0.00418336131, -0.0482384861, 0.0133290552, 0.0256887246, 0.0220766086, -0.0143330619, -0.0310895871, 0.00509504555, 0.0100746881, -0.00478922762, -0.00590863731, 0.00601250026, 0.0183837097, 0.0213495679, 0.00557685364, 0.0153370686, 0.0267735124, -0.0111190863, 0.0156024955, -0.0222266316, -0.00965346675, 3.59507612e-05, -0.0197916273, -0.0224689785, 0.0180605818, -0.0153716896, 0.0169527121, -0.0110209938, 0.00476614712, -0.00799743272, -0.0340900682, 0.00419778703, 0.0516544171, 0.02104952, 0.00232104422, -0.0120827015, 0.00964192674, -0.0275582541, 0.0120480806, 0.00202820892, -0.0029398934, 0.0169065502, -0.0182913877, -0.00209889351, 0.0160179473, -0.0250424668, -0.0320358947, 0.00220419862, -0.00802051369, -0.0406911224, 0.00311299786, 0.0300509613, -0.0370443873, 0.00262397737, -0.00810706615, -0.00779547775, 0.00388042838, 0.0133405952, -0.0141830379, 0.0556242801, 0.000589637551, -0.0146677308, 0.0226882435, 0.0505927093, -0.00822246913, -0.00299470965, -0.0292662196, 0.0102131721, 0.0102766436, 0.00799166318, 0.0469690524, 0.0296355095, 0.0228267275, -0.0284353178, -0.0117134117, -0.00123120658, -0.0330052786, -0.0106343934, 0.035267178, 0.0157525204, 0.00691264402, 0.0100169871, 0.00547299068, 0.00473152613, 0.020761013, -0.0387292728, -0.0254579186, -1.78852224e-05, -0.00716653094, -0.0171488971, -0.000757332658, -0.0365596935, -0.0177836139, 0.0225036, 0.00573553285, 0.0161910504, -0.00843019411, 0.0460919887, 0.0115345372, 0.0443840213, -0.00308414712, 0.00853982754, 0.00876486301, 0.00603558077, 0.0282506719, -0.0149562387, -0.00747811934, -0.0180605818, -0.0354056619, 0.0391908847, -0.00185077684, -0.00496233208, -0.0107151754, 0.0443840213, -0.0180490408, 0.0343208723, -0.0182106048, -0.0167103652, -0.00175845437, -0.00680878153, 0.0457919389, -0.00407949882, -0.00271341484, -0.0336284563, 0.0113152713, 0.0175181869, 0.0264042225, -0.00821092911, -0.00540086394, 0.00608751224, 0.00759929232, 0.0302356053, -0.00396986585, -0.0150139397, -0.00547876069, 0.000758053968, 0.0230921544, 0.0271889642, 0.00268312148, 0.0414989442, -0.0112344893, 0.0102189425, 0.031597361, -0.024119243, 0.0149562387, -0.0129943863, 0.0128674423, 0.00307837687, 0.000618849, 0.00417470606, 0.0376906432, 0.0133059742, 0.00351690874, -0.0429299437, 0.0228498094, 0.00506042456, 0.0231267754, 0.00744349835, 0.0306048952, 0.0244192909, 0.0742272586, 0.00282016257, -0.0214072708, -6.89713706e-05, -0.00450071972, 0.00644526165, 0.0270274, -0.00793396123, -0.0288969297, 0.0336515345, -0.00681455154, 0.0232883394, 0.0148062147, -0.00870139152, 0.00177143724, 0.02818143, -0.0222727936, 0.00469113514, 0.0249963049, 0.0180375, -0.00345632201, -0.00785895, 0.00127015507, 0.0315512, 0.0438531674, -0.000186267775, -0.013802208, -0.0278121401, 0.0217534788, -0.013825288, 0.00170652301, 0.0262195785, 0.0038256119, -0.0230344534, -0.0134329181, -0.00417470606, 0.017633589, 0.0286661237, 0.00703958748, 0.0310895871, -0.0101958616, 0.0147485128, -0.0260349326, -0.027858302, -0.0496694818, -0.00758198183, -0.00228209584, 0.0257118046, 0.020864876, 0.0260118525, 0.0199647322, 0.0268196743, 0.010443978, 0.00431319, -0.0114652952, 0.0142407389, 0.0125789354, 0.0197223853, 0.00759352231, -0.0225843806, 0.0165257193, -0.00224891747, 0.00244798767, 0.0130751682, 0.0194800384, -0.0131213292, -0.000648060406, -0.00776085677, 0.0197108444, 0.0156371165, 0.0011561946, 0.0222843327, -0.00987273268, 0.0358903557, 0.0291046556, -0.00717230095, -0.0227228645, -0.0611636303, -0.00546145067, -0.0282968339, -0.00743195787, -0.0232883394, 0.00224314723, 0.0253886767, -0.00347940275, -0.0270504802, -0.00341593102, -0.0165488012, 0.00990735367, -0.00923224632, -0.0264042225, 0.0506850295, 0.0369982272, 0.00390350888, 0.000524002069, -0.000407877727, -0.0404372364, -0.00412854506, 0.0166180432, -0.0151524236, 0.0114364447, 0.0180721208, 0.0403218344, 0.0168603882, -0.00736848637, -0.00813591667, -0.00128890807, -0.0178413149, 0.00378810591, -0.000781134528, -0.00475749187, -0.0254809987, -0.0325667486, 0.0113152713, -4.58682152e-05, 0.00831479114, -0.00248982129, -0.0234845262, -0.0215688348, -0.0266811904, -0.0185106527, 0.0336515345, 0.00237297569, 0.0193877164, 0.00608751224, 0.0179682579, 0.0251347888, -0.0580708273, -0.0195608214, -0.0145407869, 0.00705689797, -0.0305587333, -0.00518448325, 0.00927263685, 0.0247654989, 0.00889757741, -0.0107094049, 0.00638756, 0.000312670192, 0.0179567188, 0.0277428981, 0.0103805065, -0.00657220511, -0.0185452737, -0.0103458855, -0.0112633398, 0.00519602327, -0.0132021112, -0.0142176589, -0.0195839014, 0.00151899294, 0.00615098374, -0.0263349805, -0.0162718333, 0.0410373323, 0.014206118, 0.00288507692, 0.00455553643, -0.0123712095, 0.0223304946, -0.000598653452, -0.0445917472, -0.0121981045, -0.0395140126, 0.0200685952, 0.0166295823, 0.0225843806, -0.00228498084, -0.0191453695, 0.00490751583, 0.0145061668, -0.00148869969, 0.0159256235, -0.027881382, 0.00396409538, 0.00654335413, 0.00882833544, 0.0325898267, -0.000801330083, 0.0226767045, 0.0198493283, -0.00620291522, -0.00834364258, 0.0165949613, -0.00920916535, 0.00744926836, -0.000540951907, 0.00160987291, -0.0682263, 0.000164178899, -0.0115056867, 0.0108651994, -0.0193761755, -0.00392658962, 0.017506646, 0.00232969946, -0.0266119484, 0.0129366843, -0.00159256242, -0.0294739455, 0.01389453, -0.00134300324, -0.0213034078, 0.00857444853, 0.0270274, -0.00549030118, 0.0275813341, -0.0195262, -0.0193877164, -0.00415162556, 0.0185568146, 0.00543259969, -0.0200685952, 0.03450552, 0.00930148736, -0.000306719739, 0.0332360864, 0.0181644447, -0.00598364929, 3.60634622e-05, -0.00601250026, -0.00420644181, -0.0171142761, -0.0174258649, 0.038175337, 0.0338823423, -0.00785317924, 0.031412717, 0.0198262483, 0.0019027082, -0.0131328702, -0.00174258638, -0.0127520394, 0.013963772, 0.0216034558, 0.000652388029, -0.00127159758, 0.0162718333, -0.000622816, -0.00976887, -0.00500272308, -0.000895095116, 0.00478345761, 0.0123135075, 0.0141022559, -0.0470844544, 0.0214649718, 0.000695664145, 0.0374367572, -0.0256194826, 0.00175701175, 0.00601250026, -0.00199647318, -0.00115042436, 0.0169180911, 0.0341823921, 0.0143792229, 0.00926686637, 0.0123596694, -0.0189491846, 0.0109402118, 0.0179567188, -0.00439397199, -0.0250886288, -0.0165488012, 0.00565186562, -0.00308126211, 0.00247539603, 0.00120596215, -0.00264273048, -0.002199871, 0.00093620742, -0.0115633877, 0.0146100288, -0.0237961132, -0.00688956352, -0.0112402597, -0.000615242636, 0.00807821471, -0.0132136522, 0.00732232491, 0.00153630343, 0.0233806632, 0.00168344239, 0.00144470227, -0.0225151405, -0.0390985608, 0.0266811904, -0.00996505562, -0.00921493582, -0.00162285578, 0.0104151275, -0.000870571937, 0.00654912461, 0.00165603415, -0.0221227687, 0.00781278778, -0.0175181869, -0.014021473, -0.00114176911, -0.0215688348, -0.00131271, -0.00925532635, 0.0133636761, 0.0268427543, 0.0200108923, 0.0153024476, -0.00247539603, -0.0102593331, -0.00878794398, 0.00975156, -0.0254809987, -0.00225613, 0.017379703, -0.00335245929, 0.00858021807, -0.013836829, -0.0215111338, 0.00474595139, 0.00388908363, 0.0226767045, 0.0136868041, -0.024280807, 0.00482673338, 0.0126827974, 0.0091341529, 0.0230806153, -0.0268427543, 0.00347940275, 0.0238884371, 0.013940691, 0.00386888813, -0.00949190278, 0.010478599, -0.00433915574, 0.00271197222, -0.00368135795, 0.00336688478, -0.0118980566, 0.00679147104, -0.00992466416, 0.0209687389, -0.0279737059, -0.0303740893, 0.0162949134, 0.0354518257, 0.0078935707, 0.0109632919, -0.000769594219, 0.00246241316, 0.00463054841, 0.0101554701, -0.0053748982, -0.0351056159, -0.00245375792, -0.0059894193, 0.00596633879, -0.00238740118, 0.0382676609, -0.0186260566, -0.00531719672, -0.0032947578, 0.00779547775, 0.00901298, 0.0226651635, -0.0300278794, 0.010467059, 0.000799887581, -0.00425548851, 0.00132497156, -0.00261964975, 0.00678570056, -0.00978618, -0.035082534, 0.0255964026, 0.0113210417, -0.00936496, -0.000849655131, -0.0394447707, -0.0255733207, -0.0102420226, 0.0249039829, -0.0075877523, -0.00826286, 0.000356847944, 0.0149100767, -0.00043744978, 0.00662990659, -0.00610482274, -0.0104959095, 0.0353595, 0.0159602445, -0.0145061668, 0.0260810945, -0.010409357, 0.0152101247, 4.43355166e-05, 0.000335209857, -0.021084141, -0.0165026393, 0.0277198181, 0.00483827386, -0.0224112775, -0.00934764929, 0.00639333, 0.0047113304, -0.0191799905, -0.00995928515, -8.17739e-05, -0.00405064784, 0.00515851751, 0.00784740876, -0.00123697671, -0.0136175631, -0.0256656427, -0.0216496158, -0.00570668187, 0.00893219747, -0.0250886288, 0.00141440891, -0.00328610255, -0.00605289126, -0.00282593281, 0.0119903795, 0.00477480236, -0.0241654031, 0.00325725181, 0.0221227687, -0.0234037433, -0.00999967661, 0.00752428034, 0.0114306742, -0.00243789, 0.0178297739, -0.00472575566, -0.00560281938, -0.00448629446, 0.0178528558, -0.0032976428, 0.00175268413, -0.00657797512, 0.0512851253, -0.00683186203, 0.0232652593, 0.00960153528, -0.02776598, 0.000482168456, 0.0185568146, -0.0229421314, 0.0018233686, 0.010247793, 0.00395544, 0.003450552, -0.0186837576, 0.0144830858, -0.00880525447, 0.0388446748, 0.0135021592, -0.00798012223, -0.00106170832, -0.000381912047, -0.0168142281, -0.0231960174, -0.0123135075, 0.00999967661, -0.00766276428, -0.00399871636, 0.0132136522, 0.020737933, 0.0121519435, 0.0188799426, -0.00130693975, -0.00411700457, -0.0127751203, 0.00824554916, 0.00286776642, -0.0119442185, 0.0130751682, -0.0059259478, -0.0147831338, 0.0162718333, 0.020507127, 0.00467382465, -0.0107382564, 0.0129597653, -0.00566629088, -0.0398602225, 0.0186145157, -0.00920916535, 0.0267273523, -0.0349902101, -0.0117711136, -0.0221112296, -1.38957021e-05, 0.000316096237, -0.00292546791, 0.00661836611, 0.0225497615, -0.0226074625, 0.0159602445, -0.0201147553, -0.0179567188, -0.00466228416, 0.0301894434, 0.0137906671, -0.0119672986, -0.0336515345, -0.000465218647, -0.00524218474, 0.0330745205, 0.007028047, -0.00777239678, -0.0311357491, 0.010674784, -0.0231960174, 0.0062144557, 0.00660682609, 0.00471421564, -0.0270735603, 0.0504542254, 0.00388331339, 0.0125443144, 0.0100227566, 0.0122673465, -0.000253345817, 0.0125789354, 0.013802208, -0.0106632439, -0.0231267754, 0.0271889642, 0.00353421923, 0.0128328213, -0.000859031628, -0.00194886944, -0.00854559802, 0.00753582083, -0.0284122359, -0.0252040308, 0.00896104891, 0.00763391331, -0.00957845524, 0.0015694818, 0.0119788386, 0.0480538383, -0.0198954903, -0.0132598132, -0.00787626, -0.0036496222, -0.0395140126, -0.00623176619, -0.021061061, 0.0135483211, 0.00612790324, 0.00372463418, 0.0231383163, -0.00106747844, 0.00512678176, -0.00851097703, -0.0232768, -0.00768007478, -0.0104151275, 0.0204148032, -0.013917611, -0.00383138214, 0.00420932705, -0.00808398519, 0.0151755046, -0.0151408836, -0.007028047, 0.0246731769, 0.0279737059, -0.0144830858, 0.000616324542, -0.00312165311, 0.00213207188, -0.00326590706, -0.0199185703, -0.0102535635, -0.00740887737, 0.0258733686, -0.0160179473, 0.0293123815, -0.00683763204, 0.000394534261, -0.0124058304, 0.024511613, 0.00612790324, 0.0359826796, -0.0110440738, 0.00690687401, 0.00435935101, 0.00799166318, 0.0412450582, 0.0432992317, 0.0409911722, 0.0338823423, 0.00852828752, 0.0199070293, -0.0204840451, -0.0370905474, -0.00831479114, 0.00587113155, -0.0062144557, -0.00152909069, 0.0121404035, 0.00878217351, -0.00581054483, -0.013825288, -0.0339285024, 0.00924955681, 0.00532008149, -0.00322551583, 0.0199185703, 0.00571533712, -0.00995928515, -0.024442371, 0.0149216177, 0.0291046556, -0.000964336912, 0.00176278199, 0.0103343455, 0.00567494612, 0.0219842847, 0.000941256294, -0.00969962869, 0.00603558077, -0.00170075276, -0.0328437164, -0.0253425147, -0.0221573897, -0.0081128357, 3.31333035e-06, -0.0176105089, -0.0110209938, 0.00931879785, 0.00885718595, 0.00614521373, 0.0102766436, 0.0254117567, -0.0100169871, 0.0398371406, 0.00502868881, -0.00359192071, 0.0190299675, -0.0264273044, -0.00964192674, -0.00965923723, -0.0110844653, 0.00792819075, 0.00720692193, -0.00461612316, 0.0090879919, -0.0212918669, -0.0124058304, -0.00736848637, -0.0259195305, -0.0166872852, 0.0022965211, 0.0029600889, 0.00853982754, -0.00430164952, 0.00657797512, 0.027604416, 0.00871293247, 0.0222035516, 0.0110902358, 0.00227776822, -0.0150831817, 0.052485317, -0.00193011644, 0.0100458376, 0.00888026692, 0.000566557, -0.00247972365, -0.0137214251, 0.017702831, -0.00659528561, 0.0143330619, 0.0391908847, 0.010582462, -0.00796858221, 0.0300048, 0.0279044639, 0.00941112079, 0.0170104131, 0.0202070773, 0.00609328225, -0.00153197581, -0.00865523051, -0.00347651751, -0.0058797868, 0.00334091904, -0.0125443144, 0.00121678121, 0.000546361436, -0.0101150796, -0.0275582541, 0.0143446019, 0.000939813792, -0.000680517522, -0.000830902136, -0.0084013436, 0.00755890133, 0.00532296672, 0.00909953192, -0.0144253839, -0.00316781434, 0.0184067897, 0.00538355345, -0.0122788874, -0.0349209718, 0.00221429649, 0.00491905585, -0.0185221937, 0.00175556925, -0.00961307622, 0.0173681621, 0.00132497156, 0.0118865166, -0.024534693, 0.0191684514, 0.0170681141, 0.0205302071, -0.00381984166, -0.0202070773, -0.00529988622, 0.00545568, 0.0185337327, -0.00861483905, 0.0283429958, -0.00203109416, 0.0318743289, -0.0142869009, 0.0282737538, -0.00671068858, 0.0148754558, -0.0107844174, 0.0112229493, -0.00536047295, 0.0154870925, -0.000727039354, -0.0115229972, 0.00562013, 0.017633589, -0.0228613485, -0.00338708027, -0.00589421205, -0.00426991377, 0.0111537073, 0.00221285387, 0.0084013436, -0.0269812383, -0.0144600049, -0.0166988242, 0.00627215719, -0.0062375362, 0.00765699381, -0.0117307222, 0.0121750245, -0.0142522799, -0.0215688348, 0.0109286709, 0.00388331339, -0.00562013, 0.0201493762, 0.0150485607, 0.00856290851, -0.0151755046, 0.00553357741, -0.00918031484, 0.0238191951, -0.0260580145, 0.0291277356, 0.0011958644, 0.0161564294, 0.0165718812, 0.0120250005, -0.00714922044, 0.00495656207, -0.0162025914, -0.010490139, -0.0031187681, 0.00376214017, -0.0131790312, 0.0102535635, -0.0101958616, 0.00741464738, -0.0134329181, -0.0228498094, 0.00201666867, -0.024696257, 0.0115172267, -0.00359769072, -0.00593748828, 0.00841288362, -0.0131097892, 0.00308126211, -0.0263349805, -0.00404199259, -0.00607020175, 0.00619137473, -0.00634716917, -0.0133405952, 0.0116961012, 0.00130044844, -0.00165459153, -0.0130520873, 0.00999390613, 0.0161679704, -0.00512678176, 0.0158910025, 0.013963772, 0.00535470247, -0.00740310736, -0.0150370207, 0.0119672986, 0.00703381747, -0.000775364402, -0.00939958077, -0.0106805544, 0.00522775901, 0.0193069335, 0.0144600049, -0.00356018473, 0.00576726859, -0.0073165549, 0.00381118641, -0.0323821, 0.0310895871, 0.00284757093, -0.00623176619, -0.00014533574, -0.0115864687, 0.0125327734, 0.00518736802, -0.00349671324, -0.0311588291, 0.00971693918, 0.00416316604, 0.0217073187, -0.00371309393, 0.017345082, -0.0123135075, -0.00877063349, -0.0133175151, 0.0126020154, -0.0204263441, 0.00307260687, 0.00740310736, -0.00525661, 0.00249847653, -0.008753323, -0.00609328225, -0.0237037912, 0.0223997366, 0.00434492575, -0.0270274, -0.0184991136, 0.00300336489, -0.0318050869, 0.0106459334, -0.00756467134, 0.00197339267, -0.00117566879, 0.00111219718, -0.00292691053, 0.00377945066, -0.0121865645, -0.00419201655, 0.00288219168, 0.00843019411, 0.00571245234, 0.00951498374, 0.0190530475, -0.00101698958, -0.00579900434, -0.0118403556, -0.0238653552, -0.0235883892, 0.00194598432, -0.0125673944, 0.0091514634, -0.00856867805, 0.00525661, 0.00244798767, 0.000434204063, -0.00909953192, -0.00998813566, 0.00244366, 0.00649719313, 0.00818784814, -0.0116326297, -0.00713768, 0.00279708207, -0.00067078037, -0.000316817488, 0.00437954674, -0.0103401151, 0.028112188, 0.0110036833, 0.00084893388, -0.0221458506, 0.0197685473, -0.0282737538, 0.0128789833, -0.00743772788, 0.00305529637, -0.000799166271, 0.000941977603, -0.0236576293, 0.000775364402, -0.0035140235, 0.0302586854, 0.0156371165, 0.0218573418, 0.0123365885, -0.00616252422, -0.00910530239, 0.0183144677, -0.00677416055, -0.0267273523, 0.014009933, 0.00622022571, 0.0213495679, 0.0178297739, 0.00553357741, 0.00540663395, 0.017402783, 0.00973425, 0.00788203, 0.0313896351, -0.0150831817, -0.0020008008, -0.0304202493, 0.000978041091, 0.013813748, 0.00120091322, -0.010582462, -0.0101381596, -0.00181038573, -0.0128212813, 0.00890911743, 0.0177951548, -0.00332649355, -0.0152678266, -0.000754447596, -0.0048411591, 0.0286430437, 0.00823978, 0.0233114213, 0.0258964505, 0.0365135334, -0.00910530239, -0.00452380069, -0.0182221457, 0.0323128588, 0.0124173705, 0.0192030706, -0.00354287447, 0.0133175151, 0.0187183786, 0.0013934921, -0.00774931628, -0.00864946, -0.00263263262, -0.0114364447, 0.00135310099, 0.0263119, 0.00832056161, -0.00347940275, -0.00622599572, -0.00188972533, -0.0229767524, -0.00912838336, 0.00371886394, -0.00770892529, -0.0010018429, -0.0107613364, -0.0166295823, 0.0284353178, 0.0135137, 0.0214880519, -3.40067163e-06, -0.000672944181, 0.0146100288, -0.00256627589, 0.0269119963, 0.00194742682, -0.0133867562, -0.00796281174, -0.00553934742, -0.0265196264, -0.000975877221, 0.010490139, -0.00680878153, -0.00922647584, 0.00842442457, 0.0237730332, -0.00716076093, -0.0228267275, 0.00444878871, -0.0142638199, 0.000253706443, 0.00805513468, -0.00106098701, -0.00684340205, 0.00889757741, 0.00837826356, -0.00683763204, 0.0102535635, 0.0111767873, 0.0182798468, 0.0212687869, -0.00584805058, 0.00845904555, -0.00181471335, -0.00541817443, -0.00208446803, 0.024119243, 0.00357749523, -0.00746657886, 0.00762237282, 0.00594325829, 0.0182683058, -0.017310461, 0.00388331339, 0.00172383338, 0.0145292468, 0.0272812862, -0.0228613485, -0.0282737538, 0.00442570774, 0.00105665938, -0.00236287783, 0.0070107365, 0.0127174184, 0.0013934921, 0.0146908108, -0.0142522799, 0.00798589271, 0.0194800384, -0.0144253839, 0.0165488012, -0.00684340205, 0.0220535267, -0.00643949164, 0.00318512483, 0.00483827386, 0.00858021807, -0.0111017758, 0.0129597653, 0.00442859298, 0.00928994734, -0.00221285387, 0.00635293918, 0.0201955382, -0.0093765, 0.00550472643, -0.013732966, 0.0135714011, 0.00901875, -0.0106920945, -0.00462189317, -0.0233460423, 0.0186606776, 0.0143907629, 0.00953806378, -0.00984965265, 0.0101208491, 0.0127866603, -0.00428145425, 0.0152101247, -0.00243789, -0.0200801343, 0.00529123098, -0.017633589, -0.00907068141, 0.02818143, -0.0101554701, -0.0152216656, -0.0182336848, -0.0148523757, -0.00818784814, 0.00143532571, 0.0177489929, 0.0226651635, 0.00599519, 0.00586536108, -0.0179336369, 0.0104497485, 0.0101497006, -0.00942843128, 0.00146345526, -0.0023527802, 0.00445167348, 0.0274890121, -0.00690687401, 0.0115460772, 0.0188107, -0.00137473911, -0.0156255756, -0.0126943383, 0.00987850316, 0.0025518504, -0.0101497006, -0.0239807591, 0.00855136756, -0.0144138439, 0.000473873864, -0.0201493762, 0.0279737059, 0.00265715574, 0.00369289843, -0.00653181411, -0.0148523757, -0.0168603882, -0.00789934, 0.00441128248, 0.00159544754, -0.0158910025, 0.00293412316, -0.0116614802, -0.00645680213, -0.00987273268, -0.0104035875, 0.00159111992, 0.00406218832, -0.0156255756, 0.00808398519, -0.00572399236, 0.0170219541, 0.00067222293, -0.00648565264, 0.00580477482, -5.56278865e-05, 0.00343324151, -0.00744926836, -0.00295720366, 0.0175181869, 0.00650296314, -2.49288678e-05, 0.0233691223, -0.0184991136, 0.0013920496, 0.0244885329, -0.00671645906, -0.00787626, 0.00566340564, -0.00691264402, 0.00104079151, 0.010386277, -0.0130174663, -0.013732966, 0.00249126391, -0.00274082297, -0.0367443375, 0.0086436905, 0.00890911743, -0.0169988722, 0.00641064066, 0.0142638199, -0.0166065022, -0.0199878123, -0.0172643, 0.0102131721, -0.0184414107, 0.0135944821, -0.00221141148, 0.0119788386, 0.0186606776, 0.00379964616, -0.0171488971, 0.0156140355, -0.00957268476, 0.00660682609, 0.017541267, -0.0180836618, 0.0403910764, -0.00838980358, 0.0143907629, -0.0169873331, -0.0031389636, 0.00925532635, 0.0177374519, 0.0202647801, 0.0103805065, 0.0183721688, 0.00462189317, -0.041406624, 0.00772046577, -0.0256656427, 0.0056259, 0.00341016077, 0.0187299196, -0.0084475046, 0.00373040442, -0.0238191951, -0.00328898756, -0.0120134596, 0.0169873331, 0.0203455612, -0.00259801163, -0.0279737059, 0.00881679449, 0.0399756245, 0.00762237282, 0.00111291837, 0.00781278778, 0.000402468228, 0.020507127, 0.0232191, 0.00514409179, 0.0222150926, 0.00264273048, 0.000433482783, -0.010640163, 0.0109055908, 0.00938804, 0.00892065745, -0.00053770619, 0.00939958077, 0.028019866, -0.00759929232, 0.0153024476, -0.0196762234, -0.020830255, 0.0237961132, -0.00245375792, 0.00454399595, -0.00153630343, -0.0204263441, -0.0119442185, 0.00352844899, 0.0197108444, 0.0181990638, -0.00273649534, -0.0125904754, -0.0184760317, -0.00584516581, 0.0120134596, 0.00641641067, -0.000422663754, -0.0147023518, 0.00945151132, 0.00186375959, 0.0126366364, 0.0390293188, 0.00304664113, 0.0180836618, 0.0123481285, -0.0122558065, -0.00617983472, 0.0124635324, 0.0218573418, -0.0217534788, 0.000606226793, 0.00421798229, 0.0206109881, 0.00617983472, 0.00905337092, -0.0113960532, 0.00237153308, -0.0208187141, -0.00928994734, 0.0326821506, 0.0135483211, 0.00856290851, 0.00757621182, -0.0226420835, 0.010409357, 0.031643521, 0.0296585895, -0.0222035516, 0.0127866603, -0.000100887533, -0.0320128128, -0.00987273268, -0.0145638678, -0.0110325338, -0.017564347, 0.00440551247, -0.0336746164, -0.00353133399, 0.00353710423, 0.0268427543, 0.0012953995, 0.0161448903, 0.0186145157, -0.0133059742, 0.0188684016, 0.00672799908, -0.0176451299, -0.0181413628, -0.0101670111, -0.00120379834, -0.017356623, -0.0118057346, -0.0184298716, -0.0198147073, 0.0196416024, -0.00272928271, 0.0238884371, 0.00570091186, -0.0157756, -0.0111940978, -0.00132425025, 0.017310461, 0.00209312327, -0.0159371644, -0.020541748, -0.00321686058, 0.0169757921, 0.0121634835, -0.000196365538, -0.0204148032, 0.00738579687, -0.00798589271, 0.0062779272, 0.0186606776, 0.0192376915, -0.0083378721, 0.0226305425, -0.00740887737, 0.0232652593, -0.0232768, -0.00292835291, 0.00398140587, -0.00472575566, -0.00150168245, 0.00639333, 0.0083378721, -0.0129828462, -0.00781278778, 0.0016473789, 0.0149908597, -0.00110786955, 0.0318974108, 0.0181990638, -0.00717230095, 0.0240961611, 0.00308991736, 0.00204119179, -0.00128241663, 0.00989004318, -0.00403910736, 0.00272351247, 0.013652184, 0.0065895156, 0.00649719313, 0.00836672261, 0.00827440061, 0.0426298939, 0.00384003739, 0.013652184, -0.0166757442, -0.00723000243, -0.000258935645, 0.00496233208, -0.0100400671, -0.0112691103, -0.00774931628, 0.0230459943, -0.00991889462, 0.00583362533, 0.0289200097, -0.0111306263, -0.0234614443, 0.0120019196, -0.00792242121, -0.0266119484, 0.000362437771, -0.0338131, 0.0126135563, 0.021014899, -0.0193992574, -0.0204609651, 0.00195896719, 0.00921493582, 0.0196300633, 0.0142984409, -0.0204032641, 0.013732966, 0.000256591535, -0.00356307, 0.0219727457, -0.0127058784, -0.00683763204, 0.017472025, -0.00431030476, -0.00283314544, 0.0283660758, 0.0255271606, 0.00697034551, -0.0101843216, -0.0131444102, 0.0120134596, 0.0316204429, 0.0117941946, -0.000572327117, 0.00429299427, -0.0185221937, 0.0017454715, -0.0157756, -0.00638179, -0.014009933, -0.00717230095, 0.0157063585, 0.00549030118, -0.0171950571, 0.0132713532, 0.00469690515, 0.00403622258, -0.00692995451, -0.0196993053, 0.000218905203, 0.00236432045, 0.0062779272, -1.94179192e-05, 0.0128905233, -0.00317069935, 0.00602404028, 0.00613367325, -0.004399742, -0.0233229604, -0.0020974509, 0.00366404769, 0.00510081602, 0.00321686058, 0.0137214251, -0.00208591064, -0.00317069935, 0.00174114387, 0.00687225303, -0.0127289593, 0.00129323569, -0.0151178027, -0.00453822594, -0.0157871414, 0.00488443486, -0.00410257932, -0.01052476, -0.00137762423, 0.0142522799, -0.014125336, 0.00570668187, 0.0113498922, -0.0209687389, -0.0133867562, -0.0140676349, -0.0157294385, -0.00438820198, 0.00252588466, 0.0136060221, 0.0249501448, 0.000622094667, 0.0154870925, -0.00788203, 0.00140863878, -0.0109113604, 0.00837826356, 0.00978618, 0.0151408836, -0.00143244071, -0.0131674903, 0.0117480326, 0.00481807813, 0.0156601965, 0.00583939534, 0.0309972651, -0.00108983775, 0.00666452758, -0.0112921903, 0.00322263082, 0.00603558077, 0.00598364929, 0.00830325112, -0.034436278, 0.00808398519, 0.00301490538, -0.017575888, -0.00482096337, 0.000596850296, 0.0244192909, 0.000532296661, -0.00553646265, 0.0180144198, -0.000762381533, -0.056085892, -0.0240961611, -0.0096823182, 0.00587690156, 0.0137560461, 0.00438243151, 0.00801474322, -0.0158563815, -0.0107497964, 0.00726462342, -0.00747811934, -0.00924955681, -0.0211649239, 0.0217996407, 0.0053518177, -0.00363519671, 0.000303474022, 0.0200339742, -0.00439108675, -0.00779547775, -0.0229075104, 0.00322263082, 0.00583939534, -8.84456385e-05, 0.0019229037, 0.0309972651, -0.0198493283, -0.0178874768, 0.00131343119, 0.00710305898, -0.00882833544, -0.0237037912, -0.0186260566, 0.0275582541, 0.0123596694, 0.0230459943, 0.0249039829, -0.00302644563, -0.0123019675, -0.0147023518, 0.00596056879, -0.010478599, 0.00388042838, 0.0100342976, -0.00281439256, 0.020507127, -0.000384075858, 0.0221343096, -0.00191280595, 0.01725276, -0.0200570542, 0.00803782418, 0.00360057596, -0.00185654697, 0.0184298716, -0.00242634956, -0.00784740876, 0.0259426106, -0.0159025434, -0.0114537552, 0.0049277111, 0.00975156, 0.0197685473, -0.0079397317, -0.00903606, -0.005175828, 0.0145869488, 0.0148408357, 0.0147254318, -0.00103934889, 0.0178413149, -0.00572976284, 0.0303279273, 0.00228930847, 0.000334668905, 0.00913992338, -0.00718384143, -0.034759406, 0.0116730211, 0.0226074625, -0.0142407389, -0.0228036474, -0.0057730386, 0.0232537203, -0.00938227, -0.000189513492, 0.00266436837, -0.013836829, 0.0159602445, 0.00329187256, 0.00184067897, -0.00620868523, -0.0290354136, 0.0181875248, 0.027604416, 0.0106055429, -0.00905337092, 0.0202878602, 0.00721846242, 0.0210379809, 0.00135165849, 0.00706843846, -0.0149331577, 0.00715499045, -0.0177720729, 0.0126135563, 0.0072530834, -0.00243789, -0.0130520873, 0.045399569, 0.0232191, 0.00832056161, 0.00921493582, -0.00432761526, 0.0119788386, -0.00719538145, -0.0128559023, -0.0177720729, -0.031181911, -0.0204378851, 0.0198147073, -0.0125096934, 0.010386277, -0.00779547775, -0.00734540541, -0.00116124342, -0.00164016616, 0.000472431333, 0.0130867083, 0.00529411621, 0.0262426585, 0.00796858221, 0.000740743475, -0.0282737538, 0.00213495689, -0.00372174918, -0.000600456609, 0.0303279273, 0.0135021592, -0.0112460293, 0.0042006718, -0.00152332056, 0.0200570542, -0.00229363609, -0.00334091904, -0.0228267275, 0.0091341529, 0.0126827974, -0.0159256235, 0.000598292798, -0.0275120921, -0.00689533353, -0.0505927093, 0.00446898397, 0.0268889163, 0.0115518477, 0.00306972186, 0.00111436087, 0.00676839, 0.0103112645, 0.0199416503, 0.0159833264, 0.0182913877, 0.00717807095, 0.0164449383, 0.0104959095, 0.00761660282, -0.00159689, 0.00639910065, 0.00709728897, 0.00522198901, -0.00829748064, 0.02104952, -0.024396209, 0.0270274, -0.0181875248, -0.00961884577, 0.0163756963, -0.014079175, -0.00555665791, 0.000839557382, -0.0421452038, -0.00134588836, -0.00934187882, -0.00566340564, -0.00576726859, 0.024534693, -0.00270331698, -0.024696257, -0.0135598611, -0.0220535267, -0.00828594062, 0.0134098371, 0.00270187436, 0.0105363009, -0.0115980087, -2.96396574e-05, 0.0127404993, -0.0109863728, -0.00313607859, -0.00422663754, -0.0130636282, -0.00965346675, 0.00482673338, -0.024627015, 0.000168416358, -0.017356623, -0.0134906191, 0.00582785532, 0.0179451779, 0.017402783, 0.00521333376, -0.0122327255, 0.00544991, 0.0183837097, -0.00288940454, -0.000404632039, 0.0107324859, -0.0201724581, -0.000899422681, 0.00409103883, 0.00380830141, -0.0247424189, -0.0123365885, 0.0018435641, 0.00667029759, 0.0211072229, 0.00686071254, 0.00339573552, -0.0116326297, 0.00550472643, 0.00491328584, 0.0166526642, -0.00353710423, 0.00543548493, 0.0229767524, 0.00322840107, 0.000163728109, -0.0168603882, -0.00423529278, -0.0166757442, 0.0303510092, 0.0216380768, -0.0100342976, 0.0086898515, 0.0054383697, 0.00957268476, -0.0226997845, -0.0148408357, 0.00653181411, 0.0170681141, 0.0150254807, 0.00140358985, -0.00210466352, -0.0120250005, -0.00392081961, 0.0283199139, -0.0132482732, 0.000828738324, -0.021014899, -0.0177374519, 0.000338275247, 0.000619930914, 0.00823978, -0.0090418309, 0.0195839014, 0.00782432873, 0.00188972533, 0.00200224342, 0.0149446977, -0.0302817672, -0.00681455154, 0.01727584, -0.0190415066, 0.00807244517, -0.00184067897, 0.00351690874, -0.0058192, 0.00285766856, 0.0165718812, -0.0233691223, 0.0128443623, 0.00388331339, -0.0132713532, 0.00712036947, -0.0366520174, -0.00741464738, -0.0223074146, -0.0142407389, -0.0196531434, -0.0102939541, -0.00689533353, -0.0140676349, -0.00377079542, -0.000692418427, -0.0165949613, -0.00628369721, 0.014090715, -0.0150601007, 0.0187991615, 0.00703958748, -0.00303221587, -0.010582462, -0.0215919148, 0.0196762234, -0.00291248504, -0.0107267154, -0.00709728897, -0.0109921424, 0.00467093941, 0.0245577749, -0.0352441, -0.00265715574, -0.0130059263, -0.0116499402, -0.0237268712, -0.0172296781, 0.0125096934, -0.00367847295, 0.00654335413, 0.002156595, 0.00634139869, 0.0323821, 0.00703381747, 0.00228209584, -0.00961307622, 0.0168834701, -0.00216669263, 0.0119672986, 0.00179596036, -0.00400737161, 0.00525084, 0.00534027722, 0.00975156, -0.0217881, 0.0263119, 0.00609328225, -0.031782005, -0.0169065502, 0.00958422571, -0.00785895, 0.00628946768, 0.0239115171, 0.0104151275, -0.0132482732, -0.0147831338, -0.0135367801, 0.00533739198, -0.0037506, 0.0217419397, 0.000718744763, 0.00424106279, 0.0134675391, 0.00883410498, -0.0125789354, 0.0155678745, 0.00201522629, -0.00492194109, -0.0146331098, -0.00170075276, 0.0120365405, -0.0280660279, -0.0262426585, 0.00046269421, -0.00436223624, -0.0266581103, -0.0228959695, -0.0246500969, -0.0185337327, -0.0272351261, -0.00851674657, -0.0193069335, 0.0114249047, -0.024696257, 0.0225382205, 0.00310434261, 0.024373129, -0.00102420233, 0.0159948654, 0.0150716417, 0.00732809538, -0.00678570056, 0.00104728295, 0.00591440732, 0.00730501441, -0.0059490283, -0.0237268712, 0.0131674903, -0.00418624654, 0.0126020154, -0.0109979128, 0.0218919627, 0.00710882945, -0.0167219061, -0.0100804586, -0.00407661358, 0.00647988264, 0.00253598252, 0.00644526165, 0.0189261045, 0.00243789, 0.0219035037, -0.0114883762, 0.006901104, -0.0188453216, -0.0188684016, 0.00923224632, -0.0123827495, -0.00953806378, 0.00544702495, 0.00269321934, 0.0041775913, -0.031458877, -0.00533162197, -0.0120480806, -0.0152101247, -0.0059894193, -0.0400679484, -0.00532873673, -0.0386369489, -9.56583317e-05, -0.0150716417, 0.00155794155, 0.0118172746, 0.0101035386, 0.00224026223, 0.0053518177, -0.00434492575, -0.0121404035, -0.00448340923, -0.000611275667, 0.0218573418, -0.0093303388, -0.0116557106, -0.00119874941, 0.0131213292, 0.0232075583, -0.000792674837, 0.00272784, -0.0119211376, 0.00650873315, 0.0142753599, -0.00707997847, 0.00859752856, 0.0184875727, 0.00922070537, -0.0252732728, -0.00995928515, -0.0134329181, -0.0298663154, -0.0164910983, -0.0407142043, 0.00277255895, -0.00508927554, -0.0309280232, -1.57777631e-05, -0.0124750724, -0.0107209459, -0.0227344055, -0.0193184745, -0.0263119, -0.0058192, -0.00514986226, -0.00523064425, 0.0339515842, 0.010478599, -0.000410402194, 0.0097919507, -0.0125673944, -0.00452380069, 0.00359480572, -0.000647339097, 0.000343504449, -0.0203917231, -0.00466228416, 0.00353133399, 0.00153774593, -0.0268196743, -0.000946305227, 0.0245808549, 0.000198168709, 0.00770892529, 0.00888603646, -0.00995351467, 0.0224343576, -0.0024523153, -0.00514409179, -0.00200945605, 0.00593171781, -0.0280891079, -0.020830255, 0.0026081095, 0.00253454, 0.0159487054, -0.00221285387, -0.0114422152, 0.0152101247, -0.00645680213, -0.00132280774, 0.00272495509, 0.0142176589, -0.00896681845, -0.0219150428, 0.00158246467, -0.00110786955, 0.0154986326, 0.00421221228, 0.00776662678, -0.00248549366, -0.0215226728, 0.00341304601, -0.00776662678, 0.00336976978, -0.0287584458, -0.00392370438, -0.0083378721, -0.00745503837, 0.024257727, -0.00154207356, -0.0118634356, 0.00512101129, 0.00150024, -0.00372463418, 0.00468536466, -0.0306510571, 0.0566398278, 0.0256656427, 0.00608174177, -0.00847635604, -0.00491905585, -6.93770853e-05, -0.0179105569, 0.0264503844, 0.00709728897, 0.0227113254, 0.0106805544, 0.0152332056, -0.00235133758, 0.0237961132, -0.0131559502, -0.00358615047, 0.00946305227, -0.0034736325, 0.00482961861, -0.00263696024, -0.0251809508, 0.00368712819, -0.00755890133, -0.0121519435, -0.00245375792, -0.00495367683, 0.00724731293, -0.000785462151, -0.0292200577, -0.00633562868, -0.00191713357, 0.0189376436, 0.017472025, -0.00808975566, -0.00765699381, 0.00675685, -0.00425260328, -7.28031082e-05, -0.000813591643, -0.00814168714, -0.0252963547, 0.0220073666, -0.00142955559, 0.0255502407, 0.0048642396, -0.000595407735, 0.0373444334, -0.0133290552, -0.00357461022, -0.0162718333, 0.00703381747, -0.00438243151, 0.0144138439, 0.0108132679, -0.0108536594, -0.00770892529, 0.0248809028, -0.00489597535, -0.0121519435, -0.0198839493, 0.00353421923, -0.00843596458, 0.00864946, -0.00658374513, 0.0211303029, -0.0162025914, -0.0207494721, -0.00827440061, -0.0122327255, -0.0113325818, 0.031343475, -0.0062375362, 0.0195262, 0.0148062147, 0.00579323433, 0.0223766565, 0.000313752098, 0.0161333494, 0.0324975066, -0.00323994132, -0.0216957778, 0.0298663154, -0.0178528558, -0.0151524236, 0.00699919648, -0.0231152363, 0.00821669865, -0.00546433544, 0.00245808554, 0.0263119, -0.0062606167, 0.0190184265, 0.00605866127, 0.0315512, 0.0122673465, -0.0248116609, -0.0241423231, -0.00749543, 0.0117711136, 0.00549895642, 0.0284814779, 0.0197685473, 0.00989004318, 0.00903029088, -0.0263811424, 0.0131674903, -0.00186952983, 0.0194338784, -0.00204407703, 0.0136291031, 0.00538643869, 0.00161708554, 0.027927544, 0.0194800384, 0.00341881602, 0.00450649, -0.00505176932, 0.010201632, 0.0117999641, 0.00261243712, 0.0176797509, 0.00993620418, -0.0275582541, -0.00419490179, 0.0295893475, 0.0059028673, 0.0205763672, 0.027535174, 0.0166757442, 0.0160987284, 0.00340150553, -0.0157640595, 0.0147600528, 0.02104952, 0.0197916273, 0.00010746911, -0.0115806982, 0.0144253839, -0.00455553643, 0.0204609651, 0.010270874, -0.00826863, -0.0108421184, 0.0163295344, -0.0144830858, 0.00754736084, -0.00455842121, -0.00911684241, 0.0132944342, 0.00512101129, -0.0144369248, 0.0159833264, -0.0102997245, 0.0027869842, -0.000245772477, -0.00239461381, 0.0223766565, -0.000300047977, 0.00209168065, -0.0356364697, 0.0100342976, 0.000516428729, 0.0202416983, -0.0282275919, -0.00308991736, -0.0233460423, 0.00770315528, 0.0145869488, 0.00342458626, 0.00687225303, -0.000121263387, 0.0133867562, 0.00357172522, 2.84901344e-05, -0.00686648302, 0.0121288635, -0.0123712095, 0.0163641553, -0.00432473, -0.0170104131, 0.00802628417, 0.000957124226, -0.00445455872, 0.031112669, 0.00360634597, -0.020761013, -0.017091196, 0.0129136043, 0.0137214251, 0.00448052445, -0.00500272308, -0.0109979128, 0.00137906673, 0.0196416024, 0.00770892529, -0.0220304467, 0.00824554916, -0.0151293427, -0.00864946, 0.0159833264, 0.0145523278, -0.00345343701, 0.00243644742, -0.00157813705, 0.0112691103, -4.11912333e-06, 0.00747811934, 0.00677993055, 0.0190415066, -0.0098381117, 0.0049277111]
|
25 Nov, 2024
|
Dictionary items in value range in Python
25 Nov, 2024
In this article, we will explore different methods to extract dictionary items within a specific value range. The simplest approach involves using a loop.
Using LoopThe idea is to iterate through dictionary using loop (for loop) and check each value against the given range and storing matching items in a new dictionary.
Python
d = {'a': 10, 'b': 15, 'c': 20, 'd': 5}
# Initialize an empty dictionary to store filtered items
res = {}
# Iterate through each key-value pair in dictionary
for key, val in d.items():
# Check if value is within range
if 10 <= val <= 20:
# Add matching items to new dictionary
res[key] = val
print(res)
Output{'a': 10, 'b': 15, 'c': 20}
Let’s explore other different methods to extract dictionary items within a specific value range:
Table of Content
Using Dictionary ComprehensionUsing filter() FunctionUsing Dictionary ComprehensionWe can use dictionary comprehensions to filter and create new dictionaries in a single line of code. It is a preferred method for clean and readable code.
Python
d = {'a': 10, 'b': 15, 'c': 20, 'd': 5}
# Iterates through items and includes
# those where value lies between 10 and 20
res = {key: val for key, val in d.items() if 10 <= val <= 20}
print(res)
Output{'a': 10, 'b': 15, 'c': 20}
Explanation:
d.items(): Extracts key-value pairs from dictionaryDictionary comprehension: Iterates through items and includes those value lies between 10 and 20Using filter() FunctionAn alternative to dictionary comprehension is use filter() function combined with a lambda function.
Python
d = {'a': 10, 'b': 15, 'c': 20, 'd': 5}
res = dict(filter(lambda item: 10 <= item[1] <= 20, d.items()))
print(res)
Output{'a': 10, 'b': 15, 'c': 20}
Explanation:
filter(): Applies a condition to each item in the dictionary.Lambda function: Specifies the range condition (10 <= item[1] <= 20).dict(): Converts the filtered items back into a dictionary.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python
|
https://www.geeksforgeeks.org/python-dictionary-items-in-value-range/?ref=next_article
|
Pandas
|
Dictionary items in value range in Python
|
Dictionary items in value range in Python, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.to_sparse(), Python | Pandas Series.str.swapcase(), Python | Pandas Series.sum(), Calculating the Product of List Lengths in a Dictionary – Python, Pandas Tutorial, Python – Dictionary values String Length Summation, Python | Pandas Series.sort_values(), Python | Pandas Series.to_string(), Dictionaries in Python, Python – Access Dictionary items, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Python | Pandas Series.var
|
GeeksforGeeks
|
[-0.00116539293, 0.00599779701, -0.00618038652, 0.0184802972, -0.0231944323, 0.00432959059, 0.0219550356, 0.00758024119, 0.00141507061, -0.0102582248, -0.0259609427, -0.0109885838, 0.00363242952, -0.00107617292, 0.0207045712, 0.0250756592, 0.0137550952, 0.0375581607, -0.00105196598, -0.0171302389, -0.0149834258, 0.00936187431, 0.00443748431, 0.0405459926, -0.017085975, 0.00905755814, -0.00348027144, -0.0113537628, 0.0303209648, 0.0279307, 0.0320694, -0.0184139, -0.025850283, -0.0208705626, -0.0540023036, -0.0105791399, 0.00657323143, 0.0234378856, 0.0210033543, -0.0080560809, -0.00612505618, -0.015625257, -0.0320251361, -0.021844374, -0.00812801067, -0.0107617294, 0.00817227457, -0.0108945221, -0.0197418258, -0.032047268, -0.0303652305, -0.0376909524, -0.0174511541, -0.00617485354, -0.00143858592, 0.0344596654, -0.0293250214, 0.0026710669, -0.0365843475, -0.0512579232, 0.0171634369, -0.0615714788, 0.0143747935, -0.0501955822, 0.0117632067, 0.00224640733, -0.0260273404, 0.0151051525, 0.0086536482, -0.0256068297, 0.0184471, 0.0233714879, 0.018579891, -0.00397824356, 0.00677795289, 0.0167539939, -0.0377794802, -0.00608632527, -0.0306308139, 0.0422280319, -0.0143305296, -0.036031045, 0.0460790135, -0.0357433297, 0.0235042814, 0.0128476787, -0.0190999955, -0.0274437927, 0.0209590904, -0.028395474, -0.00813907664, -0.0172187667, 0.0126484903, -0.0171634369, 0.0173736922, 0.038199991, 0.028771719, 0.00175535155, 0.00974365324, 0.0029297357, -0.0361195728, -0.011287367, -0.00493545644, 0.00986538, 0.0213574693, 0.0047611664, 0.0145186521, -0.0263371896, -0.0154371336, -0.0227517895, -0.00549705839, -0.0258945469, -0.00814461, 0.0299447197, -0.0328440256, -0.0490004495, -0.00914608687, -0.0318702124, -0.0100369034, 0.00361859705, 0.0213242695, 0.0116968108, -0.0102858897, 0.0534268692, -0.0501955822, -0.00744191557, 0.0140870763, -0.0300775133, 0.00498525379, -0.0201180708, 0.0177056734, -0.0043987534, -0.00102775905, -0.0121173197, -0.000589958567, 0.0390188769, 0.0604648739, 0.0286610592, 0.0152047472, 0.0239026584, -0.00827186927, -0.0352342911, -0.00715419883, 0.00517061, -0.00916821882, -0.028749587, -0.0089137, 0.0409443676, -0.0123054432, -0.0125488956, -0.0103744175, -0.0546220019, -0.00298229931, 0.0246772822, 0.0309406649, 0.0117189428, -0.0261822641, 0.00202093669, 0.040767312, -0.0129362075, 0.00334194582, -0.00639064144, 0.0188676082, -0.00965512451, 0.0114533575, 0.0123165091, 0.00481096329, 0.0162892193, -0.0518333577, 0.0272003412, 0.0250977911, -0.0473626778, 0.00390354777, 0.0176724754, -0.0213796012, 0.00172353664, -0.00174981845, -0.0492660366, -0.00713206641, 0.00264063524, -0.00226853928, 0.0193987787, 0.00493269, 0.00670602359, -0.00781262852, -0.0183143057, 0.0227296576, -0.0412320867, 0.00353836804, -0.00701034, -0.00615272159, -0.0166654643, -0.0179491267, 0.0308964, -0.0176392775, 0.0219993, -0.0252084527, -0.0384877063, 0.000767706952, 0.00770750083, 0.0232608281, 0.0083050672, -0.0132128587, 0.00543342857, 0.00501845172, -0.01491703, -0.0241239797, 0.0114201596, -0.0434674285, -0.0161564276, -0.00111213757, -0.00735892029, -0.0137661612, 0.00112942827, -0.00120550732, 0.00486076064, 0.004180199, 0.0291700959, 0.00481926277, -0.00980451703, -0.0155477943, 0.00965512451, 0.0170195792, -0.0347473845, 0.0191663913, -0.0128808776, 0.00973258726, 0.0395057835, -0.0704243183, -0.00436278852, -0.0150276897, -0.0249207355, -0.00456474395, -0.0596238561, 0.00197943905, -0.00263786875, -0.0132792545, 0.0163002852, -0.0014261367, 0.0502398461, 0.0354113467, -0.0130026042, 0.00359369838, 0.00654556602, -0.00957213, 0.0120730558, -0.0405902565, 0.0463446, 0.0132460566, 0.025850283, 0.0315603614, -0.000587883696, -0.00964959152, -0.00646257075, -0.04953162, 0.00170555431, 0.0379344039, -0.0245002247, 0.00181621476, -0.0341276862, 0.0231944323, -0.0151162185, 0.0207156371, -0.00827740226, 0.0256289616, 0.0208041668, 0.0303652305, -0.0367171392, -0.0127702169, -0.0111269094, -0.0144079914, 0.00280662579, 0.0113758948, 0.00378182111, 0.0396385752, 0.0253633764, 0.011259702, -0.0200406089, -0.00181483151, 0.036783535, -0.0281298887, -0.007458515, 0.0046615717, 0.0301217772, 0.00761897257, -0.0297012664, -0.0561269857, -0.00136942312, -0.0264035854, 0.0125046317, -0.000504888361, 0.00911288895, -0.0228845831, -0.0157912467, 0.00849872362, 0.0405681245, -0.00845445879, -0.025474038, -0.0555515513, 0.0609075166, -0.0316267572, 0.0164552107, -0.000580967404, 0.00667282566, 0.0469643, -0.0420067087, 0.00982111599, 0.0256953575, -0.0180819184, -0.0121173197, -0.0018577124, -0.0350351, -0.028395474, -0.00190335989, 0.0156805869, -0.00263925199, 0.036363028, -0.00415806659, 0.0140096135, -0.0177278053, 0.0137993591, 0.000114464412, -0.00593693368, 0.0245002247, -0.01164148, -0.0468757711, -0.0191885233, 0.0316488892, 0.0224640723, -0.0103578186, -0.0496644117, -0.0315382294, -0.0509038121, 0.0196201, -0.00388971507, -0.0231280364, -0.0263814535, -0.0428477302, 0.0314939655, -0.0220656954, 0.0593140051, -0.0202176664, 0.00714866538, -0.00580967404, 0.010208427, -0.0280192271, -0.0120619899, 0.00452047959, -0.00400037551, 0.0032921487, 0.000567480689, -0.0243010372, -0.0194098447, 0.0383770466, -0.00219107699, -0.0675471425, -0.0124493018, 0.000900499464, -0.00535873277, 0.00532553438, -0.00957213, -0.00754704326, -0.0111877723, -0.0246994141, -0.0715309232, -0.0199410152, 0.015315407, 0.0393287279, 0.00705460412, 0.0265142452, 0.00915715285, -0.0215234589, 0.0200959388, -0.0021620288, -0.036363028, 0.0180044565, 0.0353228189, -0.00599226402, -0.014928096, -0.00372649101, -0.0454150513, -0.00625231583, 0.00283152447, -0.0290594362, 0.012748085, 0.0188122783, -0.0218775719, 0.0101752291, -0.00988197885, 0.0299447197, 0.0289045125, 0.000395611132, 0.0072095287, -0.0380672, 0.00131547614, -0.00963852555, 0.0079232892, 0.0147067746, 0.0121837165, -0.017119173, -0.00611399, 0.0152379451, -0.0545334741, -0.0344817974, -0.0056381505, -0.03282189, 0.00488842558, -0.0227296576, 0.0372261778, -0.00646257075, -0.0193323828, 0.0530727543, -0.0259830747, 0.0104408143, 0.0166101344, -0.00277619413, 0.00159074413, 0.0314939655, 0.000729667372, -0.00681115128, 0.0647585, 0.0150166238, 0.00979898311, -0.0279749632, 0.000901882711, 0.00379288709, -0.017085975, -0.0036573282, 0.0136997644, 0.000331635558, -0.00776836416, 0.015315407, -0.0020154037, 0.0062191179, -0.0227296576, -0.0348137803, -0.0219329037, 0.0266249068, 0.00268489937, -0.0151051525, -0.0248100739, 0.000505234173, -0.0372261778, 0.0192659851, 0.0195094384, 0.0042244629, -0.011984528, 0.057189323, 0.0136001706, 0.0160347, 0.0137218963, -0.00691627851, -0.0361638367, 0.0124382358, 0.079409942, -0.0186352208, 0.0111158434, -0.0114422916, 0.0113205649, 0.0301660411, 0.0215013269, 0.0242789052, -0.034194082, 0.000341837062, 0.039284464, -0.010180762, 0.0216783844, 0.0176503435, -0.00911842193, -0.0149723599, -0.0253191125, -0.038199991, -0.0612616278, -0.0113869607, -0.0110660456, 0.00259498763, 0.0134231132, 0.0428256, 0.0164441448, 0.0231723, 0.0359203853, -0.0188676082, 0.0345260613, 0.0180708524, 0.0118296025, 0.00274299621, 0.0180376545, -0.0129472734, 0.00824420433, -0.0153707378, 0.00853745453, -0.00258807139, 0.0235264134, -0.0179491267, -0.00224087434, -0.00479713082, -0.0609075166, -0.0119402632, -0.00580967404, 0.0304537583, -0.000955829688, -0.00453707855, -0.0485578105, -0.0294356812, -0.00406400533, 0.0121062538, -0.0214017332, 0.0106289368, -0.00236121751, -0.00436278852, 0.00890263356, -0.0277093779, -0.0179380607, 0.0148063693, 0.0287053231, -0.00644597178, 0.0213353354, -0.018934004, 0.00457027694, -0.0191110615, 0.000874909223, 0.0122390464, 0.00873664301, 0.0113758948, -0.0327554941, -0.00331981364, -0.0244338289, -0.00921248272, -0.0100756343, 0.0360089131, 0.000388349057, 0.0238583945, -0.00018086069, -0.0292807575, -0.0149944918, -0.00547215948, -0.0127038201, -0.00424659485, 0.0477167889, 0.00356050022, -0.0347252525, 0.0483364873, -0.0242789052, 0.00243591331, -0.0168867856, 0.00749724591, 0.00242484733, -0.0121283866, 0.00115432695, -0.0174511541, -0.00988751184, 0.00969938934, 0.0235264134, 0.011995594, -0.0065842974, 0.00143305294, 0.0143194636, 0.00274714595, -0.00568794739, -0.0384655744, -0.0280192271, 0.0110217817, -0.0196090341, 0.0150940865, 0.0126706222, 0.0105016772, -0.0207045712, -0.00914055388, -0.0171302389, 0.0117853386, 0.0132792545, -0.00895243138, 0.0136444345, 0.0140870763, -0.0737441257, 0.00361859705, 0.000358954858, -0.013854689, 0.0222759508, -0.00937294122, -0.0234378856, -0.0161232296, -0.00249677664, 4.40912772e-05, 0.0148506332, -0.0440649949, -0.0125599615, -0.00504611665, -0.0354113467, 0.0369163305, -0.0285061337, 0.0253191125, 0.0257617552, -0.0137218963, 0.00438215397, 0.0233493559, 0.0101586301, 0.00880304, 0.00221735891, -0.0286167953, 0.0154482, 0.0151162185, 0.0103633516, -0.00343324081, 0.0093231434, -0.0138768218, -0.0298783239, -0.0163445491, 0.00675028795, -0.0250092633, -0.000381432765, -0.00816120859, 0.0106898006, -0.0337071754, 0.00272639701, -0.036340896, -0.0213906672, 0.0326005705, -0.00988197885, -0.0154150017, -0.0199078172, -0.0125931604, 0.0145186521, 0.0133013874, -0.0016737394, -0.0166543983, -0.0147067746, -0.0159129743, 0.0199520811, -0.0130468681, 0.0187680144, -0.0175396819, -0.00487182662, 0.0202729963, 0.0326005705, -0.0258060191, 0.00209286599, 0.0223312806, 0.0247215461, 0.0102803567, -0.0189893339, -0.00122625625, 0.0295684747, 0.0464773923, -0.0142420009, 0.00116885104, 0.0123054432, 0.0321800597, 0.0106455358, 0.00484969467, -0.00722612813, -0.0304537583, 0.000398723467, 0.00472520152, -0.0065842974, -0.00512357941, -0.00533383386, -0.0122169144, 0.0260937363, 0.0132571226, -0.000651859271, 0.0211250819, 0.0272003412, -0.00260328734, 0.00305146212, -0.0115972161, 0.0432682373, -0.0160568319, 0.0288823787, 0.0206160434, -0.0222980827, -0.0157248508, -0.00995944161, 0.0154260676, 0.0083106, -0.00924568158, 0.000541890447, -0.0164441448, 0.0206824392, -0.00419126498, 0.0143083977, -0.0165437385, -0.00821100641, -0.0146182468, -0.0061914525, -0.00167788914, 0.0107893944, 0.00485246116, -0.0316267572, 0.00754704326, -0.00361029734, 0.0293914173, 0.0283512101, -0.0128144808, -0.0119402632, -0.0140760103, -0.0206603073, -0.00621358491, 0.00608632527, -0.0046920036, 0.000547769247, -0.000993869267, 0.00369052636, 0.0191331934, 0.0126816882, -0.0182589758, -0.0223423466, -0.0148285013, -0.0354334787, -0.00223257462, 0.00613612216, 0.0239469223, -0.0232386962, 0.0120287919, 0.00470030308, 0.0182589758, -0.0049520554, 0.0404574648, -0.01670973, -0.0327112302, 0.00898009632, 0.0436223522, 0.00889156759, 0.00759684062, 0.00158382778, 0.0177499373, -0.00746958097, -0.0065842974, -0.01491703, -0.00275129569, -0.00354943424, -0.0158244446, -0.0265806429, 0.00558835315, -0.0201180708, 0.0041525336, 0.00370159233, 0.00710993446, -0.00713206641, -0.0155367283, 0.0146293128, -0.0332424, -0.0150940865, -0.0240354519, -0.0229509789, -0.0015644622, 0.00587607035, -0.00140262127, 0.0335301198, 0.00411103619, -0.0111490414, 0.0131907267, 0.0211582799, 0.0138878878, -0.010922187, -0.0130579341, 0.00235568453, 0.0102305589, 0.00686648162, 0.0333751924, 0.0441977866, -0.00422999589, -0.00168342225, -0.0279307, 0.0198192876, -0.0375581607, 0.0153264739, 0.0348580442, 0.000683674123, 0.00546386, 0.00993730873, -0.0142862648, -0.00900776125, -0.000337860198, -0.060110759, -0.0374917649, -0.0083493311, 0.00223810785, -0.00436278852, -0.00390631426, -0.014585048, 0.0172962304, 0.0311398525, -0.00117853389, -0.0170749091, -0.0112431021, 0.0528957, 0.0187680144, 0.0645814463, -0.00205136812, 0.027288869, 0.00146763434, -0.0151936812, 0.0317595527, -0.0188565422, -0.0332202688, -0.0101420311, -0.0459462218, 0.0230616387, -0.000760790659, 0.0253191125, 0.00108585577, 0.0311619844, -0.00264755148, 0.0270232838, -0.00537809823, -0.0176060796, -0.00878090691, 0.00916821882, 0.0583401918, -0.0174179561, -0.0121726505, -0.024367433, -0.00379842031, 0.012017726, 7.84565345e-05, 0.0062910472, -0.00333364634, -0.00206520082, 0.0152047472, 0.0147731714, -0.0260937363, -0.0076466375, -0.00819440652, -0.00268351613, -0.016399879, 0.00291866949, 0.020007411, 0.0627223477, -0.000729667372, 0.00253550778, 0.0140206804, -0.00246357848, -0.000104003542, -0.0110328477, 0.0198192876, 0.00580414105, -0.0041553, 0.0244116969, 0.0232386962, 0.000154838184, 0.00973812, -0.0229067151, 0.00357709941, 0.0210365523, -0.00183973007, 0.0278643034, 0.0121505186, 0.0286167953, 0.0583844557, -0.00324511784, -0.0264699813, -0.00101738458, -0.00927334651, -0.00424106186, -0.0151715484, 0.0406123884, -0.0439100713, 0.00900222827, -0.0151936812, 0.00711546745, -0.00485799415, -0.0210476182, -0.00802841596, 0.0220546294, -0.0203061942, -0.0256732255, -0.00126913714, 0.0432903729, -0.0179601926, -0.00823867135, 0.0121394526, 0.0280413609, 0.0267134346, -0.00507101556, -0.0485135466, -0.0355662704, 0.0598009117, -0.00786242541, -0.0103080217, 0.00500461925, -0.00928994548, -0.0197860897, -0.0336629115, 0.0268683583, -0.00935080834, 0.0165105406, 0.0062633818, 0.017495418, -0.0591812134, 0.0187901463, -0.0225083362, -0.00117438415, -0.0338621, 0.00178439985, -0.028749587, 0.0293250214, 0.0297897961, 0.0404353328, 0.00316765555, 0.0133124534, 0.00241654785, -0.00375692244, -0.022563668, 0.0241239797, 0.0333309285, 0.0128808776, 0.0226853937, -0.0340834223, -0.00455921097, -0.0267798305, -0.00328384899, 0.00409996975, 0.0220878273, 0.00599779701, -0.00307082781, -0.0182921737, 0.0103688845, 0.000642176485, 0.0156141911, -0.00713206641, -0.00900222827, -0.00316488906, 0.030608682, 0.00123732223, -0.0430469178, -0.0213242695, -0.00697160885, -0.00244559604, -0.00887496863, -0.0287053231, 0.00275959517, 0.0015354139, -0.00541129662, -0.00817780755, 0.0385762341, -0.00943933707, 0.0181372482, -0.0389967449, -0.0328882895, 0.0314054377, 0.0116082821, 0.00222704164, -0.0143305296, 0.00457857642, -0.0166433323, -0.00703800516, -0.00369052636, -0.00891923252, 0.0201180708, 0.0159351062, 0.0627666116, -0.00917375181, 0.00487735961, -0.0210586842, 0.0142530669, -0.0111545743, 0.00450111413, -0.0203283262, -0.00867578, 0.0124050369, -0.0139542837, -0.00790115632, 0.0020154037, -0.0154039357, -0.00588713633, -0.0197307598, -0.0265806429, -0.0170527771, -0.0142751988, 0.0171745028, -0.00802288298, 0.0358318575, -0.00310125924, 0.00469753658, 0.0409443676, -0.0313833058, -0.0136444345, 0.00165575708, 0.00423276238, -0.0444855057, 0.0279528312, 0.0165769365, 0.00216894504, 0.0363187641, -0.00979898311, 0.0119291972, 0.0172187667, 0.0238805264, 0.0150387567, -0.0125599615, -0.00832719915, -0.010545942, -0.00839359593, -0.0132349906, 0.0110494466, 0.0168535877, -0.0117964046, -0.0191885233, 0.0093231434, -0.00696607586, -0.0016446911, -0.0365622155, 0.0615714788, -0.00637957547, 0.00580414105, -0.0265142452, -0.0213353354, -0.00316765555, 0.00749171292, -0.0394393876, -0.00693287747, -0.0100922333, 0.0131796608, 0.00583180599, 0.0136776324, 0.0465216562, -0.0148838311, -0.0211914778, 0.00721506169, -0.0210254863, -0.0229509789, -0.0199299492, 0.0107395975, 0.00835486501, -0.0203061942, 0.0250535272, -0.00698820781, 0.0216562524, -0.00542236259, 0.0169310495, -0.0209369585, 0.0212136097, -0.0305644181, -0.00739765167, 0.00835486501, 0.0278200395, -0.0460347496, -0.0167982578, -0.0173736922, 0.00331981364, -0.0235264134, 0.0028412072, 0.0227960534, 0.0125046317, 0.027687246, 0.0125710284, -0.0365622155, -0.00881410576, 0.0146735767, -0.0394172557, -0.0172630306, 0.021091884, 0.00412210217, 0.00984324794, 0.0290151723, -0.00574881071, 0.00539746368, -0.0205939114, 0.0229731109, 0.0116193481, -0.0114976214, 0.0194873065, 0.00616378756, 0.00196145661, 0.0264035854, -0.0128919436, -0.0268683583, 0.00676135393, -0.000535319967, -0.0288602468, -0.0180708524, -0.0380893312, 0.00511804596, 0.0278421715, 0.0070214062, 0.0223644786, -0.00785689242, 0.0147510394, -0.0407451801, -0.0118738674, -0.0147731714, -0.0046892371, 0.0148174353, 0.00696607586, 0.00751384487, 0.00108723901, -0.00501845172, -0.00496588787, -0.00849872362, -0.00771303382, 0.0046892371, 0.00730912341, 0.0121726505, -0.0407009162, 0.00253965752, 0.00813354366, 0.0339727588, -0.0181151163, 0.00584840542, 0.013821491, 0.00242208084, 0.0157691147, 0.00155616272, 0.0343490057, 0.0209037606, 0.0134009812, 0.00827740226, -0.00703800516, 0.00244836253, 0.0143305296, -0.00159074413, -0.00467817066, -0.0154924644, -0.00236813375, -0.00165575708, 0.003640729, -0.00733678835, -0.0101033, -0.00552472332, 0.00786242541, -0.0158133786, 0.0218001101, -0.0307193436, 8.79664221e-05, -0.0178827308, 0.0021246809, 0.0152600771, -0.00303762965, 0.000805746473, -0.0101641631, 0.0119181313, 0.0182368439, 0.00728699099, -0.0124825, -0.02476581, 0.0260716043, -0.0309849288, -0.000500046939, 0.000111006273, 0.0267355666, 0.00471690204, -0.0299447197, -0.00742531661, -0.0180376545, -6.05606656e-05, -0.0276208501, -0.0120398579, 0.0112320362, -0.0222759508, -0.0106344698, 0.0188344102, 0.0155145964, 0.0275987182, -0.00159212737, -0.0100147715, -0.0184802972, -0.00428255973, -0.0365843475, 0.0254297741, -0.0143526616, -0.0297897961, 0.0326005705, -0.000265412178, 0.0367614031, -0.0202287324, -0.00776283117, -0.000191580912, -0.0114201596, 0.00481096329, 0.00254934025, 0.00770196784, 0.00278864359, 0.00422722939, 0.0136112366, 0.019310249, 0.00919588376, -0.0121173197, 0.0141534721, 0.0246108864, 0.0156141911, -0.0247879419, 0.0114533575, -0.0016474576, -0.014928096, 0.0140649443, -0.0466544479, -0.00408613728, 0.00406953832, -0.0089302985, 0.00270426483, -0.0345924608, -0.0212136097, 0.00657323143, 8.14824e-06, -0.00561325159, 0.0190999955, -0.00104159152, -0.00440705288, -0.00593140069, 0.000291175325, -0.00797861908, -0.0303652305, -0.00873664301, 0.00466987118, 0.00839912891, -0.00487182662, 0.0177610032, 0.011265235, -0.00953339878, -0.0250092633, -0.0155699262, 0.0214128, 0.00844339281, -0.0351678953, 0.0212800056, 0.0273773968, -0.0114422916, 0.0103965504, 0.00883070473, 0.00957213, -0.0104906112, -0.0374253653, 0.00882517174, 0.00828293525, -0.000532553473, -0.00127328688, -0.0330874771, 0.014894898, -0.0144079914, 0.000148181265, 0.00865918119, -0.00959979463, 0.0213464014, -0.0123386411, -0.00766877, -0.000427080202, 0.0161232296, 0.0002702536, 0.0116082821, 0.0130800661, -0.0292143617, 0.0175618138, -0.0240575839, 0.00937847421, 0.00329491519, 0.00660089636, -0.0515677743, -0.0135005759, 0.0239247903, 0.00338897645, 0.00663409429, -0.00520380819, 0.029147964, 0.0129140755, 0.00634084409, -0.00673368899, -0.00609739125, 0.00254104077, -0.00183281384, 0.0317816846, 0.0347473845, -0.0172630306, 0.00979898311, -0.0414091423, 0.0242125075, 0.0138657549, 0.00321468641, 0.0036434955, 0.00681668427, 0.00527020451, 0.0283512101, 0.012725953, -0.0108170593, -0.00101461809, 0.0279749632, 0.0249428675, -0.0206935052, -0.0057820091, 0.0163777471, 0.0361859687, -0.000488289283, 0.00966619141, -0.0358539894, -0.00664516073, -0.013843623, -0.013113264, 0.0100258375, -0.0260494724, 0.028771719, 0.0486463383, 1.13037931e-05, 0.0210254863, -0.00638510846, -0.0510808676, -0.00836593099, 0.00846552476, -0.0229952428, 0.0136112366, 0.00809481274, -0.0070933355, 0.0126374243, 0.00471966853, 0.00880304, 0.0138104251, 0.0241239797, 0.00636297651, -0.0303873625, -0.0231059045, 0.00128711946, -0.00250092638, -0.025850283, -0.000896349724, 0.00952233281, -0.0205164496, 0.00123732223, -0.0253855083, 0.0291700959, 0.00273054675, 0.0193545148, -0.00609739125, 0.0139874816, -0.0131575288, -0.00924014859, -0.0079122223, 0.00537809823, -0.0151272845, -0.0169089176, 0.00478329835, -0.0117300088, 0.0279307, 0.0201955345, 0.0242567733, -0.00606972631, -0.000826495292, -0.0268462263, 0.0103412196, -0.00594799966, 0.00998157356, -0.0279085673, -0.01491703, -0.00842679385, -0.000149478074, 0.0100037055, -0.00769643486, -0.0046920036, 0.0175507478, -0.0121394526, 0.00962192658, -0.0169642475, -0.0121615846, -0.0203172602, -0.0043268241, 0.0138768218, -0.00749724591, -0.0204279199, -0.0172630306, -0.00627998076, -0.00714866538, 0.00722059468, -0.0126595562, -0.0212246757, -0.0131796608, -0.0006010246, 0.0159129743, 0.0147067746, -0.0201070048, -0.00916821882, 0.0226853937, -0.0226300638, 0.0163334832, 0.0232386962, 0.00742531661, -0.00159489387, 0.0056824144, 0.0174179561, -0.0136665665, -0.0193545148, 0.0070933355, -0.0160678979, 0.0205496475, 0.0092346156, 0.00259222114, 0.00153679715, 0.0227296576, -0.0400812179, -0.039284464, 0.0141534721, 0.00489672506, 0.0115086874, 0.00206658407, 0.00341664162, 0.0515235104, -0.0244559608, -0.0220878273, -0.00601992896, -0.0251199231, -0.00376522215, -0.0131575288, -0.0130026042, 0.0248100739, 0.0268019624, -0.00200987048, 0.0103965504, -0.0147842374, 0.0393065959, -0.0258724149, -0.00357433269, 0.0110328477, -0.0388418213, 0.0111933053, -0.0129472734, 0.00615272159, -0.00921801571, 0.00924568158, -0.00827186927, -0.00499355327, -0.0226189978, 0.0219771676, 0.0420731045, -0.00481926277, -0.00233908533, -0.00244559604, 0.0146403788, 0.00351900258, -0.0277979076, 0.000404256483, 0.0149502279, 0.0210033543, 0.00873111, 0.00737551972, -0.00799521804, -0.0012912692, 0.0121726505, 0.0277536437, 0.00280662579, 0.0301881731, -0.00464220624, 0.017097041, 0.0123497071, -0.0076023736, 0.0258945469, 0.0122279804, 0.00792882219, 0.0126706222, -0.0111490414, -0.00558282, -0.0213685352, -0.0148063693, 0.00197113934, -0.00219661, 0.0141092082, -0.0107617294, -0.00325065106, 0.0208816286, -0.00579307508, 0.0143415956, -0.0519661494, 0.0029269692, -0.0168203898, -0.00448451517, 0.0224530064, 0.0030597616, -0.0306308139, -0.0220988933, 0.00103605853, 0.00426319428, -0.00725379307, -0.0115972161, 0.0126706222, 0.0194541086, 0.0150498226, -0.00657323143, -0.00660642935, -0.0121394526, -0.0228403192, -0.0313833058, -0.0139432177, -0.00848212373, 0.0119181313, -0.00529786944, 0.00761897257, -0.00646810373, -0.00166405668, 0.014197737, 0.0191553254, 0.0202619303, 0.0213242695, 2.10190028e-05, 0.00456197746, 0.0108447252, 0.00636850949, 0.0128919436, -0.0209037606, -0.0089137, 0.00732018938, 0.00740318466, -0.00763003854, 0.00271533104, 0.0306972116, 0.00416359957, 0.00740318466, -0.0251863208, 0.0049824873, -0.00989304483, -0.0208484307, -0.00533936732, -0.00216756179, 0.012017726, -0.0194319766, 0.0204832517, 0.0157801807, -0.00130095205, 0.00903542619, 0.0250092633, -0.0244338289, -0.00476946589, 0.0325120427, -0.0215234589, 0.0135448398, -0.00382885174, 0.0171634369, 0.00618591951, -0.0443748422, 0.00134037482, 0.0056824144, -0.0278421715, 0.0157580487, 0.0151272845, 0.0250977911, -0.00353836804, 0.0283290781, -0.00226300629, 0.00595906563, 0.0182368439, 0.017849531, -0.00177610037, -0.00779602909, 0.00657876441, -0.0100313704, 0.00154924637, 0.00276789465, -0.00327001652, -0.00605866, 0.026138, -0.0168203898, 0.0263814535, -0.00599779701, -0.0108834561, 0.00140815438, -0.0187901463, 0.0203504581, 0.0075304443, -0.012393971, -0.00664516073, -0.0304316264, 0.00640170742, 0.0053476668, -0.000430538348, -0.0329768173, -0.0129804714, 0.0306308139, -0.0238583945, -0.001682039, -0.02185544, 0.00216341205, 0.0106234038, -0.00218969374, -0.0107506635, 0.0301881731, 0.0117410747, 0.0222648848, -0.0260937363, 0.00697160885, -0.00969938934, 0.00717079779, -0.00572667876, -0.0151272845, 0.04371088, -0.00398101, 0.0084489258, -0.0165437385, 0.0455035791, 3.3371045e-05, 0.023305092, -0.0250092633, 0.0145297181, -0.00643490581, 0.0106344698, -0.00236536725, 0.0113537628, -0.0046892371, 0.0206935052, -0.0177056734, 0.0104076164, -0.0172077, -0.013456312, 0.0100590354, -0.00281630876, 0.00707120309, 0.00337514398, -0.00630211318, -0.0141092082, -0.00722612813, 0.00201125373, 0.00563261751, -0.00407230482, -0.0191442594, 0.00649023568, -0.0184692312, 0.00355496723, -0.00299059879, -0.00390354777, 0.0333751924, 0.0229509789, 0.00694394391, 0.0239247903, -0.00340557564, -0.00807268079, 0.0154371336, -0.0239247903, 0.0295242108, 0.00642383937, 0.014585048, -0.00849872362, 0.0107340645, -0.0018632455, -0.00376522215, -0.00194209104, -0.00100770185, 0.00605866, -0.00590373529, 0.00204030215, -0.00511251297, -0.00668942463, 0.016720796, 0.00640724041, -0.0161564276, -0.0193987787, -0.0155588603, 0.0162338894, 0.0113316309, -0.00203476916, 0.00108931388, 0.0118849333, 0.00395887811, -0.00402527396, -0.00889156759, 0.00247326121, 0.00178854971, -0.00814461, -0.0020555181, -0.00163500826, -0.0124382358, 0.00246634497, -0.0157469828, 0.00502951769, 0.0170638431, 0.020405788, 0.0223755445, 0.0369163305, 0.0104906112, -0.0176835414, 0.000363450439, 0.00119928271, -0.00212883065, 0.0091792848, -0.0178274, -0.00879197381, 0.00602546195, 0.0127923489, 0.00337237748, 0.0350572318, 0.0101088332, -0.0212136097, 0.00179684919, -0.018159382, 0.0297897961, 0.000944072031, 0.000142907607, -0.0130247362, -0.0100147715, 0.0123275751, -0.0125599615, -0.014197737, -0.0225083362, -0.00547769247, -0.0261601321, 0.0010263758, 0.00414146762, 0.0141202742, -0.00614165561, 0.0152600771, -0.00252305833, 0.0117078768, -0.0380893312, 0.0232386962, 0.0084046619, 0.00297399983, 0.0177610032, -0.00817780755, -0.0111435084, -0.0112099042, 0.0239469223, 0.0164773427, -0.0148838311, -0.00445408328, 0.0143194636, -0.0168978516, -0.00147178408, -0.026226528, 0.0034221746, -0.0140317464, 0.00184111332, 0.00876984093, 0.019653298, 0.000687823922, -0.00114464411, -0.0121837165, 0.0293028895, 0.00272086402, 0.0088417707, 0.0208926946, 0.00528680347, 0.00925674755, 0.0147067746, -0.00678901887, -0.017838465, -0.00621358491, 0.0135337738, -0.00794542115, -0.0170085132, -0.0091792848, 0.0144854542, -0.00948913395, -0.0110826446, 0.00479436433, 0.0066285613, -0.0204943176, 0.00357709941, -0.00228098873, -0.0168867856, 0.0105902059, -0.00334194582, -0.0072095287, -0.000966204097, 0.00243038032, 0.0384655744, 0.00268213288, 0.0190114658, -0.0144190574, 0.0114865554, -0.0204279199, 0.0226079319, 0.00982111599, -0.00281077554, 0.0186020229, 0.00219246023, -0.0127923489, -0.00846552476, -0.00318702124, 0.025451906, 0.016023634, 0.012725953, 0.0255404338, 0.000892199925, 0.00197805557, 0.0135780377, 0.00628551422, -0.0148506332, 0.000921248284, 0.00136181526, 0.0447510891, 0.00109899673, -0.000348407542, 0.00332258036, 0.010944319, 0.00234738505, 0.00482479576, 0.0174068902, -0.00712653343, 0.00299613201, 0.00676135393, -0.00316488906, -0.00357433269, -0.00346367224, -0.0151494164, 0.0124050369, -0.00421893, -0.00916268583, 0.00167788914, 0.0253855083, -0.0313169099, -0.00476669939, 0.0083050672, 0.0106566017, 0.0264921132, 0.00345260627, 0.0343047418, 0.0105791399, 0.00277204439, -0.0253191125, -0.0125046317, -0.00645703776, 0.0093674073, -0.00411656918, 0.0194098447, -0.00369882584, -0.0117078768, 0.0198082216, 0.0164884087, -0.00935634132, 0.00587053737, 0.00287163886, -0.0110881776, 0.000904649263, -0.00856511947, 0.0252748486, 0.0133456513, -0.00401144149, -0.0104408143, -0.00113288639, -0.0239690561, 0.0125046317, 0.0120287919, -0.0223312806, -0.00990964379, 0.0110439137, 0.0159904361, 0.00391184725, 0.0208926946, -1.03041748e-05, -0.020394722, 0.000604828587, 0.022563668, 0.0107949274, 0.0111103095, -0.00412763515, -0.00361306407, 0.00311785843, -0.00146901759, -0.00566581544, 0.0122501124, -0.000931622752, -0.0129251415, -0.00708226953, 0.00373479049, 0.000782922725, -0.0151383504, 0.0180929843, -0.00425766129, 0.0176946074, 0.00754151028, -0.00711546745, 0.00194070779, 0.00751937833, -0.00468370365, 0.00423829537, 0.0157469828, -0.015315407, 0.0245887544, 0.0171966348, -0.00540023, 0.0236592051, 0.00914608687, 0.00331151416, -0.00971045531, -0.0119181313, 0.000641484861, -0.00957213, -0.00167788914, 0.0180597864, 0.0162560213, -0.0188233443, 0.0139542837, 0.00962192658, 0.0162006915, -0.0095002, -0.0279749632, -0.0257617552, -0.00183973007, -0.00271394779, -0.00446791621, 0.00703247217, -0.0102250259, 0.00228513847, 0.0095168, -0.0195979662, -0.0158355124, 0.0227517895, -0.0109553849, 0.0363851599, 0.00679455232, 0.0150387567, 0.00595906563, -0.0107617294, 0.0148395672, 0.0242567733, -0.0198192876, 0.00847105775, -0.025828151, 0.0325341746, -0.0076466375, -0.0241018478, 0.0204611178, -0.0136223026, -0.0122058485, -0.000423276244, 0.00684988219, 0.00597013161, 0.00814461, -0.00587607035, -0.00558835315, 0.0164441448, -0.0195647683, 0.0210697521, -0.0164220128, 0.00787349138, 0.0159461722, -0.00111490407, 0.0110937105, 0.0264035854, -0.0190446656, 0.00972152129, -0.0307857394, -0.0134231132, 0.0227296576, -0.00386481639, -0.00583733898, -0.0247879419, -0.00748618, -0.0310291927, -0.0277757756, 0.00906862412, 0.0122722443, -0.0065123681, 0.0140096135, -0.0212689396, 0.0201844666, -0.00982111599, 0.0166212, 0.0106842676, -0.00355496723, -0.018579891, 0.0302545689, 0.00845999178, 0.0129472734, 0.0133677833, 0.00584287196, -0.00811141171, -0.0232829601, 0.0116857439, -0.000572322053, -0.00452877907, -0.00822207239, -0.00491332449, -0.0155809922, 0.0162560213, -0.0322907232, -0.00781816151, -0.00341110863, 0.00469477, -0.00233493559, -0.0130136702, -0.0032755495, -0.0238583945, -0.0141092082, -0.00309019326, 0.0140317464, 0.00579860806, 0.000816120883, 0.00965512451, -0.013102198, -0.00393951219, 0.00481649628, 0.0146957086, -0.00985431392, 0.00178716634, -0.0122390464, 0.0270896796, -0.0186352208, 0.00616932055, 0.00602546195, 0.000696815085, -0.00732018938, 0.015282209, 0.0131575288, -0.0083106, -0.00851532258, 0.00109000551, 0.0267355666, -0.0146182468, -0.000459932518, 0.0263814535, -0.0065123681, 0.00642937282, 0.0124825, 0.00296016736, -0.0137993591, 0.00758024119, -0.0136997644, 0.00224225759, 0.00256040646, 0.00182174775, -0.0163002852, 0.00168065575, 0.0056077186, -0.0202619303, -0.00202370319, -0.000327312882, -0.0251199231, -0.00722059468, 0.00805054791, 0.00867024716, 0.01164148, -0.00238473294, -0.00526467105, -0.0148174353, 0.0224198084, 0.00181206502, -0.00949466694, 0.0104297483, -0.0296127386, 0.00825527, 0.00527850399, -0.0197418258, 0.0236592051, -0.00562431756, 0.0161896255, -0.011287367, 0.00201125373, 0.0120730558, -0.000391807174, 0.00471136905, 0.0155699262, 0.00540023, 0.0134009812, -0.0362966284, 0.0332424, -0.029125832, -0.00517614279, 0.0062633818, -0.00421339693, -0.00375138945, -0.0075027789, -0.00581520703, -0.00274022948, -0.000457857648, 0.0317152888, 0.0272003412, 0.00382885174, -0.0217115823, -0.011259702, 0.036340896, 0.0097602522, -0.00353560154, -0.00217862776, 0.0226300638, 0.0141645391, 0.021490261, 0.00183143059, 0.0177167393, -0.0107285315, -0.00113219477, 0.00631871214, 0.00592586771, 0.00886390265, 0.0132349906, -0.00634084409, 0.00150913198, 0.0319366083, -0.0341055542, 0.0237256028, -0.0280413609, -0.00337514398, 0.0121173197, 0.0109664518, -0.00241931435, -0.00866471417, -0.0126263583, -0.000246738229, 0.00456474395, 0.00586500438, -0.00338067696, 0.00266415044, -0.00717633078, 0.0164330788, 0.000611399, 0.0245002247, 0.00812247768, -0.00198220555, -0.0122169144, -0.0053919307, -0.0172298327, 0.0158244446, 0.0241903756, -0.00340557564, 0.0299889836, -0.0166101344, -0.00854852051, -0.00900222827, 0.0208816286, 0.0074308496, -0.0174179561, -0.00233493559, 0.00211638119, 0.0133899152, 0.0100424364, 0.00234876829, -0.0161342956, 0.021833308, -0.030232437, 0.0178052671, 0.0304980222, 0.00105404085, 0.00346643873, 0.0101364981, -0.0195647683, 0.00684988219, -0.00334471231, 0.0245666225, -0.00388141559, 0.0175839476, -0.0017539683, -0.0315603614, 0.00338621, -0.00413870113, -0.00233631884, -0.0041525336, 0.00249401014, -0.0151162185, -0.022552602, -0.00252167508, 0.0282405484, 0.00689967955, 0.0144079914, -0.00249677664, -0.0177942012, -0.00269043236, -0.0110273147, -0.0264035854, -0.00674475497, -0.00720399572, 0.00395611115, 0.00278172735, -0.00507931504, -0.000917790167, -0.0120398579, 0.0209590904, -0.0277093779, 0.00393674569, 0.00267936639, -0.00439598691, 0.0183917675, 0.00844339281, -0.0130468681, 0.00450941361, -0.0132128587, -0.0237919986, -0.00302379695, 0.00170693756, 0.00971045531, -0.00765770348, -0.00564921647, -0.00170002133, -0.0235042814, 0.0147621054, -0.0115529522, 0.0164662767, -0.0246108864, 0.00719292974, -0.0105902059, 0.0154371336, -0.0182921737, -0.0158465784, -0.014186671, 0.00238196645, -0.0168646537, 0.00455644447, -0.0160568319, -0.00481926277, -0.029125832, 0.00660089636, 0.0264257174, 0.00170555431, 0.0270896796, 0.0121837165, 0.00107409805, 0.00668942463, -0.0191774573, -0.0216230527, 0.00805054791, 0.00676135393, -0.0183807015, -0.0144190574, -0.0101143662, 0.0118185366, -0.00793988816, 0.00895796437, -0.0193766467, 0.0162006915, 0.0193877127, 0.00470583607, -0.0262929257, -0.00346367224, 0.00654556602, -0.0012193399, 0.0068775476, -0.003278316, 0.00795095414, 0.00326725, -0.0102360919, 0.0152047472, 0.0154150017, -0.0039339792, -0.0095168, 0.0310513247, -0.0165880024, -0.0292364936, -0.0159461722, -0.0169531815, 0.0341719501, -0.00624125, -0.00824973732, -0.0176282115, 0.00756364223, 0.0163556151, -2.11919105e-05, 0.0146514447, -0.0106012719, 0.00802841596, 0.00434618955, -0.0135559058, 0.0156141911, 0.00434895605, 0.0107119326, 0.0115750842, -0.00546662649, -0.0298783239, 0.0028038593, 0.00393674569, -0.0152268792, -0.00308189378, -0.0140870763, -0.00872004405, 0.0100037055, -0.00188261108, 0.00488565909, 0.0043268241, -0.0175618138, -0.000334402081, -0.0322685912, 0.00144688552, 0.00920141675, 0.00881410576, 0.0151715484, 0.00870344508, 0.0149723599, 0.0110605126, 0.00587607035, 0.0188344102, -0.0100479694, -0.00876984093, 0.00623571686, 0.016410945, -0.00362966303, -1.55508205e-05, 0.0219218358, -0.0195315704, 0.00898562931, 0.00472520152, -0.0194098447, -0.0110162487, 0.00305422861, 0.0179601926, -0.000355842523, 0.0132239247, 0.00555792172, -0.00663962727, -0.00981558301, -0.000364142063, -0.00384821743, -0.00765770348, 0.00966065843, -0.0021108482, -0.00890816655, -0.000702348072, 0.00893583242, 0.00388694857, -0.0104408143, -0.0104242153, 0.0151162185, -0.00576540967, -0.013854689, 0.0143415956, -0.00419403147, -0.0151826153, -0.0255404338, 0.0115972161, -0.00693287747, 0.0105127431, 0.00598119758, 0.00225470681, 0.0136665665, 0.0201070048, -0.000271636847, 0.000678141136, -0.0168425217, 0.0136223026, 0.0106842676, -0.00518997526, 0.00719846273, 0.0027111813, 0.0105736069, 0.00136389013, 0.0108170593, -0.00707673607, 0.00498802029, 0.0259388108, 0.0188233443, 0.0033502453, 0.0177831352, -0.00173321937, -0.00680008531, -0.013854689, 0.00297123333, 0.000651513459, 0.00120066595, -0.00972705428, 0.0152268792, -0.00457857642, 0.0210697521, -0.00108516414, 0.0025507235, 0.0188565422, -0.018557759, -0.0265142452, -0.0150276897, -0.00718186377, 0.0171523709, 0.0051733763, -0.0110328477, -0.00449004816, -0.0125710284, 0.000906724134, 0.00835486501, 0.00249124365, -0.0199299492, -0.0109885838, 0.016388813, 0.008742176, 0.00104712462, 0.00750831189, 0.0153375398, -0.00841019489, -0.0191774573, -0.0179159287, -0.0187016167, 0.00400037551, -0.0215677228, 0.00406400533, 0.0245444886, 0.00872004405, -0.0190114658, -0.00536426576, 0.0288823787, -0.0161010958, 0.0144301234, -0.0299668517, 0.0335079879, 0.000418780663, 0.0100258375, 0.0146071808, -0.00286610588, -0.027665114, 0.002271306, -0.0148063693, 0.00209978223, 0.00964405853, 0.02983406, -0.00287993834, 0.0133567173, -0.00346090575, 0.00058650045, 0.015282209, 0.0284618698, -0.00784582645, 0.00860385, -0.0109885838, -0.00715419883, 0.0191331934, 0.0026364855, -0.0044706827, 0.0147731714, 0.00696607586, -0.00373202399, 0.0104629463, 0.00314829, 0.0116304141, 0.0147399725, -0.00203338591, -0.00356050022, 0.0271339435, 0.00700480677, 0.0182589758, 0.00114533573, 0.000711685047, 0.00361859705, 0.0223976765, -0.0209369585, -0.0160347, 0.0111877723, -0.00592033472, 0.00278449384, -0.00229758769, 0.0398820303, -0.0188454762, -0.0104574133, 0.00921801571, -0.00931207743, -0.0202066, 0.0125378296, -0.00583733898, -0.0127812829, 0.00732572237, 0.00550259138, 0.0082608033, 0.0221542232, -0.0140981423, 0.00319532072, 0.0121283866, 0.0167539939, 0.00388141559, 0.0398377664, 0.0187126826, 0.018159382, -0.0121173197, -0.0216341186, -0.00421339693, -0.015282209, -0.0226300638, -0.0102748238, 0.00125599618, 0.010551475, -0.0211582799, 0.0389967449, -0.00318978773, 0.0199188832, -0.0126706222, -0.00532276789, -0.00169587147, 0.0109885838, -0.0279970951, -0.019653298, -0.022541536, -0.0142420009, -0.00818334054, -0.0183475036, 0.00232525286, -0.0017539683, 0.01312433, -0.0168093238, -0.0215566568, 0.0134231132, 0.0016474576, 0.00698267482, 0.0063353111, -0.00458134292, -0.00705460412, -0.00985431392, -0.0132460566, -0.000982803176, 0.00556068821, 0.0196975619, 0.0118517354, -0.00767983589, -0.0188454762, 0.0147621054, 0.00580967404, -0.0123165091, -0.017860597, -0.0210586842, -0.00937294122, 0.015304341, -0.0195647683, -0.00228928821, -0.0407230482, 0.0141313402, -0.0200627409, 0.00450941361, 0.00619698549, 0.014562916, -0.0262486599, -0.0151936812, 0.00330598117, 0.00304869562, 0.0278864354, 0.00283567421, -0.00150913198, 0.0201402027, 0.0229952428, -0.00496588787, 0.0151383504, -0.0144633222, 0.0187680144, -0.0116857439, -0.0108281262, -0.0114090936, 0.0126595562, -0.0221099593, 0.0311177205, -0.00645150477, -0.00997604057, 0.00597566459, -0.00497418735, -0.00461177481, 0.00857065246, -0.0266027749, -0.000859693449, 0.00285504, 0.00152296457, -0.0038758826, 0.00942273811, -0.0119070653, -0.0168425217, 0.0023294026, -0.0233936217, -0.000495551387, 0.00791775621, -0.00380671979, 0.00876430795, 0.0103356866, -0.000997327385, 0.00332811335, 0.00476669939, -0.012382905, 0.000321952772, 0.00780156208, 0.00483309571, -0.0123386411, -0.0329546854, -0.00767430291, -0.0150166238, 0.0032036202, 0.00539469719, 0.0143969255, 0.000969662273, 0.0115640182, -0.00892476551, -0.00673922198, 0.0130579341, -0.00693841092, -0.00936187431, 0.00963852555, -0.0268683583, 0.00195039052, -0.0011100627, 0.0319144763, -0.0253633764, -0.0032755495, 0.0162449554, -0.000798138557, 0.0201070048, 0.0124714337, -0.0180265885, -0.00353836804, 0.0248543397, 0.0118517354, 0.0119070653, -0.0201734, 0.0108391922, 0.00340280915, -0.0161453616, -0.00733678835, -0.00899116229, 0.00234876829, 0.0028204585, 0.0256068297, 0.00900222827, 0.0011557102, -0.0248986036, -0.00297123333, 0.0112265032, -0.0128698116, -0.000383853476, -0.00548045896, -0.00912395492, 0.0106234038, 0.0198635515, -0.00210116548, -0.0216451865, 0.00971045531, 0.0370491222, 0.0077241, -0.000156221446, 0.00762450555, -0.0237256028, 0.00906862412, 0.00858171843, 0.0127702169, -0.00229205471, 0.0323128551, -0.00699927378, 0.00194900727, 0.0037126583, 0.00492715696, -0.0412763506, -0.000441604381, 0.0234157536, -0.0145297181, -0.0010090851, 0.0244559608, 0.0070214062, 0.000316073943, 0.00703247217, 0.0139653496, -0.0116857439, -0.00449004816, 0.000594454119, 0.00967725739, 0.00395334465, -0.0124935657, -0.00356603321, -0.0376688205, -0.0232829601, -0.0161785595, -0.0148727652, -0.00915162, -0.0031455236, 0.00824420433, 0.0141202742, -0.0179712586, -0.00451218, 0.00419956446, -0.0153264739, 0.00621358491, -0.0012276395, 0.0122390464, -0.0120730558, -0.00136873149, 0.0252305847, 0.00476946589, -0.00620805146, 0.01894507, 0.00915162, 0.00481373, -0.010191828, -0.0280192271, -0.0247215461, 0.000467886246, 0.014208803, 0.000836869702, -0.0142420009, 0.0213021375, -0.00693287747, 0.0206713732, 0.0143637275, 0.00880304, 0.0211804118, -0.0106787346, 0.00313722389, -0.0137993591, 0.0172519647, -0.0140206804, 0.00722612813, 0.00319532072, -0.0021274474, 0.00930654444, 0.0177499373, 0.0199078172, -0.0266913027, 0.0295242108, 0.0266691707, -0.0162892193, -0.00269873184, -0.0115308193, -0.00915715285, -0.0032174529, 0.0112929, 0.00391461374, 0.00360199786, -0.00269873184, -0.0100092385, -0.0018922938, 0.010911121, 0.0228624512, -0.00181759801, 0.0226521958, -0.0131796608, -0.00465603871, -0.0180819184, 0.0282848123, 0.0168314558, -0.0125267636, -0.0139321517, -0.0325120427, 0.000182935575, -0.029125832, -0.0110162487, -0.0249207355, -0.0176060796, -0.011674678, -0.0264478493, -0.0118296025, -0.0141092082, -0.0292586256, 0.00979898311, -0.0132571226, -0.010911121, -0.0134231132, 0.0228845831, 0.0190446656, 0.00740318466, -0.00251614209, -0.0166986622, -0.000326448353, 0.00899116229, -0.018956136, -0.0123275751, 0.0115750842, 0.00843232684, -0.000491055776, -0.00375415594, 0.00289377104, -0.00291866949, 0.019996345, -0.0153596718, 0.0177278053, -0.00374309, -0.00909629, 0.00170555431, 0.000159333766, 0.0015354139, -0.0101364981, 0.0194098447, 0.00809481274, -0.00558005366, 0.0394615196, 0.00400037551, 0.00345537276, -0.0192549191, -0.00673922198, -0.00642937282, -0.00775729818, -0.00935080834, -0.00136734825, 0.00388418208, -0.00759684062, -0.0287274551, -0.00114533573, -0.00683881622, -0.00855405349, -0.017838465, -0.027311001, 0.00234046858, -0.0145075861, -0.0177831352, -0.00666729268, -0.0106510688, 0.00187016174, 0.00754704326, -0.013091132, 0.00906862412, -0.013445246, -0.0252527166, -0.0315160975, 0.00300996448, 0.0276208501, -0.0163334832, -0.00533660036, -0.000818195753, -0.00203061942, 0.0112984329, 0.00697714183, 0.00904095918, -0.0168314558, 0.0109996498, 0.00419679796, -0.00221459242, -0.00453154556, 0.00357986591, -0.0143305296, -0.00959426165, -0.0102194929, -0.0132017927, -0.00784582645, -0.0255404338, -0.0137882931, -0.00940060616, 0.00905202515, -0.0276208501, 0.0143194636, 0.00613058917, 0.00600333, -0.0100092385, -0.00523700612, -0.0133677833, 0.000651859271, 0.00710993446, 0.0179712586, 0.00856511947, 0.00224225759, -0.00176780077, -0.0111711733, -0.0219218358, -0.000642176485, 0.0147289066, -0.00113634462, -0.0146846427, -0.00968279, 0.0282848123, -0.0180819184, -0.00409996975, -0.00744744902, -9.48394736e-05, 0.0158576444, 0.0142309349, -0.0139321517, -0.00875877496, 0.0306750797, 0.0264478493, -0.0273773968, 0.0101088332, -0.00611399, 0.00922908261, -4.63390679e-05, -0.000496588822, -0.0119291972, 0.0109664518, 0.00809481274, -0.0125046317, -0.0150940865, 0.0146182468, -0.0107395975, -0.00115916831, 0.00345813925, 0.00318425475, 0.0118959993, -0.00733125536, 0.0124825, -0.00209424924, 0.00886390265, -0.00768536888, 0.00539746368, 0.00539469719, -0.00384545093, 0.0057820091, 0.00480266381, 0.00207073381, -0.00986538, -0.011674678, 0.0192327872, -0.0304758903, 0.0184249654, 0.00142337009, 0.00372372451, -0.000627998088, -0.00034477649, -0.01200666, 0.00678901887, -0.0221542232, 0.00529510295, 0.0202508643, 0.0157580487, 0.00749171292, -0.00898009632, 0.00643490581, 0.00161702593, 0.0231723, 0.0159019083, 0.0209037606, 0.0151051525, 0.0145075861, -0.00406677183, 0.00761343958, -0.0123386411, -0.00626891479, -0.00280800904, 0.00286887237, -0.0127591509, -0.0200848728, -0.0205496475, 2.55902305e-05, -0.0192217212, 0.0229952428, -0.00106095709, 0.00253827428, -0.0015381804, -0.00896903, 0.0036434955, 0.00847659074, 0.00751937833, 0.0207377691, -0.011652546, 0.00053186185, -0.0137661612, 0.0229952428, 0.00259222114, 1.69448831e-05, 0.00369605934, -0.00672262302, -0.0144965202, 0.0386426337, 0.0117521407, 0.0193877127, 0.01746222, 5.10507816e-05, 0.0159793701, -0.00878644, -0.000858310203, -0.034216214, 0.0317374207, 0.00120135758, 0.0097159883, 0.0116857439, -0.00777389714, 0.00494098943, 0.0246330183, -0.0121947825, 0.00582074, -0.0250535272, -0.0106068049, 0.0103135547, 0.017108107, -0.00608632527, 0.0156695209, -0.0158797763, -0.00815014262, -0.0161232296, -0.0326005705, -0.00623571686, 0.00852638856, -0.0194319766, 0.0157801807, -0.0168867856, 0.00216064556, 0.00641277339, 0.000350136601, 0.0383770466, 0.0306308139, 0.00446791621, -0.0173404943, 0.0368942, -0.0266470388, -0.0333309285, 0.0218001101, -0.0168314558, -0.00419126498, 0.0124825, 0.000677103701, 0.0192327872, -0.0040363404, 0.0091350209, 0.0281962845, 0.0168203898, 0.000766323647, -0.0162117574, -0.0135891046, -0.0182700418, 0.0357433297, 0.0289045125, 0.0146735767, 0.0232165642, -0.0114090936, 0.0132792545, -0.0190557316, -0.00872004405, -0.0038039533, 0.0247215461, -0.00424936181, 0.00202093669, -0.0202951282, -0.0157912467, 0.0190557316, 0.00583733898, -0.00330598117, 0.00974365324, -0.00415806659, 0.0266249068, 0.0154482, -0.0093231434, -0.0124714337, 0.00423829537, -0.0221210252, -0.0142530669, 0.0129251415, 0.0166543983, 0.0183807015, 0.0120509239, 0.0140317464, 0.0138657549, 0.01092772, 0.00452324608, 0.0187237486, 0.0291922279, 0.00842679385, -0.00419679796, -0.00588713633, 0.0229952428, 0.00910735596, 0.000746266451, 0.0303873625, -0.000509729725, -0.00261573656, 0.0444855057, 0.00355496723, -0.00411656918, -0.00489672506, 0.00853192154, -0.0118849333, 0.0130468681, -0.0194541086, -0.00847105775, 0.000763557153, -0.00218969374, 0.00940060616, 0.024389565, 0.0362302326, -0.0244559608, 0.00253412453, -0.0245223567, 0.0237256028, 0.00719846273, -0.00213574688, -0.0166986622, 0.0216451865, -0.00488289259, 0.00440428639, -0.00527850399, 0.0145186521, 0.00315658958, 0.00776283117, 0.0142198689, -0.00029428766, -0.00419679796, -0.000910873874, 0.00707120309, -0.00503228419, 0.0126927542, 0.0136555005, -0.0142530669, 0.0122169144, 0.00235430128, -0.000791913888, -0.00894136541, 0.00948360097, -0.0130800661, 0.00827186927, 0.0263150577, -0.00505994959, 0.00226853928, 0.0170306452, -0.0148727652, -0.0228181873, 0.0221320912, 0.0162228234, -0.030608682, 0.00988751184, 0.00861491635, 0.0095002, 0.016410945, -0.0105182761, -0.0155809922, -0.0113426968, -0.0184692312, -0.00734785432, -0.00981005, -0.0041553, -0.00102430081, 0.00331151416, -0.0162338894, 0.0134009812]
|
27 Apr, 2023
|
Python | Ways to change keys in dictionary
27 Apr, 2023
Given a dictionary, the task is to change the key based on the requirement. Let’s see different methods we can do this task in Python.
Example:
initial dictionary: {'nikhil': 1, 'manjeet': 10, 'Amit': 15}
final dictionary: {'nikhil': 1, 'manjeet': 10, 'Suraj': 15}
c: Amit name changed to Suraj.
Method 1: Rename a Key in a Python Dictionary using the naive method
Here, we used the native method to assign the old key value to the new one.
Python3
# initialising dictionary
ini_dict = {'nikhil': 1, 'vashu': 5,
'manjeet': 10, 'akshat': 15}
# printing initial json
print("initial 1st dictionary", ini_dict)
# changing keys of dictionary
ini_dict['akash'] = ini_dict['akshat']
del ini_dict['akshat']
# printing final result
print("final dictionary", str(ini_dict))
Output
initial 1st dictionary {'nikhil': 1, 'vashu': 5, 'manjeet': 10, 'akshat': 15}
final dictionary {'nikhil': 1, 'vashu': 5, 'manjeet': 10, 'akash': 15}
Time complexity: O(n), where n is the number of key-value pairs in the dictionary.Auxiliary space: O(n), to store the keys and values in dictionary.
Method 2: Rename a Key in a Python Dictionary using Python pop()
We use the pop method to change the key value name.
Python3
# initialising dictionary
ini_dict = {'nikhil': 1, 'vashu': 5,
'manjeet': 10, 'akshat': 15}
# printing initial json
print("initial 1st dictionary", ini_dict)
# changing keys of dictionary
ini_dict['akash'] = ini_dict.pop('akshat')
# printing final result
print("final dictionary", str(ini_dict))
Output
initial 1st dictionary {'nikhil': 1, 'vashu': 5, 'manjeet': 10, 'akshat': 15}
final dictionary {'nikhil': 1, 'vashu': 5, 'manjeet': 10, 'akash': 15}
Method 3: Rename a Key in a Python Dictionary using Python zip()
Suppose we want to change all keys of the dictionary.
Python3
# initialising dictionary
ini_dict = {'nikhil': 1, 'vashu': 5,
'manjeet': 10, 'akshat': 15}
# initialising list
ini_list = ['a', 'b', 'c', 'd']
# printing initial json
print("initial 1st dictionary", ini_dict)
# changing keys of dictionary
final_dict = dict(zip(ini_list, list(ini_dict.values())))
# printing final result
print("final dictionary", str(final_dict))
Output
initial 1st dictionary {'nikhil': 1, 'vashu': 5, 'manjeet': 10, 'akshat': 15}
final dictionary {'a': 1, 'b': 5, 'c': 10, 'd': 15}
Creating a new dictionary and deleting the old one:
Approach:
Create a new empty dictionary new_dict.Loop through each key-value pair in the original dictionary using the items() method.If the current key is “Amit”, add a new key-value pair to new_dict with the key “Suraj” and the value from the original dictionary.If the current key is not “Amit”, add the key-value pair from the original dictionary to new_dict.Delete the old dictionary and rename new_dict to the original dictionary’s name.
Python3
my_dict = {'nikhil': 1, 'manjeet': 10, 'Amit': 15}
new_dict = {}
for key, value in my_dict.items():
if key == 'Amit':
new_dict['Suraj'] = value
else:
new_dict[key] = value
del my_dict
my_dict = new_dict
print(my_dict)
Output
{'nikhil': 1, 'manjeet': 10, 'Suraj': 15}
Time Complexity: O(n)Auxiliary Space: O(n)
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary
|
https://www.geeksforgeeks.org/python-ways-to-change-keys-in-dictionary/?ref=next_article
|
Pandas
|
Python | Ways to change keys in dictionary
|
Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.to_sparse(), Python | Pandas Series.str.swapcase(), Python | Pandas Series.sum(), Calculating the Product of List Lengths in a Dictionary – Python, Pandas Tutorial, Python – Dictionary values String Length Summation, Python | Pandas Series.sort_values(), Python | Pandas Series.to_string(), Dictionaries in Python, Python – Access Dictionary items, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Python | Pandas Series.var
|
GeeksforGeeks
|
[0.00578426756, -0.00584663171, -0.00548284128, 0.0463572927, -0.00759282568, 0.0454841964, 0.0196550768, -0.00766558386, -0.00100756949, -0.0321382843, -0.0032065527, -0.00527496077, -0.0337389633, -0.0231162831, 0.00814890489, 0.0284172278, 0.00824245159, 0.0330113806, -0.0108825304, 0.0169838145, 0.00313119614, -0.0553792939, -0.0137200952, 0.00813331455, 0.00660539465, 0.00924547389, 0.0311820358, -0.00914673, 0.0262344852, 0.0229915548, -0.00475006318, -0.0237814989, -0.000298827828, 0.00447202381, -0.037875779, 0.011131987, 0.0066261827, 0.0199357141, -0.00336246286, -0.000612921896, -0.00137330883, -0.00674051652, -0.034716, -0.045692075, -0.020309899, 0.00826843642, -0.0267749745, -0.0231370702, 0.00785267632, -0.0241972599, -0.00318316603, -0.0300386939, -0.0107889846, 0.0142397964, 0.00860624202, 0.0359424911, -0.0345704816, -0.0124000562, -0.0342586637, -0.0658148825, -0.00531653687, -0.0285835322, 0.0170253906, -0.0248001125, 0.012316904, 0.0180647932, -0.0113190785, -0.000188878679, -0.0150609231, -0.0076915687, -0.00515542971, 0.0721760169, -0.0201020185, -0.0187092219, -0.00723423203, -0.0486855507, 0.0225757938, 0.0105135432, -0.00491636759, 0.049558647, -0.0244882926, -0.0388320275, 0.0382707529, -0.0594121702, 0.0209959038, -0.0254653282, -0.00700556394, -0.028105408, 0.018730009, -0.0229915548, 0.0143437367, -0.0353812166, 0.0126495119, -0.0433222428, -0.00521259708, 0.018730009, 0.0262136981, 0.00622081617, -0.0181063693, 0.0174099691, -0.0206529014, 0.0300386939, 0.0170669667, -0.00177607674, 0.00495014805, 0.0149050131, -0.0110072587, 0.0294358414, -0.00703674601, 0.00427453732, 0.0270244312, -0.0191353764, -0.0161938705, 0.039476458, -0.0243219882, -0.0478540286, 0.0103264507, -0.0435716957, 0.00272842799, -0.0148842251, 0.0442784913, 0.0222223978, -0.00675091054, 0.0602436922, -0.0477708802, 0.00251665013, -0.0464404449, -0.00585702574, 0.0128262108, -0.000391724316, 0.017191695, -0.0139695518, 0.0207984168, 0.0104927551, -0.0172956362, 0.064900212, 0.000756164372, 0.0297268741, 0.0148218609, 0.0238646511, 0.00779031171, -0.0176490322, -0.00214766269, -0.0225965809, 0.035194125, -0.0176282432, 0.00714068627, 0.0106226802, -0.0149050131, 0.032761924, -0.0688915104, -0.0286666844, 0.00842434634, -0.00257901428, 0.0228876136, 0.0334895067, -0.0126703, 0.011131987, -0.00922988262, 0.0224302784, 0.017368393, -0.0164329335, -0.0053529162, 0.0151648633, 0.0155494418, -0.00979115907, 0.0202267468, -0.00661059143, -0.0124832084, 0.0292279609, 0.00074317184, -0.0438627303, 0.00464612339, 0.0113086849, -0.0411810763, -0.0171397254, 0.0352772772, -0.0407029502, 0.0151128927, -0.0483945198, 0.0102381017, -0.0142397964, 0.0274609793, 0.0136993071, 0.0310573075, -0.00730179343, 0.0209647212, -0.0158924442, 0.0230954941, 0.000529444951, 0.00960406661, 0.0175762735, 0.0141150681, -0.004643525, 0.00354955508, -0.0298931785, 0.00906877499, -0.00460974406, -0.0086114388, 0.0609920621, 0.0124624204, -0.0411810763, -0.0409524068, 0.0109552881, 0.0211933907, -0.0119323255, 0.00121544977, -0.0283756517, 0.00503589865, 0.0153727438, -0.0223055501, 0.0292903259, -0.0317641, -0.0254237521, 0.018750798, 0.00504889106, -0.0239270143, 0.0296021458, 0.0284380168, -0.0202059597, -0.0234488901, 0.00648066634, 0.0419086553, -0.0335518718, -0.0220768806, -0.0248624757, -0.0215779692, 0.0352772772, -0.0339052677, -0.0037392457, 0.0155598354, -0.022658946, 0.00569072133, -0.0254653282, -0.0262344852, 0.00730179343, -0.0259642415, 0.0118803559, -0.00548803806, 0.0206321143, 0.0608257577, 0.045733653, 0.0490597375, -0.0235944074, 0.0183038544, 0.00577387353, -0.0594121702, 0.0435301214, 0.0126806945, 0.013855218, 0.0364829823, -0.00138889987, -0.00786826666, 0.0122545399, -0.0600358136, 0.0125247845, -0.0268997028, 0.0177010018, 0.00638712, -0.0199668966, 0.023074707, -0.000951052061, 0.0130029088, 0.0321382843, 0.029664509, -0.0242804121, 0.029664509, -0.0229291897, -0.00415240787, -0.0386241488, -0.00454997877, -0.01971744, 0.0017630842, -0.00109526899, 0.0360048562, 0.0135330036, -0.00529315043, -0.0034767969, 0.0254653282, -0.00550362933, 0.00412902096, 0.018750798, 0.0435716957, 0.0136265494, 0.0214532409, -0.0103576332, -0.0524689704, -0.000257251784, -0.0165680554, -0.00127976271, -0.00207620393, -0.00174359547, -0.00197096448, -0.0181063693, 0.0137928538, -9.34344553e-06, -0.0269620661, -0.0253406, -0.0052671656, 0.0362335257, 0.0154247135, 0.00367428316, -0.0223887023, 0.0235320423, -0.0200188663, -0.00796181336, 0.029331902, -0.000284698472, -0.0204450209, 0.016048355, 0.0194991659, -0.0140007343, 0.00740053644, -0.00934421644, 0.0116516873, -0.00666256156, 0.00703154877, -0.0183974, -0.0207360536, 0.0150297415, -0.0274817664, 0.00972879492, 0.0251327213, 0.0295189936, -0.0290200803, -0.0741716698, -0.0260889698, 0.000588885741, 0.0294150542, -0.023428103, -0.0334687196, -0.0239270143, -0.0291655976, 0.0177113954, 0.00206970749, 0.0136057613, -0.0243635643, -0.00880892482, -0.023053918, 0.00765519, 0.0449852832, -0.00308702141, -0.00798779819, -0.0149465892, 0.0121506, -0.0186156761, -0.0223887023, -0.0387280881, 0.01425019, 0.0258810893, 0.000449541025, -0.0111008044, 0.0190730114, 0.0134498514, -0.0249248408, -0.0319511928, -0.0209335405, -0.00374963973, -0.0263384264, 6.28512935e-05, 0.0255484805, -0.0269828551, 0.00572710065, -0.0284172278, -0.021079056, -0.0182518847, -0.0147387087, 0.0168798752, 0.017191695, -0.00755124958, 3.88354383e-05, 0.00746809738, 0.000552181853, -0.0122337518, 0.0104148, 0.00779550895, 0.0149361948, 0.0190522242, -0.0130548785, 0.0207880232, -0.00352616841, -0.0297060851, -0.0068548508, 0.00353396405, -0.0318264626, -0.0252158735, 0.0108097726, -0.059786357, -0.0229291897, 0.0379589312, -0.00413941499, -0.0125871487, -0.0210686624, -0.0205905382, 0.0071510803, 0.0401000977, 0.00457336521, -0.0231162831, 0.0108721368, -0.0133666992, -0.019124981, 0.0161730815, -0.0219729412, -0.0203202926, -0.0213700887, -0.0375639573, -0.0579570085, -0.0335726589, 0.0211829953, 0.00574269146, -0.0295397807, 0.0563355424, -0.035194125, 0.0197278336, 0.0149361948, -0.0196342878, -0.00860104524, 0.0435301214, -0.00533732492, -0.00351577438, 0.0513464175, -0.0128677869, 0.00929744355, 0.0137720658, -0.000244908908, 0.02072566, 0.0319096148, 0.0110072587, -0.0108097726, 0.0178673062, -0.0302465744, 0.00523338513, 0.0201020185, 0.0223055501, -0.0540488623, -0.00990549289, 0.0305376071, -0.0127430586, 0.0108513488, -0.0249040518, 0.0074784914, -0.0243427753, -0.0169006623, 0.0100198276, -0.00208919635, -0.0104459822, 0.00776432687, 0.0135433972, 0.011724445, -0.0110072587, -0.0207360536, -0.00192679, -0.00294410391, -0.0114022307, 0.0463157184, -0.0227005221, -0.0195511356, -0.0105759073, 0.0235320423, -0.0071510803, 0.030870216, 0.00887648575, 0.0297684502, -0.00997825153, 0.0240725316, 0.00755644636, 0.0108097726, -0.0219313651, -0.0200188663, 0.00766558386, -0.00597136, -0.0161211118, -0.0408900417, -0.0152272275, 0.00526456721, -0.00552441739, 0.00539968908, 0.00205281726, 0.0195095595, -0.0121402061, 0.017191695, 0.00259590452, 0.00372885168, -0.0119946897, -0.0177113954, 0.00312080211, -0.0119115375, 0.00578426756, -0.0268373378, -0.0363166779, 0.00645987829, 0.0138240354, 0.0829857886, 0.0126391184, 0.00489038276, -0.0071926564, -0.0200916249, 0.0165472664, 0.0454426184, 0.0194160137, 0.024987204, -0.0161730815, -0.0513048433, -0.0060753, -0.00146165793, -0.0298516024, -0.0278351642, 0.0111735631, 0.0156429876, -0.0163289923, 0.00170461799, 0.0210894495, -0.0142813725, 0.0483113676, 0.0123376921, -0.0129613327, -0.0242804121, 0.00626239227, 0.00551922, -0.0183558241, 0.0266918223, 0.0058934046, 0.057832282, -0.00724982331, -0.00984832644, -0.0033000987, -0.0103940116, 0.0133147296, -0.00498912577, 0.00262448797, -0.0158612616, -0.00345341046, -0.000348199392, -0.0196135, 0.00530094607, -0.0318472534, 0.00316757499, 0.000794492254, 0.0011439909, 0.0108929239, 0.00983273517, 0.0496002249, 0.0102900714, 0.00487739, -0.000322701584, 0.0184701588, -0.0141878258, -0.0149465892, 0.0011426917, -0.0142813725, -0.00464872178, -0.0252366606, -0.00393153494, 0.0221808217, -0.0220560934, -0.0110384403, 0.046149414, 0.00463053212, -0.0213285126, -0.0164537206, -0.0450684354, 0.0117140515, 0.00732777826, 0.00898042601, 0.00585702574, 0.0469809324, 0.00083346985, 0.00454997877, 0.0207360536, 0.0101289647, 0.0292487498, 0.00259850291, 0.0144684641, -0.00864262, -0.036379043, 0.0173268169, 0.00707312487, -0.0252366606, 0.0103888148, 0.0240517426, -0.00166044338, -0.0290408693, -0.0191873461, 0.00179556559, 0.00592458667, -0.0166719947, -0.0298516024, -0.00245298678, 0.00314159016, 0.0246753842, 0.0145516163, 0.0250911452, -0.0117764156, 0.00846072566, 0.0210894495, 0.0309949424, -0.00564914523, 0.0218482129, 0.0361919478, 0.00331049273, 0.00979635585, 0.0246338081, 0.0151128927, -0.00435249228, 0.0294774175, -0.0201124121, -0.0137304896, -0.0213908758, 0.0226797331, -0.0320967101, -0.0298100263, -0.0163185988, 0.0207152665, -0.045692075, 0.00130639737, 0.0124624204, -0.0338429026, 0.0317848884, -0.0272530988, -0.0218066368, 0.01367852, -0.00171501189, 0.00820087548, -0.00885050092, 0.0146555565, 0.00886089541, -0.000320265477, -0.00150713173, -0.00462013809, -0.00652224245, -0.0090739727, -0.00868419651, -0.00947933923, 0.00458635762, 0.0329698063, -0.00938059576, -0.01699421, -0.0127326641, 0.0164745096, 0.0362751, -0.026587883, 0.00756684039, 0.0154039254, 0.0724254772, -0.0149050131, -0.00617924, -0.0159132313, -0.0290200803, 0.0127430586, -0.0754605234, -0.0187715851, -0.0240725316, -0.0236151945, 0.0138448235, -0.034009207, -0.00291292183, -0.0282925, -0.00987431128, 0.00626758905, 0.0219937284, -0.0101393582, 0.0287290495, 0.0153311677, -0.000463183154, 0.0209751166, -0.00566993328, 0.0104875583, 0.010913712, 0.0305999704, 0.0199980792, 0.0122233583, -0.00939618703, -0.00846072566, 0.0243219882, -0.0120258713, 0.0117452331, -0.021494817, 0.0149985589, 0.0170149971, -0.0498912558, 0.00882451609, -0.0127118761, -0.0340923592, -0.0201020185, -0.00284795929, 0.00801378302, -0.00959887, 0.00445643254, -0.000280963141, -0.013106849, -0.0290616564, 0.0110384403, -0.0062052249, -0.00814370811, -0.00912074558, -0.0409316197, 0.00951571763, 0.0131796068, 0.00635593804, 0.0271491595, 0.0340715721, -0.00841915, -0.0237607118, 0.0238854401, -0.00897522923, 0.0522195138, -0.0106954379, 0.0323045887, -0.0257355738, -0.0204242337, 0.0230123419, 0.0151856514, -0.0166512076, 0.0096144611, -0.00329750031, 0.0326164104, -0.0262344852, -0.00736935437, -0.0399130061, -0.0311612468, -0.00384838297, 0.0169214513, 0.0051840134, 0.0162146576, -0.000334232434, -0.00487739, 0.007125095, 0.00730699, -0.0178777, -0.0128158163, 0.0159028377, -0.0105187399, -0.0104823606, 0.0179088823, 0.000488193735, -0.000459935021, -0.0184285827, -0.00906357821, -0.0199980792, 0.00112969917, -0.0229291897, -0.0417215638, 0.00505149, 0.0110072587, 0.00722383801, -0.00462273695, -0.00588301057, -0.00797220692, 0.0151440753, -0.00506448234, -0.0146347685, 0.0151336808, 0.0435716957, 0.0250911452, -0.00968721882, -0.0291655976, -0.0118595678, -0.01194272, 0.0129717272, 0.0222847611, 0.0239270143, 0.0284172278, -0.00432910584, -0.018969072, -0.000859454856, -0.0264423657, -0.0155910179, 0.0127222706, 0.000876994745, -0.0150713176, -0.00519700581, 0.00249456288, -0.00398090668, 0.0222223978, -0.00219963281, -0.0368571654, 0.0166304186, 0.00710430695, 0.0189898591, -0.0116828689, -0.0322214365, -0.0297268741, 0.0240933187, 0.0224718545, 0.000607724884, 0.00818008743, 0.0248209, 0.0152895916, 0.0180336107, 0.00310780946, -0.00511125522, 0.00985352322, 0.00611167913, 0.0256524216, -0.0255692694, -0.0184285827, -0.0205281731, -0.0384370573, -0.00534252217, 0.00763959857, -0.0128469989, 0.00741612725, 0.0124728139, -0.0290616564, 0.00513464166, -0.0130340904, -0.00415500626, -0.0137408832, -0.00827883, 0.0285627451, -0.0204450209, -0.0248416886, -0.0247169603, -0.0190626178, 0.0282509234, -0.0203514751, -0.00592458667, -0.0198005922, -0.00552441739, 0.00770196272, -0.00247897184, -0.00207880232, 0.00985872, -0.0174827278, 0.0106434682, -0.0110176522, 0.0219313651, 0.00545685599, 0.0391022712, -0.00446942495, 0.000417709351, -0.0112359272, -0.0247377474, 0.00300127082, -0.00680807792, 0.0169110578, 0.0122649344, -0.00719785318, -0.00735376356, 0.00922468584, 0.0101289647, 0.0129717272, -0.0147283152, 0.00368207879, 0.00934941322, 0.00502550462, -0.00634034723, 0.0185429174, 0.0198005922, 0.0352149121, 0.0323461629, -0.0216611214, 0.0128054228, -0.000213889274, -0.00676650181, 0.00123039109, -0.00920389779, -0.0261305459, 0.0282301363, -0.0212869365, 0.010253693, 0.00203332864, -0.0142397964, 0.00387696642, 0.041804716, -0.0369195305, -0.00901680533, -0.0150609231, 0.0174307581, -0.00788905472, -0.00782149378, -0.00230617146, 0.00325332559, -0.000895833888, 0.0141254617, -0.0132107893, -0.0269828551, 0.00741093047, 0.00815929938, -0.00594537472, 0.014645163, 0.0106382715, -0.00778511493, -0.0091935033, -0.00344301644, 0.0139383702, 0.0044330461, 0.00728620216, 0.0289785042, -0.045692075, 0.0307039116, -0.00425374927, -0.0182310976, -0.0486855507, -0.00458375923, 0.00598175358, 0.0410771333, 0.0353812166, 0.0249664169, 0.0157885049, 0.0252782367, 0.00618443685, 0.00358593417, 0.0226173699, 0.0217650607, 0.0298516024, 0.0297268741, -0.00489298115, 0.0287498366, 0.0248001125, -0.0431143604, -0.00853348337, 0.0271907356, 0.00975997746, 0.00739014242, 0.017784154, -0.0239478033, -0.00723423203, 0.00424855249, 0.019124981, 0.0267126095, 0.0157988984, 0.0019371839, 0.0536331, 0.00638192333, -0.0237399228, -0.0439043045, -0.0234488901, -0.0209751166, -0.0225757938, 0.00208399934, 0.00133563054, -0.00523858191, -0.0282093473, -5.34723185e-05, -0.0188235547, -0.0426986, 0.0146971326, -0.00700036716, -0.0177529715, 0.0326579846, 0.0198629573, -0.00623640697, 0.00504369428, -0.0122441463, -0.0253198128, -0.0139487637, 0.020330688, 0.00273882202, 0.0127326641, -0.0291863848, 0.0269828551, 0.0491844639, -0.0167031772, -0.00216845074, -0.00647027232, -0.0157053526, -0.0257355738, -0.0255276933, 0.0269620661, -3.0065492e-05, -0.0113086849, -0.00241660769, 0.0125767542, -0.0379797183, -0.0056803273, -0.0397051238, 0.0120362658, -0.0375015959, 0.00194757793, 0.0206529014, 0.00194497942, 0.0184597652, -0.00803457107, -0.0505149, 0.0126806945, -0.0369403176, -0.00776952365, 0.0148010729, 0.0136057613, -0.0372937135, -0.0202371404, 0.0167239644, -0.0120674474, 0.0233033746, -0.0125455726, 0.0174931213, -0.0157781094, 0.0137097016, 0.0267541856, -0.00925067067, -0.0368987434, 0.0225550048, -0.0148010729, -0.00346380449, -0.0258603022, 0.02735704, -4.0581308e-05, -0.00822166353, -0.0174827278, 0.0134290634, -0.00312599912, -0.016027566, -0.0048877839, 0.00155260554, -0.000930913666, 0.0140111279, -0.00363270706, 0.0128262108, -0.00962485466, -0.0157053526, 0.00195277494, 0.00759282568, -0.002102189, 0.00715627708, 0.014270978, 0.0417007767, -0.0314730667, 0.013106849, 0.0216195453, -0.0362543128, -0.0126079367, -0.0149881653, -0.00469029788, 0.00428233296, -0.00362751, 0.0176802147, 0.00147984747, 0.0179504585, 0.0121090235, -0.00274401903, -0.00727580814, -0.0193328615, 0.00814370811, 0.0128366044, 0.0142294019, 0.0166823883, -0.0320551321, 0.0195927117, -0.0127742402, 0.0008679, -0.0127014825, 0.0101913288, 0.00424855249, -0.0228668265, -0.0139591582, -0.00282457261, -0.0303713027, -0.0152480155, 0.0425115079, 0.00142527884, -0.0248416886, -0.0189794656, 0.0151960449, -0.00346640288, 0.00951052085, -0.0110904109, 0.0112982905, 0.0184701588, 0.0227628853, 0.00269984454, 0.015237621, -0.0193432551, 0.0200604424, -0.0146763446, 0.0383123271, -0.00826843642, 0.00249716127, 0.00914153364, -0.00650145439, 0.00603372371, -0.0385617837, -0.0210998431, 0.0445279479, 0.0179192759, -0.0121921757, 0.042573873, 0.0118075972, -0.00174749328, -0.0278975274, -0.00678209262, 0.00176828122, 0.0209335405, 0.0101913288, -0.00818008743, 0.0145516163, 3.8977545e-05, 0.0193016808, -0.00266606407, -0.00398350507, -0.0030298545, 0.00700556394, 0.0202059597, 0.0148946187, -0.00716147432, -0.0102952691, 0.00698997313, 0.0351733342, 0.011131987, 0.00955729373, 0.0258603022, 0.0192912854, -0.0211622082, 0.0302881505, 0.0519700609, -0.000560951827, -0.00145646092, -0.011724445, -0.0158924442, 0.0168590881, 0.0237191357, -0.00733297551, -0.0226797331, 0.0220353045, -0.00474226801, -0.00260240072, -0.00565953925, 0.00929744355, -0.00742652128, 0.0141358562, 0.0161211118, -0.023843864, 0.0072082472, 0.00843993761, 0.00806575362, 0.0016708374, -5.78572908e-05, 0.00783188827, -0.00251794932, 0.0207464471, 0.00584143447, -0.00555040222, 0.0325124674, 0.0299347546, 0.000486244855, -0.0188131612, 0.0303297266, -0.0106538618, 0.00021762462, 0.00034267758, 0.0210998431, 0.00847111922, -0.00239841826, 0.0121090235, -0.0202267468, -0.00010726945, -0.0281677712, -0.0266918223, 0.0120674474, -0.0108825304, -0.0190314353, 0.00364310108, 0.0136577319, 0.00271283719, 0.01699421, -0.00653783325, 0.0251950845, -0.00161496957, -0.0243219882, 0.0172436647, -0.0168694817, -0.0124312378, 0.00809173845, 9.80122859e-05, 0.000947154302, 0.0197694097, 0.00713548902, -0.0162874162, -0.0112255327, 0.0340507813, 0.0160795357, 0.00249456288, -0.0109968642, -0.0156429876, 0.022263974, -0.0161522944, -0.0202787165, -0.0245090798, -0.00766038662, 0.00398610346, 0.0105759073, -0.0143437367, 0.0141982203, 0.000101179212, 0.00686524482, -0.00169552315, -0.00932342838, -0.0155910179, 0.0182103086, -0.0326995626, 0.01425019, -0.00523598352, -0.000993927359, -0.00799819175, 0.0161834769, -0.0142086139, 0.00505408831, 0.0105707096, -0.00440965965, 4.99805792e-05, 0.00152142346, -0.0170046035, -0.0149050131, 0.0180751868, -0.000705493556, -0.00129405444, -0.000324000837, 0.053175766, 0.0017176104, 0.000408614578, -0.0233865269, 0.0278559513, -0.00686524482, -0.000919220445, -0.026587883, 0.00817489065, -0.0133251231, -0.0163497813, -0.021889789, 0.0224094894, 0.00558678154, -0.020507386, -0.0429064818, -0.0155598354, -0.0250703562, -0.0231994335, -0.00935980771, -0.0375431702, -0.00361971464, -0.00360152498, -0.0285627451, -0.0289369281, -0.0161522944, 0.00523598352, 0.0223263372, 0.00247117621, -0.00903759338, -0.000734726724, -0.00916232169, 0.0236775596, 0.0169214513, -0.0303089377, 0.019322468, 0.000985482242, 0.0195303485, -0.00828402769, 0.00315458258, -0.0121921757, -0.0181479454, 0.010274481, -0.0123792682, 0.00555559946, -0.0014018924, 0.0146243749, 0.002371134, -0.0220976695, -0.00236853538, 0.00990549289, -0.00119401212, -0.0255900566, 0.0352357, 0.000140319156, -0.00905318465, -0.0170461796, -0.016620025, -0.00624160422, -0.000321239932, -0.00571670663, 0.0177529715, 0.0126599064, -0.00509566441, -0.00218404178, -0.0212245714, 0.0106746498, -0.0185221285, 0.00542567438, 0.0239270143, -0.0184909478, 0.0253406, 0.0176282432, 0.00141618412, 0.0228460375, 0.0191041939, -0.00391594414, -0.0048462078, 0.00196576747, 0.00556079624, 0.0156741701, 0.00536331, -0.00442784885, 0.0483113676, 0.0101757376, 0.0278975274, -0.0276480708, -0.0290824454, 0.0043057194, 0.00734336954, -0.000919220445, -0.0116724754, -0.0199772902, -0.0149777709, -0.00728620216, -0.00526976399, 0.0172540601, -0.0268789139, 0.0133874873, 0.00895963795, -0.0190938, -0.00594537472, -0.0169318449, -0.00933382288, -0.0160587486, 0.00466691144, 0.0286043212, 0.0183558241, -0.0056231604, -0.0202579293, 0.026151333, -0.0198525619, -0.0022879818, 0.0182518847, -0.00256472244, 0.00248676725, 0.00726021733, -0.00699517, -0.0169838145, 0.0398714282, -0.0246545952, 0.0100769941, 0.0357761905, 0.0098691145, 0.00893365312, 0.0133043351, 0.00164745084, 0.00591419265, 0.00352876703, 0.0217650607, -0.0169630274, 0.0246961713, -0.0322422236, -0.01209863, -0.000870498479, -5.7085861e-05, 0.00403287681, -0.00196316908, 0.00233865273, 0.0217442736, -0.0385617837, -0.0023802286, -0.0306623355, -0.000554780359, -0.0120050833, 0.00930264, 0.0176074561, -0.00337805389, -0.0310365185, -0.010560316, 0.0163913574, 0.0009666431, -0.0273778271, 0.00817489065, -0.0260058176, -0.0108617423, -0.035505943, -0.00858545396, 0.0127742402, 0.00714588305, -0.0180024281, 0.0251535084, 0.00839316472, 0.00951571763, 0.0222847611, 0.0130444849, 0.0181999151, 0.0252574496, -0.00433430308, -0.00033114673, -0.0308286399, -0.01425019, -0.0179192759, 0.0184909478, 0.00675091054, -0.00216455292, -0.00201903679, -0.00163575762, -0.0155806234, 0.01209863, 0.0013603163, -0.00556079624, 0.00504369428, -0.000159889139, 0.0310365185, 0.0524689704, -0.0145100402, 0.00348719093, 0.00675091054, -0.0115581416, -0.0468562059, 0.0163497813, 0.000682107, -0.0045343875, 0.0184181891, 0.00888688, -0.00293890689, -0.0213493, 0.00691721495, -0.0227628853, -0.0122025702, 0.00905838143, 0.00879853126, 0.0047448664, 0.00470329029, -0.00542567438, -0.00863742363, -0.0237399228, 0.0143437367, -0.00407185405, -0.00393153494, -0.0188963134, 0.0435716957, -0.00455257716, -0.0346120596, -0.00992628094, 0.0045343875, 0.0163497813, 0.0102952691, 0.0285627451, -0.0158300791, 0.0287498366, -0.0318680406, 0.0399337932, -0.0154974712, 0.014665951, -0.0257771499, 0.00958327856, 0.00946894474, 0.0332400501, -0.0124520259, 0.0185117349, 0.00921429135, -0.0172748473, 0.0106330737, 0.00860104524, 0.014863437, -0.0119739017, 0.0127222706, 0.00940138381, -0.0181167629, -0.0123480856, -0.0347575769, -0.0028947324, -0.017784154, 0.0186156761, 0.00986391678, -0.0153727438, -0.00698997313, -0.0317017362, -0.0220353045, 0.00457856199, 0.00254393439, -0.0186260697, 0.014842649, 0.00305064255, -0.0355267338, -0.00760321971, 0.00996266, 0.0420957468, -0.0102588898, 0.0219521523, -0.0153207732, -0.0101913288, 0.0252158735, 0.000441095879, -0.00585702574, 0.0195199549, -0.0181167629, -0.0509722345, -0.0377302617, -0.00384058733, 0.00795661565, -0.00212557544, -0.0115997167, -0.0275857076, -0.0169422384, 0.0146971326, 0.0114022307, 0.0165888425, 0.0116620809, 0.00336765987, 0.0178777, 0.0222847611, -0.0156533811, 0.0121713877, -0.0229915548, -0.00621561892, 0.023843864, 0.015435108, 0.0114230188, 0.00935461093, 0.0178777, -0.00179036858, 0.0175035167, -0.00326371961, 0.0121090235, -0.0370234698, 0.00316757499, -0.0135641852, 0.00403287681, 0.00822686, -0.0258395132, 0.000364440028, -0.00351317599, 0.00243999436, -0.0145100402, 0.00875175837, -0.00350797898, -0.0391438492, 0.0290824454, -0.0130340904, 0.00312080211, 0.000872447388, 0.013855218, -0.002634882, 0.0200500488, 0.0341755114, 0.000449541025, 0.0111111989, 0.00701595796, 0.0443616435, 0.000369961868, 0.0157781094, 0.0326371975, 0.0201955643, 0.0310988836, 0.0123376921, 0.00313379453, 0.00174489478, 0.0106850443, 0.00714588305, -0.00207490451, -0.00289213378, -0.00828402769, 0.00272323098, 0.00609608786, -0.00515542971, -0.0267749745, 0.0016253636, 0.00701595796, 0.0172020905, -0.0176282432, -0.0323877409, 0.00602332968, 0.0188235547, 0.00726541411, -0.00867380295, -0.0201643836, 0.00442005368, -0.0123584801, -0.0155078657, -0.0102588898, -0.0278351642, 0.0263176374, -0.0205697492, -0.00619483087, -0.00269724615, 0.00333907618, 0.0108409543, 0.00131484249, -0.042948056, 0.0031234005, 0.00504369428, 0.00645468151, -0.0233033746, 0.00117777148, 0.00460194889, -0.00859584752, 0.0118491733, -0.0274817664, 0.0161211118, -0.00709391292, 0.0106642563, -0.0114230188, 0.030849427, -0.0243219882, -0.00460714567, 0.0241141077, 0.0336558111, 0.000835418701, 0.0103368452, -0.00487219309, 0.00225290214, -0.0103524355, 0.0070835189, -0.0194471963, 0.00860624202, -0.00441225804, 0.0122025702, 0.0170253906, 0.00121350086, 0.0018917101, -0.004051066, -0.00295189931, 0.0117556276, 0.0181895215, -0.0147906784, 0.0100666005, -0.00917271525, 0.00940658059, 4.49459803e-05, -0.0110280467, 0.0345912725, -0.0331361108, 0.000592783501, 0.0396843366, 0.00500731496, 0.00251145312, 0.0122233583, -0.00308702141, -0.0114957774, 0.00451359944, 0.00534252217, 0.01655766, 0.0122337518, 0.00932342838, 0.0208919644, 0.00215026131, -0.015019347, 0.00878813677, 0.0206944775, -0.00850749854, 0.00610128511, 0.0102848746, 0.0122649344, 0.016380962, -0.00608049706, 0.00387956481, -0.0103784204, -0.016796723, -0.0194783788, -0.0248832647, 0.00577907078, 0.012493602, -0.0305999704, 0.00446682656, 0.00622601295, 0.00622601295, -0.0289992932, 0.0268997028, -0.00526976399, 0.0141566442, 0.00714588305, 0.00859584752, -0.0178153366, -0.00959887, 0.0160691421, -0.00912074558, 0.0153519558, 0.0136473374, -0.0168694817, 0.0141358562, 0.0230954941, -0.0148218609, -0.0130964546, -0.00904279, 0.00181115652, 0.014645163, 0.000484295975, -0.00757723441, 0.00601293566, 0.0010160146, 0.00952611212, -0.010165344, -0.00280898181, -0.0116932634, 0.0215987563, 0.0287498366, -0.0332400501, 0.0092350794, 0.00124468294, 0.00425894652, 0.00524377916, -0.024218047, -0.0426986, -0.0121921757, -0.0148530426, -0.000190502746, 0.0137928538, -0.0131692132, 0.00199435093, -0.0124000562, -0.00492156437, 0.00131159439, 0.00112775026, -0.0199461095, -0.00796701, -0.0135849733, -0.00531653687, -6.96723582e-05, 0.00496833771, 0.0371689871, 0.0275025554, -0.0285419561, -0.0150505295, 0.0240517426, 0.0155078657, -0.0104251942, 0.0016721366, -0.00426674169, -0.0104927551, 0.0117868092, -0.00250235829, -0.0252158735, 0.0216819085, 0.00540488632, 0.0131588187, 0.00328710629, 0.00934421644, -0.000625264773, -0.0203930512, 0.0111111989, -0.00824245159, 0.000900381245, 0.0225342177, -0.00281417859, -0.00564914523, -0.00735896034, -0.00711989822, -0.00345860748, -0.000884790265, -0.0132315774, -0.0282717124, -0.001756588, 0.0128158163, 0.0177321844, -0.0147283152, 0.0046175397, 0.000456686888, -0.008694591, -0.0156845637, 0.0250911452, 0.00159028382, -0.00371845765, 0.00678209262, -0.00456037279, 0.0117764156, 0.01655766, 0.000997175463, 0.00122389488, 0.00641310541, 0.0219105761, -0.0154766832, 0.00826324, -0.0180440042, 0.0134082753, 0.00950012635, -0.0110072587, 0.00645987829, 0.000368662615, -0.0227005221, -0.00309741544, -0.0142813725, 0.0220976695, 0.0132523654, 0.0234696791, 0.00402508117, -0.0217234846, -0.00746809738, 0.0153207732, -0.00472407835, -0.0142813725, 0.0107266204, 0.0125975423, 0.0227836743, 0.000554455561, -0.000755514717, 0.0116828689, -0.00678729, -0.00908956304, -0.00200344576, 0.021889789, -0.00099522667, 0.011703657, -0.0228460375, -0.000406990526, 0.00707832212, 0.0140838856, 0.00925067067, 0.00945335347, 0.00750967348, -0.0121921757, 0.0219521523, 0.00483581377, -0.0278559513, -0.000604151923, 0.00790464599, 0.0131276371, -0.00544646196, 0.0290616564, 0.00874136388, 0.0194991659, 0.0230123419, -0.013855218, 0.00999904, -0.016225053, 0.0257979371, 0.0178673062, 0.0223055501, 0.0153623493, 0.0161730815, 0.000799689267, -0.0114230188, -0.0159236267, 0.0219313651, -0.00634034723, 0.00168123143, 0.00430052262, 0.0129613327, 0.00517621776, -0.0149881653, -0.0172436647, 0.00367428316, -0.0216403324, -0.00473707076, 0.0373976529, -0.0112775024, 0.00218274258, -0.00822686, 0.00523338513, 0.0133666992, -0.00294930092, 0.0210894495, -1.57838749e-05, -0.0259226654, -0.00692760898, 0.0120154778, 0.0326371975, 0.0168279056, 0.00217234856, -0.00443824288, -0.00398350507, -0.0192497093, -0.0222223978, 0.00639231736, 0.00900121406, -0.00657940935, -0.00242570252, 0.0152272275, -0.00892326, -0.0209335405, 0.00623640697, 0.00137720653, -0.00258810888, 0.0161730815, -0.000849710486, 0.00734336954, 0.0126495119, 0.00672492571, 0.0128158163, 0.000396596501, -0.00630916515, 0.00749927945, 0.0221600328, -0.0053529162, -0.00269204914, -0.00246338081, 0.00306883198, 0.00795141887, 0.0146971326, 0.00722903525, -0.00916751847, 0.010913712, -0.00832040608, -0.00680288067, -0.0227836743, 0.0102796778, -0.00473966962, 0.00782149378, 0.0324916802, -0.018969072, -0.0159028377, 0.0292071737, -0.00486699585, 0.016048355, 0.00935461093, -0.00894924439, 0.0117452331, 0.0132523654, 0.00226199673, 0.00610128511, 0.00477085123, -0.0116620809, 0.00922468584, 0.0319096148, 0.00488518551, 0.0138344299, 0.0148010729, 0.0108097726, 0.00321694673, -0.011724445, -0.00818528421, -0.0102692833, 0.0111008044, 0.0105863009, -0.0155494418, 0.0160587486, -0.0162978098, -0.0116412928, -0.00742652128, -0.00119596103, 0.000812032202, 0.00138889987, -0.0163289923, 0.00910515431, 0.030496031, 0.00516062696, 0.005368507, -0.00643909024, 0.00268945051, 0.000215838154, -0.0191977397, 0.00579985837, 0.00550882611, -0.0270660073, -0.00622081617, 0.00313379453, -0.0140111279, 0.032034345, -0.00562835718, 0.00356514612, 0.000861403707, -0.0126287248, -0.0126183303, 0.000615195546, 0.00872577261, 0.0195303485, 0.0036976696, 0.000582064677, -0.0103784204, 0.0114542013, -0.00589860184, -0.0224718545, 0.0250911452, -0.00828922447, -0.0118699614, 0.0192185286, 0.0288745649, 0.00221132603, 0.0109448945, 0.013876006, -0.020486597, -0.0199876856, 0.018948283, 0.00571150938, -0.0133251231, -0.0158404745, 0.00460194889, -0.0207464471, -0.000607075228, -0.0438627303, -0.00146165793, 0.010186132, -0.00796181336, -0.00823725481, -0.0231370702, 0.00736935437, -0.0155494418, -0.0177010018, -0.00386397378, 0.0240725316, -0.0243635643, -0.0106746498, -0.000657421246, 0.000234190084, 0.0012277927, 0.010737014, -0.0104979519, -0.00444084173, 0.00482022297, -0.00943776313, 0.025756361, -0.00471888157, -0.00513204327, 0.0173268169, 0.00232046307, 0.00776952365, 0.00546205323, 0.00192289217, 0.0147179207, -0.00703674601, 0.0164121445, 0.0189794656, 0.00789944921, -0.0101185702, 0.0275025554, 0.0053529162, -0.0118803559, 0.013481033, -0.0142605845, -0.0186676458, -0.00242050551, -0.0086530149, -0.0210166927, -0.00703154877, 0.0126287248, -0.0276896469, 0.0148010729, 0.0015370145, -0.0215571802, 0.00381979928, -0.0309325792, -0.016204264, 0.00388476183, -0.0181271564, 0.0168071166, -0.0128781805, -0.00653783325, -0.00400429312, -0.00867380295, 0.00221392442, 0.0100717973, -0.0149361948, 0.00851269532, -0.00538409827, 0.00699517, 0.0251535084, -0.0115789296, 0.00762400776, -0.0128158163, 0.0059349807, -0.00336765987, 0.00332608377, 0.0208399929, 0.0155182593, 0.0388943925, 0.0167759359, 0.0175970625, 0.0188443437, -0.0155702299, 0.0109968642, 0.00141228631, 0.0220768806, 0.00336506125, -0.00275441306, -0.00568552455, -0.0141878258, -0.0101133734, 0.0124104498, -0.00824245159, 0.0217442736, 0.00704714, 0.00362491165, -0.00971840136, -0.0224302784, 0.0192081332, -0.0212453604, -0.00759282568, 0.0201124121, 0.00116932637, 0.0156949572, 0.016817512, 0.0186572503, -0.00385617837, -0.0124832084, 0.00751487073, 0.00975997746, 0.0133666992, 0.0180647932, -0.0115581416, -0.0103056626, 0.00108292606, -0.00678209262, -0.000217787034, -0.0039938991, -0.0088141216, -0.0107578021, 0.00989509933, -0.000912074524, -0.0187819786, 0.00085100974, -0.00857505947, -0.00167863292, 0.0120778419, 0.0102017224, 0.000609998591, 0.00529315043, -0.0129821207, -0.00722903525, 0.00624160422, -0.0225550048, 0.0334479287, -0.0139487637, -0.0203618687, 0.00653783325, -0.00212557544, 0.0271283705, 0.0397467, -0.0179192759, 0.018158339, 0.00815929938, -0.0324293151, 0.0212869365, 0.0102952691, 0.0185844935, -0.0320759192, -0.00126612058, -0.0147906784, 0.00151622645, 0.0204138383, 0.0136161558, -0.0290408693, -0.0201435946, -0.0352772772, 0.0132939415, 0.0314107053, -0.00113684509, -0.00239841826, -0.00861663558, -0.011703657, 0.0373560786, 0.0276064947, 0.0408276767, -0.0217650607, 0.0259434544, 0.006246801, -0.0216611214, -0.00446422817, -0.0148946187, -0.0101549495, -0.00731218746, -0.00209959038, -0.0286874734, -0.0333855674, 0.0100821918, 0.0276272837, -0.00560237234, 0.0283756517, 0.0290824454, -0.00660539465, 0.0272530988, 0.00332088675, -0.0136057613, 0.0129925152, -0.0106434682, -0.000254490878, -0.00341963, -0.0112982905, -0.00161626888, -0.0128781805, 0.0195823181, -0.00749927945, 0.0262552742, -0.00554520544, 0.0017630842, 0.0145100402, 0.00956768822, 0.0146867391, -0.000234514897, -0.0233865269, -0.0011394436, 0.00680807792, 0.00990549289, 0.000765259145, -0.0025920067, -0.00143177516, -0.00227758777, -0.0172436647, -0.00905318465, -0.00215675752, 0.0194887724, -0.0101705408, 0.020330688, -0.0128677869, -0.00285055768, 0.00141878263, 0.0260681808, 0.00152272277, 0.0187819786, -0.00501770899, 0.0125247845, -0.00084321422, 0.00363010867, 0.00745770335, -0.0195199549, 0.0104199965, 0.00265307142, 0.0337597504, -0.00453958474, 0.000723683101, 0.015040135, 0.00287914136, -0.00483581377, -0.00645468151, -0.0083983615, -0.0216403324, -0.0163497813, 0.0278975274, -0.000169714724, 0.00348199392, -0.00473966962, -0.00313119614, 0.0314314924, 0.011350261, 0.0235944074, -0.00816969294, -0.0199668966, 0.0159444138, 0.0109552881, -0.0179296695, -0.00891806185, -0.0101913288, -4.70572631e-05, -0.00735896034, -0.00703674601, 0.0237814989, 0.000153636487, -0.0132419709, 0.0214324519, 0.000613246695, -0.0192601047, -0.00608049706, 0.00993147865, 0.0146763446, -0.00252964254, -0.0154974712, -0.0159132313, 0.00134992227, 0.0110488348, 0.00164745084, 0.0466067493, -0.0098691145, 0.00173060293, 0.0303920899, -0.0120882355, 0.0116412928, -0.0176178496, 0.0124832084, 0.017358, -5.83445108e-05, 0.00013569057, 0.0203722641, 0.0170669667, -0.00259330589, -0.0068704416, 0.00502550462, -0.00538929505, 0.0160067789, -0.00342222839, 0.00133303204, 0.0332400501, -0.0131380307, -0.0301842112, -0.0219521523, -0.00681847194, -0.000928315159, -0.0179088823, 0.0236775596, 0.0126183303, -0.00295709632, 0.0152480155, 0.0024568846, 0.00798260141, -0.00635593804, -0.000122616853, 0.0225550048, 0.00816969294, 0.0045343875, -1.32970272e-05, 0.00776952365, -0.02735704, 0.00631955918, -0.000584663183, -0.0252782367, -0.0248832647, 0.00822686, -0.00836198218, 0.00614805799, 0.0130340904, 0.0133770928, 0.0101029798, 0.00333907618, 0.0159652028, -0.00363530568, -0.0252990238, 0.00929224677, 0.000642155064, -0.00191769516, -0.00697438186, 0.0112567144, -0.00588301057, 0.00231396686, 0.0235320423, 0.00614286121, -0.00234904676, -0.00378601882, 0.0167655405, -0.00434989389, -0.0141982203, -0.000826323929, -0.0131692132, 0.00616884604, -0.0115477471, -0.0109760761, 0.0169214513, 0.00822686, 0.0191145875, 0.00297268736, -0.00112580135, -0.00623640697, 0.00814370811, -0.0118595678, 0.0123065095, -0.0174411517, -0.0153103797, 0.0206529014, 0.0160795357, -0.0217026975, 0.00354695646, 0.00196706667, 0.0133666992, 0.00377042778, -0.0147283152, 0.0123896617, -0.00378861721, -0.00963005237, -0.0142605845, -0.0107889846, -0.00602332968, 0.00584663171, 0.000890636875, -0.00484880665, 0.00214376487, 0.0159859899, -0.00122649339, -0.00384318596, 0.0204450209, -0.00325592421, -0.0193744376, -0.0175346974, -0.00874136388, 0.00203202921, 0.0105811041, 0.00978076551, -0.00409004372, 0.0276896469, -0.0323253758, 0.000386527303, -0.0120258713, -0.0112463208, -6.59370126e-05, 0.00420697639, 0.0100977821, 0.0223471262, -0.00238542561, 0.0220976695, -0.0155598354, -0.00540488632, 0.00719785318, -0.0105811041, 0.00856986269, -0.000934161828, -0.0086114388, 0.0219313651, -0.0165160839, -0.00988990255, 0.0180959739, -0.0183870066, -0.0182622783, -0.0109864706, -0.0334271416, -0.0068132747, 0.0121402061, -0.000822426169, 0.00848151371, -0.00697438186, -0.00326891663, 0.00832040608, 0.0275441315, 0.00612207316, 0.00665216753, 0.0177113954, 0.00623640697, 0.0193640441, 0.00447722059, 0.011350261, 0.00329750031, 0.0225757938, -0.0200188663, 0.00874136388, -0.0017358, -0.0165056903, 0.0283548646, 0.016380962, -0.00096274534, 0.0223679133, -0.0182518847, 0.0149361948, 0.0128781805, -0.00706273085, -0.00520999823, -0.0137304896, 0.00456816796, 0.000795791508, -0.00656901533, 0.00444344, 0.00100432138, 0.00148764299, -0.00137330883, -0.00446163, 0.0289577171, -0.0224718545, 0.00486179907, 0.00777991768, -0.00339884195, -0.0103576332, -0.0077331448, 0.00565953925, -0.00558678154, -0.00450060703, 0.00323253777, -0.0220560934, -0.0102952691, 0.00453698635, 0.00556599349, -0.0115373535, 0.00295449793, -0.00556599349, -0.0109033184, 0.0104823606, -0.00904279, -0.0337389633, 0.040661376, -0.0060753, 0.0172436647, 0.0083983615, 0.0101549495, 0.000148926702, -0.0107785901, -0.0110072587, -0.00421217317, -0.0109241065, -0.0252158735, 0.00540488632, 0.0060181329, 0.0093182316, -0.00647027232, 0.0152999852, 0.0243219882, 0.0118283853, 0.000342027954, -0.00543087116, -0.0170565732, 0.00555559946, -0.00670933444, -0.0145204347, -0.0389983319, -0.0214532409, 0.0040354752, -0.0122337518, -0.0095313089, -0.020507386, 0.00581025239, -0.0119531136, -0.0152791971, 0.0151336808, -0.00210088957, 0.0159444138, 0.0220768806, 0.0029882784, 0.00517621776, -0.00648066634, 0.0254237521, 0.00528795365, -0.0143541303, 0.0185429174, 0.0198213812, -0.0157573223, -0.00485140504, -0.00877254643, -0.00305064255, -0.00657940935, 0.0017358, 0.0172852408, -0.0178257301, -0.00588301057, -0.0190522242, -0.0011394436, -0.047687728, -0.00277260272, -0.0160899311, 0.0265047308, 0.0148114664, 0.0031571812, -0.0275441315, -0.00331568974, -0.0092766555, -0.0156221995, 0.0150297415, 0.0256939977, -0.00194368022, 0.0140007343, 0.014426888, -0.0146763446, 0.0172852408, -0.0040952405, 0.00479943492, 0.00298568, 0.0142086139, -0.00528275641, 0.0126391184, 0.00308962, 0.0318472534, -0.0213493, -0.000155666567, -0.00437587919, 0.0105655128, -0.0123480856, -0.00164745084, -0.0395180322, -0.0393933058, 0.0081125265, -0.00977037102, -0.0129821207, 0.0252574496, 0.00630916515, -0.0302673616, -0.020507386, -0.0108409543, -0.0111631686, -0.0139175821, 0.0143645247, 0.00237373239, 0.0152272275, 0.00930264, 0.0172020905, -0.01194272, 0.0160379596, 0.027752012, 0.010737014, -0.0124104498, -0.0236983467, -0.0456505, 0.00354695646, -0.00936500449, 0.00405886164, 0.0369195305, 0.0151544688, 0.0359424911, 0.0117660211, -0.0145412227, -0.00940138381, 0.0175035167, -0.0212037843, 0.0325332582, 0.011506171, -0.0068964269, 0.0122649344, 0.00466431258, 0.0239270143, -0.0176386386, -0.0110800164, -0.012296116, 0.00735376356, 0.0124520259, 0.00231006905, 0.00183454307, -0.0176490322, 0.0147179207, 0.00812292, 0.018376613, -0.0198733509, 0.0101341614, 0.0188859198, -0.0267333984, 0.00287134573, -0.0133043351, -0.00952091441, -0.0294982065, 0.00851269532, -0.00173190224, 0.00472927559, 0.0113710491, 0.00988990255, 0.00880372804, 0.00129340484, -0.00973918941, 0.00442525046, 0.00238672504, 0.0169110578, 0.00475526042, -0.0142813725, -0.0210582688, -0.00224120868, 0.0325540453, 0.0229707658, -0.0199253205, -0.000588885741, -0.00269724615, 0.00989509933, 0.00667295558, 0.0128573924, -0.0112878969, 0.00966123398, 0.0110072587, -0.00171241339, 0.0203618687, 0.0175035167, -0.0224510655, 8.76182748e-05, 0.0205177795, -0.00979115907, -0.00842954405, 0.0102692833, -0.00196576747, -0.000784747885, 0.00473187398, 0.0206632949, -0.00595057197, 0.00457336521, -0.0117348395, -0.0109864706, 0.000533667568, -0.0160171725, -0.0232825857, -0.024238836, -0.0134290634, -0.0426154472, -0.0139487637, -0.0151648633, -0.0195199549, -0.0110176522, 0.0054360684, -0.00807095, 0.00996785704, -3.63384402e-06, -0.00482282136, 0.00355735049, 0.00443044771, 0.00369247259, -0.00794622209, -0.0165056903, 0.00504369428, 0.00977037102, -0.00120115804, -0.00120310683, -0.00439147, -0.0104199965, 0.0165056903, -0.0262968503, -0.0307662748, -0.00719785318, -0.0105914976, -0.00823205709, -0.0063143624, 0.00358853256, 0.000561601424, -0.0182518847, 0.0114230188, -0.00595576875, 0.0208088122, 0.00322734076, -0.00102705834, -0.00572710065, 0.00390295149, -0.00235814136, -0.0136993071, -0.0187404025, 0.00389255746, 0.0101757376, 0.0190522242, 0.0074629006, -0.0261305459, 0.0161211118, 0.0185221285, -0.0125351781, 0.00401988393, 0.00359372958, 0.00299347541, -0.000204794516, -0.0171813015, -0.0212453604, -0.0105966954, -0.0168383, 0.010342042, -0.0114230188, -0.00592458667, 0.0243012, -0.0155494418, -7.71836567e-05, -0.00212687463, -0.000739274081, -0.0110384403, 0.0202683229, 0.0316393711, 0.00559717556, -0.046149414, -0.0361295864, 0.00368727581, -0.0109656826, -0.0276480708, 0.000456037262, -0.0246130191, 0.00319615868, -0.0302049983, -0.025756361, -0.00439406838, -0.0194368027, 0.00908956304, -0.0173060298, -0.0048695947, -0.0153935319, 0.0210894495, -0.00554000819, 0.00348719093, -0.00733297551, 0.00528015802, 0.00980675, 0.0183662195, -0.0102173137, 0.00304024853, 0.0180128217, 0.0103108594, -0.000876994745, -0.00020300805, 0.00731218746, 0.0023217625, 0.0295397807, -0.0027700041, -0.00431611342, 0.0164537206, 0.00398350507, -0.0122337518, 0.00275181467, -0.0137512777, -0.0133459112, 0.0225965809, 0.00687563885, 0.0058934046, 0.00180855801, -0.00305843796, -0.0155078657, -0.0418462902, -0.0172540601, 0.00189820642, -0.0146243749, -0.0189274959, -0.00463313097, 0.00777991768, 0.011724445, -0.00372105627, -0.00836718, -0.0143125542, -0.0168383, -0.0239893794, -0.0155910179, 0.010539528, -0.0158404745, 0.00150063541, 0.00200734357, -0.000529769808, -0.00442525046, -0.00199045334, -0.0109864706, 0.00702115521, -0.0113814427, 0.00935980771, -0.0283132885, 0.0210166927, 0.0088972738, -0.0147698903, -0.0121713877, 0.0154558951, 0.0302049983, 0.023428103, -0.00186702434, -0.0186780393, 0.0130340904, -0.00813331455, -0.00850749854, 0.00572190341, 0.00573229743, 0.00925586745, 0.0227005221, -0.03829154, -0.0374392308, -0.0014057901, 0.000268457836, 0.0062727863, -0.0293111131, -0.0137928538, 0.00345600885, -0.0112151392, 0.0100302212, -0.00522299111, 0.00846072566, -0.00649625761, -0.0208503883, -0.0139487637, 0.00542567438, -0.0167447533, 0.0101601463, 0.00799299497, 0.0155910179, 0.00406405842, 0.00659500062, 0.00705753407, -0.00969761331, 0.00444344, 0.0069432, 0.000789944897, -0.0102640865, 0.022243185, 0.00342222839, -0.00884530414, -0.0280222557, 0.000450190622, 0.0232410096, 0.00925067067, 0.00520480145, 0.00649106037, 0.0154039254, 0.00706273085, 0.00752526475, -0.0276272837, -0.00419918075, 0.0317848884, -0.0101445559, -0.0247585364, 0.0162666291, -0.00183194457, 0.00572710065, -0.00589860184, 0.0122025702, 0.011724445, -0.00596096599, -0.00523598352, -0.00983273517, 0.00133173272, 0.0103836181, -0.0115997167, 0.0111111989, 0.0187715851, 0.0302465744, -0.00421217317, 0.003858777, 0.00644428749, -0.0198005922, -0.0129509391, -0.00339104631, 0.0192289222, -3.02481985e-05, -0.00675091054, 0.0159652028, -0.000290382712, 0.0123584801, -0.00339104631, 0.00462533534, 0.00988990255, -0.0093182316, -0.00821646675, 0.00966123398, -0.008679, 0.00626239227, 0.0126495119, 0.0113398666, 0.0137200952, 0.00233605411, -0.00328710629, 0.0106434682, 0.0255484805, 0.00350797898, 0.00507487636, -8.38829219e-05, -0.00715627708, -0.0102381017, 0.0252574496, 0.000324812863, 0.00584663171, 0.000464807206, -0.0252782367, -0.00292591425, -0.00355735049, -0.0159755964, 0.00958327856, 0.00802937429, 0.0191873461, -0.00662098546, -0.00247897184, -0.000366388907, 0.017368393, -0.0205177795, -0.0154558951, 0.0201851707, 0.00763440179, 0.00494754966, 0.00586222252, -0.0372105613, 0.013106849, -0.029331902, -0.000539189379, -0.0198733509, 0.0015837875, -0.0144372825, 0.0158924442, -0.0012277927, 0.0133770928, 0.00613766396, 0.0102640865, 0.0134082753, -0.00421737041, 0.00832560379, -0.00211907923, -0.0180543978, -0.0146139804, 0.000758762879, -0.0110592283, -0.0126703, -0.00285055768, 0.000948453555, -0.0134290634, -0.0291240215, -0.0445279479, -0.00121999718, 0.0251742974, 0.0349654555, 0.00436288631, 0.00807095, -0.00860104524, -0.0198421683, 0.0075460528, -0.00160587486, 0.002195735, 0.00172020891, -0.0198213812, 0.0188651308, 0.00862703, 0.00867380295, 0.0135122156, 0.00859584752, 0.0128469989, 0.0231370702, -0.00898562279, -0.00150973024, 0.0266086701, 0.0117972037, -0.0195823181, 0.00136551331, -0.0157677159, -0.00216975, -0.00665216753, -0.0109968642, 0.0291448087, -0.00538409827, 0.0291863848, 0.023843864, 0.0235320423, 0.00106993364, -0.0028531563, -0.0168590881, -0.019322468, 0.0209335405, 0.00904279, 0.00464092614, 0.0092766555, 0.0189067069, 0.0235736184, -0.0189171024, 0.000874396239, -0.00841395278, 0.0159548074, -0.00433690147, 0.00474226801, 0.00787346438, -0.0252782367, 0.0200812314, 0.0323253758, -0.00234904676, 0.0139903398, 0.0206009317, 0.0063299532, 0.00154740852, 0.0204658099, 0.0190210417, 0.00582584366, -0.0211310256, 0.00137330883, 0.00339624332, 0.0217858478, 0.0339052677, -0.00531653687, 0.00881931931, 0.0248209, 0.0148946187, -0.0247585364, 0.0100873886, 0.0158924442, -0.016027566, 0.0168590881, -0.00130704697, 0.0255069043, -0.00578946481, -0.00345341046, 0.0105551193, 0.00306363497, -0.00801898, 0.023428103, -0.0101913288, 0.0249040518, 0.0101965256, 0.0048695947, -0.00635074126, -0.0147594968, -0.00856986269, 0.00531393848, 0.000593757897, 0.00403287681, 0.0075460528, 0.0009010309, 0.0112359272, -0.00926626194, 0.00859065074, -0.0145724043, 0.016048355, -0.00284536066, 0.0137720658, -0.0191145875, 0.00625199825, 0.0216819085, 0.0120050833, 0.0259434544, -0.00203592703, 0.00966123398, 0.0182103086, 0.0063299532, 0.00816969294, 0.0122129638, 0.00463832775, 0.0182518847, -0.0183454305, 0.00591939, 0.00314678717, -0.0303297266, 0.0125767542, 0.0104823606, -0.00966123398, -0.00407185405, 0.0168902688, -0.010560316, -0.0071666711, 0.0159859899, -0.00608049706, 0.0315770097, 0.00547764404, -0.00558158429, -0.0082736332, -0.00297008897, -0.0065586213, -0.0026413782, 0.0212869365, -0.0150713176, 0.00386137539, -0.00804496557, -0.00224380731, -0.0204138383, 0.00429792376, -0.00167733361, 0.0105811041, -0.0126287248, -0.00669894041, 0.0158300791, -0.0120570539, 0.0115997167, -0.00483061699]
|
04 May, 2023
|
Python Program to Swap dictionary item’s position
04 May, 2023
Given a Dictionary, the task is to write a python program to swap positions of dictionary items. The code given below takes two indices and swap values at those indices.
Input : test_dict = {‘Gfg’ : 4, ‘is’ : 1, ‘best’ : 8, ‘for’ : 10, ‘geeks’ : 9}, i, j = 1, 3
Output : {‘Gfg’: 4, ‘for’: 10, ‘best’: 8, ‘is’: 1, ‘geeks’: 9}
Explanation : (for : 10) and (is : 1) swapped order.
Input : test_dict = {‘Gfg’ : 4, ‘is’ : 1, ‘best’ : 8, ‘for’ : 10, ‘geeks’ : 9}, i, j = 2, 3
Output : {‘Gfg’: 4, ‘is’: 1, ‘for’: 10, ‘best’: 8, ‘geeks’: 9}
Explanation : (for : 10) and (best : 8) swapped order.
Method : Using items() and dict()
This task is achieved in 3 steps:
First dictionary is converted to equivalent key value pairs in form of tuples,
Next swap operation is performed in a Pythonic way.
At last, tuple list is converted back to dictionary, in its required format.
Example:
Python3
# initializing dictionary
test_dict = {'Gfg': 4, 'is': 1, 'best': 8, 'for': 10, 'geeks': 9}
# printing original dictionary
print("The original dictionary is : " + str(test_dict))
# initializing swap indices
i, j = 1, 3
# conversion to tuples
tups = list(test_dict.items())
# swapping by indices
tups[i], tups[j] = tups[j], tups[i]
# converting back
res = dict(tups)
# printing result
print("The swapped dictionary : " + str(res))
Output:
The original dictionary is : {‘Gfg’: 4, ‘is’: 1, ‘best’: 8, ‘for’: 10, ‘geeks’: 9}
The swapped dictionary : {‘Gfg’: 4, ‘for’: 10, ‘best’: 8, ‘is’: 1, ‘geeks’: 9}
Time Complexity: O(n)Auxiliary Space: O(1)
Method 2 ; dictionary manipulation using built-in functions and data types.
Here are the steps:
Initialize a dictionary test_dict with some key-value pairs.Print the original dictionary.Initialize two variables i and j with the indices of the key-value pairs that need to be swapped.Convert the dictionary to a list of tuples using the items() method.Swap the tuples at indices i and j in the list using tuple unpacking.Convert the list of tuples back to a dictionary using the dict() method.Print the swapped dictionary.
Python3
# initializing dictionary
test_dict = {'Gfg': 4, 'is': 1, 'best': 8, 'for': 10, 'geeks': 9}
# printing original dictionary
print("The original dictionary is : " + str(test_dict))
# initializing swap indices
i, j = 1, 3
# conversion to tuples
tups = list(test_dict.items())
# swapping by indices
tups[i], tups[j] = tups[j], tups[i]
# converting back to dictionary
res = dict(tups)
# printing result
print("The swapped dictionary : " + str(res))
Output
The original dictionary is : {'Gfg': 4, 'is': 1, 'best': 8, 'for': 10, 'geeks': 9}
The swapped dictionary : {'Gfg': 4, 'for': 10, 'best': 8, 'is': 1, 'geeks': 9}
The time complexity of this program is O(n), where n is the number of key-value pairs in the dictionary.
The space complexity of the program is O(n), as we are creating a new list of tuples to store the key-value pairs, and then creating a new dictionary from this list.
METHOD 3:Using loop
APPROACH:
The problem is to swap the positions of key-value pairs in a dictionary in Python using a loop.
ALGORITHM:
1.Create an empty dictionary swapped_dict to store the swapped key-value pairs.2.Iterate over the key-value pairs of the original dictionary original_dict using a for loop.3.For each key-value pair, swap the positions of the key and value and add them to the swapped_dict dictionary.4.Print the swapped_dict dictionary.
Python3
# Original dictionary
original_dict = {'Gfg': 4, 'is': 1, 'best': 8, 'for': 10, 'geeks': 9}
# Create an empty dictionary to store the swapped items
swapped_dict = {}
# Swap the positions of items using a loop
for key, value in original_dict.items():
swapped_dict[value] = key
# Print the swapped dictionary
print("The swapped dictionary :", swapped_dict)
Output
The swapped dictionary : {4: 'Gfg', 1: 'is', 8: 'best', 10: 'for', 9: 'geeks'}
Time Complexity:The time complexity of the algorithm is O(n), where n is the number of key-value pairs in the dictionary. This is because we need to iterate over each key-value pair once.
Space Complexity:The space complexity of the algorithm is also O(n), where n is the number of key-value pairs in the dictionary. This is because we need to create an empty dictionary to store the swapped key-value pairs. The size of this dictionary will be the same as the original dictionary.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position
|
https://www.geeksforgeeks.org/python-program-to-swap-dictionary-items-position/?ref=next_article
|
Pandas
|
Python Program to Swap dictionary item’s position
|
Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.to_sparse(), Python | Pandas Series.str.swapcase(), Python | Pandas Series.sum(), Calculating the Product of List Lengths in a Dictionary – Python, Pandas Tutorial, Python – Dictionary values String Length Summation, Python | Pandas Series.sort_values(), Python | Pandas Series.to_string(), Dictionaries in Python, Python – Access Dictionary items, Python | pandas.date_range() method, Python Program to Swap dictionary item’s position, Python | Pandas Working With Text Data, Python | Pandas Series.var
|
GeeksforGeeks
|
[-0.028784791, -0.00672345469, -0.00932645891, 0.0586901568, -0.00601725839, 0.0585967749, 0.0512196533, -0.000638713595, -0.0357883908, 0.0113458298, -0.00441518519, 0.0147192301, -0.000881286163, -0.00853271782, 0.0176490694, 0.0268704742, 0.0138554526, 0.0684485063, -0.0425818786, -0.018466156, 0.010838069, -0.0241624154, -0.0316095762, 0.0316329226, -0.00654836465, 0.00703278044, 0.0324733518, 0.00496380078, 0.0368155837, 0.0180926304, -0.00287585263, 0.00496380078, 0.00559996068, -0.018022595, -0.0314228125, -0.0260533877, 0.00486166496, 0.0170187447, -0.0143923955, 0.0207773428, 0.00635576574, 0.00124897505, 0.000718963158, -0.0369556546, -0.00277371681, 0.0137387263, 0.0201353468, -0.012886622, 0.0149293384, -0.0059647318, 0.0164467841, -0.010563761, -0.013528618, 0.036091879, -0.0146958847, 0.04472965, -0.0821755603, -0.013528618, -0.022119699, -0.0206022523, 0.000524175586, -0.033430513, 0.00940233096, -0.0217811912, 0.0036827256, 0.0224932246, -0.0138087617, 0.0124780787, -0.0327534974, -0.00395995146, -0.00699192612, 0.0261234231, -0.00144741044, -0.037679363, -0.0154662803, -0.0717635453, 0.0124313878, -0.0134352371, -0.0010746147, 0.039103426, -0.0104120169, -0.0137970895, 0.0214543566, -0.0321698636, 0.0204621814, -0.00256069074, 0.00605811272, -0.0295551866, 0.048044689, 0.0014262537, -0.0193882957, -0.064619869, 0.0335005485, -0.00643163826, -0.0422317, -0.0107505238, 0.0450331382, 0.00589177758, 0.00902880635, 0.0106162885, -0.0201586913, 0.0203337818, -0.0155129712, -0.00908133294, 0.00320998277, 0.0340374894, -0.0104295257, 0.014170615, 0.0213026125, 0.0134819271, 0.010517071, -0.0147542479, -0.00427803164, 0.0335238911, -0.046107024, -0.0405041464, 0.0121162254, -0.0259833522, -0.0124664055, -0.00334713655, 0.0620051958, 0.050659366, -0.0135636358, 0.0587835386, -0.0405274928, 0.00643163826, -0.00479746517, 0.000677744101, -0.00230389228, -0.0360218436, 0.0314228125, 0.0096066026, -0.00927393232, -0.016540166, 0.00245125964, 0.031889718, 0.0050309184, 0.0313994661, 0.0124547333, -0.00394244259, 0.00178154046, -0.0248160847, 0.00342300883, -0.0100209825, 0.0292750429, 0.00485874666, -0.000319721585, 0.0233219843, 0.00761057716, 0.0184194651, -0.060230948, -0.0477878898, -0.00144595129, 0.0281311218, 0.0222831164, 0.00315453764, 0.00616316684, 0.0177424494, 0.0166218746, -0.0121045532, 0.0233570021, -0.0161666404, 0.0247927401, -0.0138904704, -0.00920389593, -0.0238239076, 0.0225982778, -0.0252363011, -0.0335472375, 0.0291816611, 0.0172521975, -0.024535941, 0.017870849, 0.00794908497, -0.0228667501, -0.0194816776, -0.00216090214, -0.0661139712, 0.00654252851, -0.0403173827, 0.00669427309, -0.0279677045, 0.0258432794, 0.0415546857, 0.00588594098, 0.00997429155, -0.0235204194, 0.00018484758, 0.00431888597, 0.0165284928, -0.000631418196, -0.010517071, 0.0514064133, 0.0185945556, 0.00832844619, 0.00408835057, 0.000122289406, -0.00218716543, -0.00701527158, 0.039943859, 0.0250495374, 0.00394536043, -0.0215243939, 0.0288781729, -0.00374108902, -0.0146375215, -0.0282011572, -0.0164818019, -0.00239581452, -0.0298119858, -0.00721370662, 0.0250495374, 0.00245417771, -0.0243024882, -0.00182823103, 0.00749385078, -0.0130733848, 0.0528538264, 0.00222510169, -0.0269171651, -0.0287614446, -0.00219883816, 0.0350413397, -0.00962994806, -0.0169136915, -0.0254697539, -0.00742381485, 0.0313294306, -0.0432588942, -0.010715506, 0.0206022523, -0.0111649036, -0.00663591, -0.0134936, -0.0253063366, -0.0120578622, -0.0579431057, -0.00293421606, -0.0112524489, 0.0115092471, 0.0331036784, 0.0220029727, 0.016785292, -0.0172405262, 0.0128749488, 0.0158981699, -0.0374926, 0.0244659055, 0.0161666404, 0.0285513382, 0.062845625, 0.0103361448, -0.00994511, -0.00740046939, -0.0312360507, 0.00936147664, -0.0112291034, -0.00756972283, -0.00868446287, -0.0136803631, 0.0400839299, -0.00128691131, -0.000577432103, 0.0445195436, 0.0398037843, -0.00190118526, 0.0469474569, -0.022609951, -0.0215477385, -0.0458969176, -0.00313994684, -0.0276875608, -0.0233103111, -0.00965329353, 0.0564490072, 0.012489751, -0.0061573307, -0.00275620795, 0.047741197, 0.0118827727, 0.0201586913, 0.00196976215, 0.0240223445, 0.0169603825, 0.0306991078, -0.0350179933, -0.0414846502, 0.00784986652, -0.00555910636, -0.00824090093, 0.0194116402, 0.00712616183, -0.0126531683, -0.0204271637, 0.0317729935, 0.0285746828, -0.00164292753, -0.0426752605, -0.0374459065, 0.0261934586, -0.00539277121, -0.00530230766, 0.00605227659, 0.0246526673, -0.0261701141, -0.022364825, 0.00351347192, 0.0109956497, 0.0223881714, -0.00656003738, 0.0431888588, -0.0493987165, -0.00970582, -0.010318635, 0.0190731343, -0.00918055, 0.0136336721, -0.00474785641, 0.0102544362, -0.0121862618, -0.0111765759, -0.0178475045, 0.0281544663, 0.0291349702, 0.00162104133, -0.0454066657, -0.0210925043, -0.00542778894, 0.00937898643, -0.0365120955, -0.0399672, -0.00294297049, -0.0562155508, 0.0251429193, 0.011649319, 0.00281603029, -0.0190848075, -0.0237188544, -0.0180342663, -0.00555910636, 0.0564956963, 0.0208240338, 0.00777983107, -0.0119002815, 0.0068576904, -0.0115851192, 0.002881689, 0.0277109053, 0.0196801126, -0.00878368, 0.000880556647, -0.00571960583, -0.00702694384, 0.00647249259, 0.002881689, -0.0418581739, -0.00459611183, -0.00143136049, 0.00578088732, -0.00113005983, 0.00412336877, -0.00442102179, -0.0209874511, -0.0250495374, -0.0268471278, -0.0280377399, -0.0132718198, 0.00501049124, 0.00855022669, 0.0147309024, -0.0114742294, -0.00604644045, -0.00298382482, 0.00817086548, -0.0522001572, -0.00216673827, 0.0162600223, -0.012886622, 0.00287293456, 0.00910467841, -0.00765143149, -0.00597348623, 0.0223998427, 0.0126998592, -0.034854576, -0.0192949139, 0.00362436241, -0.00879535265, -0.0388699733, 0.0344577059, 0.00930311345, 0.00440059463, -0.0230418406, -0.020345455, 0.0050309184, 0.0137620717, -0.0115792835, -0.00580131449, -0.0002881689, -0.00583341392, -0.00462821173, -0.0107388515, -0.0247460492, -0.0144741042, -0.024535941, -0.0363253318, -0.0279677045, 0.0186412446, 0.0167619456, 0.0183844473, -0.021676138, 0.0605577826, -0.0360451899, 0.0115092471, -0.000289992749, 0.0132951653, -0.0531806611, 0.060184259, -0.0111882491, -0.0127115315, 0.0286680646, -0.00253442721, 0.0222714432, 0.00501340954, -0.00193474418, 0.0278743226, 0.0192715693, 0.0177191049, 0.0181393214, -0.0138554526, -0.00196392578, -0.00456401194, 0.00879535265, 0.0200653095, -0.0614915974, -0.0159098413, 0.022119699, -0.0100676734, 0.0148709742, 0.000399424, 0.0414846502, -8.59035135e-05, -0.0210925043, 0.0275941789, 0.00689854473, -0.0243024882, -0.0117777186, 0.0377727412, 0.0338040367, 0.0220496636, 0.00249503204, 0.00282770302, -0.0106337974, 0.0031895556, 0.0206489433, -0.023403693, -0.0369089656, -0.036979, 0.0232286025, 0.0488851182, 0.0251896102, 0.00535191689, 0.0152094821, -0.00671761855, 0.0527604446, 0.0126765138, 0.01831441, 0.00160499138, -0.0268704742, 0.0045873574, 0.00291087083, -0.0204038173, 0.0184428096, 0.00519725401, -0.000125754726, 0.00102062861, 0.0112174302, 0.0255631357, 0.0145674851, 0.00196538493, 0.046107024, -0.00533148972, 0.0285980273, -0.00115851196, -0.0211975593, -0.00261905417, 0.00824090093, 0.0018048858, -0.0326601155, -0.0299987476, 0.0124430601, 0.0270338915, 0.0220029727, 0.0170654356, 0.00839848258, 0.0142873414, -0.054207854, 0.00862609874, 0.0176607408, 0.0248627756, 0.0381929576, -0.0367455482, -0.0384264104, 0.0222831164, -0.0045815208, -0.0428153351, -0.00116653694, 0.00729541527, 0.031702958, -0.0262868404, -0.0199135654, 0.00489668269, 0.0179408863, 0.0342942886, -0.00859108102, -0.0126765138, -0.0313761234, -0.00540444348, 0.0149293384, -0.0294851512, 0.0230885297, 0.0218512286, 0.0216294471, -0.00490543712, -0.0116901733, 0.0371891111, 0.00373817072, -0.0205322169, -0.0189797524, 0.0160382409, -0.00909884181, 0.0131200748, -0.0104353623, -0.0168436542, 0.00523519, -0.0190614611, 0.000389575172, -0.0244192146, 0.00980503857, 0.0393602252, 0.0121979341, 0.0401072763, -0.00867279, -0.00630907528, -0.00855022669, -0.0220379904, -0.029228352, -0.00845100917, 0.00622736663, -0.00710281637, 0.0265669841, 0.0199836, -0.00268179458, 0.0195633862, -0.030115474, 0.0165635105, 0.0100968545, -0.0126648415, -0.02216639, -0.0332670957, -0.00996261928, 0.0295551866, -0.0157697704, 0.00210983423, 0.0201937091, 0.0200186204, -0.000734283531, 0.00702110771, 0.00869613513, -0.000697806478, 0.0296018776, -0.0100034736, 0.0222831164, -0.0141939605, -0.0450097956, 0.0158631504, 0.0166802369, -0.02448925, 0.00137445622, 0.00661840104, -0.0147775933, 0.00684601767, -0.0285046473, 0.000602601329, -0.0135402912, -0.012886622, -0.0375859812, 0.0136103267, -0.00373233459, 0.0310259424, 0.0263802223, 0.0152211543, 0.00742965098, 0.000146637845, 0.0278743226, 0.0277575962, -0.00328293699, 0.0219562817, 0.0357883908, 0.0157230794, 0.000825841038, 0.031352777, 0.0170420911, -0.0311893597, 0.00904047862, -0.011205758, -0.0124197155, 0.0259133149, 0.0217928644, -0.028784791, -0.0324266627, -0.0283879209, 0.0131084025, -0.0363953672, 0.0185245182, -0.0108263968, 0.0122679705, 0.0293450784, -0.030512346, -0.0362552963, -0.0103069628, -0.0241857618, 0.0224698801, 0.0226449687, 0.00356016262, 0.00561163342, -0.0160148963, 0.00177862227, -0.0127932401, 0.000693429203, 0.006811, -0.0108555779, -0.0211508684, -0.011083195, 0.0233336557, -0.0196684394, -0.00791990291, 0.0016093686, -0.00759306829, 0.030559035, -0.0116434833, -0.00451732101, 0.00260592229, 0.0769462064, -0.0108439056, -0.00504842727, -0.0168786738, -0.00200478, 0.019108152, 0.000925058674, -0.013622, -0.0274774525, 0.0177074317, 0.00608729478, -0.00960076693, -0.0152911907, -0.00569626037, -0.0225399155, 0.00357183535, 0.00895293336, -0.00899378769, 0.0269872, 0.0214076675, 0.0143106868, 0.011923627, -0.0251195747, -0.000596400234, 0.0233686753, 0.00776232174, -0.0111415582, -0.000354557182, -0.0155713344, -0.0123263337, 0.0100268191, 0.00653085578, -0.00914553273, -0.0103594894, 0.0145207951, 0.020112, -0.00879535265, 0.0036856439, -0.0218862463, -0.0098458929, -0.0380528867, 0.0183027387, 0.00229805592, -0.0153378816, -0.00588010484, 0.0103361448, 0.0073421062, -0.0372591466, 0.0238239076, 0.0101493821, 0.0127932401, 0.000539495959, -0.0483248308, 0.00738296052, 0.0185828824, -0.01204619, 0.00526729, 0.0246059764, 0.00766310422, 0.00817670114, 0.00518266298, -0.0155012989, 0.0210574865, -0.00578380516, 0.00406500557, -0.0179642309, -0.0536942557, 0.00745299645, -0.0104470346, -0.0229484588, 0.0218395554, 0.00620402116, 0.0206372701, -0.0536475666, -0.0101610543, -0.0291583166, -0.0235437639, -0.00392201543, 0.0240223445, 0.0118594272, -0.0226332974, 0.00284667104, -0.00933229551, -0.0431655124, -1.04985584e-05, -0.0155246435, -0.00276496238, 0.0418348312, -0.0211858861, -0.006886872, 0.00840431824, -0.0256098267, -0.00822339207, -0.0115034105, -0.0260066967, -0.0460603349, -0.00553867919, 0.0254697539, -0.0250261929, -0.00629156642, -0.000738660805, 0.00155830069, -0.0127815679, 0.0149993738, 0.00420799572, 0.034014143, -0.00694523519, 0.0133535285, 0.0235904548, 0.0209874511, 0.00774481287, -0.0142639959, -0.0203221086, 0.00532273483, -0.019995274, 0.0231819116, 0.0275941789, 0.0162366759, -0.000945485837, 0.0150343915, 0.000744497112, -0.0185245182, -0.0211508684, -0.00378777971, 0.0289715528, 0.00993927382, 0.00511554535, 0.0149293384, -0.00164584571, 0.00576921459, 0.0188513529, -0.034014143, -0.0417414494, 0.00461362069, -0.00561747, 0.0280610863, -0.00491127372, -0.0222947896, 0.0108730868, 0.0368622765, 0.0140071977, 0.00417297753, -0.0096124392, 0.0231935848, 0.0312827416, 0.0240690336, -0.00659505557, -0.0129683306, 0.0218045376, 0.00106804876, 0.0250028484, -0.0153845716, -0.0310025979, -0.0182910655, -0.030115474, 0.00933229551, -0.0201703645, -0.0126998592, -0.0055065793, 0.0121395709, -0.0163534023, 0.020929087, -0.00488209212, -0.006811, 0.00764559535, -0.00791990291, 0.0052293539, -0.0437258, -0.0355315916, -0.0199836, 0.00892375223, 0.0132134566, 0.00668843696, -0.016738601, 0.00404166, -0.00193036685, 0.00198435294, 0.000722246128, 0.00490251929, 0.00832261, 0.00161958218, 0.0178358313, 0.0139371613, 0.0248160847, 0.00456984807, 0.0377027057, 0.015454608, -0.00656587398, 0.00105418754, -0.0216061026, 0.0025154592, -0.00191577605, 0.0311193243, 0.0239756536, 0.0167269278, 0.0200419649, 0.0237305276, 0.013131748, 0.0231702384, -0.0210691597, 0.00887122471, 0.00714950683, 0.00746466918, -0.0269405097, 0.0153845716, 0.0332204029, 0.0328935683, 0.0307224523, -0.0207773428, 0.00335297291, 0.00105564657, -0.0211975593, 0.00337923644, -0.00599391339, 0.00121103891, 0.0176023785, 0.0164467841, 0.0184778273, -0.00405041454, 0.0130150206, -0.00418173196, 0.0305823814, -0.0178475045, -0.0354849, -0.00272702635, 0.0275241435, -0.0428853706, 0.0146842124, 0.00910467841, 0.0172872171, 0.0478112325, 0.00686936313, -0.0469708033, -0.00796659384, 0.0264736041, -0.00759306829, -0.00846268144, 0.02843461, 0.00832261, -0.0315628834, -0.0229367856, -0.0140655609, 0.030559035, 0.0175089967, 0.00986340176, 0.00829926413, -0.0288548265, 0.00589177758, -0.0132134566, -0.00832261, -0.058456704, 0.00241478253, -0.0108147236, 0.0132134566, 0.00267158099, 0.0550015941, 0.00508928159, 0.0132484743, 0.0116609922, 0.0183027387, 0.00544238, 0.0199135654, 0.00109723047, 0.041181162, 0.0218745731, -0.00665925536, 0.0333838202, -0.0122212796, 0.0120111722, 0.0226799864, 0.0026278086, 0.0132484743, -0.0200653095, -0.027991049, 0.00543654338, -0.00360393524, 0.0179992486, 0.0233570021, 0.00887122471, 0.0236838367, 0.000977585674, 0.0191314965, -0.0105695976, -0.0740513876, -0.00419924129, -0.0182093568, -0.00563789718, -0.0113750119, 0.0263335314, 0.0205555614, -0.0196334217, 0.00212734309, -0.00470700208, -0.0313761234, 0.0174506344, -0.0151394457, 0.00608729478, 0.0150227193, 0.0183494296, 0.00903464202, 0.0102544362, -0.022609951, -0.0102486, 0.00247898209, 0.0114158662, 0.00100020145, -0.0117427008, -0.00693939906, 0.0107271783, 0.00691605359, -0.0194933489, -0.0233336557, -0.018466156, -0.00911635067, -0.000448668055, -0.0327068046, 0.00294151157, -0.00854439, -0.0299053658, 0.0116726644, 0.000457422546, 0.0143807223, -0.0223414805, -0.00171150442, -0.0147425756, -0.0283178836, 0.0113108121, 0.0281077754, 0.00188367628, 0.0100735091, -0.00501340954, -0.0401773117, 0.0201470181, -0.0666742623, -0.0271739624, -0.0222014077, 0.0128516033, -0.0117835552, -0.0167152565, -0.0281311218, -0.0246059764, 0.000594576355, -0.0126531683, -0.000139980781, -0.0185245182, 0.0198435299, 0.0251662657, 0.00889457, -0.0261234231, 0.0334071666, -0.0256331712, -0.00620402116, -0.00684601767, 0.016341731, -0.0221547168, 0.00769228581, -0.00394536043, 0.00632074801, -0.0273840707, -0.0344810523, 0.00366521673, 0.0172638707, 0.000675920222, 0.0391501151, -0.0435156934, 0.0244425591, -0.0168319829, -0.0272673443, -0.000400883087, -0.0122096073, -0.000161411066, 0.0146725392, 0.0119761536, -0.00850937236, -0.0155479889, 0.0500523858, 0.00992760155, -0.0115676103, -0.017228853, -0.0345744342, 0.00302905636, 0.00812417455, -0.000701818964, 0.0220379904, 0.00290065724, -0.00351930829, 0.0157230794, -0.0222247541, -0.000859399908, -0.00839848258, -0.00686352653, -0.00869029853, 0.00864360854, 0.0167619456, -0.0260533877, 0.0167502742, 0.00577213243, 0.0277342517, -0.00096080621, 0.0260533877, 0.00465155672, -0.00234328746, -0.033734, -0.0140071977, -0.0075638867, -0.0123613514, 0.0171938352, 0.0100093102, -0.00797242951, 0.0110540129, 0.0133652007, 0.000712032546, 0.017870849, -0.035741698, -0.0075288685, 0.00972333, 0.02448925, 0.000636160199, 0.0150694102, 0.00498714577, -0.0120111722, 0.00197559851, 0.0431655124, 0.0232869666, 0.00431304937, 0.00863777194, -0.00217987015, -0.0281778127, -0.0186762642, -0.0101493821, 0.0177541226, 0.00332087302, 0.0061573307, 0.0412745401, 0.00689854473, 0.0224698801, -0.0241624154, -0.00904047862, 0.0124664055, 0.0173805971, -0.000709114363, -0.0338273831, 0.0075638867, -0.00333254575, -0.00670010969, -0.00450564874, -0.0315395407, 0.0109781409, 0.0124547333, -0.00818253774, 0.00531398039, -0.0288548265, 0.00104689214, 0.01436905, 0.0598574243, -0.0172055084, 0.00656587398, 0.0112699578, -0.000855022692, -0.00554159749, 0.00137226761, 0.0655069947, 0.00374984345, -0.0156296976, 0.0218979195, -0.00651918305, 0.0229017679, 0.0108147236, -0.012244625, -0.0345277414, 0.0052818805, -0.00175965414, -0.00236663269, 0.00448813941, -0.00419340469, -0.00106075336, 0.00620402116, 0.00900546089, 0.00394244259, 0.0159682054, 0.0141939605, -0.00104543299, -0.03237997, -0.000415838673, 0.00507469103, -0.00164000934, 0.0280143954, 0.0130733848, 0.0271506179, 0.0331503674, -0.00164730474, -0.00842182711, -0.0409010164, 0.0349246114, -0.0114392117, -0.00909300614, 0.00414379593, 0.0463404767, 0.0277342517, 0.00906382408, 0.0418348312, -0.00583341392, 0.0118594272, -0.00972916558, -0.0102602718, -0.0023082695, -0.00796659384, 0.0101785632, -0.00402706908, 0.00968831126, 0.0171588175, -0.00944902189, 0.000215944296, 0.00677014561, 0.0152678452, -0.0171354711, 0.0165868569, -0.0199252386, 0.00470408378, 0.018559536, -0.00180196762, -0.00855022669, -0.041181162, 0.00320998277, 0.00345219043, -0.0144040678, 0.0100968545, 0.00171879982, -0.00358058978, 0.0105520887, -0.021034142, 0.0177657958, -0.0144974496, -0.0160148963, -0.00755221397, 0.0165635105, 0.014614176, 0.00782068539, -0.0171354711, 0.00309617422, -0.0136103267, -0.0138554526, 0.0186996087, -0.0137620717, -0.0106279608, -0.00479454687, -0.0218862463, 0.0232752934, -0.00940816756, -0.0303956177, 0.0121278986, 0.0070853075, 0.000759452756, 0.0063791112, -0.0108614145, 0.00556786079, -0.0138904704, 0.0106046153, -0.0223881714, -0.00734794233, -0.00534899859, -0.00626822095, -0.00890624337, 0.00747050531, 0.043842528, -0.0129449852, -0.00365062593, -0.000685769, 0.0231935848, 0.0190497879, 0.00268033566, -0.0308625251, 0.00423134072, 0.020882396, -0.00469241105, -0.0128165856, 0.0154079171, -0.0102486, -0.0190264434, -0.0352281034, 0.0113983573, -0.0163767487, -0.0153612262, -0.00115559378, -0.0386365205, -0.00315161934, -0.00789655745, -0.0153845716, -0.0319130644, -0.00766310422, -0.0138554526, 0.0319831, -0.000949133537, 0.00244980049, 0.00524686277, 0.00603476772, -0.0181276482, 0.00746466918, -0.0268237833, 0.0187696442, 0.000381915, 0.0242791418, 0.0196801126, 0.0140655609, -0.00695690792, -0.0066650915, -0.00746466918, -0.010686324, 0.0199252386, -0.0113808475, 0.0161432959, -0.00100749684, -0.00884788, -0.000350727089, -0.0180342663, 0.00174068613, 0.00416714139, 0.0302088559, 0.00167065009, -0.00401831465, -0.0325900801, -0.0490718819, -0.00814752, 0.00207919348, -0.0174739789, -0.0154312626, 0.0114158662, -0.0121512441, 0.0293917693, -0.00737128779, -0.0080366293, 0.00132557692, 0.0173339061, 0.0216878112, -0.015302863, 0.0016925364, 0.00372358, 0.00947236735, 0.00501340954, 0.01401887, -0.00686936313, -0.00585092325, 0.00330336415, -0.00305240182, 0.00400372408, -0.0117193554, 0.0157931149, 0.019995274, -0.000446844177, 0.0151277734, 0.00135402905, -0.0219329372, 0.00805413816, 0.0180459395, -0.00261175865, -0.0122913159, -0.0112757944, 0.00649583805, -0.00337048178, -0.0291816611, 0.0175673608, 0.00493753701, 0.0113750119, -0.00347845396, 0.00222510169, -0.0335939303, -0.00354849, -0.0265903305, -0.0280377399, -0.00677598175, 0.0143106868, -0.00212442502, -0.0145791583, -0.0174506344, 0.0308391806, 0.00827592, 0.0257965885, 0.01436905, 0.00176840869, -0.0213142857, 0.0268471278, -0.014614176, 0.00208940706, 0.0268237833, -0.0324967, 0.00229659677, 0.0272206534, 0.00352222659, 0.0215594117, 0.0190964788, 0.0208473783, -0.00835179165, -0.0239989981, 0.0176140517, -0.00543654338, 0.010271945, -0.0182443745, -0.00496088248, 0.00825257413, 1.82043404e-05, 0.00493170088, -0.0169720538, -0.00859691761, 0.0101202, -0.0230885297, 0.00847435463, 0.000203177318, -0.0034142544, -0.00200186204, 0.0111065404, 0.00881869812, -0.00424301345, -0.033617273, -0.0149526829, 0.00464863889, -0.00699192612, -0.0138671258, 0.00590053201, -0.0289015174, -0.016189985, -0.0101785632, -0.00207335711, 0.0134585826, -0.0194583312, -0.0202870909, 0.0125597874, 0.012933312, 0.0173339061, 0.0102602718, -0.00582757778, 0.00760474103, 0.0245826319, -0.00426927721, -0.00407084171, -0.0093906587, 0.0150694102, -0.0102252541, 0.0183494296, 0.00580131449, -0.0129099675, 0.0038782428, -0.00200769841, -0.0038928336, -0.0205438901, 0.0109197777, -0.00987507403, 0.0152445, 0.00204125722, 0.0159565322, 0.0429087132, -0.00647832872, -0.00492294645, -0.0194349866, 0.0144974496, -0.0488384292, 0.0108497413, -0.0158398058, 0.0264269132, 0.0228200592, 0.00445603952, 0.0286447182, -0.0031749648, -0.00106075336, -0.0135869812, 0.0140889063, -0.0174739789, 0.0134002194, 0.0268471278, -0.00834011845, -0.0327068046, 0.00204125722, -0.0214543566, -0.00392201543, 0.00365938037, -0.0170070715, 0.00869029853, 0.016096605, -0.0123496791, -0.00639662, -0.0028379166, -0.00932645891, -0.00259424979, -0.00922724139, -0.0197034571, 0.0187696442, 0.0251896102, -0.013131748, 0.00831677392, -0.0106279608, -0.0048324829, -0.0124080423, -0.00290503446, 0.0134235639, 0.0486049764, -0.0123146614, 0.0338507257, 0.0184895, 0.0199836, 0.0107797058, 0.0134235639, 0.00902880635, 0.0124197155, 0.0279677045, -0.00242937333, -0.0239756536, -0.0241857618, 0.0136336721, -0.00477120187, -0.00363019877, 0.0180342663, 0.0170771088, -0.0238822717, 0.00457276637, -0.0299754031, -0.0453132838, -0.00737128779, 0.00296631595, -0.0244425591, 0.0189680792, -0.00140290835, -0.0161199495, -0.0130266938, 0.00547448, 0.020789016, 0.00585967768, -0.0141355963, -0.00641996553, -0.00342009077, 0.0273373798, -0.0158981699, -0.00992176495, 0.0108030513, 0.00646665599, -0.0476244725, -0.0259133149, -0.0342009068, -0.0131901111, 0.0091747148, 0.00348720863, -0.0114683928, -0.0247460492, 0.0120812077, 0.00714367069, 0.02448925, 0.00106877834, -0.00223969249, 0.0269171651, 0.0213493034, 0.00665341876, -0.00293567521, -0.020438835, 0.00599391339, -0.00482956506, -0.00629156642, -0.0246760137, 0.0158748236, -0.00107826234, 0.00369148026, 0.00629156642, 0.0117368642, -0.00920389593, -0.017975904, 7.93946401e-06, -0.00882453471, 0.00162687758, 0.0291116256, -0.0104061803, -0.00671761855, 0.0174039435, 0.00533732586, 0.00805997476, 0.0385197923, -0.00075361639, -0.0121745896, 0.0553284287, -0.00859108102, -0.0221080258, 0.00650751032, 0.0179292131, 0.00319831, -0.0169253629, 0.0415546857, 0.0215944294, -0.00332962768, 0.0103594894, 0.0151627911, -0.0100968545, 0.00318371924, 0.0453599729, 0.0252596457, 0.0218162108, 0.0174039435, -0.000477120164, -0.00587426824, 0.0059588952, -0.0119002815, -0.00273432164, -0.00152182369, -0.00784403086, -0.0157814417, 0.0168203097, -0.0024031098, -0.022960132, 0.00850937236, -0.0149176652, 0.000965913, -0.000253333303, -0.0157114062, 0.00744716, 0.0353681743, 0.003233328, -0.00964162126, -0.0064374744, 0.00675263628, 0.00134308601, 0.0127582224, -0.00409418717, -0.000704007572, 0.020835707, -0.0191314965, -0.011771882, -0.00470116548, -0.00405333284, 0.0105053978, -0.00103084219, -0.0374459065, 0.0145324674, -0.00252421363, 0.0267070569, -0.00576629629, -0.00254172273, -0.00166627287, 0.00349596306, 0.016341731, -0.02409238, 0.0272206534, -0.00818837434, 0.00204855273, -0.00993927382, 0.0441226736, -0.0382629931, -0.000971019792, -0.00191577605, 0.0220379904, 0.0118360817, 0.0137970895, -0.0130500393, 0.000397235359, 0.000132867746, 0.0195633862, -0.0100093102, -0.00619234843, -0.00527604437, -0.0105812708, 0.00972333, 0.00344927236, 0.0243024882, -0.0285046473, 0.00238997815, -0.00455817534, 0.0105229067, -0.0101260366, 0.0146725392, -0.00468073832, -0.0130033484, -0.00737128779, -0.0111765759, 0.019796839, -0.00659505557, -0.0023053512, 0.0299520567, -0.0070853075, -0.00892958883, 0.0127582224, -0.00789655745, -0.0229017679, 0.0215127207, -0.0289482083, 0.0187463, 0.0170887802, 0.0208006874, 0.0126648415, 0.00510095432, -0.0110715227, 0.00417297753, 0.0259366613, -0.00695690792, 0.0043539037, -0.0104878889, -0.00913386047, 0.0281311218, -0.00558537, -0.00310492888, -0.00255047716, -0.0220379904, -0.00264969491, -0.027103927, 0.0122096073, 0.00225136522, 0.00409126887, 0.017532343, -0.00231848308, -0.0024031098, -0.0161199495, 0.00828759186, -0.0109956497, 0.0057341964, -0.00459027523, -0.0116318101, -0.00571960583, -0.0038928336, 0.0126765138, -0.00020992558, 0.00956574827, 0.0154312626, 0.00602893112, 0.0117368642, 0.0127348769, -0.00546572497, -0.0157114062, -0.000281055865, -0.00473618368, -0.0096182758, 0.00801328383, 0.00297361123, 0.00599391339, 0.0126648415, 0.0197851658, -0.00267595844, -0.000487698504, -0.0119994991, 0.00588594098, 0.0104236891, -0.0146375215, 0.0202404, 0.0134118916, 0.000261175883, -0.00785570312, -0.00140655611, 0.0110890316, 0.00977002, -0.00189972611, -0.0172872171, 0.00423425902, -0.00906382408, 0.00405916898, -0.00632074801, 0.014415741, -0.0257498976, -0.0113925207, -0.0320764817, 0.0043305587, -0.00624487549, 0.0175089967, 0.0142756691, 0.00569042377, 0.023158567, -0.00560579728, -0.0234503839, -0.020835707, 0.0267070569, 0.0236371458, -0.00650167419, -0.0089354245, -0.00511846319, -0.0282011572, 0.0164584573, 0.0011942595, -0.0142756691, 0.00386657, 0.00909884181, 0.00672345469, 0.0162716936, -0.0119119538, -0.000385927473, -0.00402706908, 0.025866624, -0.024535941, 0.0143807223, 0.00692772632, -0.00668843696, -0.0104528712, -0.00616316684, -0.0132484743, -0.0134819271, 0.0103361448, -0.00915136933, 0.00874866173, -0.0163067132, 0.0130150206, -0.00117820955, -0.00728957914, -0.00836930051, -0.00109212368, 0.00510387262, -0.00354849, 0.0228434037, -0.00406208728, 0.00922140479, 0.0317729935, -0.0075347051, -0.00969998445, 0.00474785641, 0.00347553589, 0.00948404, 2.86345057e-05, 0.0180576127, 0.00157726882, 0.0185361914, -0.00936731324, 0.019551713, 0.0272673443, -0.00829926413, 0.00523227174, 0.0117602097, -0.0199485831, 0.00838097278, 0.00585967768, 0.0169136915, 0.0281077754, 0.0152211543, -0.00563206058, -0.0075288685, -0.00829926413, 0.00381987938, -0.000512138184, -0.0169253629, 0.011649319, 0.00393660599, 0.0265669841, 0.0153845716, 0.0061865123, 0.0034113361, 0.0203571264, -0.0075638867, -0.0085619, 0.0199836, 0.0109956497, 0.0199836, -0.0380762331, 0.00353681738, 0.00880118925, 0.00976418424, -0.00463112956, 0.00327418232, 0.00250232755, 0.00555327, 0.0120111722, -0.00404749624, -0.00816502888, -0.00529355323, 0.00501924567, -0.00693939906, 0.00971165672, 0.0188396815, 0.0143223591, 0.00616900343, 0.0137270531, -0.0264269132, -0.0159098413, -0.0123846969, 0.0210458133, 0.0128049133, 0.0142639959, 0.00874282606, 0.0164234396, 0.0110248318, 0.0021813293, -0.00451148488, -0.0161316227, 0.00442977622, 0.00157580967, 8.36692925e-05, 0.023497073, 0.0218162108, -0.00842182711, -0.00822339207, 0.00722537935, -0.0217928644, -0.00979920197, 0.0243024882, -0.0109839775, -0.00229221955, -0.0117485365, 0.00298674311, 0.0302788913, 0.0219679549, 0.0118535906, -1.05612535e-05, -0.00770979514, 0.0215127207, 0.0134819271, 0.0208707247, 0.00603476772, -0.00335005485, -0.00549198873, -0.0227266774, 0.0106746517, -0.0289015174, 0.00936147664, 0.00476828357, -0.0144274132, 0.00159040058, 0.0236955099, -0.0093848221, -0.014859302, -0.00550366146, -0.00156121887, 0.0153728994, 0.0236721635, -0.00308450172, 0.00543654338, -0.0151161, -0.00155684166, 0.00246147322, 0.0251195747, -0.00863777194, -0.00786154, 0.013085057, -0.0133885462, 0.00438016746, 0.0125597874, 0.00163125491, 0.014415741, 0.0114333751, 0.00233015558, 0.00587135041, 0.00698608952, 0.00284375297, 0.0182327013, -0.0309325606, -0.00356308091, -0.00428678608, 0.0137970895, 0.0255164448, -0.0176607408, -0.0283879209, 0.0201820377, 0.0106688151, -0.00842182711, 0.008713644, 0.0142990137, -0.00501340954, -0.0185712092, 0.0084918635, 0.00198289379, 0.00488501, -0.0218278822, 0.00601725839, -0.0142406505, 0.0122096073, 0.00834011845, 0.00789655745, 0.0170304179, -0.00731292414, -0.026660366, 0.00374108902, -0.000995094655, 0.0271739624, -0.00968831126, 0.00251254113, 0.0124080423, -0.000278320105, -0.0137037085, -0.0228667501, 0.0163300578, -0.00559120625, -0.0026599085, -0.0202870909, 0.00456401194, 0.0111298859, 0.021921264, 0.0136686899, -0.0303022377, 0.004356822, -0.0114742294, -0.0255164448, 0.0104295257, -0.00326834619, -0.00273140357, -0.00644331099, -0.0121278986, 0.00555035193, 0.0363253318, -0.0148359565, -0.00142917188, -0.0145558128, -0.0209174156, -0.0134118916, -0.0141939605, 0.00930311345, 0.00769812241, 0.0163767487, -0.000344890752, -0.00416714139, -0.00201207562, 0.00380528858, -0.0185128469, -0.00822339207, -0.0214193389, 0.0172521975, 0.0152328275, 0.00965913, 0.0135869812, 0.0262868404, 0.000941838138, -0.0158631504, -0.0398971662, 0.0206372701, 0.00165168208, 0.00422550458, -0.00920973253, -0.00920973253, -0.00683434494, -0.00675847288, 0.000239289628, 0.00755805, -0.00229221955, -0.0104762167, 0.000726988132, -0.00909300614, 0.00027485477, -0.0140889063, -0.00216819742, 0.00105272839, 0.00253150915, -0.0100910189, -0.0134936, -0.0110540129, -0.00488209212, -0.00951905828, 0.00609313091, -0.00862609874, -0.00807164796, 0.0203688, -0.00646082, 0.022960132, 0.000161593445, -0.00443269452, 0.0174739789, 0.00900546089, -0.00707363477, 0.000578161678, 0.0112991389, 0.0144274132, 0.00356308091, 0.000946944929, 0.00131463388, 0.0018048858, 0.00399788748, 0.00205584802, 0.00924475, 0.00211129314, 0.016540166, -0.00135038141, 0.00902880635, -0.00566416048, -0.0127932401, -0.0243258327, 0.00126721361, 0.0096182758, -0.016867, 0.0216411203, 0.00811833795, -0.0117018465, 0.00338799087, 0.00770395854, -0.00884788, -0.018664591, 0.00510387262, 0.0223414805, -0.0189914256, 0.0134469094, -0.0224815514, 0.00452023931, 0.0257265531, -0.0077564856, -0.0131901111, 4.42968485e-05, 0.0103069628, -0.00286418013, 0.0118769361, -0.0192715693, 0.015011047, -0.0066300733, 4.18118507e-05, -0.00547448, -0.0117893908, 0.00360393524, 0.0332670957, 0.0209057424, 0.000928706373, 0.010271945, 0.00269638561, -0.0167969652, 0.0267070569, -0.00656587398, 0.0233453289, 0.0109781409, -0.00452607591, -0.00761641376, -0.0157580972, -0.0118594272, 0.00352806295, -0.00172317715, -0.000493170053, 0.0212909393, -0.00995678268, -0.0344810523, -0.00602309499, 0.0171588175, -0.00817086548, -0.0176140517, 0.0155713344, 0.00922724139, 0.0132134566, 0.015699733, -0.00814752, 0.0209524333, -0.0161783136, 0.0201937091, -0.000220868693, 0.0126765138, 0.00569334207, -0.0140889063, -0.00451148488, -0.0014897238, 0.00591804087, 0.0159565322, -0.00602309499, -0.000675920222, -0.010242763, 0.0077564856, -0.0113458298, -0.0152795175, 0.0156763885, -0.025773244, -0.000879097555, 0.00614565797, 0.0211041775, 0.00136132445, -0.0189447347, -0.00994511, -0.00726623368, -0.00529647153, -0.0117193554, 0.033080332, 0.0107505238, -0.0211742129, 0.0111532314, -0.00203250279, 0.0120228445, 0.0450564846, 0.00364770764, 0.0200886559, 0.0109139411, -0.0108730868, -0.00275620795, 0.0302088559, 0.0182677209, -0.0273373798, 0.0188863706, 0.00791406631, -0.00436557643, 0.0183727741, 0.0114158662, -0.000680297497, -0.00364187127, -0.00775064947, 0.0156763885, 0.0356016271, 0.007307088, 0.013925489, 0.00231702393, -0.0208006874, 0.0285746828, 0.0454066657, 0.0363720246, -0.0165284928, 0.023497073, 0.00150577375, -0.018664591, -0.00585675938, -0.0187579729, 0.00335005485, -0.00771563128, 0.0134819271, -0.0186412446, -0.0129683306, 0.00683434494, 0.0311660152, 0.011112377, 0.00262197223, 0.0271739624, 0.00717285229, 0.0352981389, -0.00787904859, -0.0178941954, -0.0158981699, -0.00850353576, 0.00202374812, 0.00237830542, 0.00446771225, -0.00492586428, -0.0141122518, 0.0135869812, 0.00400080578, 0.029671913, 0.0135169458, -0.00545405271, 0.0161432959, 0.0260533877, -0.00541611621, 0.0150810825, -0.0155246435, -0.0244425591, -0.0149059929, 0.00647249259, -0.00291524804, -0.00997429155, 0.00601142226, 0.0276642144, -0.0167736188, 0.00709698, 0.00515056308, 0.0048062196, 9.24693886e-05, 0.0192365516, -0.0149526829, 0.0199369118, -0.0145441396, -0.005480316, -0.00362436241, 0.0200653095, 0.0140655609, 0.0132368021, 0.00721954321, -0.0120111722, -0.0135986544, 0.00365646207, -0.0114275385, -0.0205088723, 0.0291349702, -0.012244625, -0.00157143245, 0.0144974496, -0.0115617746, 0.0146258483, 0.00176986773, 0.0011869641, -0.00834011845, 0.0011526756, 0.0236955099, -0.0039103427, 0.0119177904, -0.0118185729, -0.00328585505, 0.0201003291, 0.0324733518, -0.00932062231, -0.0207656696, -0.0121395709, 0.0129566574, 0.00629156642, -0.0238355808, -0.0119119538, 0.00584216882, 0.0130383661, 0.00612231251, 0.023602128, 0.0170654356, -0.0216878112, -0.0134118916, 0.0219095908, 0.000862318091, -0.0213609766, 0.0147892656, -0.00604060385, 0.00625071209, -0.017870849, -0.00971165672, -0.0198552031, -0.0164000932, 0.0115676103, 0.0277342517, 0.0131434202, -0.0169603825, 0.018559536, 0.0187229533, -0.00523519, 0.0084918635, -0.0123846969, -0.0118419183, 0.027547488, -0.00867279, -0.00859108102, 0.0268938188, 0.00613398524, -0.0170187447, 0.00317788287, -0.00504842727, 0.0101785632, 0.0268237833, 0.00739463279, -0.0122796427, 0.029671913, 0.00489668269, -0.0332904384, -0.00716701616, -0.0077915038, -0.0144857764, -0.000499006419, 0.0119469725, 0.00371774356, -0.016867, 0.00277079875, 0.0192015339, 0.0102777807, -0.00657754671, -0.00892375223, -0.00210399786, 0.00515056308, -0.000938190438, -1.46706243e-05, 0.011480066, -0.0104120169, 0.00268763094, 0.0209407602, -0.0122212796, -0.0216527935, -0.00598807679, -0.00993343722, 0.010762197, 0.0109664686, 0.0080424659, 0.0161316227, 0.0111999214, -0.00107899192, 0.00113735523, 0.00224552886, 0.0146025037, -0.0151511189, -0.000422039768, -0.00285396655, -0.00784986652, -0.0240223445, -0.00165605929, 0.0150460647, -0.00130514975, -0.00962411147, -0.000708749576, 0.00773897674, -0.00517682685, -0.000465082732, -0.00442394, -0.0226566419, 0.0204505082, -0.00758139556, 0.00435098587, 0.0188630261, 0.00420215912, 0.0160148963, 0.00388991553, -0.00223677442, 0.00147440343, 0.00772146741, -0.00290065724, 0.0306757633, 0.00041985116, -0.0192482229, 0.0405508354, -0.0108730868, 0.00651334692, -0.020882396, 0.00874282606, -0.0034055, 0.00786154, -0.0160265677, 0.00180342665, 0.0022075926, -0.0133885462, -0.0186529178, -0.000526364194, -0.0020952432, 0.0264269132, -0.001257, -0.00130514975, 0.0202404, 0.0153845716, 0.00189243071, 0.00302322023, 0.0167969652, 0.0242324509, -0.0145324674, -0.0182677209, -0.00977585651, 0.0116609922, 0.0197034571, 0.0169487093, -0.0127115315, -0.00828759186, -0.00293567521, 0.00485582836, -0.00034343169, -0.007307088, -0.00512721809, 0.0138671258, 0.00340841804, -0.00246439129, -0.00206022523, 0.020345455, -0.00928560458, -0.00936147664, -0.00317788287, -0.0238005631, -0.0104178535, 0.0320297927, -0.00819421094, 0.00664758263, -0.0106629794, -0.00531398039, 0.00726039754, 0.0152211543, -0.0238122363, -0.0211975593, -0.0290882792, 0.0292983875, -0.0107330149, 0.0143106868, 0.0173689257, -0.0127698947, -0.0104353623, 0.00963578466, 0.00700943498, -0.002740158, -0.010686324, 0.00436557643, -0.00625654822, 0.0402473472, 0.0022761696, 0.00801328383, 0.027991049, 0.0127348769, -0.019108152, 0.00941400416, 0.00566416048, -0.0101026911, 0.00831093732, 0.0192715693, -0.00557369739, 0.0276408698, -0.00744132372, -0.0277575962, -0.00481205573, -0.00726039754, 0.0235087462, -0.0254697539, 0.00989258289, -0.00599391339, 0.0154079171, 0.00141531054, -0.00353681738, -0.00232577836, -0.00822922867, -0.0195400398, 0.0229134411, -0.0146608669, -0.0136336721, -0.00425760448, 0.000329935167, -0.0287614446, -0.0107096694, 0.0108322324, 0.00491711, -0.00421383185, 0.0107855424, -0.0183961187, -0.00205001165, 0.0280844308, 0.0166919101, -0.000860129483, 0.00263656303, -0.000287804141, -0.0181860123, 0.00905798748, -0.00866695307, 0.0111007039, 0.0138671258, 0.0038928336, -0.0115092471, 0.0159798786, 0.0104528712, 0.00344927236, 0.00852104556, 0.00832261, -0.000468000886, -0.00979920197, -0.0179408863, 0.0106746517, 0.0215243939, 0.00951905828, -0.00954240374, 0.022808386, 0.0281544663, 0.0159215145, 0.00545113441, -0.00877200719, 0.00279998034, -0.010563761, -0.0133068375, -0.0216294471, -0.0415546857, -0.0206022523, -0.011404193, -0.0222130809, -0.000450127118, 0.0012358434, 0.00375567982, -0.0153845716, -0.0147192301, 0.000390669506, 0.0170771088, 0.0189797524, 0.0329169147, 0.0145908305, 0.00776232174, -0.00270951726, 0.0229017679, 0.000739755109, 0.0070853075, 0.00940816756, 0.0157697704, -0.0107096694, 0.00507760886, -0.0150927557, 0.0100735091, -0.00579255959, 0.00686936313, -0.00234474661, 0.0104178535, 0.00906966068, -0.0277109053, -0.00357475341, -0.0470875278, -0.0118360817, -0.0557486452, 0.0122796427, 0.0261701141, 0.0177541226, -0.0064374744, -0.0102019086, -0.00327418232, -0.0223881714, 0.0189330615, 0.0110598495, 0.00819421094, 0.0177307781, 0.00970582, -0.00823506527, 0.0224815514, -0.00410586, 0.0255631357, 0.0136336721, -0.00220175646, 0.00201207562, 0.0134118916, -0.0171588175, 0.0327768438, -0.00626238436, 8.37148909e-05, 0.00932645891, 0.000970290217, -0.0184428096, 0.00793741178, -0.0305823814, -0.0155363167, -0.0101902364, 0.0107972147, -0.0315161943, 0.00769228581, -0.00951905828, -0.0327068046, -0.024979502, 0.00401539681, -0.00878951605, -0.00539568905, 0.0057050148, 0.00254172273, -0.00686936313, -0.00131901109, 0.0204505082, 0.0020806524, 0.00257382262, 0.00388407917, 0.00546572497, -0.0228667501, -0.0104528712, -0.0263335314, -0.00495212805, -0.0119061181, -0.00438016746, 0.00302905636, -0.00797242951, 0.0204738528, 2.07463381e-05, -0.0133768739, -0.0101377089, 0.0237772185, 0.00591804087, 0.0264502577, 0.0210691597, -0.0419515558, 0.00391617883, 0.00217987015, 0.0162016582, -0.0275241435, -0.00995094609, -0.0114625562, 0.0166685656, 0.0217928644, -0.0190030988, 0.0170537625, -0.0203221086, 0.00456984807, 0.000893688353, 0.0305823814, -0.0209057424, 0.00892958883, 0.0112232668, -0.010762197, -0.00895293336, -0.00306699262, 0.0140305432, -0.0260066967, 0.0173222348, 0.0115559381, -0.00208794791, -0.004777038, 0.00429262221, -0.00725456094, -0.0175673608, -0.00562914228, 0.000694158778, -0.0089412611, 0.0137153808, -0.00372941629, -0.00702110771, -0.0124197155, 0.0173222348, 0.0258899704, -0.00815335661, -0.00311660138, 0.00952489395, -0.0126648415, 0.0109664686, 0.0316796117, 0.00384322484, -0.0103361448, 0.00810082909, 0.0350179933, 0.0160499141, 0.0100209825, 0.0235787816, -0.0278276317, 0.0111532314, 0.0286680646, -0.0267537478, 0.000913386, 0.00814168341, -0.00234182831, -0.00764559535, 0.00970582, 0.00478287414, -0.0178241581, 0.0108030513, -0.000607343332, 0.00296923402, 0.00983422, -0.0200769827, -0.034504395, -0.0374459065, -0.0142523237, -0.0253997184, -0.00883620698, -0.00340841804, -0.0206606165, -0.0195750576, 0.0228200592, -0.00689854473, -0.0219796281, 0.0157931149, -0.00315161934, 0.0139955245, -0.000922140491, -0.000815627456, -0.0022615788, -0.0136920353, 0.0112174302, 0.00313702854, -0.0091688782, 0.00748217804, -0.0107855424, -0.000999471871, 0.0170420911, -0.0222364254, -0.0132718198, 0.00927976798, -0.0146958847, -0.0108322324, -0.0101902364, -0.00496963691, -0.000731000619, -0.00411461433, -0.0025461, -0.00279414398, 0.021477703, 0.00133506104, 0.016341731, -0.0143106868, 0.0176490694, -0.010394508, -0.00948404, -0.0110773584, 0.00027667862, 0.0155479889, 3.76397838e-05, -0.00892375223, -0.0146491937, 0.0191431697, -0.000343249296, -0.0107797058, 0.00738296052, 0.0105695976, 0.00133797922, -0.003653544, 0.0195633862, 0.00950738508, -0.0303956177, -0.00142771273, 0.00355724455, -0.0259366613, 0.00576921459, 0.00344051793, 0.000567583309, 0.00706779817, 0.00909300614, -0.0138321072, -0.00419632299, 0.00194787595, 0.00335880928, -0.00509511819, -0.0156296976, -0.0232869666, -0.000218862464, -0.00855022669, -0.0308391806, -0.00119790726, -0.0212442502, -0.00151890551, -0.0297186039, -0.0276408698, -0.0259366613, -0.0201353468, -0.002178411, 0.0045786025, 0.0133768739, -0.0255631357, 0.0340608358, 0.00690438086, 0.0358817726, 0.00159185962, 0.00745883258, 0.0185712092, 0.00912802387, -0.0256565176, -0.0145791583, 0.00647832872, 0.0276875608, 0.0120345168, -0.0103711626, 0.0128165856, 0.00585384108, 0.0293917693, -0.00780901266, 0.0152445, 0.00508928159, -0.0128165856, -0.011923627, 0.00703861658, -0.00058144459, 0.00242645503, 0.0247927401, 0.0251195747, -0.00356891728, 0.0201470181, -0.00349012669, -0.00746466918, -0.00912218727, -0.0130383661, 0.00725456094, -0.00637327507, -0.0149293384, 0.0218979195, 0.0100910189, 0.0128165856, -0.0110598495, 0.00360101694, -0.0166102014, 0.00565248774, -0.00276496238, -0.0347845405, 0.0209174156, -0.0183377564, -0.0137387263, 0.0039074244, -0.0080424659, 0.00705612591, 0.00169691362, 0.00106075336, -0.00461653899, -0.00106950791, 0.0107505238, -0.0146842124, 0.00519141741, 0.00531398039, -0.0036856439, -0.0329869501, 0.0224231891, 0.00284667104, 0.00540152565, -0.0133885462, 0.00697441725, -0.008270083, 0.00395411532, 0.0153145362, 0.010762197, 0.00918638706, 0.0005690424, 0.0205789078, -0.0332204029, -0.00235933741, -7.02183752e-05, -0.0119644813, -0.0113458298, -0.0218278822, -0.00839264598, 0.0135986544, -0.0214893762, 0.000826570555, -0.01629504, -0.00367980753, -0.0243491791, -0.0187579729, -0.0111532314, -0.00431013154, -0.000677379314, 0.0210925043, 0.0259833522, 0.0231468938, -0.000662423728, 0.00679349061, -0.0164234396, 0.000933813164, -0.000267559371, -0.00922724139, -0.00195079402, -0.0128049133, 0.0126064774, 0.0206372701, -0.00138904713, -0.0103127994, 0.00950154942, 0.0126181506, 0.0106571428, -0.000492440537, 0.00123146607, -0.0195050221, 0.00896460656, 0.00260884059, -0.0121629164, -0.00755805, 0.0014824284, -0.0283879209, -0.013131748, -0.024932811, -0.0158631504, 0.0183727741, 0.000737201713, -0.0259366613, 0.0045815208, 0.00113954383, -0.00695107179, 0.00124022062, 0.0247693937, -0.0101552177, -0.025329683, 0.0115325926, 0.00112714164, 0.0236138012, 0.0199252386, 0.0119994991, -0.0187112819, -0.0244192146, -0.010838069, 0.00217987015, 0.0135169458, -0.00946653076, -0.00726039754, -0.00108628732, 0.00226595602, -0.000686133804, 0.0139955245, -0.0102310907, 0.0183260832, -0.00196392578, -0.00702694384, 0.010686324, -0.0134585826, 0.0657871366, 0.011083195, 0.00844517257, 0.00433347654, 0.0036973164, -0.0187346265, 0.00649000145, 0.0244659055, 0.0156296976, 0.0193182603, -5.2618183e-05, 0.0019464168, -0.00103376037, 0.015653044, -0.0210458133, 0.0126181506, 0.00334713655, 0.0119994991, 0.014614176, 0.00254318188, -0.0285046473, -0.00201061647, 0.0115734469, -0.0209524333, -0.0148242842, 0.0124780787, -0.00619234843, 0.00274453522, -0.0184077919, -0.00675847288, 0.0172405262, 0.0196684394, 0.0173922703, 0.0255164448, -0.0250728838, 0.02834123, -0.00700943498, -0.00633242074, 0.0200069472, -0.00264677661, -0.0008572113, 0.0271506179, 0.0019566305, 0.0178475045, 0.0050659366, 0.00482081063, 0.0156296976, -0.000691240595, 0.00787321199, -0.0025329683, -0.00233745109, -0.0249561574, 0.0059559769, -0.0141589418, -0.00815919228, -0.00485291, 0.00668260036, -0.0255631357, 0.00594722247, 0.00265553128, -0.00604644045, -0.00891791563, 0.0273140352, 0.00703861658, 0.00932062231, -0.0256098267, -0.00216090214, 0.0130967293, -0.000973938, 0.00396286976, -0.00167794549, -0.00256069074, 0.0394536071, 0.00676430902, 0.0122562982, 0.00424593175, 0.0185712092, 0.0115734469, 0.0423250832, -0.00499881851, -0.0157931149, 0.0189914256, -0.00233599194, -0.0153612262, 0.0207656696, -0.0344343595, -0.0063791112, -0.013972179, 0.00182239478, 0.00913386047, -0.00298820203, 0.0307691433, 0.0201937091, 0.00512138149, 0.00285396655, -0.0194816776, -0.00972916558, -0.000436995382, 0.00442977622, 0.0103828348, 0.0212559216, 0.0119352993, -0.00681683607, 0.0247460492, -0.018559536, 0.0205789078, -0.0117893908, 0.0116318101, 0.00754637783, 0.00430137711, 0.0125597874, -0.0412978865, 0.00400956, 0.0178941954, 0.00763975875, 0.018022595, 0.0281077754, 0.00670010969, 0.0113983573, -0.000881286163, 0.0125014242, 0.0169136915, -0.0339441076, 0.00713783456, 0.0127582224, 0.0348312296, 0.0386365205, -0.0117602097, 0.0263568759, 0.00511262706, 0.0165168196, 0.00284958933, 0.0112933032, 0.0224465337, 0.0050046551, 0.000825841038, -0.00515056308, 0.0175089967, 0.00403290568, 0.00366521673, 0.00974667445, 0.0189330615, 0.00313702854, 0.0335472375, 0.00686352653, 0.00489668269, 0.0102486, -0.00815335661, 0.00689854473, -0.000677379314, -0.0204154905, -0.00942567643, -0.00551825203, 0.00727790641, 0.0114625562, 0.00740630552, 0.00839264598, -0.0119644813, 0.0344810523, -0.0192482229, 0.00295318407, -0.000948404, -0.00180634484, -0.0143340323, 0.000884204346, 0.000751427782, 0.0138321072, 0.0233803466, 0.010639634, 0.0055065793, 0.0202987641, 0.00847435463, -0.00804830249, -0.0020952432, -0.0157580972, -0.00295610237, -0.0178241581, 0.009157205, -0.0138671258, -0.0218979195, 0.0034463543, 0.00488501, -0.00431596767, 0.0202404, 0.00309033785, -0.00629156642, -0.00576629629, 0.00738879666, 0.0166218746, 0.0168786738, -0.0113458298, 0.00251254113, 0.000742673292, 0.0112582846, 0.00375276175, -0.0246293228, 0.00428678608, -0.000314797158, 0.0183377564, 0.0109022688, 0.00964162126, -0.00358058978, 0.00490251929, -0.0134702548, 0.0176490694, -0.00353973545, -0.000684674713, 0.00757555943, 0.00295464322, 0.00222656084, 0.00694523519]
|
23 Jan, 2025
|
Merging or Concatenating two Dictionaries in Python
23 Jan, 2025
Combining two dictionaries is a common task when working with Python, especially when we need to consolidate data from multiple sources or update existing records. For example, we may have one dictionary containing user information and another with additional details and we’d like to merge them into one. Let’s explore different approaches to do this.
Using update() update() method can be used to merge dictionaries. It modifies one dictionary by adding or updating key-value pairs from another.
Python
d1 = {'x': 1, 'y': 2}
d2 = {'y': 3, 'z': 4}
d1.update(d2)
print(d1)
Output{'x': 1, 'y': 3, 'z': 4}
Explanation:
d1.update(d2) adds all key-value pairs from d2 to d1.If a key exists in both d1 and d2 (e.g., ‘y‘), the value from d2 (3) replaces the value in d1 (2).Note: This method modifies the original dictionary (d1).
Lets explore other methods to merge or concatenate two dictionaries:
Table of Content
Using | Operator (Python 3.9+)Using Dictionary Unpacking (**)Using LoopUsing | Operator (Python 3.9+)| operator introduced in Python 3.9 can be used to merge dictionaries. It creates a new dictionary without modifying the original dictionary.
Python
d1 = {'x': 1, 'y': 2}
d2 = {'y': 3, 'z': 4}
d3 = d1 | d2
print(d3)
Output:
{'x': 1, 'y': 3, 'z': 4}Explanation:
| operator combines d1 and d2 into d1 new dictionary d3.Duplicate keys are handled by keeping the value from the dictionary on the right (d2).Using Dictionary Unpacking (**)Dictionary unpacking allows us to merge dictionaries into a new one.
Python
d1 = {'x': 1, 'y': 2}
d2 = {'y': 3, 'z': 4}
d3 = {**d1, **d2}
print(d3)
Output{'x': 1, 'y': 3, 'z': 4}
Explanation:
**d1 and **d2 unpack the key-value pairs of d1 and d2 into the new dictionary d3.Keys from d2 overwrite duplicates from d1.Using LoopWe can use a loop (for loop) to merge dictionaries.
Python
d1 = {'x': 1, 'y': 2}
d2 = {'y': 3, 'z': 4}
d3 = d1.copy()
for key, value in d2.items():
d3[key] = value
print(d3)
Output{'x': 1, 'y': 3, 'z': 4}
Explanation:
d1.copy() creates a shallow copy of d1 to preserve the original dictionary.for loop iterates through each key-value pair in d2 and adds or updates it in d3.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python
|
https://www.geeksforgeeks.org/python-merging-two-dictionaries/?ref=next_article
|
Pandas
|
Merging or Concatenating two Dictionaries in Python
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0211674981, 0.0127803767, -0.0112669105, 0.0496080406, 0.0144830253, 0.0188447498, 0.0182982199, -0.00801926572, -0.010320995, -0.00864462182, 0.00126319204, -0.0170790385, -0.0192126054, -0.0251403451, -0.0557459854, 0.0362180732, -0.0027247637, 0.0571753681, 0.0367856212, 0.0102053825, 0.0265066698, -0.0445211157, -0.0015042692, 0.00446945336, 0.0130010899, 0.0190969929, 0.0238791239, 0.0165535305, -0.00716794142, 0.024362592, 0.0132638449, -0.00774600124, -0.00163039134, -0.0344944037, 0.0158913899, -0.0245307554, 0.0384041891, 0.0115822162, -0.00263411342, 0.0122338468, 0.0298278853, -0.0224497393, -0.0116978278, -0.0333593041, -0.00259338645, 0.0183297507, -0.0186765864, 0.0158703681, 0.000500875642, -0.0131482324, -0.00905977376, -0.0437643826, -0.00409896951, 0.0272003412, 0.0167532247, 0.0376264378, -0.00575432228, -0.00928574242, -0.00195357925, -0.0212410688, 0.00302430382, -0.0429025479, 0.0120026236, -0.0337166525, -0.00152397586, 0.0205473974, -0.0330229774, 0.0120867044, 0.0348307304, -0.00350514427, 0.00240551704, 0.0600761771, 0.025665855, 0.00967987347, 0.00633238209, -0.00340267015, 0.0200639293, -0.00119159138, 0.0059802914, 0.0265907496, 0.00332121621, -0.02543463, 0.0147352694, -0.00213487982, 0.0229542293, -0.0120026236, -0.0282093175, -0.0214512739, 0.0551994555, -0.0184348524, 0.0180669967, -0.0374792963, 0.0133058857, -0.0176255684, 0.024867082, 0.016416898, 0.0197486244, 0.0250352435, -0.0232695341, -0.0198642369, -0.0201690309, 0.0413470417, 0.00711013563, 0.0141467, 0.0146616986, 0.0329388976, 0.0431337692, 0.00961681269, -0.0149664935, 0.00302167609, 0.0115296654, -0.00971666, -0.0269691162, 0.0483888611, -0.0474219248, -0.0515419133, -0.0300380886, -0.00939084403, 0.000141723183, -0.0470855981, 0.052971296, 0.0109095648, -0.0164379179, 0.0211464781, -0.0195174012, 0.0132112941, -0.0320560411, -0.0111302789, 0.0374162346, -0.00196671695, 0.00441953, -0.0134109873, -0.0152817992, 0.0272213612, 0.0151977176, 0.0214512739, 0.0175414868, -0.00160148833, 0.0152817992, 0.0282303374, 0.0201900527, -0.0431758128, -0.0229962692, 0.0202215817, 0.00621151505, -0.0236268807, 0.0118239503, 0.0510374233, 0.0364913382, -0.0235007573, -0.0557459854, -0.0692830905, 0.0251613669, 0.0430286676, -0.00889161, -0.00596978096, 0.0058278935, -0.0176465884, 0.0272213612, 0.018518934, 0.0190969929, -0.0271583, 0.028860949, 0.0213671923, 0.0230803508, -0.0213566814, 0.0185925048, -0.0261283033, -0.00306634442, 0.0217560679, -0.0273264628, -0.0431337692, -0.00180643681, 0.0616316833, -0.0152817992, 0.00763038918, 0.0130221108, -0.0343893021, 0.00344208325, 0.00672125863, -0.022239536, -0.0483888611, 0.00327392039, -0.0105890045, 0.027809931, -0.0185925048, -0.00514998706, -0.0441007055, 0.0143779237, -0.0312152281, 0.00672651408, -0.00532077765, 0.023837084, -0.0101002809, 0.00931727234, 0.0188867897, 0.0181931183, 0.0168688353, -0.00647426955, 0.037878681, 0.0312152281, -0.0148613919, -0.0863516256, -0.0184348524, 0.00626932131, -0.0289660506, -0.0052445787, -0.0592774041, 0.0122443577, -0.0229752492, -0.0100845154, -0.000166849073, 0.000384278392, -0.00225837459, -0.0209362749, 0.000832274731, -0.00129078119, 0.0381939858, 0.00998466928, 0.00240683067, -0.0347886905, 0.0166586321, 0.0103052296, 0.0019049698, -0.0140100671, -0.00991109759, 0.00486621261, 0.0273895245, -0.019328218, -0.00343682826, 0.0132112941, -0.0148613919, -0.0119395619, -0.0508272201, -0.0140731279, -0.0319719613, 0.00103196804, -0.0266958512, 0.0182456691, 0.029113194, 0.0588149577, -0.0194648504, -5.85449743e-05, -0.00308210962, 0.00669498323, 0.0396654122, -0.0219872929, 0.0411998965, -0.0111723188, -0.0276207477, 0.0133479256, 0.0248460602, -0.0283985, -0.0110041564, -0.0604545437, -0.00155550637, -0.0247409586, 0.00944865, -0.0387194939, -0.0494819172, -0.000438471499, -0.0277258493, -0.0137473131, 0.025686875, 0.0179408733, -0.0124755809, 0.0376474559, 0.00467965659, -0.000632909767, -0.00742544094, 0.0275156461, -0.00128158485, 0.00649003498, 0.0232274942, 0.0409896933, 0.0166901629, 0.052172523, 0.021461783, -0.0044116471, -0.0041305, 0.0169213861, 0.02066301, 0.0251193251, -0.0277468693, 0.00633763755, -0.000993868685, -0.0253925901, -0.00840288773, -0.0109726256, -0.0190024022, 0.0183297507, 0.00950645562, 0.0335695073, 0.0169634279, 0.00139128487, -0.0110251764, 0.0054810578, 0.00503174774, -0.0212620907, 0.0344944037, -0.0205894392, -0.0110356873, 0.00713115558, 0.0107046161, -0.0290080905, -0.0116978278, 0.0569231249, 0.0263595264, -0.0212726, 0.000894678931, 0.0106783407, -0.0452778451, -0.021714028, 0.00586993434, -0.0341580771, 0.0221554544, 0.028587684, -0.000467046048, 0.0118765011, -0.00347098638, -0.0333172642, -0.000408583175, -0.021440763, 0.00470593199, 0.00749375671, -0.0317407362, -0.0116137471, 0.0105890045, 0.0308158416, 0.0228701476, -0.0147142494, -0.0473378412, -0.0530553795, 0.0348727703, -0.000879570493, 0.00131377229, 0.00480577908, -0.0139785372, -0.0208311733, -0.0301011503, 0.0443949923, 0.0214092322, -0.00998466928, 0.0356715433, 0.0171736311, 0.00814013276, -0.0240262672, -0.0109095648, 0.00929625239, -0.0204843376, 0.000514341809, -0.0030321863, -0.0134425173, 0.038908679, -0.00664768741, -0.0404221453, -0.0379627645, -0.0101528317, -0.0125701725, -0.0213987231, -0.0155445533, -0.0427974463, 0.0236899406, -0.0372480713, -0.0682320744, -0.00887059048, -0.013778843, -0.0134214973, 0.00528661953, 0.00803503115, 0.00591723, -0.0131482324, 0.022239536, -0.0158913899, -0.00132362556, 0.000402999634, 0.0373952128, 0.0243205521, 0.0290711522, 0.00560718, -0.0206840299, -0.0185714848, -0.0159439407, -0.019054953, -0.00510006398, 0.0171736311, 0.0156601649, -0.0129380291, 0.00189183198, 0.0229542293, 0.00671074865, -0.0257078949, 0.00220713741, 0.00238186913, -0.00257499353, -0.0243836138, -0.00368381734, 0.014031088, -0.0158283282, 0.0458664186, -0.0258340184, -0.0100897709, -0.0267799329, -0.0249932036, 0.0308789033, -0.0171841402, -0.0241103489, -0.00356820552, 0.0175099559, -0.000353404728, -0.0504488535, 0.0587729141, -0.0509533435, 0.0101423217, 0.0121392552, -0.0163853671, -0.02066301, 0.0433019325, -0.0118029295, -0.00564922066, 0.0299750268, 0.00167505967, 0.0319929831, -0.00827676523, -0.00703130895, -0.00853426475, -0.00756732794, -0.00622202549, 0.00439588213, 0.0186030157, 0.0190864839, -0.00686314609, 0.0353772603, 0.0420617312, 0.013505579, -0.047926411, 0.00950645562, -0.0315725729, 0.0137368031, -0.00848696847, 0.0194858704, 0.00665294286, -0.00375213358, -0.0347466469, -0.0246568769, -0.0125071118, -0.0314674713, 0.0189603604, -0.00566498609, 0.00615896424, 0.00658462662, -0.0124860918, -0.00565973064, -0.02064199, 0.00818742905, 0.0104944129, 0.00556513947, -0.00801401, 0.00961155817, 0.0156706758, 0.069871664, 0.0171000604, 0.00625881087, -0.0134004774, 0.056797, -0.0060380972, 0.0162592456, -0.02543463, -0.0186870974, 0.00220845104, -0.0011948758, -0.0194648504, -0.0222815778, -0.00838186685, -0.0107361469, -0.0239842255, 0.0408425517, 0.00885482505, -0.00939609949, -0.0273474827, 0.0148719018, 0.00933303777, 0.0154920025, -0.00727829849, -0.0303533934, 0.0226809643, 0.0358607285, 0.0250142235, -0.0393290855, -0.0174994469, 0.0247409586, -0.00975344516, 0.0448154, 0.00501072733, 0.00594350556, 0.00802977569, -0.0100319646, 0.0335484892, 0.0253925901, -0.00489248801, 0.0113194613, -0.00293233967, -0.0219872929, 0.0260652415, 0.0252244268, 0.00225443323, -0.0167111829, -0.00409634179, -0.0188342389, 0.00101423217, 0.0065373308, 0.0289240107, 0.0207155608, 0.0229962692, 0.0221974961, 0.00424085697, 0.000657871482, 0.0110041564, -0.00550207822, -0.0388456173, 0.00696299272, 0.0130851716, 0.000811254373, 0.0318248197, -0.0204843376, 0.00969038438, -0.00581212854, 0.00876548886, 0.0111302789, 0.00185373263, -0.00626932131, 0.0178252626, -0.00310313, -0.0331280828, 0.00689993193, 0.00301642111, 0.00412787218, -0.0249301419, 0.019054953, -0.0020744463, -0.0425031595, 0.0460766219, 0.00619049463, -0.028062176, 0.0128959883, -0.0157337356, -0.0143253729, -0.0218611695, 0.010867524, -0.0276207477, -0.0174468961, -0.0347256288, 0.00881804, -0.00784059241, -0.0025474045, 0.0214197431, 0.0297858436, 0.00384935271, 0.0257078949, -0.0421247929, -0.00642697373, 0.0236268807, -0.00776702166, -0.00213487982, 0.0570912883, 0.0253505502, -0.0107466569, 0.0197065845, -0.0180880167, 0.00852375478, 0.00835033599, 0.00863936637, -0.00127764349, 0.0152923092, -0.0409266315, 0.00364177674, 0.00948018, -0.00441953, -0.000636194192, -1.78385635e-05, 0.00804554112, 0.0286927857, 0.0232274942, 0.00305320672, 0.0185819939, -0.00678957487, -0.0321821645, -0.00596978096, -0.0130641516, 0.0104313521, 0.0143779237, -0.0006818478, 0.0292813554, -0.0286717657, 0.00833982602, 0.0282093175, 0.0132638449, -0.00337376725, 0.011645277, -0.00647426955, 0.00193518656, 0.0336115509, 0.0194123, 0.00595927099, 0.0104576275, -0.0293023754, -0.0072047268, -0.000753448403, -0.0134530282, -0.0335064493, -0.0239001457, -0.0141782304, 0.0398545936, -0.0438905023, -0.008875845, -0.0032292523, -0.0296176821, 0.0252454467, -0.0173312835, -0.0143779237, 0.0182772, -0.0374582745, 0.01536588, -0.0122653777, 0.0112774214, 0.0176465884, 0.0163748581, -0.00103393872, 1.48825766e-05, -0.00351828197, -0.00900722295, -0.0170264877, 0.0279150326, 0.0223866794, 0.0144620053, -0.0467072316, 0.0100319646, 0.0177832209, 0.00528661953, 0.0355664417, -0.0664663687, 0.0292813554, 0.020904744, 0.0831985697, -0.0179408733, 0.0172892436, -0.0298068654, 0.00703130895, 0.0424190797, -0.00670023868, -0.0371850096, -0.0480525345, -0.0232905541, 0.0073571247, 0.00526034413, -0.0400227569, -0.0139995571, -0.00134464586, 0.0227230042, 0.0154184308, 0.0273685027, -0.00832931604, -0.0225548428, 0.0287558474, 0.0122338468, -0.0136947623, 0.0213251505, 0.00180775067, 0.0205368884, 0.0130956816, 0.0197696444, -0.00718370685, -0.000358331396, 0.0144409845, 0.0136106806, -0.0117503786, -0.0161961839, 0.012706805, 0.00443004025, -0.0123389494, -0.00444055, 0.00667921826, -0.0354823619, -0.0410107151, -0.0147142494, 0.0105364537, 0.0147142494, 0.0022386678, -0.0207681116, -0.00676329946, 0.00170396257, 0.022765046, 0.0128959883, 0.0146511877, 0.00119421899, -0.0286507457, -0.014829861, -5.43983806e-05, 0.03600787, -0.0101055363, 0.0131587433, -0.0102999741, -0.00939609949, -0.00827676523, -0.0220293328, 0.0176045485, -0.0190444421, 0.0140731279, -0.0271583, 0.0217560679, 0.00207050517, 0.0187711772, -0.000584628666, -0.0137998639, -0.0194017887, -0.000115365627, -0.0127803767, 0.018003935, 0.00519991061, -0.0375213362, -0.00418305071, 0.00657411618, 0.0213777013, -0.0145040452, -0.0261072814, 0.00923319161, 0.0231434125, 0.00910706911, -0.0296176821, -0.021178009, 0.0131797632, -0.02543463, -0.0155445533, 0.0101843625, -0.0138629247, -0.03651236, 0.022491781, 0.0199272968, -0.0018011817, -0.0114035429, -0.00866038632, -0.00166454946, 0.00985329226, -0.00204817089, -0.00594876055, 0.00307685463, 0.0227019843, 0.00847645849, -0.00275103911, 0.00703656394, 0.0032686654, 0.0249932036, 0.0241103489, 0.0290921722, -0.00142018776, -0.0402539819, -0.00437223399, 0.0093750786, -0.00216378295, 0.038383171, 0.0259811599, 0.00645324914, 0.00193650031, -0.010857014, -0.0110987481, -0.03071074, -0.00770396041, 0.0217350479, -0.00547054783, 0.000102802682, 0.026485648, -0.000386577478, 0.00962206814, -0.0147037394, -0.0257709567, -0.0194858704, 0.000606305897, -0.0112774214, -0.0281462558, 0.0204317868, -0.00691044191, -0.0325184911, 0.038109906, -0.00510531897, 0.0173523035, 0.0265487097, 0.0278519709, -0.011908032, 0.0120341536, 0.00226494344, 0.0240472872, 0.0237740222, 0.00358659821, 0.0175625067, -0.0210623965, -0.0302693117, -0.0202110726, 0.0121077253, 0.0101265563, -0.0198116861, 0.0335064493, -0.008066562, 0.00135318539, -0.0243836138, -0.0065373308, -0.0397284739, 0.0261703432, 0.00783533789, -0.000849353732, 0.0636916757, 0.0152817992, 0.000779723807, -0.0230593309, 0.0203477051, -0.0162066948, -0.00377840898, -0.030458495, 0.00255003199, -0.00931727234, 0.0189813823, 0.020904744, 0.00208232901, -0.0111512989, -0.00663192244, 0.0057753427, -0.0197276045, -0.00281147263, -0.0147037394, 0.0297438037, 0.0145040452, 0.017982915, 0.0179093424, -0.022765046, 0.00229778769, 0.0179513842, 0.0126647642, 0.020126991, -0.00750426715, -0.00440376438, 0.047127638, 0.00736237969, -0.00258287624, 0.00599605637, -0.0131797632, 0.0144725153, -0.00013326577, 0.0143989436, 0.0102158934, 0.0218821913, 0.0202531125, 0.0347676687, -0.040211942, 0.00572804688, 0.0148719018, -0.0106100244, -0.00655835122, 0.0155025125, -0.0220293328, 0.004366979, 0.00387300062, 0.0354193, 0.0124020102, -0.022491781, -0.0131272124, 0.0279780943, -0.0035734605, 0.0228070859, 0.0303954352, 0.0429656059, 0.0335695073, -0.0154604716, 0.0147457793, 0.0287768673, 0.0315515548, -0.00318458397, -0.0427974463, -0.00290343678, 0.0174258742, 0.0155865941, -0.00561243482, 0.025686875, 0.0358817466, -0.00825049, -0.0409476534, 0.00890737586, -0.00850273389, 0.0380678661, 0.015880879, 0.0356715433, -0.0348727703, -0.00307685463, -0.0184558723, -0.0183297507, -0.0228491277, -0.00604335219, -0.0105101783, 0.0314674713, 0.0265276898, 0.00677906489, -0.0402960218, 0.0277048294, -0.0146932285, -0.015092616, 0.0140521079, 0.0114455838, 0.0272003412, 0.029680742, 0.00270374329, -0.0196330119, 0.00816115364, -0.0283985, 0.00603284221, -0.00160937104, 0.00195357925, 0.00212831097, 0.0192231163, -0.032014, -0.0214302521, -0.00422509154, 0.00531026721, 0.046623148, 0.0192966871, -0.00771447085, 0.0380468443, -0.0179618951, -0.0138419047, -0.0437643826, -0.0161226131, -0.0276627876, -0.00879176427, -0.0109936465, 0.023837084, 0.00725202262, -0.0142623112, 0.014819351, -0.0155340433, -0.0250983052, 0.039476227, -0.00295073236, -0.0390768424, 0.00288504385, 0.00236479, -0.0017749063, 0.0170685295, -0.0114876246, -0.0253295284, -0.00553360861, 0.0245307554, -0.0220503528, 0.0319509394, 0.0300170686, 0.0275156461, 0.00243442, 0.00347886886, -0.0138629247, -0.0134845581, -0.000821107649, -0.0231013708, 0.0230593309, 0.0177622, -0.00188920449, 0.0121287452, 0.0138313938, 0.0185084231, -0.0224077, 0.00910706911, -0.0011817381, 0.0116137471, -0.0364282764, 0.00923844613, 0.0285456441, -0.0150715951, 0.0123704793, -0.0111723188, -0.0266958512, 0.0507431403, -0.0303744152, -0.0178778134, -0.00180643681, 8.3876148e-05, -0.00253295293, -0.00137814705, 0.0281882975, -0.0132953748, 0.0336535908, 0.0214828029, 0.00941186398, -0.000557367865, 0.0255187117, 0.0160490423, -0.0213356614, -0.0069156969, 0.00154893752, -0.0292393155, -0.0218821913, -0.0159334298, 0.0147878202, -0.0112248696, 0.0175414868, -0.00519728288, 0.00573330233, -0.00836610142, -0.0131797632, 0.0308368616, -0.00397547474, -0.00726253306, -0.00590146473, 0.0226389226, 0.012444051, -0.00366279692, 0.00155287876, -0.018792199, -0.0065373308, 0.00264725112, 0.00289292657, 0.0166481212, -0.000887453149, -0.00897569209, 0.0195068903, 0.00452463143, -0.00807181653, 0.00919115078, -0.00509480899, 0.0136001706, 0.00923319161, 0.00128618302, 0.00970615, 0.00610641344, -0.0107729323, 0.00599080138, -0.0244256537, -0.0197381135, -0.0264436081, -0.010189618, 0.0236899406, 0.0139470063, 0.00954849645, -0.0573855713, 0.00273264619, 0.000237135886, -0.0192126054, -0.0164484289, -0.0140100671, 0.00599605637, 0.0125701725, -0.0316776782, -0.00376001629, -0.011908032, -0.0229962692, -0.0095274765, -0.0132533349, 0.00218086201, -0.003310706, -0.00691044191, -0.0155235333, 0.00588044478, -0.00181826076, -0.00179855421, -0.0332542025, 0.0108780339, -0.0148719018, 0.00350514427, 0.00993211847, 0.0109410957, 0.0147457793, 0.0287558474, -0.000784322037, 0.00188000815, 0.00429078, -0.0126437442, -0.0165955704, -0.0272003412, -0.033044, 0.0156811848, -0.00462185079, -0.00363914925, 0.036575418, -0.00127567281, -0.0299329869, -0.0155865941, 0.00307948212, 0.0167216938, 0.0273264628, 0.013505579, 0.0133899665, -0.0147457793, 0.0100950263, 0.00594350556, -0.0091543654, 0.0135791497, -0.0107939532, 0.0133269057, -0.00637967791, 0.0100004347, 0.00475060055, -0.000620100531, -0.00973768, 0.0493137538, -0.0276417676, 0.0114771146, 0.00155944761, 0.0343893021, -0.0213882122, -0.00287978887, 0.0465390682, 0.0107939532, -0.00597503642, -0.0364282764, 0.00222421647, 0.0258760583, 0.0275156461, -0.000621414278, 0.00362338382, -0.0109726256, 0.0122548677, -0.0268009547, -0.0201164801, -0.00989533216, -0.0180775058, -0.00471644243, -0.0152082276, -0.0181090366, 0.0170475096, -0.0123284385, 0.00294810487, 0.00384409749, -0.00227151229, 0.00989007764, -0.0215879064, 0.0237530023, -0.00499758963, 0.0130010899, 0.0680639148, 0.00435121357, -0.0141361896, -0.0313413516, 0.043722339, -0.0162907764, -0.0205684192, -0.008208449, 0.017467916, 0.018518934, 0.023311574, 0.0118659912, 0.00475322781, 0.0057438123, -0.0272423811, -0.0205579083, -0.0134109873, 0.013778843, 0.0073308493, -0.000980731, 0.0165325105, -0.00207838765, -0.0143358828, 0.0032712929, -0.0163328163, 0.0150610851, -0.026485648, 0.0101633426, 0.000923581887, -0.0223446377, 0.0151766967, 0.00207050517, -0.00682110572, 0.00208101515, -0.00503963046, -0.0238581039, -0.0252664685, 0.0205579083, 0.00595927099, -0.00291657448, 0.0103735458, 0.00413575489, -0.00174600328, 0.00941186398, -0.0242574904, -0.000900590851, 0.0151977176, 0.00987956766, 0.0185925048, -0.0150821051, -0.00454565184, -0.0249301419, 0.0060643726, -0.00979023054, -0.0279150326, -0.0228070859, 0.00832406059, -0.00697875815, -0.012433541, -0.00266958517, -0.0438905023, 0.0134530282, -0.00125596626, -0.0242995322, -0.00698926859, 0.00392029621, 0.00763038918, 0.0192756671, 0.0221764762, -0.046833355, 0.00532340538, 0.000750820851, -0.0153974108, -0.0120761944, -0.0121392552, 0.0127278259, 0.00562820025, 0.0117188487, -0.0329809375, 0.0105417082, -0.0181195475, 0.00775651122, -0.0372060314, -0.00611166842, -0.0185609739, -0.00674227905, -0.00363914925, -0.00462710578, -0.00744646089, -0.00564922066, -0.0143148629, 0.00417254074, -0.00415414805, -0.026716873, -0.0202846434, -0.0197486244, -0.0175414868, 0.0230383109, -0.0258970782, -0.0121077253, 0.00665294286, 0.00444843294, -0.00470855972, -0.0348517485, -0.00484781945, -0.018539954, -0.0155340433, -0.000472301122, -0.00747799175, -0.0232905541, -0.00245938171, 0.0223446377, 0.0320980847, 0.00159229198, -0.00641646376, -0.0128749683, 0.0017722788, 0.0204002559, -0.00778278662, -0.00891263131, 0.0123599693, 0.0282513592, -0.00966410898, 0.0100634955, -0.0314044133, 0.000138767195, 0.0163853671, 0.001142325, 0.0266538113, -0.00452463143, -0.0110461973, -0.0323503278, 0.00262097572, -0.00917013, -0.0257499367, -0.0242364705, -0.00740442052, -0.014556597, -0.0203687251, -0.00583840394, 0.0041042245, -0.0143884337, 0.00541799655, -0.00587518932, -0.0121182352, -0.0307738017, -0.00223472668, -0.00893365126, 0.0113194613, -0.00133019441, 0.00981125142, 0.0020166405, -0.010331505, 0.0109831356, -0.0387615375, 0.0217350479, -0.023584839, 0.0247619785, 0.0672231, -0.0192651562, 0.00097153458, -0.0126647642, -0.0170475096, -0.00347624137, -0.018518934, -0.0189813823, -0.0186555665, -0.00846594851, -0.0226389226, 0.0187396482, -0.0157547574, 0.0124966018, 0.000394788571, 0.0332542025, 0.0191180129, -0.0123074185, 0.0134530282, -0.0112038497, -0.00513684936, -0.00602758722, 0.0128224175, 0.0113615021, 0.0077354908, -0.0118239503, -0.016154144, 0.0116242571, 0.00714166602, 0.0300801303, -0.0117398687, 0.0141887404, -0.0036023634, 0.00815064274, -0.0115506854, 0.0201164801, 0.012717315, -0.0205473974, -0.0051342221, 0.025686875, 0.0167427137, 0.0293023754, 0.0121497661, 0.0306056384, -0.00245281286, -0.000661484315, 0.0231013708, -0.0349778719, 0.0090282429, -0.0230803508, -0.0349568538, -0.0289240107, -5.3659387e-05, 0.023563819, 0.0107151261, 0.00284825824, 0.0207576, -0.0553255752, 0.0111302789, -0.0180985257, 0.0029638703, -0.010320995, 0.0149875134, 0.00393868936, -0.0038257048, -0.00800875574, -0.00711539062, -0.00799299, 0.016931897, 0.0124966018, 0.0197065845, -0.0135371089, -0.00740967551, -0.00399912288, -0.00153448596, 0.00946967, 0.00305846171, -0.0175099559, 0.053770069, 0.00351828197, 0.0118765011, 0.00225837459, 0.00938033406, -0.00240157568, 0.0164694488, -0.0208732132, -0.0105522191, -0.019843217, -0.0131482324, 0.0062167705, -0.00346835866, 0.00716268644, 0.00684212567, -0.0136106806, 0.00650054496, -0.0151451668, -0.000131952, 0.00163301895, -0.0287348274, 0.000390190369, -0.0201164801, -0.020904744, 0.0460345782, -0.0222605579, -0.00349726179, 0.00792467408, 0.00933829322, -0.0161751639, -0.014031088, -0.000536347507, 0.0085290093, 0.0313623697, 0.0132533349, 0.00555988401, -0.0123179285, 0.0432178527, 0.00418567844, 0.00206919131, 0.00352353719, 0.0250352435, 0.00423822924, 0.00346573116, -0.0176150575, 0.0410317332, 0.016952917, 0.00817166362, 0.00729406346, 0.0148613919, 0.00407006638, 0.0247619785, -0.0192441363, 0.00796145946, -0.00984278135, -0.000787606463, 0.000714692113, -0.00383358751, 0.0014963866, 0.000887453149, 0.00270637078, -0.00117451244, 0.0225548428, 0.0183928106, 0.0252454467, -0.00564922066, -0.000946572924, -0.0016343327, 0.0212200489, -0.0172472019, 0.0210623965, -0.00790365413, -0.00921742618, -0.00407269411, 0.0253715701, 0.0292813554, 0.0327286944, -0.00167637342, -0.00187343918, -0.0213987231, -0.0167742446, -0.0138208838, -0.0149980243, 0.0105469637, -0.0109726256, 0.00276154932, -0.0197591353, -0.0125911934, -0.0127278259, -0.0152923092, -0.0145881269, 0.0128539475, -0.00574906729, 0.00972191431, 0.00466651889, -0.0222185161, 0.0183612816, 0.0108044632, -0.0141782304, 0.00875497796, -0.0170475096, 0.00100634957, 0.00872870255, 0.0268429946, -0.00335011934, 0.0043275659, -0.0155760841, -0.00848171394, -0.067979835, -0.00883380417, -0.0289450306, 0.010189618, -0.00123428903, -0.00639018835, -0.0145460861, -0.0130746616, 0.0169949587, 0.0125386426, 0.0328548178, 0.0227230042, -0.0212095398, 0.0377105176, 0.0049240184, 0.0011633453, 0.0162802655, -0.032266248, 0.0228281058, -0.00657937163, -0.00448784605, -0.0154184308, -0.00228727749, 0.0345574655, -0.00113641296, 0.00425662193, -0.0151977176, -0.00152134825, -0.0138839455, -0.011119768, -0.00289555406, 0.0269691162, 0.0073834, -0.0275787078, -0.00521567604, -0.00361024612, 0.00749901216, 0.00460871309, 0.0169739369, -0.00277731451, -0.022239536, 0.0114560938, -0.0454880521, 0.0126122134, 0.00284825824, 0.00953798648, 0.0105995145, -0.00146748358, -0.0116978278, 0.0107046161, -0.0237319823, -0.00110816688, 0.0257289149, -0.0269270763, 0.00721523724, 0.0172261819, 0.0276207477, 0.00955900643, -0.00368644483, 0.00857105, 0.000269487529, 0.0158073083, -0.017205162, -0.00615896424, -0.00203503319, -0.0121602761, -0.00519728288, -0.00120998418, 0.0196855627, -0.0198116861, 0.0185084231, 0.0178883225, 0.0214828029, -0.0164694488, -0.00461922307, 0.0074149305, 0.0169003662, 0.0181510765, 0.000635208911, -0.00517889, -0.00955900643, 0.0394552089, -0.00570177147, -0.00952222105, -0.00417779572, 0.0109726256, 0.00404116325, 0.00695248274, -0.0161856748, 0.0170475096, 0.00353930239, 0.000226461489, -0.0130116008, -0.00652156537, 0.004175168, 0.0118765011, -0.0190864839, 0.000528464909, -0.000448653213, 0.0128854783, -0.00570177147, -0.00758309336, 0.0120131336, -0.016669143, 0.021461783, -0.00645850459, 0.0496080406, -0.0219032113, 0.022239536, 0.00258813123, 0.0275997277, 0.0170369986, 0.0319509394, -0.0255187117, 0.00553360861, 0.0182772, 0.00709437, 0.00816640817, -0.00533391535, -0.001886577, 0.0118554812, 0.00265776133, 0.0038546077, 0.00412524492, 0.0120131336, 0.00456667226, -0.0201480109, -0.00749901216, 0.00790890865, -0.000884168723, 0.0110882381, 0.0206840299, 0.0111723188, 0.0065951366, 0.00661615701, -0.0123074185, 0.00464549847, 0.0217770897, 0.000884168723, 0.00602233177, 0.00212699734, 0.0205368884, 0.00272213621, -0.00221502013, 0.0310680866, 0.029890947, 0.0210203566, 0.00822421443, 0.0100056892, 0.020126991, -0.0250983052, 0.0110356873, 0.0170895495, -0.00186555658, 0.0224077, -0.0114245638, -0.00210072193, 0.00508429855, -0.0172787327, 0.00675278949, 0.00444317795, -0.0195804611, 0.0144725153, -0.0171210803, 0.0305846184, 0.026737893, 0.0291762538, 0.015618124, 0.000109453649, -0.0076251342, 0.0152292475, -0.0124755809, 0.00951171108, 0.00763564417, -0.0105417082, -0.00462185079, 0.0189918913, 0.00492664613, 0.0111618089, -0.00568600651, 0.00842390768, 0.00321874209, -0.00796145946, 0.0296176821, 0.024362592, -0.0117083387, -0.0215248447, -0.0109410957, 0.0147983311, -0.00501335505, -0.0148929218, -0.00441427482, 0.00222421647, 0.00613268884, 0.0060643726, 0.00984278135, -0.0158178173, 0.00179855421, 0.00660039159, 0.0113089513, -0.00917013, 0.00556513947, 4.08090491e-05, 0.0172997527, 0.013757823, -0.0191915855, 0.0111933397, 0.00349726179, 0.00501861, -0.000463761593, -0.00338953244, -0.0114350738, -0.00212568347, 0.00764089962, 0.000230074365, -0.0125071118, 0.00310575753, -0.00916487537, 0.00583840394, 0.0040464187, -0.0196225028, 0.0316566564, 0.0027142535, 0.034704607, 0.00526822684, -0.0242154505, -0.0119395619, 0.0202320926, -0.00724151265, -0.0115191555, -0.010846504, 0.00221370626, -0.00158966437, 0.00196934468, 0.00284300325, 2.51258934e-05, 0.015628634, -0.00208364287, -0.00113312854, -0.0058278935, -0.0204422958, 0.0030348138, -0.00714166602, 0.00895467121, 0.00975344516, 0.0122023169, 0.0177937318, 0.0224707611, 0.00271688099, 0.0017617686, -0.0120761944, -0.0196960736, -0.0146511877, 0.00331858872, -0.00578585314, -0.00617472967, 0.0260862615, -0.00963257812, -0.00417254074, -0.0254556518, 0.00667921826, -0.0140626179, 0.00769345043, 0.0110356873, -0.000975475879, -0.00807707198, 0.0175940376, 0.0130536407, 0.00372323045, 0.00350777199, 0.00468491204, 0.00668447325, 0.0275156461, -0.0250352435, 0.014829861, 0.00285088574, -0.018792199, 0.0164799597, 0.0225968827, 0.0162172038, 0.0024357338, -0.014556597, -0.00313466066, 0.0270321779, -0.0155550633, 0.0219872929, 0.0152082276, 0.0225338209, -0.00527610956, -0.0137473131, 0.0096693635, 0.00690518692, 0.0144514944, -0.00367330713, 0.0173628144, 0.00172366924, 0.0151031259, 0.0208942331, 0.0182351582, 0.0160805732, -0.0196540337, 0.00386511791, 0.016133124, 0.00382307731, -0.00179592671, -0.00404379098, -0.0163643472, 0.00209283922, 0.00668447325, -0.00245806784, -0.00321874209, -0.00760411378, 0.00880227424, -0.0085552847, -0.00565973064, 0.00350777199, -0.0180669967, -0.0167742446, 0.00831355061, 0.00184979138, 0.00319509418, -0.00354981259, 0.0035734605, 0.016679652, 0.0250772852, -0.0263805464, -0.0130956816, 0.00710488, 0.00346310367, 0.00816640817, 0.0309419632, 0.0193807688, 0.0148508819, -0.00755156297, -0.00426187739, 0.0129485391, -0.00147405243, -0.00556513947, 0.0126332343, -0.003310706, 0.000165863748, 0.00433807587, -0.0133269057, -0.0157652665, -0.0116873179, -0.0232064724, -0.00710488, -0.00536019076, 0.0062483009, -0.000761331, -0.00599605637, -0.00774600124, -0.00321348687, 0.0287138056, 0.0111302789, -1.31685138e-05, -0.0106888507, 0.0118449703, 0.0162592456, 0.0229542293, 0.00848696847, 0.00531026721, 0.0210623965, 0.00999517925, -0.0110146664, -0.00917013, 0.0212200489, -0.00387300062, -0.00793518405, -0.00198248238, 0.00542850699, -0.000945259118, -0.0104786474, -0.0356295034, -0.0111933397, 0.0120026236, 0.00723625766, 0.0155235333, 0.00139522611, 0.0136527214, 0.0336535908, -0.016669143, -0.0015016417, 0.00332647143, 0.0188342389, 0.0136211906, 0.0125701725, -0.00127435906, 0.0130851716, 0.00972191431, 0.0012881537, -0.00522881374, -0.00633763755, -0.0159544498, 0.00497394195, 0.0132218041, 0.00379154668, -0.0100634955, 0.00392292393, 0.0153869009, 0.017720161, 0.000530764, -0.0262544248, -0.0105627291, 0.00688942149, -0.00518151792, 0.0099478839, 0.00180906442, -0.00414363761, 0.00554937404, -0.00485044718, -0.00469279429, 0.0202636234, 0.00263542705, -0.0143674137, 0.00632712711, 0.0183717906, 0.01005824, 0.0171210803, 0.0138103738, -0.00292182947, 0.00523669599, 0.00167768716, 0.0286927857, -0.0127488459, 0.0253295284, 0.00943813939, -0.00631661713, 0.0138313938, -0.0173102636, 5.41931058e-06, 0.0074412059, 0.0113089513, 0.0210729074, -0.0121918069, -0.00737288967, -0.000115119292, 0.0130641516, 0.00422246382, 0.0108885448, -0.0282513592, 0.00279570743, 0.0172892436, -0.00455878954, 0.0174468961, -0.00533128763, -0.0155445533, 0.00416728575, 0.0224287193, -0.0106993616, 0.0229962692, -0.0192966871, -0.016164653, -0.0073308493, -0.0340739973, 0.000431245746, -0.00434333086, -0.00573330233, -0.000617144513, 0.022491781, 0.0118659912, -0.0163012855, 0.0151136359, 0.00311101275, -0.00742018549, 0.0192336254, 0.00194832426, 0.00424611196, 0.0122023169, 0.00325290021, 0.014556597, 0.0266748313, -0.00645850459, -0.022765046, -0.00520516559, 0.00178935786, 0.00153842731, -0.0141572095, -0.0312993117, 0.014304352, -0.010583749, 0.00857105, -0.0213882122, -0.0103998212, 0.0057175369, -0.000483796641, 0.00565447565, -0.0130641516, 0.0138629247, -0.0214092322, -0.0200954601, -0.0207155608, 0.0100056892, -0.000741624448, 0.00255134562, 0.0215248447, -0.0194017887, 0.0145460861, 0.00685263611, -0.0186030157, -0.00535493577, 0.0139259854, -0.0286507457, 0.0122023169, -0.00996890385, 0.00375213358, 0.0142623112, 0.00968512893, -0.00196277583, 0.00655835122, 0.012454561, 0.00874972343, 0.00934354868, 0.0178988334, 0.019853726, 0.00525246141, -0.00256185583, 0.0218611695, 0.0160490423, 0.0137368031, 0.00543376198, -0.0194963794, 0.00923319161, 0.0112879314, 0.00682636071, -0.00892314129, -0.00503963046, 0.0172577128, -0.00756207295, 0.016154144, -0.00270374329, -0.0110461973, 0.0272003412, -0.0112774214, -0.0143674137, -0.00593825057, 0.00419356115, -0.0217770897, 0.00252769771, -0.0155130224, 0.000944602245, -0.00433544861, 0.0181510765, 0.00582263852, 0.00627983129, 0.0151346559, 0.0154499616, 0.0101160463, 0.0161226131, -0.00801401, 0.00559141487, -0.0046744016, 0.013778843, -0.0162382256, -0.00114955066, 0.00253426656, 0.04077949, 0.0152817992, 0.0212305598, 0.00483993674, 0.00768819498, -0.0256238133, 0.00392029621, -0.000515984, 0.0280411541, 0.00703130895, -0.0116242571, 0.00324239, -0.0210413765, -0.00156733033, -0.00541799655, -0.0254976917, 0.0252244268, 0.0141572095, -0.0101213017, -0.0258760583, -0.00475060055, 0.0261283033, -0.0196119919, -0.00401488785, 0.00658462662, 0.0315095149, 0.0187501572, 0.0393080674, 0.0197696444, 0.0118134404, 0.00732559385, -0.0103052296, 0.00649529, 0.02066301, 0.0035629503, 0.00805079658, 0.0119816028, 0.00266170269, -0.00229121884, -0.0151661867, 0.00266958517, -0.00991109759, -0.000607291237, -0.00245675421, 0.00732033886, 0.00278519723, -0.000987299834, -0.0206840299, -0.00250536366, 0.0167532247, 0.00148193515, 0.0109831356, 0.00440113712, -0.0176571, 0.00326603791, -0.00624304591, -0.0279360525, 0.0305425767, 0.00699977856, -0.016133124, 0.0109621156, 0.00936456863, 0.0188657697, 0.00503174774, 0.000791547762, 0.0252874885, 0.00951171108, -0.00167637342, -0.00474009, 0.0076514096, -0.0101213017, -0.0267799329, -0.0251403451, -0.00511057395, 0.0140836388, 0.0112353805, 0.00482417177, 0.00666870782, 0.0151031259, -0.0213041306, 0.00217692065, 0.0228281058, 0.0282513592, -0.0012855262, 0.0189813823, -0.0123599693, 0.0362180732, 0.00561243482, 0.0133058857, -0.00124808366, 0.0128959883, 0.00046310472, -0.0151346559, 0.00180906442, 0.00670023868, 0.0016422153, -0.00713115558, 0.00596452598, -0.0303323735, -0.0319509394, 0.00225706073, 0.0228491277, -0.00354192988, 0.0223025978, 0.0154184308, 0.00695773773, 0.0251613669, 0.00244755764, -0.0196540337, -0.0032555277, 0.0185294431, 0.0153869009, -0.0103735458, -0.00572804688, -0.0123284385, -0.00876548886, 0.0147247594, -0.00515524251, 0.0111302789, 0.0125386426, -0.0192546453, 0.00268140924, -0.00103853701, -0.00017325372, -0.00995313842, 0.00507116085, -0.00770396041, -0.00695773773, 0.00399124, -0.00525246141, -0.00830829609, -0.0180985257, -0.00426187739, -0.00103985076, -0.0199903585, 0.0152187375, 0.0261913631, 0.00718896184, -0.00867089722, -0.0225968827, 0.00982701685, -0.0263385065, 0.00650054496, 0.00711539062, -0.00553360861, 0.00286927866, 0.00693146233, 0.00508955354, -0.0185925048, -0.0149770034, -0.00610115845, 0.0169844478, -0.00158178178, 0.00834508147, 0.00688942149, 0.00368118985, 0.0165009797, 0.00541799655, 0.00562294526, 0.00653207581, -0.00339216, -0.00254346314, 0.00175651349, 0.0197696444, -0.014567107, 0.00154893752, -0.000770527404, 0.00496605923, 0.0395182706, 0.0148508819, 0.00737288967, -0.0207786225, 0.0115506854, -0.0122969085, -0.0013144291, -0.0170369986, -0.0200744402, -0.00646375958, 0.00395708205, -0.00554937404, 0.00752528757, 0.0256238133, -0.00816115364, -0.024783, 0.0103577804, 0.00127041782, -0.0315725729, -0.00838186685, -0.017720161, -0.000983358477, -0.0236058589, -0.00204160204, -0.0184663832, -0.010452372, 0.00516838, 0.0279150326, 0.00218874449, -0.00319772167, 0.00929625239, -0.0115296654, 4.89380145e-05, -0.00823998, -0.0204422958, 0.00429340778, 0.0311521683, -0.0108990548, -0.0195804611, 0.0278519709, 0.00975344516, -0.022491781, -0.0109200748, -0.0242785104, 0.0133374156, 0.0151031259, 0.0122023169, 0.00156733033, 0.0118554812, 0.00554411905, -0.0454460084, -0.00953273103, 0.0154814925, -0.00835559145, 0.0101948725, 0.0306266584, -0.0054810578, 0.00861309096, 0.0159649607, 0.00858156, 0.0135265989, 3.02013655e-06, -0.000391175679, 0.00125925068, 0.0040201433, -0.0123179285, -1.20394907e-05, -0.00327917561, 0.00800875574, 0.00699977856, 0.0073834, -0.0171210803, -0.0270111579, 0.00253689429, 0.00283774803, 0.00689467695, 0.00841865223, 0.018802708, 0.00371797546, 0.00542850699, 0.0129905799, -0.00912283454, -0.0161961839, 0.0135371089, -0.00668447325, 0.0192126054, 0.0100687509, 0.00666345283, -0.0226599444, 0.0192966871, 0.0321821645, 0.00519991061, -0.0235427991, 0.0240262672, 0.0174153652, -0.0095274765, -0.0327497162, 0.000470330473, -0.0204843376, 0.00369432755, -0.0045693, 0.0133584365, 0.011382523, 0.00147536618, -0.00156733033, 0.00949594565, -0.0164799597, -0.00616947468, 0.0146511877, 0.0048530749, -0.000936719589, 0.0129170092, 0.0228491277, 0.024888102, 0.00719421683, -0.0030321863, 0.0121497661, 0.0158493482, 0.00337113952, -0.000627983129, -0.0230593309, 0.00476111053, 0.00404116325, -0.0150715951, -8.39993154e-05, -0.012696295, 0.0125491526, 0.00536019076, 0.00256842468, -0.00832931604, 0.00212305598, 0.0244887155, -0.00161462615, -0.000527479569, 0.00564396568, -0.00416991301, -0.0225968827, -0.0143148629, -0.00821895897, -0.0115506854, 0.00512896664, -0.00599605637, 0.0143253729, -0.00338953244, -0.0203687251, -0.00713115558, -0.00964834355, -0.014283332, -0.00213750754, 0.00753054256, 0.0038125671, 0.0111302789, 0.0109095648, -0.000788263336, -0.00721523724, -0.0165114887, 0.0179303642, 0.0160805732, -0.00142281537, -0.00809283741, -0.00460083038, 0.0154184308, -0.00736237969, -0.00505276816, 0.00819268357, 0.00756207295, -0.035734605, 0.00996890385, 0.00143989443, 0.0159439407, 0.00658462662, 0.00387825561, 0.0104681375, -0.00945916, -0.00282986532, 0.0156076141, 0.0210518874, -0.0257078949, 0.00639544334, 0.0145986369, 0.0130641516, 0.0165114887, 0.0199167877, -0.00577008771, 0.00331596122, 0.0157127157, -0.0182982199, -0.000744908873, 0.00885482505, 0.00257762126, 0.023584839, 0.0197170936, -0.00295336, 0.0149559835, -0.00174074818, 0.00280884514, 0.0155025125, -0.0170895495, 0.00970089436, -0.0308158416, -0.0159964915, -0.0258129966, 0.0088600805, 0.0168583263, 0.016952917, 0.000425333768, -0.00569651648, 0.000131377223, 0.0170054678, -0.00872344803, -0.00583314896, 0.00559667, -0.0221554544, -0.0139890471, 0.0105469637, 0.0244466737, -0.00654784078, -0.00790890865, -0.00502123777, 0.00860783551, -0.00248959847, 0.00245806784, 0.00122903392, -0.0067475345, 0.0235007573, 0.0100687509, -0.00689467695, 0.0143989436, -0.00728355348, -0.0142097604, 0.0192651562, 0.0143569028, 0.00212305598, 0.0268219747, -0.00102605612, 0.0095012011, 0.00662666745, -0.0112564005, -0.00957477186, -0.00211780076, -0.00972191431, 0.0289240107, -0.00306634442, 0.0117188487, -0.0174258742, 0.0216719862, -0.000740967575, 0.0165009797, -0.0224287193, -0.0176465884, -0.0284195207, 0.00508429855, 0.000776439381, -0.0272844229, -0.0496080406, -0.0123809893, -0.011645277, -0.00805079658, -0.00394131662, 0.00843441766, 0.0223446377, 0.00106284174, 0.00180380931, 0.0268219747, 0.00863411091, 0.0166060813, 0.00646375958, 0.00774074625, -0.0124860918, 0.000479526876, 0.0110146664, 0.00409896951, -0.0044641979, 0.00129209505, 0.028335439, -0.0113509921, -0.000777096313, -0.00423034653, 0.00202320935, -0.0156391449, 0.0121182352, -0.0176465884, 0.00254477677, -0.00593299558, -0.022765046, -0.00563345524, -0.0286717657, -0.00758309336, -0.0184348524, -0.00821370445, 0.0195594411, 0.0128119066, -0.0116873179, -0.000277698622, 0.003045324, -0.00948018, 0.024362592, -0.00542325201, 0.0090545183, -0.00322662457, 0.0412629582, -0.0182456691, 0.0249932036, -0.0370168462, -0.00134333211, -0.00473220786, -0.0194858704, 0.0069156969, 0.0288819689, -0.0189183205, 0.0392029658, -0.0194438286, 0.0271162596, -0.00929625239, 0.00413575489, 0.0141887404, -0.00283774803, -0.0424821377, 0.00260915165, 0.0013715782, -0.00408583181, 0.0122548677, 0.0227860659, -0.0179093424, -0.0168688353, 1.5216151e-06, -0.0142623112, 0.0122443577, 0.0137893539, -0.00430129049, -0.0254556518, -0.0122443577, 0.0195068903, 0.00658462662, -0.000719290285, 0.0220083129, 0.0240472872, 0.000945259118, -0.00971140433, -0.00642171875, -0.0426713228, 0.0073045739, -0.00650580041, -0.016133124, 0.0105154328, 0.00821895897, -0.00850798935, -0.000823078328, -0.00681585027, 0.00520779332, 0.0278940126, -0.0114245638, 0.0256027933, 0.0214828029, -0.0268640146, 0.0255397316, 0.00507904356, 0.0298278853, -0.0135371089, -0.00912283454, 0.0164799597, 0.007677685, -0.00633763755, 0.00544427242, -0.0171946511, -0.0164589379, 0.00144252193, 0.00979023054, 0.00930150785, -0.0220713746, 0.0143463928, 0.00601707678, 0.00027507107, -0.00122443575, -0.0192336254, -0.0244466737, -0.0108149732, 0.0199693386, 0.00167111831, 0.00660564704, 0.00594350556, 0.00418305071, 0.00276417681, 0.00936456863, -0.00269323308, -0.0020586811, -0.00688416651, 0.00814013276, -0.00279570743, 0.0112038497, -0.0077092154, -0.00298226299, 0.0180775058, 0.020126991, -0.0272003412, -0.00696299272, -0.0106100244, 0.0189183205, 0.0178462826, 0.00557564944, -0.00871819258, 0.00691044191, 0.00227282592, -0.0313203298, 0.00326603791, 0.0200744402, -0.0218191296, -0.0151872076, 0.0221344344, -0.00351828197, -0.00851324387, 0.0100004347, 0.0177832209, -0.0113404822, -0.00763564417, 0.0027273912, -0.0236479, -0.0203161743, -0.0204843376, -0.0071784514, 0.0101528317, -0.0297648236, -0.0158703681, -0.00780380704, -0.00770396041, -0.0187291373, -0.0160910822, -0.0272003412, 0.000795489119, -0.00585942436, 0.00161199854, -0.00473483512, -0.0259601399, 0.00377840898, 0.00958002731, 0.00766191958, 0.0135791497, 0.0169003662, -0.0100004347, -0.0176045485, 0.0300170686, -0.012696295, 0.00323450728, -0.0171210803, 0.00602758722, -0.00136106811, -0.0188552588, -0.0106520653, -0.00934354868, 0.0105890045, -0.00224392302, -0.00649003498, -0.00640595332, 0.023311574, 0.0134425173, -0.0136947623, 0.00296649779, -0.0129064983, 0.00925946701, -0.010452372, 0.00662666745, -0.016416898, 0.0202110726, 0.00416465802, -0.0206314791, 0.00640595332, 0.0302062519, 0.017488936, 0.0186976064, 0.0128644574, -0.00592248514, 0.0184979141, 0.00998466928, -0.0180669967, -0.00106481242, 0.00975344516, 0.00713115558, 0.0121918069, 0.0118344603, -0.0142623112, 0.000408254738, 0.00644273916, -0.00883906, 0.000940660946, -0.00428815279, 0.00124611298, -0.0045693, -0.000475585548, -0.00939609949, 0.00727304304, -0.017741181, 0.0107834423, 0.00939084403, 0.0033369814, -0.0396023504, -0.0123599693, 0.0153343501, -0.00652156537, -0.0071784514, -0.0112669105, -0.00910181459, 0.00989007764, -0.0208837241, -0.00225706073, -0.0177832209, -0.0087076826, -0.0122233368, -0.012170786, 0.00313203293, -0.0125071118, 0.0174994469, 0.0125911934, 0.0157967974, 0.0065110554, -0.00191153865, -0.0256238133, -0.00292971218, -0.0176360793, 0.0153133292, -0.0114666047, 0.0278519709, -0.0106941061, -0.0125911934, -0.0221134145, -0.0142307812, 0.0212305598, -0.00258813123, -0.00895992666, -0.00518151792, 0.000315633777, -0.0021572141, -0.00400175, 0.0271372795, -0.00357871572, 0.0306056384, 0.00542325201, -0.00167768716, 0.0207365807, -0.00963257812, -0.000791547762, -0.00743595092, 0.0231223907, 0.00732033886, 0.00114560942, -0.0206945408, 0.00654784078, -0.0052183033, 0.00645324914, -0.0227019843, -0.00261834799, 0.009795486, -0.012717315, -0.0281462558, -0.000406940962, -0.000176045476, -0.00866038632, -0.00307159941, -0.00544427242, -0.000415480463, -0.0032292523, 0.0123809893, -0.0264646281, 0.00239106547, -0.00165929436, 0.00284037553, 0.0125596626, 0.0240262672, 0.0187186264, -0.0152817992, 0.0139890471, -0.00799299, 0.0126647642, 0.00249222596, -0.00373899587, 0.00373636838, -0.00315568084, 0.0186765864, 0.020105971, -0.0151136359, -0.00863411091, -0.001788044, -0.00175914099, -0.0209572949, -0.00106875377, -0.00839763228, 0.0203161743, -0.0115086446, -0.0151136359, -0.02541361, 0.0258970782, 0.00629034173, -0.00241996837, -0.00557564944, 0.00586993434, 0.00543376198, 0.0116978278, -0.0196645427, -0.000901247782, -0.00650580041, -0.019569952, -0.0174048543, 0.000955112453, 0.0108885448, -0.0248460602, 0.000721917837, 0.000428289757, 0.0109516056, -0.0175414868, -0.00514736, -0.00869191717, 0.00316356355, 0.0113615021, 0.000105019666, 0.0114771146, 0.0129064983, 0.00155287876, -0.00783533789, 0.0221134145, 0.0102053825, 0.0037968019, 0.0171526112, -0.0197170936, 0.0107834423, 7.41870754e-05, 0.0283564609, 0.00590146473, -0.0286927857, 0.0025947, -0.0236689206, -0.00864987634, -0.00873395801, -0.0184033215, -0.00694722775, -0.000336982572, 0.0110882381, 0.00306108943, 0.0107308915, -0.0196960736, -0.00424085697, 0.0101213017, 0.0104576275, 0.0241734087, -0.0020455434, 7.2011142e-05, 0.0146406777, 0.0052183033, 0.0091806408, -0.0101160463, 0.00520779332, -0.0159334298, 0.00650054496, 0.0254976917, -0.00449835602, 0.00367330713, 0.0115296654, -0.0197486244, 5.05391763e-05, 0.0186976064, -0.0305846184, 0.0215879064, -0.0331911407, 0.007677685, -0.00506065087, 0.00844492763, -0.0103157395, -0.00173943443, -0.01534486, -0.0105311982, 0.0291972738, -0.00382307731, 0.0275156461, -0.000333533942, -0.0153974108, -0.0188762788, -0.00714692101, 0.00842390768, 0.00258550374, -0.00169082487, -0.0168688353, -0.0214933138, -0.00747273676, -0.0123179285, 0.00186949794, 0.00157521293, 0.0171000604, 0.0115401754, 0.0185504649, -0.0231013708, 0.000689730456, -0.0147668, -0.00458243769, 0.000987299834, -0.00518151792, 0.00303744152, 0.0176255684, -0.0105417082, 0.01298007, -0.0190654621, -0.00494766608, 0.0132112941, 0.0352511369, -0.0058016181, 0.0125176217, 0.00203634705, 0.000306437374, 0.0257078949, 0.018823728, 0.00774600124, -0.0231434125, 0.019054953, -0.0140731279, 5.10318423e-05, -0.013778843, 0.0166586321, 0.00383621501, -0.0176255684, 0.00754630798, -0.00384409749, -0.0274315644, 0.00160411594, -0.0265276898, -0.00811385736, 0.00892839581, 0.0303323735, -0.00643748417, 0.0161856748, 0.00750426715, 0.0118239503, -0.0338427722, -0.00573855732, 0.00585416937, 0.0231013708, -0.00497919694, 0.0268850345, -0.0272003412, 0.0168583263, 0.00186818419, -0.00890737586, 0.0206314791, -0.00430654548, 0.00692620734, 0.00389664853, 0.0367435813, -0.0142097604, -0.0332121626, 0.0147457793, 0.023563819, -0.00490825297, 0.00878125336, -0.00926472154, 0.0503647737, 0.00795094948, 0.0224707611, 0.00883380417, 0.0123074185, -4.6187306e-05, -0.0254976917, -0.0187396482, -0.00751477713, 0.0180144459, 0.0188132189, 0.0109305847, 0.00284037553, 0.0192756671, -0.0185925048, -0.0058016181, -0.00348675158, 0.00469804974, 0.00326078269, 0.010473392, 0.0204633158, -0.0104996674, -0.0386564359, 0.0185609739, 0.0250562634, 0.0169424061, 0.0115506854, -0.00862885639, -0.00313203293, -0.0110987481, -0.0183823016, -0.00594876055, 0.00440902, -0.0106573207, -0.00614845427, 0.0253505502, 0.0248040203, 0.0432178527, 0.00760936877, 0.0239001457, 0.0338848121, 0.00469279429, -0.0114560938, 0.0248040203, 0.0343052223, -0.00344208325, 0.00217692065, 0.00279833493, 0.0248460602, 0.00819268357, 0.00624304591, -0.0091386, 0.00151346566, 0.0122969085, 0.0269691162, -0.0191075038, 0.00510006398, 0.00070746633, 0.0196225028, 0.0100529855, 0.0126227234, 0.00860783551, -0.00228727749, -0.00263017206, 0.00176045485, -0.0169634279, 0.00363126653, 0.0184348524, -0.0218821913, 0.00475322781, -0.00402539829, -0.00482942676, 0.00615896424, -0.00118042435, -0.0230172891, -0.00565447565, -0.0206840299, -0.000598751707, 0.0152712883, 0.00103328191, -0.00372848567, 0.0253085084, -0.000708780135, 0.00189314585, 0.0101475772, 0.0251193251, 0.0273474827, -0.0205789283, -0.0130536407, 0.00155156502, -0.0155865941, 0.00259207259, -0.000386249041, -0.00534705305, -0.00596978096, -0.00694722775, -0.00876023341, -0.0104786474, 0.0232485142, -0.0125071118, 0.0281042159, 0.0172366928, 0.00697350316, -0.00612743385, 0.0155340433, 0.00324764499, -0.00455616228, -0.00176571, -0.00654784078, -0.0144935353, 0.00430129049, -0.00388876582, -0.0212620907, 0.00241865474, -0.0198957678, -0.00553360861, -0.0167637337, 0.00424873969, -0.00710488, 0.0026984883, 0.00656360621, -0.0172261819]
|
22 Aug, 2023
|
Print with your own font using Python !!
22 Aug, 2023
Programming’s core function is printing text, but have you ever wished to give it a unique look by utilizing your own custom fonts? Python enables you to use imagination and overcome the standard fonts in your text outputs. In this article, we will do some cool Python tricks. For the user input, the given code will print in the designed font.
Example:
Input: ROOT
Output:
..######..
..#....#..
..#.##...
..#...#...
..#....#..
..######..
..#....#..
..#....#..
..#....#..
..######..
..######..
..#....#..
..#....#..
..#....#..
..######..
..######..
....##....
....##....
....##....
....##....
Explanation: In this, we are printing our own font using Python.
Print with your own font using Python
Here we are printing our own font using Python. Below is Python3 code implementation :
Python3
# Python3 code to print input in your own font
name = "GEEK"
# To take input from User
# name = input("Enter your name: \n\n")
length = len(name)
l = ""
for x in range(0, length):
c = name[x]
c = c.upper()
if (c == "A"):
print("..######..\n..#....#..\n..######..", end = " ")
print("\n..#....#..\n..#....#..\n\n")
elif (c == "B"):
print("..######..\n..#....#..\n..#####...", end = " ")
print("\n..#....#..\n..######..\n\n")
elif (c == "C"):
print("..######..\n..#.......\n..#.......", end = " ")
print("\n..#.......\n..######..\n\n")
elif (c == "D"):
print("..#####...\n..#....#..\n..#....#..", end = " ")
print("\n..#....#..\n..#####...\n\n")
elif (c == "E"):
print("..######..\n..#.......\n..#####...", end = " ")
print("\n..#.......\n..######..\n\n")
elif (c == "F"):
print("..######..\n..#.......\n..#####...", end = " ")
print("\n..#.......\n..#.......\n\n")
elif (c == "G"):
print("..######..\n..#.......\n..#.####..", end = " ")
print("\n..#....#..\n..#####...\n\n")
elif (c == "H"):
print("..#....#..\n..#....#..\n..######..", end = " ")
print("\n..#....#..\n..#....#..\n\n")
elif (c == "I"):
print("..######..\n....##....\n....##....", end = " ")
print("\n....##....\n..######..\n\n")
elif (c == "J"):
print("..######..\n....##....\n....##....", end = " ")
print("\n..#.##....\n..####....\n\n")
elif (c == "K"):
print("..#...#...\n..#..#....\n..##......", end = " ")
print("\n..#..#....\n..#...#...\n\n")
elif (c == "L"):
print("..#.......\n..#.......\n..#.......", end = " ")
print("\n..#.......\n..######..\n\n")
elif (c == "M"):
print("..#....#..\n..##..##..\n..#.##.#..", end = " ")
print("\n..#....#..\n..#....#..\n\n")
elif (c == "N"):
print("..#....#..\n..##...#..\n..#.#..#..", end = " ")
print("\n..#..#.#..\n..#...##..\n\n")
elif (c == "O"):
print("..######..\n..#....#..\n..#....#..", end = " ")
print("\n..#....#..\n..######..\n\n")
elif (c == "P"):
print("..######..\n..#....#..\n..######..", end = " ")
print("\n..#.......\n..#.......\n\n")
elif (c == "Q"):
print("..######..\n..#....#..\n..#.#..#..", end = " ")
print("\n..#..#.#..\n..######..\n\n")
elif (c == "R"):
print("..######..\n..#....#..\n..#.##...", end = " ")
print("\n..#...#...\n..#....#..\n\n")
elif (c == "S"):
print("..######..\n..#.......\n..######..", end = " ")
print("\n.......#..\n..######..\n\n")
elif (c == "T"):
print("..######..\n....##....\n....##....", end = " ")
print("\n....##....\n....##....\n\n")
elif (c == "U"):
print("..#....#..\n..#....#..\n..#....#..", end = " ")
print("\n..#....#..\n..######..\n\n")
elif (c == "V"):
print("..#....#..\n..#....#..\n..#....#..", end = " ")
print("\n...#..#...\n....##....\n\n")
elif (c == "W"):
print("..#....#..\n..#....#..\n..#.##.#..", end = " ")
print("\n..##..##..\n..#....#..\n\n")
elif (c == "X"):
print("..#....#..\n...#..#...\n....##....", end = " ")
print("\n...#..#...\n..#....#..\n\n")
elif (c == "Y"):
print("..#....#..\n...#..#...\n....##....", end = " ")
print("\n....##....\n....##....\n\n")
elif (c == "Z"):
print("..######..\n......#...\n.....#....", end = " ")
print("\n....#.....\n..######..\n\n")
elif (c == " "):
print("..........\n..........\n..........", end = " ")
print("\n..........\n\n")
elif (c == "."):
print("----..----\n\n")
Output:
..######..
..#.......
..#.####..
..#....#..
..#####...
..######..
..#.......
..#####...
..#.......
..######..
..######..
..#.......
..#####...
..#.......
..######..
..#...#...
..#..#....
..##......
..#..#....
..#...#...
Time complexity of this code is O(n^2) where n is the length of the input string name.
The auxiliary space complexity of this code is O(1).
Print with your own font using Python using Dictionary Mapping
Here we will print text using a custom font created using ASCII art representations. This can be done by using a dictionary mapping to associate each uppercase character with its corresponding ASCII art representation.
Python3
ascii_art = {
"A": "..######..\n..#....#..\n..######..",
"B": "..######..\n..#....#..\n..#####...",
"C": "..######..\n..#.......\n..#.......",
"D": "..######..\n..#.......\n..#.......",
"E": "..#####...\n..#....#..\n..#....#..",
"F": "..######..\n..#.......\n..#####...",
"G": "..######..\n..#.......\n..#.####..",
"H": "..#....#..\n..#....#..\n..######..",
# Add more characters...
}
# Input name for which you want to print ASCII art
name = "GEEK"
# Iterate through each character in the name
for char in name:
# Convert the character to uppercase
char_upper = char.upper()
# Check if the uppercase character exists in the ASCII art dictionary
if char_upper in ascii_art:
# Print the ASCII art representation of the character
print(ascii_art[char_upper], end=" ")
else:
# If the character is not found in the dictionary, print a message
print("Character not found in ASCII art dictionary")
Output:
..######..
..#.......
..#.####.. ..#####...
..#....#..
..#....#.. ..#####...
..#....#..
..#....#.. Character not found in ASCII art dictionary
Print with your own font using Python using Functions
Here we will print text using a custom font created using ASCII art representations. This can be done by using Functions.
Python3
def print_char(char):
char_upper = char.upper()
if char_upper == "A":
print("..######..\n..#....#..\n..######..", end=" ")
elif char_upper == "B":
print("..######..\n..#....#..\n..#####...", end=" ")
elif char_upper == "C":
print("..######..\n..#.......\n..#.......", end = " ")
elif char_upper == "D":
print("..#####...\n..#....#..\n..#....#..", end = " ")
elif char_upper == "E":
print("..######..\n..#.......\n..#####...", end = " ")
elif char_upper == "F":
print("..######..\n..#.......\n..#####...", end = " ")
elif char_upper == "G":
print("..######..\n..#.......\n..#.####..", end = " ")
elif char_upper == "H":
print("..#....#..\n..#....#..\n..######..", end = " ")
# Add more characters...
name = "GEEK"
for char in name:
print_char(char)
print() # Print a newline after each character's ASCII art
Output:
..######..
..#.......
..#.####..
..######..
..#.......
..#####...
..######..
..#.......
..#####...
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!
|
https://www.geeksforgeeks.org/print-font-using-python/?ref=lbp
|
Pandas
|
Print with your own font using Python !!
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0376364663, 0.00422758237, -0.0102326712, 0.0210967343, 0.0299225, 0.0330245569, 0.0381580517, 0.00886008, -0.0361266136, 0.0037780588, 0.0270812344, -0.00349324592, 0.00613548514, -0.0280969534, -0.0218379349, 0.02205755, 0.0210143793, 0.0134170847, -0.000115276263, 0.0125180371, 0.0314323492, 0.00399081036, -0.0678060353, -0.023869371, 0.0282479376, 0.0271361396, -0.000954809133, 0.00254958915, -0.0123739149, 0.0141514204, 0.0172672048, 0.0085992869, 0.0256262887, 0.00746689923, 0.0188456848, 0.00857183523, -0.00940911658, 0.0482054204, -0.0174319148, -0.0343422443, 0.0180358551, 0.000559760083, 0.0233066082, 0.00116670295, -0.0172946565, 0.0118935071, -0.00697619747, -0.0242399704, 0.000307760813, -0.0346442163, 0.0219202898, -0.0161005016, 0.0470524468, 0.0205888767, 0.0272596721, 0.00500996, -0.00538055971, -0.0301421154, -0.0168828778, -0.0184888113, 0.00969736092, -0.0206163283, 0.00722669531, -0.0162103083, 0.0107885711, -0.0143573098, -0.0477936454, 0.0103905192, 0.0234575924, -0.0268890727, 0.00474916724, 0.0265596509, 0.00802966207, 0.0170887671, -0.00044266085, -0.0280695017, 0.0725826547, -0.0127445143, -0.0222359858, 0.0295930784, 0.0100336457, -0.0209045727, 0.0189005882, -0.000265081791, 0.035687387, 0.00738454377, -0.0140484767, -0.0318990313, -0.0115160448, 0.0318441279, -0.00269714277, 0.000576059625, 0.0277812574, -0.0373070426, -0.0491387844, -0.0193672702, -0.00725414744, -0.00298195565, -0.00251527433, 0.0774690807, -0.000242348236, 0.0204378907, -0.03530306, -0.0607783608, 0.00244836044, -0.00148668839, -0.0151534127, 0.01623776, 0.00761788432, -0.0266969092, -0.00800220948, -0.0164848268, -0.0185437147, 0.0214536097, -0.0500172414, 0.00772082852, -0.00138202833, -0.0280283242, 0.0178711452, 0.0182417445, 0.032777492, 0.0104179718, -0.018433908, 0.0622607619, -0.0525428131, 0.0387070887, -0.0210967343, -0.036867816, 0.016320115, 0.0348363779, -0.0171436705, -0.0151122352, 0.01607305, 0.0145631982, 0.0263949391, 0.0159769673, -0.0151945902, 0.00673599401, 0.0354403183, 0.00596048, -0.011969, -0.01190037, -0.00109035254, -0.040024776, -0.0321461, -0.00740513252, 0.046173986, 0.00603597239, -0.0158122573, -0.0076110214, -0.0638529658, -0.0467230231, 0.0241438895, 0.034040276, 0.011186623, -0.0169652347, -0.03513835, 0.0238419194, -0.0317343213, 0.00489328941, -0.021824209, -0.0157024488, 0.0018049581, -0.0293734632, 0.0100954119, 0.00630362751, 0.0250086207, 0.0127925547, -0.0304989889, 0.0338206589, 0.0142475022, -0.00538055971, 0.0205477, 0.0246105697, -0.0666530579, 0.0447464921, 0.00809829123, -0.0307460558, 0.0115091819, 0.00107319513, -0.0577037558, -0.00938852783, 0.0229360089, -0.00205545616, 0.0267792642, 0.0521859378, 0.00832476933, 0.0106787635, -0.0162926633, -0.035934452, -0.0039256122, -0.0132661, 0.00866105407, -0.0215771422, 0.0290714931, -0.00971795, -0.0245419405, 0.00159220642, -0.0213438012, 0.0443896167, -0.0232654307, -0.0418915, -0.0220712759, -0.0146181025, -0.0209320243, 0.0161965825, -0.0704963133, -0.0126347067, 0.0388168953, 0.0290989447, -0.0262851324, 0.0249125399, -0.0320088379, -0.0123739149, 0.00255645206, 0.00247581233, -0.0262027755, 0.0303891804, 0.0309931207, -0.040985588, 0.0040422827, 0.0210143793, 0.0453229807, -0.0273420271, -0.0300048552, -0.0298401453, 0.0198064987, 0.041754242, -0.0279871449, 0.00101314427, 0.0108915158, -0.00708943652, -0.00206403481, -0.0039633587, 0.045707304, 0.0286871679, 0.00791985448, 0.0320088379, -0.0145220207, 0.0489740744, 0.0202594548, -0.0314323492, -0.00816692133, 0.00583351497, 0.034040276, 0.00257875677, 0.0149063468, 0.00824927632, -0.0297028851, 0.0112072118, -0.000658415083, 0.0255576577, 0.040189486, 0.0502094068, -0.0216869488, -0.0268616211, -0.0155377388, -0.0268890727, 0.0236497559, 0.00397365307, -0.00407659728, 0.00778945815, -0.016320115, 0.0202731807, 0.0202182755, -0.000775085413, 0.00943656825, -0.033326529, -0.0110699525, -0.0152220428, 0.0486721024, -0.0457347557, 0.00340745901, -0.00883949082, 0.0172260273, 0.017500544, -0.00321358046, -0.00457416195, 0.0424954407, 0.00601195171, 0.0220850017, 0.00752180256, 0.0518016107, 0.0332441702, 0.0282753892, -0.0336284973, -0.0542448275, -0.0122297928, -0.0441151, -0.00656785164, 0.0118729183, 0.0302519221, 0.000654554693, -0.019861402, 0.0341500826, 0.0251870584, -0.0293734632, -0.0420562103, -0.0204241648, -0.00162652123, 0.00177579059, -0.0111317188, -0.02064378, -0.0152632203, -0.0283302944, -0.0224418752, -0.0303891804, 0.0192025583, 0.00756984344, 0.0195045285, 0.0162652116, -0.0280283242, -0.0541075654, -0.0209732018, -0.0269027986, -0.0212339945, 0.0597351938, 0.0242262445, -0.0399698727, -0.00692129368, 0.00591243897, -0.0182554703, -0.0287146196, 0.0277263541, 0.0200672913, -0.0141925989, -0.04145227, 0.0181731153, 0.0460367277, -0.0220163707, -0.0297303367, -0.0271773171, 0.0102875754, -0.00451925816, -0.00471485266, -0.0150985094, -0.00661589205, 0.0130396215, 0.0110905413, 0.0497152731, 0.020561425, -0.000287386385, -0.0076521989, -0.0342873409, -0.000290174474, -0.0658295, 0.0118591925, 0.0303617287, -0.0157710798, 0.00322387484, 0.00133055612, 0.0346167646, 0.037279591, -0.0313774459, -0.0204516165, 0.00166769896, -0.0104934638, -0.0257223696, -0.0235262234, 0.0467230231, -0.00903851632, 0.0091002835, 0.0121131223, -0.0368952677, -0.017335834, -0.0600646138, 0.0204241648, 0.0302793738, 0.000889611, 0.0227301195, -0.0292636566, -0.0383227617, -0.0521035828, -0.0297577884, 0.00984148309, -0.00919636432, 0.0205751508, 0.0146043766, -0.0262165032, 0.00274689915, -0.0512525775, -0.00791299157, 0.0518290661, 0.0144396648, -0.0325578749, 0.00145923661, -0.0392835774, -0.00373001816, 0.0011306724, 0.0233752374, -0.0683550686, -0.0231281705, -0.0109601449, 0.004608477, -0.0139661208, -0.000363307889, 0.00207089772, -0.0172260273, 0.013471988, -0.0238144659, 0.00124476908, -0.0221261792, 0.0278498866, 0.00354471826, -0.0134033579, -0.0120856706, -0.0192711875, 0.0058849873, 0.0185437147, 0.0107542565, 0.00144636852, 0.0298126936, -0.015290672, -0.00755611761, 0.0201496463, 0.00694188289, -0.00931303483, 0.0370599777, 0.00659873476, 0.00574772805, 0.0524879098, 0.00709629944, 0.0170750413, 0.0550683811, 0.00831790641, 0.00767965103, 0.0123807779, 0.0284401011, -0.00318441284, -0.0462288894, -0.0128817735, -0.0248027332, 0.0140553396, 0.0294009149, -0.0231830738, -0.0109944595, -0.00096253, 0.00991011225, 0.000852722616, -0.0258596279, -0.0193535443, 0.00364079955, 0.0322284549, -0.00699335476, -0.00685952744, 0.0332716256, -0.00219271542, 0.0112209376, -0.00107233727, 0.0197515953, -0.0006815776, -0.00948460866, -0.0684099719, -0.00214295881, 0.032777492, -0.00905910507, -0.024583118, -0.00494819321, 0.0238419194, -0.00715806615, 0.0606685542, -0.0270126052, -0.00719238073, -0.0176789816, 0.0208908468, -0.025763547, 0.0184476338, -0.00714434, -0.0175279975, 0.00359619036, -0.0189554915, -0.0173083823, 0.0201633722, -0.0220987275, 0.0326676853, -0.0318990313, 0.0189829431, 0.0127582401, 0.0118660554, -0.0110081853, 0.0385149233, -0.0572096221, 0.0267106351, -0.0296205301, -0.0125729404, -0.00763847306, -0.00798162073, -0.0139112175, -0.017102493, -0.0119278226, 0.0385972783, 0.0637431592, 0.0185574405, -0.0296754334, 0.0141376946, 0.0349187329, -0.0266694576, -0.0339853726, 0.0408483297, -0.00482809125, 0.020328084, -0.0108160228, -0.0536957905, 0.0348089263, 0.0378835313, -0.0082835909, -0.0215771422, 0.0301970188, -0.00972481258, -0.0231968, 0.0186946988, 0.00751493964, -0.000477404566, 0.00629676459, -0.00739140669, 0.0240889844, -0.0127925547, 0.0202320032, 0.00850320607, -0.0169652347, -0.0157299023, -0.00196452183, 0.0122229299, 0.0266969092, -0.0333814323, 0.0118797813, 0.0305538923, -0.0179535, -0.00811888, -0.022771297, -0.00752866594, 0.0199986622, -0.00517467083, -0.0256537404, -0.00270229, -0.0136847394, 0.00886694249, -0.00439572521, 0.0249948949, -0.00813946873, -0.040436551, -0.000843715, -0.0459818244, -0.0147141833, -0.00254444196, 0.0010792003, 0.00830418, -0.0144396648, -0.00351726636, 0.0177201591, -0.010404245, 0.0298950486, -0.0122846961, 0.00205030898, 0.00265596504, -0.0249125399, -0.00599136297, -0.0304989889, -0.0287146196, 0.00693158852, 0.0117219333, 0.0387345403, -0.00424474, 0.0125523517, 0.0112278005, -0.00872282, 0.00677717151, 0.0147004575, -0.0198751278, 0.00209491816, 0.0360717103, -0.00464622304, 0.0274518356, -0.000806397642, -0.0140484767, 0.0236909334, 0.0372246876, -0.0231556222, 0.0341500826, 0.00748062506, -0.0219751932, 0.0170887671, -0.00569625571, -0.0220987275, 0.00225619762, 0.00584380934, -0.0196006093, 0.0112895668, -0.0195319802, -0.00700708106, 0.00544575788, 0.0456524, -0.00801593624, 0.00297680823, -0.000747204642, 0.000378320605, -0.0105826827, 0.0218928382, 0.0187907815, -0.0196692403, -0.0268890727, 0.0286048111, 0.0296754334, -0.00768651394, -0.00609087572, -0.035907, 0.0466681197, -0.0316794179, 0.0141102429, -0.0178574193, -0.0254341252, 0.0179123227, 0.0111660343, -0.0181044843, 0.017733885, -0.0214947872, -0.0191339292, 0.0274930131, -0.0203143582, 0.00172088691, -0.0147828134, -0.0363462307, 0.00616979972, -0.00348981447, 0.0324480683, 1.45837876e-05, 0.00190103962, -0.0166083593, -0.0110974042, -0.0169789605, 0.0114062373, -0.0189692173, 0.000709458371, -0.00689727347, 0.0155377388, 0.0262576807, -0.0152632203, -0.00231281715, -0.010870927, 0.0104591493, 0.0117493849, 0.00200398406, 0.00225619762, 0.0665432513, -0.00899047591, 0.0172260273, -0.0123739149, 0.0165260043, 0.0116876187, -0.00157933834, 0.00643402385, -0.00494476175, -0.0230183639, -0.000960814243, -0.0157848056, 0.00108263176, -0.00868164282, -0.0207810383, -0.0144671174, 0.0219202898, 0.0110081853, -0.00769337686, 0.00982089434, -0.0162514858, -0.0113650598, 0.00805711374, 0.0196829662, -0.0243360512, 0.0302793738, 0.0230595414, 0.0207947642, -0.0104316976, 0.000431079592, 0.0530369468, 0.00412463816, -0.0123052849, -0.00948460866, 0.0227850229, 0.0199025795, -0.00929930899, -0.00774141727, 0.00971108675, -0.0121543, -0.0331069119, -0.00741885835, -0.00890812, -0.0136504248, -0.0115709482, -0.0162514858, 0.00475603063, 0.00383639382, -0.00448494358, 0.0124699958, 0.00795416906, 0.0263949391, 0.00962873083, -0.0106719006, 0.000170287167, -0.00199540518, 0.0271773171, -0.0195868835, -0.00351726636, -0.00715806615, -0.00328221, -0.0173495598, 0.0315696113, -0.0241301637, 0.0175417233, -0.0182554703, -0.0187221505, 0.0134239476, 0.0029116103, -0.00626588147, 0.017967226, 0.0126552954, -0.00533938175, 0.000637397286, 0.0153455753, -0.0101228645, -0.0203967132, -0.0295107234, 0.022922283, -0.00864732824, -0.0177613366, -0.0284675527, 0.00367168291, -0.00450553233, -0.000865590642, -0.0351658, -0.0103973821, 0.0282753892, -0.0126621593, 0.0148788942, 0.00959441625, -0.0426052473, -0.0351109, -0.001990258, 0.00352069782, -0.042083662, -0.00114782981, 0.00305573246, -0.0302244704, -0.00143693201, -0.0215771422, 0.023951726, 0.00375746982, -0.00222531427, 0.00619382039, 0.000482551783, -0.00144636852, 0.0100130569, 0.0216045938, 0.0550409295, -0.0153867537, 0.0106032714, 0.0181456637, -0.00443004, -0.0397777073, -0.0141651472, 0.0429895744, -0.0208222177, 0.0387070887, -0.0325029716, 0.0133004142, -0.0173907373, -0.00532908738, -0.00713061402, 0.0295656268, 0.00220987271, -0.00592273334, 0.0159083381, 0.0306911506, 0.0157710798, -0.0213026237, 0.00476289354, -0.0380207896, 0.00486240629, -0.0328873, -0.015524013, -0.00625215517, -0.004608477, 0.00444033416, -0.0224830527, 0.0191064775, 0.00719238073, -0.0252007842, 0.0258596279, -0.0187770557, 0.0266145542, 0.00676687714, 0.0146455541, 0.026477294, 0.0313774459, 0.00341603765, 0.00698649185, -0.0165671818, -0.0131288404, -0.0195868835, -0.0366482, -0.0158808865, -0.0018495674, -0.0289891381, 0.0199025795, -0.0232791565, 0.0250360742, -0.0104385605, -0.045158267, -0.0119552743, -0.0103630675, 0.0184888113, 0.0122778332, 0.0105689568, -0.0260929689, 0.0466955714, 0.0160455983, -0.00163166842, 0.00918263849, 0.00919636432, -0.0107062152, 0.000473115215, -0.0338481106, 0.0325029716, -0.00969736092, 0.00430307491, 0.0109326933, 0.0240615327, 0.0260243397, 0.00958069, 0.0180221293, -0.00406287145, 0.0273283012, -0.00820123591, 0.00462906575, 0.0242948737, -0.0145220207, 0.0311578326, 0.0241164379, 0.0174044631, 0.0157710798, 0.0268753469, 0.00384325697, 0.00281209731, -0.0196692403, -0.0100267828, 0.018433908, -0.00196966925, -0.0156749971, 0.0291538481, 0.00533251883, -0.0118248779, 0.0368129089, -0.00999246817, 0.017102493, 0.014810265, 0.0201633722, -0.00053531077, -0.00777573232, 0.00748748798, 0.0188594107, -0.023237979, 0.0149337985, 0.00960127916, -0.017733885, -0.024349777, -0.00537026534, -0.036950171, 0.0367580056, 0.0213026237, -0.0114954561, 0.00821496174, -0.0118866442, -0.0128886364, 0.0386521854, -0.000690156303, -0.0120307663, -0.0235811267, -0.00995815266, -0.00525702629, -0.00291332603, 0.00899047591, -0.011268978, 0.0276989, 0.000524587405, -0.0219477415, -0.0226065852, 0.0047525987, 0.02205755, 0.0013554343, 0.00579576846, -0.0180633068, 0.0305538923, 0.00119415484, 0.00989638641, -0.0191751067, 0.0127170626, 0.00439915666, 0.00735022873, -0.0017234605, 0.0315421596, 0.0584175065, 0.00783749856, -0.0145357465, 0.0123327365, 0.00366825145, -1.66346326e-05, -0.00436484162, 0.00516780792, -0.00138803339, 0.00676001422, 0.0035138349, 0.00278636115, 0.00179809518, 0.00463249721, -0.0156612713, -0.010006194, 0.0294558182, 0.000912773539, 0.0285224561, 0.0452680774, -0.00934048649, 0.0149475243, -0.00124047976, -0.0157710798, 0.0373344943, -0.00656442, 0.0105071897, -0.0373070426, -0.0293185599, -0.0323108099, -0.0234438665, 0.00638598297, 0.00140862225, -0.0118042892, -0.00170544523, 0.0197241437, -0.00888753124, -0.0549585745, 0.0200535655, -0.0499348864, -0.00496191904, -0.011028775, 0.0266282801, 0.0069659031, -0.00857869815, 0.0145357465, -0.0616568215, 0.00881203916, 0.0214673355, 0.0181044843, 0.0324755199, 0.033326529, -0.00344348955, 0.00173632859, -0.01765153, -0.00717865489, -0.00826300215, -0.00524673192, -0.00997874234, 0.0173495598, 0.0072404216, -0.0160593241, 0.00686639035, -0.0292087533, -0.023553675, -0.00692472514, -0.0047525987, -0.0318715796, -0.00188559794, -0.0121954773, -0.00794730615, 0.00235742633, 0.0120788077, 0.035769742, 0.00713747693, -0.00758356927, -0.0127239255, -0.0180084035, -0.0171162188, -0.0109670078, -0.00931989774, 0.0122641074, 0.0131837437, 0.00259076688, 0.0145357465, -0.00514035625, -0.0252282359, 0.0391463153, -0.000323845859, -0.0140553396, 0.0261753239, 0.00347952, 0.00754239177, -0.0332441702, -0.0335186906, -0.0194084477, 0.00771396561, 0.04128756, -0.0120513551, -0.0015681861, -0.00264567067, 0.0114885932, 0.0138082728, -0.0454876907, 0.0294832699, -0.00383639382, 0.0103081642, -0.00465994887, 0.011975863, 0.000993413269, 0.000477833499, -0.000353656855, -0.0274930131, -0.00304029067, -0.0132935513, 0.0230732672, -0.00174147577, -0.0193672702, 0.0027537623, -0.0193672702, 0.043648418, -0.01489262, -0.0128131444, -0.00956010167, -0.018749604, 0.00550066121, -0.00204687752, -0.0211379137, 0.00277091959, 0.0258733537, 0.00538742263, 0.0105552301, -0.0220850017, -0.0239105485, 0.00157504901, 0.0170613155, 0.00689384202, -0.0158534348, -0.0578684695, -0.00222874596, -0.00842771307, -0.00430307491, -0.00281038159, 0.015922064, -0.00341260619, -0.00356873847, -0.0125592146, 0.0024740966, 0.0197378695, 0.018365277, 0.0371697843, 0.013629836, -0.00079739, 0.00670511089, 0.0200810172, -0.0185299888, 0.012133711, -0.0141514204, -0.00495848758, 0.0149475243, 0.00406630291, -0.0060050888, 0.0017826535, 0.0127102, -0.0172946565, -0.00865419116, 0.0284950044, -0.00402855687, 0.0018890294, -0.00966304634, -0.00369570334, 0.0285499077, -0.0348363779, -0.00495505612, -0.00548007246, 0.031514708, -0.0164161976, 7.23291523e-05, 0.0164024718, -0.0148239909, -0.0506760888, -0.00514721917, -0.00269714277, 0.00788554, 0.00988266058, -0.0253243186, -0.00225276616, 0.0210006535, 0.0431268327, -0.0198064987, -0.0070036496, 0.00642029801, 0.019930033, -0.0322284549, -0.00546634663, -0.00607715, 0.0276577231, 0.0102738496, 0.0719787106, -0.0114474148, 0.00762474723, -0.00776200648, -0.0147004575, -0.0181731153, -0.00884635374, 0.0191751067, 0.00864046533, 0.00136744452, 0.00262336596, 0.014741635, 0.00326848403, 0.00610460201, -0.0110699525, 0.00767278764, -0.00021747, 0.00181868405, 0.0109052416, 0.0136366989, -0.00394277, 0.00430993829, -0.00475946208, 0.000584209338, -0.00260449294, -0.000493704109, 0.00814633165, 0.00886694249, 0.00397708453, 0.000674285693, 0.0297303367, -0.00963559374, 0.0282204859, 0.0230732672, 0.00140090147, 0.0149887018, 0.00836594682, -0.0108366115, -0.0225105044, 0.0144259389, 0.00511290412, 0.0159083381, -0.0207535867, 0.00486583775, 0.0265322, 0.00880517624, 0.00393933849, -0.005239869, 0.039091412, -0.0123258736, -0.0313499942, -0.0180770326, -0.0198064987, -0.00730218831, -0.00652324222, -0.00470112683, 0.00442660833, -0.00238487823, 0.0229771864, -0.0200535655, 0.0158259831, -0.0174319148, 0.00433739, 0.00294764084, 0.009374802, -0.00507515809, 0.00650951639, 0.019463351, -0.0485348441, 0.023086993, -0.0134239476, 0.00308318413, 0.0220712759, 0.00427219179, 0.00471485266, -0.0017431915, 0.00379521609, -0.00659187185, 0.0164573751, -0.00877772458, 0.0210143793, 0.0211653654, 0.00595704839, -0.000270443474, -0.0225105044, -0.0102944383, -0.0173907373, -0.011969, -0.0190653, 0.0077688694, 0.00724728452, -0.0168279745, -0.0118591925, 0.00493446738, -0.0028052344, -0.0232517049, 0.00783749856, -0.00459131924, -0.0032667683, 0.0120101776, -0.0241301637, 0.0213300753, 0.0236497559, 0.00474230433, -0.0101914937, 0.00309004728, 0.00622127205, 0.0026593965, -0.0235674, 0.000465394376, 0.0210281052, 0.0103699304, -0.0281930342, 0.0052947728, 0.0108503373, 0.00489672087, 0.0150161535, -0.00267655379, 0.00558988, 0.0191751067, -0.00560017442, 0.000802537252, -0.00410748087, -0.0302793738, -0.00187187199, -0.00914832391, 0.0117699746, -0.00591243897, 0.0110768154, 0.0101983566, -0.0175829, 0.00493789883, 0.00167541974, -0.00630019605, -0.0206163283, 0.00815319456, 0.0140484767, -0.005871261, -0.00679776073, 0.00741199544, 0.00366138853, 0.0140827913, -0.00818751, 0.0296205301, -0.00675315131, 0.0355501249, -0.0262027755, 0.0232517049, 0.000116777534, 0.00730905123, -0.0130739361, -0.0189005882, 0.0145631982, -0.0217693057, 0.00930617191, 0.017569175, 0.0142475022, -0.020245729, -0.0133553175, -0.0144533906, 0.00918263849, -0.00210692827, 0.00208119233, -0.00927185733, 0.0144808432, -0.000576059625, 0.000700450735, 0.00898361299, -0.00671883672, -0.0101571791, -0.0153043978, 0.00985520892, 0.00487613212, -0.00910714641, 0.0108777899, -0.00224933471, 0.0165122785, -0.0116670299, 0.0326676853, 0.0111179929, -0.0181868412, 0.0302244704, -0.0397502556, 0.012133711, -0.0168279745, 0.0274655614, -0.0140141621, -0.000100853322, 0.0182554703, 0.0221261792, -0.00174919656, 0.0175279975, -0.00133312971, 0.0346991196, 0.0120444922, 0.0103013013, 0.00827672798, -0.0174044631, -0.0134033579, -0.0209320243, -0.0239242744, -0.0077688694, -0.0224830527, -0.00975226425, -0.0221673567, -0.0162926633, -0.00618009456, -0.0127239255, 0.0124974474, 0.00297852419, -0.00133999274, -0.00474230433, 0.00198682654, 0.00289445277, -0.017569175, 0.0349187329, 0.0119415484, 0.0160867758, 0.0275753681, -0.00259591406, 0.0105689568, 0.0182691962, 0.00522614317, 0.00169515086, -0.0106856264, -0.00321014901, 0.0274930131, 0.0115640853, -0.00657471456, 0.00818064716, -0.0208359435, -0.0101434533, 0.0124219554, -0.0100405086, 0.000208355137, -0.00596734276, 0.0327225886, 0.0112895668, -0.0331892669, 0.0242262445, 0.0153593021, 0.0410404913, -0.0183790028, -0.00705512147, 0.00993756391, 3.12318225e-05, 0.0360717103, 0.00178608496, -0.0100405086, 0.00355501263, -0.0459269211, 0.00848261733, -0.00884635374, -0.00261478731, 0.00535653951, 0.019930033, 0.01607305, 0.00234713196, 0.0142886797, -0.0162514858, -0.0190515742, 0.0273557529, -0.0106169973, 0.0175417233, -0.0245556664, -0.000114096692, -0.0368952677, -0.0135063026, -0.00440945104, 0.0177201591, -0.00573057076, 0.024816459, 0.00706884731, -0.00811888, 0.00471485266, 0.000411992, 0.0218791123, 0.00953265, -0.00743258419, -0.00669481605, -0.0323108099, 0.0191613808, -0.000453384215, 0.00474230433, 0.0168828778, -0.000922210107, -0.0117631117, 0.00541487429, -0.0113170194, -0.00288758986, 0.017500544, 0.0104248347, 0.00274175196, 0.0146867316, 0.0126278438, 0.02363603, -0.0178574193, -0.0298401453, -0.00333882938, 0.00379178463, -0.0287420712, -0.00762474723, -0.0149612501, 0.00909342058, -0.0141376946, 0.0154828345, 0.00273488904, 0.0117562478, 0.0119621372, -0.0226340387, -0.00216526352, -0.0534487218, 0.0218104832, -0.019312365, 0.00615607388, -0.00223389314, 0.0100267828, 0.00644774968, -0.0127033368, 0.00497564487, 0.0222359858, 0.00324446382, -0.00586782955, -0.0127307884, -0.00682521239, -0.0160455983, 0.00809142832, 0.0051369248, -0.0035309922, -0.00636882568, -0.0170750413, -0.00885321666, -0.0102395341, 0.0310205743, 0.0023437005, 0.00783063564, -0.00952578709, 0.0074394471, 0.00165740459, -0.002069182, -0.023402689, 0.0387894437, 0.00236257352, 0.0366756506, -0.00801593624, 0.00029746638, 0.0122023402, 1.88865415e-05, 0.00453641592, 0.0665432513, -0.00294077792, -0.0136572877, -0.000915347133, 0.0262576807, 0.0198202245, 0.0122435186, 0.00167456188, 0.0277400799, 0.00741199544, 0.0157710798, -0.00636882568, 0.0174044631, -0.0149475243, -0.00681148656, 0.0118729183, 0.00647520134, -0.0268890727, -0.00795416906, 0.0436758697, 0.0101022748, 0.00258390396, 0.00428248616, 0.0203418098, 0.0153867537, -0.00380207924, -0.00555213355, -0.0334637873, 0.0215359647, 0.0316794179, -0.0101365903, -0.036318779, -0.00770710269, -0.0121748885, 0.00292190467, -0.0194359, 0.00325990538, -0.00548693538, -0.00247924379, -0.00402855687, -0.0163063891, 0.034122631, 0.0126552954, 0.0181868412, -0.015208317, 0.00310548884, 0.00196109037, -0.0250086207, 0.00509231538, -0.00319642294, -0.0175417233, 0.0160455983, 0.00327191548, -0.00467710616, 0.00760415848, 0.00632421626, 0.00802279916, -0.000807255507, -0.00525359483, 0.00355158118, 0.0028841584, -0.00524673192, 0.0046496545, -0.0322010033, 0.000919636455, 0.00536683388, 0.0357971936, 0.0158534348, -0.000955667, 0.00618352601, -0.00968363509, 0.0538055971, 0.00517810229, 0.00474916724, 0.0354128666, 0.00819437299, 0.0065163793, -0.00782377273, 0.009848346, -0.00230938569, -0.0123190107, 0.00693502, 0.00226306054, -0.0356050283, 0.000666564854, 0.0319264829, -0.00323588494, 0.0325029716, 0.0260380656, -0.0148514425, -0.0131906066, 0.0193672702, 0.00651981076, 0.00159735361, -0.0119415484, 0.00121560157, -0.0184613597, -0.00729532493, -0.014178873, -0.020328084, 0.0026593965, -0.00248610671, -0.000883605913, -0.0109944595, -0.00173976, -0.0137190549, 0.00960814208, -0.0106169973, -0.0187221505, 0.0115229078, -0.000490272592, -0.0078100469, -0.00225619762, 0.0011186623, 0.0103424788, 0.0133072771, -0.00935421232, -0.0153867537, -0.0309656691, 0.0157024488, -0.0049653505, 0.0156475455, -0.0311029293, 0.0154142054, 0.00852379482, 0.0139318062, -0.00438886229, -0.000768651371, -0.0136916023, -0.015208317, 0.00999933109, 0.0133690434, -0.0114611415, 0.00646147551, 0.0170338638, -0.0336010456, 0.0469151847, 0.00183584145, 0.0324480683, 0.00580949476, 0.00954637583, 0.0169103295, 0.0135612069, -0.0126278438, 0.000465823337, -0.00282582315, 0.018049581, 0.00496191904, -0.00145237369, 0.00246551796, -0.00352412928, 0.016937783, 0.0102875754, -0.00728846202, 0.00129452557, 0.0384325683, 0.0150847835, 0.00669138459, 0.00653696805, 0.0284950044, -0.0161691308, 0.0126552954, -0.0130876619, -0.00951892417, 0.0120719448, -0.00105861144, -0.0170475896, 0.0284401011, -0.0104522863, -0.0154828345, -0.0147965392, 0.0348089263, -0.00688354764, 0.0312950909, -0.0123395994, 0.00931989774, 0.0230458155, 0.0177613366, 0.0166358128, 0.0082835909, -0.0175554492, -0.00234884769, -2.33635492e-05, -0.00747376215, 0.00868850574, 0.00488299504, -0.00305744819, 0.0290989447, 0.0125317629, 0.0181319378, 0.00544918934, -0.00903851632, 0.0132180583, -0.0258870795, 0.000987408217, 0.00395306433, -0.000771224964, 0.0160455983, 0.00494133029, -0.00585753517, -0.00127136311, 0.0260243397, 0.0113925114, 0.0134239476, 0.024583118, 0.0135955215, 0.00469083246, 0.00735709164, 0.00651294785, -0.00570998155, 0.0202594548, -0.0103767933, -0.0199025795, 0.0246105697, 0.00426189741, 0.000969392946, -0.0116052628, -0.000222617222, 0.0118317408, 0.00668109, -0.0177476108, 0.0147965392, 0.013945532, 0.00461877137, -0.0129504027, -0.00183069427, 0.00208119233, -0.00689384202, 0.00432023266, -0.000213180654, -0.0203555357, -0.00861301366, -0.0191751067, -0.0126484325, -0.0105758198, 0.00112209376, 0.0213300753, 0.00092649943, 0.00541144283, -0.00986893475, 0.00346751, -0.0213849787, 0.011742522, -0.00730905123, -0.021357527, -0.042934671, -0.0312950909, -0.0157024488, -0.0453504324, -0.0129160881, -0.0165122785, 0.00391531782, -0.0171573963, 0.0119209597, 0.0198339503, 0.00826300215, -0.0280008707, -0.00233512162, 0.0214398839, -0.0275067389, -0.0240066294, 0.00491387863, -0.0130190328, 0.00601881463, 0.00183069427, -0.00308489986, -0.00463592866, -0.000228622317, -0.00296994532, -0.0172397532, 0.00319127575, -0.0118866442, 0.0161279533, -0.001990258, -0.0171573963, 0.0255164802, 0.00820123591, -0.00475946208, -0.000344649219, -0.0056104688, 0.000918778591, -0.0116258524, 0.00730218831, 0.000282668101, -0.00446092337, -0.0127102, -0.0106101343, -0.0153593021, -0.00338687, -0.00388100324, 0.0113787856, -0.00772769144, -0.00668109, 0.0227163937, -0.00977971591, 0.00286871684, -0.00462220283, -0.00169944018, -0.00057091238, 0.0035018248, 0.0111317188, 0.0174593665, 0.0227301195, 0.0115915369, -0.0144671174, 0.0169789605, -0.0337108523, 0.0187221505, 0.0071237511, -0.0138974916, 0.00734336581, -0.0107748453, -0.0016471101, -0.00379521609, 0.00526388921, 0.0123807779, 0.00116670295, 0.0271910429, 0.0258733537, 0.00962873083, -0.0157161746, -2.75054517e-05, -0.0143298581, -0.0148239909, -0.0079678949, -0.0121543, 0.00933362357, 0.0199849363, 0.0045947507, -0.00143864774, 0.0117837, -0.0124219554, -0.005239869, 0.0152769461, -0.00807084, -0.00320157013, -0.0227987487, 0.0126347067, 0.0118386038, 0.0133827692, -0.00921009, 0.00197481643, -0.0104660122, -0.0151671385, 0.00644088676, -0.000198382404, -0.0190515742, -0.000186586694, 0.0138494503, -0.00169000356, -0.0011778553, 0.032695137, 0.00220815698, 0.00974540133, 0.00914832391, 0.00301283877, -0.0180084035, -0.0166632645, 0.0196143351, 0.0127513772, 0.0209045727, 0.0217830315, -0.00509917829, -0.000788811303, 0.0065953033, -0.0274106581, 0.00954637583, 0.0247066505, 0.017569175, 0.0218928382, 0.0134994397, -0.0118591925, 0.00321529619, 0.0100610973, 0.018516263, -0.0302519221, 0.0122503815, -0.0042790547, -0.0151945902, 0.0113856485, -0.0122229299, 0.00704825856, 0.00879145, 0.00370256626, 0.0137396436, -1.20704972e-05, 0.0101297274, 0.00706884731, 0.0102189453, 0.0258321762, -0.0105964085, 0.0146318283, -0.0191888325, -9.15239871e-05, 0.00366138853, -0.0157024488, -0.0108022969, 0.00133398757, -0.0112140747, -0.00255645206, 0.0267106351, -0.0035309922, -0.0342873409, 0.00461877137, -0.0187221505, 0.0179535, 0.0186260697, 0.00155017083, -0.00569282426, 0.00390502345, -0.00920322724, 0.0134788509, -0.00881203916, -0.00992383808, 0.00962186791, 0.0251458809, 0.00616636826, 0.00090076332, 0.0183515511, -0.0217830315, 0.019696692, 0.0162103083, -0.0155926421, 0.0141376946, 0.00917577557, -0.00168914569, 0.0275479164, -0.0424130857, -0.0227301195, 0.0142475022, 0.00238144677, 0.0148651684, -0.0298401453, -0.00954637583, 0.0114405518, -0.00818064716, -0.00667079585, -0.00190103962, 0.00130482006, -0.0142200505, 0.00696933456, -0.00582665205, 0.0207947642, 0.00184098864, -0.0132249212, 0.0124150924, -0.0156338196, 0.00305744819, 0.0152357686, 0.0300872102, 0.0127239255, 0.00876399875, -0.00678403489, -0.0181044843, -0.0271498654, -0.00756984344, 0.00375746982, 0.00160250091, 0.00505113741, 0.0135474801, 0.00606685551, -0.0223457944, 0.0338206589, 0.00189589232, -0.0072404216, -0.0211104602, 0.0131013878, 0.0275479164, 0.0130121699, 0.0151808644, 0.00179981091, 0.0232105255, -0.0117768375, -0.00586782955, 0.0135268914, 0.00490015233, -0.0334637873, 0.0241576154, -0.0064374553, -0.00719924364, 0.0153730279, 0.00816692133, 0.00722669531, -0.020328084, -0.0032667683, -0.0263263099, 0.0187633298, 0.0325304233, 0.00852379482, 0.0035138349, 0.0196417887, 4.34564681e-05, -0.00280008721, 0.0198202245, -0.013238647, 0.00956010167, 0.0111934859, 0.0129160881, 0.00642372947, -5.46355841e-05, 0.00692472514, 0.0112895668, 0.005713413, 0.000463249715, -0.0230183639, 0.0159495156, -0.0151122352, -0.0137327807, -0.00285842223, -0.00897675, -0.00921009, -0.0112758409, -0.010404245, 0.00316725555, 0.00742572127, -0.0194359, 0.0138906287, -0.0165397301, 0.0246517472, -0.00163338415, -0.0127033368, 0.000533595041, 0.0129915811, 0.00975912716, 0.0197515953, 0.0190103948, -0.00781691, -0.0312127359, -0.00423787721, -0.0302519221, -0.0286597162, 0.0113993743, -0.00387414, 0.0287146196, -0.00348466728, -0.00482122833, 0.0240889844, -0.00387414, 0.0085992869, -0.0167456195, -0.0108640641, 0.0224967785, 0.0214398839, 0.00914146099, 0.0131906066, 0.00349496165, 0.00962186791, 0.0173632856, -0.024898814, -0.0194908027, 0.00833849516, -0.0171299446, 0.00250841142, 0.0061629368, -0.0137259178, 0.00185471459, 0.00548007246, -0.00290131569, 0.00314495084, -0.00287557975, -0.00915518682, 0.0174868181, 0.00283954921, 0.00460161362, -0.00314323511, 0.00476289354, -0.0210281052, -0.00076650671, -0.0145494724, 0.01190037, -0.0336559489, -0.00200569979, 0.0068492326, -0.00469083246, -0.00618695747, 0.0158808865, 0.0121680256, 0.00434082141, 0.015441657, 0.0162240341, 0.017418189, 0.00202800427, 0.00229565962, 0.0221536309, -0.00678746635, 0.00249983277, 0.005476641, 0.0145220207, 0.00866791699, 0.014178873, -0.013787684, -0.000854009413, -0.0117905634, -0.0085581094, 0.0146318283, -0.00522614317, -0.0195868835, -0.00110751, 0.00509231538, 0.00755611761, -0.00237801531, -0.00139146484, 0.0100199198, 0.00823555049, 0.00824927632, -0.0127445143, -0.0200672913, 0.023938, 0.00953951292, -0.00528104696, 0.0324480683, -0.0182280187, 0.00521928025, 0.00472514704, 0.00106290076, 0.0112964297, 0.00953265, -0.0296754334, -0.0062555871, -0.00982089434, 6.17130136e-05, -0.000516437634, 0.0107405307, -0.00218585227, -0.00378149026, -0.00131339871, -0.0103424788, 0.0123258736, -0.0173495598, -0.0003605198, -0.018282922, 0.0121405739, 0.0141925989, -0.0264086649, -0.00453984737, 0.0275479164, 0.00130996725, 0.0125592146, 0.00300940732, -0.00898361299, -0.0212339945, -0.00112552522, -0.000136723, 0.011660167, -0.00202114135, -0.0199574847, 0.00367511436, -0.0142063247, 0.0196417887, 0.017733885, 0.00302828057, 0.0025530206, 0.00857183523, 0.00544575788, 0.00952578709, 0.00898361299, 0.00378835318, -0.0141376946, 0.018365277, 0.00248095952, 0.0013382769, 0.0110356379, 0.0197927728, -0.00242090877, -0.00730218831, 0.0104316976, -0.0148651684, 0.0214947872, 0.0121131223, 0.0157161746, 0.0129366769, 0.0144396648, 0.00825613923, 0.01623776, 0.0025410105, -0.0139318062, 0.0115915369, 0.0126141179, -0.0255164802, 0.0150710577, -0.00638941443, 0.000223475086, -0.00537712825, 0.00119243911, 0.000598364219, -0.00211207545, -0.000202778989, 0.0181182101, 0.0165260043, -0.00492760446, -0.000414565613, -0.0206849575, 0.00719238073, -0.00505456887, -0.0311852843, 0.000305830588, 0.000161172298, -0.0140553396, -0.012840596, 0.012367052, 0.00496191904, -0.00939539075, 0.0219477415, -0.00676687714, -0.00250498, 0.0142063247, 0.0058472408, 0.0280420501, -0.000722326396, 0.0224144235, -0.0115503594, 0.00956010167, 0.000834278413, -0.0011109414, -0.001093784, 0.00805711374, 0.00112380949, 0.000486841134, -0.0125798034, -0.037114881, -0.000682006532, 0.00742572127, 0.00890812, -0.00490358379, 0.00573400222, 0.00778945815, 0.0128954994, 0.00879831333, -0.00440601958, 0.0229634605, -0.00852379482, 0.010164042, -0.000278378749, 0.00439915666, 0.0126484325, -0.0140072992, 0.0050580008, 0.0309382174, -0.000531879312, 0.0276714489, -0.00247066515, -0.0142200505, 0.0116189895, -0.00820123591, 0.00206231908, -0.0287420712, -0.00419669924, -0.0123327365, -0.0206026025, 0.0183515511, 0.0110356379, -0.00164625223, -0.0233066082, 0.0112140747, 0.0244733114, 0.0152494945, 0.0110836783, -0.00825613923, -0.00728846202, -0.00310034165, -0.00079739, -0.0393659323, -0.01190037, -0.0276989, -0.0177476108, -0.00901792757, 0.0150710577, -0.0056104688, 0.00650265347, 0.000248353317, -0.000180903298, 0.00367854582, -0.0178574193, -0.000414780079, -0.000994271133, 0.0212065428, 0.0138357244, -0.0129572665, -0.0220300984, -0.0155789163, 0.0204790682, 0.0444170684, -0.0100679602, -0.0153455753, 0.0156475455, -0.00498593971, 0.0111179929, -0.00123876403, -0.0190927517, 0.00592273334, 0.0137602324, 0.0123395994, -0.00904537924, 0.00735709164, -0.0279871449, 0.0156200938, 0.00976599, -0.00183755718, 0.0246929247, 0.019380996, -0.00876399875, 0.00641000364, 0.0362913273, -0.0217693057, -0.0337932073, 0.00426189741, 0.00458102487, -0.0180770326, -0.0321735516, 0.0021978626, -0.00818064716, -0.0267792642, -0.0103424788, -0.000298109779, 0.0063585313, -0.00194221735, -0.0131906066, 0.00661246059, 0.0029750925, -0.00932676066, -1.84307974e-05, -0.0150024276, -0.00425846595, -0.00660559768, 0.0121611627, -0.00755611761, -0.0343147926, 0.00535310758, 0.00304715359, -0.00397365307, 0.0161005016, -0.0103973821, 0.00680462364, 0.00707571, 0.00346407853, 0.00645461259, -0.0355226733, -0.00184442021, -0.016155405, -0.00910714641, 0.00393933849, -0.0148514425, 0.00351726636, -0.0137259178, -0.00195594318, -0.0101571791, 0.00183584145, -0.000432151923, 0.023402689, -0.00680119218, 0.00869536866, 0.00494819321, -0.0158259831, 0.00834535807, -0.0143984873, 0.0152220428, 0.00305744819, 0.0111591714, 0.00302313338, 0.00211207545, -0.0216183197, -0.0129709924, 0.00672569964, 0.0126758851, 0.00728846202, 0.0138357244, 0.0117905634, 0.0182417445, 0.0118729183, 0.00401139958, -0.015208317, 0.0173632856, 0.00502711721, 0.0062555871, -0.0238419194, -0.0137808211, -0.0102669867, -0.00519182812, -0.023553675, 5.75845115e-05, 0.0288793296, 0.0126552954, 0.0023831625, -0.0126484325, -0.0139249433, 0.00313294074, -0.000611661177, 0.00165826245, 0.0254341252, 0.00550066121, -0.0332167186, -0.0221810825, -0.0110905413, -0.01387004, -0.00253414758, -0.0106856264, -0.00314495084, -0.0153730279, -0.0102258082, 0.0151671385, -0.00306602684, 0.00582665205, 0.00498593971, -0.00848261733, 0.00160335877, 0.00845516473, 0.0273969304, 0.0117768375, -0.0109738708, -0.000444805512, -0.0286871679, -0.0176789816, 0.00831790641, -0.00655412581, -0.0241438895, 0.00436484162, -0.0188045073, -0.00490358379, 0.0279185157, -0.00479034521, -0.01111113, -0.0167456195, -0.021906564, 0.0266557317, 0.00478348229, 0.0162240341, 0.00432023266, -0.0136916023, 0.00365452562, 0.00273317331, -0.0118729183, -0.0125043103, -0.0180084035, 0.00270229, -0.0194770768, 0.026477294, 0.00625901856, 0.00206060335, -0.0171985738, -0.00776200648, -0.0117356591, 0.0155926421, 0.0154691087, -0.00106375862, 0.0151396869, 0.0100199198, -0.010795434, 0.0028446964, -0.0234164149, -0.00113153027, 0.0112895668, -0.0214124303, 0.00288758986, 0.00431336975, 0.00461534, 0.00693502, 0.0204241648, -0.00637225714, 0.0058472408, -0.0218653865, 0.0063585313, -0.00112209376, 0.0141102429, -0.0161416791, 0.0128611848, 0.00366482, -0.0101709049, -0.000917062862, 0.0281655826, 0.0162103083, -0.0124219554, 0.0206986833, -0.00238487823, 0.00592959626, 0.00423444575, 0.00865419116, 0.0217967574, 0.0135200284, 0.0120033147, -0.0106444489, 0.011028775, -0.00786495116, -0.00444376562, 0.0172397532, -0.004687401, -0.00341775338, 0.00811201707, 0.017335834, -0.00959441625, -0.000756212277, -0.000188409671, 0.00393933849, 0.00892184675, 0.0110836783, -0.00813260581, -0.00313637219, 7.45944635e-06, -0.0120307663, -0.0121062594, 0.024981169, 0.0331343636, 0.0139249433, -0.0104385605, 0.00636882568, -0.0113787856, -0.00194736454, 0.00733650289, 0.00365795707, -0.00230080681, -0.00296136667, -0.00805711374, -0.0226477645, 0.0108777899, 0.0092581315, 0.00589185, 0.00982775725, -0.00239002542, -0.00991697516, 0.0328323953, 0.0018615775, -0.00500652846, 0.0201908238, -0.0133347288, -0.0233066082, 0.0174868181, 0.0111454446, 0.016155405, 0.00411091233, 0.0202869065, 0.0108846528, -0.00061037438, -0.00142835325, 0.00585410371, 0.00363393663, 0.0306911506, -0.0152357686, 0.00700021768, 0.00581978913, 0.00312779355, 0.000952235539, -0.02080849, -0.0137327807, -0.0432366394, -0.00112895668, -0.00208977098, 0.0146181025, 0.00244321325, 0.00975912716, -0.000597506354, -0.00197996362, 0.00214295881, 0.00676344568, 0.0193260927, -0.0062418608, -0.00747376215, -0.0188868623, 0.000117742638, 0.0117768375, 0.005555565, -0.00589185, 0.000359233, -0.00139918574, 0.00743258419, -0.0336559489, 0.00751493964, -0.0100405086, 0.00756298052, -0.0183515511, -0.0092581315, 0.00377119589, -0.00695217727, -0.0199025795, -0.0208222177, 0.016704442, 0.00055118138, 0.00533938175, 0.0143984873, 0.0124768587, -0.0235948525, -0.00868164282, 0.00779632106, 0.00976599, -0.0101297274, -0.00668109, 0.0202731807, -0.00729532493, -0.0391463153, -0.00704825856, -0.00516780792, 0.0185299888, -0.00562762609, -0.0108915158, -0.00634823693, -0.00921009, -0.041671887, 0.00831104256, 0.00481436541, -0.00502025429, 0.00688354764, -0.00235742633, 0.0169515088, -0.00130653579, -0.00923754275, -0.00805025082, 0.00692472514, 0.0030299963, 0.0139935724, 0.0168142486, -0.00292705186, 0.0165397301, 0.0127307884, 0.00890125707, -0.0126141179, -0.0154553829, 0.023938, -0.0128886364, 0.015922064, -0.000315267156, -0.0168417, -0.00617323117, -0.000854867278, 0.00778945815, 0.01387004, -0.00715120276, -0.00156904396, 0.00461190846, 0.0279322416, -0.0370874293, -0.0127513772, 0.00607028697, -0.0119552743, -0.00444033416, 0.00869536866, 0.00148840412, 0.024349777, 0.0194359, -0.00681491802, 0.0136161102, 0.0124150924, -0.0290165897, -9.96737508e-05, 0.0198202245, 0.015688723, -0.00695904, 0.00410404941, -0.0325578749, 0.0329422019, 0.00478691375, -0.0312676392, 0.0025804725, 0.00348123582, 0.00661932351, 0.00646490697, -0.00153129769, 0.00903851632, 0.00751493964, 0.0145082949, 0.00558301713, -0.000771224964, 0.0109464191, -0.0190378483, -0.0121543, -0.00542516867, -0.0179260485, 0.00132884039, 0.0121817514, 0.000763504184, -0.0202045497, 0.0153593021, -0.00593989063, 0.00805025082, -0.0091895014, -0.00357903307, 0.0142200505, 0.0191751067, -0.0190103948, -0.000160636133, -0.0262302291, -0.00497564487, -0.00151156669, 0.0288793296, -0.00516780792, -0.00938852783, 0.000959956378, 0.0114405518, 0.0016642675, -0.00343662663, 0.00719238073, -0.00519869104, 0.022771297, -0.00324789528, -0.000903336913, -0.00306259538, -0.0171573963, -0.00888066832, 0.0107611194, 0.00677374, 0.0249262657, -0.0167181678, -0.0310205743, 0.0150847835, -0.0115915369, 0.00466681179, -0.00432023266, -0.00985520892, 0.00233683735, -0.0312676392, 0.0106787635, -0.000313122495, -0.00715120276, -0.0119552743, -0.00348466728, 0.0305813439, 0.00467024324, -0.0204653423, -0.00223904033, 0.00294592511, -0.00340402755, -0.0142337764, -0.00852379482, 0.00252728444, -0.00649579056, 0.0121268481, 0.0217144, 0.000549036718, 0.016320115, -0.0043579787, -0.0232517049, 0.00911400933, 0.00236600498, -0.00365452562, 0.00810515415, 0.00172860769, -0.015688723, -0.0137190549, 0.0140004354, 0.00101142854, -0.0164161976, -0.0118454667, 0.0109875966, -0.0285499077, -0.0162926633, 0.00476289354, 0.0020794766, 0.00309691019, 0.000720181735, 0.00883262791, 0.00169429288, -0.00340231182, 0.0154691087, 0.00532565592, -0.0180221293, -0.00115898217, 0.0188868623, -0.0227850229, -0.00927185733, -0.0336834, -0.0186123438, -0.0249125399, -0.00728846202, -0.00977971591, -0.00163938932, -0.00527418358, 0.00494476175, 0.0266694576, 0.00382266799, 0.0295107234, -0.00406287145, 0.0107473936, 0.0210555568, -0.00217898935, -0.00493103592, -0.00367168291, -0.0124631329, 0.0168828778, -0.0118317408, 0.0211379137, -0.000112702648, 0.00620411476, 0.0356324799, -0.00644774968, 0.00382266799, 0.0213712528, 0.0344246, -0.00291332603, -0.00292018894, -0.0011306724, 0.0128337331, 0.01190037, -0.0074531734, 0.0038055107, -0.00748748798, -0.0288244262, 0.00926499441, 0.0006519811, -0.0082835909, -0.00285499077, -0.0084414389, -0.014741635, -0.00550409267, -0.0239654519, 0.0410954, -0.0267380867, -0.0057992, -0.00961500499, 0.00384668843, -0.0252556875, -0.0186123438, 0.0136023844, -0.0209457502, -0.00575459097, -0.0129504027, 0.00835908391, 0.0081257429, -0.00551781897, -0.00329936738, 0.0107817082, -0.00943656825, -0.00626245, 0.00952578709, 0.00746689923, 0.000708171574, -0.00956696458, -0.016553456, -0.0160455983, -0.0197515953, -0.00541830575, 0.0131837437, -0.020410439, -0.00541830575, -0.0150573319, -0.00816005748, -0.000408346037, 0.00224761898, 0.0132935513, 0.0204516165, -0.0385972783, -0.0105895456, 0.0120993964, -0.00395649578, -0.00274689915, -0.0175554492, 0.00628303876, -0.015922064, 1.22514539e-05, -0.00221502, -0.0116395783, 0.00653353659, -0.0146867316, -0.0281381309, -0.00940225367, 0.000683293329, -0.00990324933, -0.00142577966, -0.0186946988, 0.0028326863, 0.00670167897, -0.00126621593, -0.00816005748, -0.0164436493, 0.00710316235, -0.0153455753, -0.0232791565, -0.021275172, 0.00299225, -0.0145906499, -0.00196623779, -0.00698649185, 0.0179123227, 0.0224967785, 0.0113238823, -0.000952235539, -0.00711688818, 0.00016739186, -0.016004419, -0.0050442745, 0.00404914562, 0.00313808792, 0.00912087224, -0.000414994545, -0.0343696959, -0.00660216622, 0.00715806615, 0.00238144677, 0.0150710577, -0.0113376081, 0.00873654615, -0.00658844039, -0.0171299446, 0.017020138, 0.00569968717, 0.000495419838, -0.0129709924, 0.00119501271, 0.00214467454, -0.000921352184, 0.0138769029, 0.00281896023, 0.00296822959, -0.00317411846, -0.00960814208, -0.00945715699, -0.00013039622, -0.0171299446, -0.0114199631, -0.0109395562, -0.005239869, 0.00028545619, 0.0056104688, -0.0283302944, -0.00147296255, 0.00254787342, 0.00739140669, 0.00715806615, 0.0292087533, 0.0673119, -0.00458445633, 0.0043579787, 0.00310720457, -0.00890812, -0.00234026881, -0.00605312968, 0.0376364663, 0.0190653, 0.0155102871, 0.00406973436, 0.00821496174, -0.0137396436, -0.019779047, -0.0431268327, -0.000986550353, -0.0132180583, -0.00517467083, 0.000673427829, -0.0239105485, 0.00168228277, -0.00687325327, 0.0136435619, -0.00348295155, -0.012682748, 0.0030420064, 0.0103013013, -0.00916205, -0.00916891266, 0.00242948742, 0.00256503071, 0.0191064775, 0.00906596892, 0.0114885932, 0.000175541616, 0.0209457502, 0.00131940376, -0.00586096663, -0.00641686656, -0.00484181754, -0.0182691962, 0.0172809307, 0.0264086649, -0.0138219986, -0.00170801883, 0.00108949468, 0.0076521989, -0.0124082295, 0.000217791705, 0.00132111961, -0.0134033579, -0.00205374043, 0.0131700179, 0.0126896109, -0.015290672, -0.0164024718, -0.0094159795, -0.0181868412, 0.0145220207, -0.0127033368, 0.0263537616, -0.00839339849, 0.00437856745, 0.016937783, -0.00466681179, -0.0113856485, -0.0129366769, -0.0164436493, -0.00655412581, -0.00293048332, 0.00711002527, -0.00744631, -0.00710316235, -0.0124562699, 0.0050442745, 0.0134376734, 0.00341089047, 0.0139249433, 0.0118591925, -0.0035018248, -0.00713747693, 0.00240375125, 0.00525016338, -0.00706884731, -0.012840596, -0.00430993829, 0.009930701, 0.0061629368, 0.0128474589, -0.00185471459, -0.0181044843, 0.0287695229, 0.0138769029, 0.0159632415, 0.0169240553, -0.00870909449, 0.00417267904, 0.000692729896, 0.0294283666, 0.0139592579, 0.00332167209, 0.0234987698, 0.00570655, 0.0131357033, -0.0190653, 0.033957921, -0.00136143947, 0.017253479, 0.016937783, -0.00205374043, -0.00667765876, -0.0103767933, 0.00863360241, -0.00831104256, 0.00512663, 0.0224693269, 0.000468825863, 0.00490358379, -0.0105620939, -0.000369741902, 0.0120856706, 0.00869536866, 0.00123533257, 0.0043579787, -0.00655412581, -0.00183241, 0.00229737535, 0.0121543, 0.0320362896, 0.0201359205, -0.0127582401, 0.00603940384, -0.00343834236, 0.0163338427, 0.000775514345, 0.00667079585, 0.0169240553, -0.00326505257, -0.00423787721, 0.0162789375, 0.00814633165, 0.00510260975, 0.020492794, 0.0114062373, -0.00177235913, 0.00115126127, 0.00807770249, -0.0306911506, 0.0393659323, 0.00483152317, -0.0184613597, 0.00131254084, -0.00444719708, -0.0177613366, -0.0140965171, -0.0126141179, 0.0124768587, -0.0134513993, 0.0199025795, 0.00397022162, -0.00642372947, 0.00617666263, 0.0164848268, -0.022139905, 0.012367052, -0.000694445625, 0.0067291311, 0.0084002614, -0.00316382386, 0.00342633226, 0.0264498424, 0.0063585313, 0.00691786222, 0.0048864265, 0.0188456848, 0.00879831333, 0.00236943644, 0.0252694134, -0.0260380656, -0.0276028197, 0.00527761504, 0.0190653, -0.00315009803, 0.034040276, -0.0061629368, -0.0161005016, -0.020012388, -0.0116533041, 0.0392835774, 0.0206849575, 0.00771396561, -0.0134925768, 0.00298024, 0.000368669571, 0.00599822588, -0.00774141727, -0.00932676066, -0.0217830315, -0.00452955253, -0.0252282359, 0.0147690875, 0.001990258, -0.00111608871, -0.0175966267, 0.0104660122, 0.0255851094, -0.0103287529, 0.00515751354, -0.0211516395, -0.00270572142, -0.0180221293]
|
19 Nov, 2024
|
Get Current time in Python
19 Nov, 2024
In this article, we will know the approaches to get the current time in Python. There are multiple ways to get it. The most preferably date-time module is used in Python to create the object containing date and time. DateTime object in Python is used to manage operations involving time-based data.
datetime.now(): This method returns a DateTime object representing the exact moment the code is executed.strftime() Method: This method is used to format the datetime object into a string in a specific format.
Python
from datetime import datetime
# now() method is used to get object
# containing current date & time.
now = datetime.now()
# strftime() method used to create a string
# representing the current time.
currentTime = now.strftime("%H:%M:%S")
print("Current Time =", currentTime)
OutputCurrent Time = 06:20:18
Table of Content
Using time moduleGet Time in a Specific Time Zone (India)Using time moduleThe time module helps to get time-related functions and it is well-suited for time manipulation.
time.localtime(): Converts the current time (in seconds) to a struct_time object in the local timezone.time.strftime(format, t): Formats the time (given as a struct_time) into a string according to the specified format.
Python
import time
# localtime() method used to get the object containing the local time.
t = time.localtime()
# strftime() method used to create a string representing the current time.
currentTime = t.strftime("%H:%M:%S", t)
print(currentTime)
Output06:22:49
Get Time in a Specific Time ZoneTo get a current time in a specific time zone, we can use time module combined with datetime.now and strftime() methods.
pytz.timezone: This defines the India Standard Time (IST) time zone. This helps to get the correct time in the India Standard Time zone.
Python
from datetime import datetime
import pytz
# Define the timezone for India
tz_india = pytz.timezone('Asia/Kolkata')
# Get the current time in India time zone
datetime_india = datetime.now(tz_india)
print("India Time:", datetime_india.strftime("%H:%M:%S"))
OutputIndia Time: 11:54:39
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python
|
https://www.geeksforgeeks.org/python-program-to-get-current-time/?ref=next_article
|
Pandas
|
Get Current time in Python
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0214522332, -0.00034863464, -0.000211809733, 0.0448929109, -0.0144257667, -0.00975101534, 0.00101095089, 0.0219493434, -0.00302568264, -0.037742164, 0.0242245812, -0.00759049598, 0.0363081917, -0.0279337913, 0.00357776228, 0.0282588247, 0.00471538072, 0.0104871215, -0.0172554739, 0.0186894462, 0.0195307098, 0.0438222103, -0.0271498859, -0.00748055847, -0.0177908223, 0.0201903377, 0.0133168278, -0.00637161918, -0.00391474599, -0.0120071322, 0.000651262642, 0.0111945476, 0.031776838, -0.0235745125, -0.0554087088, -0.0336696804, 0.0143779675, 0.0259453487, 0.0132212294, 0.000306810427, -0.00888585206, 0.0162038933, 0.0139860148, -0.0204580128, -0.0299222339, 0.031643, -0.0263851, 0.0137565797, 0.0438986868, -0.00908660796, -0.00634771958, 0.00559249427, 0.00628558081, 0.0187372454, 0.0423308797, -0.0194255523, 0.0166054051, 0.00428040884, -0.0197505858, -0.0500934497, 0.0449693874, 0.0146456426, 0.00796333, 0.00307587162, 0.0025429118, -0.00724634249, -0.0259071086, -0.0199226625, 0.0224655736, 0.00241743913, 0.0261174254, 0.0252952799, 0.000403603597, -0.0351227745, 0.0427897498, -0.0378568843, -0.0156685431, 0.0375700891, -0.00814974587, 0.024626093, -0.0072750221, -0.0155060263, 0.0243010595, -0.00566419261, 0.0132977078, 0.0262130238, -0.020955123, -0.0323121883, 0.0228479672, 0.0389275812, 0.0253526401, 0.0163950901, -0.015888419, -0.0327137, -0.0186225269, -0.00867075566, -0.0103341639, 0.023039164, -0.0388319828, 0.0190909579, 0.0261556637, 0.013584503, 0.0132307895, -0.0511259101, 0.00857037771, -0.00347977411, 0.0108695142, 0.00741363969, -0.00499500521, -0.0458871312, -0.0399218053, -0.000367156783, 0.00814018585, 0.0100091305, -0.0596150309, -0.0125233624, 0.0179437809, -0.0215095934, 0.00102648558, -0.00818320457, 0.011500462, 0.0465371981, 0.0719280764, 0.064241983, -0.0196167491, 0.0234597959, -0.00363512104, -0.00202070666, 0.0215287115, -0.0275896378, -0.00746143842, 0.0148463985, 0.00312606082, 0.0015964898, 0.0183070526, -0.0053152591, 0.00401034392, 0.0325607434, 0.00631904043, 0.0240333844, -0.0121027306, -0.0163759701, -0.0128579568, -0.0330387354, -0.0144735659, -0.0417190492, 0.031069411, 0.0270925276, 0.0241863411, -0.0116820987, -0.0383731127, -0.0335358456, 0.018871082, 0.0234789159, 0.0341094323, -0.00987529289, 0.0234789159, 0.0171503145, -0.0527702, -0.0299604721, 0.00704080658, -0.0054586567, 0.0289088916, -0.0395394117, 0.0514700636, 0.0012618961, -0.00553513505, 0.0113475053, -0.00718898373, 0.0132977078, -0.020266816, -0.0133263879, -0.00103365537, 0.0234789159, -0.0221979, -0.014511805, 0.0100760488, -0.0213566348, -0.000868748524, 0.0152192321, -0.0560587794, 0.0155633856, 0.00312606082, 0.0313370861, 0.0120166922, 0.00390996598, -0.0116056204, -0.00170403777, -0.00874245446, 0.00478229951, -0.0149515569, -0.0337079205, 0.0404189155, -0.0408013053, -0.0264233388, -0.00140887836, 0.0166436452, 0.00505714398, -0.0445869938, 0.0319297947, -0.0390231796, -0.0389658213, -0.0276087578, 0.00532003911, -0.0290236101, 0.00590318814, -0.0127527984, 0.00119617232, 0.0124182049, 0.0163281709, 0.0205344912, -0.00819754507, -0.0129057551, -0.0391379, 0.0180298183, 0.028794175, -0.00454330398, -0.0121122906, 0.0321592316, -0.0212227982, -0.0452370644, 0.0325989835, 0.00532481913, -0.0356963649, -0.00816408545, -0.0100378096, -0.00104441016, 0.0206109695, -0.022331737, -0.0262321439, 0.000898025464, 0.00713162497, -0.0428279899, -0.00429713866, 0.0213375166, 0.0500934497, 0.0358684398, -0.0189858, 0.0166627634, 0.046498958, 0.0430574231, -0.0323121883, 0.0340329558, -0.0421779193, -0.0338991173, -0.0197123457, 0.0143779675, 0.0833616182, 0.0153052704, 0.0232877191, -0.0213566348, -0.0415278524, 0.00757615641, 0.0192725956, 0.000722363824, -0.0178195033, 0.0134793445, -0.00582671, 0.025104085, -0.0225038137, 0.0187468044, 0.00234574056, 0.0139477756, 0.0393099748, -0.000739093521, 0.0194064323, -0.00520532159, -0.0363464318, 0.0104010832, -0.00324316858, 0.00459588272, -0.0359640382, -0.00183070533, 0.0121027306, 0.0144544458, -0.00933516305, -0.00452418439, 0.031987153, 0.0294442419, 0.0254099984, -0.0279720295, 0.00628080079, 0.0495581, -0.0220640618, 0.0539556183, 0.0141389724, -0.00428996887, -0.0664598644, 0.0267674923, -0.0299987122, 0.0330387354, 0.0249128882, -0.0118732946, 0.0312606059, 0.0484491624, -0.00752835721, -0.0294060037, -0.0250849649, -0.0227332488, 0.0092586847, -0.0226758905, -0.0383539945, -0.0183070526, 0.0236127526, -0.0103054848, -0.0260600671, 0.0258115102, -0.0255438369, 0.0449693874, 0.00312128081, -0.00171957246, -0.0225038137, -0.0256776735, -0.00120453723, -0.0206109695, 0.0239760261, -0.00853213854, -0.0157928206, -0.0153052704, 0.0161656532, 0.0168826394, -0.00985617284, 0.0113761844, 0.037531849, 0.0441663638, 0.0260600671, 0.0210316014, -0.0113761844, 0.0112710269, -0.0365567468, -0.043975167, -0.00624256162, -0.0143684074, 0.0152670303, 0.0149324369, 0.0270351674, -0.00929214433, -0.0581237, 0.0152670303, 0.0142154507, 0.0165671669, 0.0229244456, 0.0214331131, -0.0386599079, -0.000159380099, -0.0187468044, 0.0280676279, 0.00394342514, -0.0137087805, 0.0142154507, 0.000428996864, 0.000196872526, 0.00439273659, 0.0390996598, 0.0340329558, -0.0249702465, -0.00848433934, -0.0151045136, -0.000716388924, -0.0205727294, 0.00547777629, -0.0219493434, 0.0254291184, 0.0059605469, -0.0534967482, -0.0466519147, 0.0155825047, -0.00905314833, -0.000709816581, 0.00754747679, 0.0264615789, 0.00486594765, -0.00579803, 0.0115865, 0.0122365681, 0.00778169278, 0.0096028382, 0.0409925021, 0.0138904173, -0.0146456426, -0.0164811276, 0.000411669695, -0.0299413521, -0.0106400782, -0.0103437239, -0.0330578536, -0.00456959335, -0.0407248288, 0.0028655557, 0.00922522508, -0.0212227982, 0.0118446155, 0.0185842887, -0.0813731775, 0.00379524799, -0.0491757095, 0.00119437987, -0.00241385424, 0.0196741074, 0.014502245, -0.056900043, 0.0116056204, 0.0123799657, -0.0243584178, -0.0225994121, -0.0374553688, -0.0215095934, 0.0162134524, 0.0158215, 0.0456576943, -0.016806161, 0.0306105409, -0.0342050306, -0.0189666804, 0.00929214433, -0.0252570417, -0.000102319937, 0.0336505622, -0.0430956632, 0.004373617, 0.0526172444, 0.000314577803, -0.0109842317, -0.0059605469, 0.0372068137, -0.00392908556, 0.0286603365, 0.0171216354, -0.0122270081, -0.0186894462, 0.0160031375, -0.0190813988, 0.0234789159, 0.0456194542, 0.022561172, -0.00907226838, -0.00579325, 0.0211080797, 0.0173606314, -0.0399600416, -0.0369965, 0.0240333844, 0.033363767, 0.0193968732, -0.011739458, 0.0261747837, -0.034300629, 0.0210698415, 0.00835528132, -0.0168826394, -0.0228479672, 0.0316238813, 0.0563264526, 0.0414896123, 0.0261365455, 0.0131638702, -0.0163090508, 0.0112136677, -0.000536544831, -0.00445965538, 0.0410689823, 0.0022405826, 0.00115315313, -0.00172793726, -0.0130109135, -0.00638595922, 0.0241098627, -0.0139955748, -0.0119306538, 0.0232303608, -0.0104106432, -0.0257541519, -0.0275705177, 0.0193777531, 0.0220831819, 0.0199226625, -0.0111276293, 0.00519576157, -0.0011035616, -0.0256203152, 0.0575501099, 0.018182775, 0.0311267711, 0.0119975731, -0.011500462, 0.000817962, -0.0463842414, -0.010142968, -0.0236509927, -0.0180584975, 0.000328917522, 0.0185651686, 0.0497492962, 0.0260791853, -0.0122461282, 0.0113092661, -0.0406483486, 0.000494421867, -0.00172315736, 0.00181278063, -0.0242437012, 0.00819754507, -0.0334784873, 0.0490227528, -0.00586016895, -0.0146456426, 0.023708351, -0.0246834531, -0.0476461388, 0.0246834531, -0.000558950647, 0.0169208795, -0.0137374597, 0.00916786585, 0.02533352, 0.0210316014, -0.0106400782, 0.0116342995, 0.00483965827, 0.00423738966, 0.00652935635, 0.00152359612, -0.0128579568, -0.0160509367, -0.0193299539, 0.0129344352, -0.0306679, -0.0201903377, -0.010812155, -0.0105827199, 0.0314518027, -0.00201831665, 0.011739458, -0.00582193, -0.00666797347, -0.0404571518, -0.0355434082, 0.0129631143, 0.0170069169, -0.00129177049, -0.0195020307, 0.0283926614, -0.0139477756, 0.000585538917, -0.00164548378, -0.0316621214, 0.0158788599, 0.0154008679, -0.0152383512, 0.0176283065, -0.00327184796, 0.0093399426, -0.00582193, 0.0245687347, -0.0106878774, -0.0122748073, -0.0243201796, -0.00277951732, -0.00540607749, 0.00419676071, 7.8121644e-05, -0.00137900386, 0.00397927454, 0.00434015784, 0.00858471729, 0.0206874479, -0.00723200291, 0.0180680584, -0.00804936793, 0.0404189155, 0.0347403809, -0.0168444011, 0.0165671669, 0.0148655185, -0.00639551878, -0.00183907012, 0.00326228817, -0.0345491841, -0.0148941977, 0.00920132548, -0.0212036781, 0.0410689823, -0.0205536112, -0.00515274238, 0.0226376504, -0.0296354387, -0.00264568, -0.0180106983, -0.0237465892, 0.0280102696, 0.03594492, 0.0202094577, 0.0240142643, 0.0161082949, -0.039386455, -0.00298027345, 0.0142823691, 0.000823339389, 0.0383922309, -0.000874723424, 0.00962195732, 0.00447160518, 0.00990397204, 0.0195402689, -0.00884283241, -0.0214331131, -0.00680181105, 0.00493286643, -0.0053152591, -0.0202859361, -0.010353284, 0.00348216412, 0.0190144796, -0.0168539602, 0.0236318726, 0.00952157937, -0.000221817667, 0.0466901548, -0.0138808573, -0.0109173134, 0.0223890953, 0.00105636, 0.0427897498, 0.0283926614, -0.00727980211, 0.0139573356, -0.0167296827, 0.000461261254, 0.00408921251, -0.0541850552, 0.0263659805, -0.0370729789, 0.0282014664, 0.0351992548, 0.0347212628, -0.0209933631, -0.00875679404, -0.00871855486, -0.0235553943, 0.0374362506, 0.0212419182, -0.00774823315, -0.00465563172, 0.0739165172, 0.00814974587, 0.0278381929, -0.0128770759, 0.0424073562, 0.0332299322, -0.0117968163, -0.0284882598, -0.0134793445, -0.0112710269, 0.01635685, -0.0119402139, 0.00234574056, -0.0213948749, -0.0144448867, 0.0371112153, -0.0137183405, -0.00423978, -0.00302090286, 0.00365185086, -0.0199035425, -0.00929692388, -0.0180011392, 0.0412601791, 0.0198844224, 0.00842698, 0.0436692536, -0.00958371814, -0.0266336557, 0.000890855619, 0.0502846465, 0.0011131214, -0.0184122119, -0.0124946833, 0.0182783734, -0.00373310922, -0.00145189755, -0.00580281, -0.0038119778, -0.0199226625, -0.00645287754, 0.0165576059, -0.0041202819, 0.00350606348, -0.0190813988, 0.0231538806, -0.00105516496, -0.00713640498, 0.0255247168, 0.0188997611, 0.0308208559, -0.0141963307, -0.00743275927, 0.00659627514, 0.00863729604, -0.0252952799, 0.000593903766, -0.00197529746, 0.0297692753, -0.0205536112, -0.0162516925, -0.0251996834, 0.0468431115, -0.00706470618, 0.0471490249, 0.00197290769, -0.0136705413, -0.00342480512, -0.0132499086, -0.030170789, -0.0281632263, 0.0110129118, 0.0196167491, 0.0136036221, 0.0281632263, 0.00548733585, 0.00101692579, -0.0135367038, 0.00656281551, -0.0406865887, 0.000617205806, -0.00848433934, 0.0235553943, 0.0109364325, -0.0418337658, -0.00574545097, 0.00168969797, 0.0216051899, -0.0210889596, 0.0125616016, 0.00794898905, -0.0125711616, -0.0321209915, 0.0186034068, 0.00429474842, 0.0111467484, 0.0309738126, -0.00490418728, -0.048143249, 0.00410594232, 0.0125616016, 0.0164811276, -0.0214331131, 0.0235362742, 0.0252761617, 0.0166627634, -0.0317385979, -0.0200565, 0.00265284977, 0.0272072442, -0.00676835189, 0.0151045136, -0.0191961154, 0.00530569954, -0.00874245446, 0.0359066799, 0.0231538806, 0.0451988243, 0.00557337422, 0.000571796671, -0.00408682274, -0.0201520976, -0.0165384859, 0.0111563085, 0.0167583618, 0.0149133177, 0.0263277404, 0.0323121883, 0.00239592954, 0.0185269285, 0.00192032859, -0.0191005189, 0.00146265223, -0.0118828546, -0.0462312847, 0.000468431128, 0.0138904173, 0.00104082527, -0.00452179415, 0.00983705372, 0.00553513505, -0.00338417594, -0.0206874479, 0.0215478316, -0.0248364098, -0.00120453723, -0.002533352, 0.00206372584, 0.0124277649, 0.00601312611, 0.0235171542, 0.00180680573, -0.0279146712, 0.00105158007, -0.0323121883, 0.0166532043, 0.00899101, 0.00793464947, 0.0323313065, 0.0209742431, -0.00212586462, 0.0655038804, -0.018402651, -0.0215860717, -0.0284309015, 0.0149515569, 0.0148463985, 0.00278429734, 0.0224846937, -0.00703124702, 0.0125138033, -0.0111849885, 0.0173032731, -0.00633816, -0.00961239822, 0.0196741074, -0.00568809221, 0.0172076747, -0.0182688143, -0.0162230134, 0.032943137, 0.0326563418, 0.0251232032, 0.019559389, -0.016595846, 0.0331916921, -0.0221979, -0.00136107916, 0.00100915832, -0.00421827, -0.0129344352, -0.0264998171, 0.0263851, 0.0199417826, -0.0072272229, -0.00705036661, 0.0278955512, 0.00489940727, 0.00198366237, 0.0100378096, 0.0297692753, 0.0245113764, 0.0276661161, 0.00557337422, -0.00455047376, -0.0101525281, 0.019110078, 0.030400224, -0.0183930919, 0.0245496146, -0.0152574712, 0.0360405184, 0.0420632027, 0.0243775379, -0.0134315453, 0.0174179897, -0.0122556882, 0.032465145, -0.00343436492, 0.0182496943, 0.0131925503, 0.00649111718, -0.0147603601, -0.00872333441, 0.00934472308, -0.0221405402, 0.00335310656, -0.00390040618, 0.0105540399, 0.0244922563, 0.0164811276, -0.0239186659, -0.027398441, -0.0255629551, -0.00107667455, -0.0166532043, -0.00804458745, 0.0371494554, -0.00958849862, 0.0286220983, 0.0155060263, -0.0314709246, 0.00863251649, 0.00416569086, -0.00634294, -0.0212036781, -0.0365185067, 0.0140816132, 0.0188424028, 0.0115960604, -0.0025692014, 0.00175900664, 0.00417286111, 0.0313370861, -0.0189093221, 0.0149133177, 0.014492685, 0.0104106432, -0.0106113991, 0.0224082153, -0.0179820191, 0.00261939038, -0.0199417826, -0.00917742588, -0.00567853265, 0.00138856366, 0.0331343338, 0.0228862073, 0.00102170568, 0.0102098864, 0.0463842414, 0.00293725426, -0.0186703261, 0.0182305742, 0.0246834531, 0.0137948189, 0.00201353687, -0.0169877987, -0.0115482612, 0.00435688766, 0.0120071322, 0.00465802196, -0.0277425945, -0.025792392, -0.0390423, 0.00539651792, 0.000843056536, -0.00315952022, 0.0224846937, -0.0188041646, -0.0347212628, -6.91313062e-06, 0.016806161, -0.0335358456, 0.0394246913, -0.0371876955, 0.0161847733, 0.0258688703, 0.0375700891, 0.0154677872, 0.01635685, -0.0198653042, -0.0044453158, 0.0160222556, 0.00242938893, 0.0114526628, -0.0322357081, 0.0341285542, 0.0178481825, 0.0188328438, 0.0250467248, 0.00494242646, -0.0209742431, -0.0146265225, 0.0151236337, -0.0103915231, 0.00742797926, 0.00821188465, 0.014052934, -0.00616130326, -0.0093064839, -0.00432820804, 0.0539556183, -0.0158979781, -0.00365902064, -0.0259835869, -0.0283926614, 0.00376895862, -0.0552175157, 0.0214713532, -0.00391474599, -0.0106878774, -0.00902446918, -0.0191674363, -0.00880459324, 0.0145978434, -0.021184558, -0.00454569375, 0.000465742429, 0.00785817113, -0.0233450774, 0.00456481334, -0.0485256389, 0.0200565, 0.000839471584, 0.0154869063, -0.00450984435, -0.00923956465, 0.0256011952, 0.00836006179, -0.00429235864, -0.0122939274, 0.0103341639, 0.0255247168, 0.0300943106, -0.0182305742, 0.00929692388, -0.00622344203, 0.0304767024, -0.0245304946, 0.0186129678, 0.0251423232, 0.0289471317, 0.00342480512, 0.0239186659, 0.0201520976, 0.00366380066, -0.023249479, -0.0423308797, -0.00136585918, 0.0103246048, 0.0152861504, 0.0187946036, 0.0295016, 0.0227906089, 0.0104106432, 0.00330052758, -0.00431625824, 0.00566897262, -0.00167774817, -0.0118828546, 0.000698464282, -0.00914396718, 0.0114813428, -0.00802068785, 0.00118243007, 0.000374027906, -0.00176856655, -0.0210507214, 0.0118828546, -0.0106496383, 0.000148251886, -0.00693086861, -0.000677552191, -0.0204197727, 0.0250084866, -0.00832660217, -0.0234980341, -0.0167010035, 0.00843654, -0.0127432384, 0.0152574712, 0.00736106047, -0.020725688, 0.011510022, 0.0101907672, 0.0118828546, 0.0038478272, -0.0101716472, -0.0247408114, 0.0168444011, 0.0215287115, -0.0158979781, -0.0241098627, 0.0162899308, 0.00295637408, 0.00211869483, -0.0022083181, -0.00178888114, -0.00232303608, 0.0182974935, -0.0192439146, 0.0240525045, 0.0339755975, 0.0231538806, -0.0124660041, 0.020247696, -0.00633338, -0.0376656875, -0.00469865091, 0.00361122168, 0.0235745125, -0.00981793366, 0.010831275, 0.0107643558, -0.0233068392, -0.0316238813, 0.00922522508, 0.0167296827, 0.0178864207, 0.00181278063, 0.00822622422, -0.00177334645, -0.00130850018, -0.0255820751, -0.0196932275, 0.0150280353, -0.00822144467, 0.0145787233, 0.0137470197, -0.0092347851, 0.00662495429, 0.0321401097, -0.0123226065, 0.0264042206, -0.00153554592, 8.20053247e-05, -0.00880459324, -0.0078247115, -0.011959333, -0.00666319393, 0.0339373574, 0.00973189529, -0.0121696498, -0.0113761844, 0.00460544275, -0.00975101534, 0.026002707, -0.0102098864, -0.0220449418, 0.00244731363, 0.0153626287, -0.003797638, -0.0114909019, -0.0182496943, -0.0165002476, 0.000476497225, 0.0177621432, -0.0165480468, 0.0100760488, -0.0418720059, -0.015630303, -0.00662017474, -0.0129726743, 0.00990397204, 0.00966019742, 0.0051384028, -0.00765263522, 0.0138999764, 0.00457915338, 0.0220831819, -0.0332490504, -0.0146360826, 0.0210698415, -0.00632382, 0.0378951207, 0.0190240387, 0.00878547318, 0.0212610364, -0.027417561, -0.00795854907, -0.0238230694, -0.0214713532, -0.0223126169, -0.0258497503, -0.0059844465, -0.00784383155, 0.0150949536, -0.00795854907, -0.00450028479, 0.0257159136, 0.0154773472, -0.0225420538, 0.00865641609, 0.0199991409, -0.00572155183, 0.0113379452, -0.01427281, -0.0102290064, 0.0226567704, -0.0168252811, -0.0178195033, -0.0156111838, 0.0103246048, 0.0103054848, 0.018402651, 0.00900057, 0.00117705273, 0.00663929433, 0.0135175837, 0.0111085093, 0.000679344637, 0.0291574467, -0.0289088916, -0.0239951462, -0.00106412731, 0.034052074, 0.0198270641, -0.0127623584, 0.00149252673, -0.00526746036, -0.0123512857, -0.0121600898, 0.00726068253, -0.0100282496, 0.000564328046, -0.00398405455, 0.0226950105, -0.00375939882, -0.0249702465, 0.0072750221, 0.0145978434, -0.00299222325, 0.0403806753, -0.00236605527, 0.0113283852, 0.0198844224, 0.0109555526, -0.0102290064, -0.0159266591, -0.017265033, 0.00437600724, -0.0342623927, -0.0093303835, 0.0188041646, 0.00574067142, -0.0158406198, -0.0275131594, 0.0291956868, 0.00951201934, 0.00723200291, 0.0340903141, 0.00139453856, -0.000636325451, -0.0313753262, -0.00645287754, -0.00316669, 0.0190049205, 0.0148559585, -0.00664407434, -0.0214522332, 0.0160413757, 0.0216816701, 0.00557337422, -0.00302329264, 0.0011095365, -0.00328140776, -0.0128388368, 0.0108981933, 0.0123799657, 0.00916786585, 0.0122939274, -0.0141198523, 8.12584622e-05, 0.0121887689, -0.00156422541, -0.00147221214, -0.00172076735, -0.00338178594, 0.0360022783, -0.00725590251, 0.0103915231, -0.00104680017, 0.00523878075, -0.00238159, -0.0147221209, -0.00320492918, 0.0148655185, -0.013584503, -0.0129822344, 0.0242437012, -0.0231347624, -0.00874245446, 0.00436644722, -0.0123034865, 0.0025787612, 0.0199035425, 0.000626168156, 0.00846044, -0.0187181253, -0.0101716472, -0.00759049598, -0.0353330895, 0.0196549874, -0.000899220468, 0.0185842887, -0.000315772777, 0.00289423508, 0.000369248, -0.0199226625, 0.00970799569, -0.0275513977, 0.0206492096, 0.0325033851, -0.0341094323, 0.00892887078, -0.0228097271, -0.00203624135, 0.0330960937, 0.0211080797, -0.0209933631, 0.00526268035, 0.0155729447, -0.00838396139, 0.00368531025, 0.0293295234, -0.00637639919, -0.00724634249, 0.00718898373, -0.0171407554, 0.0234406758, -0.0250084866, -0.00255247159, -0.0102003263, 0.00342958514, -0.0243966579, -0.00645765755, -0.000940447208, -0.00430908846, -0.00272932835, -0.0160318166, 0.00736106047, 0.00631426042, 0.00687351, -0.0146552026, 0.0040844325, 0.0177239049, 2.92209315e-05, -0.0112136677, -0.0167679228, -0.010831275, -0.00141007325, -0.020247696, 0.00247838302, -0.0121696498, 0.0310120527, -0.0201903377, 0.00910094753, -0.00406770315, -0.00682093063, -0.0091869859, -0.0102672456, 0.0132212294, -0.00205655606, -0.00374505902, -0.00356581248, 0.0258115102, -0.0299031138, 0.0259644687, -0.00114897068, -0.00594142731, -0.000360883161, -0.0271498859, 0.0209168829, -0.0135558229, 0.0472255051, -0.00993265212, -0.0226376504, -0.0171885546, -2.8474069e-05, 0.020247696, -0.0244348962, 0.00738496, -0.00357298227, -0.0307252575, 0.0153339496, -0.0323121883, -0.0123417266, -0.0168635212, 0.0134602254, -1.98104844e-05, 0.011290146, 0.0164811276, 0.017284153, 0.0161656532, 0.0171694346, 0.0176761057, -0.00872333441, 0.0247408114, -0.0093542831, -0.0060083461, 0.000758213107, -0.0336696804, 0.00383826718, 0.0168730803, -0.000277085375, 0.00636683917, -0.0133933062, 0.00663451431, 0.018192336, 0.00213422952, 0.0363464318, -0.0102194464, -0.00301851286, -0.0121122906, -0.0187181253, 0.0073754, 0.0382775143, 0.0137374597, 0.0175709464, -6.89726e-05, 0.0320636332, -0.00658671511, -0.0337270424, 0.0325798616, 0.0031643, -0.0213183966, -0.0351610146, -0.00654847594, 0.0360978767, 0.0335358456, 0.014492685, -0.00118780753, 0.0238804277, -0.0500169732, 0.00787729118, -0.00226687198, -0.0171503145, -0.0105636, -0.00709338579, 0.0245878547, 0.000547000905, 0.00613740366, -0.00227523688, 0.0126572, -0.016815722, 0.0204771329, -0.017026037, -0.00536783831, 0.0144448867, -0.0112423468, 0.0217581484, 0.0225802921, -0.0298457537, 0.00265284977, -0.00100318354, 0.00721766334, -0.0225802921, 0.0141198523, -0.0353330895, -0.0285647381, 0.0116629787, 0.00887629203, 0.00751879765, -0.0113092661, -0.00108384446, -0.0129631143, 0.0298075154, -0.0258306302, -0.0137279, -0.00756659685, 0.0108790742, 0.000718778872, 0.0158406198, -0.00990397204, 0.0072272229, 0.00464129215, 0.00423738966, 0.0249511264, 0.0182688143, 0.0190144796, 0.00585538894, -0.00745665887, 0.018660767, 0.0136992205, -0.0180967376, -0.00666319393, -0.00355147268, 0.000844849, 0.00170642766, -0.0122365681, 0.00747099845, 0.00302568264, -3.21897023e-05, 0.000696074334, 0.00661539473, -0.0090196887, -0.0217199083, -0.00608482491, 0.00399839412, 0.00128579559, -0.0311458893, 0.0210889596, 0.00787729118, -0.000488745747, -0.0196358673, -0.0101907672, 0.0270925276, 0.0143301683, 0.0161752142, 0.00627602125, 0.0356198847, 0.0134411054, -0.0298648737, -0.0216816701, -0.0198461842, 0.00495198602, -0.0451605842, -0.0296354387, -0.00106711476, -0.0051623024, -0.0261747837, 0.0283353031, 0.0312414877, 0.0369391404, -0.0209742431, 0.0240333844, 0.0167392436, -0.0197888259, 0.0442046039, 0.00877113361, -0.029482482, -0.0252952799, -0.00147221214, 0.0242628194, 0.0097462358, 0.0265762974, -0.0031308406, -0.00684961025, 0.0109937917, -0.00524834078, -0.0329240151, -0.00824534334, -0.00924912468, -0.00599878654, -0.0214331131, -0.0463842414, 0.000308304152, 0.0239569061, -0.016595846, 0.0115482612, 0.0381819159, -0.00257637119, -0.00450984435, 0.0028894553, 0.0266718939, 0.0191387571, -0.0028559959, 0.0217963867, 0.0328093, -0.0118350554, 0.0178673, 0.00631904043, 0.0185651686, 0.0156972222, 0.0143492883, -0.00735150091, 0.029692797, 0.0356581248, 0.0243201796, 0.00765741477, -0.00990397204, -0.00522922073, 0.0148750786, -0.00942120142, -0.00278907712, -0.00466519175, -0.0131543111, 0.023708351, 0.0043975166, -0.00141963316, -0.00786295068, -0.000756420661, 0.000101946505, 0.00898144953, 0.0191961154, 0.0120549314, -0.0183930919, 0.00523878075, -0.00825968385, 0.00528658, -0.00361361145, 0.0139955748, 0.00966975652, 0.0133072678, 0.00311411102, 0.0178959817, 0.00111849885, 0.00501890481, 0.00744709885, 0.0103054848, -0.0182496943, -0.00985617284, 0.000567913, 0.0207065679, -0.00791553, 0.0096267378, 0.0266527757, 0.000822144444, 0.0166818835, -0.00587450853, 0.00967931654, -0.0167392436, 0.00592230773, 0.000773747859, -0.0128197167, -0.00209360034, 0.00993265212, 0.00102588802, 0.0214331131, -0.0306105409, 0.0153435096, -0.00109101436, 0.0156685431, 0.00997089129, 0.0197697058, 0.0171503145, 0.0105636, 0.0176761057, 0.0309355743, -0.0141102923, -0.00244014384, 0.000895038, 0.00511928322, 0.0160413757, 0.0275896378, 0.00627124123, -0.0091152871, 0.00373310922, 0.010812155, -0.00698344782, -0.0197505858, 0.023020044, -0.00798244867, 0.0118541755, 0.00970321614, 0.00823100377, 0.026710134, -0.00251184241, -0.0274940394, 0.00959805772, -0.00560205383, 0.000601372332, 0.0063286, 0.0170069169, -0.0197123457, 0.00878547318, 0.002590711, 0.0225420538, -0.00261700037, 0.0355434082, -0.00204938627, -0.0255438369, 0.0059605469, 0.00415852107, -0.00670621311, -0.00450267456, 0.0266145356, 0.0129248751, 0.00473689, 0.00350845349, 0.00927302428, 0.00563551346, -0.0121027306, -0.0134315453, 0.0035012837, -0.0294633619, 0.0053630583, 0.00383826718, 0.0134028662, 0.0051623024, 0.00104500772, -0.0311267711, 0.0180202592, 0.003224049, -0.00725590251, -0.0205536112, 0.0194637906, 0.0134506654, 0.0166245252, -0.0106018391, 0.00245687342, 0.000855603779, 0.011280586, 0.00684483023, -0.00820232462, -0.00535349874, 0.00271976856, -0.00395059492, -0.0104202023, 0.00437839702, 0.00631904043, 0.0157259014, -0.00796333, 0.00757615641, 0.0249893665, 0.00690218946, -0.0133072678, 0.0314518027, -0.00426845904, -0.0221023019, 0.000102693368, 0.00559727382, -0.00628080079, -0.0148846377, -4.08906308e-05, -0.00654369593, 0.00789163075, -0.0176569857, 0.00282492652, -0.0113761844, 0.0115960604, 0.009674537, 0.0132021103, -0.000354012038, 0.000383288978, 0.00905792881, -0.0177812632, -0.01795334, -0.000771357911, -0.0134219853, 0.0150280353, 0.00371159962, -0.00979881454, -0.000327722548, 0.00648633717, 0.00343914493, -0.000841861533, -0.00777691277, -0.0189093221, 0.0210889596, 0.0227332488, -0.00949768, -0.0169208795, 0.0149993561, -0.0206683278, 0.00744231883, -0.0235745125, -0.0405718721, 0.0147699201, 0.0128292767, 0.0169113204, -0.00741841923, 0.0182974935, -0.00876157358, 0.0096506374, 0.0208404046, -0.00889063161, -0.0177908223, 0.0182210151, 0.0124086449, -0.00238517486, -0.000227045704, 0.00690696901, -0.0232303608, -0.0195498299, -0.0134219853, 0.00471060071, 0.0053630583, 0.00396732474, 0.02166255, 0.0201903377, 0.00728458213, 0.00103544793, 0.0138330581, 0.00755703682, -0.0154008679, 0.00754747679, 0.0132212294, 0.0150280353, 0.0143110491, -0.00314996042, -0.00170523266, 0.00359688187, 0.0019107688, 0.0290809684, -0.0106305182, -0.000140335149, -0.0107739158, -0.0269778091, 0.0120740514, -0.00467714155, -0.0156207439, -0.0139286565, -0.00802546833, -0.0232112408, -0.0113188252, -8.18279386e-06, 0.00852735806, -0.00216410402, 0.0145882834, 0.00534393871, -0.0150853945, -0.000807207194, -0.0103341639, -0.0184408911, -0.00580281, 0.00516708195, -0.0118924147, 0.030400224, 0.0258688703, 0.0141485324, 0.0233259574, 0.0158597399, 0.0170642771, -0.0111371893, 0.00873767491, -0.00490896683, -0.000285151473, -0.0218346268, 0.00723678293, -0.0209933631, -0.0151714329, -0.00472494029, -0.00493764644, -0.0207639262, -0.0144066466, 0.0100473696, 0.00231825607, -0.00923000555, 0.0103150448, 0.0143875275, 0.00759049598, 0.0127814775, -0.000371637958, -0.002533352, 0.00377851841, 0.00161560939, -0.00857515726, 0.00277234754, 0.00682093063, 0.00288467528, 0.0190527197, 0.00710772537, 0.0108025949, -0.0261174254, 0.00655325595, -0.00867075566, -0.0303619839, 0.0266718939, -0.00319536938, 0.00586494897, 0.0175422672, 0.0458488911, 0.00855125766, -0.0132499086, 0.0137661388, 0.0176283065, -0.0192630347, -0.0196358673, -0.00636205962, -0.00423260964, -0.00537261833, -0.0051145032, -0.0150662744, -0.00326706818, -0.00151045143, 0.00368292024, -9.98926407e-06, 0.0170355979, 0.000197171263, 0.00736106047, 0.0260791853, 0.0288132932, 0.00471060071, -0.00845566, -0.0109077534, 0.0079681091, -0.0130491527, 0.0175135881, 0.00639073877, -0.0247216914, -0.000354310789, 0.0214522332, 0.0052818, -0.0149993561, 0.002216683, -0.00997089129, -0.0143779675, 0.023249479, -0.00235769036, -0.0037641786, -0.00431147823, 0.0304767024, 0.00680181105, 0.0185173694, 0.0135367038, -0.00398644432, -0.0012726509, 0.0112327868, 0.00623300206, -0.00789641, -0.00868987571, 0.0123034865, -0.00539651792, 0.0048133689, -0.0101525281, 0.00458632316, 0.0183452927, 0.0169304386, -0.0394629315, 0.0166627634, 0.0148846377, 0.00660105515, 0.00796333, -0.0489080325, -0.00594620733, 0.00997089129, -0.0373406522, -0.0178673, 0.0241098627, -0.00688784942, -0.0159935765, 0.0149037577, -0.00909616798, 0.0224846937, 0.0196549874, -0.0228479672, 0.0340138339, -0.0256203152, 0.00188328431, 0.00284643611, 0.0272263642, -0.00220951322, 0.00624256162, 0.000394641276, -0.026710134, -0.0134602254, 0.00301134284, 0.00518620154, -0.0251996834, 0.0094116414, 0.000644690299, -0.0160891749, 0.00369248, 0.0149802361, -0.0113188252, -0.0395776518, -0.0132977078, -0.00577891059, 0.0278764311, 0.00543953711, 0.0036877, -0.00859905686, -0.000901012914, -0.0355434082, -0.00337222614, 0.000755823159, -0.00119617232, -0.00525790034, 0.0247025713, 0.00827402342, -0.00742319925, 0.00978447497, -0.0112423468, -0.0130491527, -0.00393625535, -0.0190622788, -0.0122652473, -0.0129822344, 0.00526268035, -0.000488745747, -0.00363751105, 0.0152861504, -0.0221787803, 0.0147508, -0.00501412479, -0.00569765223, 0.0198844224, 0.00663929433, 0.0150089152, 0.0254482385, 0.0048133689, -0.0021748587, -0.00132045, 0.0233259574, -0.0127527984, -0.00250467262, 0.0197314657, -0.0015881249, -0.022331737, 0.00361839146, -0.00527224, -0.0128197167, 0.0142536899, -0.00739929965, -0.00312606082, 0.0207830463, -0.0144448867, 0.00491852686, -0.0127623584, -0.0121505298, 0.00408204272, -0.0222170185, -0.000594202487, 0.0299987122, 0.0205727294, 0.0164906867, 0.0279146712, -0.00267435936, 0.0211654399, 0.0105253607, -0.00920132548, 0.00761917559, -0.00633338, 0.00674445229, -0.00533437915, -0.01797246, -0.00613262365, 0.00143636274, -0.0141485324, 0.0260600671, -0.00891453121, -0.00676835189, 0.00643853797, -0.00738496, 0.020955123, -0.00168850296, -0.00508582359, 0.019110078, 0.0256203152, -0.0239760261, 0.00216290914, -0.00123321661, 0.0289662518, 0.0104297623, 0.0196358673, 0.00707904575, -0.00274127815, -0.000926704961, -0.00551123545, -0.0235553943, 0.0253526401, 0.00455047376, 0.00527224, -0.0207065679, 0.011280586, 0.00185938482, 0.00697388779, -0.00330769736, -0.0304767024, -0.0114048636, 0.000469924853, -0.0164715685, 0.00520532159, 0.0210124813, -0.00756659685, 0.020247696, -0.00289662508, 0.00152957102, -0.000738496, 0.0157737, -0.00634294, 0.00801112782, -0.0084461, -0.0119880131, -0.0198270641, 0.00192630349, 0.00301851286, 0.0164715685, -0.0031427904, 0.00469865091, -0.00132164499, -0.0148846377, -0.0102385664, -0.0145404842, 0.00585538894, 0.00252618222, 0.0119497739, 0.0141007332, 0.0141102923, -0.0116342995, 0.00114658079, 0.00349650369, -0.0255055968, 0.00728458213, 0.0224846937, -0.00357298227, 0.0203050561, -0.00164189888, 0.0266145356, 0.0229244456, -0.0220831819, 0.0252570417, 0.024626093, -0.00696910778, 0.00777691277, 0.00994221121, 0.0157832615, -0.0184313301, 0.00262656016, 0.00394820515, -0.00899579, 0.0209742431, 0.00703602657, 0.0257732719, 0.035466928, 0.0236892309, -0.0158023797, -0.00802068785, -0.0185556076, -0.0127432384, 0.00978925452, 0.00442858599, 0.00925390422, -0.0170929562, -0.0206300896, -0.000549689576, 0.0242819395, -0.00750923762, 0.0138521772, -0.000865163631, 0.00436883746, -0.0142154507, -0.00702646701, -0.0100664897, 0.0196741074, 0.0203815345, -0.00837440137, 0.00994221121, 0.000935069809, 0.0128101576, 0.00629036082, 0.00253574201, 0.00330769736, -0.00508104358, 0.0142058907, 0.000711609, 0.0102959247, -0.00200039218, -0.0273028426, 9.0295478e-05, 0.00241385424, 0.0136705413, 0.0284691416, 0.00908182748, 0.00762873562, -0.0078486111, -0.0203815345, -0.0116342995, 0.0445105173, 0.0090435883, 0.0065819351, 0.0151427528, 0.00476795947, 0.00236605527, 0.00478468928, 0.0348933376, -0.0151714329, -0.00516708195, -0.00888585206, -0.00280341692, -0.00358732208, 0.00798722822, -0.00241026934, -0.00333398674, 0.015658984, -0.00679703103, 0.00539651792, 0.0217963867, 3.82019316e-05, 0.0267674923, 0.0114144236, 0.00152240111, -0.0128388368, -0.0040963823, 0.0149228768, -0.0175805073, -0.0196932275, 0.0184886903, -0.000654847594, -0.0101907672, 0.0162994917, -0.0113188252, -0.0123226065, 0.000779722701, -0.015888419, 0.0238995478, 0.0137661388, 0.0300751906, 0.0132690286, 0.00388845638, -0.0073754, -0.00579325, -0.0109459925, -0.0144162066, 0.0189475603, 0.0123226065, 0.00822144467, 0.00168730807, -0.0240716245, -0.0214331131, -0.0139382156, -0.00879025366, -0.000684124534, -0.0012320216, -0.0203624144, -0.00277951732, 0.000583746412, 0.0025094524, 0.0215095934, 0.00371398963, 0.00464368192, 0.00546821626, 0.0140816132, -0.00437600724, -0.000462456228, -0.000127190404, -0.029482482, -0.0210507214, 0.00912962668, -0.00508104358, 0.01797246, -0.0105540399, 0.00400317414, -0.00500456523, -0.0165671669, 0.00708860578, -0.0111085093, -0.0158119407, -0.0261939038, -0.0244922563, 0.0203815345, -0.00270303874, 0.011529142, 0.0162994917, 0.00753313722, 0.0325033851, 0.00822144467, -0.00399839412, -0.00447638519, -0.00142560794, 0.0155825047, -0.00238039484, 0.000825729338, -0.00369964982, -0.00237561506, -0.00122843671, 0.00997089129, 0.0081449654, 0.0235553943, -0.00592708774, -0.00633816, 0.0146934418, -0.00493286643, -0.0126285208, 0.0141867716, -0.0043616672, 0.0122748073, 0.00947378, -0.00466519175, -0.0109937917, -0.0116247395, -0.000579265296, -0.00361600146, 0.00773389358, -0.0127814775, -0.0028655557, 0.000213900945, 0.00875679404, 0.0325607434, -0.0137661388, 0.0028201465, 0.0317003578, 0.0111754285, 0.000978686498, 0.00864685606, -0.0073467209, -0.00185938482, 0.0063286, -0.00245209364, -0.00357776228, 0.000780917704, 0.00376895862, -0.0225994121, 0.00627124123, -0.00878069364, -0.0172459129, 0.00499022566, 0.000156840775, -0.0236318726, -0.0252188016, 0.0277425945, 0.00362078147, -0.0112614669, -0.00374027924, 0.00803024787, 0.0025692014, -0.0518906973, -0.00842698, -0.0236701109, 0.000166400598, -0.00638117921, -1.5581385e-05, -0.0121218506, -0.031566523, -0.00620432245, -0.000762395561, 0.0191865563, -0.010362844, 0.00723678293, 0.0104202023, -0.00319297961, -0.0138043789, -0.00854169857, 0.00510016317, -0.00662495429, -0.00240548933, 0.000196723151, -0.0233450774, -0.00875201449, 0.00113761844, 0.00379046821, 0.0095311394, -0.0127336783, -0.00780559191, 0.000961956801, -0.00182353542, 0.00994221121, -0.0203241743, 0.00876635406, 0.00831226259, 0.0097223362, -0.0125329224, 0.00802546833, -0.00208762544, -0.0019274985, 0.0136131821, 0.0157259014, -0.00765741477, 0.0174562298, 0.0176091865, 0.00740885967, 0.00863251649, -0.011519582, 0.00473689, -0.00146384723, 0.00966019742, 0.0187946036, 0.00999001, 0.0096506374, -0.0015881249, -0.0165384859, 0.0253526401, -0.00392669579, 0.00857037771, 0.00540129747, 0.00373788923, -0.00105158007, -0.00124158151, -0.00981793366, 0.0111849885, 0.00268630916, 0.0183166135, -0.0166436452, 0.00573111139, 0.00410594232, 0.016595846, 0.0102098864, -0.00449072476, 0.00746621843, -0.0090674879, 0.00535349874, -0.0349315777, -0.0468048714, 0.0160318166, -0.0172937121, -0.00982749369, 0.00272693834, 0.00284882612, 0.00162038929, -0.00400078436, -0.00745187886, -0.0223890953, 0.0110893901, -0.0235171542, -0.0242054611, -0.00209838036, 0.0163664091, 0.0134506654, -0.00293247448, 0.015200112, 0.00617564283, 0.0016072446, -0.00122305937, 0.0192917138, -0.00654847594, 0.00841742, 0.0171694346, 0.0113857444, -0.00131208519, -0.00507148402, 0.0214522332, -0.0195307098, -0.0174657889, 5.37366395e-05, -0.000696074334, -0.00630470039, -0.019578509, 0.0233450774, -0.00733238086, -0.0203050561, -0.00267435936, -0.000300686166, -0.0201712176, 0.0192917138, 0.00836006179, 0.00139334355, 0.0105636, 0.0117968163, 0.0110415909, -0.0120166922, 0.00451462436, -0.0153052704, 0.0151618728, 0.00594620733, 0.00529613951, 0.00662017474, 0.0376083292, -0.011280586, -0.00162636419, -0.00836006179, -0.00217724871, -0.0206492096, -0.00204580114, 0.00213064463, 0.000669784786, -0.0126285208, 0.00439512683, -0.00238517486, 0.0256203152, 0.00409399252, -0.00444770558, -0.00776257273, -0.00647677714, -0.0041561313, 0.00394103536, 0.0192343555, 0.0198079441, -0.00985617284, 0.0137183405, 0.0259644687, 0.0145978434, -0.0324077867, 0.00803024787, -0.0163664091, 0.0040605329, 0.00127623579, -0.0404953919, -0.0124086449, -0.00637639919, 0.0133837461, -0.00990397204, 0.0204197727, 0.0153148295, -0.0211272, 0.0160031375, -0.0105636, -0.00916786585, -0.0107547967, 0.0277043544, 0.0152383512, -0.00628080079, -0.0176569857, 0.0127145592, 0.00900057, -0.00439273659, -0.0147508, 0.0190718379, 0.00761917559, -0.00691174902, -0.00858949684, 0.0167679228, 0.00361361145, 0.00613262365, 0.0282205846, 0.00278668711, 0.00767175481, 0.00303046266, -0.00196693279, 0.00112865609, -0.0392335, 0.034530066, 0.00416091131, 0.000539831, 0.0191961154, 0.00736106047, -0.000875320926, 0.0123321665, -0.00328379776, 0.00482292846, 0.00596532691, 0.00570243178, -0.00828836299, -0.00211511, 0.0121122906, 0.0029014051, 0.0101047289, 0.00835050177, -0.0188997611, 0.0156398639, -0.00439512683, 0.0158119407, -0.012198329, 0.0166340843, 0.00944988057, -0.0109746717, 0.000760603114, -0.0104871215, 0.00274844794, -0.0136323022, -0.0169782378, -0.0323313065, -0.0406865887, 0.00450267456, -0.0164811276, 0.0173893105, 0.0157641415, 0.0141294124, -0.0110224709, 0.00793464947, -0.00175303174, -0.00641463837, 0.0109364325, -0.0146265225, 0.0171981137, 0.00327662798, 0.0046938709, -0.0304575823, -0.0176569857, -0.00983705372, 0.0113475053, -0.00754269725, -0.0102672456, -0.020725688, 0.0167105626, -0.00406292314, 0.0304767024, -0.0255247168, -0.00223938748, 0.00434732763, 0.0128388368, 0.0127527984, 0.00120692712, -0.0166340843, -0.00493286643, -0.0180393774, -0.0226758905, 0.0101812072, -0.00162636419, 0.00910094753, -0.0221405402, -0.0267292541, -0.0135653829, 0.00915830676, -0.0113761844, 0.0203432944, -0.011290146, -0.00263851, 0.00394103536, -0.0079442095, 0.0114335436, 0.0136801, -0.00808282662, 0.0125233624, -0.00744709885, -0.0211654399, -0.00125711621, 0.0110320309, -0.00381675758, 0.0141294124, 0.0269969292, -0.00790119, -0.00133717968, 0.00129894039, -0.00447160518, -0.00578847, 0.0134028662, -0.0150567144, 0.0250276066, -0.0127145592, -0.0110989502, 0.00465085171, 0.0208977647, -0.00508582359, -0.0372068137, -0.00171120756, 0.000348037167, -0.0273219626, 0.00317385979, -0.0100091305, 0.0163759701, -0.0123704057, -0.0147221209, -0.0198653042, -0.00461978232, 0.00689262943, 0.0132212294, -0.0132785887, 0.00506670401, -0.0110129118, -0.00511928322, 0.0100951688, 0.00934950262, -0.0162325725, 0.0241672229, -0.00164309388, 0.000759408111, -0.00344870472, -0.0104202023, -0.00420632027, -0.015429548, -0.0222934969, -0.0129248751, -0.00015385334, 0.00836006179, 0.0217007883, -0.00236008037, -0.00695954822, 0.028105868, 0.020955123, 0.00432103826, -0.037531849, -0.00977969449, -0.00785817113, 0.0128197167, 0.00197768747, -0.000721766322, -0.00601312611, 0.0155825047, 0.00145787233, -0.019559389, 0.0118541755, -0.0144353267, -0.021184558, 0.017733464, -0.0276087578, -0.00507148402, 0.0142058907, -0.0104871215, -0.00209001545, -0.0125520425, 0.0144257667, -0.00659149513, -0.0112136677, -0.0112041077, -0.0131638702, 0.0142632499, -0.0174562298, -0.000595098711, -0.0104202023, 0.00249272282, -0.00400317414, -0.0102863647, -0.000841264089, -0.00894321, -0.0304958224, 0.00841264054, 0.0311267711, -0.00234096055, 0.023708351, 0.00848433934, 0.01427281, 0.00432581827, 0.0227141306, -0.0266527757, -0.0209742431, -0.00492808642, 0.00555903465, 0.00249033282, -0.0180776175, -0.0183548518, 0.013355067, -0.0110702701, 0.0123608457, -0.000637520396, -0.0210698415, -0.00545387669, -0.00987529289, 0.00246404321, -0.00607048487, 0.00423260964, 0.00239234464, -0.000368053035, -0.00586494897, 0.0102098864, 0.00119975721, 0.00454330398, -0.00825968385, -0.0219302252, -0.010831275, 0.00662495429, -0.000902207918, 0.00636205962, 0.00432342803, 0.0102290064, 0.0183261726, -0.00930170342, -0.000613620854, -0.0028894553, 0.000950604503, 0.0234980341, 0.0173128322, 0.00129177049, 0.00493286643, 0.011529142, -0.00218561362, -0.0251805633, 0.00808282662, -0.00155347062, -0.0280102696, 0.00414657127, 0.0135749429, -0.0205153711, -0.00196573767, 0.0127049992, 0.00579803, -0.00961717777, -0.0054108575, -0.00633338, 0.00718898373, -0.0174179897, 0.00149730663, 0.00142321805, 0.0114431037, -0.00977013446, -0.00305197225, -0.0073706205, 0.00357776228, 0.00829314254, 0.00520532159, -0.0169304386, -0.00669187307, -0.00695954822, 0.00982749369, -0.00727980211, 0.0127336783, 0.00973667577, -0.00613262365, 0.00585060893, 0.00157498021, 0.0155347055, -0.00345826452, 0.016806161, -0.0361934751, 0.00274605793, -0.00434493786, -0.00553991506, 0.00312367082, -0.00349650369, -0.014731681, 0.00379285822, 0.0240142643, -0.00437600724, 0.0217772666, -0.0109555526, 0.0153626287, 0.0105636, -0.0141963307, -0.0130682727, 0.00199083239, -0.016815722, 0.0162134524, 0.00631426042, -0.0032001494, -0.0354286879, 0.0204771329, -0.00768609438, -0.0222934969, 0.000212556595, -0.0181349758, -0.000614815857, -0.00591274817, -0.00462934235, 0.00253574201, 0.00648633717, -0.00687351, -0.019349074, -0.013823498, -0.0470725484, -0.0428662263, 0.0169877987, -0.0277808346, -0.00174108206, -0.0120931705, 0.00456242356, -0.0130395927, 0.0161369741, 0.00291574467, 0.00341524533, -0.00100856088, -0.0156398639, -0.0121218506, 0.00954547897, 0.0179246608, 0.00135868927, 0.000979881384, 0.0115960604, -0.00120931712, 0.0221405402, 0.0111658685, -0.00410355208, 0.0139668956, -0.00681615109, -0.00852257852, -0.0120071322, -0.00499500521, 0.00202070666, 0.0153721888, -0.0278573129, -0.0122843673, 0.0028655557, -0.0208977647, -0.0391570181, -0.0127241192, 0.00841742, 0.00540129747, 0.00406531291, 0.00587928854, 0.0354286879, 0.00663451431, -0.0204006527, -0.0278381929, -0.0170929562, -0.00184146012, -0.0222552586, 0.00762395561, 0.0330769718, -0.00501412479, -0.000179844094, -0.0262703821, -0.0127527984, -0.000457975082, 0.000687112, -0.00834094174, -0.0034869439, -0.00571199181, 0.0268439706, 0.0228288472, 0.004493115, -0.0148655185, 0.000959566794, 0.00812584627, 0.0072272229, -0.0172076747, 0.00840308052, -0.00199800218, -0.0025692014, 0.00570243178, -0.0180106983, 0.00274605793, -0.00861339644, 0.0127623584, -0.00738974, 0.00179007603, -0.0108599542, 0.000832899241, -0.00454330398, 0.0248364098, 0.00561639341, -0.00584582938, -0.0301516689, -0.0116725387, 0.0161369741, 0.0131351911, 0.00249989261, -0.0120549314, -0.000826326839, 0.00606092531, -0.000959566794, -0.00589362811, -0.0273028426, -0.00330291735, -0.0118541755, -0.0342432708, -0.0182783734, -0.00579803, 0.00618520286, -0.0105827199, -0.00705992617, 0.0256203152, 0.0149897961, 0.0339564756, 0.00350845349, 0.00173032726, 0.00586494897, 0.0101525281, -0.0498257764, 0.00890497118, -0.000675162184, 0.03225483, 0.0131638702, -0.00750445761, 0.00110595149, -0.00892409123, 0.0147890402, -0.00163950899, 0.000771357911, -0.0174849089, -0.0101047289, -0.0418720059, 0.0242437012, -0.000566419272, -0.0225994121, -0.0096028382, -0.00711728539, -0.00743275927, -0.013823498, -0.022350857, 0.00517664198, -0.0110224709, 0.0016000747, 0.0181732159, -0.00912006758, 0.0112614669, 0.0037761284, -0.00398644432, 0.000521607639, 0.000575680344, 0.00875201449, 0.00633338, 0.0024855528, -0.0192152355, 0.00782949198, -0.0127719184, 0.0130300336, 0.0100378096, 0.00155586051, 0.00385499699, -0.0022525324, -0.0114144236, -0.00542041752, -0.00105994497, -0.0142632499, 0.0118732946, -0.0100186905, 0.00623300206, -0.0256394334, 0.00180919573, -0.00420871, -0.0133359469, 0.013584503, 0.000414059643, -0.0151523128, -0.0066775335, 0.0131065119, -0.0173988696, -0.00532003911, 0.0109364325, 0.0180393774, 0.0214904733, 7.14372436e-05, 0.000795854896, -0.0264424589, 0.00420154026, -0.00908660796, -0.00789641, 0.0184600111, 0.00829314254, -0.00564029301, 0.00771955354, -0.00812584627, 0.0182401352, 0.0148368385, -0.0301899072, 0.00855603814, 0.0135175837, 0.0066297343, -0.0134124262, 0.00480619911, -0.0153530687, -0.0116438596, 0.0127910376, -0.0239951462, -0.00291574467, -0.00923000555, -0.00297310366, 0.0154486671, 0.0053152591, -0.000321747648, 0.014062494, 0.0310311727, 0.0207065679, 0.00882371329, -0.015888419, -0.0369200222, 0.00188447931, 0.0250467248, 0.00531047955, 0.0105636, -0.00797766913, -0.00999957, -0.00273171836, 0.0112041077, -0.0167392436, 0.0208786447, -0.0148750786, -0.0176283065, -0.0121122906, -0.0168444011, -0.00676835189, -0.003800028, 0.00336266635, 0.00935906265, -0.00146145734, 0.00294203428, 0.00403902354, -0.0211272, -0.00907704793, -0.00535827829, -0.0231921207, 0.00636683917, 0.0257159136, -0.00622822205, -0.00439512683, 0.0080398079, 0.00958371814, 0.0392335, -0.000312785327, 0.00652457634, 0.017045157, 0.0136323022, 0.0399600416, 0.0199609026, 0.0061039445, -0.0021688838, 0.00107428466, 0.0109651126, -0.00503324484, -0.0177908223, 0.0184122119, 0.0208786447, -0.00526268035, 0.00340807554, 0.0112041077, -0.0201138593, 0.0107261166, 0.0197314657, 0.0146074034, -0.00122724171, -0.0187372454, 0.00138378376, 0.0162421316, -0.0015773701, -0.00652457634, -0.0288132932, -0.00034893339, 0.00168013817, 0.00562117342, -0.000606152287, 0.034778621, -0.0235553943, 0.0028416561, -0.00514796237, 0.0225229338, 0.0117107779, 0.00729414169, -0.00225492218, 0.0104680015, 0.0198461842, 0.000756420661, -0.00396015495, 0.023708351, -0.0112710269, -0.00209957524, -0.00520054158, -0.0097462358, -0.0289471317, 0.0102098864, -0.0120836115, -0.0166723244, -0.00412745168, 0.00475123, -0.0103150448, 0.0040844325, 0.00788685, -0.0135558229, 0.0029037951, -0.0107452367, 0.00693086861, -0.0123799657, -0.00156781031, 0.0210889596, -0.0162325725, 0.000631545554, -0.00748055847, -0.00740407966, -0.0160222556, 0.00530091953, -0.00591274817, -0.0198653042, 0.000729533669, 0.0102385664, 0.00681615109, 0.00768131437, 0.0128675159, 0.00407726271, -0.00714596454, 0.0114909019]
|
21 Aug, 2024
|
How to Get Current Date and Time using Python
21 Aug, 2024
In this article, we will cover different methods for getting data and time using the DateTime module and time module in Python.
Different ways to get Current Date and Time using PythonCurrent time using DateTime objectGet time using the time moduleGet Current Date and Time Using the Datetime ModuleIn this example, we will learn How to get the current Date and Time using Python. In Python, date and time are not data types of their own, but a module named DateTime can be imported to work with the date as well as time. Datetime module comes built into Python, so there is no need to install it externally. To get both current date and time datetime.now() function of DateTime module is used. This function returns the current local date and time.
Current date-time using DateTime In this example, we will use the DateTime object for getting the date and time using datetime.now().
Python
# Getting current date and time using now().
# importing datetime module for now()
import datetime
# using now() to get current time
current_time = datetime.datetime.now()
# Printing value of now.
print("Time now at greenwich meridian is:", current_time)
Output:
Time now at greenwich meridian is: 2022-06-20 16:06:13.176788Time complexity: O(1)Auxiliary space: O(1)
Attributes of DateTime using DateTime timedate.now() have different attributes, same as attributes of time such as year, month, date, hour, minute, and second.
Python
# Python3 code to demonstrate
# attributes of now()
# importing datetime module for now()
import datetime
# using now() to get current time
current_time = datetime.datetime.now()
# Printing attributes of now().
print("The attributes of now() are :")
print("Year :", current_time.year)
print("Month : ", current_time.month)
print("Day : ", current_time.day)
print("Hour : ", current_time.hour)
print("Minute : ", current_time.minute)
print("Second :", current_time.second)
print("Microsecond :", current_time.microsecond)
Output:
The attributes of now() are :Year : 2022Month : 6Day : 20Hour : 16Minute : 3Second : 25Microsecond : 547727Get a particular timezone using pytz and datetimeIn this example, it can be seen that the above code does not give the current date and time of your timezone. To get the date and time for a particular timezone now() takes timezone as input to give timezone-oriented output time. But these time zones are defined in pytz library.
Python
# for now()
import datetime
# for timezone()
import pytz
# using now() to get current time
current_time = datetime.datetime.now(pytz.timezone('Asia/Kolkata'))
# printing current time in india
print("The current time in india is :", current_time)
Output:
The current time in india is : 2019-12-11 19:28:23.973616+05:30Get Current Time In UTC using datetime ModuleUTC Stands for Coordinated Universal Time, These times are useful when you are dealing with Applications that have a global user for logging the events. You can get the current time in UTC by using the datetime.utcnow() method
Python
from datetime import datetime
print("UTC Time: ", datetime.utcnow())
Output:
UTC Time: 2022-06-20 11:10:18.289111Get Current Time in ISO Format using datetimeisoformat() method is used to get the current date and time in the following format: It starts with the year, followed by the month, the day, the hour, the minutes, seconds, and milliseconds.
Python
from datetime import datetime as dt
x = dt.now().isoformat()
print('Current ISO:', x)
Output:
Current ISO: 2022-06-20T17:03:23.299672Get the current time Using the time ModuleThe Python time module, allows you to work with time in Python. It provides features such as retrieving the current time, pausing the program’s execution, and so on. So, before we begin working with this module, we must first import it.
Get the current time using the time Here, we are getting the current time using the time module.
Python
import time
curr_time = time.strftime("%H:%M:%S", time.localtime())
print("Current Time is :", curr_time)
Output:
Current Time is : 16:19:13Get Current Time In Milliseconds using time Here we are trying to get time in milliseconds by multiplying time by 1000.
Python
import time
millisec = int(round(time.time() * 1000))
print("Time in Milli seconds: ", millisec)
Output:
Time in Milli seconds: 1655722337604Get Current Time In Nanoseconds using time In this example, we will get time in nanoseconds using time.ns() method.
Python
import time
curr_time = time.strftime("%H:%M:%S", time.localtime())
print("Current Time is :", curr_time)
nano_seconds = time.time_ns()
print("Current time in Nano seconds is : ", nano_seconds)
Output:
Current Time is : 16:26:52Current time in Nano seconds is : 1655722612496349800Get Current GMT Time using time Green Mean Time, which is also known as GMT can be used by using time.gmtime() method in python just need to pass the time in seconds to this method to get the GMT
Python
import time
# current GMT Time
gmt_time = time.gmtime(time.time())
print('Current GMT Time:\n', gmt_time)
Output:
Current GMT Time: time.struct_time(tm_year=2022, tm_mon=6, tm_mday=20, tm_hour=11, tm_min=24, tm_sec=59, tm_wday=0, tm_yday=171, tm_isdst=0)Get Current Time In Epoch using time It is mostly used in file formats and operating systems. We can get the Epoch current time by converting the time.time() to an integer.
Python
import time
print("Epoch Time is : ", int(time.time()))
Output:
Epoch Time is : 1655723915How to Get Current Date and Time using Python – FAQsHow Do You Get the Current Date with a Specific Time in Python?To get the current date with a specific time in Python, you can use the datetime module to combine today’s date with a specific time:
Example:
from datetime import datetime, time# Get today's datetoday = datetime.today().date()# Specify a timespecific_time = time(15, 30) # 3:30 PM# Combine today's date with the specific timedatetime_with_specific_time = datetime.combine(today, specific_time)print(datetime_with_specific_time) # Output: YYYY-MM-DD 15:30:00How to Get Current Date in dd mm yyyy Format in Python?To format the current date in the “dd mm yyyy” format, use the strftime method from the datetime module:
Example:
from datetime import datetime# Get current datecurrent_date = datetime.now()# Format the dateformatted_date = current_date.strftime('%d %m %Y')print(formatted_date)How to Get Current Date and Time as String in Python?To obtain the current date and time as a string, use the strftime method to format the datetime object:
Example:
from datetime import datetime# Get current datetimecurrent_datetime = datetime.now()# Convert to stringdatetime_string = current_datetime.strftime('%Y-%m-%d %H:%M:%S')print(datetime_string)How Do I Get the Current Date and Time in Python Flask?In a Flask application, you can get the current date and time using the datetime module, similar to any other Python script:
Example:
from flask import Flaskfrom datetime import datetimeapp = Flask(__name__)@app.route('/')def home(): current_datetime = datetime.now() return f"Current Date and Time: {current_datetime.strftime('%Y-%m-%d %H:%M:%S')}"if __name__ == '__main__': app.run()How Do I Get the Day of a Specific Date in Python?To find the day of the week for a specific date, use the datetime module and access the strftime method with the ‘%A’ format code, which returns the full weekday name:
Example:
from datetime import datetime# Create a specific datespecific_date = datetime(2023, 9, 5)# Get the day of the weekday_of_week = specific_date.strftime('%A')print(day_of_week) # Output: TuesdayThese methods provide various ways to handle and format dates and times in Python, useful for applications needing precise time and date operations
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python
|
https://www.geeksforgeeks.org/get-current-date-and-time-using-python/?ref=next_article
|
Pandas
|
How to Get Current Date and Time using Python
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0118283276, -0.00127170177, -0.00295969192, 0.0607180521, 0.00291793258, 0.00434035948, 0.00310062943, 0.019136209, -0.016098218, -5.89687261e-05, 0.0226544309, 0.00413678261, 0.013415182, -0.0260578152, -0.00509202713, 0.0344931968, 0.00672847033, 0.0190004911, 0.00125865196, 0.0200131536, 0.0161608569, 0.0135404598, -0.0544123948, -0.000811044301, 0.00494847959, 0.0167141687, 0.00318414811, 0.00181653048, -0.0020931859, 0.00140285213, 0.0255775843, 0.00955244433, 0.0133107835, -0.0338459276, -0.0653950945, -0.0473133102, 0.026329251, 0.0234478582, -0.00948458537, -0.000103011764, -0.00273262546, 0.0421769135, 0.0315491669, -0.0231346637, -0.037124034, 0.0438055284, -0.0283337, 0.00489106029, 0.0314447694, -0.0353075042, -0.0392746404, -0.0180295873, 0.0205142666, 0.0582960099, 0.0470209941, 0.00979778077, 0.0265589282, -0.0141772889, -0.0247841571, -0.0234478582, 0.0452671, -0.016025139, 0.00545481127, -0.0027848247, 0.0130393477, 0.015461388, -0.0231137834, 0.00518076587, 0.025556704, -0.0243039243, 0.017371878, 0.0403395034, 0.00198617764, -0.0309436563, 0.00229676254, -0.0469792336, -0.0263083726, 0.0322799534, -0.0172152799, 0.0279787444, -0.0122876801, -0.0172152799, 0.00525906449, 0.0011137994, 0.00150855549, 0.0282919388, -0.0051964256, -0.0244292021, 0.019981835, 0.0348063931, 0.0333448164, 0.0201697517, 0.0100117968, -0.0269556418, -0.0378965847, -0.00405848399, 0.00817438681, 0.0289809685, -0.0283128191, -0.00958376378, 0.00120710535, 0.021881884, 0.0146262022, -0.0714501962, 0.0214434117, 0.000212711544, 0.0204933863, -0.0108991824, 0.010095316, -0.0437220074, -0.0155657865, -0.0106225275, -0.0177790299, 0.0223203562, -0.0557069331, 0.00772025436, 0.023573136, -0.0314656459, 0.0379383415, -0.0159729403, 0.0196999591, 0.0408406146, 0.0607180521, 0.0614279583, -0.0244500823, 0.0450583063, 0.0197104, -0.0139371734, 0.0231973026, -0.0230093859, -0.0117656887, 0.0438890457, 0.0106068673, 0.0109513821, 0.00221063406, 0.0164740514, 0.00758975651, 0.0514892414, -0.032760188, 0.0072922213, -0.00808564853, -0.0197834782, -0.0135404598, 0.00541305169, -0.00443170778, -0.0489836819, 0.0285842549, 0.0374581106, 0.0300040711, -0.00626389822, -0.0255775843, -0.053660728, 0.0350778289, 0.0151273133, 0.0408823751, -0.0288139302, 0.000128377287, -0.000286769093, -0.0403812639, -0.0453923792, -0.00525906449, -0.0011646935, 0.0147097204, -0.0221115593, 0.0371866748, 0.00234113191, 0.0338668078, -0.0102571333, -0.0178312305, 0.035432782, 0.00304060057, -0.0268512424, -0.0129975881, 0.0313194916, -0.00533997314, 0.0101944944, 0.0209631789, -0.0211197753, 0.0138223348, 0.0295029599, -0.0381053798, 0.0155866658, -0.00129584386, 0.0315909274, 0.00125408464, 0.020754382, -0.0154718282, -0.00690594735, -0.0258490201, -0.0157850236, -0.00321807759, -0.00523296464, 0.0495265536, -0.00927578937, -0.0178416688, -0.0153465504, -0.00209057587, 0.016943844, -0.0352448672, 0.0438890457, -0.0506122969, -0.0548717454, -0.045809973, 0.0241577663, 0.0122354804, 0.00157380442, -0.0204620678, 0.0151481936, 0.0326140299, 0.0120475637, 0.00869115815, 0.00606032135, -0.0135091403, -0.0322381966, 0.00816916674, 0.0231346637, -0.000688376313, 0.00669715088, 0.021673087, -0.0331777781, -0.0423021913, 0.0375207476, 0.00275350525, -0.018144425, -0.0227797087, -0.0163905323, 0.0103510916, 0.0248467959, -0.0132481446, -0.0166306496, 0.0148976371, -0.0177790299, -0.0332821794, -0.021109337, 0.043053858, 0.0294820797, 0.0222159587, -0.00692160754, -0.00975080114, 0.036142692, 0.0366855636, -0.0258281399, 0.0453088619, -0.0357250981, -0.0184680596, -0.0221533198, 0.0295029599, 0.0361844525, 0.00333813555, 0.0509463698, 0.00044565025, -0.0157745834, 0.0139789321, 0.0127574727, -0.0272897165, -0.0235940162, -0.00407414371, 0.00168211758, 0.0285842549, -0.0101736141, 0.0396504737, 0.0334074572, 0.0133838626, 0.0265380479, 0.00313194911, 0.00878511742, 0.00430904, -0.0213285722, 0.0164218526, -0.0333239362, 0.0238445718, -0.0442231186, -0.0196373202, 0.00714084366, -0.0257446207, 0.012851431, -0.0190944485, 0.0153569896, 0.0351822264, 0.0297743957, -0.0114002945, -0.00104006811, 0.037833944, 0.00121558772, 0.0407988541, -3.01164637e-05, -0.0131124267, -0.0603422187, 0.015878981, -0.0281040221, 0.0169960428, 0.00953156501, -0.00176955119, 0.0134673808, 0.0336997695, 0.0134569407, -0.026475409, -0.0189587306, -0.0127574727, 0.00884253625, -0.0102727925, -0.0146679608, -0.0225291532, 0.0137388166, -0.0200444739, -0.0246797577, 0.0368317217, -0.0386482514, 0.0280413833, 0.0103928512, -0.00958898384, 0.00311367936, -0.0201593116, 0.00672847033, -0.00978212059, 0.0503617413, -0.00411329325, 0.0113272155, -0.00999613758, -0.0193032455, -0.00383924739, 0.00785597228, -0.0197521579, 0.0421560332, 0.0435549691, -0.00295186206, -0.0278325863, -0.0107425852, -0.000493282, -0.0505287759, -0.0376460254, -0.0171735212, -0.00554876961, 0.0240951274, 0.011859647, -0.0172048397, -0.0329272225, -0.0375833884, 0.0357459784, 0.0259951763, 0.00983953942, 0.0348063931, 0.0198983159, -0.054495912, 0.0101109752, -0.0184993781, 0.00563228829, 0.0216104481, -0.0084510427, 0.0146366414, 0.000923272455, 0.00956810452, 0.0267677251, 0.0201384313, 0.0160146989, -0.0407779776, 0.000871725788, -0.0191988479, -0.013697057, -0.00281353411, 0.00291010272, -0.0149602769, 0.00441604806, 0.00666583143, -0.0625554621, -0.043137379, 0.00674413, -0.00371135958, 0.0140833305, 0.0039384258, 0.00779855298, 0.000405848405, -0.0180295873, -0.00841450319, -0.00934364833, 0.0103354314, 0.0267259646, 0.0414252467, -0.0115464516, -0.0144174052, -0.0237401742, 0.0128305508, -0.0102884527, 0.0269347616, -0.0056061889, -0.0392120034, -0.0133629823, -0.032676667, 0.0116090914, 0.0108887423, -0.0383559354, 0.00819526613, 0.0144800441, -0.0515727587, 0.0132481446, -0.0460605286, 0.0290018488, -0.000568644493, 0.0399845503, 0.0130497878, -0.0187812541, -0.00427511055, 0.0230929032, -0.0185411386, -0.0194285233, -0.0179565083, -0.0243039243, 0.0214225315, 0.0441813618, 0.0463528447, -0.00889995508, 0.0375416279, -0.0227588303, -0.00695814658, 0.000685113831, -0.0038366376, -0.0246588793, 0.0383976959, -0.016724607, -0.0024990344, 0.031987641, 0.0179669466, -0.0141668497, -0.00649879407, 0.0355371833, 0.0210258178, 0.00800212938, 0.0226335507, -0.0143443262, 0.0152839115, -0.00199270248, -0.019981835, 0.0414878838, 0.0294194408, 0.0425109863, -0.019136209, -0.000183349519, 0.000784292235, 0.0222785976, -0.040590059, -0.0478144214, 0.0168916453, 0.0277699474, 0.0376251489, -0.0114316139, 0.0293776821, -0.0527837798, 0.0451418236, 0.0375625081, -0.00682242913, -0.0348063931, 0.00206056144, 0.0172361601, 0.0399010293, 0.00614384, 0.00571058691, 0.0127679119, -0.00489367032, 0.024074249, 0.00357303186, 0.0547047108, -0.0067128106, 0.0110453404, 0.0128618702, 0.0120371245, -0.0143965259, 0.0134569407, -0.017152641, -0.0247215182, 0.0368317217, -0.0489001647, -0.0296908766, 0.00146549114, 0.0127992313, 0.0199713949, 0.0186559763, -0.0168498848, 0.0226335507, 0.012350319, -0.0337206498, 0.0482737757, 0.0150020355, 0.0227797087, 0.00981344, -0.0141459694, -0.00991261844, -0.0528255403, -0.00251860893, -0.0238445718, -0.0131019866, 0.00109226722, 0.0383976959, 0.0434296913, 0.00776723353, -0.0189691707, 0.0505287759, -0.0306513403, 0.0021493, 0.0143756457, 0.00640483573, 0.00166123791, 0.0199505147, -0.0380845, 0.0521991514, -0.0103980703, -0.0202532709, -0.00660319254, -0.0100535564, -0.0251182318, -0.00678066956, -0.00851890165, -0.00134934799, -0.00841972325, 0.0522826687, 0.0164636113, 0.00896781404, -0.0150959939, 0.0166932885, -0.00296491175, -0.0011770908, 0.0158998612, -0.0055070105, -0.00152160518, -0.00976124126, -0.0149707161, -0.00153596, -0.0228423476, -0.0126739535, 0.012705273, 0.00100613863, 0.0289809685, 0.00380792795, -0.0140520111, 0.00555920927, -0.0128305508, -0.0331986584, -0.0365811661, 0.0258281399, 0.0213807728, 0.00737574, -0.0370196365, 0.0379592218, -0.0180922262, -0.0028344139, 0.0116821695, -0.0326349102, -0.00409241347, 0.0089730341, 0.0114942528, 0.0148663176, -0.0104137305, 0.000604531437, -0.0109618213, 0.0098552, -0.0120580038, -0.010027457, -0.0206499845, 0.00948458537, -0.0149289565, 0.00068968127, -0.00909309182, 0.0148558784, 0.00235679164, 0.00730266096, 0.017716391, -0.000857371, -0.0230929032, 0.0273941141, 0.0109618213, 0.0401515849, 0.041362606, -0.00943760667, 0.0438890457, -0.000444997742, -0.0188543331, 0.00416810205, 0.0165262502, -0.000961769314, 0.0104137305, 0.0205769055, -0.0130497878, 0.0313194916, 0.0174345169, 0.00512073655, 0.0229049865, 0.00538695231, -0.022800589, -0.00953678507, -0.0290644877, 0.0244500823, 0.0483990535, 0.0250347126, -0.00853978097, 0.0034660236, -0.0181966238, 0.0290644877, 0.00777767319, -0.0121624023, 0.0338459276, -0.000583325513, -0.000892605458, -0.00371657941, 0.00450217677, 0.012632194, -0.00254731858, -0.0409658924, -0.00400628475, -0.0114733735, -0.0126113147, -0.0228841081, -0.0184263, 0.0190944485, 0.0179251879, 0.0214851703, 0.0122354804, 0.000315315498, 0.015179513, 0.0146053219, -0.0139476126, -0.017643312, -0.00981866, 0.00781943277, 0.0279996246, 0.0112019377, 0.00733920047, 0.0150124757, 0.00213755528, -0.000855413557, -0.0013976323, -0.0521573909, 0.0221115593, -0.0226544309, 0.00810652785, 0.0342635214, 0.054287117, -0.00508680707, -0.0136030987, -0.0179460682, -0.0311524533, 0.0378757045, 0.0210675765, -0.0036669902, -0.00350778294, 0.125695556, 0.00579410559, 0.0559574887, -0.0172570385, 0.050821092, 0.0180817861, 0.0114942528, -0.0251182318, -0.0224038754, 0.00434035948, 0.0260995757, -0.023155544, 0.0033042063, 0.0203576684, -0.0246588793, 0.0121624023, 0.00618559914, -0.00536607252, -0.014469604, 0.0162234958, -0.00630043726, 0.00529038394, -0.0193763245, 0.0308601372, 0.0142816873, 0.0285007358, 0.0316326842, 0.0185515787, -0.0347646326, -0.00512856664, 0.0432626568, -0.0115673319, -0.0151168741, 0.003617401, 0.0259742979, 0.00481537171, -0.0140206916, -0.0202219505, -0.0142399278, -0.016233936, -0.00199009269, 0.00172518194, 0.00194180838, -0.0164949317, -0.0315909274, 0.0156910643, -0.0051885955, 0.00384185743, 0.0221115593, 0.0306931, 0.0121832816, 0.00717738317, 0.000557878404, 0.00791861117, 0.00268042646, -0.0168081261, 0.00101070607, -0.0120580038, 0.0247006379, -0.0178103503, -0.00439255871, 0.00237767119, 0.0251182318, -0.0137596959, 0.0195851214, -0.00185176486, -0.00797081, 0.00227588299, -0.0187290553, -0.0285424944, -0.0187603738, -0.0137805752, 0.0318623595, 0.0142399278, 0.0170169231, -0.00484147109, -0.00837274361, 0.0017082172, -0.0131019866, -0.0129245101, -0.0103458716, -0.0383559354, 0.0182697028, 0.0117552485, -0.0177999102, -0.0286886524, -0.00300928112, 0.0395878367, -0.0328437053, 0.0341173634, 0.00329115638, -0.0309018977, -0.0489001647, -0.00542871142, 0.0178938694, -0.000671411573, 0.0207961407, 0.00692160754, -0.0358921364, -0.00590372412, -0.0161817372, 0.0162548162, -0.0151899531, 0.0327810645, 0.028521616, 0.0151273133, -0.0205664653, -0.0131855058, 0.00368787, 0.0282501802, -0.010732145, 0.0104763694, -0.00563750835, 0.00153596, -0.0164636113, 0.0381471403, 0.0342635214, 0.0364141278, -0.00838318374, -0.00394364586, -0.0353075042, -0.0132168252, -0.00732876081, -0.0277281888, 0.0310062952, 0.0159207415, 0.0135300197, 0.0171213206, 0.00795515068, 0.0191884078, 0.0124442773, 0.00189613411, -0.00834142417, -0.0144591648, -0.0446407124, 7.07543149e-05, 0.0107530253, -0.00512595661, -0.0216522068, 0.000543523638, -0.0149289565, 0.0139893722, -0.0329272225, -0.00154378987, -0.0202428307, -0.00205795141, 0.0239072107, 0.0137701361, -0.0132272644, 0.000408458349, 0.0208587795, 0.0230720248, -0.0273941141, -0.0112436973, -0.000897825405, 0.00962552335, 0.00357042183, -0.019480722, 0.0140415709, 0.0117448084, -0.0100326771, 0.0425945073, -0.0297117569, -0.03445144, -0.037124034, 0.00453349622, 0.0195746813, 0.0112854559, 0.0143860858, -0.0140415709, 0.00383141753, 0.00319719804, 0.00755843706, -0.00239985599, 0.018217504, -0.00105246541, -0.0150020355, 0.00744359894, -0.0111706182, -0.0143234469, 0.00653011352, -0.00210884563, 0.0169229638, 0.00789251179, -0.0129662687, 0.0231973026, -0.000183512631, 0.0105651077, -0.006707591, -0.0194389634, 0.0119953649, -0.0053504128, 0.0283337, 0.0197834782, 0.000247456599, -0.018290583, 0.0417175591, 0.0128827505, -0.00624301843, 0.00725046219, 0.0102153737, 0.00503460784, 0.0317788422, -0.0273105949, 0.00219888915, -0.011504693, 0.0273523554, 0.0238445718, -0.00197443296, 0.00545481127, -0.0170482416, 0.000287258445, 0.0319667608, -0.00904611312, -0.00264910678, 0.0100900959, -0.00303799054, 0.0233225804, -0.0134569407, 0.00364089082, -0.00477622217, 0.00467965379, -0.015597106, -0.0135613391, 0.0147723593, -0.0281249024, -0.00960464403, -0.0101005351, 0.00315021863, 0.0403603837, 0.0269556418, -0.0200653542, -0.0281457826, -0.0170482416, -0.00447607692, 0.00569492718, -0.00552789, 0.0152630312, 0.00909831189, 0.00987085886, 0.000411394547, -0.0242621657, 0.00100809603, -0.000552984769, -0.0148558784, -0.00528255384, -0.024283044, 0.0136030987, 0.00935408752, 0.00296230172, -0.00765761547, -0.00150986039, 0.00318153831, 0.0222159587, -0.0265589282, 0.012851431, 0.0165158119, 0.0146784009, 0.0137492558, 0.028020503, -0.0159729403, 0.00216756971, -0.0134569407, -0.013415182, -0.0161504168, -0.0172361601, 0.0233225804, 0.00915051065, 0.00859198, -0.0177268311, 0.0248467959, 0.00061399251, -0.0157432631, -0.00383924739, 0.00955244433, 0.0219236426, -0.0117552485, -0.0311106928, 0.0076106363, 0.00941150635, 0.0427197851, -0.0144800441, -0.0203889888, -0.0208483413, -0.0263501313, -0.025765501, -0.0124129578, -0.00379226822, 0.00747491838, -0.0162026156, -0.0278743468, -0.0417384394, 0.00582020544, -0.0445571952, 0.0346811153, -0.0365602858, 0.0131437462, 0.0154196294, 0.0477309041, 0.0228632279, 0.0133734224, -0.0090826517, -0.030212868, 0.012496477, 0.00587762427, 0.0203159098, -0.020754382, 0.0384394526, 0.00853978097, 0.0317997225, 0.0257863794, -0.00434557907, -0.0416340418, -0.0184785, 0.00320241787, 0.0109827016, 0.018843893, -0.0220071618, 0.0142086083, -0.00307713985, 0.00748013845, -0.0101161953, 0.0154927075, 0.00539739197, -0.00357042183, -0.0162756946, -0.026684206, 0.0209527388, -0.0645181462, 0.0350151882, -0.0240951274, -0.0102466932, 0.00995437801, -0.0176537521, -0.0235313773, -0.00726612192, -0.0349734314, -0.00893649459, 0.00195616321, 0.0182488225, -0.00235679164, 0.0259534176, -0.0290227272, 0.00848758221, -0.00883209612, 0.0205977838, -0.00508158747, 0.00374267902, 0.00813262723, -0.00620125886, -0.0176119935, -0.0294194408, -0.00797603, 0.0116821695, 0.0019692129, -0.016724607, 0.00951068476, 0.00144200155, 0.0156806242, -0.0241160076, 0.00479188189, 0.0320920385, 0.0348481536, -0.0153778698, -0.0108052241, 0.0211719759, -0.0127157131, -0.0230302643, -0.06385, -0.00551223, -0.0209631789, 0.0257237405, 0.0144278454, 0.01722572, 0.0131437462, 0.0100065768, -0.0128618702, -0.00899391342, 0.0044604172, -0.00381053798, -0.00508680707, 0.00074449036, -0.00539217237, 0.0090722125, -0.00882687606, -0.00146940607, 0.00320241787, -0.0116090914, -0.0356415808, 0.0203054696, -0.00978212059, 0.0134465015, -0.00711474428, 0.000811696809, -0.0475221053, 0.0292106438, 0.0078768516, -0.0255149454, -0.0234896168, 0.00973514188, -0.0119953649, 0.0101109752, -0.00168472761, 0.00271957577, 0.0134778209, 0.0115882112, 0.00775157381, 0.0110975392, -0.00495108962, -0.0206499845, 0.0312150922, 0.00143156166, 0.00694770692, -0.0269556418, 0.00289705279, 0.0249720737, 0.011577772, -0.00354693225, 0.000992436311, 0.0052460148, 0.0400263071, -0.00682764873, 0.00811174791, 0.0245336015, 0.0126635134, 0.000658688, 0.0275193918, -0.0225709118, -0.0404230207, 0.000756235211, 0.0123085594, 0.0231137834, -0.0152630312, 0.0102466932, -0.00526689412, -0.0277908277, -0.0148871979, 0.0141042108, 0.0133838626, 0.0248050354, 0.0240116082, 0.00445780763, -0.0119536053, 0.0083884038, -0.00608642073, -0.0175702348, 0.00860764, -4.54295732e-05, 0.0102832327, -0.00493542943, -0.00709908456, -0.00758453645, 0.0362470895, 0.0128618702, 0.0523244292, -0.00423596101, -0.00161164871, -0.00532431342, -0.00506331772, -0.0103667509, -0.00271957577, 0.0353492647, -0.00333291572, -0.00695292698, 0.00478927186, 0.0115986513, -0.00753755728, 0.023573136, -0.00993871782, -0.0187290553, 0.00709386449, 0.0153987492, -0.0158685409, -0.00741227949, -0.0151273133, -0.0210466981, 0.0123920785, 0.0023150323, -0.00406370405, 0.0164844915, -0.00391232641, -0.0027247956, -0.0124755967, -0.0227797087, 0.0163487736, -0.00980300084, -0.00612818031, -0.000681851408, 0.00852412079, 0.0262039732, 0.00326766679, -0.0210571364, -0.0157223847, 0.0167454872, 0.00354693225, 0.0177477114, -0.0169125255, 0.0169229638, 0.0311733317, 0.00585674448, -0.0181548651, -0.0108887423, -5.2688516e-05, -0.0183636602, -0.0470209941, -0.000168505387, -0.0221115593, 0.0143965259, -0.000259853899, 0.008190047, 0.0136657376, 0.0112332571, -0.00955766439, 0.00307713985, 0.0200131536, -0.00989173912, 0.0209840592, -0.0301293489, -0.0211406555, 0.00485452078, -0.00629521767, -0.00211667549, -0.0288974494, 0.0136761777, 0.00918183, 0.00847714208, 0.00979778077, 0.0139893722, 0.00177477114, 0.0311106928, 0.0185306985, 0.00848236214, 0.0397339948, -0.0428450629, 0.00662407232, 0.00964118261, 0.0510298908, 0.0240951274, -0.00941150635, -0.00486235088, -0.00486235088, -0.0215478092, -0.0232808217, 0.0091348514, 0.00879033655, -0.00869115815, -0.00469531352, 0.00289966282, 0.0124651566, -0.0369152389, 0.0204307474, 0.0169960428, 0.0109513821, 0.0404856615, 0.0156075461, 0.0191884078, 0.00192875857, 0.0137805752, -0.0244292021, -0.00715650339, -0.0218401253, 0.000428685511, -0.0288348105, -0.00251208409, 0.0461440496, -0.00474751275, -0.0194598436, -0.041362606, 0.0368734784, -0.00983432, 0.0188230127, 0.0249094348, -0.00273784553, 0.0103824111, -0.0298161544, -0.0055070105, 0.00119144563, -0.000785597193, 0.00877467729, -0.00571580697, -0.0217566062, 0.0262666121, 0.00707298471, 0.0124338372, -0.0199922752, 0.000593439094, -0.00730266096, -0.0121206427, 0.0102101536, 0.024992954, -0.00499545876, 0.0192823652, -0.00324939704, 0.0115882112, -0.013697057, -0.00830488466, -0.0212972537, -0.000822789094, -0.00165732298, 0.0230302643, -0.0148663176, 0.0150437951, 0.00263866712, -0.00450217677, -0.00823180564, 0.00746447826, -0.00237506139, 0.0260160565, 0.00520947529, -0.01595206, 0.00770459464, -0.0222159587, -0.017298799, -0.00143417169, -0.000302102591, 0.0234269779, 0.0160773378, 0.00721392268, 0.0194702838, -0.028939208, -0.00521208532, 0.00833098404, -0.027602911, 0.0198147967, -0.0148663176, 0.00422552135, -0.00672847033, -0.00703644566, 0.00517032575, -0.0113376556, 0.0291062463, -0.0210675765, 0.0100744357, 0.00517032575, -0.031131573, 0.0193554442, -0.0162965748, -0.00113141653, 0.0149185173, 0.023573136, -0.00467443373, -0.00306148012, 0.0207439419, -0.00473446306, 0.00269086612, 0.00827356521, -0.0111392988, 0.0114629334, 0.00970382243, -0.0214642901, 0.0098291, -0.0180295873, -0.000202761075, -0.00196007802, -0.015388309, -0.0179669466, 0.00851368159, 0.00238550105, -0.0167768076, -0.0120684439, -0.0196686406, 0.0101214154, 0.0124129578, -0.010867863, -0.0123920785, 0.00465616398, 0.0113585349, -0.0137910154, -0.00354432222, -0.014615762, -0.00536085293, -0.00876945723, -0.0106016472, -0.00500328839, -0.014824559, 0.00570536731, -0.00642571552, -0.0118283276, -0.0169856027, -0.0080752084, -0.00623257831, -0.0168916453, 0.00161295373, 0.00793427, -0.00187394954, 0.00457264576, 0.0241786465, -0.0190318096, 0.015252592, -0.0111079793, 0.00746447826, -0.00638917601, -0.0268094838, 0.0254314262, -0.00872247759, 0.0265380479, -0.0188752133, -0.0419054776, -0.014615762, 0.000191179381, 0.0287304129, -0.0170169231, 0.0135613391, 0.00271174591, -0.012350319, 0.0068746279, -0.0165575705, -0.0258907788, -0.00757409679, 0.0107739046, -0.00690594735, 0.0113794152, 0.0225082729, 0.00869115815, 0.0102205938, 0.0248676743, 0.0228423476, 0.0129453894, -0.00957332458, 0.000137185896, -0.0323425941, 0.00141329202, -0.0381471403, 0.0143547663, 0.0105076889, 0.0284172166, 0.00554354955, -0.0244292021, -0.00242073555, 0.00698424643, 0.00824746583, 0.0097560212, -0.00869115815, -0.00461962493, -0.0207335018, 0.00909831189, 0.00393581577, 0.0217357259, -0.00893649459, -0.000158718045, -0.0225291532, 0.00611252058, -0.00324678724, -0.0362470895, 0.0353283845, 0.00157641433, -0.0336371325, -0.0205560252, -0.0010518129, 0.0398801491, 0.024283044, -0.00127235427, -0.00413939264, 0.0229258668, -0.0310898144, -0.00695292698, -0.016453173, -0.00188960927, -0.00972992182, -0.000111575682, 0.0291480049, -0.00736008026, 0.00194180838, -0.0104815895, -0.0111601781, -0.0461858064, 0.00685374858, -0.00161947869, -0.0182488225, 0.0129453894, -0.00877989735, 0.0131855058, 0.0259534176, -0.0257237405, 0.00548091065, 0.0115464516, -0.0116612902, -0.0109305019, 0.00156336452, -0.0260578152, -0.0195224825, 0.0138536543, 0.00131476612, 0.00305887, -0.00947414618, -0.00116926094, -0.0192197263, 0.0218192451, -0.0130289076, -0.0028344139, -0.00653533358, 0.00478405226, 0.0134673808, 0.0166515298, -0.00224325852, -0.000562772097, -0.00865462, 0.0125799952, 0.01906313, 0.0144800441, 0.0262874924, 0.0139684929, -0.0102519132, 0.0205873456, 0.0207230635, -0.0185411386, -0.00522513501, 0.0209422987, 0.00989173912, 0.00851368159, -0.00179173588, 0.0346184783, -0.0093332082, -0.00126387191, -0.0202428307, 0.0222577173, -0.00599768246, -0.025556704, 0.0122876801, -0.000742532895, -0.0144800441, -0.0116821695, 0.0342426412, 0.00774113415, -0.0113272155, -0.000230002508, 0.0187290553, 0.0249094348, 0.0152943507, 0.0170064829, 0.00155031472, 0.0157537032, 0.0132481446, -0.0362679698, -0.0209840592, -0.0266006868, -0.0270600393, -0.0213807728, -0.0443066396, -0.00459352508, -0.0151273133, 0.011577772, 0.0239489693, 0.0184785, 0.0357668586, -0.0135091403, 0.0222159587, 0.00824224576, -0.0133734224, 0.0300040711, -0.0126008745, -0.0221533198, -0.0230093859, -0.000769937469, 0.0293985605, 0.0102101536, 0.0168498848, 0.00644137524, -0.00632653711, 0.0028840031, 0.000894562923, -0.0147201605, -0.00416288245, -0.0207230635, -0.00836230349, -0.00357564189, -0.0229885057, 0.00244031032, 0.0171108823, -0.0164427329, 0.0118074482, 0.0241995268, 0.0197208393, 1.69851137e-05, 0.00533997314, 0.00877989735, 0.0258907788, 0.00409763306, 0.0104554901, 0.0145009244, -0.00979778077, 0.0233225804, 0.0180504657, 0.0111392988, 0.023865452, 0.0306722205, -0.0186559763, 0.0226544309, 0.023364339, 0.00138066756, 0.00158815912, 0.0109931407, -0.00795515068, 0.0154300686, 0.00245988485, 0.00596636301, -0.00792383123, -0.0066136322, 0.0133838626, 0.0137492558, -0.00156858447, 0.00678066956, -0.00171474204, -0.000680546393, 0.00399062503, 0.0152108325, 0.016943844, -0.00970904157, 0.000984606449, 0.00629521767, 0.00292054238, -0.0191988479, 0.00979256071, 0.00217931462, 0.00637873635, -0.00877989735, 0.00322851748, -0.00404282426, -0.000768632512, -0.00221454888, 0.00833098404, -0.000873030804, -0.00515466603, 0.00345819374, 0.0197208393, -0.0273523554, 0.0173301175, 0.0228214692, 0.0110870991, -0.00147854094, 0.00233460707, 5.54615981e-05, -0.000214995249, 0.000489693251, 0.00120514783, 0.00193919847, -0.00633175671, 0.00858676061, 0.000351365539, 0.0243665632, -0.0180087071, 0.011859647, 0.00124168734, 0.0146262022, 0.0308810174, 0.0180191472, 0.00730788102, 0.0131019866, 0.00829444453, 0.0298996735, -0.0174762756, -0.0029857913, 0.00872769766, -0.0245127212, 0.0169334039, 0.00685896818, 0.0180400256, -0.00748535804, 0.00477622217, 0.0226753112, -0.00261778734, -0.0199400745, 0.0212241746, -0.0112019377, 0.0135404598, -0.00183480012, 0.000136370276, 0.0192510467, -0.00056538207, -0.0207961407, 0.0190840084, -0.00646225503, 0.00330942613, 0.00797081, 0.0254731849, -0.0113376556, 0.015670184, -0.0155553464, 0.00456220564, -0.0154091893, 0.020117553, 0.00892605446, -0.0142712472, 0.0151273133, 0.0172779188, -0.0190422498, -0.0102884527, 0.0261622146, 0.0116717303, 0.0108052241, -0.00702600554, 0.00385490735, 0.0101527348, 0.00304843043, -0.015252592, 0.0207230635, -0.0183845405, 0.0138223348, 0.00171996199, 0.012350319, 0.0321129188, -0.0162652545, -0.0253687873, 0.0118283276, 0.00237897621, -0.0133003434, -0.0157850236, 0.0216939673, 0.0145740025, 0.00729744136, -0.00874857791, 0.0186664164, 0.00655621337, 0.00401933445, 0.0116612902, 0.00264910678, -0.00241290568, 0.00600290205, 0.0147097204, 0.000451196393, -0.000499480637, -0.00509463716, 0.00872247759, -0.020535145, 0.012705273, 0.0299205538, 0.00719826296, 0.00120514783, 0.0178625491, 0.00209579594, -0.00746969832, 0.00790817104, 0.0180922262, -0.0161190983, -0.0022028042, -0.0168498848, -0.00860764, -0.0110035809, -0.00303016067, 0.0290853661, 0.00852412079, 0.0389196873, 0.00898869336, 0.0214225315, -0.00236331648, 0.00317109842, 0.00430904, -0.000807781878, -0.0270182807, -0.00668149116, -0.0110557796, 0.0122250412, -0.0136552975, -0.022591792, 0.0137074972, -0.0135300197, 0.00312933908, -0.00977168, -0.00126909185, -0.00600812212, -0.00335118547, 0.00188960927, -0.0155449072, -0.0165262502, -0.0018830843, -0.0260160565, 0.0156388655, -0.0117761279, -0.0240116082, 0.00477622217, 0.00966206286, 0.0033068161, -0.0155344671, 0.00749579817, -0.00845626276, 0.000396387302, 0.00904611312, 0.00234113191, 0.000907612732, 0.00428555, -0.00273001567, -0.00634741643, 0.00891561527, -0.0174971558, -0.013623978, -0.00278221467, -0.00518337544, 0.00774113415, -0.00425945083, -0.00440299837, -0.0128618702, -0.00750101777, -0.00535563286, 0.0131019866, 0.0123607591, -0.000239463596, 0.00157119439, -0.00614906, 0.0197834782, 0.0207335018, 0.011786568, -0.00375572895, -0.000625411049, 0.0074540386, 0.00947936531, 0.0276655499, -0.0125799952, -0.00505548762, -0.00216887472, -0.0249303132, 0.00236853654, 0.00497457897, -0.0134047419, -0.00375572895, -0.0013623978, -0.0252226293, -0.0101683941, -0.00211537047, 0.00721914228, -0.00152682513, 0.0175284743, 0.00611252058, 0.00336945523, 0.000610403833, 0.00633697677, -0.0245544799, 0.0034033847, 0.00129127642, -0.000735355541, 0.0161086582, 0.0424692295, 0.00268825633, -0.00637873635, 0.0213494524, 0.00768371485, -0.0028866129, 0.00486235088, -0.00235287659, 0.00445258757, -0.0376877859, -0.00107726, -0.00483103143, -0.00686418824, -0.0107634645, 0.00385751715, -0.0151168741, -0.0139476126, 0.00598724233, -0.00911919121, -0.00299884123, -0.0143652065, 0.0209736191, -0.000717085844, 0.0193032455, 0.00536607252, 0.00375311892, -0.00787163153, 0.00185306987, 0.00260212761, -0.0164114125, 0.00335901533, 0.00631609699, 0.018217504, 0.0140624512, -0.00440299837, -0.00224195351, -0.00115947367, -0.00452044653, -0.0205769055, 0.0107739046, -0.00562706823, 0.0117656887, -0.00225630822, 0.0335536152, -0.00893127453, -0.00795515068, 0.015805902, 0.012423398, -0.0219236426, -0.00333552575, 0.00401933445, -0.022445634, 0.00668671122, -0.00014232425, -0.0184054207, 0.0159103014, 0.00944282673, -0.00648835441, -6.21394202e-06, 0.00741227949, -0.00757931639, -0.0202115104, 0.0414670035, 0.0165575705, 0.000116877163, -0.0118387677, -0.0108052241, -0.00100613863, -0.0119431652, 0.0146575216, 0.00563228829, -0.0203889888, 0.00269086612, 0.0199296363, -0.00694770692, -0.0208483413, 0.00882687606, -0.00914007146, -0.0135300197, 0.0222994778, 0.00236984133, -0.0237819329, -0.0070312256, 0.00667627109, -0.00140415714, 0.0102884527, 0.00243639527, 0.00344514381, 0.0125799952, 0.0103249922, -0.00119536056, -0.011859647, -0.026475409, 0.0211928543, 0.00663451198, 0.00219888915, -0.027456753, 0.00941150635, 0.0232808217, 0.0235522557, -0.0290644877, 0.00696858671, 0.00927056931, -0.00127300678, 0.00495891925, -0.0384185761, 0.00524079474, 0.0136448583, -0.0266006868, -0.00440821843, 0.00157771935, 0.0141564095, -0.00922359, 0.0226753112, -0.0189482924, 0.0263710115, 0.0130497878, -0.0121728415, 0.0409450121, -0.0203367881, -0.00411068322, 0.00404804433, 0.0263501313, -0.00484408112, 0.0028866129, -0.00593504356, -0.0148454383, -0.0207126234, -0.000609425071, 0.0021780096, -0.0138432151, 0.0140833305, 0.00447085733, -0.0129975881, -0.00114577136, 0.0172883589, -0.00747491838, -0.0329272225, -3.0667e-05, -0.00996481813, 0.0193972047, -0.00182697026, -0.00633175671, -0.000683156366, 0.0101527348, -0.0468122, -0.0005637508, 0.00666583143, -0.00827878527, -0.0118283276, 0.0524914637, -0.01475148, -0.00765761547, 0.0087120384, -0.00376616861, 0.00284224376, -0.00707298471, -0.0117970081, -0.0243039243, 0.00338511495, 0.016233936, -0.000146239181, 0.00645703496, 0.0107112657, -0.0225082729, 0.0118283276, 0.0085502211, -0.0193241257, -0.000713823363, 0.0054078321, 0.0152630312, 0.014542683, -0.0127574727, 0.00762107596, 0.00423857104, 0.0283337, -0.0145009244, -0.0135404598, 0.0124651566, 0.0128409909, -0.0272270776, -0.0192823652, -0.00200705742, -0.000705341, 0.00695292698, -0.0180504657, 0.0144904843, -0.0130289076, -0.0109200627, 0.0155762266, -0.0148976371, -0.00558008906, -0.00773591409, -0.0102623533, -0.00336684519, 0.00945326593, 0.0242412854, 0.00738617964, 0.0225082729, 0.00197834778, 0.00748013845, 0.0166306496, -0.0167454872, 0.00046131, 0.00876945723, 0.0007862497, -0.00116926094, -0.0102988919, 0.000334727054, 0.012214601, -0.0157641433, 0.0125382356, 0.00956288446, -0.01778947, 0.0131855058, 0.00934364833, 0.00892605446, -0.00349734304, -6.78589e-05, 0.0287512913, 0.0199609548, -0.0207648221, 0.000306343776, 0.00931754801, 0.0149915963, 0.00816394668, 0.0141668497, 0.00980822, 0.00487279054, 0.00469531352, -0.0111914976, -0.0120893233, 0.00155683968, 0.0185202584, -0.00226935814, -0.010940942, 0.0155449072, -0.0126008745, 0.000144526392, 0.000103908933, -0.0241995268, -0.0205769055, 0.0174449552, -0.0253061485, 0.000327386544, 0.0251808707, -0.00994915795, 0.00678588962, -0.00214016507, -0.0147306006, -0.00228240783, 0.01722572, 0.0161608569, 0.0137805752, -0.000416614464, 0.00235548662, -0.0148767577, -0.00935408752, 0.00599768246, 0.00136109279, 0.00127039687, -0.00349734304, 0.00575756608, -0.0170691218, -0.0216104481, -0.0185933374, 0.00667105149, 0.00438994868, 0.00371657941, 0.0188334528, 0.0100431163, -0.00195746822, 0.00214277511, -0.00196268805, -0.0209318586, 0.00418898184, 0.0143025676, 0.0115464516, 0.00886341557, -0.00350778294, 0.0196164399, 0.0270600393, -0.0100326771, 0.0232808217, 0.00832054485, 0.00241551572, 0.00282136397, 0.0119953649, 0.0343052819, -0.00314760883, -0.00544437114, -0.0172674786, -0.00944282673, 0.0181339849, 0.0116195306, 0.0141668497, 0.0207126234, 0.00815350749, 0.0109513821, -0.0129767088, -0.0144278454, -0.00493021, 0.0198565573, -0.000516119122, 0.00623257831, -0.011577772, -0.0193763245, -0.0106068673, 0.014469604, -0.0111392988, 0.0278743468, 0.00696336664, 0.00673891045, -0.0143965259, -0.00393059617, -0.00539739197, 0.0119640455, 0.0315491669, -0.0248259157, 0.0133525422, 0.00151769025, 0.0181653034, 0.00989173912, 0.0101057552, 0.00601856224, 0.00920271, 0.0159938205, 0.00384446746, 0.00715650339, -0.0130497878, -0.0282919388, 0.00164427329, 0.00721914228, -0.00265693665, 0.0203054696, -0.000345166889, 0.0232390612, 0.00546525093, -0.0120371245, -0.00654055364, 0.0304425452, 0.00576278614, 0.0248259157, 0.0194911622, 0.00169908232, 0.00527733425, 0.0116612902, 0.0216939673, -0.0301084705, -0.00937496778, 0.00702078547, -0.00383402756, -0.0102519132, -0.00324417721, -0.0215478092, -0.00261517754, 0.0203367881, -0.0139684929, 0.00767327519, 0.00148115086, -0.00167689775, 0.0256193429, 0.0196999591, 0.00685896818, -0.0153569896, -0.000208633472, 0.0119431652, -0.0185828973, -0.0188230127, -0.00107073504, -0.0133629823, -0.0143234469, 0.0223203562, -0.00528777391, -0.012141522, 0.00519903516, -0.0199191961, 0.0109096225, 0.0063526365, 0.0164949317, 0.015252592, 0.0136552975, 0.0139371734, -0.00659275288, -0.00548091065, -0.0253896657, 0.00822658651, 0.00947936531, 0.0155240269, -0.00615949975, -0.0243248045, -0.0401515849, -0.0110244602, 0.0043560192, 0.00203315681, 0.00919227, -0.0179773867, 0.00850324146, -0.00518076587, 0.0170795619, 0.0114629334, -0.00584630482, 0.00109096221, 0.000497523171, 0.0206917431, -0.00842494238, 0.0131855058, -0.00367482, -0.0329272225, -0.0119222859, 0.00664495165, -0.00685374858, 0.0121832816, 0.00508419704, 0.0106434068, -0.0101788342, -0.00732354075, -0.0139893722, -0.0089208344, -0.0136657376, -0.0208692197, -0.0102988919, 0.0199296363, -0.00721914228, 0.00754277734, -0.000672716531, 0.00987085886, 0.0264545288, 0.000121526144, -0.000702078571, -0.0153778698, -0.00726612192, 0.00899913348, 0.00465094438, -0.0148663176, -0.000455111352, 0.00259560277, -0.00744359894, 0.00574190635, 0.0172465984, 0.0249720737, 0.00971426163, -0.0181653034, -0.00295969192, 0.00695292698, -0.00205403659, 0.0122876801, -0.0128931897, 0.0163905323, 0.00366960024, -0.0125904353, -0.0220489204, -0.00377921853, 0.00505548762, 0.00552789, 0.00728178164, -0.0104554901, -0.000319067301, 0.00736530032, 0.0127679119, 0.0199713949, -0.0119431652, 0.00406892365, 0.0166410897, -0.00224586832, 0.00587762427, 0.00116665103, -0.0149811562, -0.00720870262, 0.00461440487, -0.013060227, 0.00993871782, 0.0144278454, 0.0217983648, -0.026684206, 0.0126948329, -0.0181026645, -0.0206395444, -0.010867863, -0.0239072107, -0.0114942528, -0.0162026156, 0.0250764713, 0.00519120554, -0.0228214692, -0.0113063361, -0.00885297544, -0.00150072551, -0.0497353487, -0.0134673808, -0.00537129259, -0.000634545926, -0.024283044, -1.73725293e-05, -0.0142503679, -0.00161295373, 0.0138327749, -0.000737313, 0.000872378296, -0.0142294886, 0.00640483573, 0.0179460682, -0.00557486946, 0.00464311428, -0.00739661977, -0.00117382838, 0.00090043532, 0.00954722427, 0.012705273, -0.0523661859, -0.0082892254, -0.0210988969, -0.00354693225, 0.000950677029, -0.0119849248, -0.00319197797, -0.00341121457, -0.0072922213, 0.0210780166, -0.0107739046, 0.00256036827, 0.00714084366, -0.0228841081, 0.000510246668, 5.68073556e-05, 0.00374006922, 0.00182827527, -0.00367743, 0.00963596348, 0.00330942613, 0.00627955794, 0.0243248045, 0.00104333053, 0.00654055364, -0.00945326593, 0.007130404, 0.0148558784, 0.0229885057, 0.025410546, 0.0101997135, 0.00411590282, -0.00173170678, 0.00131085119, 0.0215060506, 0.0171944, 0.0183427818, 0.00996481813, 0.00115033879, -0.0104032904, -0.012423398, -0.00222498877, 0.00406370405, 0.0149602769, 0.0290436074, -0.00613340037, 0.0117761279, 0.00462484453, -0.00150203053, -0.00239594094, 0.0113063361, 0.00532431342, 0.0142503679, 0.00172257191, -0.0415714048, -0.031925, 0.0231764223, -0.0128201116, -0.00425162073, 0.0133734224, 0.00274045533, -0.0193136856, -0.00177868607, 0.00359652145, -0.0157641433, -0.0014615762, -0.0159416199, -0.0176746324, -0.0141564095, 0.0060290019, 0.0120580038, 0.0117343692, 0.0112541365, 0.0119953649, -0.00555398967, -0.000499480637, 0.0235940162, 0.0131437462, -0.0105494484, 0.0212972537, -0.00503721787, -0.00431425963, -0.0152003923, 0.0229676254, -0.0331151411, -0.0296073575, -0.0150020355, 0.00929666869, 0.0020435967, -0.00558008906, 0.0294820797, -0.00962552335, -0.0149811562, -0.00207752618, -0.00293098227, -0.0132377045, 0.0127261532, 0.00167689775, -0.0110244602, 0.0221741982, 0.0125486758, 0.00651445379, -0.0146575216, -0.00568970758, -0.0046170149, 0.0100117968, -0.00167559274, 0.00291532255, -0.00776201347, 0.0394834355, -0.0256402232, -0.00580454571, -0.00207361113, 0.00218192441, -0.0239280909, -0.0140937706, 0.00185437477, 0.00400106469, 0.00371918944, -0.0150646744, -0.000431947963, 0.01722572, 0.00372179947, -0.0170586817, -0.00409241347, -0.00704688532, 0.00667105149, 0.0024638, 0.00323112751, 0.0205455851, -0.00335901533, 0.0138849737, 0.0169960428, 0.027247956, -0.0223203562, -0.0089730341, -0.0195016023, -0.0119744847, -0.00754277734, -0.0200131536, -0.00779855298, -0.0142399278, 0.015388309, -0.00251077907, 0.0193136856, 0.017716391, -0.0201071128, 0.0106225275, -0.0148558784, -0.00668671122, 0.00832054485, 0.0211406555, 0.0105807679, -0.01045027, -0.0243874434, 0.00218714448, -0.0056061889, -0.0190735701, -0.00641005579, 0.0137179364, 0.00616472, 0.000811044301, 0.00135195802, 0.0301711094, 0.0136448583, 0.000309932453, 0.00840406306, 0.00927056931, -0.0104032904, -0.00580454571, -0.00677023, -0.00192223373, -0.0333239362, 0.0234061, 0.002205414, -0.0083884038, 0.0212137345, 0.00376616861, -0.00915051065, 0.012851431, -0.0137492558, 0.00988129899, 0.00532692345, 0.00768893491, 0.0103302114, 0.013060227, 0.00527994381, -0.0199609548, 0.00708342483, 0.0144278454, -0.0205664653, 0.0248885546, -0.00779855298, 0.00827356521, 0.00109487714, -0.00787163153, -0.00270391605, -0.00886863563, 0.0143547663, -0.00571058691, 0.00732354075, 0.00522252498, -0.0101892743, -0.0219862815, -0.0310689341, 0.00734442053, -0.0558322109, 0.0183636602, 0.00987085886, 0.0165888891, -0.00213494524, 0.0132481446, -0.00346341357, -0.00604466163, 0.0153674297, -0.00788729172, 0.0197417177, -0.000703383528, -0.0167141687, -0.0328019448, -0.00294925203, -0.00690072775, 0.0111914976, 0.00364872068, -0.0171108823, -0.0224038754, 0.0210153777, -0.0033537955, 0.0328645855, -0.032906346, -0.00435862923, -0.00131998595, 0.00805432908, -0.00558530912, -0.0123294396, -0.0138954138, 0.00507636741, -0.0155449072, -0.0140728913, -0.00145766127, 0.0141459694, 0.00485452078, -0.0192406066, -0.0160146989, -0.0129558295, 0.011368975, -0.0155762266, 0.00821614638, -0.00691116741, -0.0124860369, -0.00262953225, -0.00145635626, 0.0135613391, 0.00923925, -0.00867549889, -0.00926534925, -0.0142086083, 0.000466203666, -0.0058724042, 0.0108156642, -0.00392015604, -0.00789773185, 0.0128723104, -0.00773591409, 0.00835708436, -0.00155814458, 0.00264910678, -0.0170795619, 0.000724915706, -0.0175284743, 0.028521616, 0.00151899527, -0.021881884, 0.0126008745, 0.0204725061, -0.00979256071, -0.0398592725, 0.00391232641, 0.0135404598, -0.0191048887, 0.00697902637, -0.00655621337, 0.00486496091, -0.010659066, -0.00563228829, -0.00767327519, 0.0116821695, 0.0116195306, 0.0201593116, -0.00987607893, 0.00669715088, -0.0163592137, -0.000435210415, 0.00615427969, 0.00672325073, 0.00921315, 0.0269765202, 0.00358086172, 0.00135717785, 0.0146679608, -0.00323634734, -0.00744881853, -0.0172674786, 0.00408197334, -0.0190422498, 0.000937627221, 0.00295708189, 0.0124755967, -0.0063526365, -0.0119222859, 0.0443901569, 0.0147827994, -0.00562184863, -0.0239489693, -0.0156284254, -0.0107634645, 0.0114524933, -0.00203315681, -0.0116195306, 0.00222629379, 0.00538695231, -0.000709908432, -0.004729243, 0.00245466502, -0.00208927109, -0.0233225804, -0.00156336452, -0.0423857085, -0.002153215, 0.0158894211, -0.00684852852, -0.0146053219, -0.0245544799, 0.0175389145, -0.00921315, -0.0178521089, -0.00983953942, -0.00733920047, 0.0183323417, -0.0189796109, 0.0178416688, -0.0191257689, 0.00963074341, -0.00966206286, -0.0123607591, -0.0306931, -0.00893649459, -0.0112541365, 0.0145218037, 0.0206917431, -0.0200131536, 0.00474751275, -0.00543393148, 0.00291271252, 0.00236331648, 0.0014981156, -0.0194911622, -0.0161086582, 0.00774635375, 0.0034059945, -0.00941150635, -0.00138197246, -0.00150725048, -0.00022086766, 0.000468161132, 0.000562119589, -0.00566360774, -0.00883209612, -0.00895737391, -0.00780899264, -0.00349734304, 0.00206578127, 0.0011646935, -0.00577844586, -0.00792383123, -0.0101057552, 0.0178834293, -0.00317370822, -0.015388309, 0.00439255871, -7.57295493e-05, -0.00599246239, 0.00982388, -0.0189691707, -0.00226544309, 0.0170169231, 0.0132794641, 0.0198565573, -0.00171604706, -0.0084980214, -0.000690986228, -0.0158894211, 0.0122250412, 0.034597598, -0.00655621337, 0.00390710635, -0.00420464156, 0.00115686364, -0.020681303, 0.0163383335, -0.00994915795, -0.0266424455, 0.00045021766, 0.0273941141, -0.0116926096, -0.00728178164, 0.00837274361, -0.00540261203, -0.00460657477, 0.00552267, -0.0216939673, 0.0125382356, -0.00604466163, 0.0187186152, -0.00176563626, -0.00692682713, -0.0108261034, -0.000726873172, -0.00659275288, 0.00303799054, -0.000339620718, 0.000670759066, -0.013623978, -0.00101135857, 0.00698946603, -0.0121519621, 0.00255645346, -0.00629521767, 0.0153674297, -0.00119275053, 0.0124025177, -0.0114629334, 0.0210988969, 0.0220071618, 0.0111810584, -0.0139371734, -0.00224847835, 0.00878511742, -0.00905655231, 0.0167454872, -0.00893127453, -0.00190135406, 0.00927578937, 0.0261413343, -0.00960986316, 0.0223621167, 0.0192823652, -0.00120775786, 0.00520425523, -0.0179356281, -0.00935930759, 0.0197730381, 0.01778947, 0.00919227, 0.00965162273, -0.0025982128, -0.0254523065, 0.019345006, -0.00404804433, -8.6658747e-06, -0.000938279729, -0.0208796598, -0.0011757859, -0.00630565733, -0.00667627109, 0.0152003923, -0.0113480948, -0.0084980214, -0.0252435096, -0.0205142666, -0.0346811153, -0.0377713069, 0.0149393966, -0.0196582, 0.00371918944, -0.0130080283, 0.0104607102, -0.0132794641, 0.00425423076, 0.00843016244, -0.00851368159, -0.0138954138, -0.00511812652, -0.0155135877, -0.000965684303, 0.0298996735, 0.00052982138, -0.00777245359, -0.00380792795, -0.00262822723, 0.0225082729, -0.000277634244, -0.00919227, 0.00600812212, -0.0232808217, 3.84357e-05, -0.0163383335, 0.012423398, 0.0150646744, 0.0161921773, -0.0430121, -0.0198252369, 0.0159311797, -0.0127887921, -0.036351487, -0.00595070329, 0.0108052241, -0.00778811332, 0.0119744847, 0.00824224576, 0.0163592137, -0.0254731849, -0.019835677, -0.0170691218, -0.0112854559, -0.00283180387, -0.00184784993, -0.00237506139, 0.0343052819, -0.00121819763, 0.00300667109, -0.00165601808, -0.0249094348, -0.00778811332, 0.0115151322, -0.0173927564, -0.00144591648, -0.0202428307, 0.00176041631, 0.0190213695, 0.00727656158, -0.00986564, 0.0184471793, 0.0169647243, 0.0177685916, -0.00166123791, 0.00422030129, -0.00870159827, -0.0105807679, -0.000280570443, -0.0140311318, -0.0110349, -0.0198983159, -0.00442387816, -0.0168081261, -0.00769415451, -0.014615762, 0.00257994304, -0.00229154271, 0.00265302183, 0.0189065319, 0.00166776287, -0.017152641, -0.0113794152, 0.0195224825, 0.0116612902, 0.000282201654, 0.00428555, 0.00678066956, 0.0161608569, 0.000871725788, 0.0101161953, -0.0263918899, -0.00892605446, -0.0191779677, -0.0190109313, -0.0216939673, -0.0122876801, 0.00588806393, -0.0219862815, -0.000869768322, 0.0305051841, 0.0228214692, 0.0267259646, -0.00590894371, -0.00239333115, 0.00198617764, 0.0202950295, -0.0276864301, 0.0659797266, 0.00992305856, 0.0183323417, 0.00482320134, -0.00552267, -0.0162548162, 0.00221324386, 0.0205560252, 0.00211145566, -0.00165079813, -3.27875896e-05, -0.00988651905, -0.0335118547, 0.0132899033, -0.0108991824, -0.00803866889, 0.00967772212, -0.024283044, 0.00616993941, -0.00963074341, -0.0135613391, 0.0058306451, 0.00254601357, -0.002329387, -0.000589197909, -0.00772547442, 0.00323634734, 0.00790817104, -0.00507114735, -0.00674935, 0.00820048619, 0.0175911132, -0.00648835441, 0.00276133511, -0.00867549889, 0.0140102515, 0.00527994381, 0.0129767088, 0.00667105149, -0.00594548322, -0.0053451932, 0.000671411573, -0.00715650339, -0.00412373291, -0.00555920927, -0.00349734304, 0.00555398967, -0.0176015534, 0.0132272644, -0.0151690729, -0.0032050279, -0.0216522068, 0.00734442053, 0.0149811562, 0.00737574, -0.0181548651, 0.0159207415, 0.00132651092, -0.0120684439, 0.00510507682, 0.0217357259, -0.00702600554, 0.0237610526, 0.00261126249, 0.000487083307, -0.0146888411, -0.00638917601, 0.00412895298, -0.014260808, 0.0119014066, 0.00923403, -0.00177085621, 0.00697902637, -0.00877989735, 0.0137283765, 0.0262039732, -0.0344096795, 0.0242204051, 0.0143443262, 0.00184002006, -0.0114838127, 0.0146470815, -0.0159207415, -0.0146992803, 0.00448129699, -0.00309018977, -0.00593504356, -0.00484147109, -0.0144800441, 0.0152108325, -0.00637351628, 0.00631087739, 0.00895215385, 0.012423398, 0.0179773867, -0.000598332786, 0.000508615456, -0.0223412365, 0.00640483573, 0.0284380969, 0.00214147, 0.00228240783, -0.0076523954, -0.0151377534, -0.00126387191, 0.0213598926, -0.00142112188, 0.0150124757, -0.013415182, -0.0152108325, 0.000931102317, -0.0175284743, -0.0149393966, -0.00310323946, 0.00460657477, 0.00729744136, -0.00239724596, 0.00387056707, 0.0116404109, -0.0174240768, -0.00515727606, 0.016797686, -0.0223621167, -0.00165340805, 0.00814828742, 0.00141720695, 0.00382880773, 0.0156179853, 0.00843538251, 0.041362606, 0.00626911782, -0.0105598876, 0.0146366414, 0.0098552, 0.0308810174, 0.00427511055, -0.00554876961, 0.0122354804, -0.00983953942, 0.00939062703, -0.00344775384, -0.0188230127, 0.0130184684, 0.0102153737, -0.000339620718, -0.00729744136, 0.0117448084, -0.0297952741, 0.00231242226, 0.0291271266, -0.00208405103, -0.00276916497, 0.00105442281, -0.00196790788, 0.0138327749, 0.0029857913, -0.00828400534, -0.0168812051, -0.00376094878, -0.0172048397, -0.00233199704, -0.00266737654, 0.0143130068, -0.030212868, -0.00930710882, -0.0124338372, 0.0251808707, 0.00080321444, 0.00484930119, 0.00571058691, 0.0160773378, 0.00798647, -0.0126217548, -0.00312411925, 0.0138432151, 0.00430382, -0.0115568917, -0.0164636113, -0.0226753112, -0.0246588793, -0.00568970758, 0.0163696539, -0.00478144223, 0.0107425852, -0.000844321272, -0.00702078547, 0.00514944596, -0.0137074972, 0.00274828519, 0.00286573335, -0.00676501, 0.0154091893, -0.00737574, 0.00198356761, 0.0192823652, -0.0038366376, 0.00867549889, -0.0137701361, 0.00407675374, 0.00503199827, 0.0202532709, 0.00512073655, -0.0278325863, 0.00154378987, 0.00511812652, 0.0147201605, -0.0118283276, 0.00630565733, 0.00312672905, -0.00677023, 0.00225891825]
|
01 May, 2023
|
Python calendar module : leapdays() method
01 May, 2023
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions. In Python, calendar.leapdays() is a function provided in calendar module for simple text calendars. leapdays() method is used to get number of leap years in a specified range of years.
Syntax: leapdays()
Parameter:
year1, year2: years to get the number of leap years.
Returns: Returns number of leap years in a specified range.
Code #1:
Python3
# Python program to explain working of leapdays() method
# importing calendar module
import calendar
# checking number of leap years in range
print(calendar.leapdays(2016, 2022))
print(calendar.leapdays(2001, 2003))
Output:
2
0
Code #2: Explaining working of leapdays() method. Below code prints number of leap years and 1st-month calendar of last leap year if any leap year found in given range, otherwise notifies no year is leap.
Python3
# Python code to demonstrate the working of leapdays()
# importing calendar module for calendar operations
import calendar
year1 = 2005
year2 = 2025
# calling leapdays() method to verify
val = str(calendar.leapdays(year1, year2))
print("Number of leap years found is % s" % val)
count = 0
# checking the condition is True or not
for year in range(year1, year2):
val = calendar.isleap(year)
if val == True:
lyear = year
count += 1
if count >= 1:
# print 1st month of first leap year
calendar.prmonth(lyear, 1, 2, 1)
# Returned False, year is not a leap
else:
print("No leap year found")
Output:
Number of leap years found is 5
January 2024
Mo Tu We Th Fr Sa Su
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : leapdays() method
|
https://www.geeksforgeeks.org/python-calendar-module-leapdays-method/?ref=lbp
|
Pandas
|
Python calendar module : leapdays() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Python calendar module : leapdays() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00564156519, 0.014194726, -0.0126634836, 0.029574208, -0.00595172541, 0.00241701538, 0.0408405736, 0.0326143391, 0.0150329964, -0.00139153015, -0.00260422914, -0.000698559335, -0.00505756959, 0.000154294292, -0.013982364, 0.0203085169, -0.0373757184, 0.0561082847, 0.0484185442, 0.00190986122, -0.0361462533, -0.0148653425, 0.00038420764, 0.0231139306, 0.00182882836, -0.00780151086, 0.028657699, -0.0253493208, 0.00396781694, -0.0031127804, 0.033262603, -0.0102548506, 0.0264446624, 0.0027690893, -0.0393652171, -0.0420923904, 0.0105063329, -7.04235135e-05, -0.034983851, -0.0308707338, -0.016128337, -0.00817593839, 0.00704706647, 0.0148653425, -0.00765621, 0.0171119086, -0.00639321515, 0.0136023471, -0.0216609277, -0.0358333, 0.00823741127, -0.0253940281, 0.0236504246, 0.0103833862, -0.00210126652, -0.0068458817, -0.0166760087, 0.00252738758, -0.0247904733, -0.0292165447, 0.0603555255, 0.00285151927, -0.0231362861, -0.0207667723, 0.0012161918, 0.0103889741, -0.0365262702, 0.0324131548, 0.0515480898, -0.000588186958, 0.015960684, -0.0177378189, 0.0090309754, -0.0156030217, -0.0115122581, 0.0049458, -0.00218229927, 0.00312395743, -0.0642898157, -0.0153683051, -0.0324355066, -0.0121269897, 0.00163882016, -0.0109142913, 0.0305801332, -0.00302615901, 0.0485973768, -0.029305961, 0.0272046942, 0.0110484147, 0.0234045312, 0.00462725712, -0.00589025253, -0.0148541657, -0.0113781346, 0.0115010813, 0.0189784598, 0.0387169532, -0.0342238173, 0.0035067678, -0.0407958664, -0.00201045373, 0.00333911367, -0.0447748601, -0.000750252744, 0.0136470553, -0.00151587371, -0.00893597119, 0.00357382954, -0.0146194501, 0.0290824231, -0.028657699, -0.0162624605, -0.0205991175, -0.0381581038, 0.0119593358, -0.0298871621, 0.00521963555, 0.00170308771, 0.00541802635, 0.052665785, 0.00613614498, 0.0107242828, 0.0401923098, -0.0184419658, -0.00274254405, -0.00776239112, 0.0113334265, 0.01553596, -0.0381357521, -0.011624027, -0.0218732897, 0.0176931117, -0.0550800078, -0.00038770042, -0.000385604741, -0.00499330228, 0.0495809466, -0.00548788207, -0.0024267952, 0.0256846305, 0.00657204632, 0.0177266411, -0.00265871687, -0.0125070065, -0.0409970507, -0.00169330777, 0.0192131754, 0.0195820145, -0.0092098061, -0.0295295, -0.0604002327, -0.0122052291, -0.00970159192, 0.0321896151, -0.0336873271, -0.000875294849, 0.000263706141, 0.0219850596, -0.0285682827, -0.0304907169, -0.0084050661, 0.0476585105, -0.00200765952, -0.00952834915, 0.0232257, 0.00124064134, 0.0236057173, 0.0329049379, 0.0211914964, 0.0101095503, -0.035788592, -0.0247010589, -0.0155806672, 0.0454007685, 0.00179110619, 0.0408852808, -0.00384487049, 0.0090421522, -0.0466302335, -0.0264446624, -0.0322119668, -0.0143176718, 0.0389628448, 0.00990836602, 0.0234492403, 0.0330390632, -0.0271152798, -0.0169889629, -0.0193472989, 0.022230953, 0.00332514243, 0.0315189958, 0.015915975, -0.021001488, 0.0296636242, 0.0240975022, 0.0461384468, -0.0244328119, 0.00430591963, -0.0140941329, -0.0195373073, -0.0290600676, -0.032033138, -0.000260038709, 0.00632056501, -0.030803673, 0.0485526696, 0.0203420483, -0.0143847335, 0.00853919, -0.0259081684, 0.00165977702, -0.0293506682, 0.0173242707, 0.0137700019, -0.00295909727, 0.0166424774, 0.0291047767, -0.0123952366, -0.00148374, 0.0208450109, -0.0151559431, -0.0193137694, -0.00180787151, -0.0218732897, 0.0398793556, 0.0228903927, -0.0250810739, -0.0373533666, 2.13933799e-05, 0.00103945634, 0.0056890673, -0.000398528093, 0.0408405736, 0.0140494257, 0.0103219124, 0.0222085975, 0.00585672166, 0.00216134265, 0.0336649716, -0.0134682236, 0.0143847335, -0.0241198558, -0.0195261315, -0.0160724539, -0.0158265606, 0.032994356, -0.0192690603, 0.0152341817, 0.0269364472, 0.00315469387, -0.0214709193, 0.0188778676, -0.0628144518, -0.0172460321, -0.0116016734, 0.0200626235, 0.00704147806, 0.0117916819, 0.00196155463, 0.0155471368, -0.00547391083, -0.012428768, 0.0128199607, -0.00279284013, 0.00267827651, 0.0352968052, -0.00312395743, -0.0119369822, -0.00431430247, -0.0299765784, 0.0100536663, 0.0306024868, 0.00152705074, 0.00885773264, -0.00324131525, -0.00361015461, 0.0215156283, 0.0127417222, -0.0350732654, -0.0130546773, 0.0346932523, -0.00188890449, 0.0342461728, 0.00334470207, -0.0370851196, 0.0031183688, -0.0037442781, -0.0230692234, 0.0114340195, -0.0187772755, -0.0145635651, 0.00422209268, -0.00530625694, 0.00917627569, -0.0152341817, 0.0291494839, -0.0382698737, -0.00137127202, -0.0526210777, -0.0154577214, 0.00218369649, -0.0357438847, 0.0232704077, -0.0538728945, 0.0308707338, 0.0182966664, 0.0013153872, 0.0430759639, -0.0179837123, -0.0340002812, -0.0199620314, -0.0064770421, 0.0488656238, -0.00980777293, 0.0182743128, -0.00026719895, 0.0247904733, 0.00720354402, -0.00952834915, 0.00868449, -0.00706383213, 0.00241701538, 0.0253940281, -0.0245445799, 0.00469431886, -0.00522801792, 0.0137923555, 0.00391752087, -0.0381804593, -0.00290041836, 0.022555083, 7.15586721e-05, -0.00860066246, -0.0301777627, -0.0426512398, -0.0266682, 0.042695947, 0.03429088, 0.00635968428, 0.0275623575, 0.00415223651, -0.00893597119, -0.032256674, -0.0278976653, -0.0133005697, 0.0109701762, 0.00967923831, 0.00665587327, 0.000509948295, 0.0248798896, 0.0382251665, -0.0163183454, -0.0260199383, -0.0220521204, -0.0285906363, -0.0161171611, -0.00970159192, 0.000504359836, -0.012965261, -0.0137923555, 0.0240751486, 0.00898626726, -0.0115122581, -0.0346261896, 0.0228009764, -0.0285459291, -0.00780151086, -0.0185313821, -0.0226668529, 0.0143959103, -0.0110651795, 0.0250363667, -0.0076450333, 0.00858389679, -0.00298424554, 0.0229574535, 0.00462446269, -0.00642674603, -0.0450654589, -0.0116016734, 0.0189896375, 0.00635409588, -0.0044791624, -0.0148653425, -0.0389181376, 0.0149324043, -0.0101430817, 0.0172460321, 0.00751649821, 0.0242316257, 0.0191796459, -0.0253269672, -0.0219291747, -0.0388063677, 0.0186878592, 0.00424444629, -0.00619761832, -0.0244328119, -0.00202582218, -0.0331284776, -0.0161171611, -0.0104951551, -0.0204091091, 0.00196015742, -0.0148765193, -0.0031574883, 0.0247457661, 0.0392310917, -0.00650498457, 0.0384934135, -0.0541858487, -0.019123761, 0.0289259441, -0.00672293501, -0.00675646588, 0.0393652171, -0.027159987, 0.0499833189, 0.0512798429, -0.00832123868, -0.0299318712, 0.029998932, -0.0053202277, -0.000333038159, 0.00538728945, 0.0121716978, -0.0331284776, 0.0600425713, -0.0017505897, -0.00415503094, 0.0184419658, 0.0234715939, 0.0198614392, 0.00744943693, 0.00176316372, -0.0157930292, 0.0138929477, -0.0503856875, -0.0394099243, 0.0101039624, 0.00732649025, 0.0300212856, -0.0372863039, 0.00141947262, -0.0289035905, 0.0310272109, 0.00325249229, -0.0292389, -0.0236951318, -0.0132893929, 0.00132446853, 0.0131552694, 0.0214150343, 0.00573377497, -0.0072594285, -0.032301385, -0.0125740683, 0.0231139306, 0.0273611713, -0.0131664462, -0.00867331307, -0.0226445, 0.00633733, -0.0144406185, 0.00209707511, -0.0288141761, -0.00780151086, 0.0498491935, 0.0213367958, -0.00787416101, -0.0534705259, -0.00468593603, 0.0470773093, 0.00753326388, -0.0212809108, 0.0498044863, 0.0147982808, -0.00716442475, 0.000108800617, 0.0126075987, 0.00676764268, 0.00889685191, 0.010713106, 0.0110819452, -0.0312954597, -0.0399240628, -0.02850122, -0.00466637639, 0.00948364194, -0.00768974097, 0.0520845838, -0.0249022432, 0.0132111544, 0.0309601501, -0.0173242707, 0.00986365788, 0.0134235164, -0.0234715939, 0.00769533, 0.0430536084, -0.00404326152, 0.00965129584, -0.0250140131, -0.0156589057, -0.0193472989, -0.0171566177, -0.00591819454, 0.00240164693, -0.0612049736, 0.0213479735, -0.0246563498, 0.0177937038, 0.0119146276, -0.0261093546, 0.0175142791, -0.0064770421, -0.0249469504, -0.0068794121, 0.00501286192, -0.0187549219, 0.0112216575, -0.0118028587, 0.0306471959, 0.0501621477, -0.0110037066, 0.00728737097, 0.0189561062, 0.0189002212, 0.022610968, 0.00997542776, -0.00845536217, 0.0137923555, -0.00602437556, -0.0323908, -0.0393428616, -0.00596849108, -0.0250587203, -0.0076450333, -0.023091577, 0.0286129899, 0.018643152, 0.00436739298, 0.0231139306, -0.0408182181, 0.0202191, 0.00307924952, -0.0151782976, -0.0120599279, -0.00531743374, -0.0185760893, 0.00628703414, -0.0021459742, -0.00577289425, 0.000850146695, -0.00349559099, 0.0210126657, -0.000141807541, -0.0171901472, -0.0138035323, 0.0230021626, 0.0184866749, -0.00814799592, 0.0103051476, 0.0100313118, -0.0117469737, 0.0171230864, -0.0300436392, 0.0282329749, -0.0130770309, -0.0265340786, 0.0303342398, 0.00822623447, -0.0270035099, -0.00849448144, 0.0242092721, 0.0422041602, 0.0176484026, 0.0203644019, -0.0068738237, 0.0585672148, 0.0257069841, -0.0119928671, -0.00643792283, -0.000547321222, -0.00547949923, -0.0265564322, -0.0329496451, 0.0405276194, 0.0115346117, 0.000261785113, -0.0182184279, 0.00386722456, 0.033486139, 0.038739305, -0.0342238173, -0.00872360915, 0.0184978507, -0.00940540247, -0.00727060577, -0.012965261, -0.00193920068, 0.00449872203, 0.0331284776, -0.00386443036, 0.0131552694, -0.0078126872, -0.0105733937, -0.0253940281, -0.028076496, 0.0165642388, -0.0223091915, -0.00944452267, -0.0117916819, -0.013501755, -0.0121716978, -0.0176372267, -0.0310495645, 0.00231642276, -0.00411870563, 0.0174472183, 0.0163071696, 0.0165865924, -0.023784548, 0.00643792283, -0.0212697349, -0.0293730237, -0.00357941794, -0.0119928671, 0.0326813981, -0.0565106571, 0.01670954, 0.0338214487, 0.0136358785, -0.0306248404, 0.0125405369, -0.00653292704, -0.0212250277, 0.00381133961, 0.00713089388, -0.0195820145, 0.0205655862, 0.0492232852, -0.00352353323, 0.0218732897, 0.0238963179, 0.039476987, -0.00533140497, 0.019716138, 0.00325249229, -0.00356824114, 0.028344743, 0.0115793198, -0.00559126912, -0.00537052425, 0.0244328119, 0.001848388, -0.0371074714, 0.000741171476, -0.0116463816, -0.00519448705, 0.0241198558, -0.0249245968, 0.0474349745, 0.00281659118, 0.045423124, -0.016497178, 0.0193025917, 0.0072650169, 0.0064714537, -0.00579524832, 0.0171119086, 0.0261540618, -0.014407088, 0.012484652, -0.00170029339, 0.0033530849, 0.0408852808, 0.00413267687, 0.0280317888, -0.0158489142, -0.0033558791, -0.0213926807, -0.00849448144, -0.0106739867, 0.02689174, -0.00855595432, -0.000137965471, -0.0299095158, 0.0012147947, 0.0101207281, 0.014306495, -0.0146641573, -0.00990277715, 0.0221974216, 0.00690735457, 0.0273164641, -0.00902538653, 0.0220744759, -0.00286409329, 0.0216832813, -0.0104616247, 0.019123761, 0.020196747, -0.00484520756, -0.0143623799, -0.00657204632, 0.0271152798, 0.027696481, -0.00842742, 0.0273164641, -0.00851683505, -0.012697014, -0.00338661554, 0.00589584094, -0.0205991175, 0.0147423958, 0.00981895, -0.0213926807, -0.00533699337, -0.0400805399, -0.0133117465, -0.00144322356, -0.0212362036, 0.0293730237, -0.00326087489, -0.0377780907, -0.00899185613, 0.0104616247, -0.0487315, 0.0166871846, 0.0127752535, -0.0117357969, 0.00531184534, -0.00183162256, 0.0032972, -0.00744943693, 0.0112831304, 0.0215156283, -0.0175142791, 0.0217726976, -0.0003656958, -0.00748855621, 0.00839388929, -0.0317201838, 0.0404605567, 0.00425841752, -0.0214373898, -0.0223315451, -0.0277635418, 0.0258411076, 0.0211803187, 0.00802504923, -0.015267713, -0.00317704794, 0.0180954803, 0.00375545491, 0.016184222, 0.0589695834, 0.0110595915, 0.0037442781, 0.0172348563, -0.0343355872, -0.0205320567, 0.0295518544, -0.000331641058, 0.0125964219, 0.0018469909, -0.023359824, 0.0115234349, -0.0211132579, 0.0113669578, 0.0122387595, 0.00720913243, -0.00702471286, -0.0230245162, 0.022175068, 0.0325696319, 0.01960437, 0.00407399796, 0.0026754823, 0.0264223088, -0.0179278273, 5.79804255e-05, -0.0370404087, 0.0331731848, 0.00599643355, 0.0238292553, -0.0206997097, 0.0335755572, 0.00937187206, 0.0229351, -0.0229127463, 0.00103875773, -0.00528110843, -0.0330837704, -0.0239857342, -0.0217279904, -0.0346932523, 0.00667822734, 0.0262434762, -0.00578966, -0.0102548506, 0.0205097012, -0.01227229, 0.00766179897, -0.0213367958, 0.0154018365, 0.0369286425, -0.0149659356, 0.0113837225, -0.0227339156, 0.00621438399, -0.0269588027, -0.00716442475, 0.00962335337, 0.0214150343, -0.018855514, -0.0355874076, 0.0282553285, -0.0216609277, 0.011624027, 0.00383369369, 9.07253925e-05, -0.0192243531, 0.0187549219, -0.0064770421, 0.0373757184, 0.0229798071, 0.0337096788, -0.00850007, -0.0194814224, 0.0184531435, 0.017838411, 0.0169777852, 0.00113376183, -0.0142953182, -0.00167514523, 0.0410864651, 0.0154465437, 0.0125517137, -0.0049066809, -0.0365933329, 0.044685442, 0.00142366393, -0.0109366449, 0.00370795303, 0.00616408745, 0.0101430817, 0.0254610907, 0.0379122123, 0.00720913243, 0.00149491697, -0.0222756602, -0.0167766, 0.0172236785, -0.0129764378, 0.00178132625, -0.00564715359, 0.0171342641, 0.00435062731, 0.0125517137, 0.00768415257, -0.016128337, 0.0126299532, 0.0085950736, 0.00679558516, 0.0182519574, -0.0068738237, 0.00396222854, 0.0145747419, 0.0274505876, 0.0336202644, 0.00767297577, -0.013982364, 0.00443445472, 0.00798593, -0.000232096339, -0.0214150343, 0.0147982808, -0.0437912866, -0.00154102186, -0.00173103006, 0.0123058213, -0.016184222, -0.0216609277, -0.0333073102, 0.029305961, -0.0103833862, 0.0478373431, 0.026198769, -0.0294847917, -0.0415111892, -0.00675087748, -0.000894854486, 0.018374905, -0.00260981778, -0.00654969225, -0.0194367152, -0.000747458485, 0.0122611132, 0.00224377261, -0.0332849547, 0.00149212277, -0.0247904733, 0.0243657492, -0.0218509361, -0.000984968618, -0.0178719424, -0.00842742, -0.035945069, -0.0416676663, 0.0273164641, 0.0101989666, -0.0281435587, -0.00653292704, 0.0238963179, 0.0324131548, 0.0108360527, 0.0146306269, -0.0135464622, 0.00684029283, 0.0026726881, -0.00858948566, -0.0166536551, -0.0142617878, -0.0113334265, 0.00736002112, -0.00915951, -0.0464961082, 0.0270258635, -0.0104895672, -0.0156477299, -0.0587460473, -0.0173242707, -0.0444395505, -0.00575612905, -0.0397228785, 0.00632615341, 0.00796916522, 0.0128758457, 5.71072269e-05, 0.0204538181, -0.0178495888, -0.0275847111, -0.00560244592, 0.0224656686, -0.00780709926, 0.0049458, 0.0311613344, 0.00533140497, 0.00119034515, 0.0425618216, -0.0241645649, -0.0219403524, -0.0159718599, -0.0337096788, -0.0186990369, 0.000695415831, 0.00312954583, -0.0249469504, -0.024857536, 0.0157147907, -0.0274729412, -0.0180843044, -0.0282553285, -0.00443166029, -0.0175701641, -0.0072594285, 0.0166313015, -0.0356097594, 0.0482844226, -0.0130993845, -0.00958982296, 0.0597743243, -0.0151335895, -0.023784548, -0.0032972, -0.0289035905, -0.00695206271, 0.0209120717, 0.00109184824, 0.0174360406, 0.0265117232, 0.0156030217, -0.0353638679, -0.0367721617, 0.0206326488, 0.00653851544, 0.0418017916, -0.023784548, -0.0109310569, -0.044461906, -0.022443315, -0.0105230976, 0.0150665278, -0.000806836, -0.0246787034, -0.00106041308, -0.0547670536, 0.000209917082, -0.00533140497, 0.00394546334, 0.000838969776, 0.0243433956, 0.00242120656, 0.0449760444, 0.00259444932, 0.0164412931, 0.00810887665, -0.0179613568, 0.00584554439, -0.00806416851, 0.0251704901, 0.0365039147, -0.0226668529, -9.42181869e-05, 0.0122387595, -0.000950739253, 0.00167095393, 0.00379736861, -0.0245445799, -0.0143288495, 0.00463284552, -0.0057114209, 8.23426817e-05, -0.0122611132, 0.0461384468, 0.009427757, 0.00825417694, -0.00306248409, 0.0122946445, 0.0221415367, 0.0200179163, -0.0116910888, 0.00312395743, -0.00736002112, 0.0109198792, -0.00984130427, -0.039700523, -0.001941995, -0.0212920886, -0.0248128269, 0.0127640758, 0.00909244828, -0.00279144314, 0.0137923555, -0.0304907169, -0.0185425598, -0.00345088309, 0.00402370188, -0.00405723276, 0.0047194669, -0.00572818657, 0.0270482171, -0.0227450915, -0.0135352854, -0.0135576399, -0.00241422118, -0.00731531344, -0.00431989087, 0.00462725712, 0.0260422919, -0.00638762675, -0.0193584766, -0.00272298418, 0.0105789825, -0.0209344253, 0.0234045312, 0.00216832827, -0.0189784598, -0.00951158348, -0.0128423152, -0.00514977938, -0.0221527144, 0.0162512846, -0.0164748225, 0.0203755796, -0.0131105613, 0.0242763348, -0.0438807048, -0.0119593358, 0.0226780307, 0.0088130245, 0.00998660456, -0.00153263914, 0.00814799592, -0.00470829, -0.0114675499, -0.014038248, 0.00135101378, -0.0295071471, 0.0174695719, 0.00338941, -0.022175068, 0.00117777102, 0.0379345678, -0.0405723266, 0.0145412115, -0.0200179163, 0.011355781, -0.00317145931, -0.0235610101, 0.0201408621, 0.0128981993, 0.0238963179, -0.00272298418, 0.0112384222, -0.00351515063, 0.00964011904, -0.0108639952, -0.00127626793, 0.0249916594, 0.010394563, -0.0234268866, 0.0107354596, -0.0233821776, -0.00806975737, -0.0207779482, 0.0206326488, 0.0135799935, -0.000179704395, 0.0130770309, -0.000514838204, -0.00772886071, -0.00582319079, 0.00404046709, -0.00535096461, -0.0119369822, -0.013825886, 0.00809211098, 0.0163518768, -0.00151168241, -0.021482097, -0.0231139306, 0.0140941329, -0.00611938, 0.000470829, -0.0221527144, 0.0231139306, 0.0291047767, 0.0149882892, 0.0121381674, -0.0117357969, 0.0017505897, -0.014306495, -0.0448195674, 0.0079524, -0.00657763472, 0.045423124, 0.00884655584, 0.0158265606, -0.0194926, 0.00797475316, -0.000547321222, -0.000926988258, 0.0214373898, -0.0113501921, 0.00356824114, -0.0241645649, -0.0379569195, 0.0214373898, 0.00643792283, 0.019447891, -0.0315860584, 0.0177601725, 0.0228903927, 0.00894714799, 0.0130211459, 0.00514419097, 0.00220884453, 0.00612496817, 0.00817593839, 0.00779592199, 0.00387281296, -0.0223538987, 0.00573377497, -0.000473972497, 0.00218090229, 0.0242986884, -0.0118810972, 0.0198055543, -0.0249916594, 0.00050750334, 0.00114913, -0.00419973861, -0.0190343447, -0.0246116426, -0.0101766121, 0.0251928438, -0.0120599279, -0.0273164641, 0.00538170105, 0.0133676315, 0.0145970955, 0.0253940281, 0.0184084363, 0.0130658541, 0.0292389, 0.00256510987, -0.00668940414, -0.00779033359, -0.0153906597, 0.0017491926, -0.0153459515, -0.011355781, 0.0121493442, -0.0162177533, -0.0431653783, -0.016396584, -0.0164412931, 0.00857272, 0.00784063, -0.00279284013, 0.00988601148, 0.0131888, -0.0316978283, 0.00307086692, -0.0168660171, -0.000143815909, 0.0112663647, -0.00509668887, -0.0177378189, 0.0194814224, -0.0184307899, -0.00696323952, -0.00107857562, -0.0246787034, 0.00323572685, -0.0187772755, -0.000834778417, 0.0145635651, 0.00250503374, 0.000675856136, -3.83661882e-06, -0.0115234349, -0.00505477516, -3.08348467e-06, 0.00395943411, 0.00633733, -0.0393875688, 0.0159718599, 0.00534537621, 0.0039370805, -0.00566112483, -0.00419973861, -0.0316307656, 0.0150888814, -0.0208673645, 0.0167430695, 0.0092098061, -0.00603555283, 0.0224097837, -0.0105566289, -0.00834918115, -0.0360791907, -0.0115010813, 0.0111210644, 0.00744384807, 0.0072650169, 0.0352073908, -0.0184978507, -0.0300212856, -0.00905891787, -0.00712530501, 0.010070431, -0.0171119086, 0.0215268042, -0.0270035099, 0.0274505876, -0.00644351123, 0.0274952948, -0.0106348675, 0.000811027363, -0.00705265487, 0.0207444187, -0.016228931, 0.00444283755, -0.0154241901, 0.0130546773, 0.00711971661, 0.0166201238, -0.016128337, -0.00347323692, -0.0119258054, 0.00533699337, -0.000317495229, 0.00345367729, -0.00419694465, 0.0141388411, 0.00119593355, 0.00978541933, 0.0049458, -0.0169777852, 0.00171845593, -0.00120291917, -0.0165083539, -0.0104336822, 0.000426121202, -0.0194255374, -0.0109087024, -0.0251481365, -0.00134891807, 0.00428077159, 0.0339779258, -0.0187437441, -0.0111154765, 0.0346708968, 0.015804207, -0.0091986293, -0.0391416773, 0.00479770545, 0.0232927632, 0.0113669578, -0.0152565362, -0.0363697931, -0.0398346484, -0.012752899, -0.0112887193, -0.0116352038, -0.00447077956, -0.00767297577, -0.0124399448, -0.0300883483, 0.00613055658, 0.0188108049, 0.00077330519, 0.0152118281, 0.0144294417, 0.000917208381, -0.00827094261, 0.0133788083, 0.0076506217, -0.00466078799, -0.0244104583, 0.00783504173, -0.039700523, 0.00435621617, -0.0283223893, -0.027696481, -0.00484241312, -0.000164598037, 0.032972, -0.0011211877, -0.00353191607, -0.0238516107, 0.0310719199, -0.00404605549, -0.018643152, -0.0246116426, -0.00833800435, 0.00110512087, -0.00719236676, -0.00937187206, 0.0404382, 0.00395943411, 0.0127752535, -0.00720913243, 0.0145523883, -0.00803622697, -0.0153012434, -0.000768415281, -0.0243657492, 0.00941658, -0.00796357635, -0.00988601148, 0.00354029867, 0.00673970068, 0.00463843392, 0.000936768076, 0.00160948071, -0.00338102714, 0.00706942054, 0.00100452837, -0.0168995466, -0.00704147806, -0.042159453, 0.000907428563, -0.0109142913, 0.031764891, -0.00870684348, -0.00255113863, 0.0180507731, 0.0468984805, 0.0124175912, -0.000594124722, 0.0501621477, 0.0255728606, 0.0047138785, -0.00994189642, -0.00366324512, 0.0522634163, 0.0203867555, 0.0114563731, 0.011679912, -0.0194367152, -0.0441713035, 0.000597966777, -0.0237398408, 0.0220074132, 0.0013649849, -0.0139153022, 0.0279870816, -0.0107913446, -0.0161506925, -0.0420923904, -0.0184754971, -0.00433106767, 0.00597407948, 0.00156756712, -0.0325025693, 0.00364927389, -0.00257488969, -0.00862860493, 0.0107242828, -0.00967364945, -0.00301498198, -0.010500744, 0.0309377965, -0.033262603, 0.00428915443, -0.0183301978, 0.00421091588, 0.00533699337, -0.0166871846, 0.0120822825, 0.00983012654, 0.0385828279, -0.00299262814, 0.0281435587, -0.0324355066, 0.0277411882, -0.00303174742, -0.00298983394, -0.00469152443, -0.00644351123, -0.00990277715, 0.0326366909, -0.0210126657, 0.013714117, 0.0196379, 0.00834918115, 0.0385828279, 0.014787104, -0.00986924674, -0.019202, 0.0146082724, -0.00630938774, -0.00416341377, 0.0254610907, -0.0134011619, -0.0101542585, -0.0243657492, 0.0027690893, 0.0104280934, 0.0167318936, -0.0372639485, -0.00805858057, -0.0169666093, 0.0012657895, 0.0113110729, -0.0138147091, -0.0159718599, 0.0209008958, 0.00469711283, 0.00351794483, -0.00954511482, 0.0177154653, 0.0479267575, 0.0308707338, 0.0101877898, -0.0182631351, 0.00754444068, 0.00458813785, 0.00812564231, -0.0477926359, 0.0105789825, -0.0212585572, 0.00665028486, 0.0363474376, -0.000858529413, -0.0185649134, -0.0208338331, -0.0140494257, 0.00202023354, 0.0340896957, 0.0137588242, -0.0151782976, 0.010981353, 0.00464122836, 0.0168995466, 0.0155806672, -0.0155247822, -0.014194726, -0.0101989666, -5.51425292e-05, 0.0200402699, 0.0154577214, 0.00589025253, 0.00265312847, -0.0333743691, 0.00201185094, 0.0279870816, -0.027428234, -0.0211803187, 0.000107403495, -0.00339779258, 0.016340699, -0.00203280756, 0.0231139306, -0.00361853745, -0.0127864303, 0.0192467067, 0.0297306851, -0.00278445752, 0.00337264454, -0.000957026263, 0.00851124711, -0.00602437556, 0.0195820145, -0.000558148895, -0.0101486696, -0.00138733885, -0.012160521, 0.00212222314, -0.00642115762, 0.0252151974, 0.0180284195, 0.0104895672, -0.00127347372, 0.0224992, -0.00265731965, -0.022342721, 0.00519169308, -0.00417738501, 0.0123281749, 0.0056248, -0.00908127148, 0.0117357969, -0.000980777317, 0.00139851577, -0.00796916522, -0.000671315531, -0.00759473722, 0.00856154319, 0.0139041254, 0.00760032563, 0.033754386, -0.0084162429, 0.0149212275, 0.00319381338, 0.00787416101, -0.00340338098, 0.00771209504, 0.00192522956, -0.00336705591, 0.0113278385, 0.0183525514, 0.00947805308, -0.0261317082, 0.00836594682, 0.0226333216, 0.0239410251, 0.00162764324, 0.00551861897, 0.00513580814, -0.009802185, -0.0378004424, 0.0120599279, 0.0134011619, 0.00739355199, -0.0167207159, 0.0145747419, 0.0106236907, -0.00188471307, -0.00909244828, -0.0168101322, 0.00908127148, 0.0257963985, 0.00862860493, -0.00133704254, -0.0193808302, -0.0154241901, 0.0413323604, 0.00587348687, 0.0207444187, 0.0101319049, 0.00600202195, 0.000318717706, 0.0134682236, 0.00092000264, -0.000222491144, -0.00738796359, -0.00761150243, -0.00033740417, -0.0251034275, 0.00947246421, -0.00547391083, -0.00996425, -0.011193715, 0.0129429074, -0.0167654231, 0.0191349369, -0.00629262254, 0.0167989545, -0.00559965149, -0.0104225054, -0.0280541424, -0.000566880917, 0.0196490772, 0.0196826085, -0.0147759272, 0.0203420483, -0.0224768445, 0.00637086108, 0.0116575584, -0.000883677567, -0.024969304, 0.0303342398, 0.0152900666, 0.0154688982, 0.0014613861, 0.0110987108, 0.0112607768, -0.00145440048, 0.00884096697, -0.020252632, -0.00479770545, -0.00383928209, -0.0112607768, 0.00250643096, 0.00419694465, -0.0239410251, -0.0258411076, 0.0205767639, -0.011624027, -0.0154130133, 0.0344473571, -0.00536773, 0.00810328871, 0.014194726, -0.022175068, 0.00667263893, -0.0011679912, -0.015804207, 0.0229351, 0.00408517476, -0.00476138061, -0.0105901593, 0.0396781713, 0.0159383304, -0.0045322529, -0.00326925772, -0.0189896375, -0.00469990727, 0.00498212501, 0.0232033469, 0.0141164875, 0.00518610468, 0.0153124202, 0.00951158348, -0.00744943693, -0.000501216331, -0.0131440926, -0.0162065774, 0.0172795635, 0.00373868947, 0.0078126872, 0.00560244592, -0.00528669683, 0.0025762869, 0.00638203789, 0.0186319742, 0.00440930668, -0.0148653425, 0.00927128, 0.0263105389, 0.0117246201, 0.0127640758, 0.00625350326, -0.0415782519, 0.0238292553, 0.00732090184, -0.00160249509, -0.00391193246, -0.0105175097, -0.0136023471, -0.00426121196, 0.00401811348, 0.00787416101, -0.0289706532, 0.00169610209, -0.00437018741, -0.0181737188, -0.0254387371, -0.00962335337, 0.0129764378, -0.0054599396, 0.00352073903, -0.0130099691, -0.031183688, -0.0221415367, -0.0168995466, 0.00681235082, -0.00457696058, -0.019816732, 0.00307086692, -0.01960437, 0.00523081236, -0.0182631351, -0.00234715943, 0.0153794819, 0.00228568609, -0.0119816894, -0.0291941911, -0.00422768109, -0.0125293601, -0.0196826085, -0.00122178032, 0.0100480774, 0.0123840598, 0.00381133961, 0.00391472643, 0.00725384, 0.0176931117, 0.00328602316, -0.0233821776, 0.00205097022, 0.00539846672, 0.0188108049, -0.027696481, -0.013825886, -0.00831565075, 0.017357802, -0.00877390523, -0.00114074734, -0.0193472989, -0.0179948881, 0.00462446269, 0.00134961668, -0.000993351336, 0.00995307323, 0.0132223312, 0.0113725457, -0.00164720288, -0.0144965034, 0.00652733864, 0.0234268866, -0.00205097022, 0.00856713206, -0.0158153828, -0.0402817242, 0.00784063, 0.0318766609, -0.0112887193, 0.00937187206, 0.0181290116, -0.00450151647, -0.000520775968, 0.0122164059, 0.0200849771, 0.0242763348, 0.0134570468, 0.00665028486, 0.00714765908, -0.0024770915, -0.00302057061, -0.00779592199, -0.0148653425, -0.00675646588, 0.0210909043, 0.0201185085, 0.00784621853, 0.00524198916, -0.0116016734, -0.0175701641, -0.00339779258, -0.00259444932, -0.00964570697, -0.00525316643, 0.0159830377, -0.0439477637, 0.00877949409, -0.0205432326, 0.00789092667, -0.00699677039, 0.0106963404, -0.0242986884, 0.0196267236, -0.00060250744, -0.0153571283, 0.00575612905, -0.0227674451, 0.0280317888, -0.0127305454, 0.00599084469, 0.00302057061, 0.0117916819, -0.0290600676, 0.00570862694, -0.0323908, -0.00279563456, -0.0200179163, 0.0173689798, 0.0123393517, 0.00433665654, -0.0098133618, -0.011892274, -0.00322175561, -0.0175254568, -0.0186207984, -0.0102660283, 0.0118363891, 0.00937187206, 0.00528949127, -0.0135911703, 0.00342852925, 0.0199285, -0.0130099691, 0.0287918206, -0.0115569653, 0.00956188049, -0.00383369369, 0.011679912, -0.0153347747, 0.00502683315, -0.000450221502, 0.00987483468, 0.00871243235, 0.00113096752, -1.11278323e-05, 0.00796916522, -0.0140606025, -0.00798034202, 4.82442556e-05, 0.0100648431, -7.70161641e-05, -0.0163742304, -0.00118685234, 0.00856713206, 0.00175757532, -0.0137700019, 0.00361574301, 0.00965688471, 0.0101598473, 0.00643792283, -0.00400973065, -0.0233821776, -0.00182743126, -0.00964011904, 0.00439254101, -0.00286129909, -0.00768974097, 0.00110442226, 0.00741031719, -0.00291159539, 0.000135957103, -0.000524967327, -0.0123617062, 0.00334190787, 0.0154353669, 0.00198251149, 0.0231362861, 0.000298284838, -0.0041298829, -0.0160724539, -0.0229798071, 0.0306919031, -0.0138147091, 0.0207220633, 0.00583436759, 0.0208338331, -0.0520845838, 0.0200626235, 0.00349559099, -0.00839947723, 0.0247904733, -0.0255281515, -0.0111490069, -0.00132796133, -0.00100662396, -0.00364647969, 0.0181513652, -0.0148765193, -0.0292389, 0.0155583136, -0.00943334494, 0.018162543, 0.00688500097, -0.00914274435, 0.0519057512, 0.000827094249, 0.010981353, 0.0192578845, 0.0325919837, 0.00484520756, -0.0039482573, -0.0150665278, 0.0188778676, -0.00558009185, 0.0229127463, 0.0229351, -0.022879215, 0.00188611017, 0.00914274435, -0.0416453145, -0.00143484084, 0.0187549219, 0.0255281515, -0.00822064653, 0.00704706647, 0.00203699898, 0.00871802, -0.00433106767, 0.0176931117, -0.00875714, 0.00272019, -0.00537052425, 0.00704706647, -0.00344250049, 0.00825417694, -0.0239633787, -0.0192578845, 0.0161954, -0.0341344029, -0.0101598473, 0.0105789825, -0.00333073083, -0.01264113, -0.0110484147, -0.00666705, -0.0180172417, 0.00532581657, 0.022610968, -0.00461328588, 0.00599084469, -0.0297083315, -0.0137252938, -0.0156924371, 0.0291941911, 0.00753326388, 0.0147088654, -0.00830447301, 0.0105733937, 0.00349838519, -0.00600202195, -0.00439812941, -0.00582319079, 0.028344743, -0.0140941329, 0.00419694465, 0.0035514757, -0.0151559431, -0.0204761717, 0.0137476474, -0.00399296498, 0.00799710769, -0.0165754166, -0.00776239112, -0.0055074417, -0.00170588191, 0.00415223651, -0.0344473571, -0.00639321515, -0.0235386547, 0.00914833322, 0.0252599064, 0.0192131754, 0.0333520174, -0.0060746721, 0.013177623, 0.0102604395, 0.0225662608, 0.0090421522, -0.0251704901, 0.00197273167, 0.00813123, 0.00885773264, 0.00908127148, -0.0124064134, 0.000245718256, 0.0481502973, -0.0155694904, -0.0129540842, 0.0153459515, 0.00785180647, 0.00577848265, 0.0169666093, 0.022342721, -0.0150665278, -0.010444859, 0.0282329749, 0.0246787034, -0.00916509889, 0.00904774, 0.00171985303, 0.000197343019, 0.0299765784, -0.00100033695, 0.00476417458, 0.015804207, 0.0110037066, -0.0014557977, 0.00459652, 0.00188471307, 0.00867890101, 0.0114787268, 0.00372471847, 0.0106628099, -0.00643233443, -0.00368839339, -0.0107969334, -0.0162177533, -0.00231502554, 0.013501755, -0.0302895326, 0.0031127804, 0.00524757756, 0.00562759396, -0.00800828449, -0.00713089388, -0.0190566983, 0.00941099133, 0.00879625883, 0.0107186949, 0.0156700835, 0.0165977702, 0.0180284195, -0.00336426171, -0.00072720024, -0.0169777852, -0.00528949127, 0.00984689221, -0.0115904966, 0.00119453645, -0.0123058213, -0.0294847917, -0.00087040494, -0.0126075987, 0.0108695831, 0.0170336701, 0.0179613568, -0.00317145931, -0.00938863773, -0.000889964576, -0.00842742, -0.0501621477, 0.0301107019, 0.0364368558, -0.0045322529, 0.00610820297, -0.0272046942, -0.00466917083, 0.0201185085, -0.00878508203, 0.0110092955, 0.00590142934, -0.0024798857, 0.00574495178, 0.00892479438, 0.00720913243, -0.00589584094, 0.0122164059, 0.0112887193, -0.000780290749, 0.00264474563, -0.025550507, -0.0164301153, -0.0226221457, 0.0118475659, -0.00871243235, -0.00692970864, -0.0149882892, 0.0099921925, 0.0182854887, -0.00525875483, 0.00376104354, 0.00192662666, -0.000270342454, -0.0152118281, 0.00182463694, 0.0122387595, 0.0119258054, 0.0100424886, -0.0228568614, -0.0076506217, 0.00120082346, 0.00512463134, 0.0378227979, 0.00941099133, -0.00722589763, 0.0226221457, -0.00324410945, 0.00923216064, 0.00452387, -0.0104560358, -4.3376167e-05, -0.00625909166, -0.010232497, -0.0079524, 0.0171119086, -0.00513860257, -0.0110987108, -0.00451828167, 0.00143344374, -0.0124958297, 0.0142394332, 0.00174360408, 0.000527761586, 0.00831006188, -0.0132782161, -0.00157594983, 0.013177623, -0.00578407152, 0.00348720816, 0.0111154765, -0.0203308705, 0.00460210908, -0.0147200422, 0.00579524832, -0.00315469387, -0.0197608471, -0.0195708387, -0.0191572905, 0.003696776, -0.00832123868, -0.00133634405, 0.00109743676, -0.00401531905, -0.0169107243, -0.00132376992, -0.0114563731, 0.00165977702, 0.0217391662, -0.00457137218, 0.0188443363, -0.0312954597, -0.0247234125, -0.00319940178, -0.0245222263, -0.0344250053, -0.0238516107, 0.000462446274, -0.0208785422, 0.0173913334, -0.0232033469, 0.00520007592, -0.00915392116, -0.00880743563, -0.0051050717, -0.00440930668, -0.00483682472, 0.0296412688, 0.0146418037, -0.0105957482, 0.00817034952, -0.00847771578, -0.0193137694, -0.000776798, 0.00769533, 0.00351515063, 0.00161646632, 0.00414944254, -0.0166760087, -0.0179501809, 0.0327037536, 0.0101095503, 0.0115793198, -0.0154577214, 0.00604114123, -0.00975188799, 0.0029646859, -0.0210238416, 0.0049122693, 0.00254694745, 0.0149547579, 0.0068458817, 0.00785739534, 0.0047138785, -0.0229798071, -0.0305577796, -0.014306495, 0.00244076643, -0.00414944254, -0.00481726509, 0.0145523883, -0.00450431043, -0.00326925772, -0.0246563498, -0.00613614498, 0.0102269091, 0.00502403872, -0.0196714308, -0.00756120635, 0.0174583942, 0.015804207, 0.00730972504, 0.00150329969, 0.00757238315, 0.00237230747, 0.000264928618, 0.00602996396, -0.0263552461, 0.000875294849, 0.0156253744, 0.016486, -0.0319660753, 0.0121158129, 0.00876831636, -0.0203420483, -0.00659998879, -0.00207052985, 0.00189868431, 0.00416900218, -0.0215491578, 0.00486476719, -0.0156253744, -0.0180060659, -0.0088353781, -0.0068794121, 0.0111825382, 0.0205432326, -0.00197971705, -0.00629821094, 0.0197832, 0.0210126657, 0.00860625133, -0.0211467873, 0.0145412115, 0.00158852397, 0.000895553094, -0.0290824231, -0.00505198119, -0.00661675399, -0.00283754803, 0.00791886821, -0.0163071696, 0.0022423754, -0.00320219598, -0.00297306851, -0.00323572685, 0.00539008388, -0.016128337, 0.00877390523, 0.00756679475, -0.00681235082, -0.0154577214, -0.00381972245, -0.0249469504, -0.0189337526, -0.00345926592, -0.0213144422, -0.0120934593, 0.00706942054, -0.00749414461, 0.00606349483, 0.0152788898, 0.000184070392, 0.00406840956, 0.00665587327, -0.0220968295, 0.0182296038, 0.00305410149, -0.0068738237, -0.011411665, -1.30979879e-05, 0.00894714799, -0.00827094261, 0.00523919519, -0.0135129318, -0.00987483468, 0.00700235879, 0.0187660977, 0.00779033359, -0.00360456621, -0.00180228311, 0.0124958297, 0.00911480188, -0.0145412115, -0.00113585743, 0.0146194501, -0.0103666205, -0.00178691477, 0.00142995093, -0.0116128502, -0.000158660288, 0.0164189395, -0.00440371782, -0.00196015742, -0.015591844, 0.0189225748, -0.0210238416, 0.0184754971, -0.00313513423, 0.0125628915, 0.00580083672, -0.0157706756, 0.0114004882, -0.0377780907, 0.00115192437, 0.0121158129, -0.0158936214, 0.00805858057, -0.0052922857, 0.00645468803, -0.0231139306, -0.0143512031, -0.00142575963, 0.00893597119, 0.00318822474, 0.0155247822, -0.0126299532, 0.019067876, -0.0344473571, -0.0196826085, 0.022555083, 0.00532302214, 0.0262881853, 0.0041215, 0.00354029867, 0.0168995466, 0.0123058213, -0.00623114919, 0.00260842056, -0.0129317306, 0.00502683315, 0.0136917634, 0.0209120717, 0.0229351, 0.00878508203, 0.00132516702, -0.0053090509, -0.0204091091, 0.00587907527, 0.00325249229, -0.023359824, 0.0160053913, 0.0310719199, -0.0316754729, -0.0102716163, 0.00470829, 0.0223762523, -0.000497025, -0.016284816, 0.0445066132, -0.0146194501, -0.0216385741, -0.0305801332, -0.00994748529, 0.00187213905, 0.0137923555, -0.010713106, 0.00373030687, -0.00620320672, -4.83261147e-06, -0.0161059834, -0.0248128269, -0.0039426689, 0.0226556771, -0.0147759272, 0.00470549567, -0.00547949923, -0.00373868947, -0.00469431886, 0.00947805308, -0.0106572211, 0.00710295141, -0.0177489948, -0.00916509889, 0.00587907527, 0.000413197849, 0.0209344253, 0.00157734693, -0.0187772755, 0.00368001056, 0.00635409588, -0.0121828746, -0.00804740377, 0.00853360072, 0.00125461258, 0.0141276643, -0.00278445752, 0.0115010813, -0.00957305729, 0.0102604395, -0.0375098437, 0.00469152443, -0.010232497, 0.0114787268, -0.000170011874, -0.0354756378, 0.00566112483, 0.0223203674, 0.00760591403, -0.0100760199, -0.00253297621, -0.000578057836, -0.00429474283, -0.00591819454, -0.0179948881, 0.00307924952, 0.0028151942, -0.00986924674, -0.00421091588, -0.00998660456, -0.00722589763, 0.00282217981, -0.00272577861, 0.0218509361, 0.00699118199, 0.00189309579, 0.00308483792, -0.0169666093, 0.0158265606, 0.0190790519, -0.018587267, -0.00483123632, -0.000692272326, -0.00875714, 0.000268421427, -0.00849448144, 0.0016555856, 0.000440092379, 0.0174695719, 0.00249245972, 0.0340673402, 0.00076771673, 0.00347882556, 0.0144629721, -0.0299095158, 0.0195820145, 0.0211356115, 0.0242092721, 0.0203532241, -0.0196379, -0.0021347974, 0.0200961549, -0.0205655862, -0.0100257238, -0.0224656686, 0.0036995702, -0.0125852451, 0.0206326488, 0.0279200189, 0.0187884513, -0.019023167, 0.0190790519, 0.011355781, 0.0110316491, -0.026467016, -0.00147116592, 0.00713089388, -0.0101374928, -0.0195931923, 0.0104783904, -0.0012615982, -0.015591844, -0.0189784598, 0.0133341, 0.0064882189, -0.00435342174, -0.0116128502, -0.0129987923, -0.0262881853, 0.0101933777, 0.0149659356, 0.0186207984, -0.0204538181, -0.00862301607, 0.0224544909, 0.0153235979, -0.0168995466, -0.00433665654, -0.00659998879, -0.00803622697, -0.0245445799, 0.00889126305, -0.00125321548, -0.0168660171, -0.00755002908, -0.0249469504, -0.00585672166, -0.0152900666, 0.00469152443, -0.0161730461, -0.00716442475, 0.00691853184, -0.00343691185, -0.00123924424, 0.00715883588, -0.0150106428, 0.00877390523, 0.00232480536, 0.00872360915, -0.0224544909, 0.00152844784, -0.00211523776, 0.0143735567, -0.00810887665, -0.0131888, -0.0305577796, -0.00793563388, -0.00214178301, 0.0148094576, -0.00971276872, -0.00524478359, -0.0100927856, 0.00614173384, -0.0120040439, 0.0218844675, -0.0112384222, 0.0153124202, -0.000951437803, 0.00439254101, -0.00539567228, 0.0113725457, -0.0144406185, -0.00499889068, 0.0105119208, 0.0145747419, -0.0216497518, 0.0173466261, -0.0161395147, -0.00698000472, -0.00832682755, -0.0144629721, -0.00511066, 0.0109366449, -0.00815917272, -0.0296189152, 0.000985667226, 0.00575612905, 0.00224936102, -0.0127640758, 0.00300659938, -0.0175366327, 0.0156030217, -0.019816732, -0.0112719536, -0.00436180457, 0.0130211459, -0.00148793135, -0.0158936214, 0.0174807496, 0.0131440926, -0.0228456836, -0.00267827651, -0.00546832243, -0.019235529, 0.00903656334, -0.012484652, 0.00952276122, 0.00281100278, -0.0406840965, 0.0170224942, 0.019392008, 0.00528669683, -0.0294177309, -0.0222868379, -0.0127305454, 0.0100480774, 0.00603555283, -0.00138384604, -0.0287471134, -0.00778474519, -0.00676205428, 0.0135688167, -0.00983571541, -0.00344250049, 0.00906450581, 0.0210909043, 0.00249665114, -0.0219403524, -0.00599084469, 0.0131105613, 0.00348720816, 0.0217279904, 0.0240751486, 0.0187660977, 0.00472226134, 0.00461887429, 0.00347044272, 0.00805858057, -0.00221163896, -0.0133788083, -0.00751091, 0.0331061222, -0.00174500118, 0.015267713, 0.0126075987, -0.0128981993, -0.00271320436, 0.0014613861, -0.0173354484, -0.012697014, -0.00239745574, 0.0117357969, 0.0174807496, -0.00842183176, -0.0172125027, 0.0167654231, -0.00027785197, 0.00480608828, -0.00867890101, -0.0168101322, -0.020464994, 0.0206661802, 0.0168548394, -0.0068570585, -0.01831902, 0.00753326388, 0.00127487083, -0.000464891229, 0.00870684348, -0.0060746721, -0.00902538653, -0.0054850881, -0.028769467, 0.00862301607, 0.00265033403, -0.0142394332, -0.0137923555, -0.0149212275, -0.00368559896, -0.0438359939, 0.00409635203, -0.0272494033, -0.0152118281, 0.0199173242, 0.0150218196, 0.0134235164, -0.0378227979, 0.0201408621, 0.00976865366, -0.00425003516, -0.00977983, 0.00177294353, -0.0422265157, -0.0235163011, -0.00032605257, 0.0157036129, 0.0263328925, -0.0086453706, 0.0146753341, -0.00729295937, -1.89702514e-05, -0.0136135239, -0.0113334265, 0.0194926, 0.0110260602, 0.013714117, -0.00197692285, 0.0136582321, 0.0200067386, -0.009427757, 0.0166871846, -0.0096177645, 0.0257293377, -0.0184531435, 0.00203979318, -0.00934393, 0.00101430819, -0.00731531344, 0.000166693717, -0.00856713206, -0.0136470553, 0.039700523, 0.0276741274, 0.0163295232, 0.00365486252, -0.000307016831, 0.0154577214, -0.0211020801, 0.00645468803, 0.0129764378, -0.00421091588, 0.00707500894, 0.00674528908, -0.0105063329, -0.0222533066, 0.0368392244, -0.0170448478, -0.00438695261, 0.000997542753, 0.00385325332, -0.00677882, 0.000310858915, -0.0233151168, -0.0211467873, 0.00457975501, 0.0304460097, -0.0147535736, 3.74602459e-05, -0.019716138, -0.00275791227, -0.0148765193, -0.0231586397, -0.0156030217, -0.0018455938, -0.00320219598, 0.00932157598, 0.00736560952, -0.0178719424, -0.0122052291, -0.00976306573, 0.00667263893, -0.000658042904, -0.0114899036, 0.00205236743, -0.00372192403, 0.00515816221, 0.0199173242, 0.00712530501, -0.0138035323, -0.00710854, 0.00590701774, -0.0148206344, -0.0100816088, -0.00203280756, 0.00373310107, 0.0184084363, 0.000993351336, 0.000238732653, -0.00961217657, 0.00587348687, -0.0196267236, -0.0243657492, 0.00324969809, 0.00407958636, 0.0173801556, -0.0029702743, 0.00591260614, 0.00349559099, 0.00766738737, -0.0194143616, -0.010444859, 0.00682352763, 0.00266290829, 0.0280988514, -0.0345591269, 0.0102660283, 0.010500744, -0.0260199383, 0.00161367201, 0.00327484612, 0.00972394552, 0.000393987459, -0.0033614675, -0.00856713206, -0.014194726, 0.00178412057, -0.019123761, -0.029998932, -0.00105272897, -0.0187549219, -0.0185649134, 0.0164412931, -0.0043170969, 0.00577289425, 0.0233374704, -0.00582877919, -0.0109422337, -0.00677323109, -0.00999778137, -0.0169107243, -0.0041410597, 0.00965129584, -0.0200290941, 0.0103610316, -0.024857536, 0.0123169981, 0.0342461728, 0.00870684348, -0.0172013249, 0.00902538653, -0.0123952366, 0.00375545491, -0.00384487049, 0.00158153835, 0.0115122581, 0.0151224127, -0.00782945286, -0.00209847232, 0.00553817861, -0.0263552461, -0.0185649134, 0.0194702465, -0.0169554316, -0.0110260602, 0.00312675163, -0.0180731267, 0.0247234125, 0.00100941828, 0.00396781694, 0.00802504923, 0.000499819231, 0.00525875483, -0.0205991175, 0.00708618574, 0.0121046361, 0.00915951, 0.00677882, -0.0035486815, -0.000402370177, -0.00328602316, 0.0134123396, -0.00236252765, -0.0181848966, -0.0176148713, 0.0439701192, 0.000535445753, 0.00221163896, 0.00951158348, -0.00704147806, 0.0176707562, 0.0143623799, -0.00468034763, 0.0217726976, 0.01264113, 0.00240025, 0.00109114964, -0.00698000472, -0.00401811348, -0.0033586733, 0.00793004595, -0.0180284195, 0.00119313935, -0.0125181833, -0.0155583136, 0.0046831416, -0.00697441632, 0.013982364, 0.00488432683, 0.0189561062, -0.0121381674, -0.00643792283, 0.00660557719, 0.00381692825, 0.00096960034, 0.0203979332, 0.00830447301, -0.027428234, -0.00127207651, -0.0489997454, -0.000473972497, 0.00566671323, -0.000608095899, -0.0246787034, 0.0115234349, 0.00332793663, -0.00779592199, -0.0112775415, 0.0296189152, 0.00177853205, 0.00366045092, 0.00107578142, -0.0253716744, -0.0151000582, 0.0320554897, -0.0207444187, 0.00327205192, 0.00207751547, -0.0144294417, -0.0115793198, -0.0149771124, 0.00337543874, 0.01344587, 0.0284341592, -0.0232927632, 0.0193696525, -0.00710295141, -0.00737678679, 0.0101989666, -0.00936628319, 0.0107242828, -0.0276294183, -0.0222868379, -0.0238516107, 0.0084162429, -0.0276294183, -0.00581760192, -0.00788533781, 0.00521684112, 0.0104113286, 0.00502962712, -0.0291718375, -0.00576171745, 0.000981475809, -0.000392241054, -0.00344529469, 0.0151559431, 0.024052795, -0.00967923831, -0.0146082724, 0.00240164693, 0.0114787268, 0.00467196479, 0.000886471767, 0.0131999776, 0.00767297577, -0.00279144314, 0.0363027304, -0.0170783792, 0.00128604774, 0.00487315, -0.00549347047, 0.00868449, -0.0127864303, 0.0105342744, -0.0210461952, 0.032793168, -0.0162177533, 0.0010219923, 0.0161618683, 0.00325528649, -0.0121381674, 0.00624791486, -0.0238292553, 0.000891361735, 0.0110148834, 0.00954511482, 0.0225215536, 0.0227674451, 0.00472784974, 0.00293115503, -0.00290880096, 0.0206997097, -0.0123617062, 0.00306248409, -0.0129987923, 0.023628071, -0.0124399448, 0.0111657726, 0.00863978174, -0.00654969225, 0.010394563, -0.0335532, 0.0259528756, -0.0133788083, 0.00289203576, -0.0203867555, 0.00333352503, -0.00956746843, 0.0152118281, -0.000187388549, -0.0214709193, -0.0132893929, 0.00463843392, 0.00787974894, 0.0269811563, 0.0104001518, 0.0208003037, 0.0156141985, 0.00233458541, 0.00520287, -0.0160612762, -0.0076394449, -0.0226445, 0.0230021626, 0.0203979332, 0.0056583304, -0.0239410251, 0.00139083166, -0.00365206809, -0.00651057297, 0.000314351695, -0.00532302214, 0.0290153604, -0.00396781694, -0.00594054861, -0.0256175678, 0.000740472868, -0.0104728015, -0.00406561513, -0.00196854025, -0.000712181267, 0.013926479, 0.0333296619, 0.00520287, -0.0127976071, 0.00136568351, 0.0255728606, -0.0366380401, -0.0109198792, 0.00775680272, 0.023784548, -0.00728178257, 0.0206102952, -0.0115457885, 0.0381804593, 0.0153906597, -0.000808233162, 0.0238963179, 0.0187213905, 0.0166983623, -0.0213144422, 0.0105119208, -0.00250782794, 0.00706383213, -0.00927686784, 0.00535655301, -0.0152565362, 0.0121493442, -0.00405164436, -0.000213409876, 0.0221080054, 0.0178272333, 0.00845536217, 0.0103275012, -0.00274254405, 0.000406561536, 0.00143484084, 0.0208897181, -0.0266458467, 0.0414888375, 0.0230021626, 0.00473623211, -0.0166760087, 0.0134682236, 0.0228456836, -0.00207332405, -0.0147647504, 0.00616967585, -0.0179054737, -0.000981475809, -0.0224097837, 0.0139041254, 0.00509110047, 0.0201632176, 0.00393987447, 0.00447636843, 0.0257740449, 0.000371982838, -0.013177623, 0.00420253305, -0.0182631351, -0.00491506327, -0.00152844784, -0.0107466364, -0.0287247598, -0.0146194501, 0.0218509361, -0.014038248, -0.0023359824, 0.0112943072, -0.0049010925, -0.0226556771, 0.0116687352, 0.0156589057, -0.00195736322, 0.00623114919, 0.00551861897, 0.0182519574, 0.012965261, 0.0114004882, -0.0328155234, 0.0407735109, -0.01227229, -0.0259975847, -0.0134346932, 0.0148541657, 0.000399226672, 0.00224377261, 0.0266905557, -0.0193808302, -0.00147396023, 0.00055360829, -0.0109310569, -0.0164189395, -0.00892479438, 0.0133788083]
|
22 Oct, 2018
|
Python calendar module | isleap() method
22 Oct, 2018
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions.
In Python, calendar.isleap() is a function provided in calendar module for simple text calendars.
isleap() method is used to get value True if the year is a leap year, otherwise gives False.
Syntax: isleap()
Parameter:
year: Year to be tested leap or not.
Returns: Returns True if the year is a leap year, otherwise False.
Code #1:
# Python program to explain working of isleap() method
# importing calendar module
import calendar
# checking whether given year is leap or not
print(calendar.isleap(2016))
print(calendar.isleap(2001))
Output:
True
False
Code #2: Explaining working of isleap() method.
Below code prints 4th months calendar if given year is year, otherwise notifies year is not leap.
# Python code to demonstrate the working of isleap()
# importing calendar module for calendar operations
import calendar
year = 2017
# calling isleap() method to verify
val = calendar.isleap(year)
# checking the condition is True or not
if val == True:
# print 4th month of given leap year
calendar.prmonth(year, 4, 2, 1)
# Returned False, year is not a leap
else:
print("% s is not a leap year" % year)
Output:
2017 is not a leap year
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module | isleap() method
|
https://www.geeksforgeeks.org/python-calendar-module-isleap-method/?ref=lbp
|
Pandas
|
Python calendar module | isleap() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python calendar module | isleap() method, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0125078456, 0.00815159269, -0.0117634563, 0.0542251281, -0.0192073546, 0.0134619232, 0.0315579362, 0.000925900356, -0.0101960441, 0.00109233963, 0.0128433453, 0.00185311132, -0.00199858192, -0.00848185, -0.0151708741, 0.0280771255, -0.0168588571, 0.0578736886, 0.0166177172, 0.00641118828, -0.0169951543, -0.0069878283, 0.00250445236, -0.000382679282, -1.56241586e-05, -0.00564058777, 0.0465086363, -0.0290626567, -0.0122038, 0.0136716105, 0.0357516818, -0.00718703121, 0.0374920852, -0.0036826327, -0.0263157524, -0.0528831296, 0.00743865594, 0.0118053937, -0.0286223125, -0.00555671286, -0.0101488642, -0.00129809533, 0.0295239687, 0.00882259198, -0.0251415037, 0.0285384376, -0.00914236531, 0.00752777327, -0.0269448142, 0.00662087556, 0.0151079679, -0.00358827342, 0.0500733219, 0.021492945, 0.0144684222, -0.0130740013, -0.0184419956, 0.0210735705, -0.0266093146, -0.0358774923, 0.0369888358, -0.00724993739, -0.0124134868, -0.0202243384, -0.00383727718, 0.00849757716, -0.0169637, 0.0179282613, 0.0508701317, 0.0230446309, 0.0163870603, 0.00844515488, -0.00483067054, -0.0315369666, -0.0111134257, -0.011323113, 0.00501414714, 0.013556282, -0.0436568893, -0.0192912295, -0.0240511298, -0.0410148315, -0.0127804391, -0.0293981563, 0.0381001793, 0.00733905472, 0.04776676, -0.0313692167, 0.000796811655, 0.0183895733, 0.0467183255, -0.0157265458, -0.0296497811, -0.0284335949, -0.00204969314, 0.0110400347, 0.0211993828, 0.0311804973, -0.0478925742, -0.00714509375, 0.00607568864, 0.00248741522, -0.0186411981, -0.0278464705, -0.0266512521, 0.00581357954, -0.00804674905, -0.00429334678, 0.00288057886, -0.0181274656, 0.0229188185, -0.0193436518, 0.000898378901, -0.0534283184, -0.0314111523, 0.0207485557, -0.0332983397, -0.00193305453, 0.0202348214, 0.010437184, 0.0321240909, -0.00643739942, 0.0220591016, 0.0323128104, -0.0336757749, 0.0185363553, -0.0116586126, 0.00699831266, 0.0254350659, -0.0610189959, 0.000315022364, -0.00862863101, 0.0327950902, -0.0409309566, 0.0283706877, 0.00162638689, -0.0315369666, 0.0369678661, 0.0155483112, -0.00665232865, 0.0138498442, -0.00752253085, 0.0293142814, -0.00231835502, 0.00305619207, -0.0473893248, 0.0114698941, 0.0247430988, -0.00533392, -0.00410987064, -0.019186385, -0.0313482471, 0.0105734812, 0.00440343283, 0.0324386209, -0.0100282943, 0.0102746766, -0.0139546879, 0.0184629653, -0.0135457981, -0.0264415648, -0.0269028768, 0.0599705614, 0.0138288755, -0.0024952786, 0.0252253786, 0.00210866774, 0.00429072604, 0.0356468372, 0.0233172253, 0.0224575065, 0.00296969595, -0.0376808047, -0.0485635735, 0.0379743651, -0.0148039218, 0.028161, 0.00218336866, -0.0115118315, -0.0215558521, -0.035814587, -0.024344692, 0.024806004, 0.0284755323, 0.0304256231, 0.0141119538, 0.0149297342, -0.0261899401, -0.0192178395, -0.00563010341, 0.00777415559, -0.0176032465, 0.0135982195, 0.0145942345, -0.00692492211, 0.0479345098, 0.0230865683, 0.0479764491, -0.0350177735, 0.0191968698, 0.00737050781, -0.0254140981, -0.0297755934, -0.0364226811, 0.0255608782, 0.017330654, -0.0359194316, 0.0491926335, 0.0212308373, -0.0429858901, 0.0111029409, -0.0199307762, 0.00549904862, -0.0237785373, 0.0351226181, -0.00155168585, 0.000719489472, -0.0123296119, 0.033046715, -0.00330257462, -0.0148877967, 0.036506556, -0.000157756906, -0.043992389, -0.00762213254, -0.0437407643, 0.0488571338, 0.00215846836, -0.025812503, -0.0281819701, 0.0225204136, -0.00482804934, -0.00372457015, -0.0134933759, 0.044285953, 0.00629061833, 0.0278674383, 0.0237995051, 0.0248898789, -0.0146885933, 0.0396938026, -0.000210834, -0.0128433453, -0.0241559744, -0.0115223154, -0.0153595926, -0.00675193034, 0.0354581177, -0.0287900623, 0.00750680454, 0.0171524193, -0.0112916594, -0.0174459815, 0.0173621066, -0.0317885913, -0.0182113405, 0.012937705, 0.0115747377, -0.0055147754, 0.00635352451, 0.00510850642, 0.0239462871, -0.00352012506, -0.0337806195, -0.003716707, -0.0396308936, -0.0113440817, 0.0214300398, -0.0222478192, -0.00979763828, 0.00359875779, -0.0478087, 0.0469699502, 0.00518451771, 0.0101174107, 0.0162927, -0.0287900623, -0.0120989559, -0.0196162444, 0.0188928228, -0.0447472632, -0.00844515488, 0.0325015262, -0.000308142, 0.0860556588, 0.0214090701, -0.00502725225, 0.0108093787, -0.0111658471, -0.00503249466, 0.0181589182, -0.0205179, -0.0397986434, 0.0337806195, -0.0179806836, 0.00166046107, -0.030048186, 0.0234011, -0.0102327392, -0.00070245238, -0.0672257394, -0.00120766764, -0.0227091312, 0.00100322254, 0.0232333504, -0.0226042885, 0.0190396048, 0.0156741235, 0.000562879257, 0.0185573231, -0.00140621525, -0.0247640666, -0.0177080911, -0.000538634195, 0.0469699502, -0.0152442651, 0.0307820924, -0.0131893298, 0.0100912005, 0.0190081522, 0.0202033687, 0.0186097454, 0.00549380668, 0.00659990683, -0.00138655712, -0.0159991384, -0.00983957574, -0.0117529714, 0.00840321742, -0.0241559744, -0.0320611857, -0.0256657228, 0.0207275879, 0.0168903098, -0.0101541067, -0.0109351911, -0.0378904901, -0.0277835634, 0.0145522971, 0.0120570185, -0.00148222689, 0.0145313283, 0.0261689723, -0.0176766366, -0.0270286892, -0.0263157524, 0.0199831966, -0.00392115209, 0.00105498906, 0.0101960441, 0.000468847633, 0.0349968076, 0.0343467742, -0.0185992606, -0.016785467, -0.0196791515, 0.00373505452, -0.0228768811, -0.00762213254, 0.0236107875, 0.00325539499, -0.0218494143, 0.0215558521, -0.0217655394, -0.0179177783, -0.00906373281, 0.0262947846, -0.0286432821, -0.00368787488, -0.00807296, -0.00703500817, 0.0062329541, 0.0156636387, -0.00562486099, 0.00499579916, 0.00403648, -0.00645312574, 0.0400502682, 0.0037402967, 0.00683056284, -0.0310756546, 0.0033051956, 0.0107569573, 0.00665232865, 0.0150345778, -0.00800481159, -0.00123649964, 0.00842942856, -0.00867056847, 0.0190396048, 0.0040836595, 0.0171419345, 0.000737837108, -0.0290626567, -0.00482542859, -0.0299223736, 0.00537847867, 0.0218074769, -0.00788948406, -0.0277416259, 0.0173096843, -0.0418955162, -0.0212098677, -0.0143530937, -0.0401131772, -0.0334031843, -0.0242398493, 0.00710839871, 0.00965609867, 0.0260012224, 0.00569300959, 0.0363388062, -0.0303417481, -0.0321869962, 0.0244495366, -0.00431693671, -0.0188508853, 0.0368839912, -0.0120570185, 0.038288895, 0.0492765084, 0.0025843957, -0.0242398493, 0.0227091312, -0.0142482501, 0.00849233475, 0.00782657787, 0.0146047184, -0.0395260528, 0.0249318164, -0.0163660925, -0.00425403053, 0.0169007946, 0.0296078436, 0.0228349436, 0.0376598351, 0.0198573843, -0.00801529642, 0.0385614894, -0.049066823, -0.0218703821, 0.0254350659, -0.0105734812, 0.0134304697, -0.0300691556, 0.0135143446, -0.0271125641, 0.0344725884, -0.00193436514, -0.00486736605, -0.00125746836, 0.025036661, 0.0246592239, 0.00450303406, 0.0420213304, 0.00317152, -0.0221429765, -0.0229188185, -0.0344725884, 0.0341580585, 0.0256657228, 0.00460787769, -0.00374816, -0.0166806225, 0.000948834931, -0.0123086432, -0.000479004375, -0.0196057595, -0.00584503263, 0.0115432842, 0.0186411981, -0.0315579362, -0.0357936174, -0.0158104207, 0.00545711117, -0.0124868769, -0.00227641757, 0.0398615524, 0.0181484334, 0.00232752878, 0.029272344, 0.0066103912, -0.00881735, 0.016638685, 0.0310756546, 0.0209267903, -0.0137450006, -0.0541412532, -0.0294820312, -0.00897461548, 0.00857621, -0.00840846, 0.0494023226, -0.0335919, 0.0243237242, 0.0314950272, -0.00334189087, 0.00243892521, 0.00932059903, -0.00549380668, -0.0109771285, 0.025728628, -0.0163870603, 0.0204340257, -0.0202138536, -0.0196686666, 0.0183895733, 0.0051006428, 0.0290836245, 0.0036826327, -0.0337596498, -0.00336548081, -0.028161, 0.0412245169, 0.0392324887, -0.0145732658, 0.0218284447, 0.00601802487, -0.0201194938, -0.00221220078, -0.00472844811, -0.0133675635, -0.00991296582, -0.015716061, 0.0197420567, 0.0457537621, -0.00932584144, 0.00495910412, -0.0131578762, 0.00943068508, 0.0200880412, 0.0104476688, -0.00740720285, 0.0221639443, 0.0200461037, -0.0259383153, -0.032732185, -0.000244744355, -0.0195428543, -0.0242817868, -0.0168378875, 0.0332144648, 0.0100545045, -0.0116166752, 0.0188299175, -0.0656740516, 0.0255399104, 0.0204549935, -0.00661563361, -0.0347451828, 0.0096665835, -0.0177814811, -0.0114489254, 0.00344149233, 0.0238624122, 0.00297755934, -0.035521023, 0.0105420277, 0.00616480596, -0.0110295508, -0.00134461967, -0.00712936744, 0.0108303474, -0.0148458593, -0.000158084542, -0.0138288755, -0.00079550111, 0.0236736927, -0.0108827697, 0.0175508242, -0.0296078436, -0.0423778, 0.0423778, 0.00924196653, -0.0237156302, 0.00723945303, 0.0376178958, 0.0316418111, 0.00804150663, 0.0178758409, -0.0187355578, 0.0533444434, 0.0167435296, -0.00968231, -0.0204549935, 0.0300272182, -0.0276996884, -0.00852378737, -0.0188194327, 0.0431536399, 0.0163556077, -0.000462294905, -0.0344306491, -0.00772173377, 0.0170056373, 0.0222687889, -0.0282029379, 0.00233277096, 0.0089117093, 0.00630110269, -0.00521859201, 0.00104450469, -0.00916333403, -0.0129796425, 0.0168798249, 0.00711888308, -0.0182847306, -0.0155273424, 0.00480446, -0.0241769422, -0.000239666, 0.0347661488, -0.055651, -0.00338644953, -0.00839797501, -0.0179072935, -0.00222137454, -0.0107569573, -0.0253931284, -0.0110610034, -0.00762737449, 0.0304885302, 0.0188404024, 0.0146152033, -0.026881909, 0.00520548644, -0.00386610907, -0.00245203055, -0.00215191557, -0.0253302231, 0.0236317553, -0.0552316271, -0.0019776132, 0.0251205359, -0.015254749, -0.0186621677, 0.00643739942, -0.0177290589, -0.0152757177, 0.00624868087, 0.0215558521, -0.00486212363, 0.0125392992, 0.0502410717, -0.000918037083, 0.031746652, 0.0109980972, 0.0134619232, -0.0264625344, 0.0047599012, 0.0102222543, 0.00624343846, 0.0196162444, 0.015097484, 0.000440998556, -0.0180540737, 0.0263367221, -0.0011906306, -0.0143740624, -0.0175508242, -0.0227301, 0.000532081467, 0.00439294847, -0.0199727137, 0.0323966853, -0.00406793319, 0.0439085141, -0.0274900012, 0.0052159708, 0.0319982767, 0.00561961904, -0.00196057605, -0.00404696446, 0.00606520427, -0.0100282943, 0.002609296, 0.0236107875, -0.00125222618, 0.0145837497, 0.0187670104, 0.00329471123, 0.00102288078, 0.00556195481, -0.0182847306, -0.00970852096, -0.0180645585, -0.00767979631, -0.0249318164, 0.00915809162, -0.019175902, -0.0229397882, 0.00260143285, 0.0296497811, -0.025959285, -0.0122876745, 0.0108303474, -0.00244940957, 0.00874920189, 0.00877017062, 0.0218703821, -0.0249318164, 0.0332354344, -0.0142797036, 0.0020929412, -0.0183581207, 0.00548856426, -0.00983433332, -0.0316837467, 0.0141329225, -0.0130425487, -0.00146256876, 0.0160934981, 0.0109980972, -0.0272803139, 0.0196581818, 0.00561437663, -0.0166806225, 0.00571397832, -0.0101908017, 0.00276262988, -0.00617529033, -0.0208219457, -0.0303627178, -0.00885404553, -0.00878065452, 0.00953552872, -0.0182008557, -0.031809561, -0.00112969021, 0.020643713, -0.0398405828, 0.0237995051, 0.0170266069, 0.00584503263, 0.0236317553, -0.00690395338, -0.0082354676, -0.0082249837, 0.0058922125, 0.0312224347, -0.0115642529, -0.000961285084, 0.0128852827, 0.0112182694, 0.0321869962, -0.0417277664, 0.0180645585, 0.00130595861, -0.020109009, -0.00527101383, -0.0230656, 0.0458795764, 0.0292933118, 0.0157475136, 0.00465505756, 0.0131998137, 0.0207066182, 0.0174250118, 0.0137450006, 0.0663450509, 0.0017390938, 0.00666805543, 0.0101803169, -0.0101174107, -0.0170056373, 0.036737211, -0.00263419631, 0.00410987064, -0.00176006253, 0.00650554756, 0.000235898187, -0.00805199146, 0.033969339, 0.00208900939, -0.00575067336, -0.0147095621, -0.0157894511, 0.0262947846, 0.0452505127, 0.0275319386, 0.00196450762, 0.00489095552, 0.0302159358, -0.0187355578, -0.00122798106, -0.0324386209, 0.0173830744, -0.016785467, 0.0074805934, -0.0292094368, 0.0271545015, -0.00354371499, 0.0551477522, -0.0226042885, -0.00360137899, 4.88997284e-05, -0.0246382542, -0.00998635683, 0.0141434064, -0.0261899401, -3.24974317e-05, 0.0177395437, 0.0180226211, -0.0191339646, 0.0283077825, -0.000652979303, 0.0247221291, -0.0184629653, 0.0249108486, 0.0315159969, -0.0131998137, 0.01309497, -0.0110085821, -0.000225905271, -0.022499444, -0.0171943568, -0.00266433903, 0.018106496, -0.00799432769, -0.0215139147, 0.0298594683, -0.031725686, 0.00107006042, 0.003716707, -0.00024376146, 0.0279093757, 0.0403857678, 0.0162402801, 0.0115432842, 0.00731808599, 0.0213461649, -0.0268190019, -0.0300272182, 0.00618577469, -0.0189557299, 0.0250156913, 0.0106206601, -0.0115747377, -0.0062329541, 0.0414551757, 0.0134619232, -0.00178365235, 0.00943068508, -0.0423568301, 0.0399244577, -0.0139546879, -0.0125917206, 0.012015081, 0.0114174718, 0.00581357954, 0.0244076, 0.0156741235, 0.00558816595, 0.012403002, 0.00895888917, 0.000499973074, 0.00971900485, -0.0109456759, 0.0217865072, -0.00565107213, 0.00332354335, -0.0221639443, 0.028161, 0.000908208, 0.00260012224, 0.0155692799, 0.0113965031, -0.00455807708, 0.00142718398, 0.0032501528, -0.0152128115, 0.0139337191, 0.0172048416, 0.0470118858, -0.0151708741, -0.0155378273, -0.00149009016, -0.0172362942, -0.0200775564, -0.0122667057, 0.0360242724, -0.0238204747, 0.0233172253, -0.00717654685, 0.00358303124, 0.00410462823, -0.0166282, -0.0307401549, 0.017949231, -0.0253511909, 0.00437722169, 0.0128433453, -0.0262528472, -0.018871855, -0.00172598835, -0.00345721887, 0.0127175329, 0.000418064, -0.0131998137, -0.00925245136, 0.00878065452, -0.0129272202, 0.00931535754, -0.0374711156, -0.00734953908, -0.0592156872, 0.0347242132, -0.0316837467, -0.00769552309, -0.00905324798, 0.000716868381, -0.012015081, -0.0438246392, 0.0242817868, -0.000358106539, -0.0268609393, -0.0174564663, 0.0326273404, 0.0207380708, 0.0135457981, 0.008167319, -0.00215715775, 0.0251834411, -0.00893792, -0.0120465336, -0.0301110931, 0.0163451228, 0.0123296119, 0.00339169172, -0.00983433332, -0.0540154427, 0.0365904309, -0.0055934079, -0.0195952766, -0.0485635735, -0.0352903679, -0.0415600166, -0.000332223281, -0.0469280109, 0.00875968579, 0.0220800694, 0.0239043497, -0.0089798579, 0.013482892, -0.024491474, -0.0254140981, 0.00252280012, 0.0101960441, 0.005855517, -0.0172677469, 0.0284126252, 0.00121225452, 0.00869678, 0.0287690945, -0.00499842037, -0.0099653881, -0.010049263, -0.0513733812, -0.0101383794, -0.0066103912, -0.0176032465, -0.0150136091, -0.00926293526, 0.00335499644, -0.0338225588, -0.000864304719, -0.0338644944, -0.0134095009, 0.00966134109, -0.00545186922, 0.025959285, -0.0153595926, 0.0496539474, 0.00552525977, -0.00486998679, 0.0536799431, -0.0153595926, -0.0240930673, -0.00744389836, -0.0280980952, -0.00854999851, 0.0130320638, -0.00323180505, 0.0130006112, 0.0043248, 0.002493968, -0.0304675605, -0.0322708711, 0.0195638221, 0.0137764541, 0.0379114598, -0.0287061874, -0.0173935592, -0.0354790874, -0.0115432842, 0.00256211637, 0.0211679302, 0.020098526, -0.0129586738, 0.00478873309, -0.0395470187, -0.012633658, -0.010279919, 0.00745438272, 0.00132758252, 0.0246801917, -0.0119207213, 0.0462989509, 0.0238624122, -0.0086024208, 0.0349339, -0.0174459815, -0.00231180224, -0.00821449887, 0.0111134257, 0.0318305269, -0.0249947235, 0.0022082692, 0.000869546901, 0.00100256724, -0.00148222689, -0.00270758686, -0.0151079679, 0.00138786761, -0.00172860944, -0.00297493814, -0.00911091175, -0.0143740624, 0.0305933729, -0.00515044387, 0.0110505195, 0.00219647423, 0.011784425, 0.0270286892, 0.0293352492, -0.0249947235, -0.000527494529, -0.0240511298, 0.0114698941, 0.00895364676, -0.0207904931, -0.0150555465, -0.000755529443, -0.00349915633, 4.79168193e-05, -0.00132627203, -0.0299852807, -0.005970845, -0.0442440137, -0.00223710109, -0.0127804391, -0.00859717838, 0.00433266349, 0.00357778906, 0.011092457, 0.0128433453, -0.0160830133, -0.0210106652, -0.0164604504, -0.00297493814, -0.0054466268, -0.00831934251, 0.011323113, 0.0298594683, 0.00231573381, -0.021105025, -0.00719751557, 0.0162822176, -0.00180986326, 0.0235478804, -0.0125812367, -0.000369901449, 0.00821974128, -0.0175822787, 0.00863387343, -0.0306353103, 0.00557243917, -0.00651079, 0.0254350659, -0.0114594093, 0.023107538, -0.0387921445, -0.0275529083, 0.0399663933, 0.00265778624, 0.00991820823, -0.00581357954, 0.00247562048, 8.7888453e-05, -0.00174695707, -0.0126441428, -0.00360924215, -0.020109009, 0.0140280789, 0.00655272743, -0.0183161832, -0.00245858333, 0.0126965642, -0.0401970521, 0.000836128, -0.0130844861, -0.00776367122, 0.00986054447, 0.000472124, 0.0144264847, 0.0114594093, 0.0261899401, 0.00305881305, -0.0138603291, 0.00285436795, 0.0426294245, -0.0119102374, -0.00749632, 0.00990248192, 0.0134199858, -0.034283869, 0.00140359416, -0.0189242773, 0.00221482175, -0.0171314497, 0.0190081522, 0.0190500896, 0.00045869092, 0.00949359126, 0.000621853804, -0.017330654, -0.00050390471, 0.00181641604, 0.00736002345, -0.0169951543, -0.00340741826, 0.0236527249, -0.00907421671, 0.00452138204, -0.0371985212, -0.0243237242, 0.0266302843, -0.0106206601, -0.0089117093, -0.0162088256, 0.0223946013, 0.0167015921, 0.0211469624, 0.00776367122, -0.0114069879, -0.0064164307, -0.00838749111, -0.0445375778, 0.00451876083, 0.00583979068, 0.0300062485, 0.00230787066, -0.000224103278, -0.00260405382, -0.0114384405, -0.0152337803, 0.0116166752, 0.00689346902, 0.00224627485, 0.00473369, -0.0156426709, -0.0405325517, 0.021954257, 0.0112916594, 0.0102379816, -0.0275738761, 0.0149087654, 0.0102537079, -0.0146571407, 0.0185049027, 0.0122771896, 0.00532867806, 0.0028150517, 0.00433266349, 0.00363283209, -9.24753622e-05, -0.00929963, 0.00414918689, 0.0121408934, 0.00404434325, 0.0195428543, -0.00367739052, 0.00938874763, -0.0313692167, 0.0119521748, -0.00652651628, 0.00129612943, -0.0293142814, -0.00236029248, -0.00607568864, 0.0168064348, -0.00857621, 4.85720921e-05, -0.00148615858, 0.025036661, 0.0195428543, 0.0360033065, 0.0234011, 0.00282029388, 0.0389598943, 0.0100545045, -0.00176006253, 0.00700879702, -0.00667854, -0.00787899923, -0.0163556077, -0.0136820944, 0.00127057382, -0.0165128727, -0.0180540737, -0.0167120751, -0.0103952466, 3.87634791e-05, 0.016334638, 0.0223946013, 0.0240511298, 0.0101645906, -0.0214719772, 0.0153386239, -0.0333402753, 0.0205388684, 0.0293352492, 0.00357254688, 0.0122038, 0.00381368725, -0.00501938909, -0.00167880871, -0.00272069243, -0.0328370258, -0.00511112716, -0.0042671361, 0.010012567, 0.0245753489, -0.01871459, 0.00854999851, -0.0198259316, -0.00723421108, 0.0052841194, -0.014017594, 0.0128433453, 0.022499444, -0.0477248244, 0.0271754712, 0.0182427932, 0.0105420277, 0.0252044108, -0.00553574413, -0.0180855282, 0.0154015301, -0.0148144057, 0.0210630875, 0.000492765103, -0.0207275879, 0.0298804361, -0.0148353744, -0.0110714883, -0.0364017114, -0.0417068, 0.0353113376, 0.0203082133, 0.0302369054, 0.0445375778, -0.0375549905, -0.0311804973, -0.00783181936, -0.0102379816, -0.00719751557, -0.0252463482, 0.00955649745, -0.0241559744, 0.0270077214, -0.0151079679, 0.0269238465, -0.0180226211, 0.00956698228, -0.000815814536, 0.0054466268, -0.005970845, 0.0156531557, -0.0278674383, 0.0140805, 0.020255791, -0.00415967125, 0.00183738477, -0.000781740353, -0.00920527149, 0.000870202202, -0.0169007946, 0.0216187574, -0.00637973519, 0.00487785041, -0.00906897429, 0.00704025, 5.5749374e-06, -0.0159467179, 0.0047258269, -0.00796287414, -0.0415390506, -0.00353847281, -0.00594987627, -0.0143950311, -0.00305881305, -0.024491474, -0.00922624, -0.00192912295, -0.00978191104, -0.0241979118, -0.0154749211, 0.0232962556, 0.0113126282, 0.0164604504, -0.039903488, 0.0138393603, 0.0201719161, 0.0058922125, -0.00691443775, -0.0101593481, -0.0316208415, -0.000707694562, -0.00865484215, -0.00726042176, 0.00918954518, -0.0135143446, -0.00930487271, -0.0226252563, -0.00178365235, 0.0160515606, -0.00424616737, 0.0178653561, -0.00999159832, -0.00289892661, -0.0151079679, 0.0210630875, -0.00727090612, -0.00960892, -0.0316837467, 0.0192912295, -0.0524218194, -0.000116065181, -0.0253302231, -0.013786938, -0.0104109729, -0.000166848826, 0.0306982175, -0.00157003349, -0.0116061904, -0.021178415, 0.00963513, -0.00764310127, -0.0187670104, -0.0259383153, -0.0143950311, -0.0016814298, -0.013870813, -0.00423830422, 0.0371985212, 0.00445323344, 0.0231285058, 0.0068410472, 0.0003846451, -0.0207380708, -0.0193960723, -0.019647697, -0.0231285058, 0.0146781094, -0.0149087654, -0.00496958848, -0.00962988846, 0.00900082663, 0.015873326, -0.00994966086, -0.000763392716, 0.00945689622, 0.00525790825, -0.000162261917, -0.0122247683, -0.00334713305, -0.0307820924, 0.0184000582, 0.00405482762, 0.021723602, -0.0103218565, -0.0171104819, 0.0257915352, 0.0625287443, -0.00130792439, 0.0057664, 0.0425036103, 0.0153595926, -0.007548742, -0.0118787838, -0.000454104, 0.0412454866, 0.0286642499, -0.00429072604, 0.0326902457, -0.0292933118, -0.0258544404, 0.0244076, -0.0152757177, -0.0165967476, 0.00359875779, -0.0111763319, 0.0309079047, 0.00318724662, -0.0124134868, -0.0372614302, -0.00504560024, -0.0137030631, 0.0102327392, -0.00222530612, -0.0214405246, 0.0283287503, -0.0144684222, -0.0138183916, 0.00694589084, -0.0210106652, -0.00130661379, -0.00807296, 0.0534283184, -0.0210001804, 0.00952504482, -0.0352694, 0.0165652949, 0.00689871144, -0.00390542555, -0.00775318686, 0.00754349958, 0.028119063, -0.00108906324, 0.00714509375, -0.0373243354, 0.0265044719, 0.00659990683, 0.0122981584, -0.00932584144, -0.00870726444, -0.0187460426, 0.017791966, -0.0188823398, -0.0040836595, 0.0168483723, 0.00236684503, 0.0347451828, -0.00800481159, -0.00776367122, -0.00858669356, 0.0117634563, -0.00382679282, -0.0201614313, -0.00679910975, -0.00192125968, 0.00230656, -0.0292304065, 0.0117320027, -0.00229214411, 0.0225413814, -0.0246592239, 0.00660514925, -0.030509498, 0.000721455261, 0.0195114017, -0.0119207213, -0.00478873309, 0.00824595243, 0.0232962556, 0.0132312672, -0.00827216264, 0.0125602679, 0.0453763269, 0.0198678691, 0.0133361109, -0.0215768199, 0.0108198635, 0.0263786595, 0.0166701376, -0.0300062485, -0.0159467179, -0.0107779261, 0.000433790556, 0.0372404605, -0.0145418122, -0.0118053937, -0.000362365827, -0.0200461037, 0.0113021443, 0.0305933729, 0.0110819722, -0.0221010391, 0.00416491367, 0.0151394214, 0.0111134257, 0.0195952766, -0.0208429154, -0.00696161762, -0.00848709233, 0.0129481889, 0.0141329225, -0.00309550832, -0.00157134398, 0.0146676246, -0.0345354937, 0.00704025, 0.0138603291, -0.0385614894, -0.0228139758, 0.0152337803, -0.0193855893, 0.0260641277, -0.00136427779, 0.0145103596, 0.0081568351, -0.0156426709, 0.005970845, 0.01078841, -0.00809917133, 0.00332354335, 0.00174695707, 0.0356468372, -0.00926293526, 0.0179072935, 0.00259094848, 0.00407055439, -0.00250576297, -0.00186097459, 0.00547283795, -0.0235059429, 0.00655796938, 0.0163870603, 0.0115957065, -0.00408890191, 0.0220591016, 0.00762213254, -0.0212203525, -0.0117949089, -0.000483918906, 0.015097484, 0.000591383665, -0.0223107263, 0.00116573018, -0.033654809, -0.00568252522, 0.00456856145, 0.00578736886, 0.00420160871, 0.00278884079, 0.017645184, 0.00991820823, 0.0209582429, 0.00510588521, 0.0252253786, -0.00329209026, -0.00723945303, 0.00312171923, 0.00495648291, 0.00742292963, 0.00995490327, 0.0222897567, 0.0181169808, 0.000669688743, -0.0241140369, 0.00311909826, 0.00773746055, 0.0105944499, 0.00160410767, 0.00114541675, -0.0120465336, -0.00737050781, -0.0340532139, -0.00411249185, 0.00325539499, 0.00140359416, -0.0131473923, 0.0146571407, 0.0152966864, -0.00535226753, 0.00473631127, -0.00848709233, 0.0209058207, 0.0396938026, -0.00557243917, -0.0153176552, -0.0223946013, -0.0188508853, 0.0361081474, -0.00668378174, 0.0159152634, 0.00130268221, -0.000963250932, 0.0113650504, 0.0075959214, 0.00367739052, -0.00513995951, -0.00761164818, -0.000920658174, -0.00862863101, 0.00499842037, 0.00153464871, -0.0169217624, -0.00435887417, -0.0135248294, 0.0077112494, -0.00226855418, 0.0146676246, -0.0238414425, 0.0212098677, -0.00299852807, -0.00448206533, -0.0224155691, -0.0102746766, 0.0189347602, 0.0231914129, -0.00236160285, 0.0133780483, -0.0179282613, 0.0010137069, -0.00380058191, 0.00193174405, -0.0261689723, 0.020413056, 0.00477824872, 0.00630634464, 0.00946738, 0.0174354967, -0.00611762609, -0.00834555365, 0.00425927294, -0.016785467, -0.00632731337, -0.0116900653, -0.0152862025, -0.00852378737, 0.0117005501, -0.00638497761, -0.00126664224, 0.0243866295, -0.0101226531, -0.0106783248, 0.028580375, 0.010012567, 0.0155378273, 0.0107988948, -0.0208638832, 0.00805723388, -0.000748321472, -0.0211259928, 0.0222268514, 0.00106481824, 0.00395522639, -0.00513209589, 0.0525895692, 0.00634304, 0.00160803925, 0.0149926404, -0.0117320027, 0.00415967125, -0.000583520392, -0.00512685394, -0.00310337171, -0.00877017062, 0.00437197974, 0.0186411981, -0.00183083198, 0.00440343283, 0.0100912005, 0.00385038252, 0.00532605685, -0.0143426098, 0.0207275879, -0.00379533973, 0.00292513752, 0.00719227362, 0.0040024058, 0.00654224306, -0.0123820333, -0.0186307151, 0.00818304624, 0.0315579362, 0.0279722828, 0.0244076, 0.0215558521, -0.0438246392, 0.0422729552, -0.00573494704, -0.00593415, 0.00456856145, 0.0056615565, 0.000124419908, -0.0119626587, -0.00744914031, 0.00898509938, -0.0339483693, -0.00840321742, -0.0159781706, -0.0214195549, -0.00779512431, -0.029041687, 0.0225413814, 0.00457118265, 0.00600754051, -0.0209267903, -0.0160096232, -0.00761164818, -0.0167015921, 0.01648142, -0.00230393885, -0.0158838108, 0.0148563432, -0.0175403412, 0.00477300677, -0.000365969812, -0.00750156213, 0.0279303454, -0.00168536149, -0.0116271591, -0.0306353103, -0.00249921018, -0.0200041663, -0.0165967476, -0.00658942247, 0.0118892686, -0.00098159851, 0.00768503873, 0.0146152033, -0.000437066919, 0.0062696496, -0.00328684808, -0.0101069268, 0.000674930925, -0.00313744578, 0.0227720384, -0.0144264847, -0.0101960441, 0.00789996795, 0.0215768199, 0.00097308, 0.00369835924, -0.0317885913, -0.00755398395, 0.000984219601, 0.000446896, 0.00560389226, 0.0216816645, 0.0153910462, 0.0100282943, 0.00507443212, -0.0078475466, 0.00706646126, 0.0263786595, 0.0098133646, -0.0111029409, -0.00756971072, -0.0267770644, 0.0100702317, 0.0300272182, -0.0224155691, 0.00424354617, 0.0130006112, -0.000538634195, 0.00361448433, 0.00521859201, 0.0219752267, 0.0246592239, 0.00666281302, 0.0159676857, -9.82909114e-05, -0.00196581823, 0.00698258635, 0.0177814811, -0.0132941734, -0.00499055721, 0.00740720285, 0.0152023276, -0.00173778331, 0.00929963, -0.0247640666, -0.00977142714, 0.0106206601, -0.00545711117, 0.00370360143, 0.0066103912, 0.00263943849, -0.0370098054, 0.00819353, -0.00480708061, -0.000874789082, -0.0189242773, 0.00548856426, -0.0135457981, 0.0229397882, -0.01309497, -0.00197499199, 0.00960892, 0.00278884079, 0.00852903, -0.0159886554, 0.0134409545, 0.006086173, 0.00885404553, -0.0256028157, 0.0232123807, -0.0336128697, 0.0035358516, -0.000914760749, -0.00166570325, 0.00743341399, 0.0067938678, -0.01078841, -0.0157684833, 0.00337072299, 0.000123682723, -0.0239462871, -0.00620674342, 1.38938294e-05, 0.0132522359, 4.92273648e-05, 0.00388445682, 0.00548856426, 0.00939923245, -0.0247640666, 0.0211574454, -0.0278884079, 0.0134199858, 0.0018832538, -0.00265385467, -0.00905849, 0.00825119391, 0.0163660925, -0.00294872723, 0.0165338423, 0.00365117961, -8.5595e-06, 0.00581882196, -0.0150345778, -0.0255189408, 0.0187041052, 0.00826692116, -0.00100715423, -0.0139022665, -0.000537978893, 0.00310337171, 0.0163660925, -0.0128014078, 0.00639546197, -0.00220957957, 0.0115223154, -0.00590793882, 0.00184917962, -0.0158942956, -0.00581882196, -0.0115328, 0.0177605115, 0.00355944154, -0.00018921, 0.00773746055, 0.00881735, -0.00516354898, 0.0163136702, 0.0152966864, -0.0113965031, 0.0115118315, 0.0185992606, -0.00591318123, 0.0227301, 0.000383334554, -0.0154434675, -5.1479863e-05, -0.0181694031, 0.013870813, -0.017645184, 0.00344673451, 0.0274900012, 0.0187355578, -0.0426713601, 0.0128014078, 0.00230262848, -0.0135457981, 0.0149192493, -0.0442440137, -0.0049066823, -0.00456594024, 0.00256604794, -0.0196791515, 0.0280142203, -0.0123191271, -0.0274690334, 0.00808344409, 0.00732857035, 0.0179911684, 0.0171629041, 0.00504822098, 0.0241140369, -0.0133780483, -0.00574018899, 0.0236736927, 0.0250995662, -0.011784425, -0.013786938, -0.00507181091, -0.00177972077, -0.0166911073, 0.0194799472, 0.0166701376, -0.0317676216, 0.00900082663, 0.00925769284, -0.0159886554, -0.0116795814, 0.00987627078, 0.0371775553, -0.0082354676, 0.0135038607, -0.00183869526, 0.00209163059, -0.0028124305, 0.00135641452, -0.0138917817, 0.00916857645, -0.0271754712, 0.00955125503, 0.00904276408, 0.00819353, -0.00922624, -0.00288844225, 0.00369049609, -0.0143740624, -0.00819877256, -0.00252411049, -0.00933108386, -0.0113440817, -0.00754349958, -0.0106783248, -0.021723602, 0.00429072604, 0.0353742428, -0.00423568301, -0.00758543704, -0.0259383153, -0.0230446309, -0.00785278808, 0.0310546849, 0.00962988846, 0.0145103596, -0.00537847867, 0.0165548101, -0.00077387708, 0.0110714883, -0.00669950852, -0.0130844861, 0.0245753489, -0.0124449395, 0.0113860192, 0.00182690041, -0.0360871814, -0.0429858901, 0.00234325533, 0.0116166752, 0.012476393, -0.00502987346, 0.00772697618, 0.00410724944, 0.00666281302, -0.00697734393, -0.0308030602, -0.0164289977, -0.00971376337, 0.00896413065, 0.0122247683, 0.00851330347, 0.031432122, -0.0147829531, 0.0163870603, 0.00920002908, 0.026273815, 0.00978715345, -0.0105210589, 0.00827740505, 0.0138812978, 0.00507443212, 0.00277573522, -0.0133361109, -0.0128014078, 0.0512056313, -0.00524480315, -0.0181694031, -0.00519762328, -0.00311647705, 0.0073652654, 0.0158523582, 0.0217026323, -0.0165757798, -0.0176556688, 0.0365694612, 0.0310546849, -0.0208848529, 0.00325539499, 0.0022646226, 0.0035122619, 0.0329628401, -0.00908994302, 0.00572970463, 0.0183895733, -0.00218074769, 0.00571922027, 0.0197420567, -0.0189137924, 0.0212937426, 0.00962464605, -0.0209058207, 0.00595511869, -0.000838093809, 0.00138655712, -0.0193541348, -0.00373243354, -0.0127594704, 0.0129691577, -0.0123296119, 0.0100545045, 0.023422068, 0.00997063, -0.00780036673, -0.0088330768, -0.0110295508, -0.0136820944, 0.000463605451, -0.00750680454, 0.0293562189, 0.0201194938, 0.0102851605, -0.0167015921, -0.000317152, -0.0122562209, 0.00382155064, 0.00276000868, -0.0252463482, 0.00588172814, -0.0140700163, -0.0094359275, -0.00556195481, -0.0105263013, 0.00156872289, -0.00234063412, -0.0106049338, 0.00488571357, -0.0104476688, 0.0112182694, 0.00278359861, -0.0421681106, 0.0196686666, 0.0380163044, 0.00795763172, 0.0104162153, -0.027196439, 0.00427499926, 0.0125602679, -0.0175508242, -0.00453448715, -0.000382679282, -0.0215768199, 0.0155483112, 0.00309288735, 0.00848185, 0.00176530471, 0.0105367852, 0.00603375118, -0.0120675024, -0.0089221932, -0.0177605115, -0.0119102374, 0.00146650034, 0.0136506418, -0.0207590405, 0.00934156775, -0.0124134868, 0.00568252522, 0.00765358564, 0.00677814102, 0.0220171642, 0.0044165384, -0.00669950852, -0.00151761167, 0.0058922125, 0.00851854589, 0.0121828308, -0.00901131053, -0.0227720384, -0.0106992936, 0.0113335969, -0.00691443775, 0.0335289948, 0.0182847306, -0.00129940582, 0.0118683, 0.000137934912, 0.0144264847, 0.00560389226, -0.00495648291, 0.00492765103, -0.00300901243, -0.00684628962, -0.0112602068, 0.0187774953, -0.0132627198, 0.00359613681, -0.00320559414, -0.00574543141, -0.0148039218, 0.0190396048, 0.00231704442, -0.00726566417, -0.000267678901, -0.0105053326, 0.0125602679, 0.0186411981, 0.012476393, 0.000551412, 0.0155063737, -0.0134304697, -0.000794190564, -0.00937826373, -0.00309550832, 0.00697210198, 0.00252280012, -0.00681483652, -0.015024093, -0.00320297317, -0.0189347602, 0.0218913518, -0.00206410908, 0.00100518833, 0.00465505756, 0.00862338953, -0.0156950932, -0.00372719136, 0.0221010391, -0.0018832538, 0.00431955792, -0.0222897567, -0.0142063126, -0.00976094231, -0.0230446309, -0.0195847917, -0.0152442651, -0.0104738791, -0.0175927617, 0.0033051956, -0.0225623511, -0.00344149233, 0.00422519865, 0.000471141102, -0.00245596212, -0.00596036064, 0.0140909851, 0.0232333504, 0.0176242162, 0.00116507488, -0.00141801022, 0.00702976575, -0.0190710574, 0.00110806618, -0.00106940512, 0.00871250592, 0.0131998137, 0.00732857035, -0.0130215799, -0.0191234797, 0.0304256231, 0.0101803169, 0.00911091175, -0.00396571076, -0.00895888917, -0.0179597158, -0.0103900041, -0.0196686666, 0.00309550832, 0.00909518544, 0.0236107875, 0.00592890754, 0.00823022518, 0.00331568, -0.0300901234, -0.0241559744, -0.00536799431, 0.00218336866, -0.00957746617, -0.00705073448, 0.0199831966, -0.0089221932, 0.00835079607, -0.036129117, 0.00090558693, 0.0108198635, 0.0050560846, -0.0199936815, -0.0112811755, 0.0222268514, 0.0179072935, 0.011323113, 0.00248217303, 0.0246592239, 0.00499842037, -0.00745962467, 0.0208114628, -0.0263786595, 0.00269710249, 0.0182952154, 0.00484639732, -0.0170370918, 0.00798384286, 3.66338427e-05, -0.00628013397, 0.00269186031, -0.00989723951, -0.0112706907, -0.00617004791, -0.0276787207, -0.0055934079, 0.00161852362, -0.0217445698, 0.00333402772, -0.0156950932, 0.0276367832, 0.0202348214, 0.0118473312, -0.0172677469, 0.00560389226, 0.0108408323, -7.97589746e-06, -0.01078841, -0.00616480596, -0.00832982734, 0.0230865683, -0.0294400938, 0.0033051956, -0.0149611868, -0.00578212645, 0.0104581527, -0.0108303474, 0.0039683315, -0.0114489254, 0.00150188513, 0.00536013115, -0.00575067336, -0.017561309, -0.0020575563, 0.0285174698, -0.00140097307, -0.0106259026, 0.00948310737, -0.016942732, -0.0112811755, 0.013629673, -0.0167330448, 0.000362693449, -0.00297493814, 0.00209949375, 0.00839273352, 0.00149795343, 0.00529984571, -0.00420947187, 0.00614383724, -0.0215348825, 0.00761689, -0.0122352522, 0.00100256724, -0.00682007847, -1.83681132e-05, -0.0028150517, -0.00724469544, 0.00591318123, -0.00481494423, 0.00473893248, 0.0239882246, 0.00772697618, 0.00678338343, -0.00632207142, -0.00765882758, 0.015024093, 0.00164866622, 0.00206279848, -0.0150031243, 0.0116376439, -0.00312958262, 0.00549380668, -0.00228297012, -0.00520548644, -0.000149975545, 0.0297126863, -0.000691968, -0.00168011931, -0.0128852827, 0.0239672549, -0.00738099217, 0.00547283795, -0.0134409545, 0.0106573561, 0.00526839262, 0.00465767877, 0.012633658, -0.0303836856, -0.00490144, 0.0188404024, 0.00289106322, 0.0102641918, 0.00205493532, 0.0206961334, -0.00363021088, -0.0144579373, 0.00492503, -0.00750680454, 0.00732857035, 0.0141434064, -0.00872823317, 0.0215768199, -0.036821086, -0.0208534, 0.0132312672, -0.000100748184, 0.0142063126, 0.0019147069, 0.00643215701, 0.0111763319, 0.0229188185, -0.00265647564, 0.00876492821, -0.0227720384, 0.0268190019, 0.00951456, 0.0137764541, 0.026735127, 0.014101469, -0.00562486099, -0.0045292452, -0.00806247536, 0.00314006698, 0.0157999359, -0.017330654, -0.0016250764, 0.0197106041, -0.020255791, -0.00214798399, -0.0134409545, 0.0185363553, 0.004872608, -0.00445061224, 0.0187041052, -0.0283287503, -0.0189033076, -0.023107538, -0.00443750713, -0.0015385804, 0.0198678691, -0.013168361, 0.0152966864, 0.00194747059, 0.00277049304, -0.0249318164, -0.0145103596, 0.00429334678, 0.00305881305, -0.0314111523, 0.0167540126, 0.00571397832, -0.0126126893, -0.024030162, 0.0251415037, -0.0155902486, -0.00287795789, -0.0048385337, -0.0111553632, -0.0111553632, 0.0092209978, 0.0340532139, 0.00802053791, -0.0267141592, -0.00322132069, -0.0174354967, -0.00755922636, 0.0101016844, 0.0108932536, 0.0119207213, 0.017645184, -0.00613859482, 0.0011906306, -0.0182427932, -5.54934086e-05, -0.0274690334, 0.00802578, -0.00893267803, 0.013325626, -0.00342576578, -0.0319144, 0.00115655642, 0.00389494118, 0.00154513307, -0.00688298466, -0.00666281302, -0.00845039729, -0.00694064889, -0.00389756216, -0.0162612479, -0.0155273424, 0.0092105139, -0.00778988237, 0.0182323083, -0.00517665455, -0.00832982734, 0.00833506882, -0.0118158776, 0.0124344556, 0.011323113, -0.00880162325, 0.0055147754, -0.0132522359, 0.0213042274, 0.0122247683, -0.0176032465, -0.00274166116, 0.00274166116, 0.00251755794, 0.00674144598, -0.0126755955, 0.00837176479, 0.00153071713, 0.0194589794, -0.00528936135, 0.0274270959, -0.00145077379, 0.00677814102, 0.0171733871, -0.0200146511, 0.013168361, 0.0123191271, 0.0208114628, 0.0227510687, -0.0201404635, -0.00793666299, 0.00305095, -0.0199622288, -0.00888549816, -0.0191549323, 0.00478349114, -0.0111239096, 0.00226855418, 0.0233801305, 0.0187565275, -0.016177373, 0.00841370225, 0.0182427932, -0.00667854, -0.0336128697, -0.00621198537, 0.0131473923, 0.006086173, -0.0202138536, -0.00699831266, 0.00338644953, -0.0116166752, -0.0166177172, 0.00922624, -0.00428810483, -0.00722372672, -0.0122876745, -0.0199727137, -0.0292513743, 0.00654224306, -0.000371539645, 0.0237785373, -0.0147724682, -0.0061019, 0.0262318775, 0.00807296, -0.0309917796, 0.00766931195, 0.00631682901, 0.00699831266, -0.0361500867, 0.0156531557, 0.0092209978, -0.00115786691, 0.0135248294, -0.0247221291, -0.0022082692, -0.00132954842, -0.00720275799, -0.0184629653, -0.00612811046, 0.0140805, 0.00399716385, 0.000832851627, 0.00812014, -0.0142797036, 0.00656845374, 0.018253278, 0.00651079, -0.0236527249, -0.00301163341, 0.00703500817, 0.0100545045, 0.0170266069, -0.0179177783, -0.0280771255, -0.0166177172, -0.00110085821, 0.00358565245, -0.0188508853, 0.000906897476, -0.0189557299, 0.00175482035, -0.00286747352, 0.0103428252, -0.0105682388, -0.000709660351, -0.00639021955, 0.0242398493, 0.0104843639, 0.00381368725, -0.00284912577, -0.0171524193, -0.000840059656, 0.0283287503, -0.00778464, 0.0201404635, 0.00270496588, -0.0131473923, -0.0228139758, -0.00515830703, -0.0132941734, 0.00945689622, 0.000129252541, -0.0215768199, -0.018567808, 0.0128957676, 0.0029854225, -0.00661563361, 0.000224430914, -0.0113755343, 0.0130215799, -0.0250576288, 0.00111920584, 0.0113021443, 0.00968755223, -0.0123296119, 0.0132522359, 0.022184914, 0.0221220069, -0.0117634563, -0.0279722828, -0.0123610646, -0.012403002, 0.00910042785, -0.00390542555, 0.00450041331, 0.0125078456, -0.0379324295, 0.0156321861, 0.0160515606, 0.0268609393, -0.0268609393, -0.0287900623, -0.0105944499, 0.0100387782, 0.00207328284, -0.0174984038, -0.0235269126, -0.00453186641, -0.021723602, 0.00578212645, 0.00610714173, 0.010557754, -0.00230524945, 0.0248479415, -0.00393425766, -0.0270496588, -0.00588172814, 0.00893267803, -0.00189242768, 0.025728628, 0.0216397271, 0.0236946624, -0.00712936744, 0.00549380668, 0.0122562209, -0.00451089768, -0.00560389226, -0.0177080911, 0.009587951, 0.0325015262, -0.00731808599, 0.0120884711, 0.0217026323, -0.0177080911, 0.00187408, 0.00702976575, 0.00599705614, -0.0102327392, -0.0022882123, 0.0107674412, 0.00758019509, -0.00184917962, -0.00256080576, 0.009587951, 0.0111134257, 0.0021152203, -0.00778464, -0.0195428543, -0.0134095009, 0.00586075941, 0.00402599573, -0.00385824591, 0.00680959411, -0.00182690041, 0.0017404044, 0.0014809164, 0.00617004791, 0.00295921159, -0.00132365094, 0.00391066773, -0.0212413203, -0.00688298466, 0.0110295508, -0.00765882758, -0.000186588906, -0.0151918428, -0.00394212082, -0.0410148315, 0.00581882196, -0.0113440817, -0.0295239687, 0.0226042885, 0.0157055762, -0.0028727157, -0.0306143425, 0.00960892, 0.00474941684, -0.000562551664, -0.0179387461, 0.00600754051, -0.0442440137, -0.0445375778, -0.00573494704, 0.0303627178, 0.0116586126, -0.0107779261, 0.00337858615, -0.00874395948, -0.00837176479, -0.0158209056, 0.00373243354, 0.0178653561, 0.0174250118, 0.0109247072, -0.00826692116, 0.0165967476, 0.0191129949, 0.00712936744, 0.000880031264, -0.0122876745, 0.0266302843, 0.0067257192, -0.00514520146, -0.0156217022, -0.00216502114, 0.0100335358, 0.00971376337, 0.00390542555, -0.0219123196, 0.0242817868, 0.0147514995, 0.0130740013, 0.00662087556, 0.00738099217, -0.0068410472, -0.0137450006, -0.00320297317, -0.0061543216, -0.00802053791, 0.0099077234, 0.00533916242, -0.0149716716, -0.0293352492, 0.0202243384, 0.00289368443, -0.00689346902, -0.00611238414, 0.00658942247, 0.00613335287, 0.00191077532, -0.00635876646, -0.0218703821, 0.00766931195, 0.0179387461, -0.00640594633, 0.00830885861, -0.00728139048, 0.0218494143, -0.00235767127, -0.0332144648, -0.00573494704, 0.00547808, 0.00395260518, -0.000470485829, 0.0181589182, -0.0167540126, -0.00341790263, -0.00215322617, 0.00459739333, 0.0195952766, -0.0122562209, 0.0195428543, 0.00480970182, -0.00216502114, 0.0232123807, 0.00975570083, 0.00242450903, -0.0197630264, 0.00722372672, -0.0108722849, 0.000777808717, -0.0150869992, 0.00545186922, 0.0225833189, -0.00119521748, 0.000435101101, -0.0113650504, 0.00674668793, -0.0205074158, -0.0065789381, 0.0119941123, -0.00851330347, 0.0086129047, -0.0180645585, -0.00302736, 0.00307453959, 0.0100702317, -0.0152128115, -0.0133046573, -0.00524480315, -0.0103690354, 0.0229188185, -0.037051741, -0.00267351279, -0.00161983422, -0.0224575065, 0.000803364383, -0.00335761742, 0.00433266349, 0.0108408323, -0.00606520427, -0.0111134257, 0.00294872723, -0.00826167874, -0.0234640054, -0.0334660895, 0.00431693671, -0.0279722828, -0.0177290589, 0.00320035196, -0.00801005401, -0.00107857888, -0.00387921464, 0.00996014569, -0.00196319702, -0.0176661536, -0.00791569427, -0.023107538, -0.00963513, 0.012864314, -0.00191077532, 0.0133570796, -0.0170161221, 0.00798384286, 0.0337177143, 0.0253931284, -0.00595511869, 0.000538961845, -0.0295449365, 0.00700355507, 0.000596625847, 0.0039709527, 0.0225833189, 0.0217026323, -0.0161249507, -0.020255791, 0.0150765153, -0.0284755323, -0.0167749822, 0.0274270959, -0.00307978177, -0.0150660304, 0.00153464871, -0.0200461037, 0.0403648019, 0.0110085821, 0.00707170321, 0.00715557812, -0.00569825154, -0.000161688542, -0.021723602, 0.00723421108, 0.00888549816, 0.0131893298, 0.00018511455, -0.0134304697, -0.0047599012, -0.000860373082, 0.00705597689, -0.0138917817, -0.0107779261, -0.0196791515, 0.0472635105, 0.015024093, 0.0133046573, -0.00483329175, 0.0051373383, 0.0153700775, 0.013870813, -0.0177500285, 0.00388445682, 0.01648142, 0.016020108, 0.00338644953, -0.0108932536, -0.0157579985, -0.00266433903, 0.0077112494, -0.0261060651, 0.0171419345, 0.0055934079, -0.0149087654, 0.00921575539, 0.0131159388, 0.00812014, 0.0161459204, -0.00323704723, 0.00798908528, -0.00490144, 0.00489095552, -0.00361448433, -0.0154539524, 0.0229397882, -0.0084661236, -0.025036661, 0.0117320027, -0.0343887135, -0.0127489865, -0.00542565808, -0.0100387782, -0.0172048416, 0.00773746055, 0.00185311132, -0.015024093, -0.00319773098, 0.0233381931, 0.00121356512, 0.0101908017, 0.0114279566, -0.00429334678, -0.0108198635, 0.0232543182, -0.0183056984, 0.00459215138, 0.00741768721, 0.0115852216, -0.00841894373, -0.0122771896, 0.00959319249, 0.00256604794, 0.0209267903, -0.014866828, 0.0299223736, 0.00317938323, -0.0030430865, -0.00642167265, 0.0063482821, -0.00372981234, -0.041203551, -0.0211889, -0.00878589693, 0.00742292963, -0.0284126252, -0.000655272743, -0.0199936815, 0.00764310127, -0.00361972651, 0.00170764071, -0.0361920223, -0.00896413065, 0.00161066034, 0.000517337816, -0.00569825154, 0.0175717939, 0.019951744, -0.00476776436, -0.00649506319, -0.00561961904, 0.00732857035, 0.0145103596, 0.00276787207, 0.00348342978, 0.00823022518, -0.000892481476, 0.034577433, -0.0117739402, -0.00482804934, -0.00056844909, 0.0122038, -0.00102353597, -0.00574543141, 0.00634304, -0.0105472701, 0.0112811755, -0.00934156775, -0.00607568864, 0.0132627198, -0.00375340227, -0.00968231, 0.00491716666, -0.0258754101, 0.00619101664, 0.00501414714, 1.03154264e-06, 0.0183371529, 0.00196319702, -0.000400699268, 0.0107097775, 0.00506656896, 0.0176347, -0.00539420499, 0.0027233134, -0.00179020513, 0.00949883368, -0.00474941684, 0.00705597689, 0.00574543141, -0.00813586637, 0.0124344556, -0.0346613079, 0.0102170128, -0.0178548712, -0.0134409545, -0.00691968, 0.000574674166, -0.00769028068, 0.00742817158, -0.00597608741, -0.0153491087, -0.0052500451, 0.0254140981, 0.0139546879, 0.00665232865, 0.00908470154, 0.0149087654, 0.0313272774, 0.01532814, 0.0288949069, -0.0057087359, -0.00963513, -0.0449988879, -0.00417539803, 0.0387711786, 0.000739802897, -0.0153491087, 0.00312434044, 0.000656583288, -0.012245737, 0.00279146177, -0.00628013397, 0.00991296582, 0.00235373969, 0.00210342556, -0.0203711186, 0.0154958898, 0.0161354356, 0.0132836886, -0.00858145207, 0.00981860701, -0.00132234034, 0.0223316941, 0.0156217022, -0.0149402181, 0.000308305811, 0.00613859482, -0.0294610616, -0.00299590686, 0.00845039729, 0.0197106041, -0.00477562752, 0.0102012856, -0.022646226, 0.0272803139, 0.0124554243, 0.0237156302, 0.0143426098, 0.0111134257, 0.0106940512, -0.0116166752, 0.00805723388, -0.011711034, 0.0135667669, 0.00296445377, 0.0155273424, -0.0204969309, 0.0189662147, -0.0020575563, 0.0096770674, 0.0104476688, 0.00913712289, 0.0138288755, 0.0208009779, 0.0102746766, 0.00409676507, 0.0250995662, 0.0212203525, -0.0153071713, 0.0377017707, 0.0035673047, 0.00646885252, -0.0108303474, 0.0147095621, 0.0197315719, 0.00239436654, -0.00952504482, 0.0055147754, -0.0266093146, 0.00225675921, -0.0159467179, 0.0297965612, 0.000878065475, 0.00978191104, 0.0111134257, -0.00769028068, 0.0398196131, 0.0164604504, -0.00693016453, 0.00402075332, -0.013713548, 0.000199694361, -0.0101541067, -0.0139966253, -0.0398615524, -0.0109876134, 0.0110714883, -0.013399017, 0.00546759553, -0.010400489, -0.00276525086, -0.0175193716, 0.0186726525, 0.00908994302, -0.0186097454, -0.00438508531, 0.0135457981, 0.019333167, -0.00203134539, 0.00759067945, -0.0359194316, 0.0296917185, 0.000422323268, -0.0192492921, -0.0187984649, 0.00983957574, -0.00608093105, -0.0192073546, 0.0183266681, -0.0117739402, -0.00140883634, -0.00171288289, -0.00416229246, -0.0152337803, -0.0123191271, 0.0185153857]
|
22 Oct, 2018
|
Python calendar module | firstweekday() method
22 Oct, 2018
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions.
In Python, calendar.firstweekday() is a function provided in calendar module for simple text calendars.
firstweekday() method is used to get the current setting for the weekday to start each week.
Syntax: firstweekday()
Parameter: no parameter
Returns: None
Code #1:
# Python program to explain working of firstweekday() method
# importing calendar module
import calendar
# default firstweekday
print("Default First weekday is - ", calendar.firstweekday())
# setting 2nd day as firstweekday
calendar.setfirstweekday(2)
# print firstweekday
print("First weekday after modification is - ", calendar.firstweekday())
Output:
Default First weekday is - 6
First weekday after modification is - 2
Code #2: Explaining working of firstweekday() method with prmonth() method
# Python code to demonstrate the working of
# firstweekday() with help of prmonth() method
# importing calendar module for calendar operations
import calendar
# using prmonth() to print calendar of 1997
print ("The 4th month of 1997 is : ")
calendar.prmonth(1997, 4, 2, 1)
# using setfirstweekday() to set first week day number
calendar.setfirstweekday(4)
print("First weekday after modification is - ",
calendar.firstweekday())
Output:
The 4th month of 1997 is :
April 1997
Mo Tu We Th Fr Sa Su
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
First weekday after modification is - 4
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module | firstweekday() method
|
https://www.geeksforgeeks.org/python-calendar-module-firstweekday-method/?ref=lbp
|
Pandas
|
Python calendar module | firstweekday() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python calendar module | firstweekday() method, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00424315, -0.00452394644, -0.0052897553, 0.0526876673, -0.0236436464, 0.0105568208, 0.0373034142, 0.0322207101, -0.00171456148, -0.00988744665, -0.00611512735, 0.014930441, -0.0187424682, -0.00185779622, -0.00631367043, 0.0445644185, -0.0166435838, 0.0368269086, 0.0416827053, 0.00113311387, 0.0205123387, -0.000531811907, -0.00798710529, 0.0342855565, 0.0225885324, -0.00138767448, 0.0346486084, -0.0259354021, -0.00696035381, 0.00304905488, 0.0167230014, 0.00958112255, -0.00371559244, 0.0302920043, -0.0339678898, -0.0321299471, -0.00912731, 0.00455231, -0.0251866113, 0.0323795453, -0.0314265378, -0.00841822755, 0.0364411697, 0.0182546191, -0.0332871675, 0.0341494121, -0.0226339139, 0.0130471177, -0.00678450149, -0.0365546197, 0.0225431509, -0.0160649735, 0.0501009338, 0.021306511, -0.00230877264, 0.00559040625, -0.0172675774, 0.0105000939, -0.0253908262, -0.0515531339, 0.0516892783, -0.0149871679, -0.0282498468, -0.03160806, 0.0123323631, 0.0260715447, -0.0175171737, 0.031698823, 0.041705396, -0.0132626789, 0.0212270934, 0.00658028573, -0.0217716694, -0.0144993188, -0.0126159955, -0.036055427, 0.0310861766, 0.0121621834, -0.0308819618, 0.00155572698, -0.0169272181, -0.0331283361, -0.0103752948, -0.0175739, 0.0359419733, -0.0147602614, 0.04007167, -0.0257992577, 0.0133194057, 0.0377799161, 0.00865080673, 0.00958679523, -0.00125294877, 0.00420344109, -0.0143291391, 0.00762405526, 0.0116176074, 0.0267976467, -0.0113453204, 0.0139887799, -0.00698304456, 0.0125479242, -0.0185042173, -0.0437248647, 0.0415011793, 0.00859975256, 0.00308876345, -0.0115835723, 0.00800979603, -0.00769779971, 0.00857706182, 0.0144539382, 0.00747089321, 0.00621723523, -0.017165469, -0.00660297647, -0.0321299471, 0.0131946076, 0.0395044051, -0.00607541902, 0.0442240573, -0.00890607666, 0.0265253577, 0.00526990136, -0.0189466849, -0.00603003753, 0.0289759468, 0.027773343, 0.0299743358, -0.0184248, 0.00868484285, -0.0132286428, 0.0157359596, -0.0348301344, -0.000943788793, 0.0119239315, 0.000960097706, 0.0432483591, -0.0197181664, -0.0154977068, 0.00913298223, 0.0063250158, 0.0137845641, -0.000383613631, -0.00194430421, -0.0316534415, 0.0175965913, 0.0130017372, 0.00574073195, -0.00216411985, -0.0226225685, -0.0400035977, -0.0118218232, 0.0124344705, 0.0171200875, -0.00414671469, -0.000739573035, -0.00895713, -0.0100065721, -0.0131265353, -0.0197748933, 0.0250050854, 0.017619282, -0.0320845656, 0.047151152, 0.021544762, 0.0347620621, -0.0106419101, -0.0221347194, 0.00943363365, -0.00618887227, -0.0149758225, -0.0123323631, 0.00247327983, 0.0420457572, 0.00549397105, 0.0334686935, -0.00426016748, 0.0136711104, -0.00623992598, -0.022123374, 0.0173696857, 0.0134101687, 0.0298155, -0.0221801, 0.052914571, 0.0152594559, -0.0049352143, -0.0400035977, 0.0117197158, 0.0256404225, 0.0149644772, -0.0166662745, 0.0494202152, -0.0169612542, -0.00284200278, -0.0223502815, 0.0388463773, -0.00544859, 0.0272060782, -0.0520069487, -0.00367588364, -0.0267976467, -0.000181702388, -0.000939534337, 0.0199677628, -0.00811190344, 0.059631, 0.00830477476, 0.0185722895, 0.0486033522, -0.0250277761, 0.0112602301, -0.0409566052, 0.0148283336, 0.0183113459, -0.0178234987, 0.0355789252, 0.00607541902, -0.0087302234, 0.0218283962, 0.0199564174, 0.00319938036, -0.0259354021, -0.0107553639, -0.028680969, 0.0383925624, -0.0133307511, 0.00160678092, -0.0407523885, -0.0378706791, 0.00449841935, -0.0263211429, 0.00183652365, 0.0574980825, 0.00795874186, -0.00187055964, 0.0282952283, 0.00174434297, 0.0301785506, 0.0554559231, -0.00753329275, -0.0260034744, -0.021454, -0.00855437107, 0.0390505902, -0.0431802869, 0.0530507155, -0.0142270317, 0.018889958, -0.00201663072, 0.00992148276, -0.0223275907, 0.0125252334, -0.00963784941, -0.0183226913, -0.0130130826, -0.0215674527, 0.0219758842, 0.018980721, 0.00164507143, 0.0346486084, 0.00536066387, -0.0173696857, -0.0173923764, -0.0297020487, 0.0122756362, -0.00534648215, -0.0132172983, 0.00141816505, 0.0199223813, -0.0390279, 0.0374849364, -0.0184248, -0.0351478, -0.00919538178, -0.0474234372, -0.0126273409, 0.0104376944, 0.0409566052, -0.0169499088, 0.00342345028, 0.0525061414, -0.0218964685, 0.0385287069, 0.0124344705, -0.0262076892, -0.0116062621, -0.0343763195, -0.0128996288, 0.0176306274, -0.0165301319, 0.000333268777, 0.0293616876, 0.00623992598, 0.0375757, -0.0190941729, 0.000458776369, 0.0158153754, -0.0221006833, -0.00900818408, 0.00410133321, 0.0135463122, 0.0106419101, 0.0159515198, -0.020126598, 0.0397540033, -0.021760324, -0.00890040398, 0.023484813, 0.00966621283, -0.0536860563, -0.0257765669, 0.00138129271, 0.0212270934, -0.0413877293, 0.0211930573, -0.0257311855, -0.0166889653, 0.00886636786, -0.0147375707, 0.00139051082, 0.000818281202, -0.00324476161, -0.00131251174, -0.0239159353, -0.027047243, 0.0111921579, 0.00268742279, -0.0477411076, -0.0182092395, -0.0168364551, 0.0307911988, 0.026048854, -0.0425449498, -0.014930441, -0.026139617, -0.00618887227, 0.00685824594, 0.0236436464, 0.00691497279, 0.0343082473, 0.0233486686, -0.00654057693, -0.0311315581, -0.0135803483, -0.00439063879, -0.00769212702, -0.0110389963, 0.0313130841, 0.000618319958, 0.00526422868, 0.0319257304, -0.0259807836, 0.0022378643, -0.0110106329, -0.0469696261, -0.00618319958, 0.00867917, -0.00997820869, -0.00630799774, -0.0276825819, 0.0155090522, 0.00330716069, -0.0282498468, -0.0222368278, 0.039073281, -0.0259580929, 0.0120941112, -0.00763540063, -0.0142156864, 0.0186403617, -0.000987751875, -0.0178802237, 0.0153502179, 0.0187765043, 0.0137845641, 0.0210569147, -0.032424923, -0.0147262253, -0.0477411076, -0.00880396832, -0.0214653462, 0.0114474278, 0.016564168, -0.0309727229, -0.0136824558, -0.0228267834, -0.0145787364, -0.00211164774, -0.00547695346, -0.00549113471, 0.0138526354, -0.0468334816, -0.0226452593, -0.0202627424, -0.0124685066, -0.00580029469, 0.00694333576, 0.0228721648, -0.0225658417, -0.00348868594, 0.0238251723, -0.0113736838, -0.0251639206, -0.0299743358, -0.0254362077, 0.0199564174, 0.0417280868, 0.0114133917, -0.00918970909, 0.0199337266, -0.0466519557, 0.00387726305, 0.0183340367, 0.0236209556, -0.0267522652, 0.0302466229, -0.0225544963, 0.0249823947, 0.0555920675, 0.00345465, -0.00246618898, 0.0294751413, 0.00575491367, 0.00676748343, -0.00356810307, 0.018163858, -0.0170520153, 0.061083205, 0.0253908262, -0.00709082512, 0.0106135467, 0.0311996303, 0.0420457572, 0.0309046526, 0.037053816, 0.00247895252, 0.0224977694, -0.0151913837, -0.0232579056, 0.0171881597, 0.0154069448, -0.00202655769, -0.0226339139, 0.00681853713, -0.0496017411, 0.043611411, 0.00713053346, -0.00633068848, -0.0342174843, -0.0302239321, 0.0244605094, 0.000807645, 0.0172221959, -0.0105057666, 0.00593927503, -0.0200471804, -0.0107156551, 0.0212951656, 0.0336956, -0.00109340518, 0.0322434, -0.0174150672, -0.00346883154, -0.0119920038, 0.0102051152, -0.0295205228, -0.00788499787, 0.0101767518, 0.0191395544, -0.0221574102, -0.0214199647, -0.00811190344, 0.0576796085, -0.00190317747, -0.0318803489, 0.0262076892, 0.0416146331, -0.00244775275, 0.0264799763, -0.0071532242, -0.010352605, -0.00265055033, 0.0338771269, -0.00955275912, -0.0461527631, -0.0216014888, -0.0216014888, 0.0183340367, 0.0180957858, 0.0216355249, 0.0542306304, 0.00522735622, -0.00167343474, 0.0280002505, 0.0312223211, 0.0243243668, 0.041796159, -0.0223275907, 0.0151913837, 0.00135151122, -0.0104320217, 0.00074879115, -0.0276598912, 0.000181525116, 0.00482176105, -0.0211249851, -0.00326745212, -0.00109695061, 0.010063299, 0.0171427783, -0.0276145097, 0.0192076266, -0.00949036051, 0.00416373229, 0.0137845641, -0.0117424065, 0.00302069145, 0.0105114393, 0.00912731, -0.0163372606, -0.00241371687, -0.00185779622, 0.0125479242, 0.0164960958, -0.022758713, -0.0121848742, -0.0295659043, 0.000811190403, 0.00450409204, 0.0144879734, 0.0229175463, 0.018617671, 0.0136824558, -0.0250504669, -0.0278414153, 0.00520182913, -0.027954869, 0.00934287068, -0.0262984522, 0.0316761322, 0.0313584656, -0.0261169262, -0.0036248297, -0.0355789252, -0.029225545, 0.00955275912, -0.00825372059, 0.0082083391, 0.00328163384, -0.00615483616, -0.0387329236, -0.00882665906, -0.000773609034, -0.0347620621, -0.0131265353, 0.0248916317, 0.0110843778, -0.0147942975, 0.001246567, 0.000312350836, -0.000556275249, 0.00286469329, 0.0204329211, 0.018436145, -0.00140185608, 0.0217943601, 0.0264345966, 0.0272514597, 0.0142724123, -0.0179369505, 0.0400943607, 0.014839679, -0.00298098288, -0.00353123085, -0.0333779305, 0.000613710901, 0.00633636117, 0.00476787053, -0.0187765043, 0.00214568363, 0.0117197158, -0.0440198407, 0.0135463122, 0.0296566673, -0.0246874169, -0.0208413526, -0.0411608219, 0.00629098, 0.0328333564, 0.0354427807, 0.0135576576, 0.0153388726, 0.0147602614, 0.0308592711, -0.017165469, 0.0422272831, 0.00881531369, -0.0121281473, 0.00215844717, -0.0265480485, -0.0363730974, -0.0143291391, -0.0119012408, -0.00327312481, -0.0149985133, -0.0182432756, 0.0058144764, -0.016564168, -0.00773750851, 0.0079417238, -0.00853168, -0.0119579677, -0.00258815126, 0.00905356556, -0.00919538178, -0.00534648215, -0.00574924098, -0.00302920048, 0.0101143532, 0.0289078765, -0.000904080167, 0.0205350295, 0.0151460022, 0.00125294877, -0.0120941112, -0.0422272831, -0.011243212, -0.0412969664, -0.00939959753, -0.0488302559, 0.015475017, 0.0209774971, -0.0189013034, -0.00118487689, -0.0177667718, 0.011697025, -0.0255723521, -0.00250164303, 0.0083161192, -0.0199337266, 0.0109595796, 0.0656213313, 0.00034213232, 0.0285221338, -0.00460336357, 0.0242109131, 0.0119239315, 0.0140001252, -0.0516892783, -0.00739147607, 0.0169158727, 0.00546277175, 0.00904789288, 0.00795306917, 0.0302466229, -0.0137845641, -0.0326745212, -0.0186063256, 0.0199564174, 0.00345181371, 0.0220666472, -0.0176760089, 0.0227246769, 0.00633068848, 0.0314719193, -0.00804383215, 0.0167683829, -0.00455514621, -0.0181752034, -0.0101824244, -0.00412118761, 0.016564168, -0.00794739649, -0.018674396, -0.0153729087, 0.0470150076, 0.0195252951, -0.0207505897, 0.0298155, -0.00246193446, -0.00649519591, -0.00925778132, -0.00247611618, 0.00565564213, -0.00852600764, -0.0210909508, 0.0337863639, 0.0084239, -0.00934287068, 0.0180504043, 0.0140568512, 0.0178348441, 0.0205009934, 0.0142610669, 0.0296339765, 0.0165982042, 0.0133307511, 0.0122756362, -0.0232238695, 0.0023442267, 0.000699155324, 0.00123805809, 0.020398885, 0.0192416627, -0.0194118433, -0.0144539382, 0.00954141375, 0.00981370173, -0.00360781187, 0.00509972125, -0.032515686, 0.0136370743, -0.027864106, 0.0239613168, 0.00069773721, 0.00324759795, 0.0316534415, -0.0219758842, -0.0155657791, -0.0321072564, -0.0129790464, -0.0352839455, -0.00985341053, 0.00758434646, -0.01347824, -0.0275464375, -0.00604138291, 0.0163939875, -0.0101086805, -0.00391697185, 0.026502667, -0.00173725211, 0.00596196577, -0.0208867341, -0.0362596437, -0.00738580339, -0.0282952283, 0.0103299143, 0.00242789858, 0.0131946076, 0.0405708663, -0.0185155626, -0.00661432138, -0.0378706791, 0.0182432756, 0.00583149446, -0.031698823, 0.018526908, -0.00381486397, 0.00942796096, 0.0473780558, 0.0169952903, 0.01311519, -0.0221574102, 0.0232805964, 0.0143518299, 0.0348982029, 0.0570442677, -0.0111978306, 0.0265707392, 0.0120941112, 0.00374962832, -0.0114417551, 0.0122302547, -0.0140908873, 0.0217262879, 0.0140001252, 0.00785663445, 0.00819132105, -0.0267295744, 0.0133080604, -0.0116289528, 0.033423312, 0.0162464976, -0.0347166806, -0.0243243668, 0.0181978941, 0.0265480485, -0.0411608219, 0.007192933, 0.0476503447, 0.00501463143, 0.0077942349, -0.0373714827, -0.0136484196, 0.0228721648, 0.0263438337, -0.0215901434, -0.00270727696, 0.00610945467, 0.0426584035, -0.00582582178, 0.0299743358, 0.00142809213, -0.00264345948, 0.0308138896, -0.0232352149, -0.020035835, -0.00787932519, 0.0549567305, 0.00180532411, -0.0150779299, 0.0454039723, -0.0167910736, -0.0104320217, -0.00492954161, 0.000250660669, 0.0249143224, 0.00353406719, 0.00594494771, -0.0153955994, 0.0137618734, -0.0324476138, 0.00153729087, 0.0219531935, 0.00536066387, 0.0183226913, -0.0329695, 0.0116629889, -0.0212497842, 0.000410558772, 0.0126727223, 0.00430838531, 0.0177440811, 0.038256418, 0.00792470574, 0.00679017417, 0.0331510268, -0.00661999406, -0.00621723523, -0.0472872928, 0.038052205, -0.0131038446, 0.0060016741, 0.0117537519, -0.00766376359, -0.00641010562, 0.0349435844, 0.0134442039, -0.0210001878, -0.00560175162, -0.0354881622, 0.0359192826, 0.0155998152, -0.0303373858, 0.0401851237, 0.00361064821, 0.0158834476, 0.045630876, 0.0251866113, -0.0037836642, -0.000544220849, -0.00861109793, 0.0191395544, -0.0281363931, -0.0258673299, 0.020035835, -0.0122302547, 0.00160819909, 0.000501321338, 0.02070521, -0.00838986412, -0.0131378807, 0.00236833561, 0.0141589595, 0.00361915701, -0.00274273101, 0.0107610365, -0.00555920694, 0.0281817745, 0.0401397422, 0.03149461, -0.0160082467, -0.0569081269, 0.0236209556, -0.017165469, 0.0168478, -0.00231019082, 0.0311769396, -0.0394136421, 0.00029462378, -0.0233713593, -0.0154636716, -0.00508837588, 0.0169612542, -0.0465611927, 0.0058541852, -0.0105454754, 0.0277279615, 0.010863144, -0.00121749472, -0.0467427187, -0.00954141375, -0.0120941112, 0.0168591458, 0.00991581, -0.0146468086, -0.0252773724, -0.00109056884, 0.00782259833, 0.0183907636, -0.0310407951, 0.00383755448, -0.0151913837, 0.0224864241, 0.0047990703, -0.00630232552, 0.00419493206, 0.0100519536, -0.0168364551, -0.0524607599, 0.0214086194, -0.0163599513, -0.0166435838, 0.00837851875, 0.038256418, 0.0382791087, 0.0085430257, 0.0294297598, -0.00900818408, 0.0132740242, 0.00931450818, -0.0338317454, -0.0220893379, 0.00668806629, -0.00439347513, -0.0137051465, 0.00103100599, -0.0451316833, 0.00676748343, 0.00307458173, -0.0253681354, -0.0598579086, -0.00268033193, -0.0510085598, -0.000572938647, -0.0496925, 0.00428569457, 0.0310634859, 0.00861677062, 0.00261509628, 0.0191509, -0.00393399, -0.03149461, 0.0207846258, 0.0248462502, 0.00174859748, -0.0180390589, 0.021760324, -0.019491259, -0.00760136452, 0.014113578, -0.0108177625, -0.0295205228, -0.0144539382, -0.0135349669, 0.00997820869, 0.00685824594, -0.0194799155, -0.0279775597, -0.0083955368, -0.0117197158, -0.0121168019, -0.00726667745, -0.0346486084, -0.0212384388, -0.00504866755, -0.0211703666, 0.0234167408, -0.0254362077, 0.025685804, -0.014748916, 0.0040105707, 0.0306550544, -0.0250277761, -0.00551949814, -0.00798710529, -0.0403439589, 0.0214086194, 0.0124571612, 0.00266473205, 0.00840688217, 0.0203194674, -0.0193210803, 0.00153870904, -0.0205917563, 8.00376874e-05, 0.0115325181, 0.0282952283, -0.0284994449, 0.00906491093, -0.0342855565, -0.00308592711, -0.0133761326, 0.0170293245, 0.0221120287, -0.0110957231, -0.00214993814, -0.0298835728, 0.0253000632, -0.0127975214, -0.0366226919, 0.0174604468, 0.0307911988, 0.00838419143, 0.0469696261, 0.0220553018, -0.0255950429, 0.00467143534, -0.0363050252, -0.00382620911, -0.00377799151, 0.0278414153, 0.00393682625, -3.4168912e-05, 0.00504299486, -0.00915, -0.0109255435, -0.00892876647, -0.0238932446, -0.0133080604, -0.0305416025, 0.00127634848, -0.0149417864, -0.000353654905, -0.0138980169, 0.0254815891, 0.0144199021, -0.0102561694, -0.00430271262, 0.0190261025, 0.0120373843, 0.016110355, -0.00407580612, -0.0360100456, -0.0225431509, 0.015656542, -0.0103639495, -0.0050656856, -0.0107440185, -0.00796441454, -0.0299970265, -0.0185949802, -0.00973995775, -0.000746663893, -0.0142724123, -0.0289078765, 0.0159288291, 0.00897414796, 0.00194430421, -0.0058541852, 0.0132513335, 0.0281137023, 0.00260516908, -0.0303827673, -0.0329921916, 0.0019017593, -0.0125479242, 0.00171172514, 0.0172221959, 0.0181865487, 0.00913298223, 0.0131605715, -0.000192515901, -0.0242336039, 0.0233940501, -0.00731773162, 0.0148737142, -0.00604705559, -0.0122983269, 0.0263892151, 0.000607683731, 0.0138980169, -0.0187424682, -0.0160990097, 0.0124685066, 0.0160309374, -0.0153729087, 0.0321526378, -0.0181071311, 0.00606407365, 0.0190714821, 0.0134895854, 0.0189466849, 0.0166662745, -0.0063647246, -0.0280456319, -0.00425165892, -0.0120033482, 0.000778572576, -0.0105681652, -0.000678591954, -0.000471539854, 0.0010395149, -0.00681286491, 0.0244605094, -0.0392321162, 0.000268742268, 0.0105000939, 0.0208186619, -0.0270699337, 0.00348301325, 0.00554786157, 0.00997820869, 0.0220553018, 0.00483027, 0.0224977694, -0.00136002025, 0.0217376333, 0.00144936459, -0.0381883457, -0.000806935888, 0.0115722269, -0.0146694984, 0.00196841313, -0.0246193446, -0.00465441775, -0.00540604489, 0.00940527, 0.00773750851, 0.0313584656, 0.0137618734, -0.0115665542, -0.0016705984, 0.00406729709, 0.00430838531, -0.00886069518, 0.010426349, -0.00897982065, 0.00981937442, -0.00202797586, -0.0162011161, -0.0220553018, 0.00410700589, 0.00896847527, -0.000804099545, 0.00279945764, -0.00347166788, 0.0239840075, 0.0211930573, 0.0287036598, -0.0151233114, 0.000675755611, 0.00565564213, -0.00485579716, -0.040888533, -0.0307004359, -0.00101753336, 0.0477411076, 0.0138639808, 0.00477070687, 0.00310294493, -0.0136143845, -0.0401851237, 0.0356469974, 0.00299800094, -0.0107099824, 0.012150838, -0.0151800383, -0.0134328585, 0.0155884698, -0.00822535716, 0.0232805964, 0.0153729087, 0.0164507143, -0.00916134566, 0.00242080772, 0.00400489802, 0.0124911973, -0.00694900844, 0.00748791127, -0.0040105707, 0.00935988873, 0.0184928719, 0.000625056215, -0.00218113768, 0.0202854332, 0.00308309076, 0.0165414773, -0.00960381329, 0.0025413516, -0.0251866113, -0.00361632067, 0.00979101099, -0.000397795287, -0.00862811599, 0.000496003195, -0.00420911377, 0.0279094875, -0.00394817116, -0.0335594565, 0.0276145097, 0.0264572855, 0.00281505752, 0.0177781172, 0.0186970867, -0.00814026687, 0.00138200179, 0.00434525777, -0.00630799774, -0.00620021764, -0.00852033496, -0.0131605715, -0.0117764426, -0.0106759463, 0.0248462502, -0.0184588358, -0.0303600766, 0.0027682581, -0.00121111295, 0.00291574723, 0.0235982649, 0.0111751407, 0.0206711739, 0.00361348456, -0.0210228786, -0.0016606712, -0.00102746056, 0.0429306924, 0.00334970583, -0.00543157198, -0.0229629278, 0.00689795474, -0.00175143383, -0.00423464086, -0.0151686929, -0.00384606351, 0.0109255435, -0.0244832, 0.01115245, 0.0139207076, -0.0218283962, 0.038982518, -0.02695648, 0.00220241025, -0.00114871364, -0.00801546872, -0.0284994449, 0.0222822092, -0.0266388115, 0.0475142, 0.025685804, -0.00230877264, 0.0106702736, 0.00478772493, -0.0205690656, 0.014748916, -0.021397274, 0.00797008723, 0.00603003753, -0.0152708013, 0.00987610128, -0.0128882835, -0.0378026068, -0.0328787379, -0.0233486686, 0.0317442045, -0.00821401179, 0.0036446841, 0.0387556143, -0.00744820246, -0.0149871679, -0.0196841303, -0.0280229412, -0.0119466223, -0.0199223813, 0.0147035345, -0.00559324259, 0.018526908, -0.0319711119, 0.00934854336, 0.0210455693, -0.0333098583, -0.00107780541, 0.0212838203, 0.0055563706, 0.00661999406, -0.0265480485, -0.00221801014, -0.0053294641, 0.0271833874, 0.00988744665, -0.00129549368, 0.00420911377, 0.0129109742, 0.0134215141, -0.0048189247, -0.0267976467, 0.0138980169, -0.00214568363, -0.00188899576, 0.00331566972, -0.00769779971, -0.00677315611, 0.00803815946, -0.0188332312, -0.00277960347, 0.0279321782, 0.00700006261, -0.0002088248, -0.0374622457, -0.00283349375, 0.00892309379, 0.0306777451, -0.0143518299, 0.0074198395, 0.0161897726, 0.0159628652, 0.0159288291, -0.0162918791, -0.0100179175, 0.000319796207, 0.00395668, -0.00675046537, -0.01580403, -0.0191735905, 0.00894011185, -0.00223928248, -0.0145787364, -0.00962083135, -0.0140341613, 0.00646116, -0.0145560456, -0.00231869984, 0.00142383762, -0.00131818443, 0.0114701185, -0.00146212813, -0.00384606351, 0.00263636885, 0.0282952283, -0.00763540063, -0.0187311228, -0.0467881, 0.00819132105, -0.027410293, -0.00960381329, -0.0101370439, -0.0165301319, -0.0369857438, -0.00012479852, 0.0305869821, 0.0151119661, -0.000109287343, -0.00527841039, 0.00774885342, 0.00649519591, -0.00333268777, -0.0208300073, -0.015202729, 0.0194231886, -0.029588595, -0.0180390589, 0.0241882224, 0.0235301945, -0.00126429414, 0.0307231266, 0.0167003106, -0.00420627743, -0.0411381312, -0.000116644071, -0.02695648, 0.0359192826, -0.019582022, -0.00793037843, -0.0138866715, 0.00527841039, 0.00559607893, 0.0220666472, -0.00498343166, -0.0136030391, 0.00171030697, 0.00246618898, -0.0163599513, -0.00613214541, -0.0274329837, 0.0174604468, -0.00471114414, 0.00526139233, -0.000588893, -0.0291801635, 0.000128255298, 0.044700563, 0.0158834476, 0.00462605432, 0.0237797908, 0.0029951646, -0.000763681834, -0.00164932595, -0.012479852, 0.0361235, 0.0224637333, 0.0124458158, 0.0218737777, -0.0219758842, -0.032424923, 0.00869051553, 0.00448991032, 0.00503164949, 0.0048756511, -0.00638174266, 0.0312903933, -0.0131719168, 0.0134555493, -0.0022378643, 0.0025711332, -0.0119239315, -0.00132172974, -0.0151119661, 0.00484445179, 0.0202287063, -0.0300877895, -0.0132626789, 0.0238705538, -0.028227156, 0.018889958, 0.0061378181, 0.0250277761, -0.0092124, -0.0196614396, -0.0152367651, -0.0191622451, 0.00810623076, -0.0156792328, 0.00258956919, 0.0134668946, 0.0538675785, -0.00224920968, 0.0253454447, -0.0182432756, 0.0280910134, -0.00462889066, 0.00312847202, 0.0213405471, 0.00379217323, -0.0221120287, 0.0220212657, -0.0139093623, 0.0138753261, 0.000802681374, -0.00329014286, 0.0186290164, 0.0171995051, -0.0104660578, 0.0236436464, 0.0405935571, -0.00647250516, -0.0397313125, 0.0459485464, -0.016348606, 0.0159969013, -0.0426810943, 0.0169952903, 0.00550248, 0.0208753888, -0.0158494115, 0.0183567274, -0.00545709906, -0.000582511304, 0.0100349355, 0.00639876071, 0.0042176228, 0.0177554265, 0.0182205848, -0.0092237452, 0.00907058362, -0.000799845089, 0.0159969013, 0.00389144477, -0.00155430881, -0.0091840364, -0.0180504043, -0.00183226925, 0.0182659645, -0.0545482971, -0.000974279363, -0.0187311228, -0.000452040083, 0.0100746443, -0.0288171135, -0.020398885, -0.00391980819, -0.00588822132, 0.00314265373, 0.00930883549, 0.00407864247, -0.0105681652, 0.011969313, 0.00726667745, 0.0208980795, -0.000690646353, 0.0109765967, -0.0164734051, -0.0135803483, 0.0165755134, -0.00285192975, 0.0221347194, -0.0179596413, 0.00375813735, -0.0217830148, 0.0159969013, 0.0233940501, -0.0216128342, 0.000632147072, -0.0210228786, -0.0230423454, 0.0142610669, -0.0248008706, 0.023484813, 0.0217943601, -0.0173810311, -0.0210001878, 0.0198202748, 0.00164223509, -0.0336729102, 0.0183340367, 0.0119012408, -0.0139887799, 0.0279094875, -0.00178830605, -0.00384889985, -0.0053096097, 0.00806085, 0.00502314046, 0.00095087965, -0.00124585791, 0.0506455079, 0.00276258541, 0.00667104824, 0.00138200179, -0.0194004979, -0.0134668946, 0.0056074243, -0.00693199039, 0.0160195921, -0.00871887803, 0.0151460022, -0.000205456658, 0.000128521206, 0.010335587, -0.000470830797, -0.0126840677, -0.00777154416, 0.0181525126, -0.000893443939, -0.00298665557, 0.00645548711, 0.0144312475, 0.0348301344, -0.0191735905, 0.0051025576, -0.00334686949, 0.000675046525, 0.00494088698, 0.00874724146, -0.00882665906, 0.0082877567, 0.00305189099, -0.0317442045, -0.00150467304, 0.0210115332, 0.0111637954, -0.00241371687, -0.0118331686, -0.0106589282, 0.00323908892, -0.0404120311, 0.0114531005, 0.0366453826, 0.0192643534, 0.00358512113, -0.0101200258, 0.0022960091, -0.0243697483, -3.73819421e-05, -0.000155909511, 0.0018336873, 0.00422045914, 0.00216979254, -0.0211930573, -0.0176079366, -0.00376381, 0.012661377, -0.00377515517, 0.0230990723, -0.0129790464, 0.0195252951, 0.0116743343, -0.00432540337, 0.0253227539, 0.0104150036, -0.0110843778, -0.0288171135, 0.0058144764, 0.00109695061, 0.00706246169, -0.00605840096, 0.0139547437, -0.017800808, 0.0238251723, 0.0168818366, 0.00459769089, -0.0159969013, 0.00124443974, -0.00190601381, -0.00764107285, -0.0282952283, -0.0175739, 0.0137391826, 0.0145787364, -0.0324703045, -0.0140114706, -0.00404177047, -0.00987610128, 0.00732340431, 0.0130471177, -0.0284994449, 0.0295659043, -0.0100065721, 0.0152140744, -0.0157019235, -0.00205917563, 0.0145900818, -0.00902520213, -0.0041977684, -0.0156338513, -0.00962650403, -0.00109624153, 0.0151006207, 0.00280796667, -3.13769e-05, -0.0190601386, 0.00334970583, 0.0235075038, -0.0105454754, -0.0144539382, -0.000662637583, -0.00760136452, 0.0127634853, 0.00317101693, -0.0148737142, 0.0148283336, -0.00263211434, -0.0084239, 0.00221517379, 0.00876425952, -0.00850899052, -0.00880396832, 0.0423634239, 0.0115949167, 0.00326745212, 0.000566911476, -0.00705678901, -0.0110163055, 0.0102958782, 0.00706246169, -7.80433911e-05, -0.00146638264, 0.0103469323, -0.00567549653, 0.00856004376, -0.000696319039, -0.00634203386, 0.0018677233, 0.00335537852, -0.00462889066, 0.0021471018, 0.00778288953, 0.00605840096, 0.0108517986, 0.00726667745, 0.0210796054, 0.00977966562, -0.0198770016, 0.00469696242, 0.0190261025, 0.0048387791, 0.00410984224, -0.00440198416, -0.0122642908, 0.0250050854, 0.000427576742, 0.00389428111, 0.0116856797, 0.014385866, 0.000670083, 0.0118672047, -0.0203535035, -0.00678450149, -0.0312223211, -0.0151573475, -0.00883800443, -0.0399582162, -0.0187424682, -0.0146468086, 0.000432894856, 0.00961515866, -0.00559040625, 0.00722129643, -0.0201833248, -0.0265253577, 0.0176419728, 0.0269337893, -0.0105965286, 0.00294411066, 0.0051621208, -0.0262303799, 0.0148964049, -0.00323058, -0.0145333549, 0.00346315885, 0.0127634853, -0.00153303635, -0.0222822092, 0.00954708643, -0.00264204131, -0.019343771, -0.0021768834, -0.0118104778, -0.00225630053, 0.000299587351, 0.0120600751, 0.00124798517, 0.0173016135, 0.00219815574, -0.0188332312, 0.0153161818, -0.00920672715, 0.000781408919, -0.00414387835, 0.00511957565, -0.00226339139, 0.0139887799, -0.00249171583, 0.0125138881, -0.0174831375, -0.000953006907, 0.022758713, 0.00138980174, 0.0258446392, 0.00484161545, 0.00332985143, 0.0270926245, -0.0189013034, -0.00298098288, -0.0106702736, 0.0211817119, 0.00630799774, 0.00238677161, -0.02695648, -0.0225091148, 0.00620589, 0.0150098586, -0.0171541236, -0.00710784318, -0.000443885656, -0.00491252355, 0.0144879734, -0.00250589754, 0.017346995, 0.0251185391, 0.00902520213, 0.00455798255, 0.00110191421, -0.000860826171, -0.0197295118, -0.00355392159, -0.0122983269, 0.00182801473, 0.018980721, 0.0177327357, 0.00878127757, -0.0110276509, -0.00627963478, -0.0143745206, 0.00681286491, 0.0055563706, 0.00306607271, 0.000257751497, -0.000264133239, -0.0235982649, 0.0249143224, -0.0143291391, -0.0127294492, -0.022361625, -0.00612647273, -0.0210682601, 0.00869051553, 0.0167683829, -0.0212951656, 0.0174604468, 0.0110106329, 0.0257084947, -0.0170973968, 0.0385513976, 0.00384606351, -0.00187197782, -0.00719860569, 0.0105000939, 0.00412686029, -0.0197181664, 0.00360781187, 0.0209094249, 0.0112715755, -0.00949603319, -0.0176419728, -0.0143631753, -0.0027682581, 0.00137278368, -0.0126954131, 0.0208186619, 0.0217716694, 0.00916134566, 0.00354541256, 0.00494372332, -0.00732340431, 0.0210682601, -0.00579178613, 0.0206257924, -0.0210228786, -0.00938257948, -0.00889473129, -0.00817430299, -0.00312563567, 0.00524153793, -0.00311712665, -0.0084239, 0.0244832, 0.00302636414, -1.21098e-05, 0.00529259164, -0.00762405526, -0.0299289543, 0.020398885, 0.00705111632, 0.00949603319, -0.0242789853, -0.00402475242, -0.00237259013, 0.0202287063, -0.0103185689, -0.00762972794, 0.00739147607, -0.0028264029, 0.00222226465, -0.00275407638, -0.00161812629, -0.0123777445, -0.00945065171, 0.000921098166, 0.0144652827, -0.0019017593, 0.010261842, 0.0288398042, -0.00112318667, 0.0324022323, -0.00757300109, -0.0125138881, 0.00551382545, 0.00765809091, 0.0014876551, 0.0165755134, 0.0102731874, -0.00439063879, -0.00328730652, 0.0111127412, 0.017256232, -0.0139660891, 0.0167456921, 0.00480757933, 0.0193551164, -0.0382791087, 0.00489266915, 0.00916134566, 0.00474234391, 0.00710217049, -0.0243016761, -0.00239528064, -0.0122983269, -0.0160990097, -0.00996119063, 0.00600734679, 0.00334970583, -0.0180844404, -0.014204341, -0.00734609459, 0.0212270934, 0.00347734056, -0.011061687, 0.0131265353, -0.00348868594, -0.00695468113, 0.0299289543, 0.0299289543, 0.0086621521, 0.00431689434, 0.00634770654, 0.0078339437, 0.00392264454, 0.00799277797, 0.015384254, -0.0334913842, 0.00937690679, 0.0190374479, -0.000645974185, -0.0230650362, 0.00114375, 0.00347166788, -0.00856571645, 0.0406616256, -0.00490968721, -0.0164734051, 0.0221347194, 0.00928047206, 0.00769212702, -0.0095584318, -0.0275918189, 0.0193664618, 0.0144312475, 0.00106433278, -0.0214086194, 0.0057634227, -0.0086621521, -0.0257538762, -0.0237571, 0.00629098, -0.0252546817, 0.00626261672, -0.00721562374, -0.00546844443, -0.00289589306, 0.0111808125, 0.0101654064, -0.000759427377, -0.0310181044, -0.0107553639, -0.0175512098, 0.0133647872, 0.0210796054, -0.00200386718, 0.0217376333, -0.0297928099, 0.000487848767, 0.0035766121, -0.0150552401, 0.00294978311, -0.0104717305, 0.00621156255, -0.0339905806, 0.023031, 0.0094109429, -0.0219078138, -0.0279094875, -0.000254028797, 0.0233940501, -0.00186063244, 0.0128202112, 0.0163032245, 0.0056669875, 0.00233571767, 0.00449558301, -0.00992148276, -0.00411551492, -0.0107950717, -0.00445303833, 0.0037836642, 0.0212497842, 0.0342628658, -0.0126954131, -0.00431405799, -0.00273138587, 0.0121168019, 0.00377231883, -0.0196614396, -0.0001029056, 0.0261169262, 0.00112885935, -0.0147035345, -0.0141816502, -0.00118133146, 0.0229742732, -0.022758713, -0.0144199021, -0.00176845177, 0.019672785, 0.0091840364, 0.0261169262, 0.0209548064, -0.0172221959, -0.0108688166, 0.0263892151, 0.0113623384, -0.0132626789, 0.00180106959, -0.0297020487, 0.00717024226, -0.00372410123, -0.020308122, -0.00936556142, 0.022214137, 0.0084863, 0.0065122135, -0.00586553058, -0.000800554175, 0.0254815891, 0.0101824244, -0.0120827658, 0.00865080673, 0.00161812629, 0.00810055807, 0.0124911973, -0.00202655769, -0.0389144495, 0.00996119063, -0.0305869821, 0.00682988251, 0.00317385327, -0.0133307511, -0.00853735302, -0.00681286491, -0.0207165536, -0.0143972114, 0.0258900207, -0.000875007827, 0.0250958484, 0.0173243042, 0.0139774345, 0.00714755151, 0.0109141981, 0.0215334166, 0.0157926846, -0.00834448263, -0.00150609121, -0.0113963736, -0.00803248677, -0.00128627568, -0.0305189118, 0.0107043097, 0.0274329837, 0.0157132689, 0.0102391513, 0.0120033482, -0.0229402371, 0.00135151122, 0.00220382842, -0.0470603891, 0.0109482342, 0.0212951656, 0.0244151279, -0.00796441454, -0.0128655927, -0.0057435683, 0.00751060201, -0.0180163682, 0.0150438948, -0.00704544364, -0.00705111632, -0.00488983281, 0.0139887799, 0.000618319958, -0.0104036583, 0.00975697488, 0.0085430257, 0.00411551492, 0.00436794804, -0.00429704, -0.00835015532, -0.00554218888, -0.00188332319, -0.00922941789, -0.0141589595, 0.00405595172, 0.000574002275, 0.0117991325, -0.0137618734, 0.00449558301, -0.0106929643, 0.000913298281, -0.0101994425, -0.0017429248, -0.00697169919, 0.018674396, 0.011787788, -0.0113680111, -0.0188218858, 0.00482176105, 0.00258247857, 0.017256232, 0.0358965918, -0.000668310269, 0.0327652842, 0.0123437084, 0.012479852, 0.00860542525, -0.023484813, 0.0102504967, 0.0227360222, -0.0238251723, -0.00893443916, 0.0205236841, -0.0114360824, 0.00497208675, -0.012150838, 0.0181071311, 0.00334686949, 0.00526422868, 0.0139547437, 0.0150779299, -0.0175058283, -0.0291574728, -0.00951872393, 0.0164847504, -0.00447856495, -0.0122302547, -0.0190487932, -0.0177327357, 0.00374395563, 0.00641010562, -0.00534364581, -0.00727235, -0.0146468086, -0.00308025442, -0.00139051082, 0.00510823028, 0.00314265373, 0.00408431515, 0.00622858061, 0.00197124947, 0.00145220093, 0.00866782479, -0.014476628, 0.0015259455, 0.021488037, 0.0116289528, 0.00682988251, -0.0287036598, -0.0107667083, 0.0226225685, -0.0199110359, 0.010590856, -0.00821401179, -0.00992715545, -0.020251397, 0.0180957858, -0.00513943, -0.00145929179, -0.00059421116, -0.00422613183, 0.0151686929, 0.0121735288, 0.00832746457, 0.00237117196, 0.00122671272, -0.00420060474, -0.0179482959, -0.00975130219, 0.00398788, 0.00841822755, -0.00747089321, 0.0110219782, 0.00447289227, 0.00252007926, -0.0061378181, -0.0133080604, 0.0159969013, 0.00109836878, 0.0084239, -0.0254135169, -0.0162464976, -0.0235982649, 0.000940243423, -0.0128315566, -0.0216241796, -0.00699439, 0.00827073865, 0.0267068837, 0.00902520213, 0.0171087421, -0.0154977068, -0.0299516451, -0.0185382534, 0.0111581227, -0.00216128351, -0.00458067283, -0.00959246792, -0.00994984526, -0.00960381329, -0.021488037, 0.013659765, -0.0134101687, -0.00904789288, -0.0290213283, -0.00894578453, -0.0058541852, 0.0307231266, -0.0127634853, 0.00960381329, -0.0080211414, 0.00260375091, -0.0109368889, 0.0053493185, -0.00708515244, 0.013296715, 0.000595629332, -0.00216979254, -0.0253000632, 0.0171768144, 0.0135576576, 0.00302636414, -0.0178234987, 0.000717946037, 0.00327879749, -0.00748223858, -0.0370311253, 0.00844091829, 0.00388577208, -0.0205917563, -0.00678450149, -0.00562160602, 0.0132059529, 0.00683555519, 0.000123823527, -0.00539469952, 0.0225431509, 0.00709082512, 0.00681853713, -0.00166634389, -0.00762972794, 0.00436794804, 0.0107610365, 0.00465441775, 0.0164393689, -0.00256262417, 0.0144425929, -0.00509688491, -0.00784528907, 0.00167910731, -0.0171995051, -0.0187311228, 0.00549397105, -0.00317668961, -0.0186517071, 0.00945632439, 0.0345351547, 0.00354541256, 0.0141022326, 0.0081289215, -0.0158380661, -0.0356696881, 0.0278867967, -8.6064887e-05, 0.00599600188, -0.0176079366, 0.00736878533, -0.00831044652, 0.0157132689, -0.00791903306, -0.00399922533, 0.000522593793, -0.0297247395, -0.00404177047, 0.0215220731, -0.0164280236, 0.00590523891, -1.48353356e-05, 0.0217376333, -0.00816863, 0.0017429248, 0.00178830605, 0.00492103258, -0.02070521, 0.0245285816, 0.0242789853, 0.00809488632, 0.00180390594, 0.0166095495, -0.00229742727, 0.0050061224, 0.0143291391, 0.0252093021, -0.0270926245, -0.0110163055, -0.0118218232, -0.00189466844, -0.00161670812, -0.0136484196, -0.00393682625, 0.0033411968, -0.00776587147, 0.0160536282, -0.00339225074, 0.0190487932, -0.00426584, 0.0127294492, 0.0209661517, -0.0137732187, 0.00414104201, -0.013659765, -4.36750488e-05, -0.00111325958, -0.0138299456, 0.0180050228, -0.000467285368, 0.0171427783, -0.0108291078, -0.0201152526, 0.00929181743, -0.000211483857, 0.00927479938, 0.0175625551, -0.0120600751, -0.00422613183, -0.0178461876, -5.60341368e-06, 0.0314492285, 0.00949603319, 0.0250277761, 0.0149985133, 0.00374395563, 0.0149417864, 0.0105965286, 0.00523870159, -0.012604651, -0.00203648489, 0.0189353395, 0.00953006931, 0.0231331084, -0.00311712665, 0.0142383771, -0.00593360234, -0.0052727377, -0.0173356496, 0.00809488632, 0.00737445801, -0.0226339139, 0.0258900207, 0.0155317429, -0.0181752034, -0.00740282144, -0.0040105707, 0.0046118726, 0.0256177336, -0.00858840719, 0.0154636716, -0.0200471804, -0.0142270317, -0.0282044653, -0.0160309374, -0.00576625904, -9.56375e-05, -0.0063647246, 0.00618319958, 0.014839679, 0.0351251103, -0.00486714253, -0.0141929956, 0.0019400497, 0.0162351523, -0.0170860514, 0.0249823947, -0.0153388726, -0.0139660891, -0.0060016741, 0.0146808438, -0.00519332, 0.020489648, 0.00691497279, -0.0049550687, -0.00818564836, 0.022815438, 0.0157699957, 0.00141603779, -0.0144879734, -0.00705111632, 0.00804383215, -0.0238705538, 0.00163088972, 0.00374962832, 0.0119920038, 0.0138072548, 3.34819888e-05, 0.00199252181, -0.0112091759, 0.014385866, -0.0247781798, -0.00916701835, 0.00317101693, 0.00993850082, 0.00787932519, 0.0132399881, -0.00123805809, 0.00627963478, -0.00364752044, 0.00744820246, -0.000289128395, -0.0240747686, -0.0326745212, -0.00633068848, -0.00646116, -0.0176646635, -0.0160876643, -0.00319654401, 0.0143177938, -0.0174944829, -0.0230083093, 0.00814594, 0.00205208478, -0.00742551219, -0.00133591145, 0.0330375731, -0.0111694681, 0.00363050238, 0.0126727223, 0.0166322384, -0.0232011788, -0.010063299, -0.00334970583, 0.00715889689, 0.00535499118, -0.0247554891, 0.00400206167, 0.00294978311, 0.00704544364, -0.0103128962, 0.0277279615, 0.00195564958, -0.0228608195, 0.00474234391, -0.0095584318, 0.00399638899, 0.0348074436, 0.00890607666, 0.00681853713, -0.0180390589, -0.0173583403, 0.0209207702, -0.0395270959, -0.00708515244, -0.0220779926, 0.00539469952, -0.0061378181, 0.0115155, 0.0329921916, 0.013296715, -0.00274556736, 0.00443034759, 0.00682988251, 0.0274556745, -0.0321526378, -0.0216355249, 0.00490117818, -0.00740282144, -0.0126727223, 0.00713620614, 0.00578044076, -0.00583149446, 0.00315116276, -0.00251157023, -0.0138072548, 0.00441332953, -0.0241428409, 0.0159628652, -0.000195529501, -0.00481041567, -0.000997679075, 0.0297701191, 0.00911029242, -0.0249370132, 0.00826506596, -0.0140114706, 0.0011026233, 0.0184134543, -0.0228381287, -0.0208753888, -0.00853735302, 0.00179539691, -0.00620021764, 0.00299232826, 0.0166322384, -0.0170633607, -0.00850899052, -0.00919538178, -0.00351988547, -0.0143745206, 0.0104490397, 0.0148169883, -0.00765241822, 0.00836717337, 0.00953006931, -0.0285675153, -0.00762405526, -0.00385740888, 0.0149417864, -0.0304508395, 0.000820408459, -0.0143064484, 0.0334686935, 0.00220099208, -0.0136257298, -0.0496471189, -0.000393895345, 0.0177327357, 0.00661999406, -0.0349662751, -0.00077431812, -0.00910462, 0.00781692564, 0.00220808294, 0.0211136416, -0.013387478, -0.00578895, -0.00347166788, -0.00955275912, -0.00370141072, 0.00538619049, 0.000338764163, 0.00708515244, -0.00434525777, -0.00375246466, -0.00278953067, 0.00540604489, 0.0197408572, -0.0154182902, -0.0216468703, -0.00949603319, -0.0111978306, -0.0112035032, -0.012604651, 0.00281789387, -0.00808354095, 0.0049352143, -0.00215986534, -0.0149871679, -0.00968323089, -0.00793037843, 0.00521033816, -0.0161443911, -0.0205463748, 0.00694333576, 0.011316957, -0.0149985133, -0.0091840364, 0.00187055964, 0.0103015509, 0.00157132687, -0.00325610675, 0.0102788601, -0.0186063256, 0.00371275609, -0.0249823947, 0.0181298219, 0.0325837582, -0.0177213904, 0.0141249234, 0.0336729102, 0.0153048364, -0.0314492285, -0.00501746777, -0.00665970286, 0.00693766307, 0.0125706149, -0.0196387488, 0.00489834184, -0.00269734976, -0.0200017989, 0.00646116, 0.00378650054, 0.0126727223, 0.0156451967, 0.0237344094, 0.0172335412, -0.0254135169, -0.0117764426, 0.00145787362, 0.0140341613, 0.0167570375, 0.0328787379, -0.00271720416, 0.00821968447, 0.0191055182, 0.00475085294, 0.00804950483, -0.0136030391, -0.0166776199, -0.00330999703, 0.0356469974, 0.000504512223, 0.0168251097, 0.0271606967, 0.000859408, 0.00333836046, 0.0193664618, 0.00643846905, -0.003437632, 0.0085827345, 0.00533797313, 0.0156111605, 0.0124458158, -0.0202627424, 0.0165187865, 0.00626828941, -0.000655192242, -0.0105681652, -0.0104887486, -0.0135916937, 0.000396022573, -0.0164960958, -0.0131946076, -0.00556204328, 0.010880162, -0.00178688788, -0.0044246749, 0.00464874506, 0.0164847504, 0.00496925041, 0.0144993188, -0.0280683227, 0.00283491192, 0.0214993823, 0.0105965286, 0.0147602614, -0.00406162441, -0.00495790504, -0.0320845656, 0.0216014888, -0.00450409204, -0.0110900505, -0.00472532585, 0.0046062, -0.00392264454, -0.0118785501, 0.0124231251, 0.00580313103, 0.00546844443, 0.00595629308, 0.0145106642, -0.0429533832, -0.00490968721, 0.000395313487, -0.000990588218, 0.014748916, -0.0106419101, -0.0184248, -0.0147262253, -0.0138526354, -0.021669561, -0.00677315611, 0.00646683248, 0.0237344094, 0.00457783649, -0.00325610675, 0.0165301319, 0.0118218232, -0.0222027916, 0.0143518299, -0.004986268, 0.0248462502, -0.0245739631, 0.0263211429, -0.00875858683, -0.00258247857, -0.00213292, 0.0207278989, -0.00103880581, -0.0285221338, 0.0145787364, 0.0233032871, 0.0108064171, -0.0124571612, -0.0043651117, -0.0115438635, -0.00383755448, 0.00777721684, 0.0211590212, 0.0150098586, -0.00747089321, 0.0032022167, -0.0051621208, -0.0307458173, 0.0164053328, -0.00259949639, -0.00476503465, -0.00324476161, 0.00122387637, -0.0229515824, -0.0102788601, -0.00355108525, -0.0125479242, 0.0247101076, 0.00768078165, -0.0075673284, 0.00807219557, -0.0223843157, 0.0107440185, -0.00417507766, -0.00689795474, -0.0254362077, -0.00567266, -0.00601301948, -0.0103979856, 0.00626828941, -0.00139476534, 0.00875858683, -0.00269876793, 0.00939392485, 0.00509972125, 0.00607541902, 0.000811899488, -0.00501179509, 0.0131492261, 0.042908, -0.00501179509, -0.00290156552, 0.000998388161, -0.0212497842, -0.0035964665, 0.0143745206, 0.00250731572, 0.00131534808, 0.031698823, 3.33933531e-05, -0.00161103543, 0.0144879734, 0.0304054581, -0.0143518299, 0.00401907973, 0.0214086194, -0.01053413, -0.00175710639, 0.00865647942, -0.0260261651, 0.0162464976, 0.0108064171, 0.00650086859, 0.0134328585, -0.000385031803, -0.0128542474, 0.0143177938, -0.0225318056, 0.0107326731, 0.00546844443, -0.0202400517, -0.0157359596, 0.00313698105, -0.00816295762, 0.0245739631, 0.0177894626, -0.017710045, 0.000840262743, -0.00547411712, 0.000658383127, -0.0162805337, -0.00954141375, -0.0243016761, -0.00804950483, -0.00592225697, -0.00993850082, -0.00182234205, 0.0118558593, 0.0213178564, -0.0217376333, -0.0121168019, -0.0069660265, -0.0234167408, 0.00468845339, 0.00665403, -0.0172902681, -0.00603571, 0.00730071357, 0.0297701191, 0.0365319289, 0.0180504043, -0.00870753359, -0.00201379438, -0.0208300073, 0.0123437084, -0.0187538136, 0.0258900207, 0.017017981, 0.0170860514, -0.0253454447, -0.0155430883, 0.0113396477, -0.0202400517, -0.0174491014, 0.00140611059, 0.00407580612, -0.021306511, 0.00703977095, -0.00372126489, 0.0438156277, -0.00243357127, 0.00164932595, 0.0170293245, -0.00427151285, 0.0120487297, -0.0154069448, -0.00386591791, 0.0247327983, -0.00219815574, 0.00535215484, 0.000327950664, -0.00491819624, 0.00414104201, -8.82807726e-05, 0.00351137668, -0.0169726, -0.0145106642, 0.0122642908, 0.00200103084, 0.029679358, 0.00454947352, -0.0172902681, 0.00069525541, 0.021998575, -0.0140341613, 5.64163784e-05, -0.00603571, 0.00448140129, 0.0126840677, -0.0194004979, -0.012661377, -0.0268203374, 0.0180277135, -0.0124231251, -0.00586553058, 0.000945206964, -0.0200585257, 0.00223219162, 0.00838419143, -0.00306607271, -0.00346032274, 0.00208612066, 0.0102561694, -0.00922941789, 0.00772616314, 1.49295101e-06, -0.0156678874, 0.0112318667, 0.00521884719, -0.0174717922, 0.0116856797, -0.0436341, -0.00836717337, 0.00420344109, -0.00400489802, -0.0144879734, -0.000923225423, 0.0155090522, -0.00987042859, -0.00404177047, 0.0275464375, 0.0119352769, 0.00412118761, 0.0150098586, -0.00265764119, 0.00358512113, 0.0324022323, -0.0189920664, 0.00522168353, 0.00993282814, 0.00308025442, 0.00966054, -0.0177440811, -0.0232805964, 0.0382791087, 0.0266388115, -0.0103582768, 0.00202513952, -0.00938257948, -0.0130471177, -0.030042408, 0.0114871366, 0.0075673284, -0.0217943601, -0.00796441454, -0.00152878184, 0.00603571, -0.0063250158, -0.002088957, -0.00236691744, -0.015021204, -0.0204329211, 0.0244832, -0.0245966539, 0.0182319302, 0.0088890586, -0.0021669562, -0.00856004376, 0.0246874169, 0.0175512098, -0.000174877467, -0.00220099208, -0.000785663433, 0.00905356556, -0.0119012408, 0.00722696912, 0.0178234987, -0.00336956, 0.00227899128, 0.00639876071, 0.0129790464, 0.00195706775, 0.00330148824, 0.00513092102, -0.00714187883, -0.0247554891, 0.00687526399, -0.0215561073, 0.0164166782, -0.0175739, -0.00900818408, 0.000726809551, 0.00934854336, -0.00304054585, 0.00173441577, -0.00528691895, -0.0115552088, -0.0165755134, -0.00094591605, 0.0100406082, 0.0185495988, 0.021669561, -0.00966621283, 0.0033411968, 0.0136370743, -0.00414104201, 1.60762302e-05, 0.00782259833, 0.000588183932, -0.0111354319, -0.000414104172, 0.00975697488, 0.00882098638, -0.0144539382, -0.0296112858, 0.0191622451, -0.00366737461, 0.0127294492, -0.0138980169, 0.00434525777, -0.0033894144, -0.00618887227, -0.00771481777, -0.0278414153, -0.0123323631, 0.0159515198, -0.00269167707, 0.0125252334, 0.0047083078, 0.0200585257, 0.0143631753, 0.00577476807, 0.0299289543, -0.0164620597, -0.00563578773, -0.0197408572, -0.00669373898, 0.0203535035, -0.00826506596, 0.00679584686, -0.00149474596, -0.00241229869, -0.014295103, 0.00754463766, -0.008355828, 0.00967755821, -0.00592225697, -0.014113578, -0.0173356496, -0.0103412597, -0.00730071357, 0.00997820869, 0.00424882257, 0.00912731, 0.00766943628, 0.0215220731, -0.000449912855, 0.00619454496, -0.00789067056, 0.00969457626, -0.0356243066, 0.0177327357, -0.00146496447, 0.0194118433, -0.0117764426, 0.0271153152, -0.0106816189, 0.0304054581, 0.0162691884, -0.0146808438, 0.0271153152, 0.00591658428, 0.00340643246, -0.00757867377, -0.00675613806, 0.00408147881, 9.83852e-05, -0.0158153754, -0.00888338592, -0.0227360222, 0.0110106329, -0.0300877895, -0.022123374, 0.0207392443, 0.00603571, -0.00926912669, 0.00774885342, 0.00960381329, 0.00093740708, 0.016711656, -0.00685824594, -0.00563011505, 0.0537768155, 0.00544859, 0.017346995, -0.00279236701, -0.011061687, 0.0176760089, -0.00496074138, -0.0149985133, 0.0321072564, -0.0290894, 0.00411267858, -0.016711656, 0.0178461876, 0.0126500316, 0.0114757912, -0.00869051553, -5.89868e-05, 0.0195479859, -0.0120146936, 0.00696035381, 0.0168818366, -0.00447856495, -0.0219418481, -0.00941661559, 0.00367588364, -0.0320845656, -0.0260261651, 0.028862495, 0.00808921363, 0.000750209263, 0.0137391826, -0.0133307511, -0.0243016761, -0.00827073865, 0.0226225685, -0.0123096723, 0.00529542798, -0.0105568208, 0.0127067585, -0.0143064484, 0.0132059529, -0.00531811872, 0.0278187245, -0.00265055033, -0.00217121071, -0.0134668946, 0.0161443911, -0.000710500695, -0.00182517839, -0.00356243062, -0.00753329275, -0.00824237522, -0.00103596959, 0.0165868588, 0.0020988842, -0.00214142911, 0.00796441454]
|
04 Dec, 2020
|
Python calendar module : HTMLCalendar formatyearpage() method
04 Dec, 2020
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions.
class calendar.HTMLCalendar(firstweekday=0) can be used to generate generate HTML calendars. formatyearpage() method is one of the methods of HTMLCalendar instance.
formatyearpage() method in Python is used to get year’s calendar as a complete HTML page.
Syntax: formatyearpage(year, width=3, css=’calendar.css’, encoding=None)
Parameter:
year: year of the calendar
width:[Default value is 3] Specifies the width date column
css: [Optional] Name for the CSS to be used.
encoding: [Optional] Specifies the encoding to be used for output
Returns: Return an HTML page for an entire year.
Depends on the first weekday as specified in the constructor or set by the setfirstweekday() method.
Code #1:
# Python program to demonstrate working of formatyearpage() method
# importing calendar module
import calendar
text_cal = calendar.HTMLCalendar(firstweekday = 0)
year = 2018
# Default value of width is 3
# printing formatyearpage
print(text_cal.formatyearpage(year))
Output:
b'
<?xml version="1.0" encoding="utf-8"?>\n
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n
<html>\n
<head>\n
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n
<link rel="stylesheet" type="text/css" href="calendar.css" />\n
<title>Calendar for 2018</title>\n
</head>\n
<body>\n
<table border="0" cellpadding="0" cellspacing="0" class="year">\n
<tr>
<th colspan="3" class="year">2018</th>
</tr>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">January</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="mon">1</td>
<td class="tue">2</td>
<td class="wed">3</td>
<td class="thu">4</td>
<td class="fri">5</td>
<td class="sat">6</td>
<td class="sun">7</td>
</tr>\n
<tr>
<td class="mon">8</td>
<td class="tue">9</td>
<td class="wed">10</td>
<td class="thu">11</td>
<td class="fri">12</td>
<td class="sat">13</td>
<td class="sun">14</td>
</tr>\n
<tr>
<td class="mon">15</td>
<td class="tue">16</td>
<td class="wed">17</td>
<td class="thu">18</td>
<td class="fri">19</td>
<td class="sat">20</td>
<td class="sun">21</td>
</tr>\n
<tr>
<td class="mon">22</td>
<td class="tue">23</td>
<td class="wed">24</td>
<td class="thu">25</td>
<td class="fri">26</td>
<td class="sat">27</td>
<td class="sun">28</td>
</tr>\n
<tr>
<td class="mon">29</td>
<td class="tue">30</td>
<td class="wed">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">February</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="thu">1</td>
<td class="fri">2</td>
<td class="sat">3</td>
<td class="sun">4</td>
</tr>\n
<tr>
<td class="mon">5</td>
<td class="tue">6</td>
<td class="wed">7</td>
<td class="thu">8</td>
<td class="fri">9</td>
<td class="sat">10</td>
<td class="sun">11</td>
</tr>\n
<tr>
<td class="mon">12</td>
<td class="tue">13</td>
<td class="wed">14</td>
<td class="thu">15</td>
<td class="fri">16</td>
<td class="sat">17</td>
<td class="sun">18</td>
</tr>\n
<tr>
<td class="mon">19</td>
<td class="tue">20</td>
<td class="wed">21</td>
<td class="thu">22</td>
<td class="fri">23</td>
<td class="sat">24</td>
<td class="sun">25</td>
</tr>\n
<tr>
<td class="mon">26</td>
<td class="tue">27</td>
<td class="wed">28</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">March</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="thu">1</td>
<td class="fri">2</td>
<td class="sat">3</td>
<td class="sun">4</td>
</tr>\n
<tr>
<td class="mon">5</td>
<td class="tue">6</td>
<td class="wed">7</td>
<td class="thu">8</td>
<td class="fri">9</td>
<td class="sat">10</td>
<td class="sun">11</td>
</tr>\n
<tr>
<td class="mon">12</td>
<td class="tue">13</td>
<td class="wed">14</td>
<td class="thu">15</td>
<td class="fri">16</td>
<td class="sat">17</td>
<td class="sun">18</td>
</tr>\n
<tr>
<td class="mon">19</td>
<td class="tue">20</td>
<td class="wed">21</td>
<td class="thu">22</td>
<td class="fri">23</td>
<td class="sat">24</td>
<td class="sun">25</td>
</tr>\n
<tr>
<td class="mon">26</td>
<td class="tue">27</td>
<td class="wed">28</td>
<td class="thu">29</td>
<td class="fri">30</td>
<td class="sat">31</td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
</tr>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">April</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="sun">1</td>
</tr>\n
<tr>
<td class="mon">2</td>
<td class="tue">3</td>
<td class="wed">4</td>
<td class="thu">5</td>
<td class="fri">6</td>
<td class="sat">7</td>
<td class="sun">8</td>
</tr>\n
<tr>
<td class="mon">9</td>
<td class="tue">10</td>
<td class="wed">11</td>
<td class="thu">12</td>
<td class="fri">13</td>
<td class="sat">14</td>
<td class="sun">15</td>
</tr>\n
<tr>
<td class="mon">16</td>
<td class="tue">17</td>
<td class="wed">18</td>
<td class="thu">19</td>
<td class="fri">20</td>
<td class="sat">21</td>
<td class="sun">22</td>
</tr>\n
<tr>
<td class="mon">23</td>
<td class="tue">24</td>
<td class="wed">25</td>
<td class="thu">26</td>
<td class="fri">27</td>
<td class="sat">28</td>
<td class="sun">29</td>
</tr>\n
<tr>
<td class="mon">30</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">May</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="tue">1</td>
<td class="wed">2</td>
<td class="thu">3</td>
<td class="fri">4</td>
<td class="sat">5</td>
<td class="sun">6</td>
</tr>\n
<tr>
<td class="mon">7</td>
<td class="tue">8</td>
<td class="wed">9</td>
<td class="thu">10</td>
<td class="fri">11</td>
<td class="sat">12</td>
<td class="sun">13</td>
</tr>\n
<tr>
<td class="mon">14</td>
<td class="tue">15</td>
<td class="wed">16</td>
<td class="thu">17</td>
<td class="fri">18</td>
<td class="sat">19</td>
<td class="sun">20</td>
</tr>\n
<tr>
<td class="mon">21</td>
<td class="tue">22</td>
<td class="wed">23</td>
<td class="thu">24</td>
<td class="fri">25</td>
<td class="sat">26</td>
<td class="sun">27</td>
</tr>\n
<tr>
<td class="mon">28</td>
<td class="tue">29</td>
<td class="wed">30</td>
<td class="thu">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">June</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="fri">1</td>
<td class="sat">2</td>
<td class="sun">3</td>
</tr>\n
<tr>
<td class="mon">4</td>
<td class="tue">5</td>
<td class="wed">6</td>
<td class="thu">7</td>
<td class="fri">8</td>
<td class="sat">9</td>
<td class="sun">10</td>
</tr>\n
<tr>
<td class="mon">11</td>
<td class="tue">12</td>
<td class="wed">13</td>
<td class="thu">14</td>
<td class="fri">15</td>
<td class="sat">16</td>
<td class="sun">17</td>
</tr>\n
<tr>
<td class="mon">18</td>
<td class="tue">19</td>
<td class="wed">20</td>
<td class="thu">21</td>
<td class="fri">22</td>
<td class="sat">23</td>
<td class="sun">24</td>
</tr>\n
<tr>
<td class="mon">25</td>
<td class="tue">26</td>
<td class="wed">27</td>
<td class="thu">28</td>
<td class="fri">29</td>
<td class="sat">30</td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
</tr>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">July</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="sun">1</td>
</tr>\n
<tr>
<td class="mon">2</td>
<td class="tue">3</td>
<td class="wed">4</td>
<td class="thu">5</td>
<td class="fri">6</td>
<td class="sat">7</td>
<td class="sun">8</td>
</tr>\n
<tr>
<td class="mon">9</td>
<td class="tue">10</td>
<td class="wed">11</td>
<td class="thu">12</td>
<td class="fri">13</td>
<td class="sat">14</td>
<td class="sun">15</td>
</tr>\n
<tr>
<td class="mon">16</td>
<td class="tue">17</td>
<td class="wed">18</td>
<td class="thu">19</td>
<td class="fri">20</td>
<td class="sat">21</td>
<td class="sun">22</td>
</tr>\n
<tr>
<td class="mon">23</td>
<td class="tue">24</td>
<td class="wed">25</td>
<td class="thu">26</td>
<td class="fri">27</td>
<td class="sat">28</td>
<td class="sun">29</td>
</tr>\n
<tr>
<td class="mon">30</td>
<td class="tue">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">August</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="wed">1</td>
<td class="thu">2</td>
<td class="fri">3</td>
<td class="sat">4</td>
<td class="sun">5</td>
</tr>\n
<tr>
<td class="mon">6</td>
<td class="tue">7</td>
<td class="wed">8</td>
<td class="thu">9</td>
<td class="fri">10</td>
<td class="sat">11</td>
<td class="sun">12</td>
</tr>\n
<tr>
<td class="mon">13</td>
<td class="tue">14</td>
<td class="wed">15</td>
<td class="thu">16</td>
<td class="fri">17</td>
<td class="sat">18</td>
<td class="sun">19</td>
</tr>\n
<tr>
<td class="mon">20</td>
<td class="tue">21</td>
<td class="wed">22</td>
<td class="thu">23</td>
<td class="fri">24</td>
<td class="sat">25</td>
<td class="sun">26</td>
</tr>\n
<tr>
<td class="mon">27</td>
<td class="tue">28</td>
<td class="wed">29</td>
<td class="thu">30</td>
<td class="fri">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">September</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="sat">1</td>
<td class="sun">2</td>
</tr>\n
<tr>
<td class="mon">3</td>
<td class="tue">4</td>
<td class="wed">5</td>
<td class="thu">6</td>
<td class="fri">7</td>
<td class="sat">8</td>
<td class="sun">9</td>
</tr>\n
<tr>
<td class="mon">10</td>
<td class="tue">11</td>
<td class="wed">12</td>
<td class="thu">13</td>
<td class="fri">14</td>
<td class="sat">15</td>
<td class="sun">16</td>
</tr>\n
<tr>
<td class="mon">17</td>
<td class="tue">18</td>
<td class="wed">19</td>
<td class="thu">20</td>
<td class="fri">21</td>
<td class="sat">22</td>
<td class="sun">23</td>
</tr>\n
<tr>
<td class="mon">24</td>
<td class="tue">25</td>
<td class="wed">26</td>
<td class="thu">27</td>
<td class="fri">28</td>
<td class="sat">29</td>
<td class="sun">30</td>
</tr>\n
</table>\n
</td>
</tr>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">October</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="mon">1</td>
<td class="tue">2</td>
<td class="wed">3</td>
<td class="thu">4</td>
<td class="fri">5</td>
<td class="sat">6</td>
<td class="sun">7</td>
</tr>\n
<tr>
<td class="mon">8</td>
<td class="tue">9</td>
<td class="wed">10</td>
<td class="thu">11</td>
<td class="fri">12</td>
<td class="sat">13</td>
<td class="sun">14</td>
</tr>\n
<tr>
<td class="mon">15</td>
<td class="tue">16</td>
<td class="wed">17</td>
<td class="thu">18</td>
<td class="fri">19</td>
<td class="sat">20</td>
<td class="sun">21</td>
</tr>\n
<tr>
<td class="mon">22</td>
<td class="tue">23</td>
<td class="wed">24</td>
<td class="thu">25</td>
<td class="fri">26</td>
<td class="sat">27</td>
<td class="sun">28</td>
</tr>\n
<tr>
<td class="mon">29</td>
<td class="tue">30</td>
<td class="wed">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">November</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="thu">1</td>
<td class="fri">2</td>
<td class="sat">3</td>
<td class="sun">4</td>
</tr>\n
<tr>
<td class="mon">5</td>
<td class="tue">6</td>
<td class="wed">7</td>
<td class="thu">8</td>
<td class="fri">9</td>
<td class="sat">10</td>
<td class="sun">11</td>
</tr>\n
<tr>
<td class="mon">12</td>
<td class="tue">13</td>
<td class="wed">14</td>
<td class="thu">15</td>
<td class="fri">16</td>
<td class="sat">17</td>
<td class="sun">18</td>
</tr>\n
<tr>
<td class="mon">19</td>
<td class="tue">20</td>
<td class="wed">21</td>
<td class="thu">22</td>
<td class="fri">23</td>
<td class="sat">24</td>
<td class="sun">25</td>
</tr>\n
<tr>
<td class="mon">26</td>
<td class="tue">27</td>
<td class="wed">28</td>
<td class="thu">29</td>
<td class="fri">30</td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">December</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="sat">1</td>
<td class="sun">2</td>
</tr>\n
<tr>
<td class="mon">3</td>
<td class="tue">4</td>
<td class="wed">5</td>
<td class="thu">6</td>
<td class="fri">7</td>
<td class="sat">8</td>
<td class="sun">9</td>
</tr>\n
<tr>
<td class="mon">10</td>
<td class="tue">11</td>
<td class="wed">12</td>
<td class="thu">13</td>
<td class="fri">14</td>
<td class="sat">15</td>
<td class="sun">16</td>
</tr>\n
<tr>
<td class="mon">17</td>
<td class="tue">18</td>
<td class="wed">19</td>
<td class="thu">20</td>
<td class="fri">21</td>
<td class="sat">22</td>
<td class="sun">23</td>
</tr>\n
<tr>
<td class="mon">24</td>
<td class="tue">25</td>
<td class="wed">26</td>
<td class="thu">27</td>
<td class="fri">28</td>
<td class="sat">29</td>
<td class="sun">30</td>
</tr>\n
<tr>
<td class="mon">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
</tr>
</table>
</body>\n
</html>\n'
Note that the earliest year for which a calendar can be generated is platform-dependent.
Code #2: width is given 5
# Python program to demonstrate working of formatyearpage() method
# importing calendar module
import calendar
text_cal = calendar.HTMLCalendar(firstweekday = 0)
# default value of width is 0
# printing formatyearpage
print(text_cal.formatyearpage(2018, 5, encoding = None))
Output:
b'
<?xml version="1.0" encoding="utf-8"?>\n
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n
<html>\n
<head>\n
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n
<link rel="stylesheet" type="text/css" href="calendar.css" />\n
<title>Calendar for 2018</title>\n
</head>\n
<body>\n
<table border="0" cellpadding="0" cellspacing="0" class="year">\n
<tr>
<th colspan="5" class="year">2018</th>
</tr>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">January</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="mon">1</td>
<td class="tue">2</td>
<td class="wed">3</td>
<td class="thu">4</td>
<td class="fri">5</td>
<td class="sat">6</td>
<td class="sun">7</td>
</tr>\n
<tr>
<td class="mon">8</td>
<td class="tue">9</td>
<td class="wed">10</td>
<td class="thu">11</td>
<td class="fri">12</td>
<td class="sat">13</td>
<td class="sun">14</td>
</tr>\n
<tr>
<td class="mon">15</td>
<td class="tue">16</td>
<td class="wed">17</td>
<td class="thu">18</td>
<td class="fri">19</td>
<td class="sat">20</td>
<td class="sun">21</td>
</tr>\n
<tr>
<td class="mon">22</td>
<td class="tue">23</td>
<td class="wed">24</td>
<td class="thu">25</td>
<td class="fri">26</td>
<td class="sat">27</td>
<td class="sun">28</td>
</tr>\n
<tr>
<td class="mon">29</td>
<td class="tue">30</td>
<td class="wed">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">February</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="thu">1</td>
<td class="fri">2</td>
<td class="sat">3</td>
<td class="sun">4</td>
</tr>\n
<tr>
<td class="mon">5</td>
<td class="tue">6</td>
<td class="wed">7</td>
<td class="thu">8</td>
<td class="fri">9</td>
<td class="sat">10</td>
<td class="sun">11</td>
</tr>\n
<tr>
<td class="mon">12</td>
<td class="tue">13</td>
<td class="wed">14</td>
<td class="thu">15</td>
<td class="fri">16</td>
<td class="sat">17</td>
<td class="sun">18</td>
</tr>\n
<tr>
<td class="mon">19</td>
<td class="tue">20</td>
<td class="wed">21</td>
<td class="thu">22</td>
<td class="fri">23</td>
<td class="sat">24</td>
<td class="sun">25</td>
</tr>\n
<tr>
<td class="mon">26</td>
<td class="tue">27</td>
<td class="wed">28</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">March</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="thu">1</td>
<td class="fri">2</td>
<td class="sat">3</td>
<td class="sun">4</td>
</tr>\n
<tr>
<td class="mon">5</td>
<td class="tue">6</td>
<td class="wed">7</td>
<td class="thu">8</td>
<td class="fri">9</td>
<td class="sat">10</td>
<td class="sun">11</td>
</tr>\n
<tr>
<td class="mon">12</td>
<td class="tue">13</td>
<td class="wed">14</td>
<td class="thu">15</td>
<td class="fri">16</td>
<td class="sat">17</td>
<td class="sun">18</td>
</tr>\n
<tr>
<td class="mon">19</td>
<td class="tue">20</td>
<td class="wed">21</td>
<td class="thu">22</td>
<td class="fri">23</td>
<td class="sat">24</td>
<td class="sun">25</td>
</tr>\n
<tr>
<td class="mon">26</td>
<td class="tue">27</td>
<td class="wed">28</td>
<td class="thu">29</td>
<td class="fri">30</td>
<td class="sat">31</td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">April</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="sun">1</td>
</tr>\n
<tr>
<td class="mon">2</td>
<td class="tue">3</td>
<td class="wed">4</td>
<td class="thu">5</td>
<td class="fri">6</td>
<td class="sat">7</td>
<td class="sun">8</td>
</tr>\n
<tr>
<td class="mon">9</td>
<td class="tue">10</td>
<td class="wed">11</td>
<td class="thu">12</td>
<td class="fri">13</td>
<td class="sat">14</td>
<td class="sun">15</td>
</tr>\n
<tr>
<td class="mon">16</td>
<td class="tue">17</td>
<td class="wed">18</td>
<td class="thu">19</td>
<td class="fri">20</td>
<td class="sat">21</td>
<td class="sun">22</td>
</tr>\n
<tr>
<td class="mon">23</td>
<td class="tue">24</td>
<td class="wed">25</td>
<td class="thu">26</td>
<td class="fri">27</td>
<td class="sat">28</td>
<td class="sun">29</td>
</tr>\n
<tr>
<td class="mon">30</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">May</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="tue">1</td>
<td class="wed">2</td>
<td class="thu">3</td>
<td class="fri">4</td>
<td class="sat">5</td>
<td class="sun">6</td>
</tr>\n
<tr>
<td class="mon">7</td>
<td class="tue">8</td>
<td class="wed">9</td>
<td class="thu">10</td>
<td class="fri">11</td>
<td class="sat">12</td>
<td class="sun">13</td>
</tr>\n
<tr>
<td class="mon">14</td>
<td class="tue">15</td>
<td class="wed">16</td>
<td class="thu">17</td>
<td class="fri">18</td>
<td class="sat">19</td>
<td class="sun">20</td>
</tr>\n
<tr>
<td class="mon">21</td>
<td class="tue">22</td>
<td class="wed">23</td>
<td class="thu">24</td>
<td class="fri">25</td>
<td class="sat">26</td>
<td class="sun">27</td>
</tr>\n
<tr>
<td class="mon">28</td>
<td class="tue">29</td>
<td class="wed">30</td>
<td class="thu">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
</tr>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">June</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="fri">1</td>
<td class="sat">2</td>
<td class="sun">3</td>
</tr>\n
<tr>
<td class="mon">4</td>
<td class="tue">5</td>
<td class="wed">6</td>
<td class="thu">7</td>
<td class="fri">8</td>
<td class="sat">9</td>
<td class="sun">10</td>
</tr>\n
<tr>
<td class="mon">11</td>
<td class="tue">12</td>
<td class="wed">13</td>
<td class="thu">14</td>
<td class="fri">15</td>
<td class="sat">16</td>
<td class="sun">17</td>
</tr>\n
<tr>
<td class="mon">18</td>
<td class="tue">19</td>
<td class="wed">20</td>
<td class="thu">21</td>
<td class="fri">22</td>
<td class="sat">23</td>
<td class="sun">24</td>
</tr>\n
<tr>
<td class="mon">25</td>
<td class="tue">26</td>
<td class="wed">27</td>
<td class="thu">28</td>
<td class="fri">29</td>
<td class="sat">30</td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">July</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="sun">1</td>
</tr>\n
<tr>
<td class="mon">2</td>
<td class="tue">3</td>
<td class="wed">4</td>
<td class="thu">5</td>
<td class="fri">6</td>
<td class="sat">7</td>
<td class="sun">8</td>
</tr>\n
<tr>
<td class="mon">9</td>
<td class="tue">10</td>
<td class="wed">11</td>
<td class="thu">12</td>
<td class="fri">13</td>
<td class="sat">14</td>
<td class="sun">15</td>
</tr>\n
<tr>
<td class="mon">16</td>
<td class="tue">17</td>
<td class="wed">18</td>
<td class="thu">19</td>
<td class="fri">20</td>
<td class="sat">21</td>
<td class="sun">22</td>
</tr>\n
<tr>
<td class="mon">23</td>
<td class="tue">24</td>
<td class="wed">25</td>
<td class="thu">26</td>
<td class="fri">27</td>
<td class="sat">28</td>
<td class="sun">29</td>
</tr>\n
<tr>
<td class="mon">30</td>
<td class="tue">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">August</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="wed">1</td>
<td class="thu">2</td>
<td class="fri">3</td>
<td class="sat">4</td>
<td class="sun">5</td>
</tr>\n
<tr>
<td class="mon">6</td>
<td class="tue">7</td>
<td class="wed">8</td>
<td class="thu">9</td>
<td class="fri">10</td>
<td class="sat">11</td>
<td class="sun">12</td>
</tr>\n
<tr>
<td class="mon">13</td>
<td class="tue">14</td>
<td class="wed">15</td>
<td class="thu">16</td>
<td class="fri">17</td>
<td class="sat">18</td>
<td class="sun">19</td>
</tr>\n
<tr>
<td class="mon">20</td>
<td class="tue">21</td>
<td class="wed">22</td>
<td class="thu">23</td>
<td class="fri">24</td>
<td class="sat">25</td>
<td class="sun">26</td>
</tr>\n
<tr>
<td class="mon">27</td>
<td class="tue">28</td>
<td class="wed">29</td>
<td class="thu">30</td>
<td class="fri">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">September</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="sat">1</td>
<td class="sun">2</td>
</tr>\n
<tr>
<td class="mon">3</td>
<td class="tue">4</td>
<td class="wed">5</td>
<td class="thu">6</td>
<td class="fri">7</td>
<td class="sat">8</td>
<td class="sun">9</td>
</tr>\n
<tr>
<td class="mon">10</td>
<td class="tue">11</td>
<td class="wed">12</td>
<td class="thu">13</td>
<td class="fri">14</td>
<td class="sat">15</td>
<td class="sun">16</td>
</tr>\n
<tr>
<td class="mon">17</td>
<td class="tue">18</td>
<td class="wed">19</td>
<td class="thu">20</td>
<td class="fri">21</td>
<td class="sat">22</td>
<td class="sun">23</td>
</tr>\n
<tr>
<td class="mon">24</td>
<td class="tue">25</td>
<td class="wed">26</td>
<td class="thu">27</td>
<td class="fri">28</td>
<td class="sat">29</td>
<td class="sun">30</td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">October</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="mon">1</td>
<td class="tue">2</td>
<td class="wed">3</td>
<td class="thu">4</td>
<td class="fri">5</td>
<td class="sat">6</td>
<td class="sun">7</td>
</tr>\n
<tr>
<td class="mon">8</td>
<td class="tue">9</td>
<td class="wed">10</td>
<td class="thu">11</td>
<td class="fri">12</td>
<td class="sat">13</td>
<td class="sun">14</td>
</tr>\n
<tr>
<td class="mon">15</td>
<td class="tue">16</td>
<td class="wed">17</td>
<td class="thu">18</td>
<td class="fri">19</td>
<td class="sat">20</td>
<td class="sun">21</td>
</tr>\n
<tr>
<td class="mon">22</td>
<td class="tue">23</td>
<td class="wed">24</td>
<td class="thu">25</td>
<td class="fri">26</td>
<td class="sat">27</td>
<td class="sun">28</td>
</tr>\n
<tr>
<td class="mon">29</td>
<td class="tue">30</td>
<td class="wed">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
</tr>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">November</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="thu">1</td>
<td class="fri">2</td>
<td class="sat">3</td>
<td class="sun">4</td>
</tr>\n
<tr>
<td class="mon">5</td>
<td class="tue">6</td>
<td class="wed">7</td>
<td class="thu">8</td>
<td class="fri">9</td>
<td class="sat">10</td>
<td class="sun">11</td>
</tr>\n
<tr>
<td class="mon">12</td>
<td class="tue">13</td>
<td class="wed">14</td>
<td class="thu">15</td>
<td class="fri">16</td>
<td class="sat">17</td>
<td class="sun">18</td>
</tr>\n
<tr>
<td class="mon">19</td>
<td class="tue">20</td>
<td class="wed">21</td>
<td class="thu">22</td>
<td class="fri">23</td>
<td class="sat">24</td>
<td class="sun">25</td>
</tr>\n
<tr>
<td class="mon">26</td>
<td class="tue">27</td>
<td class="wed">28</td>
<td class="thu">29</td>
<td class="fri">30</td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="month">\n
<tr>
<th colspan="7" class="month">December</th>
</tr>\n
<tr>
<th class="mon">Mon</th>
<th class="tue">Tue</th>
<th class="wed">Wed</th>
<th class="thu">Thu</th>
<th class="fri">Fri</th>
<th class="sat">Sat</th>
<th class="sun">Sun</th>
</tr>\n
<tr>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="sat">1</td>
<td class="sun">2</td>
</tr>\n
<tr>
<td class="mon">3</td>
<td class="tue">4</td>
<td class="wed">5</td>
<td class="thu">6</td>
<td class="fri">7</td>
<td class="sat">8</td>
<td class="sun">9</td>
</tr>\n
<tr>
<td class="mon">10</td>
<td class="tue">11</td>
<td class="wed">12</td>
<td class="thu">13</td>
<td class="fri">14</td>
<td class="sat">15</td>
<td class="sun">16</td>
</tr>\n
<tr>
<td class="mon">17</td>
<td class="tue">18</td>
<td class="wed">19</td>
<td class="thu">20</td>
<td class="fri">21</td>
<td class="sat">22</td>
<td class="sun">23</td>
</tr>\n
<tr>
<td class="mon">24</td>
<td class="tue">25</td>
<td class="wed">26</td>
<td class="thu">27</td>
<td class="fri">28</td>
<td class="sat">29</td>
<td class="sun">30</td>
</tr>\n
<tr>
<td class="mon">31</td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
<td class="noday"> </td>
</tr>\n
</table>\n
</td>
</tr>
</table>
</body>\n
</html>\n'
HTMLCalendar has few attributes you can override to customize the CSS classes used by the calendar. One of the attribute is cssclasses.
cssclasses is the list of CSS classes used for each weekday. Default list is cssclasses = ["mon", "tue", "wed", "thu", "fri", "sat", "sun"]. Style can be modified for each day, for ex – ["mon text-bold", "tue", "wed", "thu", "fri", "sat", "sun red"]
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : HTMLCalendar formatyearpage() method
|
https://www.geeksforgeeks.org/python-calendar-module-htmlcalendar-formatyearpage-method/?ref=lbp
|
Pandas
|
Python calendar module : HTMLCalendar formatyearpage() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python calendar module : HTMLCalendar formatyearpage() method, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
| null |
13 May, 2022
|
Python calendar module : HTMLCalendar formatyear() method
13 May, 2022
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions. class calendar.HTMLCalendar(firstweekday=0) can be used to generate HTML calendars. formatyear() method is one of the methods of HTMLCalendar instance. formatyear() method in Python is used to get year’s calendar as an HTML table.
Syntax: formatyear(year, width=3)
Parameter: year: year of the calendar
width:[Default value is 3] Specifies the width date column
Returns: Return an HTML table for an entire year.
Depends on the first weekday as specified in the constructor or set by the setfirstweekday() method.
Code #1:
Python3
# Python program to demonstrate working of formatyear() method
# importing calendar module
import calendar
text_cal = calendar.HTMLCalendar(firstweekday = 0)
year = 2018
# Default value of width is 3
# printing formatyear
print(text_cal.formatyear(year))
Output:
HTML
<table border="0" cellpadding="0" cellspacing="0" class="year">
<tr><th colspan="3" class="year">2018</th></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">January</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="mon">1</td><td class="tue">2</td><td class="wed">3</td><td class="thu">4</td><td class="fri">5</td><td class="sat">6</td><td class="sun">7</td></tr>
<tr><td class="mon">8</td><td class="tue">9</td><td class="wed">10</td><td class="thu">11</td><td class="fri">12</td><td class="sat">13</td><td class="sun">14</td></tr>
<tr><td class="mon">15</td><td class="tue">16</td><td class="wed">17</td><td class="thu">18</td><td class="fri">19</td><td class="sat">20</td><td class="sun">21</td></tr>
<tr><td class="mon">22</td><td class="tue">23</td><td class="wed">24</td><td class="thu">25</td><td class="fri">26</td><td class="sat">27</td><td class="sun">28</td></tr>
<tr><td class="mon">29</td><td class="tue">30</td><td class="wed">31</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">February</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="thu">1</td><td class="fri">2</td><td class="sat">3</td><td class="sun">4</td></tr>
<tr><td class="mon">5</td><td class="tue">6</td><td class="wed">7</td><td class="thu">8</td><td class="fri">9</td><td class="sat">10</td><td class="sun">11</td></tr>
<tr><td class="mon">12</td><td class="tue">13</td><td class="wed">14</td><td class="thu">15</td><td class="fri">16</td><td class="sat">17</td><td class="sun">18</td></tr>
<tr><td class="mon">19</td><td class="tue">20</td><td class="wed">21</td><td class="thu">22</td><td class="fri">23</td><td class="sat">24</td><td class="sun">25</td></tr>
<tr><td class="mon">26</td><td class="tue">27</td><td class="wed">28</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">March</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="thu">1</td><td class="fri">2</td><td class="sat">3</td><td class="sun">4</td></tr>
<tr><td class="mon">5</td><td class="tue">6</td><td class="wed">7</td><td class="thu">8</td><td class="fri">9</td><td class="sat">10</td><td class="sun">11</td></tr>
<tr><td class="mon">12</td><td class="tue">13</td><td class="wed">14</td><td class="thu">15</td><td class="fri">16</td><td class="sat">17</td><td class="sun">18</td></tr>
<tr><td class="mon">19</td><td class="tue">20</td><td class="wed">21</td><td class="thu">22</td><td class="fri">23</td><td class="sat">24</td><td class="sun">25</td></tr>
<tr><td class="mon">26</td><td class="tue">27</td><td class="wed">28</td><td class="thu">29</td><td class="fri">30</td><td class="sat">31</td><td class="noday"> </td></tr>
</table>
</td></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">April</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="sun">1</td></tr>
<tr><td class="mon">2</td><td class="tue">3</td><td class="wed">4</td><td class="thu">5</td><td class="fri">6</td><td class="sat">7</td><td class="sun">8</td></tr>
<tr><td class="mon">9</td><td class="tue">10</td><td class="wed">11</td><td class="thu">12</td><td class="fri">13</td><td class="sat">14</td><td class="sun">15</td></tr>
<tr><td class="mon">16</td><td class="tue">17</td><td class="wed">18</td><td class="thu">19</td><td class="fri">20</td><td class="sat">21</td><td class="sun">22</td></tr>
<tr><td class="mon">23</td><td class="tue">24</td><td class="wed">25</td><td class="thu">26</td><td class="fri">27</td><td class="sat">28</td><td class="sun">29</td></tr>
<tr><td class="mon">30</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">May</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="tue">1</td><td class="wed">2</td><td class="thu">3</td><td class="fri">4</td><td class="sat">5</td><td class="sun">6</td></tr>
<tr><td class="mon">7</td><td class="tue">8</td><td class="wed">9</td><td class="thu">10</td><td class="fri">11</td><td class="sat">12</td><td class="sun">13</td></tr>
<tr><td class="mon">14</td><td class="tue">15</td><td class="wed">16</td><td class="thu">17</td><td class="fri">18</td><td class="sat">19</td><td class="sun">20</td></tr>
<tr><td class="mon">21</td><td class="tue">22</td><td class="wed">23</td><td class="thu">24</td><td class="fri">25</td><td class="sat">26</td><td class="sun">27</td></tr>
<tr><td class="mon">28</td><td class="tue">29</td><td class="wed">30</td><td class="thu">31</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">June</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="fri">1</td><td class="sat">2</td><td class="sun">3</td></tr>
<tr><td class="mon">4</td><td class="tue">5</td><td class="wed">6</td><td class="thu">7</td><td class="fri">8</td><td class="sat">9</td><td class="sun">10</td></tr>
<tr><td class="mon">11</td><td class="tue">12</td><td class="wed">13</td><td class="thu">14</td><td class="fri">15</td><td class="sat">16</td><td class="sun">17</td></tr>
<tr><td class="mon">18</td><td class="tue">19</td><td class="wed">20</td><td class="thu">21</td><td class="fri">22</td><td class="sat">23</td><td class="sun">24</td></tr>
<tr><td class="mon">25</td><td class="tue">26</td><td class="wed">27</td><td class="thu">28</td><td class="fri">29</td><td class="sat">30</td><td class="noday"> </td></tr>
</table>
</td></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">July</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="sun">1</td></tr>
<tr><td class="mon">2</td><td class="tue">3</td><td class="wed">4</td><td class="thu">5</td><td class="fri">6</td><td class="sat">7</td><td class="sun">8</td></tr>
<tr><td class="mon">9</td><td class="tue">10</td><td class="wed">11</td><td class="thu">12</td><td class="fri">13</td><td class="sat">14</td><td class="sun">15</td></tr>
<tr><td class="mon">16</td><td class="tue">17</td><td class="wed">18</td><td class="thu">19</td><td class="fri">20</td><td class="sat">21</td><td class="sun">22</td></tr>
<tr><td class="mon">23</td><td class="tue">24</td><td class="wed">25</td><td class="thu">26</td><td class="fri">27</td><td class="sat">28</td><td class="sun">29</td></tr>
<tr><td class="mon">30</td><td class="tue">31</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">August</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="wed">1</td><td class="thu">2</td><td class="fri">3</td><td class="sat">4</td><td class="sun">5</td></tr>
<tr><td class="mon">6</td><td class="tue">7</td><td class="wed">8</td><td class="thu">9</td><td class="fri">10</td><td class="sat">11</td><td class="sun">12</td></tr>
<tr><td class="mon">13</td><td class="tue">14</td><td class="wed">15</td><td class="thu">16</td><td class="fri">17</td><td class="sat">18</td><td class="sun">19</td></tr>
<tr><td class="mon">20</td><td class="tue">21</td><td class="wed">22</td><td class="thu">23</td><td class="fri">24</td><td class="sat">25</td><td class="sun">26</td></tr>
<tr><td class="mon">27</td><td class="tue">28</td><td class="wed">29</td><td class="thu">30</td><td class="fri">31</td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">September</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="sat">1</td><td class="sun">2</td></tr>
<tr><td class="mon">3</td><td class="tue">4</td><td class="wed">5</td><td class="thu">6</td><td class="fri">7</td><td class="sat">8</td><td class="sun">9</td></tr>
<tr><td class="mon">10</td><td class="tue">11</td><td class="wed">12</td><td class="thu">13</td><td class="fri">14</td><td class="sat">15</td><td class="sun">16</td></tr>
<tr><td class="mon">17</td><td class="tue">18</td><td class="wed">19</td><td class="thu">20</td><td class="fri">21</td><td class="sat">22</td><td class="sun">23</td></tr>
<tr><td class="mon">24</td><td class="tue">25</td><td class="wed">26</td><td class="thu">27</td><td class="fri">28</td><td class="sat">29</td><td class="sun">30</td></tr>
</table>
</td></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">October</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="mon">1</td><td class="tue">2</td><td class="wed">3</td><td class="thu">4</td><td class="fri">5</td><td class="sat">6</td><td class="sun">7</td></tr>
<tr><td class="mon">8</td><td class="tue">9</td><td class="wed">10</td><td class="thu">11</td><td class="fri">12</td><td class="sat">13</td><td class="sun">14</td></tr>
<tr><td class="mon">15</td><td class="tue">16</td><td class="wed">17</td><td class="thu">18</td><td class="fri">19</td><td class="sat">20</td><td class="sun">21</td></tr>
<tr><td class="mon">22</td><td class="tue">23</td><td class="wed">24</td><td class="thu">25</td><td class="fri">26</td><td class="sat">27</td><td class="sun">28</td></tr>
<tr><td class="mon">29</td><td class="tue">30</td><td class="wed">31</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">November</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="thu">1</td><td class="fri">2</td><td class="sat">3</td><td class="sun">4</td></tr>
<tr><td class="mon">5</td><td class="tue">6</td><td class="wed">7</td><td class="thu">8</td><td class="fri">9</td><td class="sat">10</td><td class="sun">11</td></tr>
<tr><td class="mon">12</td><td class="tue">13</td><td class="wed">14</td><td class="thu">15</td><td class="fri">16</td><td class="sat">17</td><td class="sun">18</td></tr>
<tr><td class="mon">19</td><td class="tue">20</td><td class="wed">21</td><td class="thu">22</td><td class="fri">23</td><td class="sat">24</td><td class="sun">25</td></tr>
<tr><td class="mon">26</td><td class="tue">27</td><td class="wed">28</td><td class="thu">29</td><td class="fri">30</td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">December</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="sat">1</td><td class="sun">2</td></tr>
<tr><td class="mon">3</td><td class="tue">4</td><td class="wed">5</td><td class="thu">6</td><td class="fri">7</td><td class="sat">8</td><td class="sun">9</td></tr>
<tr><td class="mon">10</td><td class="tue">11</td><td class="wed">12</td><td class="thu">13</td><td class="fri">14</td><td class="sat">15</td><td class="sun">16</td></tr>
<tr><td class="mon">17</td><td class="tue">18</td><td class="wed">19</td><td class="thu">20</td><td class="fri">21</td><td class="sat">22</td><td class="sun">23</td></tr>
<tr><td class="mon">24</td><td class="tue">25</td><td class="wed">26</td><td class="thu">27</td><td class="fri">28</td><td class="sat">29</td><td class="sun">30</td></tr>
<tr><td class="mon">31</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td></tr></table>
Note that the earliest year for which a calendar can be generated is platform-dependent.
Code #2: width is given 5
Python3
# Python program to demonstrate working of formatyear() method
# importing calendar module
import calendar
text_cal = calendar.HTMLCalendar(firstweekday = 0)
# default value of width is 0
# printing formatyear
print(text_cal.formatyear(2018, 5))
Output:
HTML
<table border="0" cellpadding="0" cellspacing="0" class="year">
<tr><th colspan="5" class="year">2018</th></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">January</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="mon">1</td><td class="tue">2</td><td class="wed">3</td><td class="thu">4</td><td class="fri">5</td><td class="sat">6</td><td class="sun">7</td></tr>
<tr><td class="mon">8</td><td class="tue">9</td><td class="wed">10</td><td class="thu">11</td><td class="fri">12</td><td class="sat">13</td><td class="sun">14</td></tr>
<tr><td class="mon">15</td><td class="tue">16</td><td class="wed">17</td><td class="thu">18</td><td class="fri">19</td><td class="sat">20</td><td class="sun">21</td></tr>
<tr><td class="mon">22</td><td class="tue">23</td><td class="wed">24</td><td class="thu">25</td><td class="fri">26</td><td class="sat">27</td><td class="sun">28</td></tr>
<tr><td class="mon">29</td><td class="tue">30</td><td class="wed">31</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">February</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="thu">1</td><td class="fri">2</td><td class="sat">3</td><td class="sun">4</td></tr>
<tr><td class="mon">5</td><td class="tue">6</td><td class="wed">7</td><td class="thu">8</td><td class="fri">9</td><td class="sat">10</td><td class="sun">11</td></tr>
<tr><td class="mon">12</td><td class="tue">13</td><td class="wed">14</td><td class="thu">15</td><td class="fri">16</td><td class="sat">17</td><td class="sun">18</td></tr>
<tr><td class="mon">19</td><td class="tue">20</td><td class="wed">21</td><td class="thu">22</td><td class="fri">23</td><td class="sat">24</td><td class="sun">25</td></tr>
<tr><td class="mon">26</td><td class="tue">27</td><td class="wed">28</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">March</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="thu">1</td><td class="fri">2</td><td class="sat">3</td><td class="sun">4</td></tr>
<tr><td class="mon">5</td><td class="tue">6</td><td class="wed">7</td><td class="thu">8</td><td class="fri">9</td><td class="sat">10</td><td class="sun">11</td></tr>
<tr><td class="mon">12</td><td class="tue">13</td><td class="wed">14</td><td class="thu">15</td><td class="fri">16</td><td class="sat">17</td><td class="sun">18</td></tr>
<tr><td class="mon">19</td><td class="tue">20</td><td class="wed">21</td><td class="thu">22</td><td class="fri">23</td><td class="sat">24</td><td class="sun">25</td></tr>
<tr><td class="mon">26</td><td class="tue">27</td><td class="wed">28</td><td class="thu">29</td><td class="fri">30</td><td class="sat">31</td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">April</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="sun">1</td></tr>
<tr><td class="mon">2</td><td class="tue">3</td><td class="wed">4</td><td class="thu">5</td><td class="fri">6</td><td class="sat">7</td><td class="sun">8</td></tr>
<tr><td class="mon">9</td><td class="tue">10</td><td class="wed">11</td><td class="thu">12</td><td class="fri">13</td><td class="sat">14</td><td class="sun">15</td></tr>
<tr><td class="mon">16</td><td class="tue">17</td><td class="wed">18</td><td class="thu">19</td><td class="fri">20</td><td class="sat">21</td><td class="sun">22</td></tr>
<tr><td class="mon">23</td><td class="tue">24</td><td class="wed">25</td><td class="thu">26</td><td class="fri">27</td><td class="sat">28</td><td class="sun">29</td></tr>
<tr><td class="mon">30</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">May</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="tue">1</td><td class="wed">2</td><td class="thu">3</td><td class="fri">4</td><td class="sat">5</td><td class="sun">6</td></tr>
<tr><td class="mon">7</td><td class="tue">8</td><td class="wed">9</td><td class="thu">10</td><td class="fri">11</td><td class="sat">12</td><td class="sun">13</td></tr>
<tr><td class="mon">14</td><td class="tue">15</td><td class="wed">16</td><td class="thu">17</td><td class="fri">18</td><td class="sat">19</td><td class="sun">20</td></tr>
<tr><td class="mon">21</td><td class="tue">22</td><td class="wed">23</td><td class="thu">24</td><td class="fri">25</td><td class="sat">26</td><td class="sun">27</td></tr>
<tr><td class="mon">28</td><td class="tue">29</td><td class="wed">30</td><td class="thu">31</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">June</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="fri">1</td><td class="sat">2</td><td class="sun">3</td></tr>
<tr><td class="mon">4</td><td class="tue">5</td><td class="wed">6</td><td class="thu">7</td><td class="fri">8</td><td class="sat">9</td><td class="sun">10</td></tr>
<tr><td class="mon">11</td><td class="tue">12</td><td class="wed">13</td><td class="thu">14</td><td class="fri">15</td><td class="sat">16</td><td class="sun">17</td></tr>
<tr><td class="mon">18</td><td class="tue">19</td><td class="wed">20</td><td class="thu">21</td><td class="fri">22</td><td class="sat">23</td><td class="sun">24</td></tr>
<tr><td class="mon">25</td><td class="tue">26</td><td class="wed">27</td><td class="thu">28</td><td class="fri">29</td><td class="sat">30</td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">July</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="sun">1</td></tr>
<tr><td class="mon">2</td><td class="tue">3</td><td class="wed">4</td><td class="thu">5</td><td class="fri">6</td><td class="sat">7</td><td class="sun">8</td></tr>
<tr><td class="mon">9</td><td class="tue">10</td><td class="wed">11</td><td class="thu">12</td><td class="fri">13</td><td class="sat">14</td><td class="sun">15</td></tr>
<tr><td class="mon">16</td><td class="tue">17</td><td class="wed">18</td><td class="thu">19</td><td class="fri">20</td><td class="sat">21</td><td class="sun">22</td></tr>
<tr><td class="mon">23</td><td class="tue">24</td><td class="wed">25</td><td class="thu">26</td><td class="fri">27</td><td class="sat">28</td><td class="sun">29</td></tr>
<tr><td class="mon">30</td><td class="tue">31</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">August</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="wed">1</td><td class="thu">2</td><td class="fri">3</td><td class="sat">4</td><td class="sun">5</td></tr>
<tr><td class="mon">6</td><td class="tue">7</td><td class="wed">8</td><td class="thu">9</td><td class="fri">10</td><td class="sat">11</td><td class="sun">12</td></tr>
<tr><td class="mon">13</td><td class="tue">14</td><td class="wed">15</td><td class="thu">16</td><td class="fri">17</td><td class="sat">18</td><td class="sun">19</td></tr>
<tr><td class="mon">20</td><td class="tue">21</td><td class="wed">22</td><td class="thu">23</td><td class="fri">24</td><td class="sat">25</td><td class="sun">26</td></tr>
<tr><td class="mon">27</td><td class="tue">28</td><td class="wed">29</td><td class="thu">30</td><td class="fri">31</td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">September</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="sat">1</td><td class="sun">2</td></tr>
<tr><td class="mon">3</td><td class="tue">4</td><td class="wed">5</td><td class="thu">6</td><td class="fri">7</td><td class="sat">8</td><td class="sun">9</td></tr>
<tr><td class="mon">10</td><td class="tue">11</td><td class="wed">12</td><td class="thu">13</td><td class="fri">14</td><td class="sat">15</td><td class="sun">16</td></tr>
<tr><td class="mon">17</td><td class="tue">18</td><td class="wed">19</td><td class="thu">20</td><td class="fri">21</td><td class="sat">22</td><td class="sun">23</td></tr>
<tr><td class="mon">24</td><td class="tue">25</td><td class="wed">26</td><td class="thu">27</td><td class="fri">28</td><td class="sat">29</td><td class="sun">30</td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">October</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="mon">1</td><td class="tue">2</td><td class="wed">3</td><td class="thu">4</td><td class="fri">5</td><td class="sat">6</td><td class="sun">7</td></tr>
<tr><td class="mon">8</td><td class="tue">9</td><td class="wed">10</td><td class="thu">11</td><td class="fri">12</td><td class="sat">13</td><td class="sun">14</td></tr>
<tr><td class="mon">15</td><td class="tue">16</td><td class="wed">17</td><td class="thu">18</td><td class="fri">19</td><td class="sat">20</td><td class="sun">21</td></tr>
<tr><td class="mon">22</td><td class="tue">23</td><td class="wed">24</td><td class="thu">25</td><td class="fri">26</td><td class="sat">27</td><td class="sun">28</td></tr>
<tr><td class="mon">29</td><td class="tue">30</td><td class="wed">31</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">November</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="thu">1</td><td class="fri">2</td><td class="sat">3</td><td class="sun">4</td></tr>
<tr><td class="mon">5</td><td class="tue">6</td><td class="wed">7</td><td class="thu">8</td><td class="fri">9</td><td class="sat">10</td><td class="sun">11</td></tr>
<tr><td class="mon">12</td><td class="tue">13</td><td class="wed">14</td><td class="thu">15</td><td class="fri">16</td><td class="sat">17</td><td class="sun">18</td></tr>
<tr><td class="mon">19</td><td class="tue">20</td><td class="wed">21</td><td class="thu">22</td><td class="fri">23</td><td class="sat">24</td><td class="sun">25</td></tr>
<tr><td class="mon">26</td><td class="tue">27</td><td class="wed">28</td><td class="thu">29</td><td class="fri">30</td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
<tr><th colspan="7" class="month">December</th></tr>
<tr><th class="mon">Mon</th><th class="tue">Tue</th><th class="wed">Wed</th><th class="thu">Thu</th><th class="fri">Fri</th><th class="sat">Sat</th><th class="sun">Sun</th></tr>
<tr><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="sat">1</td><td class="sun">2</td></tr>
<tr><td class="mon">3</td><td class="tue">4</td><td class="wed">5</td><td class="thu">6</td><td class="fri">7</td><td class="sat">8</td><td class="sun">9</td></tr>
<tr><td class="mon">10</td><td class="tue">11</td><td class="wed">12</td><td class="thu">13</td><td class="fri">14</td><td class="sat">15</td><td class="sun">16</td></tr>
<tr><td class="mon">17</td><td class="tue">18</td><td class="wed">19</td><td class="thu">20</td><td class="fri">21</td><td class="sat">22</td><td class="sun">23</td></tr>
<tr><td class="mon">24</td><td class="tue">25</td><td class="wed">26</td><td class="thu">27</td><td class="fri">28</td><td class="sat">29</td><td class="sun">30</td></tr>
<tr><td class="mon">31</td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td><td class="noday"> </td></tr>
</table>
</td></tr></table>
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : HTMLCalendar formatyear() method
|
https://www.geeksforgeeks.org/python-calendar-module-htmlcalendar-formatyear-method/?ref=lbp
|
Pandas
|
Python calendar module : HTMLCalendar formatyear() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position, Python calendar module : HTMLCalendar formatyear() method
|
GeeksforGeeks
| null |
22 Nov, 2021
|
Python calendar module : TextCalendar pryear() method
22 Nov, 2021
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions.
class calendar.TextCalendar(firstweekday=0) can be used to generate plain text calendars. pryear() method is one of the methods of TextCalendar instance.
pryear() method in Python is used to print the calendar for an entire year as returned by formatmonth().
Syntax: pryear(year, width=2, lines=1, c=6, m=3)
Parameter:
year: year of the calendar
width: [optional] Specifies the width date column
line: [optional] Specifies the number of lines that each week will use.
c: [optional] Number of spaces between month columns
m: [optional] Number of months in a row
Returns: Return a m-column calendar for an entire year.
Code #1:
# Python program to demonstrate working of pryear() method
# importing calendar module
import calendar
text_cal = calendar.TextCalendar(firstweekday = 0)
year = 2018
width = 4
# printing pryear
print(text_cal.pryear(year, width))
Output:
2018
January February March
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 7 1 2 3 4 1 2 3 4
8 9 10 11 12 13 14 5 6 7 8 9 10 11 5 6 7 8 9 10 11
15 16 17 18 19 20 21 12 13 14 15 16 17 18 12 13 14 15 16 17 18
22 23 24 25 26 27 28 19 20 21 22 23 24 25 19 20 21 22 23 24 25
29 30 31 26 27 28 26 27 28 29 30 31
April May June
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 1 2 3 4 5 6 1 2 3
2 3 4 5 6 7 8 7 8 9 10 11 12 13 4 5 6 7 8 9 10
9 10 11 12 13 14 15 14 15 16 17 18 19 20 11 12 13 14 15 16 17
16 17 18 19 20 21 22 21 22 23 24 25 26 27 18 19 20 21 22 23 24
23 24 25 26 27 28 29 28 29 30 31 25 26 27 28 29 30
30
July August September
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 1 2 3 4 5 1 2
2 3 4 5 6 7 8 6 7 8 9 10 11 12 3 4 5 6 7 8 9
9 10 11 12 13 14 15 13 14 15 16 17 18 19 10 11 12 13 14 15 16
16 17 18 19 20 21 22 20 21 22 23 24 25 26 17 18 19 20 21 22 23
23 24 25 26 27 28 29 27 28 29 30 31 24 25 26 27 28 29 30
30 31
October November December
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 7 1 2 3 4 1 2
8 9 10 11 12 13 14 5 6 7 8 9 10 11 3 4 5 6 7 8 9
15 16 17 18 19 20 21 12 13 14 15 16 17 18 10 11 12 13 14 15 16
22 23 24 25 26 27 28 19 20 21 22 23 24 25 17 18 19 20 21 22 23
29 30 31 26 27 28 29 30 24 25 26 27 28 29 30
31
Note that the earliest year for which a calendar can be generated is platform-dependent.
Code #2: Since m=2, the number of month shown in a row will be 2.
# Python program to demonstrate working of pryear() method
# importing calendar module
import calendar
text_cal = calendar.TextCalendar(firstweekday = 0)
# default value of width is 0
# printing pryear
print(text_cal.pryear(2018, 5, c = 3, m = 2))
Output:
2018
January February
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 7 1 2 3 4
8 9 10 11 12 13 14 5 6 7 8 9 10 11
15 16 17 18 19 20 21 12 13 14 15 16 17 18
22 23 24 25 26 27 28 19 20 21 22 23 24 25
29 30 31 26 27 28
March April
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 1
5 6 7 8 9 10 11 2 3 4 5 6 7 8
12 13 14 15 16 17 18 9 10 11 12 13 14 15
19 20 21 22 23 24 25 16 17 18 19 20 21 22
26 27 28 29 30 31 23 24 25 26 27 28 29
30
May June
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 1 2 3
7 8 9 10 11 12 13 4 5 6 7 8 9 10
14 15 16 17 18 19 20 11 12 13 14 15 16 17
21 22 23 24 25 26 27 18 19 20 21 22 23 24
28 29 30 31 25 26 27 28 29 30
July August
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 1 2 3 4 5
2 3 4 5 6 7 8 6 7 8 9 10 11 12
9 10 11 12 13 14 15 13 14 15 16 17 18 19
16 17 18 19 20 21 22 20 21 22 23 24 25 26
23 24 25 26 27 28 29 27 28 29 30 31
30 31
September October
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 1 2 3 4 5 6 7
3 4 5 6 7 8 9 8 9 10 11 12 13 14
10 11 12 13 14 15 16 15 16 17 18 19 20 21
17 18 19 20 21 22 23 22 23 24 25 26 27 28
24 25 26 27 28 29 30 29 30 31
November December
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 1 2
5 6 7 8 9 10 11 3 4 5 6 7 8 9
12 13 14 15 16 17 18 10 11 12 13 14 15 16
19 20 21 22 23 24 25 17 18 19 20 21 22 23
26 27 28 29 30 24 25 26 27 28 29 30
31
None
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : TextCalendar pryear() method
|
https://www.geeksforgeeks.org/python-calendar-module-textcalendar-pryear-method/?ref=lbp
|
Pandas
|
Python calendar module : TextCalendar pryear() method
|
Python calendar module : TextCalendar pryear() method, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00546540972, 0.0161449835, 0.000903016189, 0.0439321063, 0.030749863, 0.00357617252, 0.00254019187, 0.0484480038, -0.0109373452, 0.00629745703, 0.00433969824, 0.0153357768, -0.0118705435, -0.0153749315, -0.020974122, 0.0135998968, -0.00723065529, 0.0203345865, 0.0244197771, -0.00101803453, 0.030749863, 0.0186248105, -0.036336, 0.0154010355, -0.00118770695, 0.00916231051, -0.00174240523, -0.0192121379, 0.0109242937, 0.0136782071, 0.00326456269, 0.0198125187, 0.0160666723, -0.0278523806, -0.0192121379, -0.0461508967, 0.0247591212, 0.0467251763, 0.0254117083, -0.00934503507, -0.0161710866, 0.0115834055, 0.0212482084, 0.0194992758, -0.0155576561, 0.00287790527, 0.0286354832, -0.00691088801, 0.00707403477, -0.0322377607, 0.0214048289, -0.0322116576, 0.0555481389, 0.0103891725, -0.00247330172, 0.0132931815, -0.0395728275, 0.00611473294, -0.0148528628, -0.0148528628, 0.053433761, -0.0266907774, -0.00575581053, -0.028766, 0.0340127945, 0.0131104579, -0.0268082432, -0.00417981483, 0.00553066842, -0.0162624493, 0.0148659144, -0.0173457414, 0.00691741426, -0.00160128344, -0.0170455519, -0.0294446908, 0.0148398113, 0.00253692898, -0.041948244, -0.000978879398, -0.00367079768, -0.0127776386, -0.0221096221, -0.00290727173, 0.00193002378, 0.00569381472, 0.0547650382, -0.03785, -0.00108981901, 0.0225272775, 0.057532, 0.0520502776, -0.0201127082, -0.0308542773, 0.0443236567, -0.00785713829, 0.0275913458, 0.029523002, -0.0423658974, -0.0068847849, -0.00182071561, 0.0166409481, -0.0154793458, -0.0207261387, -0.00367732346, -0.0155054489, 0.000825521594, -0.0510061383, 0.0177242421, 0.0280090012, 0.00259076734, -0.0115573024, -0.017411001, -0.0362054855, -0.0657284856, 0.0258163121, -0.0333341062, 0.00405908655, 0.00615062518, 0.00484219, 0.0185334496, -0.0330208652, 0.0277740695, 0.0355528966, -0.0388941392, -0.0129929921, 0.0126144923, 0.00673469, -0.00702182809, -0.0190816224, -0.00261523924, -0.0108720865, 0.0050608064, -0.0292358641, -0.0117008714, 0.0179330707, -0.00911010429, 0.0370669, 0.0155968107, 0.0311414152, -0.0244850349, -0.0187553279, 0.0365970358, -0.0138609316, -0.021117691, -0.0346653797, 0.0201257598, 0.0386331044, 0.00427117711, 0.0177503452, -0.0381371379, -0.050614588, 0.00873160362, 0.0172282774, 0.0160536207, -0.0583151057, -0.00511953887, 0.0190685689, -0.00980837084, 0.00226447429, -0.0190424658, 0.00130843546, 0.041948244, 0.00588959083, 0.0324726924, 0.000132862478, 0.0374845527, 0.00562855648, -0.0119553795, 0.0218355358, 0.00891432818, -0.0117400261, -0.0179330707, -0.0194731727, 0.000939724152, -0.000403991668, 0.0159622598, -0.00975616463, 0.0106893629, -0.00900569, -0.0151922079, 0.00393835781, -0.00386657333, -0.0102717075, 0.0101672933, 0.031089209, 0.0581584871, 0.0257118978, -0.0342738293, -0.00181092683, 0.00354028028, -0.0058504357, -0.0215745009, -0.0062583019, -0.00639534509, -0.00944292266, 0.000738238159, 0.0420265533, -0.0364404172, 0.0278523806, -0.0254900176, -0.013025621, -0.00963217299, -0.0183637775, -0.0116486643, 0.0173457414, -0.0322377607, 0.0208044499, 0.00758305192, -0.0287137944, -0.0157664828, -0.0177503452, 0.00749821588, -0.0309847947, -0.0169802941, 0.040982414, -0.00364469411, 0.000150196807, 0.0275391396, -0.049100589, -0.00238846568, 0.044767417, -0.00701530185, -0.0166801047, -0.0109895524, -0.000702345918, 0.0146309836, -0.00437232759, -0.0369885862, -0.0298623461, -0.0140697593, 0.00421570707, -0.0137956729, -0.00188107986, 0.0491266921, 0.0180635862, 0.0264819488, 0.0147092938, 0.0328903459, -0.00205075229, 0.0544517972, -0.0471689329, -0.0170194488, -0.0248765871, 0.0199952424, 0.0191468801, -0.0137304142, 0.0198386218, -0.00580475433, 0.0151138976, 0.0328381397, 0.00495965546, -0.00328740315, 0.00380784064, -0.0304888282, -0.0356573127, -0.00281427824, -0.0402515195, 0.0172021724, 0.0115834055, -0.015531552, 0.0173457414, 0.0145787764, -0.0353962779, 0.00474430202, 0.0193296038, -0.00984752644, 0.000821850786, 0.0202432256, -0.0174893104, 0.0306715537, -0.0427313484, 0.0452111736, 0.0131757157, -0.000497597, -0.00785713829, -0.0122686215, -0.00665311655, -0.00269028684, 0.0344043449, 0.00845099147, 0.0151661038, 0.0195906386, 0.0239238106, 0.0214570351, 0.0245633461, -0.0146962423, 0.00437559048, -0.00809859484, -0.00967785344, 0.030436622, -0.019264346, -0.0272781048, 0.0194340181, 0.00955386274, 0.0026446057, 0.00142916385, 0.00319277821, -0.0134041216, 0.00148952811, -0.00457136659, 0.0104740094, -0.0147876041, 0.00743948296, 0.00870550051, -0.0167453624, 0.022370657, 0.0128037417, 0.00525005627, 0.0189772081, -0.00948207825, -0.0332557932, -0.0183115695, -0.0205695182, 0.0340388976, 0.00423202151, 0.045681037, 0.0115377242, -0.0252159312, -0.0104544312, 0.00777230226, 0.000164981961, 0.0160797257, -0.0126210181, -0.0138609316, -0.0151400007, -0.0378238969, -7.23453049e-05, 0.031063104, -0.0212221052, -0.0501969345, -0.00680647464, 0.0340911038, -0.00188107986, 0.00241130614, -0.0460725874, -0.00378500018, -0.0195514839, 0.0201518629, 0.0171630178, -0.00380457775, 0.00272781053, 0.0316634849, -0.0304888282, -0.0420787595, -0.042392, -0.0182202086, 0.0658851042, -0.000918515143, 0.0158317424, 0.000879359955, 0.0146831907, 0.0525462441, -0.00513911666, 0.01536188, 0.00146342465, -0.0318723135, -0.0101542417, 0.0223053973, -0.0148006557, -0.011172276, -0.00330208638, 0.0227361042, 0.00779187959, -0.0296274144, -0.0296274144, 0.0081769051, 0.00371974148, -0.00937766396, 0.0229710359, -0.0180896912, -0.011713923, -0.0483957939, 0.000271027209, -0.000646876113, 0.0234278459, 0.00272128452, 0.0220574141, 0.0198255703, -0.0158578455, -0.0720977262, 0.034065, 0.0215745009, 0.0197472591, 0.00430706935, -0.00288769417, -0.0429140702, 0.0101346644, -0.0137695698, -0.0134041216, 0.00159557338, 0.0101607675, -0.00187781686, -0.0392334834, -0.0123273544, -0.00419286638, 0.0220313109, -0.00186965952, 0.0236888807, 0.0133192847, -0.0198516734, -0.0218485873, 0.00801375881, -0.0135346381, -0.0155837592, -0.00190392032, -0.0213917773, 0.0160144661, 0.0580540709, 0.0153357768, 0.0190946739, 0.0241587423, -0.0487612449, -0.000395018607, 0.0306193456, -0.00460399594, -0.0121511556, 0.0246938635, -0.0254508629, 0.0493094176, 0.0428096578, -0.00669553457, -0.0332818963, 0.020177966, -0.00507712085, -0.00158823177, -0.0151922079, 0.00998457, -0.0119749578, 0.0297318287, -0.012510078, 0.00793544855, 0.0136260008, 0.0271214843, 0.0519719683, 0.0031617803, -0.0116095087, 0.0156751219, 0.0399121754, -0.0322638638, -0.063588, 0.0199821908, 0.0158186909, 0.0187292248, -0.0195514839, 0.0271475874, -0.0620217957, -0.00467251753, -0.0182463117, 0.00693699159, 0.000976432173, -0.0034750218, 0.0217833277, -0.0114463624, 0.0335690342, 0.00699572451, 0.000664822233, -0.0265733115, 0.000188638209, 0.0308020711, 0.0323421732, -0.0253464486, -0.00914273318, -0.00687825913, 0.00536425877, -0.0179852769, 0.0124056647, -0.0294707939, -0.00404603453, 0.018168, 0.00177992892, 0.0224359147, -0.0400426909, 0.00974963792, 0.0591504164, 0.00854235422, -0.0165365357, 0.0309586916, 0.0228144154, -0.041269552, 0.0391029678, -0.0316112787, -0.00717192283, 0.00524679339, 0.00914925896, 0.0405386575, -0.0581584871, -0.0317417942, -0.0294446908, -0.00834005233, 0.0592026226, 0.0527811758, 0.0322899669, -0.0199038796, 0.00210785354, 0.0423397943, 0.0318462066, -0.00989320688, 0.0189772081, -0.0306193456, -0.00508364663, 0.0112505862, -0.00433643535, 0.0151530523, 0.0103695951, 7.08667867e-05, 0.0316634849, -0.0259468295, -0.0355267935, 0.000219228183, 0.00298558199, 0.0434622429, -0.00855540577, 0.012882052, 0.0262861736, 0.0102456035, -0.0106436815, 0.00165675336, 0.00986057799, -0.0277479663, -0.0101411901, -0.0261295531, 0.0312197246, -0.00193328667, 0.00919494, 0.0208827592, -0.0250984672, -0.0262861736, -0.0143699488, -0.0109503968, 0.0121903112, 0.0218485873, 0.00941029377, 0.0110352328, 0.0112114316, -0.040982414, -0.00218290091, 0.00839225855, 0.000216577057, -0.00707403477, -0.0215745009, 0.0380849317, -0.00520111248, -0.0445585884, 0.0214700866, -0.0260120872, -0.0070479312, 0.0215875525, -0.00550782774, -0.0142524829, -0.0167845171, 0.0174762588, -0.0494660363, -0.0061930432, -0.0344565548, -0.0198647249, 0.00603968557, 0.0164190698, 0.00898611266, 0.00656501763, -0.0124513451, -0.0164973792, -0.0114528881, 0.0218485873, -0.00739380205, 0.00512606464, 0.0109112421, 0.0126079656, -0.0262992252, 0.013991449, 0.0116160354, -0.0259468295, 0.0292619672, 0.0324204825, -0.0189380534, 0.00829437096, 0.0228796732, 0.00280122645, 0.0157795344, -0.0182593632, -0.00153439341, 0.0161319319, 0.0158578455, -0.0174632072, 0.018663967, -0.00652259961, 0.00893390551, -0.0136260008, -0.0261556562, 0.00507385796, -0.0048813452, 0.0456027277, -0.00950165559, -0.020660881, -0.00593527174, 0.00786366407, -0.01165519, 0.000285302551, 0.0295752082, -0.0173326898, 0.0228796732, 0.00998457, 0.00769399153, -0.0077396729, -0.046281416, -0.000806351891, 0.0394945182, -0.0171760693, 0.00366100878, -0.0305149332, -0.0239238106, -0.00210948498, -0.0181288458, -0.00632356061, 0.0425486229, -0.0383198634, -0.00982794911, 0.000371566275, -0.0345870703, -0.00015335776, -0.00925367326, 0.0201649144, 0.00192512944, 0.000659927842, 0.0154271387, -0.0143699488, -0.0213526208, -0.0227622073, -0.0141741727, -0.0247591212, 0.00605273712, -0.0514237955, -0.000159781659, 0.0180635862, 0.0101216128, 0.0023754139, 0.0340388976, -0.0272258986, -0.0322638638, 0.0195514839, 0.0275913458, -0.0142002767, 0.027669657, 0.0608210377, 0.000954407384, 0.0401993133, -0.0183898807, 0.0174632072, 0.00961259566, -0.0124839749, -0.0153488284, -0.00619630609, 0.0251506735, 0.00325640524, -0.0029823191, -0.00196265313, 0.022683898, -0.00393835781, -0.0350308307, 0.00824216381, 0.00513585377, -0.00981489662, 0.00345870713, -0.00650302181, 0.0334646218, 0.0283483453, 0.0207652934, -0.0260773469, -0.00647691824, 0.000156110866, -0.00222205603, -0.0020474894, -0.0146831907, 0.0131691899, -0.00395467272, -0.0118770692, 0.023453949, 0.0322638638, -0.0171499662, 0.000640350219, 0.0147484485, 0.015218311, -0.00571339251, -0.00165593752, 0.0217180699, 0.020634776, -0.011883595, -0.0153096728, 0.00151073711, -0.00845099147, -0.0295491051, 0.0171891209, -0.00537078455, 0.00486503029, 0.0337778628, 0.00896000862, 0.00864024181, 0.011426785, 0.00249940529, -0.00193002378, -0.0269387607, 0.0286876913, -0.0115964571, 0.0164843276, -0.0292097591, 0.0347959, -0.00843794, -0.0172674321, 0.0238716044, 0.0156098623, -0.00805944, -0.00127172738, 0.00425812509, -0.0157925878, -0.0218094327, 0.00711319, -0.00234278454, 0.0363098979, 0.0247982778, -0.0232581738, -0.0167845171, -0.0369885862, -0.0480042435, -0.0220313109, -0.0293663815, 0.0125818625, -0.00924714655, -0.0176850874, -0.00192349788, 0.00201486, -0.0175284669, 0.000942987099, 0.0361271724, 0.00955386274, -0.00983447488, -0.0048617674, -0.0111461729, -0.0109569225, 0.00944944844, -0.0113941552, 0.00539036235, 0.00363164232, -0.00492050033, -0.0292097591, 0.0142916385, -0.0154010355, -0.00580149144, -0.0167062078, 0.00165104319, 0.00471167266, -0.0218616389, 0.0142394314, 0.0350569338, 0.00139408733, 0.0271214843, 0.0167323109, 0.0248635355, -0.0368580706, 0.00796155166, 0.0302016903, -0.0251245704, -0.00335429329, -0.0140436562, -0.00434622448, -0.0334646218, 0.0387375206, 0.0230493452, 0.0148006557, 0.0059450604, 0.00545888394, -0.0224489663, 0.00189902599, 0.0341694169, 0.0305149332, -0.00890127663, 0.00787671562, -0.00323682767, -0.0122686215, 0.032002829, 0.0157273281, -0.0212351568, 0.024850484, 0.0054882504, -0.00889475, -0.0134954834, -0.0242370535, 0.00916883629, -0.00372626749, 0.0226316899, -0.0130843539, 0.0222531911, -0.00365448301, 0.0417394154, 0.00325151091, -0.0018272415, -0.0237410869, -0.00425812509, -0.0389202423, -0.00295132119, -0.0441409312, -0.00150257978, 0.00414392259, 0.0278784838, -0.0184551384, 0.0256335866, -0.0303322077, 0.00231994409, -0.0177764483, 0.0222531911, 0.0103891725, 0.00158823177, 0.0240934845, -0.0214700866, 0.0201910175, 0.00489113387, -0.0224881209, 0.0360749662, -2.33758437e-05, -0.0100955088, -0.0239890702, -0.0209610704, -0.0139522934, -0.0154662933, 0.0253595, 0.00928630214, -0.00504775438, 0.00323356478, 0.0154271387, 0.0251245704, 0.0148659144, 0.0236236211, -0.00322377589, -0.0271475874, 0.0324204825, 0.0226447415, 0.0205825698, -0.00166001625, 0.0221618284, -0.022227088, 0.0346653797, -0.01709776, -0.00505754352, -0.0127515346, -0.0163407587, 0.0364143103, 0.00388288801, -0.012425242, 0.00428422866, -0.000925041, -0.00997151807, 0.0504318625, 0.0162624493, -0.0117400261, 0.00244230404, -0.0352657586, -0.00695656938, -0.018925, 0.0137304142, 0.0117596043, -0.0300972778, 0.016758414, -0.0110417595, 0.00877728499, -0.0186117589, -0.0281395186, -0.0220182594, 0.0288182087, 0.0056513967, 0.00190555176, -0.00284690736, 0.00802681, 0.0238585528, 0.040121, 0.004502845, -0.00634966418, -0.0068847849, 0.0263253283, 0.0138609316, 0.00448326766, -0.0123665091, 0.017071655, -0.0202823803, 0.00306715537, 0.0194209665, 0.00856845733, -0.025163725, -0.0153227244, -0.0235322602, -0.0230362937, -0.0110352328, 0.0206478294, -0.0133453887, -0.0169280861, -0.0574275889, 0.0171760693, 0.0284527596, 0.0223053973, -0.0252420362, 0.00561224157, 0.0043690647, -0.00220900448, 0.0191077255, 0.0241978969, -0.045002345, -0.0225142259, -0.0384503826, 0.0217833277, 0.00340323732, 0.00102129742, 0.00825521629, 0.0313502438, 0.0148528628, -0.0496748649, 0.010969975, 0.0132018197, 0.00247656484, -0.0245111398, 0.0532510355, 0.0324987955, 0.00258424156, 0.00383394421, -0.03414331, 0.00404603453, 0.0387636237, -0.01801138, 0.0146962423, -0.0148398113, -0.0396511406, 0.0107285175, -0.00680647464, -0.0480564497, 0.0163407587, -0.00184518762, -0.00927325059, -0.0490222797, 0.00494007766, -0.0385547951, -0.00761568127, -0.044088725, 0.000442127173, -0.0213526208, 0.0343521386, 0.0114659397, -0.0172935352, -0.012882052, -0.0531466231, 0.0136129493, 0.000468638493, -0.00294968975, -0.0175937247, 0.0400948972, -0.0217963811, -0.0186378621, -0.0133519145, -0.00832047407, -0.0347436927, -0.0164060183, -0.0287398975, -0.000655033451, -0.0138478801, -0.0100171985, -0.0489700697, -0.0387636237, -0.00231178664, -0.0353440717, -0.00601684488, -0.0254508629, -0.0241065361, 0.0267168805, -0.0148528628, 0.0057362332, -0.0138478801, 0.0498053804, -0.00465946551, -0.0154140871, 0.0518936589, -0.0142263798, -0.000833271071, -0.00194960134, -0.0336734504, 0.0342477262, -0.00956038851, 0.00820953492, 0.018807536, 0.0531727262, -0.0134824319, 0.00465946551, -0.0139000872, -0.00584717281, 0.0176850874, 0.047873728, -0.031794, -0.00856845733, -0.038841933, -0.0226708464, 0.0132931815, 0.0440626219, 0.0160014145, -0.00312915095, -0.00804638863, -0.0341172069, -0.0137956729, -0.00546540972, 0.00838573277, -0.0156490188, 0.0323682763, 0.0107676731, 0.0414783806, -0.0106632588, -0.0199952424, 0.029523002, -0.00749169, 0.0183637775, -0.0240282249, 0.0398077592, 0.00306878681, -0.002793069, 0.0202823803, -0.0130647765, 0.00575254764, -0.0252942424, 0.00699572451, 0.00122523063, 0.0116356127, 0.0101020345, -0.0134563278, -0.0112832161, -0.0219138451, 0.0243806224, -0.000389104534, -0.00147484487, -0.018807536, 0.0154271387, -0.011426785, 0.00106942572, -0.00690436224, -0.0185203981, -0.013821776, 0.0128428973, -0.0147745525, -0.00604621135, -0.00868592318, -0.0300711729, -0.024393674, 0.00789629389, -0.000120626486, -0.00117465528, -0.0137956729, -0.0280612074, -0.000282243534, 0.0128494231, 0.00958649162, 0.0141872251, 0.010343492, 0.0195645355, -5.66551898e-06, 0.00083204743, -0.0209219139, -0.00203117472, 0.00982794911, -0.00894043129, 0.0275391396, 0.00640187087, 0.0318462066, -0.00424833642, -0.0176589843, -0.0142655354, 0.00168204098, -0.0478476211, 0.00129375223, -0.00251245708, -0.011172276, 0.00978226773, -0.0311153121, -0.0164582245, -0.0105196899, -0.00322377589, -0.0172804836, -0.00120483735, -0.0402515195, 0.040982414, -0.00932545774, -0.000789221493, 0.00631703483, -0.0151008451, 0.00399709074, -0.0149442246, 0.00863371603, -0.0179330707, -0.0111657502, -0.0210263282, 0.0045681037, -0.00565792248, 0.00222858205, 0.0118183363, 0.010859035, -0.0220052078, 0.0555481389, -0.032002829, 0.0266516227, -0.00833352655, 0.0176459309, -0.0105784228, -0.00994541403, 0.00271312729, 0.0157664828, 0.00390899135, 0.00520111248, 0.00711319, -0.0113745779, -0.00466925465, -0.0218355358, -0.0134693803, 0.0212612599, 0.00157518, -0.0163146555, -0.0025304032, -0.0155054489, -0.000218412461, 0.00611799583, 0.0231015533, 0.00213395688, 0.0200996567, 0.00642144866, -0.000511872349, 0.0124970265, -0.00598095264, 0.00417981483, -0.0266646743, -0.00243740948, -0.0170325, 0.00636271574, -0.0153879831, 0.00672816392, 0.007067509, -0.0113680521, 0.0063920822, 0.00588632794, -0.00869244896, -0.0091362074, -0.00132067141, 0.0261556562, 0.0106958887, 0.00431033224, -0.0213787258, 0.0018239785, 0.00791587122, -0.0414783806, -0.0213395692, -0.0194340181, 0.0286615882, -0.00458441814, -0.0108264061, 0.0137043111, -0.0166931562, -0.00451916, -0.0226577949, 0.0203084834, -0.00117139227, 0.00209806464, -0.0067542675, -0.00933198351, 0.0345870703, 0.00463662529, 0.0026788665, -0.0324987955, 0.0361532792, -0.0126210181, -6.347421e-05, 0.00885559525, 0.00459094439, -0.0148267597, 0.0130974054, 0.000602010812, 0.0197081044, -0.00170651299, -0.0148659144, -0.00301005412, 0.0154532418, 0.00606252626, 0.00884906948, -0.0215092432, -0.00729591399, -0.0112440605, -0.0317156911, 0.00874465518, -0.00154499791, -0.031089209, 0.00051676674, -0.00628114259, 0.0169019829, 0.009403768, -0.0183115695, 0.0234147944, 0.00680647464, -0.00830089673, 0.00790934544, 0.0029578472, 0.0023411531, 0.0265733115, 0.0133519145, -0.016301604, -0.00578844, -0.0127515346, 0.0166801047, -0.00989973359, 0.00146016176, 0.00348807336, -0.00400035363, -0.0420526564, -0.00964522455, 0.00184192462, -0.0202171206, -0.0182463117, 0.00482587516, 0.0391812772, 0.00816385355, -0.0125296554, -0.0166540015, 0.0260251388, 0.0205303635, -0.0186248105, -0.0154401902, 0.00103353348, 0.013364966, 0.00406561233, -0.00423202151, -0.00815080199, -0.0134954834, 0.0190946739, -0.00265602604, -0.0185203981, 0.022997139, -0.00777230226, 0.0185856558, -0.0137173627, 0.00877075922, -0.00693046581, -0.00263155391, 0.0123665091, 0.0130778281, -0.0191338286, 0.0294446908, 0.00129701511, 0.0094625, 0.0204651039, 0.00813775, -0.0335429311, 0.0012032059, -0.0050608064, 0.00910357758, 0.0140306037, -0.00717192283, 0.00906442292, 0.00645081513, -0.00588632794, -0.0157795344, 0.00252877176, 0.0203606896, -0.00162412401, -0.00150584278, 0.016445173, -0.0119488537, 0.00597442687, -0.0137695698, -0.0260120872, -0.0158708971, 0.00416350039, 0.00486829318, -0.0185334496, 0.0102651818, -0.00537078455, -0.00443758629, 0.00525984494, -0.0201257598, 0.0141219664, 0.015531552, 0.00928630214, -0.00607557781, -0.0362054855, 0.00601031911, -0.00100008841, 0.0103304405, 0.00460399594, 0.000274698017, -0.00651281048, 0.0129342591, 0.0177895, 0.00514237955, -0.0021616919, 0.0236105695, 0.0311675183, -0.00460725883, -0.0157925878, -0.0355267935, 0.00802028459, -0.0275130365, -0.00566444872, 0.00382415531, 0.0159361567, 0.00234278454, -0.00886212103, -0.0231798626, -0.019120777, 0.00231178664, 0.0232973285, -0.00950165559, -0.00668248301, 0.0281134155, 0.0353440717, 0.0207261387, -0.0595680699, 0.0161971897, 0.00812469888, 0.0254508629, 0.0235844664, -0.0179983284, -0.0362837948, -0.00185334496, -0.0165365357, -0.0184420869, -0.00414718548, 0.00309489015, 0.0107807247, -0.00628114259, 0.00408192677, 0.0125035523, 0.0100106727, 0.0179330707, -0.00497923279, 0.0077396729, -0.01063063, 0.0161449835, -0.0257771555, -0.00703487964, -0.0368841738, 0.0146831907, -0.0194862243, 0.0196950529, -0.0254900176, 0.00382415531, -0.0310108978, -1.41606115e-05, 0.0268604495, 0.00433317246, -0.0288182087, -0.00152134162, 0.00615715096, 0.0272520017, -0.011315845, 0.00115997205, 0.0102651818, 0.0158708971, -0.00841183681, 0.0255813804, 0.0190946739, -0.00602010824, 0.00382089242, -0.00585696148, 0.0115768798, 0.00551109063, -0.0180505347, -0.00331840105, -0.0190424658, 0.0180635862, 0.00748516433, -0.0119553795, -0.0338822789, 0.0305671394, 0.0190946739, 0.0115116211, -0.00210622209, -0.0132148713, 0.0360488631, 0.00971700903, -0.000540830835, -0.01119838, -0.0347697958, 0.0232320707, -0.00670206081, 0.0179591738, -0.0131822424, -0.00749169, -0.0130647765, 0.0154923974, 0.00856193155, 0.00711319, 0.0134824319, 0.0233103801, 0.0119358022, 0.0111265955, 0.017698139, 0.0403037257, 0.00852277596, 0.0116747674, 0.0299667604, -0.000885070069, -0.0071980264, 0.00255324366, -0.00204912084, 0.00214048289, -0.0210263282, -0.0054034139, 0.0226708464, 0.00809206907, 0.00862066448, -0.0257249493, -0.005556772, -0.00947555248, 0.00179134926, -0.00678689685, -0.0167453624, -0.00388941402, -0.0226577949, -0.0121315783, 0.0166931562, -0.00490744831, -0.00580801768, 0.0163407587, -0.0137565183, -0.023793295, -0.0164190698, -0.0172935352, -0.00311773084, -0.033595141, -0.0251376219, -0.0059646382, -0.00424181065, 0.0168628283, 0.00427770289, 0.0104544312, -0.0299406573, 0.0162232947, 0.00477693137, 0.00347175868, -0.0129016303, -0.00167877809, -0.00461052172, 0.037615072, -0.0221879315, 0.00884906948, -0.0035990132, 0.0112636387, 0.0131430868, 0.0189380534, -0.0156751219, 0.0176198278, 0.00494007766, 0.00383394421, -0.00588632794, 0.0301233809, -0.00404603453, 0.018168, 0.00149360672, -0.00749169, 0.0177372936, 0.0314807594, -0.00776577601, 0.0219007935, -0.00705445698, 0.0127254315, 0.0303061046, 0.0165104326, -0.0145657249, -2.09668815e-05, 0.0334385186, -0.00109552918, -0.0167323109, -0.0111200698, 0.010258656, 0.0154532418, 0.00194470701, 0.00642471155, -0.0143046901, 0.00240478036, 0.00091688364, -0.0391290709, -0.00822258648, -0.0252420362, 0.00550456485, 0.0202040691, -0.0152313625, 0.00261687092, -0.00431033224, -0.000833678932, -0.00193328667, -0.0113288974, 0.0296274144, -0.014108914, -0.00729591399, -0.00533489231, 0.000874465564, -0.014735397, 0.00549151329, -0.0213004146, 0.00745253498, -0.0048813452, -0.00362511654, -0.00482587516, 0.0021274311, 0.00845099147, 0.00210622209, -0.0167845171, 0.00618325453, -0.022683898, -0.00302963168, 0.000412352936, -0.0279045869, 0.0217572246, -0.0263905879, -0.00556003489, -0.0169802941, -0.00346197, 0.00379805197, 0.0192251913, 0.00651933672, 0.00292684929, -0.0172935352, 0.0191599317, -0.0287921056, 0.0289226212, 0.0103891725, -0.00406887522, -0.00847057, 0.000324049848, 0.00269844406, -0.0117269745, -0.00343260355, 0.0325249, -0.0131561384, 0.0160144661, 0.0168367252, -0.0111788018, 0.0191990864, 0.00786366407, -0.00818995759, 0.00422875863, -0.0156881735, -0.00950165559, 0.0173065867, 0.00676731905, -0.00180929538, -8.51421137e-05, -0.0135346381, -0.00528268563, -0.00657806918, 0.00760262972, 0.0106567331, 0.0170455519, -0.0130647765, 0.00693046581, -0.000616286125, 0.00416676328, 0.00508038374, 0.0032955606, -0.0106241042, -0.0295752082, -0.00401666807, 0.00745906075, 0.00460725883, -0.0207913984, -0.0203867946, 0.00509343576, 0.00901874155, -0.00770704355, 0.00800723303, -0.00565465959, 0.0163146555, -0.0468817949, -0.00103842781, 0.0252289847, 0.00671511237, -0.000868755451, 0.00835310388, 0.0189902596, -0.0287137944, -0.0011240798, 0.00786366407, -0.00539688813, 0.00923409499, -0.0012725431, -0.01709776, 0.00475735357, 0.0167323109, 0.0177372936, 0.00276043988, 0.00980837084, 0.0315068625, 0.011485518, -0.00324172201, -0.00609189272, 0.0160536207, 0.00832700077, -0.012281673, 0.00189086865, -0.0057166554, 0.00369363814, -0.00190718332, -0.0128559489, 0.00278654322, -0.0102717075, 0.0200996567, -0.00440822, -0.00320909289, -0.00099764124, 0.0296796225, -0.0240934845, -0.011257113, -0.0424181037, -0.0257249493, 0.032002829, 0.0120141124, -0.0147745525, 0.00623872457, 0.00957996584, -0.0275391396, -0.0231537595, 0.0146309836, -0.0234408975, 0.0301233809, -0.00456484081, 0.0140306037, -0.0128494231, 0.0191860348, 0.0264297426, 0.00882949214, 0.00657480629, 0.00403298298, 0.0116421385, -0.00811817311, 0.00670206081, 0.000791668659, 0.0194601212, -0.00840531103, -0.00963217299, 0.0185334496, -0.00734812114, -0.0165365357, 0.0322377607, 0.000522069, 0.00202954328, -0.00439516827, -0.0159622598, 0.00737422425, 0.00117628672, -0.00912315585, 0.00516848313, -0.00240314892, -0.00138593, -0.000791260798, 0.0330730714, 0.0112897418, -0.00303452602, 0.0255944319, 0.00809206907, 0.000589366944, 0.0063268235, 0.0113811037, 4.7414469e-05, 0.0170455519, 0.0169802941, 0.00998457, -0.00969090592, 0.010088983, -0.00351417693, -0.00617672876, -0.0065062847, -0.00956691429, -0.0018859742, 0.0228666216, 0.0249940529, 0.0159100518, -0.00537078455, 0.0223837085, 0.0028338558, -0.0317156911, -0.00440822, 0.020974122, -0.0106502073, 0.0153488284, -0.00754389679, 0.000240437235, 0.00040541921, 0.00358269853, 0.0135607421, -0.0200605, -0.00783756096, -0.00262502814, 0.0121446298, -0.00612125872, -0.00489113387, -0.0305410363, 0.00806596596, -0.00504775438, -0.05312052, -0.0284005534, -0.0164060183, 0.00162983418, -0.0184290353, -0.00822258648, 0.00196754746, 0.00851625, -0.0175154153, -0.00873160362, 0.00760915549, -0.0152835697, -0.0234800521, 0.000626890629, -0.0183898807, 0.00939724222, 0.010800302, 0.014591828, 0.0127580613, -0.0100367758, -0.0210785363, -0.0216919668, -0.00147484487, 0.000368711218, -0.0186117589, -0.0221357252, -0.00315036, 0.0119358022, 0.00253529754, 0.0143568972, 0.0137565183, 0.0065911212, -0.00473777624, -0.0214570351, 0.0115116211, -0.012281673, 0.0236105695, -0.0122033628, -0.000399709068, 0.00950818136, 0.00598747889, 0.00509996153, 0.0027033384, -0.0146570867, 0.000393387134, 0.0173457414, 0.0160797257, 0.0012170733, -0.00557308644, 0.0198908281, 0.0178025533, -0.0189902596, -0.0125818625, 0.0092993537, 0.0159622598, 0.0199299827, -0.00783756096, -0.019407915, -0.0162493978, -0.00455505215, 0.0165626388, -0.0186509155, 3.64020743e-05, -0.00213069399, -0.0174762588, -0.014278587, 0.00462683663, 0.0216919668, 0.0303061046, 0.0156229148, 0.0264427941, 0.0123599833, 0.00517174602, -0.00367079768, -0.0250462592, -0.0142524829, -0.014448259, 0.0114724664, 0.0214700866, 0.00819648337, -0.0028681166, -0.005785177, -0.0187553279, 0.00498902192, -0.0141872251, -0.024250105, 0.00396446139, -0.00640187087, -0.0355006903, 0.0112310089, -0.0198255703, 0.0026495, -8.75383266e-05, 0.0035337545, -0.0142916385, -0.00374910794, 0.00505754352, -0.0140306037, 0.0108133536, 0.00277022854, 0.0151008451, -0.00261034491, 0.00995194, 0.0167975705, 0.00374584505, -0.0104087507, -0.0057655992, 0.00441148272, -0.0237671901, -0.0320289321, 0.00526310783, 0.0048160865, 0.00755042257, -0.0302538984, -0.00282896124, -0.00500533637, -0.0136912595, -0.0223315, 0.0281134155, 0.0071327677, -0.00500859926, 0.00282080402, 0.0135476906, -0.0163407587, 0.00534794433, 0.00909052603, 0.0186509155, -0.00540667679, -0.000170080282, 0.00323682767, -0.027669657, -0.00448000431, -0.0154271387, 0.0012309408, 0.0143568972, 0.0179069657, 0.00580475433, -2.06737277e-05, -0.0115573024, -0.0153749315, 0.00330534927, 0.0320289321, -0.00888169836, 0.00410150457, -0.00415371126, -0.0105001125, -0.00862066448, 0.0209610704, -0.0217572246, 0.00387636223, -0.00962564722, -0.00315525453, 0.0231015533, -0.0179200172, -0.0240021218, 0.0191468801, -0.030749863, 0.0258424152, 0.0131822424, 0.00587653928, -0.00832047407, 0.0270431731, -0.00899916422, 0.0293141734, -0.00566118537, -0.00309489015, 0.00255161221, 0.00877075922, 0.00710666412, 0.0246677604, 0.0158056393, -0.00671511237, 0.00330045493, -0.00701530185, 0.0091362074, -0.0106632588, -0.00112734269, 0.0189902596, 0.0225925352, -0.0229579844, 0.0109242937, -0.00338692265, -0.00202301727, 0.0164321214, -0.0105131641, 0.013991449, 0.00349133625, 0.0180896912, -0.0130060436, 0.0123926122, -0.0100955088, -0.0165104326, -0.00491723744, -0.00411455613, 0.0168236736, 0.0129146818, 0.00473125, -0.0013794041, -0.0123208277, 0.00268539228, 0.0262600705, 0.0133127589, 0.0016722522, -0.0198908281, 2.42170677e-06, 0.00441800896, -0.0324987955, 0.0116095087, -0.00160699361, -0.0100955088, 0.0120336898, 0.0129212076, 0.00471167266, -0.0112179574, 0.0284005534, 0.00248798495, -0.0242892597, 0.00490418542, -0.00289422, 0.010088983, -0.00632356061, -0.00262176525, -0.00198386214, 0.00730896601, -0.00956038851, 0.0178156048, 0.00233952166, 0.017411001, 0.000296111015, -0.00760262972, 0.0090317931, -0.016614845, -0.0172935352, 0.00299700233, 0.00226610573, -0.0184290353, -0.0167323109, -0.00938419, -0.00937113818, 0.00851625, 0.0120206382, -0.00185334496, 0.0284266565, -0.0124970265, 0.00356964674, -0.00242925226, 0.027330311, 0.00445063831, 0.0171630178, -0.00864676759, 0.0067542675, 0.0100498283, 0.00185987074, 0.00755694881, -0.0222140346, 0.0143568972, -0.0221879315, 0.032002829, 0.0106958887, -0.0173065867, -0.0337517597, -0.0007206999, -0.00693046581, 0.0128885778, -0.00724370731, 0.0087381294, 0.00230852375, -0.00114936754, 0.00336734508, -0.00452894857, -0.00755042257, 0.00215353468, -0.00243904116, 0.0154401902, 0.0406952761, 0.0415305868, 0.0114985695, 0.0137565183, -0.0192904491, -0.0193426553, 0.0123012504, 0.000324049848, -0.0164712761, 0.0170586035, 0.0182071552, -0.00817037933, 0.0163929667, -0.0107611474, 0.025307294, 0.0141741727, -0.0222140346, -0.0190816224, 0.0166409481, 0.0185465012, 0.00761568127, -0.00718497438, 0.000764749479, 0.0024896164, 0.0221748799, 0.015988363, -0.00625503901, -0.00046741488, -0.00964522455, 0.0123991389, 0.00494007766, -0.0154793458, 0.0113680521, 0.0269387607, 0.0196036901, -0.00128559489, -0.00483240094, 0.00608862936, 0.0071915, 0.000952775881, -0.00445716409, 0.00458115526, -0.00319440966, -0.00409824168, -0.0105523197, -0.0108459834, -0.031089209, -0.0208566561, -0.0283744503, -0.00275554531, 0.0175937247, 0.0130190952, 0.00714581925, -0.00712624146, 0.0108394576, -0.0185465012, 0.0126993284, -0.000461296906, 0.0164190698, 0.0104544312, 0.0127254315, 0.00695004361, -0.00185823929, 0.00847709551, 0.00824216381, -0.00118036533, -0.00297416188, -0.0220052078, -0.0230623968, -0.0182332601, -0.0432012081, -0.0164190698, 0.00579496566, 0.00490744831, -0.0142263798, -0.00557308644, -0.0179461222, 0.00743948296, 0.00271965307, -0.0224098116, 0.019577587, 0.0234017428, 0.00956038851, 0.00764178485, -0.036336, 0.00415697414, 0.00220574136, -0.00449631922, 0.0155576561, 0.00339344842, -0.0204520524, -0.0101607675, 0.0149964318, -0.00190555176, -0.0060298969, 0.000496781257, -0.0038274182, -0.010800302, 0.00184681907, -0.0149703287, -0.00374584505, 0.00977574196, 0.0293141734, 0.0141872251, -0.00654217694, -0.0167975705, -0.014761501, 0.00652259961, -0.0202171206, 0.0115181468, 0.0166540015, 0.00295295264, -0.0117726559, -0.0132670784, -0.005556772, -0.00013123102, -0.00715234503, -0.0268343464, 0.0168236736, -0.00299537089, 0.010460957, 0.0148789659, 0.0108459834, 0.00478998292, 0.0130974054, 0.0109112421, -0.0202301741, 0.0149833802, 0.00533162942, 0.0107350433, 0.00854888, -0.00253692898, -0.010088983, 0.011426785, -0.0016999871, 0.0162232947, -0.00116241921, 0.00587327592, -0.00386657333, -0.00114610454, 0.00424507353, 0.0139000872, -0.00624525035, -3.73707589e-05, -0.0107676731, 0.0188336391, -0.00715887081, 0.0167845171, 0.0259207245, -0.0243023112, -0.00942334533, 0.00170488155, 0.0119945351, -0.0173196383, 0.00728286244, -0.0239238106, 0.00366100878, -7.17844887e-05, -0.00200833404, -0.0190424658, -0.00705445698, 0.00371647859, -0.0122164143, 0.0201127082, -0.00948860403, 0.00886212103, 0.0219530016, -0.0152052594, 0.014448259, -0.0195384324, 0.00422549574, 0.0120597938, -0.0302277952, -0.0173065867, 0.0014585302, -0.0119749578, -0.00937766396, 0.01755457, -0.00743295718, -0.000403583806, 0.00720455218, -0.0232712254, -0.00114447309, -0.0106110526, 0.012510078, 0.036649242, 0.0116747674, 0.0132148713, 0.00700877607, -0.0195514839, -0.0188988969, -0.000503715, 0.00380131486, 0.00224489672, 0.00274575665, -0.00351091404, -0.034508761, -0.0180505347, 0.0259337761, 0.00672816392, 0.020439, -0.00668900879, -0.000525739801, 0.00507385796, -0.00832047407, -0.00365448301, -0.0158708971, 0.00597768975, -0.0086141387, 0.0054034139, 0.0139000872, 0.0158317424, -0.0303844158, -0.0254247598, -0.0110809142, 0.0299406573, 0.00763525907, 0.00885559525, -0.0016755152, 0.0062778797, -0.00185008196, -0.00488787098, 0.0123143019, -0.00231504976, -0.0113876294, -0.00859456, -0.0054034139, 0.0102195, 0.0224620178, 0.0154662933, 0.0007206999, 0.000551843259, 0.0153749315, 0.0122881988, 0.010317388, -0.00539362524, 0.00802028459, -0.020491207, 0.0013516692, -0.0229318794, -0.0110548111, 0.00472798711, -0.00891432818, 0.00120973168, -0.00383068109, 0.0041406597, -0.00944944844, -0.002350942, 0.00472798711, -0.00800070725, -0.0323421732, 0.00629419414, -0.00455831503, 0.00574602187, 0.00761568127, -0.0140175521, -0.0131104579, -0.0041896035, -0.00439190539, 0.00136553671, -0.0146440351, -0.00693046581, 0.00478998292, -0.00561224157, -0.00145037286, -0.000266948569, -0.00912968162, 0.00129783084, -0.00990625937, -0.00490418542, 0.0178547595, -0.0116617158, -0.00205075229, 0.0214961898, 0.00837920699, -0.0151530523, 0.00100579858, 0.0279045869, -0.017241329, 0.0177372936, 0.00925367326, -0.00205564662, -0.038528692, 0.0151661038, -0.00718497438, -0.00669553457, -0.015218311, 0.0260512419, 0.00803986285, 0.00943639688, -0.0112505862, -0.00735464692, 0.00105555821, -0.023597518, 0.00216495479, 0.000599563587, -0.00564487092, -0.0163799152, -6.32830188e-06, -0.0029170604, 0.0109242937, -0.015988363, -0.00672816392, -0.0048617674, -0.0153879831, -0.00628766837, 0.013051725, 0.00568076316, 0.00531205209, 0.00689131068, -0.00466599176, -0.0127058541, -0.0019137091, 0.0252942424, -0.013965345, -0.00477366848, -0.0017897177, -0.01108744, -0.0256335866, -0.0203606896, 0.0124905007, -0.00627135392, -0.020517312, 0.025307294, -0.00796807837, 0.0112505862, 0.00245209271, 0.00290727173, -0.00149115955, -0.000747211219, 0.00722412951, -0.0257249493, -0.00504122861, -0.00932545774, -0.0055176164, -0.00804638863, 0.0110156555, 0.011485518, -0.0151138976, -0.0197994672, 0.0170586035, 0.0147876041, 0.0230232421, 0.0035794354, -0.00692394, 0.00778535381, -0.0226447415, -0.00284201303, 0.0282961391, -0.00520763826, 0.0390246585, -0.00208827597, 0.00993888825, 0.00957344, 0.000834902516, -0.0249418467, -0.0120663196, -0.00542951748, 0.0234278459, 0.0190685689, 0.00251898286, -0.00284690736, 0.0216528121, -0.0161058288, 0.000837757601, 0.00281917257, -0.0238585528, 0.0263383798, -0.00905789714, 0.0111526987, 0.0238455012, -0.00230362942, 0.000915252196, -0.010715466, 0.0127123799, -0.0052892114, -0.0105588455, 0.0124643967, 0.00325314235, -0.0143568972, -0.0188858453, -0.0108133536, -0.00955386274, -0.000206584329, -0.00580149144, 0.015531552, 0.00469209487, 0.00740032783, -0.00827479362, -0.0202954318, -0.0124578709, 0.0019577588, -0.0134171732, 0.000593445613, -0.0214700866, -0.00590264238, 0.0199299827, -0.00950165559, -0.0149442246, -0.00148218649, 0.0199299827, 0.00463009952, -0.00400035363, -0.00193328667, -0.00169019832, -0.0175154153, -0.00855540577, 0.00133617036, 0.00536752166, -0.00812469888, -0.0200605, 0.0362837948, 0.0121054742, 0.0157273281, -0.00405256031, 0.0166931562, -0.0328381397, 0.00519458624, -0.00926019903, 0.00332166394, -0.0106763104, 0.0261165015, 0.00700225029, -0.0221096221, -0.00927325059, 0.0157273281, -0.00471167266, 0.0244589318, -0.0103826467, -0.0142133282, -0.0276174489, 0.0197733622, -0.0087381294, -0.00660743564, 0.00446042698, -0.00824869, 0.0149442246, -0.0178156048, -0.00531531498, -0.00332492683, -0.00131822424, -0.00721107796, -0.0166801047, -0.00759610394, -0.00220084703, -0.00654544, 0.0098866811, 0.0421048626, -0.00811817311, -0.00816385355, -0.0041210819, -0.0124774491, 0.0103500178, -0.020439, 0.00614083651, -0.0138348285, -0.00708708633, -0.0094298711, 0.0352396555, 0.00916231051, -0.00732854335, 0.00691088801, -0.0207261387, 0.00984752644, 0.0246677604, 0.0185726043, -0.00288932561, -0.0006138389, -0.0262600705, 0.0120858969, -0.0183898807, -0.000672163849, -0.00770051777, -0.000279592408, -0.0224750694, 0.0021714808, 0.012425242, 0.00760262972, 0.00780493114, 0.0128428973, 0.0207913984, -0.00110042351, -0.0274347253, 0.00866634492, 0.0179461222, -0.0101346644, 0.00775925023, -0.00264297426, -0.0074264314, -0.0203476381, 0.0197081044, 0.00554045709, -0.0269909669, 0.0116290869, 0.00697614672, 0.00834005233, 0.005586138, -0.00957344, 0.0190163627, 0.0315590687, -0.00193654967, 0.0126144923, 0.00483566383, -0.0048617674, 0.0145396218, 0.00365122, -0.0155054489, 0.0239238106, -0.0259076729, 0.0161841381, 0.00668248301, -0.00794197433, 0.0153357768, -0.00477693137, -0.0102129746, -0.0114920437, 0.00988015532, -0.0231537595, 0.00232973276, -0.00175871991, 0.00497597, 0.00553393131, 0.00888169836, -0.0160405692, -0.00648997026, -0.00376868551, 0.0303583108, -0.00056775, 0.00679342262, -0.0136651555, 0.0113288974, -0.00485524163, -0.0209871735, -0.0417394154, -0.0145135177, 0.0324204825, -0.00568728894, -0.0238063466, -0.010343492, -0.0181157943, 0.00316341175, -0.0250071045, 0.0350308307, -0.004502845, 0.000245535572, -0.00418307772, 0.0207391903, -0.0120010609, -0.024706915, -0.00239172857, -0.020517312, 0.0170847084, 0.00709361257, -0.00878381077, 0.022083519, 0.00776577601, -0.00922756921, -0.00976921618, -0.00993888825, -0.00363490544, -0.00925367326, -0.0140045006, -0.00171467033, -0.0162624493, 0.00435601315, -0.0239238106, 0.0101542417, -0.00276533421, 0.00308510149, 0.0163277071, -0.0137304142, -0.0114072077, 0.00443758629, -0.0221879315, 0.00527942274, 7.52003689e-06, 0.0112505862, 0.00754389679, -0.00266255182, -0.0132409744, 0.0092993537, -0.0256857947, -0.0101020345, -0.0162232947, 0.0151138976, 0.0177764483, -0.00595811242, 0.0086728707, 0.0136912595, 0.00870550051, -0.0419221409, -0.0193296038, -0.00537078455, -0.0223576035, 0.0187553279, -0.00603316, -5.78150612e-05, -0.0123665091, -0.0167323109, 0.0194470696, 0.00405256031, -0.00175056257, 0.00621914677, -0.00341302599, 0.0164973792, -0.0382154509, -0.00664985366, -0.000807167613, 0.00600379333, 0.00311609916, 0.0278262775, 0.0137434658, 0.0136260008, 0.00198223069, 0.00350765092, 0.00404277164, -0.00435601315, -0.0166278966, -0.00856193155, 0.0257249493, 0.0106502073, -0.0134432763, 0.0241065361, -0.0107285175, 0.0248243809, 0.00776577601, 0.00382415531, -0.0123991389, 0.0134432763, -0.00234278454, -0.0168367252, 0.0153096728, -0.0242631566, 0.00498249568, 0.0229710359, 0.0149442246, -0.0145787764, -0.0114659397, -0.0151922079, -0.000543685921, 0.00938419, -0.0181549489, -0.0181157943, -0.0234931037, 0.00247003883, 0.0139000872, 0.00289422, -0.0106241042, 0.00828784518, -0.00277512288, -0.0236758292, 0.0213395692, 0.00944292266, 0.00589611661, 0.0177633967, -0.0125166038, -0.0158186909, -0.0327859335, 0.0378761068, -0.00157681154, -0.0361532792, -0.000666453678, -0.000512688071, 0.00706098322, -0.0274347253, -0.00575907342, 0.00367732346, 0.00385352178, 0.00317646354, 0.0309064835, -0.0321855545, -0.0232190173, -0.00842488836, 0.0122229401, 0.0298101399, 0.0154401902, 0.0096974317, -0.0125883883, -0.0187944844, -0.00931240525, -0.0202823803, 0.00133698608, -0.0059156944, 0.0156490188, -0.034065, 0.00351743982, 0.0234800521, 0.0078245094, 0.00225305394, -0.00244556693, 0.00623546168, -0.0189641565, -0.0251376219, 0.00124154531, 0.0098866811, -0.00973006058, 0.0287398975, -0.00132067141, -0.0203476381, 0.00827479362, 0.044454176, 0.00554372, -0.00479324581, -0.00294316397, -0.0129473107, -0.0184420869, -0.010859035, 0.00459420728, 0.00544583192, 0.00671511237, 0.0160666723, -0.00497923279, -0.017215224, 0.0182854664, -0.030436622, -0.0030965216, -0.0153096728, 0.0209349673, -0.0224489663, 0.00700877607, 0.00691741426, -0.0143568972, 0.00754389679, 1.14521235e-05, -0.0156751219, 0.00399382785, -0.0255944319, 0.00196102168, -0.0106175784, 0.00469862111, -0.0308281742, -0.0043886425, 0.0035239656, -0.00176850869, 0.0107415691, -0.0163538102, -0.00862066448, 0.0203084834, 0.0249157418, 0.00875770766, -0.0119945351, 0.0126144923, 0.000714174064, 0.00553393131, 0.0471689329, -0.00605273712, -0.00365122, 0.00350112515, -0.00652259961, -0.0306454487, 0.00185334496, -0.000995194, 0.00769399153, 0.0166017935, -0.00326456269, 0.0115442509, 0.0075895777, 0.0174762588, -0.0270692762, -0.00159231038, 0.0241326392, -0.00131496124, 0.0021029592, -0.0035337545, -0.021430932, 0.0035239656, 0.0164190698, -0.0111396471, 0.00227263151, -0.0121903112, -0.00239825435, 0.0120924227, -0.0355528966, 0.00550130196, 0.0068195262, -0.000116445859, 0.00670858659, 0.0145265693, -0.0239890702, 0.0183376726, 0.00390246557, -0.00984100066, -0.0148137072, -0.0028925885, 0.00517174602, -0.013991449, 0.0175023619, -0.0142916385, 0.00377521128, 0.0090317931, 0.0017995066, -0.00331513816, 0.0109830266, 0.0124709234, -0.0185726043, -0.03322969, -0.0235453118, -0.00953428447, 0.00144711, 0.0107807247, -0.0150486389, 0.00194470701, -0.00883601792, 0.0183115695, 0.0369624831, 0.0150877936, -0.0237280354, -0.00281917257, -0.0180244315, 0.0153227244, -0.0114724664, 0.0099258367, 0.0387636237, 0.00305736647, -0.0481608659, -0.0254247598, -0.000868755451, -0.0192773975, -0.020439, 0.027669657, -0.00236399355, 0.00931240525, 0.0316373818, -0.00665964233, 0.0388941392, -0.00312262517, -0.00364469411, -0.0029725302, 0.00191207766, -0.0137173627, -0.0151661038, 0.00335755618, -0.00290727173, -0.00539036235, 0.00787019, 0.000143059136, -0.0193035, 0.0241848454, 0.00639534509, 0.0130647765, -0.010487061, -0.0244458802, 0.0321594514, 3.87982909e-05, -0.00648018112, -0.00241946336, -0.00957996584, 0.0113484748, 0.0111788018, -0.0231668111, 0.000946250046, 0.0146570867, -0.00158496876, -0.00571012963, -0.00494007766, -0.0186248105, -0.0171630178, 0.0108329318, -0.0359705538, -0.00743948296, -0.00250919396, -0.00770704355, 0.00463336241, 0.0115834055, 0.00427444, -0.0073807505, 0.00684563, -0.0312197246, -0.0250854157, -0.00169835566, -6.44938773e-05, -0.00609515561, 0.0213917773, -0.0128428973, -0.00497923279, 0.00717192283, -0.0272258986, 0.0122359917, -0.0111526987, -0.00384047, -0.0190946739, -0.0146831907, 0.00448000431, -0.0294446908, -0.0190816224, 0.0138870347, -0.00511953887, -0.0211568456, -0.00070724031, 0.00256303232, -0.0137826214, 0.0178156048, -0.00328903459, 0.0102978107, 0.00580801768, 0.0220443625, -0.00290400884, -0.0055371942, -0.0103956992, 0.0102847591, 0.0410607271, -0.02701707, -0.00173261645, 0.00685868133, -0.000955223106, -0.0203476381, 0.00413739681, -0.000567342155, -0.0466990694, -0.0147223454, -0.00516195735, 0.000270007557, -0.00247982773, 0.00582759501, -0.0123860864, 0.0054229917, -0.00910357758, 0.00171630178, 0.0140306037, 0.0135346381, 0.0132540269, -0.0104740094, -0.0131039312, 0.0169933457, 0.0178417079, -0.00426138798, 0.0048160865, 0.0115311984, 0.00577538833, 0.0162232947, 0.00331350672, 0.000816548534, -0.000693372858, 0.00498249568, 0.00121299468, 0.0230493452, -0.0160666723, 0.00815080199, -0.0105588455, 0.0101020345, -0.03419552, 0.00120891596, -0.0320550352, 0.00438537961, -0.0112636387, -0.00212416821, 0.00995194, -0.00550782774, 0.00301331701, -0.0106045259, -0.0192121379, 0.0164973792, -0.0242892597, 0.0129538365, 0.0120597938, 0.0156229148, 0.00597768975, -0.0193948634, -0.0078832414, 0.0168497767, -0.00141774362, -0.0138478801, -0.014761501, 0.0168758798, -0.00693046581, 6.59214056e-05, -0.00506733218, 0.011172276, 0.00636924151, -0.032603208, 0.013652104, -0.0198647249, 0.00271475874, -0.0191468801, -0.00556982355, -0.00652259961, -0.00182561, -0.000389308465, -0.0238846559, 0.0155576561, 0.0231668111, 0.0028925885, 0.00823563803, -0.0121185267, 0.0215875525, -0.0109503968, 0.0146701382, -0.0158056393, -0.000677873963, -0.000313037453, -0.00760915549, 0.00589285372, 0.0176198278, -0.0199299827, 0.0013997975, -0.0135607421, -0.0101933973, -0.00695004361, 0.0141741727, -0.0118966475, 0.0267560352, -0.00993888825, -0.0168889314, -0.0286876913, 0.00054694881, -0.00396772427, 0.00438211672, 0.00937766396, -0.00201975438, 0.00790282, 0.00775272446, -0.00105800538, 0.00200996571, 0.0114202593, 0.01536188, 0.00282569835, -0.00624525035, -0.00116731366, 0.0106893629, -0.00961912144, 0.0171238631, 0.002778386, 0.0254639145, -0.0147092938, -0.0109308194, -0.004502845, 0.0115181468, 0.0243545175, -0.012170733, 0.00350438803, 0.00190392032, -0.00174566812, -0.00514564244, 0.00118933839, 0.00429075444, 0.0191468801, 0.000220043919, -0.0116356127, 0.00304431468, 0.0303844158, -0.00748516433, 0.0199560877, 0.00993888825, -0.0193035, 0.00361532765, -0.0206478294, -0.00235420489, 0.0233886912, -0.0130974054, -0.00306062936, -0.00795502588, 0.0146048795, -0.000123685488, 0.0177111905, 0.00647365535, -0.00546214683, -0.0244719833, 0.0011379472, -0.0218355358, 0.0191729832, -0.00831394829, 0.00741338, 0.000268783944, -0.00984100066, 0.0205695182, -0.00727633666, -0.00896000862, 0.0058993795, 0.00202138582, -0.0190163627, -0.00577212544, -0.0100106727, -0.0109047163, -0.0277740695, 0.0261556562, -0.00112897414, 0.00807249174, -0.00587653928, -0.0141611211, -0.0118705435, -0.00822258648, 0.0336734504, -0.00326456269, -0.01063063, 0.0275652427, 0.0120206382, -0.00806596596, 0.0270953812, -0.0187422764, 0.0318984166, -0.00845751725, -0.0131822424, -0.0308803804, 0.0105001125, -0.0235844664, -0.0130908797, -0.0228013638, -0.00867939647, 0.00387309934, 0.0120402165, 0.00656501763, -0.00923409499, -0.0233495347, 0.00971048325]
|
04 Dec, 2020
|
Python calendar module : formatyear() method
04 Dec, 2020
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions.
class calendar.TextCalendar(firstweekday=0) can be used to generate plain text calendars. formatyear() method is one of the methods of TextCalendar instance.
formatyear() method in Python is used to get m-column calendar for an entire year as a multi-line string.
Syntax: formatyear(year, width=2, lines=1, c=6, m=3)
Parameter:
year: year of the calendar
width: [optional] Specifies the width date column
line: [optional] Specifies the number of lines that each week will use.
c: [optional] Number of spaces between month columns
m: [optional] Number of months in a row
Returns: Return a m-column calendar for an entire year.
Depends on the first weekday as specified in the constructor or set by the setfirstweekday() method.
Code #1:
# Python program to demonstrate working of formatyear() method
# importing calendar module
import calendar
text_cal = calendar.TextCalendar(firstweekday = 0)
year = 2018
width = 4
# printing formatyear
print(text_cal.formatyear(year, width))
Output:
2018
January February March
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 7 1 2 3 4 1 2 3 4
8 9 10 11 12 13 14 5 6 7 8 9 10 11 5 6 7 8 9 10 11
15 16 17 18 19 20 21 12 13 14 15 16 17 18 12 13 14 15 16 17 18
22 23 24 25 26 27 28 19 20 21 22 23 24 25 19 20 21 22 23 24 25
29 30 31 26 27 28 26 27 28 29 30 31
April May June
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 1 2 3 4 5 6 1 2 3
2 3 4 5 6 7 8 7 8 9 10 11 12 13 4 5 6 7 8 9 10
9 10 11 12 13 14 15 14 15 16 17 18 19 20 11 12 13 14 15 16 17
16 17 18 19 20 21 22 21 22 23 24 25 26 27 18 19 20 21 22 23 24
23 24 25 26 27 28 29 28 29 30 31 25 26 27 28 29 30
30
July August September
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 1 2 3 4 5 1 2
2 3 4 5 6 7 8 6 7 8 9 10 11 12 3 4 5 6 7 8 9
9 10 11 12 13 14 15 13 14 15 16 17 18 19 10 11 12 13 14 15 16
16 17 18 19 20 21 22 20 21 22 23 24 25 26 17 18 19 20 21 22 23
23 24 25 26 27 28 29 27 28 29 30 31 24 25 26 27 28 29 30
30 31
October November December
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 7 1 2 3 4 1 2
8 9 10 11 12 13 14 5 6 7 8 9 10 11 3 4 5 6 7 8 9
15 16 17 18 19 20 21 12 13 14 15 16 17 18 10 11 12 13 14 15 16
22 23 24 25 26 27 28 19 20 21 22 23 24 25 17 18 19 20 21 22 23
29 30 31 26 27 28 29 30 24 25 26 27 28 29 30
31
Note that the earliest year for which a calendar can be generated is platform-dependent.
Code #2: Since m=2, the number of month shown in a row will be 2.
# Python program to demonstrate working of formatyear() method
# importing calendar module
import calendar
text_cal = calendar.TextCalendar(firstweekday = 0)
# default value of width is 0
# printing formatyear
print(text_cal.formatyear(2018, 5, c = 3, m = 2))
Output:
2018
January February
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 7 1 2 3 4
8 9 10 11 12 13 14 5 6 7 8 9 10 11
15 16 17 18 19 20 21 12 13 14 15 16 17 18
22 23 24 25 26 27 28 19 20 21 22 23 24 25
29 30 31 26 27 28
March April
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 1
5 6 7 8 9 10 11 2 3 4 5 6 7 8
12 13 14 15 16 17 18 9 10 11 12 13 14 15
19 20 21 22 23 24 25 16 17 18 19 20 21 22
26 27 28 29 30 31 23 24 25 26 27 28 29
30
May June
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 1 2 3
7 8 9 10 11 12 13 4 5 6 7 8 9 10
14 15 16 17 18 19 20 11 12 13 14 15 16 17
21 22 23 24 25 26 27 18 19 20 21 22 23 24
28 29 30 31 25 26 27 28 29 30
July August
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 1 2 3 4 5
2 3 4 5 6 7 8 6 7 8 9 10 11 12
9 10 11 12 13 14 15 13 14 15 16 17 18 19
16 17 18 19 20 21 22 20 21 22 23 24 25 26
23 24 25 26 27 28 29 27 28 29 30 31
30 31
September October
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 1 2 3 4 5 6 7
3 4 5 6 7 8 9 8 9 10 11 12 13 14
10 11 12 13 14 15 16 15 16 17 18 19 20 21
17 18 19 20 21 22 23 22 23 24 25 26 27 28
24 25 26 27 28 29 30 29 30 31
November December
Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 1 2
5 6 7 8 9 10 11 3 4 5 6 7 8 9
12 13 14 15 16 17 18 10 11 12 13 14 15 16
19 20 21 22 23 24 25 17 18 19 20 21 22 23
26 27 28 29 30 24 25 26 27 28 29 30
31
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : formatyear() method
|
https://www.geeksforgeeks.org/python-calendar-module-formatyear-method/?ref=lbp
|
Pandas
|
Python calendar module : formatyear() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python calendar module : formatyear() method, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00421604328, 0.0147908991, -0.00350950845, 0.0416044705, 0.0235472973, 0.00609241426, 0.0200493708, 0.0610168, -0.00871585868, 0.00243378058, 0.00730858045, 0.00696110446, -0.0134820724, 0.0125091393, -0.0182077475, 0.0218562465, -0.00375853316, 0.0193196703, 0.00905754324, 0.0100362683, 0.0197018944, 0.00235704612, -0.0420909375, 0.0272884555, -0.00904016942, -0.00173738052, 0.00316203246, -0.0208369829, 0.0331955478, 0.0243928209, 0.0178834368, 0.0221342277, 0.00294775562, -0.0297902841, -0.0323384404, -0.0307168867, 0.0184278153, 0.0535576493, 0.0283077192, 0.00561753, -0.00532507105, 0.0105864387, 0.0373652615, 0.0186710488, -0.00626036106, 0.00545537472, 0.0255510751, -0.019736642, -0.000923707266, -0.0435040072, 0.0161228906, -0.0306473915, 0.034747608, 0.00653255032, -0.00368035096, 0.02209948, -0.0255742408, 0.0294891372, -0.00779504701, -0.0103374142, 0.053326, -0.0218446646, -0.000641021, -0.0336125195, 0.0109397061, 0.00115752977, -0.0243928209, 0.0154858511, 0.0124164792, -0.0089533, 0.0185783878, -0.00969458278, -0.00338499621, -0.0136673925, -0.0312265176, -0.031990964, 0.0237673651, 0.0025858013, -0.055457186, 0.0272189602, -0.0218909942, -0.0218099169, -0.0371336117, 0.0164935328, 0.00293472526, 0.000347476103, 0.0543452613, -0.029813448, -0.00227162498, 0.0114551289, 0.0434345119, 0.0222268868, -0.0202578567, -0.0254120845, 0.021022303, -0.0227017719, 0.0448012501, 0.034747608, -0.0500828885, -0.00242509367, 0.000380051963, 0.00644568168, -0.0315971598, -0.0271726307, 0.00264805742, -0.0263155233, 0.0309717022, -0.0408168584, 0.0108702108, -0.0122659057, -0.00769080408, -0.0190185253, -0.0138527136, -0.026153367, -0.0572640598, 0.0309253726, -0.0256437361, -0.0274969414, 0.0137484707, -0.0118836826, 0.00808461, -0.0435040072, 0.0378285646, 0.0500828885, -0.0318519734, -0.0213118661, 0.00278270431, -0.0263618529, -0.0148719763, -0.0144781703, -0.00272623962, -0.0124048963, -0.00544958329, -0.00431449478, -0.00844366942, 0.00351240416, 0.00860003289, 0.0336588509, 0.0232114028, 0.0106443511, -0.0312496834, -0.00941081066, 0.0140032861, -0.0196903124, -0.0272652917, -0.029512303, 0.0287941862, 0.0474884, 0.00160418125, 0.0206632446, -0.0361606777, -0.0466776229, 0.000352181494, 0.0297439527, 0.0129840234, -0.0469092727, -0.00100044161, 0.0300682653, -0.032477431, 0.00140003907, -0.0151152099, -0.00799195, 0.0255279094, 0.00544089638, 0.034747608, -0.0119879255, 0.0444769412, 0.0143391797, -0.00973512232, 0.027937077, -0.00128638546, -0.0247866288, -0.0331955478, -0.0136094801, -0.00285654305, 0.00266687898, 0.0303694103, 0.00255105365, -0.00664258469, -0.0109339142, -0.0325700939, -0.00487045664, -0.00124801835, 0.0205126721, 0.02388319, 0.0257363953, 0.0549475513, 0.0234083068, -0.0264081825, -0.000937461562, 0.00146736263, 0.00594763225, -0.0238136947, -0.00240771985, -0.00468224054, -0.0122774886, -0.00194586616, 0.0412338302, -0.0343538038, 0.032361608, -0.0273347851, -0.00756339636, -0.0143391797, -0.000907057372, 0.00552487, 0.0250877738, -0.0127639547, 0.00927182, -0.00840313, -0.022006819, -0.00341105694, -0.00470251, -0.00520924572, -0.043411348, -0.01351682, 0.028516205, -0.00204866123, -0.00341974385, 0.0281455629, -0.0431102, -0.00985673815, 0.0360216871, -0.0104184914, -0.0152889481, -0.0121616628, -0.00574493827, 0.0400524102, -0.0143623454, -0.0297671184, -0.0193196703, -0.0232808981, -0.0201651957, -0.032176286, 0.0113161383, 0.0483686738, -0.00518897641, 0.0214161091, 0.0224122088, 0.0334503651, 0.000243595219, 0.0643989, -0.0338905, -0.0223195478, -0.027728593, 0.0294891372, 0.0221342277, -0.00596500607, 0.024276996, -0.000875205384, 0.00722750276, 0.0239526853, -0.00219489075, -0.00621403102, -0.00458668452, -0.0182193294, -0.0357437059, 0.00923128147, -0.0290026721, 0.0226091109, 0.00738965813, 0.00404809648, 0.0166556872, 0.00116404495, -0.0365081541, -0.00360506447, -0.00844366942, -0.00448244158, 0.00625456963, 0.0163197946, -0.0206169151, 0.00945134927, -0.0361375138, 0.0380602144, -0.0116809877, -0.0200262051, 0.0101057626, -0.00467644911, -0.012926111, 0.00344290887, 0.0366008133, 0.0111250263, 0.0180919226, 0.0359753594, 0.0332882106, 0.00865215436, 0.0248561241, -0.0117678568, -0.00209499127, -0.0155669292, -0.0290490016, 0.0259912126, -0.0190185253, -0.0298366137, 0.0185783878, -0.0039872881, 0.00463301456, 0.00345738721, 0.00203997432, -0.00342553505, -0.0118373521, -0.0117910225, 0.0112408521, -0.0119879255, -0.0193312541, 0.0116867796, -0.0136789754, 0.0161576383, 0.0130187711, 0.00440425938, 0.0390563123, -0.0243464913, -0.0306473915, -0.0312496834, -0.0145476656, 0.0477200486, 0.00351819536, 0.0303462446, 0.002762435, -0.0144434227, 0.00707693, -0.0193544179, -0.0107370112, 0.0258985516, 0.0186942145, -0.0294659734, -0.00803828053, -0.0175127946, -0.00568123395, 0.0206400808, -0.0117852306, -0.0544842519, 0.00379038509, 0.0118373521, 0.00349792605, -0.0147329867, -0.0394037887, -0.0284698755, -0.0139917042, 0.0119995074, 0.0293964781, 0.00172435015, 0.0284698755, 0.00427974714, -0.03493293, -0.035234075, -0.0494805947, -0.016586192, 0.055457186, 0.00703059975, 0.0249487832, 0.000665271946, 0.0133430818, 0.0566154383, 0.00418129563, 0.00928340293, -0.0152657833, -0.0236978699, -0.00195889641, 0.00065694697, -0.0129376929, -0.0258058906, -0.0115246242, 0.0173274744, -0.00236428529, -0.0525847152, -0.0345391221, 0.00595921511, -0.0133546647, -0.00959034, 0.017964514, -0.0121964104, -0.00585497217, -0.0337051824, 0.0055943653, 0.0038830454, 0.0307400525, 0.00539746182, 0.0195165742, 0.0133546647, -0.0232577324, -0.0547159, 0.0334503651, 0.0116114924, 0.0160997249, 0.00403072266, -0.00511948112, -0.0489246324, 0.0169336684, 0.0105980206, 0.00402782718, 0.00584049383, 0.0223195478, 0.00781242084, -0.0234430544, -0.0267788246, -0.00228031189, 0.0340294912, -0.0172000658, 0.0243928209, 0.0167367645, -0.0123933144, -0.0234198887, 0.00605766661, -0.00575941615, -0.0221342277, -0.0205126721, -0.0305778962, 0.00940502, 0.0542526022, 0.0143160149, 0.0233619753, 0.0218099169, -0.0433881804, -0.0263386872, 0.0318983048, -0.0121269161, -0.00359637756, 0.0170031637, -0.0319678, 0.0313191786, 0.0766763911, -0.00945134927, -0.0162271336, 0.0186826307, -0.00671208, 0.00788191613, -0.00326337968, 0.0198524669, -0.0258753859, 0.0361838453, -0.0119300121, -0.00886064, 0.0177560281, 0.0207443219, 0.0596268959, 0.00990306865, -0.00400466193, 0.00875060633, 0.0244391523, -0.0403998867, -0.0609704703, 0.00859424192, 0.0133430818, 0.0193660017, -0.0250182785, 0.0239526853, -0.0540209487, -0.00833363459, -0.0206748284, -0.000726804137, 0.0105343172, 0.00140003907, 0.0148140639, 0.00548433093, 0.0340063274, 0.0217983332, 0.00697268685, -0.00537140109, 0.0278675836, 0.0155437635, 0.0395891108, -0.0237673651, -0.0132272569, -0.00314176292, 0.0193544179, -0.02999877, 0.00756918779, -0.0324079357, -0.0197018944, 0.0122543238, 0.00681053149, 0.0224006251, -0.0394501202, 0.0171305705, 0.0612021238, 0.00799774099, -0.00498049054, 0.0351414159, 0.0320141315, -0.0366471447, 0.0417897925, -0.0122195762, -0.00902858749, 0.00546695711, 0.0131461788, 0.0238368604, -0.059117265, -0.0324079357, -0.0284467097, -0.0200725365, 0.0543915927, 0.0457510203, 0.0571250692, -0.0229681693, -0.00433186861, 0.0252267644, 0.0218794122, -0.0227249358, 0.00395254046, -0.0217520036, -0.0162271336, 0.0103142485, -0.0172232315, 0.0254120845, 0.0288636815, -0.00986832101, 0.0392184667, -0.0288405158, -0.0486929826, -0.00616190955, -0.00539746182, 0.0382223688, -0.0140496166, 0.0106038125, 0.00686844392, 0.00146736263, 0.0160533953, 0.00376142864, 0.00904596131, -0.032963898, 0.00118503824, -0.0245318115, 0.0448012501, 0.00405678339, 0.00762130879, 0.0287478548, -0.0359290279, -0.0276590977, -0.00060880708, -0.0154626863, 0.00152455131, 0.0125902174, -0.0116867796, 0.00899384, 0.000920087739, -0.0387551673, 0.00175330648, -0.0133430818, 0.00264950516, -0.00453166757, -0.0227017719, 0.0231187418, 0.00129579625, -0.0490172952, 0.0100304764, -0.0228523444, -0.010169467, 0.0397049338, -0.011750483, -0.0114377551, -0.0143160149, 0.00981040858, -0.0388941579, -0.0173969697, -0.0255510751, -0.0172811449, -0.00927182, -0.00225425116, 0.00669470616, 0.00509631587, 0.0111887306, -0.0113914246, -0.0109976185, 0.0301145948, -5.46550946e-05, 0.00480675278, -0.0055161831, -0.00019147381, -0.0137368878, 0.0340989865, 0.00442742463, -0.00990886, 0.0491562858, 0.0244623162, -0.0287941862, 0.00884326641, 0.0204663426, 0.0110265743, 0.033959996, -0.0227828491, 0.00405678339, 0.00827572215, 0.00914441235, -0.0159607343, 0.014605578, 0.00612716191, -0.00195744867, -0.0126017993, -0.0209064782, 0.0168873388, -0.000445927639, 0.0531870089, -0.0206864104, -0.0131925093, -0.00832205266, 0.0124975564, -0.00679894909, -0.00162445079, 0.034747608, -0.0157059189, 0.0133778295, -0.00248590182, 0.011350886, -0.00438688556, -0.0410716757, 0.00893013552, 0.0217520036, 0.00330970972, 0.0152889481, -0.0243001617, -0.0118605169, 0.0110034095, -0.0153468605, 0.00247142371, 0.0128913634, -0.041743461, -0.0125207221, -0.00273203081, -0.0180340093, -0.0081541054, -0.00971195661, 0.00882589258, 0.000715583563, -0.000781097275, 0.00516291568, -0.0123469839, -0.0200030413, -0.0203968473, -0.00779504701, -0.0231650732, 0.00246708025, -0.0365313217, -0.0103084575, 0.0110265743, 0.0224701203, 0.0013812175, 0.0170494933, -0.0362070091, -0.0198524669, 0.0288868453, 0.0217635855, -0.0189142823, 0.0103142485, 0.0644915625, 0.00534244487, 0.0429943763, -0.0171074066, 0.0117331091, -0.00327206659, -0.00814252347, -0.0095613841, -0.012335401, 0.0334272, 0.0107080545, -0.00195744867, -0.00672366237, 0.00642251642, 0.00156653801, -0.0416971296, 0.011843144, -8.4063875e-05, -0.00865215436, 0.0169336684, -0.0128681976, 0.0293501467, 0.0211033821, 0.0195513219, -0.00700164307, -0.000732233457, 0.0158101618, 0.0017764715, 0.000871585857, -0.0127176251, 0.0204779245, -0.00588103291, -0.00979303475, 0.0263618529, 0.0408631898, -0.00500076031, -0.00632985635, 0.00707113836, 0.0222616345, -0.0237673651, 0.0196903124, 0.0237673651, 0.0104879867, -0.0210454687, -0.0109744528, 0.00813094061, -0.0172116496, -0.00949188881, 0.0228870921, 0.00421025185, 0.00959034, 0.0189721938, 0.00142537593, 0.011258225, 0.01776761, 0.00905754324, 0.0160302296, -0.0239295196, 0.0349097662, -0.00437819865, 0.0105980206, -0.0180687569, 0.0308327116, -0.014512918, -0.0263155233, 0.0165630262, -0.000478865491, 0.00213987357, 0.00473725749, 0.016875755, -0.0221805573, -0.0224353727, -0.0115709538, -0.000485380675, 0.017466465, -0.00306647643, -0.0116057014, -0.0138295488, -0.042739559, -0.0289795063, -0.019342836, -0.0147677343, 0.00847262517, -0.0051802895, -0.00679315766, -0.000702553254, -0.00152310356, 0.000107862368, 0.0102447532, 0.0186710488, 0.0107022636, -0.0221805573, -0.0125786345, -0.0183119904, -0.0107717589, -0.0177212805, 0.00609241426, -0.00460116239, 0.00241495878, 0.00496890815, -0.0291416608, 0.0270568058, -0.0076097264, -0.000253187, -0.0138642965, 0.0139222089, 0.0016896025, -0.0248097926, 0.00454904139, 0.0424384139, 0.0134009942, 0.011541998, 0.025458416, 0.0168873388, -0.0331028886, 0.0174317174, 0.0376895741, -0.0353499, 0.0102042146, -0.0118199782, 0.00771976076, -0.0311338585, 0.0435735025, 0.023975851, 0.00881431065, 0.00654413318, 0.00773713412, -0.0219720714, -0.00321994512, 0.0216825083, 0.0285625346, 0.00799195, 0.0108470451, 0.00114594714, -0.00543510541, 0.0363228358, -0.00152744702, -0.0122890715, 0.0234083068, 0.00574493827, -0.00469671842, -0.0202462729, -0.0275896024, -0.00601133658, -0.0196555648, 0.0144318407, -0.010071015, 0.0194934085, 0.00516291568, 0.0241843369, 0.00308674597, 0.00456351927, -0.0159144048, -5.32525228e-05, -0.0354657248, 0.00845525134, -0.0325469263, -0.0190185253, -0.00278125657, 0.0410021804, -0.0139453737, 0.0132504217, -0.0278907474, -0.00188940123, -0.0167136, 0.0186710488, 0.013621063, 0.00531638414, 0.0157638323, -0.00755760493, 0.0312960148, -0.0111887306, -0.0041233832, 0.023582045, 0.00172579789, 0.0122195762, -0.0268714838, -0.0132156741, -0.0137484707, -0.00719275512, 0.0364849903, -0.0114725027, -0.00186913181, 0.011738901, 0.00852474663, 0.0398670919, 0.00596500607, 0.0246013068, -0.0100999717, -0.0446159318, 0.0153121129, 0.0169452503, 0.0199219622, 0.000998269883, 0.021613013, -0.00963087939, 0.0298829433, 0.00366876833, 0.00965404417, -0.0132620046, -0.0105748558, 0.0289331768, 0.00376432436, -0.0181382522, 0.00652096793, 0.00140148692, -0.0236283746, 0.0324079357, 0.010951288, -0.00564069534, 9.60083707e-05, -0.0152773652, 0.00238889805, -0.0287478548, 0.00979303475, 0.0105458992, -0.0117794396, 0.00506446417, -0.0103779528, 0.00545247924, -0.00814252347, -0.00420735637, -0.0234778021, 0.0191575158, 0.0164008718, 0.00401334884, -0.00828151312, 0.0181498341, 0.028423544, 0.0385930128, 0.0106675159, -0.00559146935, -0.0133315, 0.0384076908, 0.000130665489, 0.0100188944, -0.0157175027, 0.023975851, -0.0162966289, 0.0023005812, 0.010071015, -0.00842629559, -0.0295586325, -0.0160997249, -0.0297671184, -0.0191111844, -0.00829888694, 0.0273579508, -0.00412048725, -0.00910387374, -0.0742208958, 0.0152657833, 0.0362765044, 0.0244391523, -0.0269178152, 0.0150572974, -0.0020226005, 0.00200233096, 0.00458668452, 0.00920811668, -0.041558139, -0.0156595893, -0.0439209789, 0.026663, -0.000291192206, -0.00138628483, -0.008686902, 0.0159491524, 0.0116636138, -0.0542062707, 0.0146750733, 0.0227944311, 0.0120690027, -0.00803248864, 0.0523993932, 0.0313886739, 0.0195281561, 0.00294486, -0.0164703671, 0.00270162662, 0.043226026, -0.0192270111, -0.0046677622, -0.00866373722, -0.0317593142, 0.00490520429, -0.00605187519, -0.0327785797, 0.00469092745, -0.00516870711, -0.0149414716, -0.0553181954, 0.00451718923, -0.050221879, -0.00124150317, -0.0455193669, -0.00228031189, 0.000211743245, 0.0618970729, 0.00954980124, -0.00699006068, 0.0202926043, -0.0390331484, 0.0112987645, -0.00111843867, -0.00256408402, -0.0176749509, 0.0380370505, -0.0194818266, -0.0221226439, 0.00799195, 0.00147387781, -0.0287478548, -0.0129724406, -0.0266166683, -0.00684527913, -0.0309948679, -0.000724270474, -0.0398439243, -0.0286320299, 0.000270379824, -0.0314350054, -0.000190025981, -0.0292574875, -0.0262228623, 0.0115593709, -0.00430580787, 0.0090865, -0.0178139415, 0.0464923, -0.00219778623, -0.0259217173, 0.056059476, 0.00654992415, 0.0022166078, 0.00323442323, -0.0400524102, 0.0341684818, -0.013621063, 0.00182280166, 0.0136442278, 0.0485076644, -0.00280297385, -0.012729208, -0.0251572691, -0.00681632292, 0.0171769019, 0.0282382239, -0.0294428077, -0.0183235724, -0.0448012501, -0.030786382, 0.00379617629, 0.0372957662, 0.01342416, -0.00153323822, -0.00826413929, -0.0336588509, -0.00942818448, -0.0184973106, 0.0123238191, -0.00682790531, 0.0386625081, 0.00125163782, 0.0247171335, 0.00202694396, -0.02388319, 0.0252035987, -0.0208601486, 0.0202462729, -0.025759561, 0.0416971296, 0.0137832183, 0.0155205987, 0.0198872145, -0.00329812733, -0.00707113836, -0.0146287438, -0.000255177758, -0.0106501421, -0.00162879424, 0.00327206659, -0.0297439527, -0.0158217456, -0.0127639547, 0.0272189602, 0.00721012894, -0.00783558562, -0.00724487659, 0.0173622221, -0.00496311672, 0.00704218214, -0.0214740224, -0.0136905583, -0.0184393972, -0.00422473, -0.0147329867, -0.0135399848, -0.00267411815, -0.027937077, -0.0222732183, 0.00235125492, -0.0073317457, -0.0109628709, 0.00332708354, -0.021022303, -0.00986253, 0.00359348184, 0.0179992616, 0.00252354518, 0.019145932, 0.0131809264, -0.000618941791, -0.0146750733, -0.0348634347, -0.0101289283, 0.0121500809, -0.0110613219, 0.0231187418, 0.0017706803, 0.0256205704, -0.0112813907, 0.0039670188, -0.0109049585, -0.00360216876, -0.0468629412, 0.010169467, -0.0104184914, -0.0198061373, 0.013713723, -0.0256437361, -0.0164008718, -0.0142001901, 0.000647898123, -0.0190648548, -0.00994939916, -0.0265008435, 0.0224932861, -0.00699585211, 0.00175185862, 0.00744757103, 0.000648622052, 0.0156248417, -0.00023508929, 0.0044795461, -0.0195629038, -0.0097177485, -0.0194934085, -0.00255974056, -0.0113045555, 0.00289852964, 0.0105806468, 0.0178834368, -0.0125670517, 0.0426237322, -0.0176981147, 0.0220647324, -0.015497434, 0.00628931727, 0.00250617135, -0.0142581025, 0.00872165, 0.0115014585, 0.0190416891, 0.0100131026, 0.0137368878, -0.00591288507, -0.00594763225, -0.0101752579, -0.0203157682, 0.0180803388, -0.0109628709, 0.00275085238, -0.00641672499, -0.0155090159, -0.00263357931, 0.00425658235, 0.0132272569, 0.00894171838, 0.0156016769, 0.000360144506, 0.0044332156, -0.0138874613, -0.00493995193, -0.00758656114, -0.0235241316, -0.00567254703, -0.00452008471, 0.0104184914, -0.00242075021, 0.00516581116, -0.00699006068, -0.023095578, -0.00564069534, 0.0040654703, -0.0118605169, -0.000792679843, 0.000982343918, 0.0155205987, 0.00772555172, -0.000326844689, -0.0116057014, -0.0132851694, 0.0101405103, -0.0430175401, -0.0272421259, -0.0171537362, 0.036346, -0.00396991428, -0.0148488116, 0.0126133822, -0.0174317174, -0.0215319358, -0.0258753859, 0.0309717022, -0.00569571229, -0.000947596272, -0.000922983396, -0.00810777582, 0.0382455364, 0.0135284029, -0.000595414778, -0.025759561, 0.0351877473, -0.0103316223, 0.00294775562, 0.0163197946, 0.0154742682, -0.0173043087, 0.00996677298, -0.000316529, 0.029604964, 0.00926602911, -0.00845525134, 0.00231940299, 0.0131925093, 0.023095578, 0.0039033147, -0.0149530545, -0.0170263294, -0.000799195, -0.0299292747, 0.000539673783, 0.00232809, -0.0158912409, -3.27116177e-05, -0.00382802822, 0.0138295488, 0.016678853, -0.0343538038, 0.0279834084, 0.0193196703, -0.00726804184, -0.007105886, 0.00938764587, 0.0108065065, 0.0166325215, 0.0219373237, -0.00974670425, -0.00214276928, 2.75311468e-05, -0.00535113178, -0.0028970819, -0.0121616628, 0.00198785285, 0.0155785112, -0.0298829433, -0.0212423727, 0.00435503386, -0.0129608586, -0.0182540771, 0.0155669292, 0.0249024536, 0.0032025713, -0.021914158, -0.0119879255, 0.0226554405, 0.01835832, -0.0179181844, -0.0140264519, -0.016088143, 0.0150109669, -0.000917192083, -0.00794562, -0.00243957178, -0.0241148416, 0.0210802164, -0.00730858045, -0.0180687569, 0.0244854819, 0.0056146346, 0.0117562748, -0.0167715121, -0.00225425116, -0.00580574619, 0.0177907757, -0.00310991099, 0.0186247192, -0.00893013552, 0.0148719763, -0.00353846489, 0.00299698138, 0.0144318407, -0.00367166405, -0.0359521918, -0.00195020961, -0.012439644, -0.00362822949, 0.00936448108, -0.015196288, 0.0186826307, 0.0162734631, -0.0237673651, -0.0141538596, 0.00402203575, 0.0200957, 0.0061966572, -0.000851316436, 0.0300451, -0.020721158, -0.00426237332, -0.00227886415, -0.0221921392, -0.011744692, -0.00723329419, -0.000542207505, -0.0183814857, 0.0161460564, -0.0171884838, -0.00692056539, 0.0148835592, -0.0102563361, 0.0055712, 0.0249951128, 0.0092254905, 0.0052700541, -0.0359290279, 0.000291011238, 0.00207327399, 0.0235588793, 0.00616770051, -0.0119647598, -0.00354136061, 0.01342416, 0.0180108435, 2.49522218e-05, -0.010951288, 0.0336820148, 0.0360216871, -0.00599975372, -0.017860271, -0.0184393972, 0.00367745524, -0.029512303, -0.00480096135, 0.0102852928, 0.0251341034, 0.0094455583, -0.014512918, -0.0398207605, -0.0123701487, 0.011153983, 0.0225164499, -0.0207443219, -0.00465907529, 0.0264545139, 0.0312496834, 0.0165166967, -0.0462143198, 0.0111134434, 0.00879114494, 0.0134936552, 0.0265240092, -0.0089127617, -0.0393111296, 0.00866952818, -0.00406257482, -0.0206169151, -0.0235936269, -0.012138498, 0.0036311252, -0.0131114312, 0.0149762193, 0.0129376929, 0.0228639264, 0.026639834, -0.00140583038, 0.00647463789, -0.00763868261, 0.0140496166, -0.0161692202, -0.00914441235, -0.0344233, 0.013817966, -0.0246939678, 0.0275664367, -0.0293964781, -0.000518318499, -0.023095578, 2.03373056e-05, 0.0375505835, -0.000206494908, -0.0058607636, -0.00666575, 0.00809619296, 0.0261765327, -0.00909229089, -0.00470251, 0.00495443, 0.0132388389, -0.0137484707, 0.0193660017, 0.0141886072, -0.00444479845, 0.00730278902, 0.000235270272, 0.0120574208, 0.00318809319, -0.0119531779, -0.00800353289, -0.0100999717, 0.0244159866, 0.00097076135, -0.00769080408, -0.0225627813, 0.0391489714, 0.00947451498, 0.000454252615, -0.0124048963, 0.00091863994, 0.0452645533, 0.00740124099, 0.00369482907, -0.0133662466, -0.0361375138, 0.025852222, -0.00921969861, 0.0119184302, -0.0192965064, -0.00767922169, -0.00235270266, 0.0140496166, -0.00627773488, 0.0159839, 0.0271263011, 0.0197250601, 0.0170379113, 0.0003362555, 0.00890697073, 0.0584686436, 0.0053685056, 0.00707113836, 0.0151383756, 0.0020226005, -0.0140727814, 0.0197713897, -0.0152078699, -0.00586365908, -0.0316434912, -0.00779504701, 0.0232693162, 0.00521503715, 0.0224585384, -0.0211381298, -0.0167946778, -0.0147329867, -0.00158535969, -0.00507894205, -0.0143044321, -0.0056146346, -0.0314813331, -0.00950347073, 0.0167251825, 0.0119647598, -0.00473146606, 0.00961350556, 0.0127407899, -0.0304852352, -0.0128797805, -0.00962508749, 0.0109802447, -0.0171305705, -0.0153700262, -0.0171537362, -0.00543220947, 0.0141770244, 0.0127523728, -0.00492257811, -0.0392416343, 0.0248792879, 0.00570150372, -0.00197482249, -0.00686265295, 0.0148951421, -0.0150109669, 0.0349792615, -0.0156711712, 0.01164624, -0.00351240416, 0.01351682, 0.0318056457, 0.0249256175, -0.0140264519, 0.02999877, -0.000716669427, 0.00110758, -0.0142465197, 0.0216245949, -0.000498772948, 0.00560015626, -0.0129029453, 0.00454614544, 0.0203041863, 0.0258058906, -0.00652675936, 0.0242075, -0.00912703853, 0.0234198887, 0.0194586609, -0.00222674268, -0.00634143874, -0.0186015535, 0.0363228358, -0.0123585667, -0.017466465, -0.00218909932, 0.0052700541, 0.0199914575, -0.00368035096, 0.00979303475, -0.024276996, 0.0112929726, -0.00082742743, -0.0470019318, -0.0143739274, -0.0201883614, 0.00810198393, 0.0344001316, -0.0121037504, 0.000124331287, -0.00566675607, 0.00195889641, -0.00030512744, -0.0170263294, 0.0248097926, -0.0232345685, -0.00195310521, -0.021914158, 0.00383671513, -0.0223890431, 0.00997256394, -0.0213581976, -0.00314755435, 0.00256697973, 0.00257277093, 0.00546406163, 0.00112350599, 0.00355004752, -0.0108760018, -0.00661941944, 0.0122311581, -0.0109397061, 0.00836838223, -0.00098089606, -0.0310875271, 0.0293964781, -0.0228523444, -0.0239295196, -0.00690319156, -0.00211526081, -0.00289418618, 0.0357205421, 0.00758077, -4.99496891e-05, -0.0156248417, 0.0155669292, -0.0144897532, 0.0355352201, 0.00451429375, 0.000294992729, -0.00540035777, 0.012532304, 0.00364849903, -0.00979882572, -0.00590130221, 0.0280992333, -0.00703639071, 0.00820622686, 0.0175475422, -0.0133083342, 0.00400755741, 0.00514554186, -0.012636547, 0.00587524148, -0.00422183471, -0.0142465197, 0.0161228906, 0.000236356136, -0.0101868408, 0.0101578841, -0.00798036717, 0.001899536, -0.00660783704, 0.02209948, 0.00245839334, 0.0146634914, -0.00656729797, 0.00543510541, -0.0031185979, -0.00143261498, 0.00286088651, 0.0164703671, -0.0130535187, -0.0211960413, -0.0140959471, 0.0062487782, 0.0122195762, -0.0104648219, -0.00438109459, 0.00566965155, 0.00871585868, -0.00830467883, -0.00165340712, 0.00832205266, 0.0100015206, -0.0587466247, -0.00436082482, 0.0236167926, 0.0116114924, 0.00269728317, 0.0106385602, 0.0214856043, -0.0350950845, 0.00756918779, 0.0145824132, 0.00701901689, 0.00297960755, -0.00470830128, -0.0180687569, 0.0190185253, 0.0130766835, 0.0185088925, -0.00193283579, 0.0108065065, 0.0285393689, 0.00427974714, -0.00646884646, -0.00323152775, 0.0191343501, -0.0085768681, -0.00591867603, -0.00452587614, -0.0132851694, 0.00203852635, -0.0189953595, -0.0140611995, -0.00140438252, -0.00611557905, 0.0212887023, 0.000482846983, 0.00427106, 0.000394168193, 0.0246013068, -0.0298366137, -0.0110034095, -0.0440831333, -0.0317824818, 0.0139106261, 0.0299524385, -0.0287710205, 0.00125887687, 0.0120805856, -0.0247171335, -0.0208369829, 0.0145360837, -0.0250182785, 0.0265008435, -0.0150457146, 0.00985094719, -0.0130766835, 0.0248329584, 0.0307168867, 0.00242654141, 0.000497687084, 0.00587813742, 0.00432607718, -0.0090227956, -0.000983791659, -0.0019415227, 0.00693214824, -0.00725645898, 0.00590130221, 0.00602291897, 0.00255394937, -0.0144550055, 0.0341916457, -0.000226945325, -0.0044795461, 0.00087810104, -0.00205155672, 0.015682755, 0.0121964104, -0.00632406492, 0.0176054556, 0.00788770709, -0.00503261201, 0.0109049585, 0.0335430242, 0.0176749509, -0.00180832355, 0.0290490016, 0.0082004359, 0.000289382442, 0.00460695382, 0.0049920734, -0.00465907529, 0.0158217456, 0.00708272122, 0.0149646373, -0.00742440578, 0.00763868261, -0.00634143874, 0.00147460168, -0.0179066, -0.00664837612, -0.0125091393, 0.0133662466, 0.00767922169, 0.0101810498, -0.0113914246, 0.0101347193, 0.00456931069, -0.0267324932, -0.000112386799, 0.037017785, -0.00349792605, 0.0157059189, -0.00105111522, -0.00201970479, 0.0144897532, 0.00831047, 0.0105864387, -0.00490230834, -0.00290721655, -0.00140944985, 0.0090691261, -0.0102447532, -0.00418998254, -0.0254120845, 0.00796878524, -0.00797457621, -0.0356278829, -0.0349792615, -0.0282382239, 0.00223832508, -0.0146287438, -0.0130882664, -0.00263647479, 0.0108702108, -0.0189374462, -0.00617349194, 0.0287710205, -0.00734332809, -0.00628931727, -0.0100131026, -0.0156364236, 0.0100768069, 0.0041552349, -0.00216448656, 0.0076097264, -0.00917916, -0.0227481015, -0.010957079, -0.00958454888, -0.00343422196, -0.0113335121, -0.011738901, -0.0205474198, 0.016481949, 0.0157638323, 0.00725645898, 0.00325469277, 0.00504129892, -0.00148111687, -0.0207327399, 0.00625456963, -0.00923128147, 0.0252035987, -0.0149878021, -0.00120241207, 0.00221516, 0.00190677505, 0.00127842242, 0.00549012236, -0.00822939258, -0.00646884646, 0.00946293212, 0.0151499575, -0.0148488116, 0.0050036558, 0.00900542177, 0.00360796019, -0.0333345383, -0.0068974006, 0.0185668059, 0.0293733124, 0.00310991099, -0.0154858511, -0.0179992616, -0.013713723, -0.00414075656, 0.0158217456, -0.00403940957, 0.00803248864, 0.0134820724, -0.0212423727, -0.0100188944, 0.00939343683, 0.0268483199, 0.0284003802, 0.0165398624, 0.0237094518, 0.0149646373, 0.0108760018, -0.0180803388, -0.0242538322, -0.00817727111, -0.0180919226, 0.0164240375, 0.0190416891, 0.00419866946, -0.0157059189, -0.012242741, -0.0302535854, 0.00966562703, -0.00881431065, -0.0193312541, 0.00637618639, -0.00611557905, -0.0408168584, 0.00676999241, -0.0185088925, 0.000252101134, -0.00540904468, 0.00167078082, -0.0122079933, -0.0036369164, 0.00122702494, -0.0107659679, 0.00857107714, 0.0112061044, 0.0148719763, -0.0104937777, 0.0237673651, 0.017964514, -0.000959902711, -0.0079340376, 0.00304910261, 0.00913862139, -0.0255279094, -0.0193312541, 0.0158333275, -0.0174896307, 0.0139569566, -0.0439904742, -0.0057623121, -0.0197250601, -0.0154858511, -0.0195629038, 0.0194123313, 0.0071637989, -0.005872346, 0.0124859745, 0.0272189602, -0.0238600243, -0.00335024856, 0.00241351104, 0.0113972155, 0.00681632292, 0.00938764587, 0.0105169434, -0.0273579508, -0.00129145279, -0.017373804, -0.00291156, 0.0122079933, 0.0292574875, 0.00140872598, -1.79167364e-05, -0.00631827349, -0.0277749225, -0.00845525134, 0.0287941862, -0.002690044, 0.0143391797, -0.0108470451, -0.00946293212, 0.00653834175, 0.0124743916, -0.0184046496, -0.00990886, -0.00928340293, -0.012439644, 0.0171421543, -0.0197482239, -0.0182656609, 0.0138642965, -0.0365313217, 0.0311338585, 0.0115130413, -0.00431739027, 0.00166933308, 0.00604608422, -0.00864636339, 0.0294659734, 0.00183293642, -0.00287391688, -0.00577389449, 0.00722171133, 0.0049081, 0.0225164499, 0.013713723, -0.0155090159, -0.00451429375, -0.00628931727, 0.00033752236, -0.00344001339, 0.00568413, 0.0337283462, 0.0292806514, -0.0287941862, 0.0101810498, -0.00166788523, 0.00203273515, 0.0225280337, -0.0149183068, 0.0080440715, 0.0135052372, 0.0107080545, -0.0215782654, 0.0224817041, -0.00361375138, -0.0156016769, -0.00734911952, -0.0108065065, 0.0115188323, 0.0164472014, 0.00577099901, 0.00588392839, -0.0153700262, 0.00125308568, 0.0265008435, 0.0319214687, 0.0058607636, -0.010957079, -0.0149878021, 0.0125207221, -0.0221921392, 0.018057175, 0.0148603944, -0.0152657833, 0.00931236, 0.0169336684, 0.0117968135, -0.0303230807, 0.0273347851, 0.00473725749, -0.023790529, 0.00676999241, -0.00329812733, 0.0159375705, -0.000308747, 0.00703059975, 0.00280876504, 0.0154395215, -0.0156016769, 0.0105169434, 0.0123817315, 0.00167367654, -0.0171884838, -0.00516870711, 0.01283345, -0.0149298897, -0.0175475422, 0.00198640511, -0.00044447984, -0.0191227682, -0.00213408237, -0.00699006068, -0.0154626863, 0.0038888366, 0.0105169434, -0.0139106261, 0.0224701203, -0.0057623121, 0.014512918, -0.00277546537, 0.0209064782, -0.00501234271, 0.0260838717, -0.00919074286, 0.00919074286, 0.00351240416, 0.00332129234, -0.000937461562, -0.0125902174, 0.0123585667, -0.0277517568, 0.0232577324, 0.00722750276, -0.0200262051, -0.031875141, -5.13975065e-05, 0.00239903294, 0.0164124537, -0.00527584553, 0.0166093577, -0.00786454231, -0.0109860357, -0.00740124099, 0.0049341605, -0.029813448, -0.00854791142, 0.00325758848, 0.0103953267, 0.0296512935, 0.0271726307, 0.00421025185, 0.0143275978, -0.0260607079, -0.00771396933, 0.015393191, -0.00770238694, -0.0137368878, 0.0212771203, 0.0225511976, -0.0247171335, 0.0165977739, -0.00251196255, 0.0208254009, -0.000967141765, -0.0118952645, -0.0246013068, 0.00832784362, 0.0130419359, 0.00297671184, 0.000883168424, -0.00941660255, -0.00598817132, 0.0340063274, 0.0148835592, -0.0151499575, -0.00278704776, 0.00188071432, 0.0102215884, 0.00908070896, 0.00236283732, 0.00560305221, 0.030693721, 0.00473146606, -0.00665995851, -0.00284785614, 0.00184741453, 0.00798615906, -0.00394964498, -0.00248590182, 0.00120313594, 0.00993202534, 0.00893013552, 0.00375274173, -0.0206516627, -0.0369714573, -0.0191806797, -0.020628497, -0.00864636339, 0.0203968473, 0.00194297044, 0.00130375929, -0.00757497875, -0.00365429022, -0.0185899716, 0.00560884317, -0.00121978589, 0.0125438869, 0.00603450136, 0.0118141873, 3.51774288e-05, 0.0108760018, 0.019435497, 0.0133083342, -0.00392068876, -0.00716959, -0.0156248417, -0.0225859452, -0.0128797805, -0.0495732576, -0.00734332809, 0.0124048963, 0.0121848285, -0.0139222089, 0.00210223044, -0.0298829433, 0.000625095039, 0.00394964498, -0.0220763143, 0.0250877738, 0.0330102295, 0.0133662466, 0.017952932, -0.028516205, -0.00034096092, 0.00418998254, 0.00304910261, 0.0256669, 0.00193138793, -0.0102042146, -0.00853632949, 0.0229102578, -0.00672366237, -0.00707113836, 0.0144202579, -0.00239179377, -0.0198177192, -0.00535981869, -0.0182656609, 0.00524978479, 0.0050239251, 0.0216825083, 0.00743598817, -0.00367455976, 0.00265964, -0.000714135764, -0.00559146935, -0.0246476382, 0.0187057965, 0.0158333275, -0.0040770527, -0.0098219905, -0.00236283732, -0.00405678339, 0.00332418806, -0.00225859461, -0.018752126, 0.014501336, -0.00615032669, 0.00460405834, 0.00877956301, 0.00924286433, 0.00578837236, 0.0109454971, 0.00422473, -0.00588392839, 0.0243928209, 0.010262127, -0.00516870711, 0.0123122362, -0.00704797357, -0.00913862139, 0.00398439262, -0.0031185979, 0.0206864104, -0.0127523728, 0.00729120662, -0.00699585211, -0.000771686493, 0.00609820522, 0.00606924901, -0.0150572974, -0.000725356338, -0.0148372296, 0.026153367, -0.00451718923, 0.0219952371, 0.0270104744, -0.028516205, -0.00556830456, 0.00513685495, 0.00523241097, -0.00580574619, 0.0101984236, -0.0171421543, -0.000833942613, -0.000526643475, -0.00550749619, -0.0130766835, -0.00434924243, -0.00212973892, -0.018057175, 0.0126712946, -0.0095555922, 0.0110960696, 0.0214740224, 0.00209354353, 0.0123006534, -0.0141075291, 0.0119763426, 0.00635881256, -0.0341221541, -0.0273116212, 0.012428062, -0.00855949428, -0.00514554186, 0.0120690027, -0.0128218681, -0.00545537472, 0.00504998583, -0.0160418134, 0.0109976185, -0.0143507626, 0.0104358653, 0.0206400808, 0.0142696844, 0.00926023815, 0.011258225, -0.00878535397, -0.0105111515, 0.00533954939, 0.00877377111, -0.00337341381, 0.0025018279, -0.0210107211, -0.0173969697, -0.013319917, 0.0236978699, -0.00575652067, 0.0185320582, -0.0132735865, -0.00489362143, 0.00384829775, 0.0150572974, 0.00132764829, -0.0142928502, 0.00467355363, -0.0106327683, 0.0193080883, 0.0104764039, 0.0245086476, -0.0185204763, -0.0290258359, -0.0221921392, 0.0204895064, 0.00744757103, 0.0161576383, -0.00121327071, 0.012439644, -0.00532796653, 0.00159839, 0.0194007494, -0.00469961436, -0.00850158185, -0.0117331091, -0.0039988705, 0.0112813907, 0.00651517697, 0.00502102962, -0.00134936546, 0.00291300798, 0.0180224273, 0.0116694057, 0.00704797357, -0.0034487003, 0.00787612516, -0.0238600243, -0.0126481298, -0.0287478548, -0.00277546537, -0.00487045664, 0.000493343687, -0.00858265907, -0.0125438869, 0.00746494485, -0.00379328057, -0.0153005309, 0.00385119347, -0.00708851218, -0.0276590977, 0.0116520319, -0.0180919226, 0.0053685056, -0.00594763225, -0.00701901689, -0.0140496166, -0.00312149362, -0.0146866562, 0.0110671138, -0.0215551, -0.00170552847, -0.00140800211, -0.00546406163, -0.0120458379, 0.00701901689, -0.00818306208, -0.00985673815, 0.00422473, -0.00606924901, 0.0142349377, -0.00515712425, -0.0110671138, 0.0193080883, -0.00379328057, -0.010957079, -0.00476621371, 0.0234662183, -0.018856369, 0.0132620046, 0.00721012894, -0.00722171133, -0.0306010619, 0.00236718077, -0.0174317174, -0.0067294538, -0.0152078699, 0.0264776777, -0.00376722, 0.00666575, -0.0118721, -0.00545537472, 0.0106501421, -0.0247171335, -0.000471988373, 0.0064051426, -0.0116230752, -0.02209948, -5.74602382e-06, 0.0102737099, 0.000596500642, -0.0136094801, -0.00564359082, 0.00637039496, -0.0161344726, 0.00159839, 0.0123238191, 0.005081838, 0.0112929726, 0.00604608422, 0.00310122408, -0.0116925705, 0.00533375796, 0.0177907757, -0.0181266703, -0.00637039496, -0.00596500607, -0.0148835592, -0.0196555648, -0.0141770244, 0.0163313765, -0.0036166471, -0.0147445686, 0.0239526853, -0.0140032861, 0.00935289823, 0.00109744538, 0.0054264185, 0.0014137933, -0.00509342039, 0.00143261498, -0.037203107, -0.00662521087, -0.00845525134, -0.00454614544, -0.00688002678, 0.0170494933, 0.00745915342, -0.0111018615, -0.0205705855, 0.0196671467, 0.00784137752, 0.0219373237, 0.00487914355, 0.0085768681, 0.0155090159, -0.0266861636, -0.0106675159, 0.0332650431, -0.0107485941, 0.0391489714, -0.000140438249, 0.0120110903, 0.00768501312, 0.0160302296, -0.0130651006, -0.0197598077, -0.00456641521, 0.0178023577, 0.00454904139, -0.00015663571, -0.00374984625, 0.00951505359, -0.00994360726, 0.00241495878, -0.00313307601, -0.022018401, 0.0248329584, -0.00960771367, 0.00721012894, 0.0152194528, -0.00665995851, 0.000993926427, -0.0245549772, 0.0219373237, -0.00756339636, 0.000729337859, 0.0238136947, -0.00212539546, -0.0227365196, -0.0100941807, -0.00140944985, -0.00144998881, -0.00343132648, -0.00499496888, 0.0206053331, 0.00870427582, 0.0143623454, -0.0165166967, -0.0204084292, -0.00610978808, -0.00656150701, -0.0124512268, 0.00719275512, -0.0209064782, -0.00295644253, 0.00474015297, -0.00124729436, -0.0174201354, 0.00648622029, 0.0167367645, 0.0160418134, -0.00917916, -0.00926023815, -0.00457220618, -0.00756918779, -0.0135515677, 0.00413496559, 0.00403361814, -0.00653834175, -0.0220878962, 0.0255279094, 0.00928340293, 0.00507894205, -0.0119531779, 0.0042131478, -0.0209296439, 0.0117273182, -0.0173158925, 0.00264371396, -0.0106733069, 0.0214624405, 0.000702915189, -0.0268019885, -0.00798615906, 0.00368614215, -0.0025858013, 0.0207790695, -0.0101752579, -0.00583759835, -0.0306705572, 0.0167367645, -0.0175012127, -0.00188216218, 0.000494791486, -0.0114551289, 0.0328712389, -0.00725645898, 0.00547564402, 0.00345738721, -0.00293472526, -0.0035326737, -0.0126017993, -0.00381644582, -0.0115999104, -0.00783558562, 0.00568413, 0.0397744291, -0.00945714116, -0.0153352786, 0.00237007649, -0.0070074345, 0.00903437845, -0.0172116496, 0.0155553464, 0.00180977129, -0.00721592037, 0.00503550749, 0.0368324667, 0.00962508749, -0.00915599521, 0.0139453737, -0.0139917042, 0.0173158925, 0.0305084, 0.00962508749, 0.017952932, -0.00191111851, -0.0166093577, 0.0246939678, -0.0152078699, 0.00458378857, -0.0111366091, -0.00378748938, -0.0112176863, -0.00200522668, 0.0030143552, 0.0204200111, -0.00014948711, 0.0165166967, 0.0189142823, 0.0079340376, -0.0292111561, -0.00679894909, 0.00833942648, -0.00573046, -0.00322284084, 0.00324311014, -0.0209180601, -0.0251341034, 0.0188100394, 0.0124164792, -0.0090691261, 0.00634143874, 0.00593025843, -0.00227307272, 0.00498049054, -0.00850158185, 0.0114956675, 0.0148140639, -0.00396122737, -0.00292748609, 0.000470540544, 0.00449112849, 0.00832205266, 0.00787033327, -0.0273811165, 0.0206400808, -0.0368556306, 0.00656150701, 0.00401624432, 0.00175620208, 0.00327206659, -0.00898225699, -0.00702480832, -0.00858845096, 0.0134473247, -0.0200030413, 0.00274216547, 0.00338499621, -0.0013812175, 0.00494863885, 0.00746494485, -0.0110960696, 0.00574204233, 0.00648622029, 0.0248097926, 0.0034487003, 0.00204142206, -0.00936448108, 0.00834521744, -0.0110844877, -0.0153121129, -0.0309253726, -0.0164124537, 0.035118252, -0.00313307601, -0.024369657, -0.00567544298, -0.0136789754, -0.00127118337, -0.0229681693, 0.0378285646, -0.00631827349, -0.00352688227, 0.00272479164, 0.0114145894, 0.00170697633, -0.02014203, -0.00966562703, -0.013713723, 0.0231650732, 0.00708272122, -0.0101057626, 0.0224469565, 0.00693214824, -0.01342416, -0.00212394772, -0.00105980213, -0.00550749619, -0.00465618, -0.00736649334, 0.00905754324, -0.00837996509, 0.0144897532, -0.0178023577, 0.0126597127, -0.000547998759, 0.0060808314, 0.00304910261, -0.019250175, -0.0143970931, -0.00361085567, -0.0264081825, 0.000297164457, 0.00320546702, 0.0137368878, 0.00859424192, -0.00986832101, -0.0088027278, 0.00595921511, -0.0389636531, -0.00665416708, -0.00209933473, 0.0282613896, 0.0173853878, -0.0159607343, 0.0111134434, 0.012624965, 0.00195600092, -0.0365776494, -0.0184741449, 0.0021268432, -0.0241380055, 0.021022303, 0.00303752022, -0.00500944722, -0.00634723, -0.0165514443, 0.0189606119, -0.000128222295, -0.00529321935, 0.0245549772, -0.00269293971, 0.0220531486, -0.0380370505, -0.0126944603, 0.00400755741, 0.0024627368, -0.00266543124, 0.0314350054, 0.0127639547, 0.0089127617, 0.00497469958, 0.00319388439, 0.0050036558, 0.000493343687, -0.0158449095, -0.00107283238, 0.0315508284, 0.0247866288, -0.00224701199, 0.0306010619, -0.0130535187, 0.0321531221, 0.0116925705, 0.00491099525, -0.0137716355, -0.00201101787, -0.00449692, -0.00397281, 0.013713723, -0.0216940902, 0.00305489404, 0.0149298897, 0.00930656772, -0.0116694057, -0.0194123313, -0.0149298897, -0.00174606731, 0.0110207833, -0.00737228431, -0.0151267927, -0.0294659734, -0.00605187519, 0.00383961084, 0.0104648219, -0.00900542177, 0.00769659551, -0.00439557247, -0.0267093293, 0.0185320582, 0.0123122362, 0.00768501312, 0.0127407899, -0.00538298395, -0.0119995074, -0.0378748924, 0.0462838151, 0.00179674092, -0.0318056457, -0.00200812216, 0.00310411979, 0.00626036106, -0.0273347851, -0.00114015595, -0.00879114494, 0.0113277202, 0.0112871816, 0.0126597127, -0.0383150317, -0.0222384706, 0.00249893218, 0.0189258642, 0.0228523444, 0.0260143764, 0.0103432052, -0.00777188176, -0.00678157527, -0.0180108435, -0.0165282786, 0.00886064, -9.38366429e-05, 0.0182656609, -0.0349792615, 0.00881431065, 0.011547789, -0.00308385026, 0.00464459695, 0.00199074834, 0.0212655365, -0.00257421867, -0.0179066, 0.00917336904, 0.0039033147, -0.011443546, 0.014211772, -0.0034544915, -0.022597529, -0.00583470287, 0.032176286, 0.00248590182, -0.00155350775, 0.00511079421, 0.00277980883, -0.0162271336, -0.00862319861, 0.0226438586, 0.00697847828, -0.000507459859, 0.0245086476, 0.00280297385, -0.0233503934, 0.0248561241, -0.0162155516, -0.0114609199, -0.0107659679, 0.0162155516, -0.0153005309, -0.00544089638, 0.00618507434, -0.01657461, 0.0122195762, -0.00707693, -0.010957079, 0.00867532, -0.0236862879, 0.00311570219, -0.0100594331, 0.00679315766, -0.0256437361, 0.00374695053, 0.0162387155, 0.00503550749, 0.00702480832, -0.0160765611, -0.0141422767, -0.00224266853, 0.0124743916, 0.0151267927, -0.0123585667, 0.0104995696, 0.0167830959, 0.00428843405, 0.0373420976, -0.00864057243, 0.00520345429, 0.00863478053, 0.00491099525, -0.0278675836, -0.00642830785, -0.00936448108, -0.000995374168, 0.0113219293, -0.000122521524, 0.0221458096, 0.00540035777, 0.0146171609, -0.0254352503, 0.00354136061, 0.0218099169, 0.0102447532, 0.000410094188, -0.0110786958, -0.00208340865, 0.000612064672, 0.00812515, 0.000195455301, 0.00613295287, -0.0124628088, 0.000667443674, 0.00542062707, -0.0268483199, -0.00653255032, -0.004045201, -0.00201246561, 0.00223687734, 0.0110613219, -0.0240916759, 0.0241843369, -0.00151152106, -0.0121037504, -0.010163676, 0.00935289823, -0.00894171838, -0.017072659, 0.012926111, -0.0112292692, 0.00188361, 0.00840313, -0.00146374304, -0.000811501464, 0.0171769019, 0.012532304, -0.0182656609, -0.0294428077, -0.0260143764, -0.0121964104, 0.0028970819, 0.00535981869, -0.00938764587, -0.00762130879, -0.0118547259, 0.0167599302, 0.0356510468, 0.0231303256, -0.0323847719, 0.00843787752, -0.0269178152, 0.0212887023, -0.0122774886, 0.011744692, 0.0403998867, 0.00594763225, -0.0442452878, -0.0221805573, 0.00686265295, -0.0187984575, -0.0115362061, 0.0280065723, 0.00516870711, -0.00208196091, 0.0381528735, 0.000636677549, 0.0303462446, -0.0023787634, -0.00240771985, -0.00649201171, 0.00197192677, -0.019145932, -0.0127407899, 0.00449402397, -0.000850592507, -0.00160418125, -0.00205300469, 0.000215543769, -0.0243001617, 0.0191806797, 0.00957296602, 0.00648622029, -0.00555672171, -0.00988569483, 0.0395196155, 0.0110149924, -0.0126597127, -0.00322573632, -0.00505577726, 0.00735491049, 0.0124048963, -0.0137021402, -0.000316529, 0.0231650732, 0.00564938225, -0.00323731895, -0.00890697073, -0.0120110903, -0.0247634631, 0.00356163, -0.0397281, -0.000188578168, -0.00562042603, -0.00858845096, 0.00675841, 0.00313307601, 0.0163082108, -0.00261910097, 0.0047777961, -0.0170958228, -0.0187868737, -0.00978724286, -0.00704797357, -0.00401914027, 0.0188911166, -0.000781097275, -0.0153584434, 0.0114840847, -0.0350719206, 0.0155437635, -0.0220415667, -0.000114468035, -0.026639834, -0.0116694057, 0.00981040858, -0.0282845534, -0.0182772428, 0.00708272122, -0.0018184582, -0.0106559331, -0.00562332151, 0.000628714566, -0.0103200404, 0.023975851, -0.000373174844, 0.0117157353, 0.000461129734, 0.0194470789, -0.0150225498, -0.00591867603, -0.00806723628, 0.0117620658, 0.031990964, -0.0160070658, -0.00792824663, -0.00760393497, -0.0100420592, -0.0206632446, 0.00125308568, -0.0111655649, -0.0317361504, -0.0225743633, -4.64658769e-05, 0.00705376454, -0.00844946, 0.00545827, -0.0132620046, 0.00510789873, -0.0142696844, -0.00175041077, 0.014512918, 0.025273094, 0.0099841468, -0.0113103464, -0.0177791938, 0.0160302296, 0.0163545422, -0.00987411197, 0.000151115906, 0.0103721609, 0.00799774099, 0.0264776777, 0.0148603944, -0.000451718923, 0.00161721162, -0.0137948012, -0.0015129688, 0.0164008718, -0.0143507626, -0.000802090624, -0.0182193294, 0.000324853958, -0.0175359603, -0.0116694057, -0.0293038171, 0.0204547588, 0.00240192842, 4.6827834e-05, -0.00137976964, 0.00471119676, -0.00313018053, -0.00489651738, -0.0164587852, 0.0194702446, -0.0264776777, 0.0191690978, 0.00323731895, 0.003552943, 0.014512918, -0.0252499301, -0.0150572974, 0.0138990441, -0.00263792276, -0.00184451893, -0.0162618812, 0.0175243784, -0.00871585868, -0.00313886744, -0.00459537143, 0.00411180034, 0.0117852306, -0.0256437361, 0.011258225, -0.00926023815, 0.0149298897, -0.0249024536, -0.00660204561, -0.000985963386, -0.00866373722, 0.00284061697, -0.0212655365, 0.0136442278, 0.0180687569, 0.00281021302, 0.0174317174, -0.00927182, 0.0286088642, -0.000783269, 0.0117736487, -0.0185783878, 0.00146301917, 0.00765605643, -0.0125786345, -0.00323442323, 0.0148719763, -0.0176170375, 0.0066310023, 0.00124874222, -0.00522372406, -0.00122485321, 0.0119531779, -0.00264081825, 0.0193660017, -0.014014869, -0.0212771203, -0.0157290846, 0.000762275653, -0.00814252347, 0.0102968747, 0.0132156741, 0.00459826691, 0.00819464494, 0.00612716191, -0.00698426925, 0.0026842528, 0.00823518354, 0.0205590017, -0.00240916759, -0.010169467, -0.00610399665, 0.0108180894, -0.0157985799, 0.00974091329, 0.00552776549, 0.0177444462, -0.00796299335, -0.0176402032, -0.000577317, 0.000928774651, 0.0227712672, -0.0168641731, 0.00350082153, -0.000695676077, 0.00317651057, -0.00588682434, 0.00431449478, -0.0015549555, 0.0124048963, 0.0121153332, -0.0151499575, 0.00372957671, 0.0173506401, 0.000943252817, 0.004835709, 0.00516002, -0.0191922635, -0.0038888366, -0.02881735, -0.0108354632, 0.0206632446, 0.000929498521, -0.00381644582, -0.0200609528, 0.0125902174, 0.00326337968, 0.00116404495, 0.0112176863, -0.00800932385, -0.0214740224, 0.00397570571, -0.0220299847, 0.0238136947, -0.0137253059, 0.0114725027, 0.00290432107, -0.0117968135, 0.0191922635, -0.00433766, -0.0147677343, 0.00771396933, -0.00485308282, -0.0195629038, -0.00558567839, -0.00439846842, -0.0220878962, -0.0261765327, 0.0218214989, 0.00119879248, -0.00645147264, -0.000427829946, -0.00513106352, -0.0158217456, -0.0129608586, 0.0355583876, 0.0088027278, -0.00616770051, 0.0265935045, 0.0046474929, -0.00747652724, 0.0346086174, -0.0102273794, 0.0361838453, -0.0146171609, -0.0032923359, -0.023396723, 0.0204315949, -0.0205126721, -0.00903437845, -0.0131809264, -0.00696110446, 0.0106269773, 0.00656729797, 0.00693793921, -0.0191690978, -0.0128566157, -0.000936013705]
|
09 Feb, 2023
|
Python calendar module : prmonth() method
09 Feb, 2023
The calendar module allows the output of calendar-like programs and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar is extended indefinitely in both directions. class calendar.TextCalendar(firstweekday=0) can be used to generate plain text calendars. prmonth() method is one of the methods of TextCalendar instance. prmonth() method in Python is used to print a month’s calendar as returned by formatmonth().
Syntax: prmonth(year, month, width=0, lines=0) Parameter: year: year of the calendar month: month of the calendar width: [optional] Specifies the width of the date columns, which are centered line: [optional] Specifies the number of lines that each week will use. Returns: Return a month’s calendar.
Code #1:
Python3
# Python program to demonstrate working of prmonth() method
# importing calendar module
import calendar
text_cal = calendar.TextCalendar(firstweekday = 0)
year = 2018
month = 9
# default value of width is 0
# printing prmonth
print(text_cal.prmonth(year, month))
Output:
September 2018
Mo Tu We Th Fr Sa Su
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
None
Code #2: With parameter width
Python3
# Python program to demonstrate working of prmonth() method
# importing calendar module
import calendar
text_cal = calendar.TextCalendar(firstweekday = 0)
# default value of width is 0
# printing prmonth
print(text_cal.prmonth(2018, 10, w = 5))
Output:
October 2018
Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
None
Code #3:
Python3
# Python program to demonstrate working of prmonth() method
# importing calendar module
import calendar
text_cal = calendar.TextCalendar(firstweekday = 0)
# giving value of width = 6, line = 2
# printing prmonth
print(text_cal.prmonth(2018, 10, 6, 2))
Output:
October 2018
Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
None
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : prmonth() method
|
https://www.geeksforgeeks.org/python-calendar-module-prmonth-method/?ref=lbp
|
Pandas
|
Python calendar module : prmonth() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Python calendar module : prmonth() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0209908318, -0.00265806681, -0.0119376145, 0.0466977581, 0.0437923074, 0.00135140331, -0.00952693261, 0.0302756429, -0.0115375891, 0.0225067195, -0.00185538328, 0.0322968289, -0.0157378614, -0.00683728466, -0.0175906122, -0.00859003, -0.0107691176, 0.032633692, 0.0295808613, 0.0260648448, 0.0366128944, 0.0212961156, -0.0238331221, -0.00598986121, 0.0115691693, -0.0123902755, -0.00616355659, -0.0160326157, 0.00938481838, 0.0162536837, 0.00178695773, 0.0444239266, 0.0115691693, -0.0246331729, -0.0364865735, -0.0362339243, 0.0105796317, 0.0552456826, 0.0117902365, -0.000330284529, -0.014927282, 0.028612379, 0.0276649483, -0.0152957272, -0.0278754886, 0.0207066033, 0.0136219347, -0.0138956364, 0.0243805256, -0.0391604304, 0.00685307523, -0.0389077812, 0.0504453704, 0.00587932765, -0.0123060597, 0.00550561957, -0.0103901457, 0.0218540467, -0.0285281613, -0.0434554443, 0.057645835, -0.0290966202, 0.0155378478, -0.0108743878, 0.0370339751, -0.00222382811, -0.0244436879, 0.0103217205, 0.00979010761, -0.0193380937, 0.0293071605, 0.0176748279, 0.00846896879, -0.0147904307, 0.00822158437, -0.0195381064, 0.023538366, 0.00563720707, -0.0466977581, 0.00993748568, -0.021959316, -0.00887425896, 0.0181274898, -0.00903216377, 0.00528981583, -0.0299808886, 0.054108765, -0.0294966456, 0.00267254142, 0.0420027189, 0.0239383914, 0.0420448259, -0.0158957653, -0.0046397741, 0.0206855498, -0.00683728466, 0.0230751783, 0.0412658304, -0.0432449058, 0.00549509237, 0.00142640807, 0.00819000416, -0.013348232, -0.0240857694, 0.0132113816, -0.00965325627, -0.00708993245, -0.0458134897, 0.0149483355, 0.0110322926, 0.00589511823, 0.00630040793, -0.0203697402, -0.0198749714, -0.0508664511, 0.0163694806, -0.0114428457, 0.0233699344, -0.000496413733, 0.0148430662, 0.0244015791, -0.029896671, 0.0224225037, 0.0344653875, -0.0343180113, -0.0288439728, -0.00804788899, 0.0111165093, 0.0135061368, -0.0371392444, 0.0104059363, -0.00903216377, 0.00962693896, -0.0653094873, -0.0167274, 0.0287597552, -0.00344495988, 0.0425290689, -0.0166537091, 0.0196854845, 0.00812157802, -0.00822684821, 0.0412026681, -0.00980589818, -0.00618987437, -0.0344653875, 0.0268859509, 0.0206644945, -0.00830580108, 0.00702677062, -0.0278965421, -0.0512875281, 0.0115902238, 0.0116639128, 0.00275544147, -0.0522981212, -0.0115902238, 0.00533718755, -0.017369546, -0.00513980631, -0.00632146187, -0.0241699852, 0.0478346758, 0.0244857948, 0.0343811736, -0.00238436484, 0.0422343127, -0.0191907156, -0.00107309571, 0.0152220381, -0.00704782456, 0.00552141, -0.0126745049, -0.0156431179, 0.00106059492, -0.00839528, 0.0195486341, 0.00989011396, 0.0127166128, 0.0241910387, -0.0228225291, 0.00202776282, 0.0144640943, -0.00729520898, 0.00701624341, 0.0446765758, 0.042823825, 0.0154009964, -0.0346127674, 0.0118007641, 0.0216856133, 0.00646884, 0.00489242189, -0.00135271915, 0.00728468178, 0.0110007124, 0.0201065652, 0.0330126621, 0.00185801496, 0.0230962317, -0.0432870127, -0.0150957135, -0.00837949, -0.0102901394, -0.00179485301, 0.0245910659, -0.0273070298, 0.0306125078, 0.0279807579, -0.0310125332, 0.00787945744, -0.0101059172, 0.00271596527, -0.0290334579, -0.0166010745, 0.023727851, 0.0168326683, 0.00201065652, 0.0264227632, -0.038318269, -0.0107217468, 0.0420658812, -0.0102059236, -0.0170853157, -0.0153273074, -0.00516086025, 0.0120007768, -0.00262911757, -0.0433291197, -0.0278544351, -0.0210224129, 0.00746890437, 0.000594117388, -0.00177511491, 0.0734363347, 0.016506331, 0.0299387798, 0.0352443866, 0.015190457, 0.0102480315, 0.0363602489, -0.0237699598, 0.0105585782, -0.00724783773, 0.015116768, 0.00593722658, -0.00994274858, 0.0365497321, -0.0257490352, 0.0256858729, 0.0292439982, -0.0070004533, -0.00663200812, 0.0342759043, -0.0353286, -0.0434975512, 0.00574247679, -0.0360023305, 0.00949535146, 0.00320283882, -0.0138851088, -0.0079373559, 0.00700571667, -0.0378340259, -0.00583722, 0.0075425934, 0.00268964772, -0.0101690795, -0.00114086329, 0.00751627609, 0.0297492929, -0.0466135442, 0.0255384948, 0.0150536057, 0.00737416139, 0.0216224529, -0.0182222314, -0.00915848743, -0.0119165611, 0.0267806798, -0.0238331221, 0.00223830272, 0.035644412, 0.0188854337, 0.0170221552, 0.027075436, 0.00468188198, 0.00884794071, -0.00661095418, 0.00226856791, 0.0371392444, -0.0296861324, -0.0173063837, 0.0179485306, 0.0257279817, 0.00512401573, -0.0230751783, 0.0150851868, -0.00526613044, -0.00200539292, -0.0139903789, 0.0150536057, -0.0274333544, 0.00164352742, 0.0362760313, -0.0106849018, 0.0112112518, 0.00615829322, 0.00962167513, 0.0277702175, -0.0073320535, -0.0548246, -0.0373287313, -0.0122428974, 0.0152851995, -0.00487136794, 0.0448871143, 0.0123481676, -0.0274333544, -0.0150641324, 0.0131061114, 0.0255174413, 0.0292650517, -0.0275807325, -0.0254121702, -0.00989011396, -0.0220645852, -0.00124415942, 0.0369918682, -0.0297703482, -0.0656884611, 0.00228041084, 0.0179274753, 0.00510822516, -0.00765312696, -0.0254332256, -0.0167589802, -0.0375813805, 0.00719520263, 0.0243384168, 0.0115691693, -0.000649713096, 0.00804788899, -0.00871109, -0.0375182182, -0.0342969559, -0.000227317345, 0.0504453704, -0.0291387271, 0.0158957653, 0.000547403877, 0.018653838, 0.0591617227, 0.00977958, 0.0158220772, -0.00735310744, -0.0228435844, -0.0338758752, 0.021506656, 0.00683728466, -0.00876898877, 0.011579697, 0.000991511508, -0.0080005182, 0.00292387349, -0.0413079374, 0.0106059499, 0.0188854337, -0.00464240555, 0.0255384948, -0.027033329, 0.00172774342, -0.0387814566, 0.00232251873, 0.0128639909, 0.0168747772, 0.0136219347, 0.0156325903, 0.0220014248, -0.0139482711, -0.0526349843, 0.0245700106, -0.0116323316, 0.0183169749, 0.00668990659, -0.00631619804, -0.0324652605, 0.00635830639, -0.0228014756, -0.0174537618, -0.0027396509, 0.0364023559, -0.00484768208, -0.039328862, 0.00110467675, -0.00975326262, 0.0163800083, -0.0101059172, 0.0246752817, -0.00481873285, -0.0144114587, -0.0194749441, -0.0045529264, -0.0294755921, -0.00327126426, -0.0129692601, -0.010037492, 0.0187064745, 0.0552877896, 0.014927282, 0.0206750222, 0.0396025628, -0.0294755921, 0.0035554932, 0.0430975258, -0.00155536376, -0.0269912202, 0.0424027443, -0.0374129489, 0.0501085073, 0.0396025628, -0.0076636537, -0.0138535285, 0.0210224129, -0.0198854972, -0.00615829322, -0.0229699071, -0.0137587851, -0.00807947, 0.0364234112, -0.00897952821, -0.000696755596, 0.0153694162, 0.0222119633, 0.0510348827, 0.0221277475, 0.0101585519, 0.0332442559, 0.0360023305, -0.0478767827, -0.052003365, 0.0156536456, 0.0249910913, 0.0233067721, -0.0114323189, 0.0369497612, -0.0500242896, 0.0347180367, -0.0353075489, 0.00125731819, 0.003863408, -0.00538455881, -0.000620434876, 0.00716888485, 0.0310756955, 0.024254201, -0.0135271912, -0.023201501, -0.00944798, 0.0353496559, 0.0377077051, -0.0519191511, -0.000348048838, -0.00378182367, -0.0282123517, -0.0267806798, 0.014590418, -0.0156536456, 0.00348706776, 0.0336232297, 0.00981116109, 0.00307651493, -0.035265442, 0.0180327464, 0.0358339, -0.00559509918, -0.00572668621, 0.0257490352, 0.026696464, -0.0281702448, 0.0426132828, -0.0336653367, 0.00109743944, 0.00312388642, 0.00546877505, 0.00336337555, -0.0489294827, -0.0302966982, -0.00812157802, -0.0183169749, 0.0543614142, 0.035160169, 0.0178116783, -0.0180327464, 0.00550561957, 0.0386130251, 0.0137903662, 0.0158010218, 0.038276162, -0.0427817181, 0.0112533597, 0.0228646379, -0.0134219211, 0.0275386237, -0.0020830296, 0.00726889167, 0.0228014756, -0.0163484272, -0.0270964913, -0.00498979678, 0.00149088597, 0.0413711, 0.00161589403, 0.0108533343, 0.0212540068, 0.0242752545, 0.00549509237, -0.0253700633, 0.00123560627, -0.0303177517, -0.0050398, -0.0156115368, 0.00527402572, -0.0261069536, -0.0001847159, 0.00867424533, -0.0279175956, -0.019064391, -0.00894268416, -0.0206013341, 0.000868477277, 0.0208329279, 0.0265280325, 0.0127166128, 0.0173274372, -0.0475820266, 0.00358444243, 0.0186854191, -0.00287913368, -0.0295387544, -0.0276228413, 0.050571695, 0.00980589818, -0.0341285244, 0.035160169, -0.0253700633, -0.0127797741, 0.0191275533, -0.0214119125, -0.00885846838, -0.0277702175, 0.0214961283, -0.0395394, 0.0128745176, -0.0153904697, -0.0220014248, -0.0104690986, 0.0138535285, 0.0182959214, 0.00785840303, -0.00728468178, 0.000850055, 0.00504769525, 0.00234225695, -0.0106954295, 0.00773207936, 0.027222814, 0.015116768, -0.00695834495, 0.0129376799, 0.018801216, -0.032107342, 0.0394762382, 0.0250963606, -0.0325915813, 0.00334758498, 0.0129271522, 0.00849528704, 0.0182959214, -0.0217698291, -0.0108322799, 0.0256648194, 0.0140956491, -0.024780551, 0.0243594721, -0.00740574254, -0.00187512138, -0.0182011779, -0.0453081951, -0.00362128695, 0.00835317187, 0.0245279036, 0.00206987071, -0.00760049187, -0.00351601699, 0.00712677697, 0.00824790262, -0.000465161691, 0.0485926196, -0.00476609776, 0.0290545113, -0.0027896543, -0.0109691313, 0.00949008763, -0.0192012433, 0.00569510553, 0.0258121975, -0.00805315282, 0.0107112192, -0.0422132574, -0.0336653367, -0.00633198861, -0.00693202764, -0.00388446194, 0.0338127129, -0.0269701667, -0.0172116403, -0.0052056, -0.0244436879, -0.0093058655, 0.0148114851, 0.0201276187, -0.0111586172, -0.00752153946, 0.0181380156, -0.0197907537, -0.0160431433, -0.0369918682, -0.0180011652, -0.0398131, -0.00736889802, -0.0304440763, 0.00773734273, 0.0224014502, 0.0241278782, 0.00614776649, 0.0136956228, -0.0309493709, -0.0241278782, 0.00159484008, 0.0360233858, -0.0231383387, 0.00246858085, 0.0521717966, 0.00966378301, 0.0257911421, -0.00446871, 0.0249910913, 0.0174432341, -0.0272017606, -0.0355180874, -0.0135166645, 0.0221909098, 0.00332389935, 0.00336600724, 0.00878477935, 0.00628988072, 0.00129613653, -0.00446081487, -0.0183590837, -0.000323869637, -0.00507401256, -0.0225488283, 0.00738995196, 0.0184748806, 0.015790496, 0.0229488537, -0.0339600928, -0.0146851614, 0.0112007251, 0.00325021031, -0.00688465592, -0.0177800972, 0.0257911421, 0.00244621094, -0.00416079583, 0.0172642749, 0.0309493709, -0.00239620777, -0.0169484653, 0.0237067975, 0.0281702448, -0.0327810682, -0.00699518947, -0.00477136159, 0.0145693636, -0.0212855879, -0.0177590437, -0.009437453, -0.004963479, -0.0353496559, 0.0107743815, 0.00229488546, -0.00765312696, 0.0317494236, 0.00987432338, 0.00379498256, 0.0108954422, -0.00300019421, -0.00319231185, -0.0298124552, 0.0319810174, -0.0173169095, -0.00533192419, -0.0258964133, 0.0349075235, -0.0143377697, -0.0223382879, 0.00349233137, 0.0215592906, 0.000825711351, -0.000982958358, 0.00954798609, -0.00588985486, -0.0294755921, -0.000752022373, -0.0173484907, 0.0308230482, 0.0286755394, -0.0195170529, -0.00488979, -0.029854564, -0.0134850834, -0.0113586299, -0.024738444, 0.0338758752, -0.000488847436, -0.0223172344, 0.00742679648, 0.000249851699, 0.00258964137, -0.0135587724, 0.035118062, 0.00979010761, -0.0062530362, -0.0115902238, -0.0157062802, 0.0169274118, -0.0090269, 0.00781103177, 0.00971115474, 0.00419237651, 0.0181169622, -0.0244436879, 0.0155694289, -0.00408184296, -0.00629514409, 0.000145239668, -0.0169274118, -0.0220856406, -0.0163484272, 0.0240857694, 0.0446344689, 0.0264859255, 0.0365076251, 0.0106849018, 0.00258437777, -0.0082057938, 0.0211171564, 0.036212869, -0.0269280579, 0.0145167289, -0.00468714535, 0.0142640807, -0.0160747245, 0.0371813551, 0.00751101226, 0.015453632, 0.0165379122, -0.00472399, -0.0150430789, 0.00276070507, 0.0339811482, 0.0148325386, 0.00494505698, -0.00897952821, -0.00961114839, -0.0145062022, 0.0188538525, 0.0239173379, -0.0232646633, 0.0225488283, -0.00854792167, -0.00228041084, -0.00239226012, -0.0116112782, 0.0217277221, -0.0172011126, 0.00577405794, -0.0128850443, 0.0313704498, -0.00692150043, 0.0450555459, -0.000232416351, -0.00055924675, -0.00747943157, -0.0164852776, -0.0180959087, 0.0095058782, -0.0466135442, 0.0134956101, 0.0162115749, 0.0336653367, -0.0143693509, 0.026022736, -0.00357391546, 0.0226962063, -0.0405078866, 0.0233699344, 0.0176748279, 0.00551614631, 0.0469083, -0.027559679, 0.0211382098, -0.00340022, -0.037791919, 0.0229067449, -0.0113796843, 0.000832948659, -0.0547824912, 0.0158115495, -0.0181801245, -0.00935323723, 0.0267385729, 0.00905321725, -0.000746758829, 0.0278544351, 0.0133587597, 0.00489768526, 0.017632721, 0.0187275279, 0.015453632, -0.0168010872, 0.0126113426, 0.0153694162, 0.0329073928, 0.0145798912, 0.0202223621, -0.0193907283, 0.0369287059, -0.0216013975, -0.00991116744, 0.00309493719, -0.0197591744, 0.0373708382, -0.0136535149, -0.0167063437, 0.00698466273, 0.0176011398, 0.00733731687, 0.0467398688, 0.0137903662, -0.00281070825, 0.0111586172, -0.022633044, 0.00829527341, -0.0324442051, 0.0120955193, 0.0143588241, -0.00988485, -0.00350285834, -0.0254121702, 0.00477399305, -0.0265701413, -0.0135166645, 0.0149588631, 0.011316522, -0.00259885238, 0.0105901593, -0.00341864233, 0.00422658911, 0.0329073928, 0.0382972136, -0.0128850443, -0.0108638611, -0.0162642114, 0.00298177195, 0.0130008413, 0.016243156, 0.000930981303, 0.0225277729, -0.0297703482, -0.0166010745, 0.00157773367, 0.00344759156, -0.000151572312, -0.0166747626, -0.0361076, -0.0288650263, -0.0127166128, 0.0386761874, -0.0155483745, 0.0164747499, -0.0344864428, 0.00884794071, 0.0128955711, 0.00512927957, -0.0200434029, 0.00527139381, -0.0102164503, -0.00428185612, 0.000270741206, 0.0299808886, -0.0400446951, -0.0135166645, -0.060761828, 0.0168537218, -0.00544772111, 4.93452972e-05, 0.0117797097, 0.0196117964, 0.00652673841, -0.0555825457, 0.0123271132, 0.0146956882, 0.00511085708, -0.0162852649, 0.0338758752, 0.00731626293, -0.0175274499, 0.004587139, -0.0280228667, 0.00655831909, 0.0255595483, -0.0105901593, 0.00505559053, -0.00425027497, -0.056551028, -0.00621092832, 0.0033844295, -0.0432027951, -0.000811894657, -0.0173274372, -0.0107006924, -0.0420027189, 0.0120113036, -0.0409500189, -0.0237067975, -0.0377287567, -0.00711625, 0.00364760449, 0.0165168587, 0.0024080507, 0.00280281296, -0.0268648975, -0.0330126621, -0.00135798263, 0.0203907937, 0.00605828688, -0.0129166255, 0.0327600166, -0.00143167155, -0.00216066604, -0.0147693772, -0.00511612045, -0.0202223621, -0.00156457489, -0.0395604558, 0.0183064472, -0.00755312061, -0.0137798395, -0.0228225291, -0.00578458467, -3.9558483e-05, -0.0369287059, -0.000961904356, -0.0305914544, -0.0388656743, 0.033054769, -0.0194854718, -0.00572142284, 0.00997433, 0.0477083512, -0.0217908844, 0.00925849378, 0.034739092, -0.0179169495, -0.00817421358, 0.00410552882, -0.0239594448, 0.0578984842, -0.00378182367, -0.00406342093, 0.0157799684, 0.0283386763, -0.018274866, 0.00154615275, -0.00129547855, 0.00860055629, 0.0314125605, 0.0477083512, -0.0204329, -0.00903216377, -0.0281912982, -0.0039871, 0.00426343363, 0.0324652605, 0.0107375374, 0.00255016494, -0.0154852131, -0.0329073928, 0.00470030401, -0.0020435534, -0.000723073084, -0.00221856474, 0.0143061895, 0.0118744532, 0.0515822843, -0.00168431958, -0.000823079608, 0.0184538253, -0.0113059953, 0.0229909625, -0.032107342, 0.0363181382, 0.0161063056, 0.002236987, 0.0159378741, -0.0300019421, -0.00657937303, -0.0268648975, 0.00500821881, -0.0112323062, 0.00602144236, 0.00187775306, -0.0109375501, -0.00914269686, -0.0197170656, 0.0322126113, 0.0051819142, 0.0141272303, -0.0332442559, 0.0147799039, -0.00392920151, 0.00622671889, -0.0050608539, -0.0154009964, -0.0124534378, 0.0136850961, -0.0153904697, -0.0218961537, -0.00458450709, -0.00664253533, -0.0317283683, 0.00560036255, 0.00187117374, -0.0169484653, -0.0142009193, -0.0186433122, 0.015264146, 0.0032581056, -0.0137377316, 0.00783208571, 0.0132324351, 0.0206539687, 0.00566878775, 0.00686360197, -0.0214434937, -0.0137482584, 0.0129903145, 0.00223830272, 0.0122323707, 0.0135482457, 0.034107469, -0.0116744395, -0.0108428067, -0.0285281613, -0.00405552564, -0.0456871688, 0.00919533242, -0.0023330457, -0.0147167416, 0.00361339166, -0.0169695187, -0.0117586553, 0.00160405121, 0.00182117044, -0.00581090245, -0.00153957331, -0.042297475, 0.0335600674, -0.016506331, 0.000763207267, -0.00371866161, -0.0152746728, 4.89752092e-05, -0.00439502113, 0.013348232, 0.000927691639, -0.0159168188, -0.00961114839, 0.00422658911, 0.00217645662, 0.0113059953, -0.00307388324, 0.00984800607, -0.0145062022, 0.0337706059, -0.0291387271, 0.0208855625, 0.000875056663, 0.0244857948, -0.0238752291, -0.00334495329, -0.0203592125, 0.0250542536, 0.0148851741, -0.0257700887, -0.00776366051, -0.00843212474, 0.0190222841, -0.0151694026, -0.00851107761, 0.00465556467, 0.00659516361, -0.00683728466, -0.00460556103, -0.00517401891, -0.0132113816, -0.000215309992, 0.0214434937, 4.11724841e-06, 0.006184611, -0.00396867795, 0.000447068422, -0.00367392204, -0.000825053372, -0.00507138064, -0.0320441797, 0.0134113943, -0.00451345, 0.0185906775, 0.00879004225, -0.00367918541, -0.0100638093, -0.00435028132, 0.00277912733, 0.00335811218, -0.00171326881, -0.000367129018, 0.00381077291, 0.0234541502, 0.0136850961, 0.0104585718, -0.0255174413, 0.00863213744, -0.000717151677, -0.0243805256, -0.00981642492, -0.00815315917, 0.0181064345, -0.00382656348, -0.00842686091, -0.00453713583, -0.0213803314, -0.0263385475, -0.0131587461, 0.0173169095, 0.0150114978, 0.0175800845, -0.0111165093, -0.0114217922, 0.0268859509, 0.00642673159, 0.0180959087, -0.0218961537, 0.0345706567, -0.00713204034, 0.00587932765, 0.0122218439, 0.00390814757, -0.0206118599, 0.0124429101, -0.00745311379, 0.0309283175, 0.0192854591, -0.0107691176, -0.0251384694, 0.0121586816, -0.0046845139, -0.00231330772, -0.0308651552, -0.0164642241, -0.00360812829, -0.0147272693, -0.0191486068, 6.53002789e-05, -0.037791919, -0.0120113036, 0.00531087024, 0.0246963352, -0.00227777893, -0.0228014756, 0.000769128732, 0.00531087024, -0.00038851198, 0.00934797339, 0.000557272928, -0.00929533876, 0.0380024612, 0.00386603968, 0.00156589085, -0.00999538414, -0.0201802533, -0.00198170729, -0.00814789534, -0.00710045965, 0.00316336262, 0.00627409, -0.044297602, -0.0112217786, -0.00715309475, -0.0151483491, 0.000568786811, -0.0057108961, 0.0349496305, 0.006184611, -0.0078689307, -0.024212094, 0.00949008763, 0.0258121975, 0.0147693772, 0.00368708069, -0.00754785677, 0.0169063564, -0.00414500525, 0.00157904951, 0.00287913368, -0.00145009381, 0.015790496, -0.00157510198, -0.00778997783, 0.00476872968, 0.016316846, 0.000817816064, -0.017106371, -0.0182222314, 0.00213040109, -0.0099690659, 0.00918480475, 0.0033502169, -0.0207802914, 0.0354549251, 0.00917427801, -0.00823737495, 0.0301914271, 0.0126745049, -0.0265701413, 0.00557404477, -0.00142377638, 0.015790496, 0.0256016571, -0.0110217659, 0.0108112264, -0.00626356341, -0.00455819, -0.0240226071, -0.00552141, 0.0192538779, -0.0101322345, 0.00734258071, 0.0159273464, -0.00703203399, -0.00226856791, -0.00377919199, -0.0306125078, -0.00443712948, 0.00107572752, 0.0121692084, -0.0121271005, 0.0200539287, -0.0176011398, 0.00476872968, 0.0108638611, -0.0255384948, 0.019443363, 0.0172326937, 0.00209487253, 0.0113691567, -0.0311599113, -0.00298966723, -0.0175695587, 0.032107342, -0.0128324097, -0.00384498574, -0.0165694933, 0.0210013594, 0.0174642876, 0.0117376018, -0.0105427876, 0.0339390375, 0.0142956618, -0.0029159782, -0.00768470811, -0.022485666, 0.010790172, -0.0232857168, -0.0143798776, -0.0136745693, 0.002077766, 0.00447923737, 0.00774260657, -0.0145693636, -0.0172221679, 0.0125692347, 0.0139166899, -0.00773207936, 0.0135692991, 0.0244015791, 0.037791919, 0.0249910913, -0.0375813805, 0.00340811536, 0.0163694806, 0.0162642114, 0.0233699344, -0.0172642749, -0.0220645852, -0.000559904671, -0.00533981947, -0.0048161014, -0.0075425934, 0.00399499526, 0.0169274118, 2.49296562e-07, 0.0127166128, 0.0108638611, 0.00378182367, 0.0123376409, 0.0032581056, -0.00197644369, -0.0049819015, 0.0175906122, -0.0253279544, 0.00380814122, -0.0302124824, 0.0154746855, -0.0146219991, 0.028275514, -0.0249489825, -0.0118849799, -0.0338548236, -8.84103283e-05, 0.0153062539, 0.0200434029, 0.000109135355, -0.00640567765, -0.00762680918, 0.0357286297, -0.0195802152, -0.0187064745, 0.00132311194, 0.0136324614, -0.0133271785, 0.00603196956, 0.0305914544, -0.00300808949, 0.0171695314, 0.0161168333, 0.0290966202, -0.00153825746, -0.0316441543, -0.00934271, -0.0122428974, 0.0304019675, 0.00367129035, -0.011579697, -0.0335179605, 0.016243156, 0.0292229448, 0.00916375127, -0.00545298448, -0.0149904443, 0.0283386763, 0.00333179464, -0.015116768, -0.0112638865, -0.0235804729, 0.0363181382, 0.00035035162, 0.0196960121, -0.0201697256, -0.00112770451, 0.00160273525, 0.0183590837, 0.000383906416, -0.0141693382, 0.0200539287, 0.0108217532, -0.0126113426, 0.00245542219, 0.0155378478, 0.0436659828, 0.0216224529, 0.0109480768, 0.0163694806, 0.00698466273, -0.0236225817, 0.000705966726, -0.00613723928, -0.00670043379, -0.0308230482, -0.00439238967, 0.0248647667, 0.0236646887, 0.0167484526, -0.0442554951, -0.00571615947, -0.00966904685, 0.0115270615, -0.0117165474, -0.0221698564, 0.0126850316, -0.0291387271, -0.015116768, -0.00202513114, -0.00148693833, -0.00905321725, -0.000301335298, 0.0170116276, -0.0140535412, -0.0252858475, -0.0180643275, -0.0229699071, -0.0316441543, -0.0300229955, -0.00612144871, 0.0155167934, 0.0307388324, 0.000142690158, 0.023538366, -0.0293913763, 0.020380266, -0.00244621094, 0.00110994023, 0.000411539804, -0.0105585782, -0.0148114851, 0.0294334833, -0.00462661544, 0.00941113569, 0.00954272319, 0.0214856, 0.0169274118, 0.0218540467, -0.0160115622, 0.0227804221, 0.0238331221, -0.0289492421, 8.84103283e-05, 0.0202328879, -0.0221277475, 0.0195275787, -0.0140851224, 0.000411868765, 0.0154115241, 0.0506138019, -0.0034291693, 0.017295856, -0.0241699852, 0.0153483618, 0.00757943792, 0.00489768526, -0.0150430789, 0.00756364735, 0.0277281106, -0.0124429101, -0.0114007378, -0.0138956364, 0.0375182182, 0.0093585, 0.0107638547, 0.00448976411, 0.000139811687, 0.00475820247, 0.00587932765, -0.0376234874, -0.0183064472, -0.0336232297, -0.000989537686, 0.0255806036, -0.0129903145, -0.0118639255, -0.00175537681, 0.000815842301, 0.00973747205, -0.00199355, 0.0464872196, -0.00945850648, -0.0183169749, 0.0133903399, -0.00290808291, -0.00239489181, -0.00103625131, -0.0168221407, -0.00677412283, 0.0148325386, -0.00420553517, 0.00985326897, 0.00939008128, 0.00144351448, -0.0215171818, -0.00356602017, 0.00513717439, -0.0303177517, 0.0188854337, -0.00104743626, -0.0225698818, 0.0246963352, -0.0322757736, 0.00989537686, -0.023538366, -0.0128745176, -0.000415816379, 0.0265280325, 0.00631619804, 0.00792156532, 0.00027945888, 0.0147483228, -0.0133061241, 0.0340653621, 0.0108638611, 0.000257582462, 0.0047081993, 0.00163957977, 0.014927282, -0.00179353717, -0.00368971238, 0.0103585655, -0.00727941841, 0.0242963098, 0.0290124044, -0.0207276568, 0.00497663766, -0.0052608666, -0.000341798441, -0.00384498574, -0.0151799303, -0.0149483355, 0.0106480578, -0.00208960893, 0.0095743034, -0.00221330114, -0.0236015283, -0.000960588513, -0.0172642749, 0.0199486595, 0.0150851868, 0.00756364735, -0.00824790262, 0.0245489571, -0.0116744395, -0.00487926323, 0.00605828688, -6.8261e-05, -0.0187380556, -0.007200466, -0.0137903662, 0.00494242506, 0.00861108396, -0.0333495252, -0.0214119125, 0.00636883313, 0.00353707094, -0.00860055629, 0.0124639645, -0.012295533, 0.00592143601, -0.0400025882, 0.00999012, 0.0126218693, 0.0190328099, -0.00244357926, 0.00751101226, 0.010226978, -0.0316862613, -0.00661621755, 0.00484241871, -0.0182643402, 0.0195275787, 0.0191696621, -0.0251595229, 0.00807420723, 0.00748469494, 0.0125797614, -0.0247173887, 0.00111651968, 0.0223382879, 0.00774787, 0.019853916, 0.000395091367, 0.0154957399, 0.00885320455, -0.00547403842, -0.0105954222, -0.0219382625, -0.00314757205, -0.014327243, -0.0111375628, 0.00207645027, -0.00797946379, 0.0296019167, -0.000231593935, 0.00979537051, -0.0137377316, 0.0230751783, -0.0067267511, -0.0130218957, -0.0313704498, -0.0119902501, 0.034633819, 0.0309914798, -0.015979981, 0.00598459784, 0.00180406414, -0.010300667, -0.0129903145, 0.0212645344, -0.0328863375, 0.0201486722, -0.00885320455, 0.00339495647, -0.00446607871, 0.0150114978, 0.00958483107, 0.00516612362, 0.00764786359, -0.00404499844, 0.00492137112, -0.00347390911, 0.0146851614, -0.000468451384, 0.0162642114, -0.00583722, 0.00990590453, 0.0276649483, -0.00163694809, -0.00497926958, 0.0227593686, -0.00611092197, -0.000510888349, 0.00331337238, -0.0175274499, 0.0125271268, 0.00137114141, -0.017106371, 0.0190749187, -0.00230541243, -0.00321599771, 0.00486873602, 0.0420448259, 0.011506008, 0.00947429705, 0.0188222714, 0.00148299069, -0.00262122229, -0.00283439388, 0.0108743878, -0.00738995196, 0.0198854972, 0.0119270878, 0.017559031, 0.00742679648, 0.00673727831, -0.00284755277, -0.00315546733, 0.0111796707, -0.00761101907, 0.004587139, 0.0273070298, 0.0244647413, 0.0111059817, 0.00975852646, 0.00885846838, 0.00665306207, -0.033686392, 0.00198433897, 0.0238120668, 0.00394762401, 0.0153273074, 0.0114744268, -0.00270807, 0.0108954422, 0.00802683551, 0.00746890437, -0.0108638611, -0.010716483, -0.013011368, -0.00404236699, 0.0132955974, 0.000101075624, -0.0219382625, -0.00271070166, -0.0169589929, -0.0456029512, -0.0277070571, -0.0184959341, 0.0179169495, -0.0131903272, -0.00614250265, 0.0139272176, -0.0108006988, -0.0191275533, 0.000486215693, 0.00483452342, -0.0071899388, -0.0163273718, 0.00448450074, -0.0180643275, 0.0139482711, 0.00683202129, 0.00548456563, 0.00367129035, -0.00291861, -0.0187064745, -0.0329073928, 0.0093058655, -0.0107796453, -0.0123165864, -0.0237489063, -0.00122639514, -0.00219619484, 0.00206592306, 0.0324652605, 0.013537718, 0.00289492426, -0.00628461735, -0.0227804221, 0.00866371859, -0.0198223349, 0.0126639772, -0.0200012941, -0.0129482066, -0.00149220182, 0.0129692601, 0.00326600089, 0.00398446852, -0.0185590964, -0.000936244789, 0.00749522215, 0.0129060987, 0.00946903415, -0.00502927275, 0.0179274753, 0.0143693509, -0.0299177263, -0.0124850189, 0.00558983535, 0.026696464, -0.00213434873, -0.00161326234, -0.0104480442, -0.022675151, -0.00845317822, 0.0127166128, -0.0233699344, 0.00385288103, -0.000948087662, -0.0111586172, -0.00764259975, -0.00735837081, 0.0339811482, 0.0350127928, 0.0160852522, 0.0148114851, 0.00636883313, 0.00142114458, -0.0086900359, -0.0176432468, -0.0120744659, -0.00909532513, 0.0178643148, 0.0300229955, 0.0184959341, 0.0122218439, 0.00492137112, -0.0154852131, 0.00937955454, -0.0104743624, -0.0112533597, 0.0059635439, -0.00158431311, -0.0327389613, 0.0118218176, -0.0199907683, -0.00711098639, -0.0031265181, -0.00847949646, -0.0209276695, 0.00101848692, 0.00271333358, -0.0120744659, 0.00325021031, 0.0155904824, 0.0105585782, -0.00516349217, 0.0267385729, 0.014064068, 0.00258964137, -0.00864266418, 0.0163484272, 0.00580037525, -0.0216645598, -0.0080005182, 0.0108743878, 0.00935323723, 0.000136686474, -0.00684254803, -0.0112533597, -0.00534508284, 0.00474767573, -0.0221277475, 0.0200960375, 0.0149799166, 0.000726362807, -0.00574774062, 0.00417658594, 0.00350549, 0.00477925688, 0.00644778553, 0.00965852, 0.00163300044, 0.00926902052, -0.00277386373, -0.0191170275, -0.001973812, -0.0130745303, 0.0116112782, 0.0204750095, 0.0160220899, -0.00110204506, -8.88215345e-06, 0.0107006924, -0.0255174413, -0.00914796069, 0.0324652605, -0.00784261245, -0.00723204715, -0.00486084074, -0.00934797339, -0.00607407745, 0.023727851, -0.0229278, 0.000961904356, -0.00611092197, 0.00216592965, 0.028275514, -0.0177800972, -0.015379943, -0.00245410623, -0.00586353755, 0.0180959087, 0.00648463, 0.010790172, -0.00359233771, 0.0438344143, 0.00542666717, 0.0256648194, -0.0232225563, -0.000516151835, 0.0166642368, 0.0277070571, -0.0109164957, 0.00597933447, 0.0101743424, -0.00436870381, 0.000431277906, -0.00300282589, 0.0115270615, 0.010526997, 0.000141209792, 0.0058319564, 0.0335179605, -0.0369076505, -0.000777023961, -0.00770049822, 0.00748469494, 0.0201381464, -0.0111480895, 0.0107796453, -0.000283406494, 0.0119060334, 0.00314494036, 0.0247594975, 0.00363181392, -0.0297492929, -0.00545298448, -0.00136982545, 0.0066477987, 0.0141482837, -0.00791630149, -0.00212118984, -0.012821882, 0.00859003, 0.0257700887, 0.0223382879, 0.0112954676, -0.0163484272, 0.0104480442, 0.00134482386, -0.0308230482, -0.000668135355, -0.00587406429, -0.0180222187, 0.0175063964, 0.025833251, 0.000597736042, -0.0042002718, 0.024212094, 0.00184880383, 0.00555299083, 0.00854792167, 0.00134679768, 0.00564773381, -0.00401341775, -0.000971773406, 0.00138035254, 0.00749522215, -0.0109270234, 0.0137061505, 0.0055003562, 0.0122744786, -0.00591617217, -0.0141693382, 0.00508980313, -0.0192749314, -0.00912164338, -0.000320250983, -0.00288176537, -0.0187591091, -0.0151378214, -0.0150325522, 0.0150851868, 0.00748469494, 0.0157168061, -0.0117060207, 0.0120113036, -0.0220856406, -0.000280939246, 0.00944271684, 0.0251384694, -0.00292913686, 0.0159168188, -0.00532666035, 0.00693202764, 0.0296861324, 0.00333442632, 0.00477399305, -0.0154009964, 0.0106006861, -0.023012016, 0.0195696875, 0.00399762718, -0.0289913509, -0.0284860544, -0.0035554932, -0.00901637319, 0.00913743302, -0.0125376536, 0.00953745935, 0.00578458467, -0.00628461735, -0.00205276441, -0.0208118726, -0.0159062929, -0.0147272693, -0.0125902882, 0.00723731052, 0.0320652314, 0.0349075235, 0.0121165738, 0.00999012, -0.0109901847, 0.00984800607, 0.0329495, -0.0084900232, -0.0144535666, 0.0254753325, 0.0057108961, -7.86235105e-05, -0.00994274858, -0.00517665083, 0.0343811736, 0.0173379648, -0.0313283429, 0.000335219054, 0.019664431, 0.0402131304, 0.0196117964, -0.00770049822, -0.0218329914, 0.00118428713, 0.0257911421, 0.0158115495, -0.0103375111, 0.00705835177, 0.0117270751, 0.00231857109, 0.00388446194, -0.0126639772, -0.0122323707, 0.0320231244, 0.0236646887, -0.0105954222, 0.0090269, -0.0100638093, 0.00359760132, 0.0134745566, -0.00953219552, 0.00551088294, -0.00381603651, -0.00375024276, -0.0219172072, 0.00776366051, -0.0261280071, -0.0118744532, -0.0262753852, 0.00149220182, 0.0100796, 0.0126955584, -0.00728468178, 0.00516875554, 0.00857423898, -0.0213803314, 0.0310546421, -0.00382129988, 0.0182327591, 0.0124323834, 0.0150325522, 0.0139272176, -0.000761233503, 0.00448976411, 0.00227251556, 0.000608592, -0.00158562895, -0.0133798132, -0.010379619, -0.022485666, -0.037791919, -0.0127587207, 0.0125902882, 0.00586880092, -0.0179485306, -0.0105112065, -0.0067267511, 0.00864266418, -0.00832685456, -0.0188854337, 0.0184222441, 0.0161063056, 0.0107217468, -0.0030870419, -0.0291597825, 0.00629514409, 0.0219803695, -0.0125902882, 0.0207276568, -0.00612144871, -0.0253279544, 0.00266069849, 0.00385551271, -0.00656358292, -0.000195736357, 0.00677412283, 0.00291334651, 0.0040792115, 0.0140745947, -0.0241489317, 0.0142219728, 0.00787945744, 0.0328442305, 0.0219803695, -0.00453187246, -0.00924270321, -0.00740047917, 0.018653838, -0.00558457198, 0.00621619169, -0.00199486595, 0.00654252851, -0.0244226325, -0.00646357611, 0.00788998418, 0.00967957359, -0.00844265148, -0.0261911694, -0.000887557457, 0.00734258071, 0.0035554932, 0.0123586943, 0.00092703366, -0.00451081805, 0.014327243, 0.0153167807, -0.00931639224, 0.00969536416, -0.00010444755, 0.0282123517, 0.00147509552, 0.00688991975, -0.00458977092, 0.00351601699, 0.00691097369, 0.0160115622, -0.00248831883, 0.00754785677, -0.0118323443, -0.00724257389, 0.0108954422, 0.0301914271, -0.0128113553, -0.0104006734, -0.0203065779, 0.0235804729, -0.00917427801, 0.00614776649, 0.00774787, -0.0186012033, -0.00271859695, 0.0083373813, 0.0181801245, -0.00692150043, 0.0141167035, -0.0103533017, -0.0015198352, -0.00402131304, -0.00606881361, -0.0113902111, 0.0068478114, -0.00231330772, -0.00795314647, 0.00758996513, -0.0139587978, 0.00752153946, 0.00958483107, -0.0147588495, 0.00300019421, -0.0174642876, 0.00860582, 0.0129060987, -0.0261069536, -0.0134008676, -0.0172853284, -0.0155378478, -0.0287387017, 0.00778471446, -0.0087531982, 0.0119270878, 0.00131784845, -0.0294545386, -0.0100532826, -0.00624777284, 0.00774787, 0.0381287821, 0.00850055, -0.00554246409, -0.00782682281, -0.0208329279, -0.0161799937, -0.00958483107, -0.00510033, -0.0183064472, 0.00620040111, -0.0164852776, -0.0270964913, -0.027075436, 0.0129166255, -0.00357917906, 0.0144535666, -0.0211592633, -0.0101480251, -0.000628988084, -0.00318968017, -0.00857950281, -0.0261069536, -0.00765312696, 0.0155483745, 0.0197697, 0.0216645598, 0.0172537491, -0.0319178551, -0.0100953905, -0.012106047, 0.0199486595, 0.00690044649, -0.00195407378, -0.00347390911, -0.00211592647, 0.000279623375, -0.0045766118, 0.0126850316, -0.00988485, -0.00876372494, -0.00931112934, -0.00536087342, 0.0199065506, 0.022485666, 0.0111270361, -0.00554246409, 0.000114892304, 0.0288229175, -0.0141061759, -0.00307125133, 0.00395025546, 0.00821632147, -0.000565826078, 0.0105164703, -0.0198644437, -0.00899005588, -0.00566878775, -0.00934797339, -0.00581616582, -0.00447134208, -0.000777681882, -0.00365813146, -0.0111270361, 0.0193907283, 0.0109691313, -0.0381498374, -0.0107691176, -0.00506611727, 0.0219172072, -0.00344759156, -0.0100638093, -0.0105585782, 0.0028238669, -0.000519112567, -0.0129376799, -0.00319231185, 0.00192249287, -0.000128626751, -7.40179457e-05, -0.0101217078, 0.00460819295, -0.0260016825, 0.00510822516, -0.00217382493, 0.00630040793, 0.00997959357, 0.00177643076, -0.0128008286, 0.0081373686, -0.0164431687, -0.0192538779, 0.00299229892, 0.0282965675, -0.0119902501, 0.00655831909, 0.0263385475, -0.0211382098, -0.0341706313, 0.0105743688, -0.00508190785, -0.00385551271, -0.0220224783, 0.0106059499, 0.00178169424, 0.00542666717, 0.0143588241, -0.0134745566, -0.00251595234, -0.0269280579, 0.00318178488, -0.00795840938, -0.0149904443, -0.018801216, -1.47316277e-05, -0.00207645027, 0.0109586036, -0.00961641222, -0.00710572302, 0.00745311379, -0.0140219601, 0.00352917588, 0.0164326429, 0.00439238967, -0.00499506, -0.00272386055, 0.00895847473, -0.00404499844, 0.00409500208, 0.0261069536, -0.0229909625, -0.00449765939, -0.00670043379, -0.0112323062, -0.0146746337, -0.0202118345, 0.00593722658, -0.00103559333, -0.017632721, 0.0208118726, 0.000825711351, 0.00938481838, 0.00312914979, 0.00382393179, -0.00246200152, -0.00428448804, 0.0159062929, -0.0252226852, -0.0102217142, 0.005489829, 0.0008145264, -0.00724783773, -0.012821882, 0.0100111738, -0.00782155897, -0.0176958814, 0.0126534505, 0.0156325903, 0.00639515091, 0.0010934918, -0.011579697, 0.00696887216, -0.00921638589, 0.0055687814, 0.0178116783, -0.0187275279, 0.0287387017, 0.0067267511, 0.0123797487, 0.00323968334, 0.0117586553, -0.0167379249, -0.0084900232, 0.0045081866, 0.0159273464, 0.0054371939, 0.0241489317, -0.00240673474, 0.0244647413, -0.0155904824, -0.00821632147, -0.00539508602, -0.020453956, 0.0321283937, -0.0168326683, 0.0177274626, 0.0285702702, -0.000891505042, 0.00422922103, -0.00860582, 0.00606355025, 0.0138114206, -0.0155483745, 0.0105954222, 0.000170241285, 0.000715177855, -0.0204329, -0.010526997, -0.0174221806, 0.00313704507, 0.00276596844, 0.0203065779, -0.00303967041, 0.0129587334, 0.00189091184, -0.0220856406, -0.0144325132, -0.010000647, -0.0223382879, 0.0219803695, -0.019664431, -0.00904795434, 0.00451345, -0.00209487253, -0.00562141649, -0.00143693516, 0.00974273589, -0.00172379578, -0.00820053089, -0.00951640494, 0.0184854064, -0.00974273589, -0.0167274, 0.0116218049, 0.0093585, -0.0145272557, -0.0132324351, 0.0368866, 0.0229909625, 0.0147483228, -0.00100532826, -1.19559545e-05, -0.0239594448, -0.00197775965, -0.0170432087, -0.00113296811, 0.00657410966, 0.0234752037, 0.00366339507, 0.00483715534, -0.00822158437, 0.0295387544, -0.00254358561, 0.00219619484, -0.00422658911, -0.0208434537, -0.0269070044, 0.0282544605, -0.0155062666, -0.00167774013, -0.00128100393, -0.0114323189, 0.0188538525, -0.00972168148, -0.000517796667, -0.00133100722, 0.00713730417, 0.00031219126, -0.0172011126, -0.0043765991, 0.00664253533, -0.00960588455, 0.0121165738, 0.0429712, -0.00439502113, 0.00363707752, 0.00769523485, -0.00990590453, 0.0166431833, -0.016316846, 0.000800709706, -0.0190012306, -0.00222909171, -0.0185064618, 0.0329073928, 0.00124350155, 0.000177314112, 0.0161589403, -0.0189591218, 0.00912164338, 0.0169589929, 0.013085057, -0.0126534505, 0.00320810243, -0.0172116403, 0.0168221407, -0.0141798649, -0.000739521522, -0.00666885264, 0.000853344682, -0.00899531879, 0.00186854193, 0.0127797741, -0.00753733, -0.00815842301, 0.0100322282, 0.0216224529, -0.00706361514, -0.0114112645, 0.00881109666, 0.0321915559, -0.0087531982, 0.0130429491, -0.00166063383, -0.0120849926, -0.0175800845, 0.014327243, 0.0246752817, -0.0136640426, 0.00215408672, 0.00648463, -0.0058424836, -0.00245015859, 0.00144614617, 0.0255595483, 0.0213276967, -0.000653989671, 0.0191696621, 0.0185169876, -0.0057108961, 0.0124744913, 0.00413447805, -0.0055003562, 0.0251805764, -0.0132534895, 0.0136745693, 0.0112323062, -0.00767944427, 0.0126113426, -0.0136219347, -0.00526349852, -0.0124744913, 0.00572142284, -0.020453956, 0.0029107146, -0.0124429101, 0.00670043379, -0.00148299069, 0.00629514409, -0.00488715852, -0.0150536057, -0.0118849799, 0.0278544351, -0.00732679, 0.0045081866, -0.00461872, 0.00287387031, 0.00100203848, -0.00625829957, -0.0393499136, -0.00154615275, 0.0289702956, -0.0115481159, -0.0152220381, -0.0123060597, -0.0339390375, 0.00426606555, -0.0189591218, 0.0299387798, -0.0145798912, -0.00239489181, -0.00340285175, 0.025833251, -0.0080689434, -0.0120639391, -0.0190117564, -0.0124008022, 0.0109375501, 0.0154431043, -0.0112323062, 0.0190959722, 0.0099690659, -0.00441344362, -0.00733731687, -0.0114744268, 0.000512533181, -0.0129271522, -0.0122639518, 0.0101269716, -0.00695834495, 0.0120218303, -0.0067267511, 0.00690044649, -0.0101796063, 3.17249142e-05, 0.0185485687, -0.0141272303, -0.0119060334, -0.00157115434, -0.00698466273, -0.00287387031, 0.00832159165, 0.0116007505, 0.0103848828, -0.00683202129, -0.00668990659, 0.000930981303, -0.017295856, -0.00402131304, -0.0217908844, 0.00931639224, 0.0197697, -0.0150641324, 0.0134535022, 0.0148325386, 0.0026356969, -0.0458556, -0.00951640494, -0.0118849799, -0.0112954676, 0.0130324224, -0.0137166772, 0.00178695773, -0.0106006861, -0.031096749, 0.0109586036, -0.00242252531, 0.00345022324, 7.3154406e-05, -0.00589511823, 0.0341285244, -0.0362339243, -0.0114428457, -0.00144877797, 0.0169274118, 0.00256069214, 0.0373708382, 0.0009842742, 0.0114744268, 0.0145798912, 0.0129482066, 0.00136719376, 0.00851107761, -0.024780551, -0.00207513431, 0.0313072912, 0.00230936, -0.00933744665, 0.0240857694, -0.00692150043, 0.0153062539, 0.0174853429, 0.00740047917, -0.0120849926, -0.00318178488, 0.00656884629, -0.00241594575, 0.0102375047, -0.0154220508, -0.00288966065, 0.0139587978, 0.0173169095, -0.00636883313, -0.00314230868, -0.0142851351, -0.00496084755, -0.00874267146, -0.0274965167, -0.00885320455, -0.018653838, -0.000603986438, -0.00159878773, -0.000914532866, -0.00872688089, -0.000374366326, 0.0134219211, -0.0198749714, 0.00875846203, 0.00744785042, 0.0171800591, 0.0189591218, -0.00914269686, -0.0090847984, -0.00746890437, 0.0365076251, 0.00260806363, -0.0330337174, 0.00418711314, -0.00041647433, 0.00992695801, -0.0278123263, 0.00149220182, -0.0095058782, 0.00674254168, 0.0176011398, 0.0201381464, -0.0487189442, -0.020864509, 0.000100746649, 0.0184959341, 0.0104112, 0.00379235065, -0.000997433, -0.0215803441, -0.0170747899, -0.0177379902, -0.0144325132, 0.00486347266, 0.00576353073, 0.0103059299, -0.0279175956, 0.00681623071, 0.0218540467, 0.007463641, -0.000231593935, -0.0081373686, 0.0212224256, -0.0177379902, -0.0122428974, -0.00674780505, 0.00804788899, 0.00154878444, 0.0186748933, -0.00455029448, -0.0310125332, -0.00496611092, 0.0237910133, 0.0175906122, -0.00370813464, 0.00334495329, -0.00519507285, -0.00199749763, -0.0113586299, 0.00529507967, 0.000684912724, -0.00653200177, -0.00241068238, -0.015000971, -0.0278754886, 0.00517665083, -0.0218751, 0.0150220245, -0.00665306207, 0.0290334579, 0.000151490065, 0.00598459784, 0.00431606872, -0.0245068502, 0.00873214379, -0.00199486595, -0.00446871, 0.0207381845, -0.0163063183, 0.0153378351, -0.010379619, 0.00556351803, -0.0359391682, -0.000682281, -0.0113902111, -0.0011007291, 0.00645304937, -0.0109901847, -0.00238699652, 0.011242833, 0.0328863375, -0.00167379249, -0.0093690278, 0.0175169241, 0.00457398035, 0.0171695314, 0.0390972681, -0.00847423263, 0.00304230209, -0.00012509033, -0.0077952412, -0.0326547436, -0.00457924372, 0.00200012955, 0.0025791144, 0.0303388052, 0.00696360879, 0.0073320535, 0.00558457198, 0.00965325627, -0.0282334071, -0.0039370968, 0.023685744, -0.0137798395, 0.00201460416, -0.0138851088, -0.0260437913, -0.00155667972, -0.0113586299, -0.0111901984, 0.0062530362, 0.000699387398, -0.00757417455, 0.00136587792, -0.043918632, 0.0138640553, 0.00989537686, -0.00891636685, 0.00871109, 0.0124218566, -0.0155167934, 0.023727851, 0.00768997148, -0.00624250947, -0.0141167035, -0.0075952285, -0.0107322736, -0.00486610457, 0.0132113816, -0.0184117183, 0.0034344329, 0.0186222587, 0.00431606872, 0.000800709706, 0.0181695968, -0.000376669108, 0.00399499526, -0.0227804221, -0.0175485034, -0.00448976411, 0.0124323834, 0.0105112065, -0.0181380156, 0.0100901267, 0.00758470129, 0.0161905214, 0.0376234874, 0.0179274753, -0.00773207936, -0.00253963796, -0.0232646633, 0.0128955711, -0.0250753071, 0.00820053089, 0.0183696095, 0.00442660227, -0.0361497067, -0.0284439456, 0.00391077949, -0.0227593686, -0.0312020201, 0.0143377697, 0.000317454746, 0.00555825466, 0.0139377443, -0.00495821564, 0.0349075235, -0.00346601382, -0.0120534115, -0.00263438094, -0.00428975141, -0.00368444901, -0.0235594194, -0.000965194, -0.0164431687, 0.000608921, 0.00271070166, 0.000529968529, -0.0240015537, 0.0235594194, -0.000742811244, -0.00093756069, -0.0182327591, -0.030907264, 0.0411816128, 0.0088900486, 9.5236428e-05, -0.000840185967, -0.0204855371, 0.0063056713, 0.000705966726, -0.0291176736, -0.00831632782, 0.0122850053, 0.00127639843, -0.00648989389, 8.91505042e-05, -0.00723731052, -0.0188538525, -0.00407394767, -0.0244647413, -0.0019290722, -0.00894794799, -0.0228225291, -0.00917427801, 0.000806631171, 0.0161484145, -0.00702150725, -3.76463504e-05, -0.0188538525, -0.0185064618, 0.0090216361, 0.00328968652, -0.0139587978, 0.0200960375, -0.00383182685, -0.0165694933, -0.00112375699, -0.0300651044, 0.000817158143, -0.0127060851, -0.0078057684, -0.0177800972, -0.00343969627, 0.0215803441, -0.0124850189, -0.00670569716, 0.0314546674, -0.00117441814, -0.0153378351, -0.000493124, 0.000556943938, -0.00817947648, 0.0154325776, -0.0117376018, 0.00781629514, 0.0114323189, 0.0174853429, 0.00192644051, -0.00208039791, -0.0155589022, 0.00913217, 0.0201486722, -0.0162115749, -0.00876898877, -0.011579697, -0.00744258706, -0.0247173887, 0.00563720707, -0.00272386055, -0.0429712, -0.023201501, -0.00327126426, -0.00315809902, -0.0150220245, -0.00399499526, 0.00188301655, -0.00224488205, -0.00482662814, 0.0131166382, -0.00476083439, 0.019927606, 0.00977958, -0.00180669583, -0.0247173887, 0.0285281613, 0.00844791532, -0.00241199811, -0.00470556784, 0.0118639255, 0.0152957272, 0.00934271, 0.000177149617, 0.00389498891, -0.00590038206, 0.0154115241, 0.00796893705, 0.0252437387, 0.00158168131, -0.0022988331, -0.0142640807, 0.00740574254, -0.0131166382, -0.00628461735, -0.0256437641, -0.0113375755, -0.0055687814, -0.0104217269, 0.00601091515, 0.00816368591, 0.00513980631, -0.00706361514, -0.0174327064, 0.018348556, -0.0177169368, 0.015000971, 0.0220856406, 0.00993748568, 0.00103296153, -0.0229488537, -0.00850055, 0.0217066687, -0.00728994561, 0.00176853547, -0.0032581056, 0.00654779235, -0.0116112782, 0.0111059817, 0.00508717122, 0.0173274372, 0.00280018128, -0.0328652859, 0.0174853429, 9.31803734e-05, 0.0215487629, -0.0208118726, -0.000481939089, -0.00208434532, -0.0095006153, 0.00201592, -0.0240015537, 0.00296861329, 0.00179222121, 0.0116849672, 0.018717, -0.00923744, 0.0303388052, -0.00969536416, 0.0148114851, -0.00675833225, -0.00297387666, 0.00951114204, -0.027601786, 0.010642794, 0.0171274245, -0.0198328625, -0.001626421, 0.0061740838, -0.0032581056, 0.001973812, 0.00396604603, -0.0146746337, 0.0164115876, 0.00757417455, -0.0189591218, -0.0295387544, -0.000973747228, -0.00792682916, 0.0136745693, 0.0029212418, 0.00531087024, 0.0119481413, 0.017148478, 0.0124639645, -0.00260937936, -0.0061740838, 0.0110112391, 0.00200276123, 0.00912690628, 0.00504243141, -0.00139745884, -0.0219172072, 0.00816368591, 0.00327652786, 0.033686392, -0.0276438948, 0.00225935667, -0.0046397741, 0.0119691957, 0.0129903145, 0.00544772111, -0.000924401917, -0.0148009583, -0.00474241236, 0.00845317822, 0.00101256557, 0.00180932763, 0.00177643076, -0.00680570351, -0.00814789534, 0.0102901394, 0.0256227106, -0.0179380029, 0.0189696494, 0.0116639128, -0.00875846203, 0.0156536456, -0.0124744913, 0.0045423992, 0.0318336375, -0.00806368, 0.007200466, -0.00382656348, -0.000550364552, -0.00774260657, 0.0328652859, 0.00318704848, -0.00471083121, -0.019496, 0.0129166255, -0.00628988072, 0.0235804729, -0.0160641968, 0.0153904697, -0.0044213389, -0.000428975123, 0.0302124824, -0.0174537618, -0.000913874945, 0.0102796126, -0.00592669938, -0.0116954939, -0.00840054359, -0.0100901267, -0.0164958052, -0.0442133881, 0.0185696222, -0.000481610128, 0.000337850826, -0.00322652468, -0.0193907283, -0.0145167289, -0.00960062165, 0.0185064618, -0.0186012033, -0.0116007505, 0.0191591345, 0.00815842301, -0.00164352742, 0.00833211839, -0.0315388851, 0.0257069264, -0.023538366, -0.0099006407, -0.0273491386, 0.0131587461, -0.0155589022, -0.00719520263, -0.00872161705, -0.0104322545, -0.00703203399, 0.00816895, 0.0088900486, -0.00185406732, -0.0184854064, 0.00616882043]
|
12 May, 2021
|
Python calendar module : yeardayscalendar() method
12 May, 2021
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions.
yeardayscalendar() method in Python is used to get the data for specified year. Entries in the week lists are day numbers. Day numbers outside this month are zero.
Syntax: yeardayscalendar(year, width)
Parameter:
year: year of the calendar
width: [Default: 3] number of months in each row.
Returns: list of day numbers.
Code #1:
Python3
# Python program to demonstrate working
# of yeardayscalendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
year = 2016
# default value of width is 3
# printing with yeardayscalendar
print(obj.yeardayscalendar(year))
Output:
[[[[0, 0, 0, 0, 1, 2, 3], [4, 5, 6, 7, 8, 9, 10], [11, 12, 13, 14, 15, 16, 17], [18, 19, 20, 21, 22, 23, 24], [25, 26, 27, 28, 29, 30, 31]], [[1, 2, 3, 4, 5, 6, 7]… … [[0, 0, 0, 1, 2, 3, 4], [5, 6, 7, 8, 9, 10, 11], [12, 13, 14, 15, 16, 17, 18], [19, 20, 21, 22, 23, 24, 25], [26, 27, 28, 29, 30, 31, 0]]]]
Code #2: iterating the list of weeks
Python3
# Python program to demonstrate working
# of yeardayscalendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
# iterating with yeardayscalendar
for day in obj.yeardayscalendar(2018, 1):
print(day)
Output:
[[[1, 2, 3, 4, 5, 6, 7], [8, 9, 10, 11, 12, 13, 14], [15, 16, 17, 18, 19, 20, 21], [22, 23, 24, 25, 26, 27, 28], [29, 30, 31, 0, 0, 0, 0]]] [[[0, 0, 0, 1, 2, 3, 4], [5, 6, 7, 8, 9, 10, 11], [12, 13, 14, 15, 16, 17, 18], [19, 20, 21, 22, 23, 24, 25], [26, 27, 28, 0, 0, 0, 0]]] … [[[0, 0, 0, 0, 0, 1, 2], [3, 4, 5, 6, 7, 8, 9], [10, 11, 12, 13, 14, 15, 16], [17, 18, 19, 20, 21, 22, 23], [24, 25, 26, 27, 28, 29, 30], [31, 0, 0, 0, 0, 0, 0]]]
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : yeardayscalendar() method
|
https://www.geeksforgeeks.org/python-calendar-module-yeardayscalendar-method/?ref=lbp
|
Pandas
|
Python calendar module : yeardayscalendar() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python calendar module : yeardayscalendar() method, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00815890543, 0.0269296505, -0.00776411965, 0.0433737934, 0.0122330943, -0.00181075057, 0.0447634384, 0.0304879863, 0.0153387422, -0.00206078147, 0.00602706242, 0.0203919988, 0.0262769386, 0.0297721084, -0.0461951941, 0.00571123371, -0.0135174636, 0.0251820665, 0.00876950752, 0.00260032201, 0.00836419407, -0.02158162, -0.0285930149, -0.00792729761, 0.00859580096, -0.0055112089, 0.0144649493, -0.0351833031, 0.00502167456, 0.0249715131, 0.0181390885, 0.0190865751, 0.00528486492, -0.00111592771, -0.0547436215, -0.033562053, 0.00285035302, 0.0349095874, 0.0102381101, -0.0112224426, 0.0135385189, 0.0195287336, 0.0357517973, 0.0188444387, -0.00394522538, 0.0216237307, 0.00545857055, 0.0084484145, -0.000286713126, -0.0142017584, 0.0278350264, -0.0392259099, 0.0224448852, -0.0143070351, -0.000626393361, 0.0139806792, -0.0350359194, 0.0241714139, -0.0197182316, -0.0120857069, 0.0499009155, -0.0116751306, -0.0177600943, -0.0189286601, 0.01919185, 0.0166125838, -0.0318776332, 0.0209078528, 0.0119067375, -0.0254978947, 0.0289720092, -0.00993807334, -0.0139280409, -0.00567438686, -0.0330356695, -0.00370572205, 0.00179101131, 0.00569017837, -0.0461109728, 0.00260295393, -0.0286140703, -0.0242135245, -0.00733248703, -0.0136753777, -0.0103854965, -0.0158230122, 0.0340884328, -0.0206446629, -0.0357728526, -0.00066587195, 0.0268664844, 0.0360044576, -0.00897479616, -0.0417525396, 0.00842735916, -0.025813723, 0.0245714635, 0.0394154079, -0.0468268506, -0.0128121134, -0.000565201568, -0.0224869959, -0.0121172899, -0.0218763929, 0.0124436468, -0.0218974482, 0.00711667072, -0.0167389158, 0.00627972512, -0.0182759482, 0.0232239291, 0.00140148937, -0.0214973986, -0.0284666829, -0.0263190493, 0.0290562306, -0.0278560817, -0.0291193966, 0.00827470887, -0.0159388166, 0.0521748811, -0.0302353241, 0.0332251675, 0.0378994308, -0.0443002246, 0.0195392612, -0.0188444387, 0.0093485266, -0.00616392121, -0.0212552641, -0.00521906745, -0.031435471, 0.00439791288, -0.0619024038, -0.0398786217, 6.76070558e-05, 0.00157651107, 0.0211078767, 0.00686400803, 0.000259571621, 0.00736933388, -0.0204762202, 0.0263190493, -0.0149808023, -0.0126541983, -0.016959995, 0.0230975971, 0.0174547937, 0.0134964082, 0.0274139214, -0.00301616313, -0.017349517, 0.0103644412, -0.0012784478, 0.0183180589, -0.0476690605, -0.00636921, -0.00525328238, 0.0122330943, 0.00526907342, 0.00341094867, -0.0265927669, 0.00689559104, -0.00325566647, 0.0130016105, 0.00751672033, 0.0315407477, 0.0164967794, 0.0149597479, 0.022192223, 0.0144333662, -0.0252031218, -0.0401312858, 0.0171284378, 0.0423841961, -0.0243609119, 0.0435422361, 0.00827997271, -0.0163493939, -0.0392259099, -0.00618497655, -0.0204130542, 0.0294983909, 0.0441738926, 0.0134016601, 0.0397944, 0.0370993316, 0.0203604158, -0.014054372, 0.00228712545, 0.0148228882, 0.0165073071, 0.00101262541, 0.0195603166, -0.0345305912, 0.00697981194, 0.00527433725, 0.0158440676, -0.0228870455, -0.000917218858, -0.0158335399, 0.00890110247, -0.0245083, -0.0140438443, 0.00119620073, 0.0196340103, -0.00392680196, 0.0123910084, -0.0041610417, -0.0357096866, -0.0170968547, 0.00286614452, -0.00546909822, -0.0465320796, 0.0193392374, 0.0200656429, -0.0152545208, 0.00735354237, 0.0514168926, -0.0203288328, -0.0191707946, 0.0216026753, -0.0166336391, -0.0106118405, -0.0144860046, -0.016896829, 0.0318776332, 0.0268243756, -0.0121699283, -0.0401733965, -0.00934326276, -0.0279192477, -0.00277929148, 0.00145939132, 0.0451003239, -0.00157651107, 0.0288035665, 0.0133174388, 0.00762726041, -0.00727984915, 0.0265085455, -0.0400470644, -0.00985385198, -0.0318776332, 0.000931694347, 0.0222132765, -0.0572281405, 0.0567649268, -0.00181996229, -0.0013633268, 0.0110645285, 0.0157703739, -0.0212447364, 0.0102170547, -0.0402576178, -0.0466584116, -0.00407418888, -0.0273507554, 0.00324250688, 0.0254978947, 0.00858527422, 0.0296036657, 0.0121909836, -0.0343200415, -0.0222132765, -0.0168231353, -0.00434001116, 0.00684821652, -0.00813258626, -0.00610601949, -0.000505983713, -0.00901690591, 0.0130121382, -0.00456109131, -0.0143702012, 0.0358991846, -0.00626393361, -0.0090906, 0.0173811, 0.0480901673, -0.00689559104, -0.025940055, 0.0432053506, 0.00707982434, 0.0183917508, 0.0356465206, -0.0193392374, 0.00517695677, 0.00801151898, -0.0123804808, 0.021223681, -0.019128684, -0.018739162, 0.017286351, -0.00718510058, -0.00545330718, 0.00624287827, -0.0156545695, -0.0201288089, -0.00968014635, -0.0370151103, -0.0177495666, 0.00527433725, -0.023034431, 0.0243398566, -0.0424894728, 0.0349727534, -0.0110855838, 0.012180456, 0.0404260606, -0.0213921238, -0.0247188509, 0.00119225297, -0.00508484, 0.0300247706, -0.0153387422, 0.0404050052, -0.0236239787, -0.030172158, 0.0193287097, -0.0115487985, -0.00422947109, 0.00268849079, -0.00126528833, -0.0220237803, 0.00505325757, -0.0164336134, -0.017349517, 0.0183496401, -0.0203814711, -0.0403418392, -0.00910112727, 0.0359412916, 0.00513747847, 0.00120738638, -0.0329303928, -0.037478324, -0.031077534, 0.0432474613, 0.0358360186, 0.00446897466, 0.0476690605, 0.00521380361, -0.0258979443, -0.0510800108, -0.0124015361, -0.0313933603, 0.0129068615, -0.00341358059, 0.021065766, 0.000472426938, 0.0185075551, 0.0407208316, 0.0134542976, 0.00910639111, -0.0280876886, -0.0138122365, 0.010822393, 0.0041162991, -0.000806020864, -0.0140017346, -0.0127700027, -0.000486902398, 0.00362676498, -0.0405523926, -0.0128121134, 0.0238976963, -0.0171389654, -0.00535066286, -0.00137253839, -0.0302984901, 0.00845367834, -0.0420473143, -0.0102117909, 0.00975384, 0.0133279664, 0.00459004194, 0.014538643, 0.0227817688, -0.0116540752, -0.0322776809, -0.00348464213, -0.00332409586, 0.00226870202, -0.00116790785, -0.00411893101, -0.0223817192, 0.00577439927, 0.00515063806, -0.00761673274, -0.00932220742, 0.0264453813, 0.027266534, -0.0274349768, -0.0120120142, -0.0225922726, 0.0330356695, 0.0205814969, 0.00190418318, -0.00620076805, -0.0346358679, -0.0102012632, 0.0101959994, -0.0291825607, -0.0399207324, -0.02339237, -0.0206973, 0.00190286722, 0.069650732, 0.0284035169, 0.0100275576, 0.0428895205, -0.0430158526, 0.0147386678, 0.0495640337, -0.0129279168, -0.00672714878, 0.030530097, -0.0117382957, 0.0342779309, 0.0574808046, -0.0103960242, -0.0176548176, 0.0257926676, -0.0260874406, -0.00923272222, -0.00428737327, -0.0229291562, -0.014085955, 0.0397733487, -0.0186970532, 0.015149245, 0.0271191485, 0.0432474613, 0.055375278, 0.0092590414, -0.000962619204, 0.0248451829, 0.0320881829, -0.0531855337, -0.0838840753, 0.0129595, 0.00873792451, 0.0104591902, -0.00567438686, 0.0221080016, -0.0625340641, 0.00567438686, -0.0097169932, -0.0159388166, -0.0448055491, -0.0102749569, 0.0383205339, 0.0208762698, 0.0123488978, 0.0173705723, 0.00881688111, -0.0198761467, 0.0194129311, 0.0535224192, 0.031435471, -0.00354254409, -0.0112013873, -0.0135595743, -0.00243714405, -0.0225712173, -0.00342674018, -0.0459846407, -0.0127384197, 0.0312038641, -0.00311880722, -0.0130542479, -0.0477532819, 0.00929062441, 0.0525117666, 0.00465584, -0.00675346795, 0.0701139495, 0.00542698801, -0.0369940549, 0.0317513, -0.00824312586, -0.00794835296, 0.000855369086, 0.0139280409, -0.00351359299, -0.036151845, -0.0224448852, -0.022192223, -0.0177179836, 0.0585335642, 0.0250978451, 0.0613970794, -0.0365308411, 0.00343989977, 0.0504062437, -0.00645343075, -0.0122015113, 0.0164651964, -0.0245714635, 0.0196971763, 0.0248662382, -0.00668503856, 0.0238766409, 0.0045742509, -0.00950644072, 0.00204367423, -0.0238555856, -0.00847473368, -0.00266217184, -0.0439212285, 0.0181812, -0.00739565259, 0.0229923204, 0.0190549921, -0.00493219, 0.00135148317, 0.00594284106, 0.0143280905, -0.0190339368, -0.000996834, -0.0226554368, 0.00234239525, 0.00454266788, 0.0214342345, 0.0228659902, -0.0238766409, -0.0132753281, 0.0253505073, 0.00332935969, 0.0250978451, 0.0160651468, -0.00385837257, 0.0157387909, 0.00021630968, -0.0318565778, -0.0189391878, -0.0250767898, -0.00291351881, 0.0105749937, -0.0279613584, 0.0387626961, 0.0188444387, -0.0353096351, 0.00911165494, -0.0361729, 0.00325566647, 0.0185812488, -0.0107697546, -0.0120225418, -0.000331126532, -0.0150650237, -0.0238345303, -0.0108960867, -0.0154545456, -0.0191392116, 0.00194760959, -0.00439264951, 0.00639026519, -0.0408471636, 0.0062323506, -0.00770621747, -0.0100644045, 0.0117172403, 0.00249504577, 0.0175284874, -0.0115909092, 0.0295405015, -0.0151281897, 0.0564280413, 0.0011784354, -0.0211710427, 0.0196024273, 0.00926956907, -0.0252241772, -0.0104749817, 0.0156440437, 0.0314986371, 0.015507184, 0.00338199781, -0.0020160391, 0.0408471636, -0.00295299734, 0.00966961868, -0.0138859302, 0.0205078032, -0.000470124, -0.024002973, -0.0419420376, 0.012727892, -0.0111171659, 0.0459425338, -0.0150650237, -0.00236345059, 0.00104881416, 0.00471900543, -0.0328040645, -0.00640605669, 0.028719347, -0.000140560165, -0.0073430147, 0.00730090402, -0.00126134045, -0.00360307773, -0.018770745, 0.00593757769, 0.0460688621, 0.0160967298, -0.00228186161, -0.0257926676, -0.0124752289, 0.0237713642, -0.0394364633, -0.00213710684, 0.00590073084, -0.0286351256, -0.0267190989, -0.00480849, -0.0253505073, -0.00734827854, 0.00199103612, 0.019834036, 0.00521643553, -0.0016409927, 0.0222764425, -0.0202867221, -0.0227396581, -0.025876889, -0.00183048984, 0.00224238308, 0.0151808271, -0.0523433238, -0.00135148317, 0.0248241276, 0.0125594502, -0.0347622, -0.00233713165, -0.0496061444, -0.0176337622, 0.00507694436, 0.0415209308, -0.0205183309, -0.00267664739, 0.0478796139, -0.000904059329, 0.0603864267, -0.00845367834, -0.0040768208, -0.00527696917, 0.000242464244, -0.0106802704, -0.00925377756, 0.00333988736, 0.00875898, -0.00216474175, -0.00299247587, 0.0284456275, 0.0140964827, -0.0429316312, 0.0226554368, -0.0119804312, 0.000363860861, 0.0045005572, -0.00876424368, 0.0214342345, 0.0123488978, 0.0390995778, 0.00168047124, 0.022129057, 0.00854316354, 0.0158440676, -0.0187075809, 0.00827997271, 0.019128684, -0.0105855213, 0.00217921729, 0.0232660398, 0.0326566771, 0.0147281401, -0.0170021057, 0.00357412687, 0.0115698539, -0.032530345, -0.0363624, -0.00586914783, 0.00637973752, -0.0114119397, -0.00229633693, 0.0267822649, -0.033562053, -0.0245083, 0.0177706219, 3.31044284e-05, -0.000331126532, 0.023034431, 0.0316881351, 0.0302774347, 0.0182127822, -0.0121699283, 0.0117067127, -0.0150123853, 0.0426789708, -0.00561122131, 0.0261084959, 0.00341621251, 0.0270980932, -0.0122962594, -0.0182233099, 0.0160862021, 0.0119383205, 0.00260953372, 0.0100380853, -0.000838261738, -0.00592178619, 0.0152124101, -0.0225922726, -0.0270559825, 0.0238976963, 0.00464268029, -0.0323829576, -0.00731669553, -0.0498166978, -0.0224238299, 0.00714825373, -0.0309722573, 0.0160546191, -0.00445318315, -0.0255821161, 0.0128015857, 0.0119067375, -0.0125594502, 0.00236345059, 0.0120225418, 0.0107802823, 0.00339778932, -0.0228659902, -0.0103486497, 6.03693188e-05, -0.00424789451, 0.00824312586, -0.0145491706, -0.0162651725, -0.00128897547, -0.0231186524, 0.0380257629, -0.0120541248, 0.0234976467, -0.00662713638, -0.00883267261, -0.00577439927, -0.0210131295, 0.030656429, 0.0401523411, 0.015054496, 0.0113171907, 0.00243714405, 0.0179917011, -0.0123804808, 0.0239608623, 0.0528065413, -0.0343200415, 0.006332363, -0.00170810625, -0.0188128557, -0.0133806048, 0.0172021296, 0.0115698539, 0.00988543499, 0.00105802575, -0.0191076305, -0.017412683, -0.00783254858, -0.00511905504, 0.00163046503, 0.00283982535, -0.0140964827, -0.0177390389, -0.0129805552, 0.0135806296, -0.0028977273, -0.0343832038, -0.00380573445, -0.00430842815, -0.0243609119, -0.0069745481, -0.0257716123, 0.0148123605, -0.0064323754, 0.0224027745, 0.0128647508, 0.0212973747, 0.00455845939, 0.0416683182, -0.0114751058, 0.0142543968, 0.00160809385, -0.0369940549, -0.0105592022, -0.00480322633, -0.0296668317, -0.00889583863, 0.00243582809, 0.013085831, 0.000715220172, 0.0293088928, -0.0171600208, -0.00851684436, -0.0240871944, -0.00302932248, 0.0190444645, -0.0119172651, 0.0162546448, -0.024129305, 0.025750557, -0.0251610111, -0.0103644412, 0.0248030722, -0.0125173395, 0.0104644541, -0.0404681712, 0.011790934, -0.013148997, -0.00266217184, 0.0118541, -0.018739162, 0.00523485895, 0.0174547937, 0.0275823642, 0.0274770875, 0.0144649493, 0.0254136734, 0.00071785209, -0.0291193966, 0.0121594006, -0.00474269269, 0.00784834, 0.00949064922, 0.026845431, -0.00654817931, 0.0256663375, 0.0210552383, -0.00680610631, -0.0254557841, -0.0189391878, 0.058828339, 0.00617971271, -0.0230554864, -0.00847473368, -0.00702192215, 0.00637447368, 0.0161704235, -0.00413472252, -0.0208867975, 8.71818484e-05, -0.00176337629, 0.0129595, 0.0122857317, 0.016444141, 0.0138227642, -0.0113277184, -0.00375309633, -0.0105486745, -0.00631130813, -0.0170126334, -0.00962224416, 0.025392618, 0.0245925188, -0.0164651964, -0.00273191719, 0.0115909092, 0.0105013009, 0.0369098336, 0.0190234091, 0.0203077774, -0.00295299734, -0.0211078767, 0.00709035201, 0.0229291562, 0.00277402787, -0.0159282889, 0.0287614577, -0.0383837, -0.00722721079, 0.00484796893, 0.0131279416, -0.034825366, -0.0176548176, -0.0414577648, 0.000271744182, 0.00382415787, 0.0320039652, 0.00549015356, -0.00733248703, -0.0493113697, -0.00410577143, 0.0146965571, 0.0307195932, -0.0154440179, 0.011243498, 0.00217790133, 0.00121133425, -0.00395048922, 0.0162862279, -0.0207920484, 0.00627972512, -0.0433316827, 0.033730492, -0.0150966067, -0.0129700275, 0.00326356199, 0.0141070103, -0.0357096866, -0.0429105759, 0.0359834023, 0.020255141, -0.00725353, -0.0195287336, 0.0315618031, 0.0329935588, -0.0117172403, -0.00333462353, -0.0237503108, 0.0077114813, -0.00342147634, -0.0220237803, -0.00596916024, -0.00704824133, -0.0274349768, -0.0013317439, -0.000801415066, -0.00183443772, 0.0099959746, -0.0139596239, -0.0219606142, -0.0454372056, -0.00181601441, -0.0530592, -0.0223396085, -0.037183553, 0.0039926, -0.00312407105, 0.025392618, -0.00123831129, 0.021223681, 0.00570597, -0.0293931141, 0.00854316354, 0.00309775211, -0.0102854846, -0.00709561585, 0.032593511, -0.00388995535, -0.00625340594, 0.0205709692, -0.009627508, -0.0154124349, -0.0146228634, -0.0152861038, -0.0147386678, -0.000597113452, 0.00293720583, -0.0315618031, -0.0232870951, 0.00626393361, -0.0300247706, 0.00476901187, -0.0341726542, -0.0184759721, -0.00484270509, -0.014601808, 0.00291878264, -0.0109381964, 0.0408892743, -0.012212039, -0.0225291066, 0.0485112704, -0.00291351881, -0.00970646553, 0.00442949589, -0.0452687629, 0.00784834, -0.0105013009, -0.00975910295, 0.0141280657, 0.0307827592, -0.0019541895, 0.00104618224, -0.0297721084, 0.00579545461, 0.0211394597, 0.00496377284, -0.0374993794, -0.00722721079, -0.0453529842, -0.0369519442, -0.00313196681, 0.0279192477, 0.00111329579, -0.0109697795, -0.00142649247, -0.0315618031, 0.017539015, -0.013212163, -0.0124225914, -0.00396628072, 0.00811153091, 0.00913271, 0.0478796139, 0.0086168563, 0.00960645266, 0.00688506337, 0.00981700514, 0.0281298, -0.00229502097, 0.0158335399, 0.0227186028, 0.0149492202, 0.0243188012, -0.00540593266, -0.0114224674, 0.00110145216, 0.00267796335, -0.0197603423, -0.0170442164, -0.00686927186, -0.0071587814, -0.00210289191, -0.011243498, 0.0252031218, 0.0155703491, 0.0161914788, -0.00639026519, 0.0285087936, 0.0254978947, 0.00639026519, 0.00265954, -0.00968014635, -0.0121909836, 0.0146755017, -0.00880109, -0.0250136238, 0.00447687041, -0.0204235818, -0.0247609615, 0.00137517031, 0.00166204793, -0.000401694473, 0.000900111452, -0.0167810265, 0.0019068151, 0.00737986155, -0.0146965571, 0.00376625592, 0.0368887782, 0.0245083, 0.0207815208, -0.030108992, -0.0185601935, -0.0261295512, 0.00709561585, 0.00270559825, 0.000913928961, 0.0293299481, 0.0236029234, 0.013117414, -0.00990649, -0.00665871939, 0.00052243314, -0.0313301943, 0.0134542976, -0.0204867478, -0.0123173147, -0.0179495923, -0.0303405989, -0.00897479616, -0.0111592766, -0.015054496, -0.0192129053, 0.00937484484, -0.0331830569, 0.0174547937, -0.0195603166, -0.000702060643, 0.0041768332, 0.00533223944, -0.000760620518, 0.00725353, 0.0185075551, -0.0144649493, 0.00385574065, -0.00901164208, -0.00412156293, -0.0106328959, 0.0277297497, -0.00723247463, -0.0224027745, -0.0138543472, 0.0167178605, -0.0255821161, 0.0257295016, 0.0019818244, 0.033667326, -0.00844315067, -0.000274211605, 0.00187128433, 0.0197603423, 0.0256242268, -0.00565333152, 0.00327935349, -0.0148123605, 0.00992228184, -0.0200340599, -0.0275823642, 0.0114329951, 0.012180456, -0.00683242502, 0.00466636755, -0.00217526942, 0.0044005448, 0.00212394726, 0.0259821657, 0.0131068863, 0.00734827854, 0.00664292788, 0.00239634933, -0.0145596983, -0.0152334655, 0.00722721079, -0.0330988355, -0.00826944504, -0.0184233338, 0.00321881962, 0.00161072577, -0.012696309, -0.0100591406, -0.015054496, 0.00771674514, 0.00430579623, -0.0152124101, -0.00106789544, 0.00766937109, -0.00415577786, 0.0262769386, -0.00115211634, -0.0127173644, -0.0245293546, -0.00648501376, -0.0491850376, 0.00135543104, -0.017286351, 0.037309885, 0.00820101611, 0.021644786, 0.0142017584, 0.00398996798, -0.0190549921, -0.00253584026, 0.0264032707, 0.00593757769, -0.000301682099, -0.0265296, -0.00984858815, 0.0202761963, 0.0164967794, 0.0313512497, -0.0336252153, 0.0175495427, 0.0101749441, 0.00753251184, 0.0108118653, 0.0165599454, -0.0146123357, -0.0019660329, -0.00474795653, 0.0190128814, 0.00727458531, -0.00869055, 0.0104486626, 0.00866423082, -0.00123502139, 0.0101538887, -0.0134016601, -0.00454266788, -0.00270559825, -0.0106486874, -0.00892742164, -0.000529012876, -0.0238134749, -0.0244451333, 0.00479269866, 0.0203814711, 0.000684953236, -0.0116751306, 0.0266980436, 0.0246346295, 0.00406629313, 0.0185601935, 0.00286614452, 0.00694296509, 0.0323197916, 0.00861159246, -0.0271612592, -0.0037136178, 0.00146991888, -0.000543817354, -0.00439791288, -0.0130963586, 0.0168020818, -7.39400784e-05, -0.0224869959, -0.00448213425, -0.00856948271, -0.0156861525, 0.00647448609, -0.00335567887, 0.0227817688, -0.0032451388, -0.0154229626, -0.00237529422, -0.00768516213, 0.00470584584, 0.010822393, -0.00725353, -0.0144438939, 0.00275560445, -0.0134227155, -0.00698507577, -0.0157914292, -0.0230765417, 0.0148649989, 0.00233976357, 0.0148439435, 0.0456898697, -0.00435317075, 0.0110224178, -0.00956960581, 0.00184496539, -0.0173916277, -0.00430316431, 0.00686400803, -0.0237924196, -0.0125910332, 0.018802328, 0.0229923204, 0.0122646773, -0.00696402043, -0.00462162495, -0.0332251675, 0.00458477857, -0.00143307226, -0.00757988635, 0.00602706242, -0.0181285609, 0.0189391878, 0.00531908, -0.0106118405, -0.0365308411, -0.00292404625, 0.0194655694, -0.00262400927, 0.0133069111, 0.0438791178, -0.0182127822, -0.0300247706, -0.00817469694, -0.0240450837, -0.00208973256, -0.0195919, -0.0137595991, -5.97524668e-05, 0.0235397574, -0.0342779309, 0.00807468407, 0.00108697673, -0.0330567248, 0.000979726552, 0.0186444148, -0.0111171659, 0.0095485514, -0.0165704731, 0.0104223434, 9.49953173e-05, 0.0202972498, -0.0108434483, -0.0108960867, 0.00101657328, 0.0121278176, 0.00343726785, -0.00340831676, -0.0100907236, 0.0423841961, 0.0102960123, 0.000656660297, -0.00335041503, 0.00310827978, 0.0100380853, -0.0423631407, 0.00370045821, -0.00233449973, 0.0172231849, -0.000436896225, -0.00294246967, -0.0329303928, -0.0186865255, 0.00108105491, 0.02817191, -0.0150123853, -0.0288246218, 0.0198972, 0.0427000262, -0.00835893, -0.0390995778, 0.00251083728, 0.0226554368, 0.00772727281, 0.00754830334, -0.0235608127, -0.0301932134, -0.00214763451, -0.010080196, -0.0317091905, -0.00170021062, 0.00365834776, -1.39305905e-06, -0.0157387909, 0.00892742164, 0.0182548929, 0.0226764921, 0.0205288585, 0.0195287336, 0.00974331237, -0.0141280657, 0.0237292554, -0.0232239291, -0.00408471655, -0.0317302458, 0.0248451829, -0.0329093374, 0.0108329207, -0.0274560321, -0.0388258621, -0.01919185, -0.000137270297, 0.0302984901, 0.00237529422, -0.000831023965, 0.0125383949, 0.0204341095, 0.0100538768, -0.0375625454, -0.012243622, 0.000591520627, 0.025392618, -0.0157809015, 0.00573755288, 0.0163915046, -0.00269375462, 0.0217290074, 0.0185391381, 0.0177495666, -0.00847473368, -0.00632709917, -0.0125594502, -0.0203183051, 0.0198550913, -0.00527170533, 0.00249767769, -0.00691664591, 0.0356044099, 0.0142965075, -0.00449003, -0.0107329078, -0.00562701281, 0.0173284616, 0.0155177116, -0.0100065023, -0.00342674018, -0.0412261598, -0.00337410206, 0.00160019821, 0.018770745, -0.00582177378, -0.0129068615, -0.00214631855, 0.0204656925, 0.0104276072, 0.0207920484, 0.0195287336, 0.00441633631, -0.0168863013, -0.0102539016, -0.00418999279, 0.0490166, 0.00639552902, -0.0057638716, 0.0102907484, -0.0128226411, -0.0524696559, 0.0230765417, -0.0182654206, 0.009627508, -0.0342568755, -0.0226554368, 0.0234765913, -0.00302142673, 0.016928412, -0.0342147648, -0.00318460492, 0.0128647508, 0.0101012513, -0.00725353, -0.0182233099, 0.00162388536, -0.0389311388, -0.0186654702, 0.0126436716, -0.0186233595, 0.00229765289, 0.0106013129, 0.033667326, -0.0185180828, -0.0142333414, -0.0213921238, 0.00989596266, -0.011822517, -0.0188654941, 0.0164125599, -0.00982226897, 0.0381731503, 0.0105381468, 0.0247399062, -0.0353306904, 0.0334567763, -0.00687979953, -0.000742855133, -0.0132437451, 0.0156019321, -0.0172547679, 0.0228238795, -0.0207078271, 0.0113171907, 0.0101380982, 0.0140964827, 0.0313512497, 0.0268664844, -0.0287404023, 0.006332363, 0.0128331687, -0.00812732242, -0.021223681, 0.0296668317, -0.00591125851, 0.00641658437, -0.00874318834, 0.00403734203, 0.0175495427, 0.0219395589, -0.0236239787, 0.00437159417, -0.0052269632, 0.0219395589, 0.00202130293, -0.0104749817, -0.0108960867, 0.0133700771, 0.0369098336, 0.000528354896, -0.0190549921, -0.001881812, 0.0449739918, 0.0331198908, 0.00750619266, -0.00281350641, -0.00980647746, 0.0119277928, 0.00853263587, -0.0274981428, -0.0182338376, -0.0238976963, 0.0189181324, 0.0335831083, -0.0116540752, -0.00162125344, -0.0256873928, -0.00263848458, 0.00794835296, 0.00324777071, 0.0249925684, -0.0157809015, -0.00585335633, -0.0124857565, 0.00476901187, 0.00822733436, -0.00443739165, -0.0207288824, 0.0119067375, -0.0053664539, -0.00305037783, -0.0132226907, 0.00524801854, 0.00550594507, -0.0276034195, 0.00812205859, 0.0172758233, -0.0138332918, -0.00587441167, -0.00895900466, -0.0183917508, 0.028361408, -0.0273718107, -0.00370835396, -0.0141385933, -0.00819048844, -0.00103170669, 0.0487218238, 0.002463463, -0.0123173147, -0.00874845218, 0.00976436678, -0.0236029234, 0.0199393108, -0.0184443891, 0.00110079418, -0.0038136302, 0.000337541802, 0.00851684436, -0.00339778932, -0.00710087921, 0.021128932, 0.00671662111, 0.0127805304, 0.0193392374, -0.0129068615, 0.00183312176, -0.0054954174, 0.0035293845, 0.0200024769, 0.00291878264, -0.00408208463, 0.0209078528, -0.00604285346, -0.000537895539, 0.0109171411, 0.00223975116, 0.0110750562, 0.0182127822, 0.0245714635, 0.00684821652, 0.0204551648, 0.00385310873, 0.0111908596, 0.00802204572, -0.00591652235, 0.00605338113, -0.00782728475, -0.0136437947, 0.00500588305, -0.00950117689, 0.00493219, 0.0135911573, -0.0225501619, -0.00952223223, 0.0067060939, 0.0103275953, 0.00118501519, -0.0146649741, 0.016865246, 0.00387416407, -0.0507010147, 0.0151702994, 0.036088679, 0.00952749606, 0.00868528616, -0.00123765331, 0.0195392612, -0.0310143679, 0.000122630314, -0.00064086885, 0.000752066844, 0.0246556848, 0.00332146394, -0.0170758, -0.0140649, 0.000613891811, 0.0149492202, -0.00956960581, 0.00778517453, 0.00875898, 0.0121278176, -0.00694822893, 0.0120014865, -0.00117053976, 0.00198445632, -0.0183075313, -0.0213605408, -0.0114540504, -0.00996965542, -0.0022108, -0.0152755762, -0.00115935411, -0.0143280905, 0.026003221, -0.00391101092, 0.0246346295, -0.0035635992, 0.00881161727, -0.0084484145, -0.0193602927, -0.0432474613, -0.027266534, 0.00662187254, 0.01977087, -0.0333725549, 0.0139175132, -0.0122646773, -0.0148544712, -0.0110855838, 0.0120751793, -0.0353938565, 0.0154019073, -0.0242135245, 0.00849052519, -0.000359912985, 0.014085955, 0.0233713146, 0.00918534771, 0.00837472174, 0.00625867, -0.00966961868, -0.0104591902, 0.0207078271, -0.0146544464, -0.00271875784, -0.0270349272, -0.00771674514, 0.00622182339, -0.00206472934, -0.0157282632, -0.00918008387, 0.00557437446, 0.00397417648, 0.0105907852, 0.000617181708, 0.00707982434, 0.00161072577, -0.00951696839, 0.0229502115, -0.00729564, -0.0118856821, 0.00408998039, 0.027813971, 0.0157703739, -0.00129358121, -0.00628498895, -0.00544277951, 0.00225422648, 0.00793256145, 0.0189812984, 0.00342147634, 0.0137385437, 0.0137174884, 0.00350306532, -0.0017225818, 0.000746803, -0.0147070847, 0.00709561585, 0.0033951574, -0.000649751513, -0.0193287097, 0.0131384693, 0.012180456, 0.0188760217, 0.000165152029, 0.012696309, 0.0101065151, -0.0177390389, 0.0129068615, 0.0300247706, 0.00735354237, 0.00377151975, -0.00321881962, -0.00794308912, 0.0160967298, 0.00982226897, 0.0247820169, 0.0181917269, -0.00943274703, -0.0126331439, 0.0109066144, 0.0112329703, 0.00703245, -0.0147386678, 0.00359255029, -0.00741670793, -0.0222764425, -0.0179180093, -0.0325092897, 0.0226975475, 0.0041610417, -0.0057638716, -0.00718510058, -0.0131384693, -0.00902743358, -0.00194366171, 0.0053111841, -0.00772200897, -0.0224238299, -0.00249767769, -0.0266138222, 0.00823259819, -0.0043610665, 0.00299510779, 0.0129910829, -0.00915902946, -0.0266559329, -0.00194629363, 0.0047137416, -0.0159809273, -0.000313196681, 0.0109697795, -0.0147491954, 0.0108960867, 0.0149702746, -0.00251610111, 0.00550068123, 0.00562174898, 0.0153071592, -0.0276665837, 0.00355833536, -0.00650080526, 0.0112329703, -0.00800625514, -0.00873266067, -0.0168231353, -0.00173047744, -0.00760620506, -0.0123699531, -0.0336041637, -0.0209499635, -0.0320250206, -0.0201393366, -0.00305564166, -0.00346621871, 0.0208446868, 0.0114961602, -0.02636116, -0.00436896225, 0.0119172651, 0.0270138718, 0.00611654716, -0.0143807288, -0.01977087, -0.0123910084, 0.0128331687, 0.0199393108, -0.0138859302, -0.013085831, 0.00167652348, -0.0164862517, 0.0100222938, 0.00147386675, 0.0287825111, 0.0366992801, 0.0170126334, 0.0254136734, 0.0285719596, 0.00199103612, -0.0104276072, -0.0106171044, -0.0166546945, -0.0129279168, 0.0158019569, 0.0124120638, 0.00952749606, -0.00122317777, -0.00879056193, -0.0295194462, 0.0142438691, -0.0142122861, -0.0101380982, 0.000121643352, -0.00734827854, -0.0374572724, 0.000280626875, -0.0225291066, -0.0116224922, 0.0166336391, -0.00238319, -0.0201288089, 0.00168047124, 0.00252136495, -0.0162230618, 0.0124752289, -0.0161914788, 0.010111779, -0.0195919, 0.0372888297, -0.00014681094, -0.00577439927, -0.0156650972, 0.00695349276, 0.00517169293, -0.0152650485, -0.0198761467, 0.00164230866, -0.0194655694, -0.00314249448, -0.00999071077, -0.00414788211, -0.00370045821, -0.0131279416, -0.0277297497, -0.0203919988, 0.00961698, 0.00104289234, -0.00562701281, 0.0159704, -0.0028319296, 0.000808652781, -0.0108118653, 0.00891689397, 0.00221606391, 0.0109066144, -0.00525328238, -0.0152755762, 0.0057796631, -0.00384521298, 0.00431369198, 0.00842735916, 0.0230554864, -0.00916955713, -8.03964667e-06, -0.00194102991, -0.0116856573, -0.00336883822, 0.00830629189, 0.00539540499, -0.00891689397, -0.0130963586, 0.00123436342, -0.000697454787, 0.00602179859, -0.00412945868, -0.00639552902, 0.0241082497, 0.000661266095, 0.0118541, -0.0167704988, -0.0266559329, 0.000501377857, -0.00173047744, 0.0290983412, -0.00607970031, 0.000276514504, -0.00167520752, 0.00648501376, -0.00401102286, 0.00917482, -0.0153913796, -0.0222132765, -0.0111382212, 0.00658502616, 0.00557963829, 0.0280455779, 0.00607970031, -0.00021515823, -0.0152861038, -0.0217290074, 0.0127805304, -0.0170863271, 0.0031109117, -0.00756409485, 0.0209289081, -0.0393943526, 0.00814311393, 0.00676925946, -0.00365308393, 0.0221501123, -0.0247399062, 0.00739565259, 0.0103065399, 0.010759227, -0.0204762202, 0.0192971267, -0.00475058844, -0.0341305435, 0.00148044655, -0.0110118901, 0.00875898, 0.0187286362, -0.00719036441, 0.0322566256, -0.0106328959, -0.0128436964, 0.0182022545, 0.0198129807, -0.0060481173, -0.0112224426, -0.00754303951, 0.0173600446, 0.00468742242, 0.0214131791, 0.031309139, -0.0297721084, 0.00327408966, 0.0272454787, -0.00577439927, -0.0249294024, 0.0201077536, -0.000433606328, 0.00432948349, 0.00961698, -0.00923272222, 0.00388469175, 0.000632644165, -0.00158309075, -0.000199202303, 0.0183706954, 0.00775885582, 0.0242977459, 0.00394259347, 0.010727644, -0.0102275824, -0.0161072575, 0.000715878152, -0.02998266, -0.0300668813, 0.0152966315, -0.0128226411, -0.00299773971, -0.00990649, -0.0162230618, -0.00544804335, 0.011243498, 0.0152966315, -0.00262927311, 0.0051427423, -0.0258979443, -0.000659621146, 0.00719562778, 0.0260453317, -0.0123383701, 0.0146965571, -0.00698507577, 0.0115382709, 0.00474795653, 0.0104328711, -0.00851158053, -0.00912744645, 0.0100117661, -0.024487244, 0.0188444387, 0.00471110968, -0.0324250683, -0.0335199423, 0.0163809769, 0.00948538538, -0.000394127768, -0.00335831055, 0.00300826738, -0.0066903024, 0.00180548674, -0.00714299, -0.0127489474, -0.0202235579, -0.00725353, -0.00339778932, 0.0159914549, 0.022192223, 0.0294983909, 0.0231818184, 0.0083378749, 0.000571781362, 0.0101959994, 0.0190760475, -0.0168441907, 0.0089063663, 0.00544804335, -0.00515853381, -0.0205393862, -0.0108013377, -0.0023002848, 0.0196129549, 0.0128963338, -0.0125068119, 0.00442686398, -0.00739565259, 0.00904322509, 0.0108329207, 0.00242661638, -0.0145807536, -0.00814837776, 0.0255400054, 0.0172968786, -0.0155177116, 0.0165178347, -0.00630078046, 0.00690611824, 0.00737986155, 0.00488481531, 0.00846947, 0.0276034195, 0.00988543499, 0.00543225184, 0.00116988178, -0.00235160696, 0.00785886776, 4.76621535e-05, -0.00843788683, 0.00910639111, -0.0110118901, 0.00119751669, -0.00343989977, -0.00541646034, -0.019834036, 0.00163309695, -0.0250346791, -0.00469005434, 0.0113698291, 0.0197919253, -0.00866423082, -0.00737459771, -0.00903269742, -0.0123488978, 0.0164336134, 0.000168935396, 0.0292667821, 0.0172442403, 0.0166546945, -0.00582703762, -0.000903401349, 0.0120541248, 0.0109908348, 0.00230423268, -0.00563754048, -0.0158756506, -0.0153071592, -0.0212657917, -0.0144123109, -0.0158335399, 0.0176969282, 0.000847473391, 0.0152018825, -0.015022913, -0.00902217, -0.00457951473, -0.016896829, -0.0200656429, 0.0304458756, 0.0485533811, 0.00876424368, 0.00409524422, -0.0106381597, 0.00570597, 0.0192129053, -0.00838524941, 0.028298242, -0.010727644, 0.00734827854, 0.000368795678, -0.00138438202, -0.00617971271, 0.00528486492, 0.00772200897, -0.0129279168, -0.00759041356, 0.0179390647, -0.0182022545, -0.0119699035, -0.00260427, 0.0120646525, 0.000740223273, 0.00941695552, -0.0119172651, 0.0155177116, 0.0011251393, -0.0189076047, -0.000923140673, 0.00802204572, 0.00110605801, -0.0148544712, -0.00473479694, 0.0125383949, 0.0139069855, -0.00519801211, -0.014149121, -0.00385837257, -0.00776411965, -0.00175021682, 0.0279403031, 0.0031609179, -0.0163493939, 0.00370572205, 0.00567438686, -0.00780096604, 0.00878529903, 0.00949064922, -0.000666858919, -0.00501904264, -0.007527248, -0.0057638716, 0.0154019073, 0.00693243742, 0.00577439927, -0.0169389397, 0.00373993698, 0.00772200897, 0.0100117661, 0.00858001, 0.00710614305, -0.00192129053, -0.0081694331, -0.0148544712, 0.0102170547, -0.0160756744, 0.00864843931, 0.017507432, -0.0167178605, -0.0155282393, 0.00365571585, 0.0151387174, -0.0146544464, 0.00445055123, -0.0272244252, -0.0166231114, 4.21104778e-05, 0.00369782629, -0.00518485252, 0.000962619204, -0.000205617573, -0.0158545952, 0.0137174884, -0.0125910332, 0.0143912556, 0.0290772859, -0.0224869959, 0.00819048844, -0.0164967794, 0.00921693072, 0.0151281897, -0.0210762937, -0.0107013257, -0.00295299734, -0.00471900543, -0.0137069607, -0.000773780048, -0.0252031218, 0.00520064402, 0.00646922225, -0.00600074325, 0.0019068151, -0.00867475849, 0.0109066144, 0.0292878374, -3.61886923e-05, -0.00933799893, -0.000493482163, -0.0107381716, -0.0253505073, 0.0101223066, 0.00893794931, -0.003545176, 0.00747461, -0.00121725607, -0.0162862279, -0.00717457291, 0.0222974978, -0.0097327847, 0.00608496414, -0.0100644045, -0.00616918504, -0.00785360392, 0.00425052643, -0.00599547941, -0.00593757769, -0.00387679599, 0.0133069111, 0.00784834, 0.00908007193, 0.0105907852, -0.0212131534, -0.0246977955, -0.0202130303, 0.0146123357, -0.0112224426, -0.0116014369, 0.00953276, 0.00771674514, -0.0165704731, -0.0111592766, 0.0121594006, 0.00840630382, 0.00197392865, -0.0210236572, -0.0145175876, 0.00837472174, 0.000466505153, 0.0130647756, 0.00854316354, 0.0122225666, 0.0022108, 0.0190655198, 0.00399786374, -0.0168863013, -0.00527696917, -0.000953407551, 0.00293720583, -0.0180443395, 0.0180232842, 0.00789045077, -0.00103039073, -0.0176969282, -0.00744829094, 0.0195708442, 0.00327672157, -0.025750557, 0.0123278424, -0.0107013257, -0.0204446372, 0.00229896884, -0.0236871447, 0.025750557, 0.0208236314, -0.00595863257, -0.00109816238, 0.0052664415, 0.0154229626, -0.00665871939, -0.00871686917, -0.00869581383, 0.00812732242, 0.00888004713, -0.0232660398, 2.69359025e-05, -0.00688506337, -0.0106486874, 0.00938537251, -0.0196129549, 0.0141912317, -0.00515590189, -0.00557437446, 0.0027635002, -0.00896426849, -0.0138122365, -0.00203577848, 0.0217290074, -0.025940055, 0.0201814473, -0.006332363, -0.0196445379, -0.0224027745, 0.0102328463, -0.00992228184, -0.00351359299, 0.0115909092, -0.00138964574, -0.0256452821, -0.00163704483, -0.00786939543, -0.00273718103, 0.0169389397, -0.0227817688, 0.0106381597, -0.0123804808, -0.0126015609, -0.0312880874, -1.47016563e-05, 0.0156124597, -0.00804310106, -0.017444266, -0.00797467213, 0.00454003597, -0.017507432, 0.00530855218, 0.0138122365, -0.00247530662, 0.00095406553, 0.00979068596, 0.00138701394, -0.0037978387, 0.0124436468, 0.0179390647, -0.0249715131, -0.0111276936, -0.013085831, -0.00865896698, -0.0159704, -0.0119593758, 0.0144333662, 0.00525328238, -0.014117538, 0.0207604654, -0.0208341591, 0.0117382957, 0.00315302215, 0.000170744825, 0.00663766405, -0.0213184301, -0.00484007318, -0.0158124845, -0.00319513259, -0.00682716118, -0.000942879939, -0.0104697179, -0.00315828598, 0.00792203378, -0.0172547679, -0.0130016105, 0.0176127069, 0.00557437446, 0.0101907356, 0.00681663351, -0.000800757087, 0.00444002356, -0.0354359671, -0.0204130542, 0.0196024273, 0.000463873235, 0.0243188012, 0.000944195897, 0.0135174636, 0.0121172899, 0.0126226163, 0.00297405245, 0.00121594011, -0.0118962098, 0.00710087921, 0.00630604429, 0.0179074816, -0.00155808765, 0.0230765417, -0.011243498, 0.00411893101, -0.0081536416, -0.00902743358, 0.0139385685, -0.0411208831, 0.00659029, 0.030108992, -0.0273086447, -0.00694296509, -0.0101959994, 0.0156650972, -0.00423210301, -0.00531908, 0.0215289816, -0.0128015857, -0.0180232842, -0.0432474613, 0.00632709917, 0.000381955208, 0.0172126573, -0.00513484655, 0.0154229626, -0.0136227394, 0.00659555383, -0.0103644412, -0.0163072832, -0.0031609179, 0.0105170924, -0.0236871447, 0.0202656686, -0.0203077774, 0.0059638964, -0.00376888784, 0.00443212781, -0.0045005572, 0.00466373563, -0.0192655437, 0.0109803071, 0.00383994915, -0.00828523654, 0.0220027249, -7.69832186e-05, -0.0225922726, -0.00685874419, 0.00920640305, -0.00752198417, -0.0165388901, 0.0229081, -0.0114645781, 0.00891163, 0.008722133, 0.00850105286, -0.0323197916, 0.0116646029, -0.0183075313, 0.0106750065, -0.0151597727, 0.0100170299, 0.00265822397, -0.0304248203, 0.003545176, 0.00756409485, -0.00294246967, 0.00515327, -0.0011054, -0.00416367361, -0.0134648252, 0.00380047061, -0.000456635491, 0.00965909101, -0.00398733607, -0.0178758986, 0.011727768, -0.019707704, -0.0160125103, -0.00993280951, 0.00322408346, 0.0138648748, -0.00271875784, -0.00312670297, -0.00517695677, -5.53933751e-05, 0.00741670793, 0.027750805, -0.0219606142, -0.0100433491, 0.0128752785, -0.00817469694, -0.00062705134, -0.00634815451, 0.0021502662, 0.0067745233, -0.00737986155, -0.0147491954, 0.0377099328, 0.0110329455, -0.000397417636, 0.00605338113, -0.0331830569, 0.0214342345, 0.0221501123, 0.0181496162, 0.0127805304, -0.00113566697, -0.0184022784, 0.00701139448, -0.0140333166, -0.0166546945, -0.00823786203, -0.0122962594, 0.0116751306, 0.00277139596, 0.0236660894, 0.0224027745, 0.00655344315, 0.0226975475, 0.0196866486, 0.00790097844, -0.042089425, -0.00310038403, -0.00476638, -0.0115803815, -0.0123594254, 0.0161704235, 0.0111171659, -0.00292141433, 0.0023226561, 0.00933799893, -0.00116988178, -0.0204235818, -0.0102854846, -0.0146123357, -0.00594284106, -6.13974044e-05, 0.0144123109, 0.0171494931, -0.0151702994, 0.00237529422, 0.000332607, -0.0106065767, -0.0164757241, 0.0210026018, -0.00936958101, -0.0029477335, -0.0135385189, 0.0133279664, 0.00681136968, -0.00245951512, 0.0111803319, -0.00963277183, -0.00860632863, -0.0207288824, 0.004813754, -0.0196129549, 0.0242977459, 0.00380047061, 0.00480585825, 0.0230554864, 0.0280455779, -0.0277718604, 0.0205393862, -0.00318986876, 0.0257926676, -0.0156756248, 0.0160651468, -0.0101170428, 0.0189391878, -0.0202867221, -0.00312143913, -0.00638500135, -0.017475849, 0.0196129549, 0.00162125344, -0.00904322509, -0.00398733607, -0.0223817192, 0.00609022798, -0.0245504081, 0.0263822153, -0.00899058674, -0.00250557344, 0.00309512019, -0.00188839179, 0.00716930907, 0.00488744723, -0.0210026018, -0.0122225666, 0.027624473, 0.0196866486, -0.0102802208, 0.0121488729, -0.0135279913, -0.0177390389, -0.00520064402, -0.0119277928, -0.00990649, -0.00835893, -0.0171073824, -0.0172021296, 0.00142649247, -0.00672714878, -0.00227265, 0.00560595747, -0.00532434369, -0.0102960123, 0.0182654206, -0.0121909836, -0.00778517453, -0.00876950752, -0.0143702012, -0.00664292788, -0.00134161348, 0.0190760475, 0.0135490466, -0.0184970275, 0.000427355553, 0.0116330199, -0.015475601, -0.00654817931, -0.00576913543, 0.00373993698, 0.0121278176, -0.0603864267, 0.00679557864, 0.0100591406, 0.00873792451, -0.0333093889, -0.0218974482, -0.00423736684, -0.00753251184, 0.0100696683, -0.00468742242, -0.00343726785, -0.0184865, -0.0106223682, 0.0167073328, -0.0149492202, 0.000481638592, 0.0209499635, -0.0030609055, 0.0125278672, -0.0343621522, -0.00297142053, 0.00325829838, 0.00212789513, 0.0133490218, 0.0389100835, 0.0210026018, 0.0100749321, -0.00144886365, 0.00392153813, -0.0111276936, 0.000103960243, -0.0248030722, -0.0129489722, 0.02998266, 0.0162335895, 0.000312538701, 0.0143280905, -0.019865619, 0.0370993316, 0.0106013129, -0.0127700027, -0.01366485, -0.0110013625, 0.00993280951, 0.00320039643, 0.00653238781, -0.0245714635, 0.0167178605, 0.0028319296, -0.00269507058, -0.0032661939, -0.00911165494, 0.00495061325, 0.0131700523, -0.00455582747, -0.0220869463, -0.00879056193, -0.0111592766, -0.00631130813, -0.00320039643, 0.0132753281, -0.0169810504, 0.00465320796, -0.0137174884, -0.0168863013, -0.00661134534, 0.00332146394, -0.00496640475, -0.00439791288, -0.0172968786, -0.0104697179, -0.0348674767, 0.0286772363, -0.00304511399, -0.00291878264, 0.0122225666, 0.0236871447, 0.00609022798, -0.0387837514, 0.0118330447, -0.00329777692, 0.00219237688, 0.021518454, 0.00277139596, -0.0389311388, -0.0338147134, 0.010853976, 0.0143912556, 0.0274349768, 0.0169389397, 0.00681663351, -0.0153387422, -0.00676399563, -0.0232449844, -0.0147176124, 0.00910639111, 0.0163178109, 0.0192760713, -0.025329452, 0.0259611104, 0.0246556848, 0.000933010306, 0.0105276192, -0.00228844141, 0.0144228386, -0.0041610417, 0.000984332408, 0.00452424446, 0.0013659586, -0.0160019826, 0.00452161254, -0.00537961349, -0.0180653948, 0.0111592766, 0.0214552879, 0.00308985636, 0.00315039023, -0.00425052643, 0.0269296505, -0.0042768456, -0.00345569104, 0.00463215262, -0.00659029, -0.00350043364, 0.0196445379, 0.00338726165, -0.0214552879, 0.0320671275, -0.0211710427, -0.000549410121, -0.0136227394, 0.0251820665, 0.00726932148, -0.0144965323, -0.00363729266, -0.0374362171, 0.0213710684, 0.0054954174, -0.0120014865, 0.0168547183, -0.00958539732, -0.0147597231, -0.0174232107, -0.0223817192, -0.0134542976, 0.00573755288, 0.00706929667, 0.0020160391, -0.00208710064, -0.00427947752, -0.0147913052, 0.000531973783, 0.015149245, 0.0153597966, -0.0152861038, 0.00228580949, -0.000921824714, -0.00220422028, 0.0426579155, 0.000316815567, -0.00666398322, 0.00973804854, -0.00285561685, -0.0246977955, -0.00848526135, 0.0121067623, 0.000432619359, 0.0152439931, 5.72850549e-05, 0.00481901783, 0.00598495174, 0.00451634871, -0.0103486497, -0.000804046926, 0.0194339864, -5.60924746e-05, -0.00492429407, 0.00506115332, 0.00324250688, -0.00384258106, 0.0139490962, -0.00765884342, 0.0116540752, 0.000218448113, -0.000695480849, 0.00621655956, -0.0365097858, 0.0108645037, 0.0204867478, -0.029624721, 0.000539540488, 0.00272665359, 0.00626919745, 0.0159809273, -0.0103223315, -0.0163388662, -0.0220027249, -0.00346885063, -0.021065766, -0.0152755762, 0.00322934729, -0.0270349272, -0.00746934628, -0.000438212155, 0.00391364237, 0.00921693072, 0.0191392116, 0.00972225703, -0.0249504577, -0.0195076801, -0.0159072336, -0.0133700771, -0.0109803071, 0.00673767645, -0.0138017097, 0.0101538887, -0.00555331912, 0.0227186028, 0.0368677229, 0.0252031218, -0.0260242764, -0.0107802823, -0.0169494674, 0.0140122613, -0.0236029234, 0.0130963586, 0.0325092897, 0.0211078767, -0.0264032707, -0.00834840257, 0.00978015829, -0.0233292058, -0.0239608623, 0.0119277928, -0.00780623, -0.0136437947, 0.00793782528, -0.016023038, 0.0372046083, 0.00313723064, -0.000257268694, -0.0200445876, -0.00306880102, -0.0119172651, -0.0117067127, 0.0173284616, 0.0248451829, 0.0124225914, 0.00965382718, 0.00148439442, -0.0154334903, 0.0131911077, 0.00024838603, -0.0130226659, -0.0111592766, -0.0228238795, 0.0537750795, 0.00148307846, -0.00271086209, -0.00775359198, -0.0165915284, 0.00903269742, 0.0201077536, -0.0331830569, 0.0163072832, 0.0128647508, 0.0172968786, -0.0117067127, -0.0223396085, -0.00830102805, -0.0194550417, 0.00803783722, 0.00538750924, 0.0132858558, 0.00114356272, -0.0303827096, 0.00483480934, 0.00581124611, 0.0151071344, -0.0101959994, 0.0171916019, -0.0124752289, -0.00761673274, 0.00465057604, -0.00756409485, -0.0111592766, 0.00972752087, 0.0171916019, -0.0423210301, 0.0117804063, -0.0467847399, -0.00748513732, -0.0108645037, 0.00838524941, -0.0188549664, -0.00604285346, -0.00107184332, -0.0144123109, -0.00503483415, 0.0236660894, 0.0125489226, 0.00111987558, -0.00845367834, -0.0240871944, -0.00817469694, 0.031435471, -0.00468215905, 0.0045005572, 0.000633631134, 2.7938288e-06, -0.0205183309, -0.0114961602, -0.0137069607, -0.00200419547, 0.0165704731, -0.0150966067, -0.000184891323, -0.013117414, -0.0111803319, -0.0032109241, -0.00620076805, 0.00842735916, -0.0273507554, -0.00421367958, -0.01796012, -0.000451371685, -0.0238766409, 0.0020884166, 0.00244898745, 0.0119909588, -0.00304774591, 0.0230765417, -0.0108960867, 0.00470847776, 0.0129384445, -0.000120820885, 0.0054954174, 0.00941695552, 0.0137385437, -0.0229081, -0.013085831, -0.0171494931, 0.0042163115, 0.0176758729, 0.0229291562, 0.00375046441, -0.00430316431, -0.00953802373, 0.0160756744, 0.00317144534, -0.00454266788, 0.00423736684, -0.0285930149, 0.00498745963, -0.00622708723, 0.00259374222, -0.0249294024, 0.00854842737, -0.0102486378, -0.0031661815, 0.0168757737, 0.025919, -0.0199182555, 0.00649554143, -0.026297994, 0.0165599454, 0.00622182339, 0.00914850179, 0.0125489226, 0.00447687041, 0.00850631669, -0.00980647746, -3.51092012e-06, -0.00223975116, -0.0139175132, 0.0062481421, -0.0105539383, 0.00375309633, -0.00711140689, 0.0160546191, 0.00383205363, -0.000480651623, 0.0281508546, -0.0243609119, 0.0184654444, -0.00426368602, 0.011306663, -0.0309933126, 0.00636921, 0.000284410227, -0.0133806048, 0.0067903148, -0.0220027249, 0.00514011038, 0.00796414446, 0.00675346795, 0.0253083967, 0.00613233866, 0.0372677743, 0.00492955791, 0.0110329455, -0.00103368063, -0.00460320152, -0.000682979298, -0.00739565259, 0.00331883202, 0.0340252668, -0.00948012155, -0.00265822397, -0.000740223273, -0.0238976963, -0.00625340594, -0.00396101689, -0.0194129311, 0.0260453317, -0.0124120638, -0.017928537, -0.0108645037, -0.00340568484, -0.00666398322, -0.00622182339, -0.00188049604, 0.0104065519, 0.00373993698, 0.0182338376, 0.0213605408, -0.0114435228, -0.00978015829, 0.0109592518, -0.0283192974, -0.0138754025, 0.00362150115, -0.00808521174, -0.021128932, 0.0138964579, -0.00532171177, 0.0174337383, -0.00786939543, -0.00881688111, 0.00530855218, -0.00308722444, 0.0169810504, -0.0137490714, -0.0062323506, -0.00213973876, 0.00545330718, -0.0115593262, 0.00885899179, -0.0134648252, 0.00955381524, 0.00901164208, 0.00119620073, 0.0167704988, 0.0174232107, -0.00677978713, -0.00940642785, -0.00257268711, -0.0175705981, -0.00678505097, -0.00650080526, 0.00065304141, 0.0206236076, -0.00655344315, -0.00851684436, 0.00409787614, 0.0176232345, 0.00937484484, 0.00185944082, -0.000862606859, 0.00405050162, -0.0224448852, 0.0110118901, -0.0229712669, 0.0200866982, -0.0116540752, 0.00589546701, 0.00737459771, -0.00582703762, 0.0285719596, -0.00504536182, -0.0164651964, 0.00938537251, -0.00346621871, -0.00919587538, -0.0113382461, -0.0167810265, -0.0148544712, -0.0364045091, 0.0320671275, 0.00320039643, 0.00198445632, 0.0077114813, -0.0182970036, -0.0212868471, -0.00484270509, 0.0197813977, -0.00167915528, 0.00182654196, 0.0307617038, -0.00510326354, 0.00749566499, 0.0224027745, -0.00712719839, 0.0289298985, -0.0236450341, -0.0213605408, -0.0203604158, 0.0282771867, -0.000762594456, -0.00910639111, 0.00882214494, -0.00881161727, 0.0181075055, 0.0134437699, 0.000775754, -0.00619550422, 0.00444002356, 0.0105802575]
|
16 Jun, 2021
|
Python calendar module : yeardays2calendar() method
16 Jun, 2021
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions. yeardays2calendar() method in Python is used to get the data for specified year. Entries in the week lists are tuples of day numbers and weekday numbers. Day numbers outside this month are zero.
Syntax: yeardays2calendar(year, width)
Parameter:
year: year of the calendar
width: [Default: 3] number of months in each row.
Returns: tuples of day numbers and weekday numbers.
Code #1:
Python3
# Python program to demonstrate working
# of yeardays2calendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
year = 2016
# default value of width is 3
# printing with yeardays2calendar
print(obj.yeardays2calendar(year))
Output:
[[[[(0, 0), (0, 1), (0, 2), (0, 3), (1, 4), (2, 5), (3, 6)], [(4, 0), (5, 1), (6, 2), (7, 3), (8, 4), (9, 5), (10, 6)], [(11, 0), (12, 1), (13, 2), (14, 3), (15, 4), (16, 5), (17, 6)], [(18, 0), (19, 1), (20, 2), (21, 3), (22, 4), (23, 5), (24, 6)], [(25, 0), (26, 1), (27, 2), (28, 3), (29, 4), (30, 5), (31, 6)]] … [[(0, 0), (0, 1), (0, 2), (1, 3), (2, 4), (3, 5), (4, 6)], [(5, 0), (6, 1), (7, 2), (8, 3), (9, 4), (10, 5), (11, 6)], [(12, 0), (13, 1), (14, 2), (15, 3), (16, 4), (17, 5), (18, 6)], [(19, 0), (20, 1), (21, 2), (22, 3), (23, 4), (24, 5), (25, 6)], [(26, 0), (27, 1), (28, 2), (29, 3), (30, 4), (31, 5), (0, 6)]]]]
Code #2: iterating the list of weeks
Python3
# Python program to demonstrate working
# of yeardays2calendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
# iterating with yeardays2calendar
for day in obj.yeardays2calendar(2018, 1):
print(day)
Output:
[[[(1, 0), (2, 1), (3, 2), (4, 3), (5, 4), (6, 5), (7, 6)], [(8, 0), (9, 1), (10, 2), (11, 3), (12, 4), (13, 5), (14, 6)], [(15, 0), (16, 1), (17, 2), (18, 3), (19, 4), (20, 5), (21, 6)], [(22, 0), (23, 1), (24, 2), (25, 3), (26, 4), (27, 5), (28, 6)], [(29, 0), (30, 1), (31, 2), (0, 3), (0, 4), (0, 5), (0, 6)]]] … [[[(0, 0), (0, 1), (0, 2), (0, 3), (0, 4), (1, 5), (2, 6)], [(3, 0), (4, 1), (5, 2), (6, 3), (7, 4), (8, 5), (9, 6)], [(10, 0), (11, 1), (12, 2), (13, 3), (14, 4), (15, 5), (16, 6)], [(17, 0), (18, 1), (19, 2), (20, 3), (21, 4), (22, 5), (23, 6)], [(24, 0), (25, 1), (26, 2), (27, 3), (28, 4), (29, 5), (30, 6)], [(31, 0), (0, 1), (0, 2), (0, 3), (0, 4), (0, 5), (0, 6)]]]
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : yeardays2calendar() method
|
https://www.geeksforgeeks.org/python-calendar-module-yeardays2calendar-method/?ref=lbp
|
Pandas
|
Python calendar module : yeardays2calendar() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python calendar module : yeardays2calendar() method, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00769634172, 0.0211767275, -0.00802117, 0.0323361605, 0.00725625129, -0.00371719152, 0.0387069918, 0.0316236354, -0.00116833509, -0.00908996072, 0.00524964882, 0.0217530355, 0.0187771879, 0.0347461812, -0.044595819, 0.00431445707, -0.0193639752, 0.0385183804, 0.01035784, 0.00808928, 0.000964662293, -0.0178865287, -0.0146172857, -0.00967674796, -0.00617698207, -0.0099910982, 0.0174150039, -0.0294231828, 0.00551684666, 0.0248546246, 0.0114947399, 0.00754440576, 0.0068004434, -0.0147744613, -0.055116076, -0.0406140499, -0.000720385928, 0.0371352397, -0.00354691851, 0.00334521034, 0.00504794065, 0.0169015639, 0.0287944824, 0.0172892623, -0.0060145678, 0.0342432186, 0.00371981109, 0.0142715005, 0.00289464183, -0.0183790103, 0.0214072503, -0.0392728224, 0.0277047344, -0.00530728, -0.00792162586, 0.0125844879, -0.0399853513, 0.0198040642, -0.00986535847, -0.00690522697, 0.0499607325, -0.00795306079, -0.0115471324, -0.0231990479, 0.0187981445, 0.00933096278, -0.0202651117, 0.0215434693, 0.022214083, -0.030512929, 0.0341593921, 0.00242573605, -0.00852937, -0.00322732911, -0.0427516326, -0.0177503098, 0.0134541905, 0.00308325188, -0.0438832939, 0.0100330114, -0.0307015404, -0.0156860761, -0.000624443637, -0.000791769649, -0.00601980696, -0.0216901656, 0.0308272801, -0.0245402753, -0.0252528023, 0.00828312896, 0.036841847, 0.0281238686, -0.00434851181, -0.0353958383, 0.00658563757, -0.0167234316, 0.0252737589, 0.0417247564, -0.0473621, -0.0224026926, -0.00297846855, -0.0167758241, -0.00950909499, -0.0184314027, 0.0114423484, -0.0126997493, 0.0130664911, -0.0104731023, 0.0136532784, -0.0180751383, 0.0459370464, 0.00797925703, -0.0165767353, -0.0212710332, -0.0275789946, 0.0231571347, -0.0268245526, -0.0304919723, 0.017006347, -0.0151202464, 0.0461466163, -0.0189029276, 0.0255252384, 0.0342432186, -0.0321475491, 0.00877037179, -0.0129721863, -0.00145779923, 0.00667470321, -0.0278095175, -0.0118090902, -0.0288992655, 0.0115471324, -0.057253655, -0.0378058553, -0.000839577115, -0.00118077802, 0.012553053, -0.0016450996, 0.00254754676, 0.0122282244, -0.0140619343, 0.0218368638, -0.021260554, -0.00839315169, -0.0186200123, 0.0202231985, 0.00312778493, 0.0031435024, 0.0161785595, -0.0180856176, -0.016262386, -0.00687379204, -0.00143815228, 0.0218159072, -0.0500445589, 0.00165426813, -0.00373552856, 0.0181694441, -0.00239037164, 0.0134122763, -0.0297584888, 0.00577880535, -0.00459475257, 0.0276837777, -0.00226856093, 0.0322942473, 0.0108660394, 0.00857652258, 0.0190391466, -0.00530989934, -0.0224026926, -0.0331325158, 0.0126578361, 0.0445539057, -0.0341384374, 0.0406559631, 0.0110336933, -0.0192382336, -0.0411379673, -0.0198145434, -0.0209776387, 0.0247288849, 0.0458532199, 0.0164090823, 0.0512600467, 0.0296537057, 0.0213758163, -0.00281081512, 0.00771205919, 0.0160842538, 0.0164090823, 0.00188086228, 0.0265940297, -0.0478231497, -0.00115523709, 0.00366218016, 0.0191020165, -0.0331744291, -0.00938335434, -0.0162833426, 0.0130664911, -0.0358359255, -0.019594498, 0.0086131962, 0.02122912, -0.00741866557, 0.00948813837, -0.00347618968, -0.0379944667, -0.0131817535, -0.00791114755, -0.00143291312, -0.0500026457, 0.0118510043, 0.0198355, -0.0059674154, -0.00502436468, 0.0528946668, -0.0201288927, -0.0199507624, 0.0303662326, -0.0172368716, -0.00802640896, -0.0152040729, -0.0217111222, 0.025378542, 0.0178027023, -0.0293183979, -0.0399015248, -0.0247288849, -0.0105883637, 0.00316969818, 0.00210614665, 0.0451826081, -0.004762406, 0.0302404929, 0.0140828909, -0.000665047206, -0.00338712381, 0.0330906026, -0.0395243019, -0.00276104291, -0.0394614339, -0.000289955351, 0.0282286517, -0.0618641265, 0.0608162917, -0.00409703143, 0.00778016821, 0.0139676286, 0.0188714918, -0.029800402, 0.00609839475, -0.0396919549, -0.0339498259, 0.000801593123, -0.0113061303, 0.0150992898, 0.0226332173, 0.0181170516, 0.0350186154, 0.00972913951, -0.039084211, -0.016262386, -0.0195421055, -0.00385864917, 0.00808404, -0.0148058962, -0.00517106149, 0.0118824393, -0.0100277727, 0.0193325393, -0.0115890456, -0.0150888115, 0.0369256735, -0.0243307091, -0.0129093165, 0.0182218347, 0.0486614183, 0.00112445699, -0.0231990479, 0.0421019755, 0.00351286377, 0.0128883598, 0.0252528023, -0.0089904163, 0.0119872224, 0.00191229722, -0.0287316106, 0.0195421055, -0.0255042817, -0.026845511, 0.012249181, -0.00334259076, -0.000158484909, 0.0110756066, -0.0111070415, -0.0167863034, -0.0179179627, -0.0272017736, -0.000545528659, 0.0208099857, -0.0258186329, 0.0231152214, -0.0379944667, 0.0430031121, 0.00767014595, -0.00135301577, 0.0427097194, -0.0241840109, -0.0158013385, 0.00267066713, 0.0147115914, 0.0248755813, -0.00868130568, 0.0373238511, -0.032419987, -0.0230313931, 0.00307539315, -0.0165033881, -0.0015468651, 0.00264054188, -0.00345785264, -0.0187562313, 0.00638130959, -0.0246869717, -0.00471263379, 0.0219206903, -0.0136951916, -0.0530204065, -0.0159585141, 0.0424372815, 0.0074501005, -0.00891182944, -0.0244564489, -0.0450149551, -0.0420600623, 0.0395871736, 0.0388117768, 0.0203594174, 0.0534814522, 0.00714098942, -0.0250013229, -0.0492482036, -0.0247707982, -0.0200765021, 0.0101063605, 0.002823913, 0.0159375574, 0.000551095232, 0.0079478221, 0.0309320632, 0.0130664911, 0.0141562391, -0.0263635069, -0.00933096278, 0.00805784483, 0.00435113115, -0.0162204728, -0.0119348308, -0.0114213917, 0.00435375096, 0.00479122158, -0.0379735082, -0.00339760212, 0.017792223, -0.0319589414, -0.0149630709, -0.00211138581, -0.0269502942, 0.00760727562, -0.0462304428, -0.0240792278, -0.00339760212, 0.0176874399, 0.0158642083, 0.00018435331, 0.022381736, -0.0113480436, -0.0272017736, -0.0160213839, -0.00517892, -0.00193718332, -0.00360192987, -0.000348732283, -0.0143762846, 0.00114868814, -0.00224891398, -0.00829884596, 0.00390318199, 0.0246660151, 0.0338450409, -0.0260282, -0.00780636398, -0.0213862937, 0.0333630368, 0.0113270869, 0.00949337706, -0.00338974339, -0.0278514307, -0.0254414119, 0.00306491484, -0.0286477841, -0.0384764671, -0.0241211411, -0.0252947155, 0.00442448, 0.0642531887, 0.0267197695, 0.0118405251, 0.0412846655, -0.0404463969, 0.0068214, 0.0349767022, -0.0136323217, -0.0112327822, 0.034662351, -0.0202127211, 0.0337402597, 0.0564153902, -0.00902709085, -0.0163147766, 0.0197411943, -0.0192277562, -0.00507151708, 0.00379054, -0.0216272958, -0.0182113573, 0.0345156565, -0.00436684862, 0.0066170725, 0.0246660151, 0.0476135835, 0.0471525341, 0.016702475, -0.00709383702, 0.0125740096, 0.0348090492, -0.0443024263, -0.0723843798, 0.0137475841, 0.000258192886, 0.0133389281, -0.0197097603, 0.0237020086, -0.0539005883, 0.00936239772, -0.00959816, -0.0123225292, -0.0378687233, -0.0125635313, 0.0254623685, 0.0128045334, 0.00305705611, 0.0168806072, 0.0105254939, -0.0233667, 0.020956682, 0.0431288518, 0.0360035822, -0.00330591667, -0.00213496201, -0.0162099935, 0.00744486134, -0.0294860527, 0.00639702752, -0.05109239, -0.0211872067, 0.0307434537, -0.0035364402, -0.00115589204, -0.0560800806, 0.00698905345, 0.062409, 0.00456069782, -0.00227903924, 0.0608162917, 0.0175617, -0.0421438888, 0.031330239, -0.0035835926, -0.00546969427, 0.00212972285, 0.0121234404, 0.00374862645, -0.0337821729, -0.0174778737, -0.0193325393, -0.0175093077, 0.0564153902, 0.0443443395, 0.0585948825, -0.0202546343, 0.00558495568, 0.0349347889, -0.00311468681, -0.0151307248, 0.00608791644, -0.0209776387, 0.0272646435, 0.0273903832, -0.00393985631, 0.0222350396, 0.00251087244, -0.00975533575, 0.00495101605, -0.0115576107, -0.00593598047, 0.00193194416, -0.0472363606, 0.0263006371, 0.00070728804, 0.0230313931, 0.00793210417, -0.00770682, -0.00313564367, 0.00420443434, 0.00643894076, -0.0320637226, -0.00105700269, -0.0273484699, 0.00322732911, 0.00950385537, 0.0250641927, 0.0244564489, -0.016974913, -0.0193430185, 0.0182742272, 0.00651752809, 0.0249174945, 0.0147535047, -0.0176036134, 0.0186200123, 0.00899565592, -0.0310997162, -0.0108136479, -0.0220045168, -0.0150573766, 0.00380363781, -0.029800402, 0.0336564332, 0.0292136148, -0.0346833095, 0.012249181, -0.0297165755, -0.00441924, 0.0154869882, -0.0156441629, -0.0109917801, 0.000176330839, -0.0102268606, -0.0201498494, -0.00858700089, -0.0115261748, -0.0182113573, 0.000136709612, 0.0118614826, -0.00218997337, -0.0452245213, 0.00355215766, -0.00221747905, -0.0128045334, 0.0141352825, 0.00405249838, 0.015581293, -0.0191334505, 0.0377429835, -0.0194163658, 0.0521402247, 0.000989548396, -0.0284801312, 0.0124692256, 0.006753291, -0.0330486894, -0.00597265456, 0.000279804459, 0.0394195206, 0.0163043, -0.00669042068, -0.00346047222, 0.0377848968, 0.00553780328, 0.0146906348, -0.00957720354, 0.0224446077, 0.000412912137, -0.0165662579, -0.0515115261, 0.0133598847, -0.000121892575, 0.0405930951, -0.00982344523, -0.00997014157, 0.00571069587, 0.0102321, -0.0305967554, -0.000542909082, 0.0312045, 0.000920129358, -0.00492220093, 0.00384817086, 0.00221093, -0.00199219468, -0.0273484699, -0.0015586532, 0.0376382023, 0.0203489382, 0.00372766983, -0.0185885765, -0.0117986118, 0.0209357254, -0.0373238511, 0.00356787513, -0.000361502782, -0.0310787596, -0.0228218269, -0.0140409768, -0.0198459774, -0.00169749127, 0.0101115992, 0.0132236667, 0.00390056241, -0.00676376931, 0.0272856, -0.0231990479, -0.0257348064, -0.0214596428, -0.0056373477, -0.00376434415, 0.0166605618, -0.0526431873, 0.00783779938, 0.0290459618, 0.0128150117, -0.0309739765, -0.00610887306, -0.0505894311, -0.0130350562, 0.00882800203, 0.0329439044, -0.0311625861, 0.000726280035, 0.0540682413, -0.00444543641, 0.0460208729, -0.00741866557, -0.00849793479, -0.00677948678, 0.0139257153, -0.0169644337, -0.0200765021, 0.00986535847, 0.0137161482, -0.0120815272, 0.00333735161, 0.0264473334, 0.00143815228, -0.0457274802, 0.0217739921, -0.0104311891, -0.00463666581, 0.0167758241, -0.00692618359, 0.030177623, 0.0113585219, 0.029800402, -0.000863153371, 0.029968055, 0.000489862461, 0.0139047587, -0.0143972412, 0.002797717, 0.0109393885, -0.00439828355, -0.00541730225, 0.0188295785, 0.0285220444, 0.0206632894, -0.02565098, 0.00972390082, 0.0134856254, -0.0206108969, -0.0250851493, 0.00549065089, 0.0101587521, -0.00137921167, 0.00237727375, 0.0250222795, -0.0317074619, -0.0220673867, 0.0170377828, -0.00244800257, -0.00268114544, 0.0210509878, 0.0454340875, 0.0240582712, 0.0217530355, -0.0142400656, 0.00540682394, -0.0145229809, 0.0323152058, 0.00230654492, 0.0198983699, 0.00530204084, 0.0259024594, -0.0153612485, -0.0196573678, 0.0178341363, 0.00405773753, -0.0035600164, 0.0110965632, -0.00634463551, -0.00936239772, 0.013674235, -0.00955100823, -0.0262796804, 0.0287944824, 0.00212972285, -0.0371771529, -0.00741342641, -0.0573793948, -0.0243726224, -0.00140147819, -0.0330696441, 0.0155079449, -0.0150573766, -0.0278304741, 0.0142086307, 0.0134541905, -0.000411274901, -0.00478074327, 0.0171006527, 0.00608791644, 0.00741342641, -0.0258605462, -0.00275580375, -0.015612728, -0.0121863112, 0.0108031696, -0.0151097681, -0.0113166086, -0.0129302731, -0.0189343616, 0.0422905833, -0.00948289875, 0.0273484699, -0.00492220093, -0.00835647713, -0.0098967934, -0.0195211489, 0.0324409455, 0.0195316281, 0.0173416547, 0.0135170603, -0.00344475475, 0.0118510043, -0.0119138742, 0.0225074776, 0.0460627861, -0.0221931264, 0.0139885852, 0.0168282166, -0.00162676245, -0.0290669184, 0.0235972237, 0.0174464379, 0.00553256413, -0.00610887306, -0.0107717346, -0.0172997415, -0.00408131396, -0.00328234048, -0.00283701089, 0.00139099977, -0.0110651283, -0.00947242, -0.0123958774, 0.0143658053, 0.000411602348, -0.0409493558, 0.000581220491, 0.00156520226, -0.0272017736, -0.00801593065, -0.00683711749, 0.0136847133, -0.00445591472, 0.020548027, 0.00797925703, 0.0168491732, 0.00592550216, 0.0422905833, -0.0204327647, 0.0165976919, 0.000249024335, -0.035521578, -0.00839839, -0.00670613814, -0.0278304741, -0.012553053, 0.00926809292, 0.0156546421, -0.00420705415, 0.0319589414, -0.0320427679, -0.00471787294, -0.0248965379, -0.000474144937, 0.0210614651, -0.00232357206, 0.00789543055, -0.0277885608, 0.0312464125, -0.0225074776, -0.00900613423, 0.0199612398, -0.00617698207, 0.0135694519, -0.0374915041, 0.0135484952, -0.0160423405, 0.00351024419, 0.0148268528, -0.0254833251, 0.00433803303, 0.0137161482, 0.0244354922, 0.0352491401, 0.0132027101, 0.0260701124, -0.00358097302, -0.0330906026, 0.0144286761, 0.00250039413, 0.00923141837, 0.00354691851, 0.0218368638, -0.0127207059, 0.0226751305, 0.0212919898, 0.000776707, -0.0143448487, -0.0210719444, 0.0502541251, 0.00884372, -0.0231990479, -0.0031906548, -0.00847173855, 0.0059674154, 0.0192172769, 0.00304395822, -0.0304919723, 0.00461047, -0.0100801643, 0.0104364278, 0.00193456374, 0.0217320789, 0.0134541905, -0.010221622, 0.0132236667, -0.0143762846, -0.00418609753, -0.0175617, -0.00701524923, 0.0127416626, 0.0225703474, -0.013674235, -0.0115052182, 0.0114318701, 0.000286189694, 0.0366532393, 0.0168806072, 0.0247707982, -0.00457641529, -0.0290250052, 0.0157699026, 0.013234145, -0.00670613814, -0.0121339187, 0.0199088491, -0.0428145, 0.00125674601, 0.00752868829, 0.014219109, -0.027453253, -0.0246660151, -0.0440928601, 0.00405773753, 0.00806308351, 0.0295070093, 0.00252397032, -0.0185466632, -0.0454340875, -0.0153507702, 0.0165453013, 0.0292974412, -0.0138209322, 0.00272436882, 0.000702048885, 0.000594645855, -0.00168177381, 0.024288794, -0.0227799136, 0.00638654875, -0.0394614339, 0.032357119, -0.00405511819, -0.0165348221, -0.00123316981, 0.0154974665, -0.0290250052, -0.0443443395, 0.0311206728, 0.0128883598, -0.0123644425, -0.0180751383, 0.0171216093, 0.0335516483, -0.0104573844, -0.00586787099, -0.0119033959, 0.0185676198, 0.00599361118, -0.0221721698, -0.0116833504, -0.020956682, -0.0186828822, -0.0019162267, 0.00193063437, -0.00776445074, 0.00429612, -0.0105726458, -0.0261539388, -0.0564573035, 0.00209697802, -0.0527270138, -0.0127207059, -0.0359826237, 0.00395557377, -0.00795306079, 0.0295070093, 0.00419657584, 0.0202336777, 0.00315136113, -0.0227799136, 0.00508199539, 0.00379577908, -0.0139257153, -0.0152774211, 0.0252947155, 0.00122531108, -0.0136113651, 0.0212186407, -0.0077225375, -0.0116728721, -0.0171635225, -0.00955624692, -0.00762299309, 0.00660659419, -0.000339236285, -0.0242049675, -0.0208414197, 0.000312549266, -0.0375124626, 0.0134856254, -0.0388746448, -0.0101115992, -0.00715670688, -0.0186304897, 0.00394771527, -0.0171111319, 0.0367999338, -0.0165348221, -0.0245821886, 0.0466495752, -0.0124797048, -0.0151412031, 0.00232750154, -0.04769741, 0.0121863112, -0.0111489547, -0.00673757354, 0.0155708147, 0.0317703299, -0.012794055, -0.00963483471, -0.0374495909, -0.00653324556, 0.0156965554, 0.00697333599, -0.0317284167, -0.000427974737, -0.0512181334, -0.0235762671, -0.0145334592, 0.0276418645, 0.00466024224, -0.00697857514, 0.00109302194, -0.0393776074, 0.00521559455, -0.0163462125, -0.00794258248, 0.00825169403, 0.00860271789, -0.00214544032, 0.0420600623, 0.0068475958, 0.0186095331, 0.00257243286, 0.00154948467, 0.0207680725, -0.0114318701, 0.0138523672, 0.031602677, 0.0177712664, 0.0214177296, -0.00791114755, -0.00998062, -0.00554304244, 0.00221093, -0.0265102033, -0.00987583678, -0.00843506493, -0.00524440967, -0.00215984811, -0.0171740018, 0.0311206728, 0.0225703474, 0.0165976919, -0.00455545867, 0.029087875, 0.0166396052, 0.0194478016, 0.00311730639, 0.00487766787, -0.0123853991, 0.0196259338, -0.00521297473, -0.0262587238, 0.00565830432, -0.0171006527, -0.0318541564, 0.00608267728, 0.00172237738, -0.00231178408, 0.00534133427, -0.00913711358, 0.00124954223, 0.0122910943, -0.0148058962, 0.00398438936, 0.0361502767, 0.0194058884, 0.0248127114, -0.0378477685, -0.017247349, -0.0235133972, 0.0159375574, 0.00860795751, 0.004489969, 0.0219835602, 0.0226332173, 0.0154345967, -0.0114947399, -0.00866034906, -0.00480431924, -0.0220254734, 0.00621365616, -0.0200765021, -0.010750778, -0.0123015726, -0.0322523341, -0.0165872145, -0.0191439297, -0.0117147854, -0.0221931264, 0.00661183335, -0.0289830919, 0.013779019, -0.014219109, 0.0111070415, 0.0103473617, -0.00560591277, 0.00515534403, 0.00490648346, 0.021501556, -0.0149421142, -0.00128228695, -0.00560067315, 0.00254492718, -0.0123434858, 0.029632749, -0.00144077186, -0.00992298871, -0.0107926913, 0.0279562138, -0.0237648785, 0.0312045, -0.00576308742, 0.0389584713, -0.00890659, -0.0104102315, 0.00382983382, 0.00892230775, 0.033866, -0.0113585219, -0.00234714849, -0.0204537213, -0.00658563757, -0.0140619343, -0.0407607481, 0.00148399512, 0.00983916223, -0.00720385974, 0.00689474866, 0.00173416547, 0.00200136309, 0.00211400539, 0.0267616827, 0.0082202591, 0.0110965632, 0.00550636835, -0.00168832275, -0.010205904, -0.0135484952, 0.0111175198, -0.0301357098, -0.00915807, -0.0116623938, -0.00165426813, 0.0120500922, -0.0130664911, -0.0123958774, -0.012553053, 0.00965055265, 0.00741342641, -0.0200241096, 0.00318017649, 0.0131817535, -0.00408131396, 0.0293393545, 0.00769634172, -0.0204013307, -0.0204956345, -0.00646513654, -0.0387908183, -0.000195650282, -0.0192068, 0.0430450253, 0.00687379204, 0.0309949331, 0.015172638, 0.000711217406, -0.0257767197, -0.01061456, 0.0295698792, -0.00226463145, -0.000300269952, -0.0219416469, -0.0158432517, 0.0182008781, 0.019049624, 0.0280400403, -0.0284172613, 0.0197411943, 0.0122282244, 0.00452926289, 0.00727720791, 0.0168596506, -0.0090690041, 0.00351810316, 0.00637607044, 0.0177083965, 0.00688427035, -0.0139781069, 0.0133808414, 0.00105110859, 0.00406821584, 0.00507937605, -0.0138104539, -0.0079635391, -0.00298108812, -0.00513700675, -0.0038324534, -0.00335044949, -0.0265521165, -0.0245193187, 0.00594645878, 0.0167863034, 0.000318770792, -0.0149630709, 0.0360874087, 0.0256928932, 0.00107403, 0.0142086307, 0.000396539719, 0.0111594331, 0.0329858176, 0.00490386365, -0.0178760495, -0.00324304658, -0.00204851571, 0.00199088478, -0.00380363781, -0.0146487206, 0.0193534959, -0.0119243525, -0.0237020086, -0.016702475, -0.00769634172, -0.0073453174, 0.00964531302, -0.00286058709, 0.0258186329, -0.000449258892, -0.0259024594, -0.00336616719, -0.0120500922, -0.000435178605, 0.0164719522, -0.0186304897, -0.00383769255, 0.0172997415, -0.0118719609, -0.0101325558, -0.00209959759, -0.0315188505, 0.0204956345, -0.00130258873, 0.0159899481, 0.0351234, -0.00243359478, 0.00258553075, -0.0179703552, 0.00680568255, -0.0126159228, -0.0034107, -0.000327611895, -0.0207366366, -0.0186933614, 0.0186095331, 0.0158642083, 0.0128883598, -0.00945670251, -0.00802640896, -0.0367999338, 0.0061036339, 0.0049483967, -0.00421753246, 0.00654372387, -0.023471484, 0.0273903832, 0.00174988294, -0.00661183335, -0.0391261242, 0.0112118255, 0.0210719444, -0.011295652, 0.007858756, 0.0371981114, -0.0173311755, -0.0327762514, -0.019458279, -0.0340126939, 0.00145648944, -0.0215644259, -0.00966103096, -0.017760789, 0.0323990323, -0.034662351, -0.00210483675, 0.00803164858, -0.0277466476, 0.000705978251, 0.0172683056, -0.0141248042, 0.000782601128, -0.0193534959, 0.0103892749, 0.00975533575, 0.0221721698, -0.00864463113, -0.00938335434, 0.00353120104, 0.00765966764, 0.00907948241, -0.00725625129, 0.000558954, 0.0343689583, 0.0119033959, 0.00145648944, 0.000449258892, 0.00625033071, 0.0127521409, -0.0499607325, 0.00738723064, 0.0013634942, 0.0218368638, -0.00189788954, 0.00289464183, -0.0373028964, -0.024393579, -0.0033766455, 0.0337402597, -0.00591502339, -0.0216482524, 0.0211976841, 0.0415571, -0.00604076358, -0.039084211, 0.00181799219, 0.0153193353, 0.00432231557, 0.00803164858, -0.0207575932, -0.029255528, -0.00359669072, -0.00641274499, -0.0360664502, -0.00503222318, 0.00252266065, 0.00281343469, -0.00871274062, 0.0209671613, 0.0221512131, 0.0224236511, 0.029255528, 0.0206318535, 0.0103840362, -0.0163776465, 0.0274113398, -0.023848705, -0.0150259417, -0.035919752, 0.0208099857, -0.0314559788, 0.00978153106, -0.0249384511, -0.0286058709, -0.0253366288, -9.5533e-05, 0.0349976607, -0.00126525969, 0.00475192768, 0.0202336777, 0.015885165, 0.0166291278, -0.0362550616, -0.0104207098, -0.00223843567, 0.0241001844, -0.0181799214, 0.0132446233, 0.0152355079, -0.00439304439, 0.0158118177, 0.0203279816, 0.00965579133, -0.000807487173, -0.0157908611, -0.0276209079, -0.0250222795, 0.0286477841, -0.00241263816, 0.00614554714, -0.00489338534, 0.040278744, 0.00563210854, 0.000109940724, -0.00581547944, -0.00840886869, 0.0180541817, 0.0241630543, -0.00639702752, -0.00611935137, -0.0447215587, 0.0100906426, -0.0021100759, 0.01629382, -0.00657515926, -0.0143029355, 0.00347880926, 0.0148582878, 0.00812595338, 0.0208414197, 0.0220254734, 0.00524440967, -0.0135904085, -0.0123539641, -0.00676376931, 0.0505475178, 0.0130036213, -0.000268507487, 0.0110336933, -0.0159375574, -0.0527689271, 0.0235762671, -0.025378542, 0.0140409768, -0.0311416294, -0.0209671613, 0.0239744447, -0.000851365214, 0.0107612563, -0.0272646435, -0.0118719609, 0.0140409768, 0.0107141035, -0.00819930155, -0.017792223, -0.000458754861, -0.0338240862, -0.0222769529, 0.00774349412, -0.00200005341, 0.00571069587, 0.0100015765, 0.0377010703, -0.0165557787, -0.00526012713, -0.0169958696, 0.00871274062, -0.00671137776, -0.0131188836, 0.0139361937, -0.00651752809, 0.032755293, 0.0180227477, 0.0241630543, -0.0346204378, 0.024561232, -0.0116833504, 0.00111921784, -0.0112118255, 0.0109603452, -0.0303243194, 0.0205165911, -0.0153612485, 0.0103054484, 0.00374862645, 0.0161995161, 0.0284382179, 0.0256928932, -0.0254623685, 0.00660135504, 0.0191229731, -0.00469953613, -0.0287525691, 0.0257557631, -0.00703096716, 0.00505318027, -0.010630277, 0.00181537261, 0.0213024672, 0.0231780913, -0.0382669, -0.00136611378, -0.00789019093, 0.0107298214, -0.00504008215, -0.0123749208, -0.00976057444, 0.00651752809, 0.0347461812, -0.00363598438, -0.017215915, 0.000922748935, 0.0417247564, 0.0348300077, -0.00295489212, 0.00168832275, -0.0145439375, 0.0183056612, 0.0064232233, -0.0430450253, -0.0163462125, -0.0208938122, 0.0214072503, 0.0345785245, -0.00861843582, -0.000550440338, -0.0208518989, -0.00264447136, 0.00492220093, 0.00280819554, 0.0283543915, -0.0143448487, -0.0129931429, -0.00515534403, 0.00353905978, 0.00651228894, 0.0044035227, -0.0236810502, 0.00484623294, -0.0110022584, 0.00222926703, -0.0113480436, 0.00153245742, 0.00745533966, -0.0330486894, 0.0138104539, 0.0108450828, -0.0122910943, -0.00379577908, -0.00999633782, -0.0210195519, 0.0241420977, -0.0240582712, 0.000362812571, -0.0142086307, -0.00149840279, -0.00838791206, 0.0360245369, 0.00290773972, -0.0119453091, -0.00899565592, 0.0132970149, -0.0198774133, 0.0194687583, -0.0130141, -0.00511605, 0.00358883175, -0.00146565796, -0.000933227246, 0.00300990348, -0.0151412031, 0.0219626036, 0.00799497403, 0.0129407514, 0.0188295785, -0.0168806072, -0.00276890164, 0.00155079446, 0.00987583678, 0.0138628455, -0.000721695775, -0.00494577689, 0.0215644259, -0.00497721229, -0.0021100759, 0.00868130568, -0.00106617121, 0.00658563757, 0.0142505439, 0.0193325393, 0.00444543641, 0.0203908514, 0.000544873765, 0.0129197948, 0.00736103486, -0.00169225212, 0.0109498668, -0.00825169403, -0.0171740018, 0.0070728804, -0.0104573844, 0.000446311838, 0.0167653468, -0.022738, -0.000951564347, 0.00754964491, 0.0129407514, 0.00231964281, -0.0209985953, 0.0149945058, 0.00530466, -0.0493320301, 0.00654372387, 0.0408655293, 0.00961911678, 0.00222926703, -0.00255933474, 0.0218997337, -0.023848705, 0.00567402178, -0.00438518589, -0.000906376517, 0.0217320789, 0.000748546503, -0.00796877872, -0.0118719609, -0.000876251259, 0.0127102276, -0.00221747905, 0.0106093204, 0.0215225127, 0.0155393798, -0.00515534403, 0.00872845855, -0.00360454945, 0.00100854039, -0.0210195519, -0.00782208145, -0.00712527195, -0.00358621217, -0.00153900636, -0.0110756066, 0.0011349353, -0.0106774298, 0.0182532705, -0.00656992, 0.0250222795, -0.0062398524, 0.00929428823, -0.0165872145, -0.016702475, -0.0450149551, -0.0285639577, 0.0090952, 0.0176245701, -0.0306177121, 0.013401798, -0.0123434858, -0.010221622, -0.00929428823, 0.0130350562, -0.0384345539, 0.0119872224, -0.019971719, 0.0110546499, -0.0055011292, 0.014219109, 0.0219835602, 0.0133179715, 0.00470215548, 0.0122910943, -0.0100801643, -0.0117881335, 0.0202022418, -0.0148268528, -0.00334521034, -0.0236181803, -0.00638654875, 0.00656468095, -0.00911091734, -0.014900201, -0.00567926094, 0.00562686939, 0.0100644464, 0.0129931429, 0.00397915, 0.0034395156, 0.00110415521, -0.0171844792, 0.021092901, -0.0142505439, -0.00344213517, 0.000690260727, 0.0288573522, 0.0219835602, 0.00585215352, 0.000616584904, -0.00526536629, 0.00209304877, 0.010069686, 0.0143238921, 0.00496673351, 0.016933, 0.0126264011, -0.00176167116, -0.00551684666, 0.00270341197, -0.0102740135, 0.00842458662, 0.00203148834, -0.00496149436, -0.00962959509, 0.0152355079, 0.0100958813, 0.0135799302, 0.007313882, 0.0165138654, 0.00935191941, -0.0247498415, 0.007874473, 0.0273903832, 0.00760727562, 0.00687903119, -0.0053649107, -0.00687379204, 0.014187674, 0.0098077273, 0.0246031452, 0.0106879082, -0.0068214, -0.0108869961, 0.0120920055, 0.00938335434, 0.0114004351, -0.0142505439, 0.00247681793, -0.00507413689, -0.017215915, -0.0196992811, -0.0320637226, 0.0190286674, 0.00179965515, -0.011190868, -0.0053649107, -0.012144397, -0.00617174292, 0.00209566834, 0.0106879082, -0.00323780742, -0.0239115749, 0.00141981523, -0.0204642, 0.00311730639, -0.00557971653, 0.00299156643, 0.0143343704, -0.00475716684, -0.0232828744, -0.00314874155, 0.00294703338, -0.0156860761, -0.00483051548, 0.0128359683, -0.00973961782, 0.0131503185, 0.020548027, -0.00299418601, 0.00493005943, 0.00480431924, 0.011976744, -0.0263635069, 0.00510819117, -0.0049562552, 0.0105988421, -0.00575260911, -0.00493529858, -0.0195421055, 0.00229868619, -0.00333735161, 0.00011264217, -0.02646829, -0.0171635225, -0.0188400578, -0.0244774055, -0.00628176564, -0.00278723869, 0.0220883433, 0.00773825496, -0.0250222795, -0.0071776635, 0.0157070328, 0.0213024672, 0.00292083761, -0.0147011131, -0.0176140908, -0.00807880145, 0.0027741408, 0.0199821964, -0.0121653546, -0.00891706813, 0.000881490472, -0.015445075, 0.0165138654, 0.00603552442, 0.0266778562, 0.0303871892, 0.0112432605, 0.0218368638, 0.0261539388, 0.00729816454, -0.00854508765, -0.001086473, -0.0196678471, -0.00894850306, 0.0139990635, 0.0101587521, 0.0116414372, -0.00153900636, -0.0047231121, -0.0289830919, 0.0178341363, -0.0131712751, -0.00935715903, 0.000736758346, -0.0107717346, -0.0351653136, 0.00797925703, -0.0149630709, -0.0124797048, 0.0285010878, -0.00210876623, -0.0193115827, -0.00213365234, 0.00352072273, -0.018473316, 0.0109184319, -0.0119977007, 0.0127626192, -0.0218368638, 0.0409912691, -0.00467072055, -0.00928381, -0.0136637567, 0.0174359605, 0.00111332373, -0.0188714918, -0.0191439297, 0.0017682201, -0.0173416547, -0.00301514263, -0.00987059716, -0.00683711749, -0.00523393136, -0.0154869882, -0.0256719366, -0.0096034, 0.0153926834, -0.0056373477, -0.00969770458, 0.0168491732, -0.00814691, 0.00190967764, -0.0080526052, 0.00942002889, -0.00106617121, 0.0178131796, -0.00831456389, -0.0110441716, 0.00738723064, -0.00576308742, 0.0045476, 0.00251480192, 0.0229894798, -0.00364384311, -6.93780794e-06, -0.00403940072, -0.0164195597, -0.00816786662, 0.0119348308, 0.00910043903, -0.0051317676, -0.0151831163, 0.00377482246, 0.000268834934, 0.00374600687, -0.011190868, -0.00133205915, 0.0238277484, 0.00539110648, 0.00636559213, -0.0166919976, -0.0288783088, -0.00257767201, -0.00624509156, 0.0261120256, -0.00710955448, 0.000101181482, -0.00056386576, 0.00848221686, -0.003929378, 0.0123434858, -0.0201812852, -0.0188610144, -0.00961911678, -0.000298796454, 0.00769634172, 0.0325666852, -0.0024545514, 0.00462880731, -0.0175617, -0.0168806072, 0.00918950513, -0.0189867541, 0.000307310111, -0.00556923822, 0.0135380169, -0.0427935459, 0.0140304985, -0.00175119273, 0.00418347772, 0.0172787849, -0.0218368638, 0.0110336933, 0.0190915372, 0.0135484952, -0.0192382336, 0.0195840206, 0.000770158076, -0.0329648629, -0.00322994869, -0.0103211664, 0.0026392322, 0.0156965554, -0.00829884596, 0.0210614651, -0.0153193353, -0.00681092171, 0.0174254812, 0.02565098, -0.00386388833, -0.0179179627, -0.0082202591, 0.0205689836, 0.00885943789, 0.0206737667, 0.0257348064, -0.0226960871, 0.00266542798, 0.027180817, -0.0124063557, -0.0233667, 0.0157594252, 0.00462880731, 0.00499292975, 0.015445075, -0.00593074132, 0.0101954257, -0.00400010683, -0.00220438093, 0.00502174487, 0.0218368638, 0.00708859786, 0.0179179627, 0.0099910982, 0.0117881335, -0.0138942804, -0.0188924484, 0.00303347968, -0.0307015404, -0.0263215937, 0.0161366463, -0.0102268606, -0.0107245818, -0.0066170725, -0.0143134138, -0.00847173855, 0.00519987661, 0.0127207059, -0.0053177583, 0.00426730467, -0.0129093165, 0.00302824052, 0.0122910943, 0.0303871892, -0.0169015639, 0.00975009613, -0.00332949287, 0.0172787849, 0.00479122158, 0.00501388637, -0.00730340369, -0.0139047587, 0.00918950513, -0.02122912, 0.0181065742, 0.00565306516, -0.0239325315, -0.0396081284, 0.0150259417, 0.010221622, 0.00636035297, -0.000344802917, -0.00354167935, -0.00384293171, -8.63644527e-05, -0.00419133669, -0.0108241262, -0.02292661, -0.0046759597, -0.000311239477, 0.0106512336, 0.0190391466, 0.0380154215, 0.0167653468, 0.00732436031, -0.00435375096, 0.00781684276, 0.0217949506, -0.0219835602, 0.00817834493, 0.00883848, -0.00919998344, -0.0210405085, -0.0100434897, 0.000971866131, 0.0216901656, 0.013401798, -0.0093257241, 0.00460785069, -0.00124299317, 0.00790066924, 0.0144077195, 0.00401320448, -0.0137161482, -0.0135694519, 0.0216482524, 0.0155708147, -0.0179808326, 0.0247288849, -0.00917378813, 0.00931524485, 0.012794055, 0.00179965515, 0.0102897314, 0.0239115749, 0.0191020165, 0.00890135113, -0.00127246359, -0.00275580375, 0.00875989348, -7.20795288e-05, 0.00180358451, 0.00971342251, -0.00605124189, -0.00426468486, -0.00418871688, -0.00735579571, -0.0157594252, -0.0030806323, -0.0286477841, -0.00146827754, 0.00585215352, 0.0257348064, -0.00361502776, -0.00351286377, -0.014460111, -0.0110546499, 0.0151831163, -0.00784303807, 0.0295070093, 0.0114109134, 0.0156860761, -0.0118405251, 0.00262089516, 0.0138314106, 0.0135170603, 0.0109184319, -0.00983916223, -0.0163357332, -0.0163252559, -0.0196364112, -0.0237858351, -0.0191858429, 0.0250222795, 0.00370933278, 0.0147430263, -0.0160842538, -0.00774349412, 0.00113755488, -0.00871274062, -0.0158746876, 0.0351653136, 0.0541101545, 0.00881752372, 0.0101692304, -0.0092471363, 0.00291559845, 0.0170796961, -0.00818882324, 0.0290669184, 0.00422015181, 0.00656992, 0.00402106345, 0.00364122353, -0.0118824393, 2.54181632e-05, 0.0105516892, -0.0133179715, -0.00630796142, 0.011463305, -0.0195525847, -0.00458427425, -0.00708859786, 0.0140724126, 0.0068475958, 0.00426992401, -0.00774873327, 0.0174988303, 0.000701394, -0.0117986118, 0.00417561876, 0.00663279, -0.00151019089, -0.0179389194, -0.00439304439, 0.00874941517, 0.0112537388, -0.00213627191, -0.0117881335, -0.00179834536, -0.00662755081, -0.0109393885, 0.0274113398, 0.00240870868, -0.00787971262, 0.00505579961, 0.00177214947, -0.0167967808, 0.0118405251, 0.00900089554, -0.00489862449, -0.00162676245, -0.00508985436, -0.00948813837, 0.0168596506, 4.24045356e-05, 0.00508723455, -0.0184942726, 0.0104573844, 0.00146172859, 0.0126578361, 0.00512128929, 0.000243457704, -0.00764394971, -0.010630277, -0.00621365616, 0.0148268528, -0.0036097886, 0.00252266065, 0.0220254734, -0.0164195597, -0.00914235227, -0.00362812565, 0.0138418889, -0.0140409768, -0.00284486962, -0.0211138576, -0.0199402831, -0.000922094041, 0.00179834536, -0.00161366456, -0.00265756925, 0.000267034, -0.011976744, 0.0156755988, -0.0161680803, 0.017247349, 0.0296956189, -0.0179913118, 0.0162414294, -0.0275370814, 0.00693142274, 0.0128569249, -0.016262386, -0.0170482602, -0.00405773753, -0.00250694319, -0.0177293532, 0.000986928819, -0.0240792278, 0.00580500113, 0.00615602545, 0.00312778493, 0.00670613814, -0.00646513654, 0.00869702362, 0.0255252384, -0.00623461278, -0.00704144547, -0.000420770899, -0.0107612563, -0.0187562313, 0.00668518152, 0.00620317785, -0.00842982531, 0.00599885033, -0.0049091028, -0.0100068161, -0.0106879082, 0.0193849318, -0.00010920396, -0.00174071442, -0.00847697817, -0.012416834, -0.0101482738, 0.0074029481, -0.00209959759, -0.0178131796, 0.00612982968, 0.0163147766, 0.00359931029, 0.0111489547, 0.00180620409, -0.0256928932, -0.0215434693, -0.0217949506, 0.0149945058, -0.0151097681, -0.00948813837, 0.0104731023, 0.00595693709, -0.0279562138, -0.0126997493, 0.014732548, -0.00286058709, 0.00145910901, -0.0169853903, -0.0119977007, 0.011369, 0.00277938, 0.00945146382, 0.0146068074, 0.0117881335, -0.000315660029, 0.0163462125, 0.00289464183, -0.0189238843, -0.0100539681, -0.00300466432, 0.00818358455, -0.0143762846, 0.0167129543, 0.00927333161, 0.00204720581, -0.0125320964, -0.00638654875, 0.0149630709, 0.000933227246, -0.027180817, 0.00845602155, -0.00713575026, -0.0235133972, 0.00143029355, -0.0144181978, 0.0255671516, 0.0130769694, 0.00724053383, -0.00486980891, 0.00414156448, 0.0133074932, -0.006753291, -0.0120710488, -0.00814167131, 0.00672709523, 0.0136532784, -0.0232409611, -0.00347095053, -0.00964531302, -0.0121863112, 0.00866034906, -0.0141562391, 0.00759155815, -0.00484623294, -0.00610887306, 0.00351548358, -0.00933620241, -0.018337097, 0.00271650986, 0.0250432361, -0.0222559962, 0.0165453013, 0.00215853821, -0.00907424372, -0.023471484, 0.00399486767, -0.0130350562, -0.000872976787, 0.0140514551, -0.00181013346, -0.0184942726, -0.00123382465, -0.0100592077, -0.0032797209, 0.0151831163, -0.0218368638, 0.00680568255, -0.00913187396, -0.015308856, -0.0186514482, -1.52979683e-05, 0.0110022584, -0.020411808, -0.019594498, 0.000242639086, 0.000986928819, -0.0165872145, 0.00858176127, 0.0200974587, -0.00629748311, -0.00347618968, 0.012794055, -0.00330853625, -0.00711479364, 0.0143658053, 0.020003153, -0.0231990479, -0.00963483471, -0.00805784483, -0.0133179715, -0.0155289015, -0.0116728721, 0.0142924571, 0.00255016633, -0.0185466632, 0.0224446077, -0.0178760495, 0.00779064652, 0.00265102042, 0.00405511819, 0.00229999586, -0.0235133972, -0.00768062426, -0.017519787, -0.000537669868, -0.00417299941, -0.000925368513, -0.00733483862, -0.0118090902, 0.00450568693, -0.0153298136, -0.0057421308, 0.0147220697, 0.00058351265, 0.00939907227, 0.00713575026, -0.000394247589, 0.00729816454, -0.035856884, -0.0141143259, 0.0183580536, -0.00365432142, 0.0214806, -0.0046261875, 0.0107926913, 0.0180751383, 0.0147535047, -0.00234845816, 0.00106027711, -0.0167758241, 0.010221622, 0.0116519155, 0.00446901238, -0.00482789567, 0.0226122607, -0.00421753246, 0.00650705, -0.0108555611, -0.00671661692, 0.0189972334, -0.0415361449, 0.00344999391, 0.0307853669, -0.0197935868, -0.0020118414, -0.00942002889, 0.0186828822, 0.000452205917, -0.00132158073, 0.0289202221, -0.0149735492, -0.010237339, -0.0414732732, 0.00499292975, -0.00214282074, 0.0152250296, -0.0123749208, 0.0147535047, -0.0105150156, 0.00691046612, -0.00450830627, -0.0151831163, 0.00183109008, 0.016974913, -0.027558038, 0.0141038476, -0.0175931342, 0.00965579133, -0.00716194604, 0.00442709913, -0.00646513654, 0.0075391666, -0.0225074776, 0.00998585951, 0.0052758446, -0.011295652, 0.0205165911, 0.00183501944, -0.0191439297, -0.00223450619, 0.0156336855, -0.00194766163, -0.017551221, 0.0304081459, -0.00523655117, 0.00858176127, 0.000642125844, 0.00410489, -0.0237229653, 0.00563210854, -0.0206947234, 0.00520773558, -0.0121024838, 0.00484885229, -0.00422539096, -0.0295489226, 0.00592026254, 0.0140514551, -0.000865772949, 0.00369885447, 0.00257636211, -0.00736627402, -0.0172368716, -0.00258684042, -0.000890004099, 0.00875465386, -0.0105412109, -0.0180017911, 0.00978153106, -0.011463305, -0.0203384608, -0.00168177381, -0.00237858342, 0.0169434771, -0.00774873327, -0.00462880731, 0.000534722873, -8.68249299e-06, 0.00388746453, 0.0250641927, -0.0222350396, -0.0162519068, 0.00988107547, 0.0012390638, 0.000669958943, 0.000818620378, 0.00404725922, 0.00306229526, -0.00515796337, -0.0127521409, 0.0226122607, 0.00350500504, -0.00177476904, 0.0121653546, -0.0324409455, 0.0230104364, 0.0206108969, 0.0231780913, 0.00956148654, 0.00181930198, -0.0162309501, 0.0103787966, -0.017928442, -0.0109917801, -0.00828836765, -0.0114842616, 0.0111279981, -0.000696809671, 0.0255042817, 0.0204851571, 0.000362812571, 0.012280616, 0.0157384686, 0.0115890456, -0.0527689271, -0.00163069181, -0.0042096735, -0.00933096278, -0.0117566986, 0.0107926913, 0.00737675233, -0.0105674071, -0.00781160314, 0.0163881257, 0.00289988099, -0.0127730975, -0.00476502581, -0.0103683183, -0.00852413, -0.00523393136, 0.0163252559, 0.0144705893, -0.0164405182, -0.000550767814, -0.00137004314, 0.00100461091, -0.0172683056, 0.0162519068, -0.0139361937, -0.00517106149, -0.0105254939, 0.0126683144, 0.0015599631, -0.0100330114, 0.00784827769, -0.0138209322, -0.00931524485, -0.0141562391, 0.001275738, -0.0214072503, 0.0215225127, -0.00152721826, 0.00505579961, 0.021124335, 0.0338869542, -0.0277885608, 0.0220883433, -0.00421229331, 0.0230104364, -0.0132551016, 0.0126473578, -0.0142924571, 0.021501556, -0.0288783088, -0.00938335434, -0.00908472203, -0.0128778815, 0.0218368638, 0.00789019093, -0.00809975807, -0.0090952, -0.0226541739, 0.000714491878, -0.0213129465, 0.0282496084, -0.015308856, 0.00135432556, 0.00348666799, 0.00474144937, 0.0097186612, 0.000385079038, -0.0218787771, 0.00106486143, 0.0315188505, 0.017006347, -0.00851889141, 0.012008179, -0.00687379204, -0.0213758163, -0.00728244707, -0.0137685407, -0.0133074932, -0.000426337501, -0.0165453013, -0.0207261592, 0.00578928366, -0.00104652438, -0.00631843973, 0.000735448557, -0.00427778298, -0.00911615696, 0.00833552051, -0.0236810502, -0.0184314027, -0.00719338143, -0.0152774211, -0.0141771957, -0.00504008215, 0.0217320789, 0.0146696772, -0.0110546499, -0.000321717816, 0.0103630796, -0.0138314106, -0.0123539641, -0.0133179715, 0.00919474475, 0.0155603364, -0.0582595766, 0.0136323217, 0.0216901656, 0.0174673945, -0.0286477841, -0.0184104461, -0.0113166086, -0.0110860849, 0.0065594418, -0.00807356182, -0.000677817676, -0.0203698948, -0.00958768185, 0.0158118177, -0.00781684276, 0.00103408133, 0.0334468633, 0.00289988099, 0.0119557874, -0.0364017561, -0.00966627, 0.00561639108, -0.00616650376, 0.0204642, 0.031267371, 0.0227799136, 0.0127835758, 5.47247728e-05, 0.00408131396, -0.00287630456, -0.00819406286, -0.0218159072, -0.0163357332, 0.0264892466, 0.0185990557, -0.00307015399, 0.0160109047, -0.0237229653, 0.031602677, 0.00593074132, -0.0133598847, -0.00701001, -0.0106250383, 0.00721957721, 0.00503222318, 0.00868130568, -0.0253366288, 0.0124692256, 0.00404987903, -0.00884372, -0.00178655714, -0.012553053, 0.00566354347, 0.0187667087, 0.00337926508, -0.0184418801, -0.00423848908, -0.0168701299, -0.00250956276, -0.00700477092, 0.00771205919, -0.0169539563, 0.00539110648, -0.00727720791, -0.0222979095, -0.00910567865, 0.0113794785, -0.0058783493, -0.00860271789, -0.0142400656, -0.0104259495, -0.0310787596, 0.0244774055, -0.00599885033, -0.0080526052, 0.00844554324, 0.0263006371, 0.00640226668, -0.0361712351, 0.0110127367, 0.00140802714, 0.00394771527, 0.0244564489, 0.00710431533, -0.0436737277, -0.0257138498, 0.00742914388, 0.0211033784, 0.0226751305, 0.0171740018, 0.0080526052, -0.00489862449, -0.00528894272, -0.0228637401, -0.0174988303, 0.0137475841, 0.0166291278, 0.0235553104, -0.023303831, 0.0280400403, 0.0233457442, -0.00267328671, 0.00873893686, -0.00653324556, 0.0155603364, -0.00328496, 0.00209959759, 0.00265102042, -0.00545921596, -0.0167339109, 0.0158432517, -0.00349452673, -0.019971719, 0.0106459949, 0.0251270626, 0.00506103877, 0.000705323357, -0.00407869415, 0.0198040642, 0.00538062816, -0.00780112483, 0.00470215548, 0.00386126875, -0.00490648346, 0.0150888115, 0.00313040451, -0.0200136323, 0.0351234, -0.0196573678, 0.00353905978, -0.00719862059, 0.0285639577, -0.00228689797, -0.0112327822, -0.01035784, -0.0311416294, 0.0184104461, 0.00855556596, -0.0178341363, 0.0157070328, -0.0200660229, -0.0126787927, -0.0123644425, -0.0202965476, -0.00910567865, -0.00197778689, 0.00482789567, 0.00332949287, -0.00966103096, -0.00865510944, -0.0169120431, 0.00842982531, 0.0094462242, 0.0194792356, -0.0115052182, 0.00575260911, 0.00614554714, -0.00716194604, 0.0471525341, -0.00342641748, -0.00675853, 0.00346833095, -0.00212055421, -0.0189343616, -0.00138445082, 0.00993346702, -0.000541271816, 0.0146487206, -0.00597265456, 0.010342123, 0.0130245779, 0.00721433805, -0.00682663918, 9.12761752e-05, 0.0104102315, -0.00774873327, -0.00358097302, 0.00186907407, 0.0065280064, -0.00637607044, 0.0178865287, -0.00760203646, 0.00593074132, 0.00214675022, -0.00302824052, 0.0177293532, -0.0461047, 0.00512914779, 0.0224236511, -0.0325457267, -8.90659e-05, 0.00651752809, 0.00630272226, 0.0156651195, -0.00787971262, -0.00726149045, -0.0239115749, 0.00665898575, -0.0154660316, -0.0139990635, 0.00322732911, -0.024393579, -0.00620317785, 0.00509509351, 0.00297060981, 0.00773825496, 0.017383568, 0.000862498477, -0.0249803662, -0.0195421055, -0.0278304741, -0.00730864285, -0.00544349803, -0.00366741931, -0.0119348308, 0.00627128733, 0.000266379066, 0.0221302565, 0.0354796648, 0.0215225127, -0.0191334505, -0.00598313287, -0.0098077273, 0.0115261748, -0.0205270704, 0.00445591472, 0.0382040329, 0.0187562313, -0.043506071, -0.010205904, 0.00955100823, -0.0185466632, -0.0279562138, 0.0160737745, -0.00576832704, -0.0045397412, 0.0131398402, -0.0244564489, 0.0387279503, 0.00302562094, 0.00139623892, -0.0221512131, 0.00118077802, -0.00983916223, -0.00761251478, 0.0121024838, 0.0244774055, 0.017006347, 0.00719338143, 0.00677424762, -0.0205794629, 0.00880704541, 0.003240427, -0.0175407436, -0.015853731, -0.0212815106, 0.0447634719, -0.00586787099, -0.00416514045, 0.00187038386, -0.0149735492, 0.0131817535, 0.0209147688, -0.0311416294, 0.00990203209, 0.0120186573, 0.0082202591, -0.00844030362, -0.0261120256, -0.00799497403, -0.0259653293, 0.00973961782, 0.00264709094, 0.00890659, -0.00407083565, -0.0316655487, 0.00696809683, 0.00121352286, 0.0175093077, -0.00483313482, 0.0218368638, -0.0135589736, -0.00806308351, 0.00567402178, -0.00359407114, -0.00755488407, 0.00910567865, 0.011369, -0.0483680218, 0.0064232233, -0.0415361449, -0.00386912748, -0.00735055655, 0.00150495174, -0.0289202221, 0.00229999586, -0.00185859576, -0.027013164, -0.0036726587, 0.0160109047, 0.00450306712, -0.000922094041, -0.00240870868, -0.0230523497, -0.0101482738, 0.0371352397, 0.00132420042, 0.00404464, 0.00589930592, 0.000338581391, -0.0179389194, -0.00825693272, -0.0216901656, -0.00542254141, 0.0176036134, -0.0148268528, -0.00450044777, -0.0140200201, -0.0145753725, 0.00198302604, -0.00819930155, 0.00986011885, -0.024016358, -0.00562686939, -0.0134856254, -0.0117881335, -0.0268664677, 0.00526536629, -9.06110472e-06, 0.0145753725, -0.0128778815, 0.0291507449, -0.00967150927, 0.00446377322, 0.0147115914, -0.00538586732, 0.00273746671, 0.0114947399, 0.0133389281, -0.0221721698, -0.0141562391, -0.0151307248, 0.00379839865, 0.0216901656, 0.0196783245, 0.0027112707, -0.00234845816, -0.00893278606, 0.0200241096, -0.00199481426, -0.00187300344, 0.00834599882, -0.0218368638, -0.0030465778, -0.00761775393, -0.00373814814, -0.0299051851, 0.0132865366, -0.0110651283, -0.00411274889, 0.011463305, 0.0284172613, -0.0195316281, -0.000834992796, -0.0265311599, 0.0132131884, 0.000143094847, 0.00513438741, 0.00213496201, 0.00535967154, 0.0123539641, -0.00441662082, -0.00101246976, -0.00191229722, -0.0143029355, 0.0119453091, -0.00543825887, -0.000948289875, -0.00420705415, 0.0174045246, 0.000603486958, -0.00381935528, 0.0314140655, -0.0254833251, 0.0207680725, -0.00538586732, 0.000516713189, -0.0281657819, 0.00816262793, 0.00775921158, -0.00904280879, 0.0022214083, -0.0225703474, 0.00534133427, 0.00955624692, 0.00189527, 0.0380154215, 0.00687903119, 0.0424582399, 0.00704144547, 0.0141667174, 0.00174857315, 0.000298960163, -0.00123775401, -0.00536229089, -0.000643763109, 0.0281657819, -0.00441138167, -0.00241263816, 0.00192146585, -0.0195735414, 0.00088411005, 0.00373290898, -0.0185466632, 0.0298842285, -0.0126264011, -0.0145334592, -0.00756012322, -0.00866034906, -0.00382983382, -0.0109708235, -0.00185073703, 0.0119872224, 0.000677162781, 0.0142295873, 0.0193220619, -0.00917378813, -0.00742914388, 0.0127102276, -0.0334678218, -0.0132655799, 0.00243752403, -0.000907031412, -0.0157803819, 0.0140409768, -0.004618329, 0.0136218434, -0.00704668462, -0.0126054445, 0.00761251478, -0.00451354543, 0.0139571503, -0.0126159228, -0.00685283495, 0.00259993831, 0.00261565601, -0.0122072678, 0.00131765136, -0.0176455267, 0.00670613814, 0.00676376931, -0.00105700269, 0.0265730731, 0.0191229731, -0.00648609316, -0.013234145, -0.00175643188, -0.0194478016, -0.013097926, -0.00574737, -0.000559281441, 0.0241211411, -0.00168570317, -0.000510491664, -0.00335830846, 0.0148687661, 0.010342123, -0.00951433368, -0.00359145133, 0.0068214, -0.0177083965, 0.00781684276, -0.0255881101, 0.0234086141, -0.00992298871, 0.00771205919, 0.004073455, -0.00499292975, 0.0199926756, 0.00193325395, -0.022758957, 0.0108450828, -0.00269555324, -0.00677424762, -0.00889087282, -0.0156232063, -0.01850475, -0.0339707807, 0.0312883258, 0.00429350045, 0.00343427621, 0.00957720354, -0.010509776, -0.0160423405, 0.000704668462, 0.0198145434, -0.00678472593, -0.00251087244, 0.024833668, -0.00280819554, 0.00780112483, 0.0239115749, -0.00760203646, 0.0263006371, -0.0290669184, -0.0149106793, -0.0286477841, 0.0241630543, -0.00191491691, -0.000123939128, 0.00693142274, -0.00645465823, 0.0162414294, 0.0124273123, 0.000490189879, -0.00239954, 0.00523917051, 0.00599885033]
|
14 May, 2021
|
Python calendar module : yeardatescalendar() method
14 May, 2021
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions. yeardatescalendar() method in Python is used to get a list of the weeks in the month of the year as full weeks. Entries in the week lists are day numbers. Day numbers outside this month are zero.
Syntax: yeardatescalendar(year, width)
Parameter:
year: year of the calendar
width: [Default: 3] number of months in each row.
Returns: a list of month rows.
Code #1:
Python3
# Python program to demonstrate working
# of yeardatescalendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
year = 2016
# default value of width is 3
# printing with yeardatescalendar
print(obj.yeardatescalendar(year))
Output:
[[[[datetime.date(2018, 1, 1), datetime.date(2018, 1, 2), datetime.date(2018, 1, 3), datetime.date(2018, 1, 4), datetime.date(2018, 1, 5), datetime.date(2018, 1, 6), datetime.date(2018, 1, 7)], [datetime.date(2018, 1, 8), datetime.date(2018, 1, 9), datetime.date(2018, 1, 10), datetime.date(2018, 1, 11), datetime.date(2018, 1, 12), datetime.date(2018, 1, 13), datetime.date(2018, 1, 14)], [datetime.date(2018, 1, 15), datetime.date(2018, 1, 16), datetime.date(2018, 1, 17), datetime.date(2018, 1, 18), datetime.date(2018, 1, 19), datetime.date(2018, 1, 20), datetime.date(2018, 1, 21)], [datetime.date(2018, 1, 22), datetime.date(2018, 1, 23), datetime.date(2018, 1, 24), datetime.date(2018, 1, 25), datetime.date(2018, 1, 26), datetime.date(2018, 1, 27), datetime.date(2018, 1, 28)], . . . . . [datetime.date(2018, 12, 17), datetime.date(2018, 12, 18), datetime.date(2018, 12, 19), datetime.date(2018, 12, 20), datetime.date(2018, 12, 21), datetime.date(2018, 12, 22), datetime.date(2018, 12, 23)], [datetime.date(2018, 12, 24), datetime.date(2018, 12, 25), datetime.date(2018, 12, 26), datetime.date(2018, 12, 27), datetime.date(2018, 12, 28), datetime.date(2018, 12, 29), datetime.date(2018, 12, 30)], [datetime.date(2018, 12, 31), datetime.date(2019, 1, 1), datetime.date(2019, 1, 2), datetime.date(2019, 1, 3), datetime.date(2019, 1, 4), datetime.date(2019, 1, 5), datetime.date(2019, 1, 6)]]]]
Note that weeks in the output are lists of seven datetime.date objects. Code #2: iterating the list of weeks
Python3
# Python program to demonstrate working
# of yeardatescalendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
# iterating with yeardatescalendar
for day in obj.yeardatescalendar(2018, 1):
print(day)
Output:
[[[datetime.date(2018, 1, 1), datetime.date(2018, 1, 2), datetime.date(2018, 1, 3), datetime.date(2018, 1, 4) . . . datetime.date(2018, 1, 31), datetime.date(2018, 2, 1), datetime.date(2018, 2, 2), datetime.date(2018, 2, 3), datetime.date(2018, 2, 4)]]] . . . . [[[datetime.date(2018, 11, 26), datetime.date(2018, 11, 27), datetime.date(2018, 11, 28), datetime.date(2018, 11, 29), datetime.date(2018, 11, 30), datetime.date(2018, 12, 1), datetime.date(2018, 12, 2)], [datetime.date(2018, 12, 3). . .datetime.date(2018, 12, 29), datetime.date(2018, 12, 30)], [datetime.date(2018, 12, 31), datetime.date(2019, 1, 1), datetime.date(2019, 1, 2), datetime.date(2019, 1, 3), datetime.date(2019, 1, 4), datetime.date(2019, 1, 5), datetime.date(2019, 1, 6)]]]
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : yeardatescalendar() method
|
https://www.geeksforgeeks.org/python-calendar-module-yeardatescalendar-method/?ref=lbp
|
Pandas
|
Python calendar module : yeardatescalendar() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python calendar module : yeardatescalendar() method, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00570183946, 0.0406499952, -0.00826008, 0.0646064, 0.0037560598, 0.0091598, 0.0237829573, 0.033300478, 0.00479941, -0.00474791974, 0.00824382, 0.0211705174, 0.0096096592, 0.0149917193, -0.0506878346, -0.0053630895, -0.0122166788, 0.0212030392, 0.0279238373, -0.00177369488, 0.00580481952, -0.0141353589, -0.0241081584, -0.014970039, -0.000472556218, -0.0104985395, 0.0117939189, -0.0285742376, -0.00215445, 0.0302002374, 0.0109212995, 0.00700263958, -0.0124009587, -0.00449589, -0.0632188767, -0.014699039, 0.00923025887, 0.0329535976, 0.0119673591, -0.00752295926, 0.00623299973, 0.0058265, 0.030091837, 0.0173006393, -0.00281569, 0.0252355188, 0.0192409977, 0.0163358785, 0.000871264958, -0.0190350376, 0.0163575578, -0.0326500759, 0.0253005587, -0.00752295926, -0.0126394387, -0.000353654963, -0.0254306383, 0.0265146382, -0.0129863191, -0.0219943579, 0.037744876, -0.016801998, -0.0156746395, -0.0249970388, 0.0233927183, 0.00843893923, -0.0357069559, 0.017669199, -0.00711645931, -0.0297666378, 0.0285308771, 0.00119646487, -0.00278045982, -0.00135432242, -0.0379399955, -0.0103142587, 0.018211199, -0.00570725976, -0.0472623967, 0.0134307593, -0.0349047966, -0.0205309577, 0.0073386794, -0.00636849971, 0.00184144487, -0.0142762791, 0.0335823186, -0.0175933186, -0.0310240779, 0.000828582444, 0.0285091978, 0.0341676772, -0.00212057494, -0.0280755982, 0.0116855195, -0.0386337563, 0.0159456395, 0.0409318358, -0.0432082377, -0.0221027583, 0.00414087949, -0.0138426786, -0.0196962785, -0.0173331592, 0.0144713987, -0.028140638, 0.0166177191, -0.020162398, -0.00152572989, -0.00984271895, 0.0274035186, 0.000558598724, -0.0298750382, -0.0211271588, -0.0431431979, 0.0247368775, -0.0305037573, -0.0349264778, 0.0189699978, -0.0198263582, 0.0552839972, -0.0127369994, 0.0378099158, 0.0319129564, -0.0430347957, 0.0129646389, -0.0137776388, 0.00668827957, -0.00844435953, -0.0311975181, 0.00765303941, -0.0307422373, -0.0114361988, -0.0446174368, -0.0505143963, -0.00081435492, 0.00749585964, 0.0132356388, 0.00337936985, 0.00853649899, -0.00907308, -0.0111218393, 0.0336256772, -0.0238263179, -0.0102654789, -0.0148291187, 0.0150350789, 0.0127586788, -0.00721401954, 0.012932119, -0.00882917922, -0.0222219974, 0.000899719947, 0.00841725897, 0.0205959976, -0.0468721576, -0.0111651989, -0.0115662795, 0.00837389939, 0.00165580981, 0.0145906387, -0.0205959976, 0.00477502, -0.00639017951, 0.0257558376, -0.00701889955, 0.0277070384, 0.00199862476, -0.0119781988, 0.0197613183, 0.0113169588, -0.0310457572, -0.0403898358, 0.0204984378, 0.0395443179, -0.0265579987, 0.045484636, 0.00745791942, -0.00137397, -0.0387204774, -0.0208995175, -0.00337394979, 0.0231108777, 0.0349698365, 0.0160323586, 0.047219038, 0.0447041579, 0.0302435979, -0.0137776388, -0.0017018799, 0.0203575175, 0.017853478, 0.00222626491, 0.0123792794, -0.0305687971, -0.0101679191, 0.00281569, 0.0243249573, -0.0294631179, 0.00359616964, -0.00502162939, 0.00789693929, -0.0216799974, -0.00760425953, 0.0126502793, 0.0133982394, -0.000299285603, 0.00687255943, -0.000571132463, -0.0346446373, -0.0211271588, 0.000929529953, -0.00606497936, -0.036812637, 0.00338478968, 0.0149158388, -0.00910559949, 0.00950125884, 0.0444006361, -0.0253005587, -0.0182653982, 0.0224387981, -0.007891519, 0.00426554, -0.0251487978, -0.00467474945, 0.0297666378, 0.00615169946, -0.0246501584, -0.0296799168, -0.0175607987, -0.0208453182, 0.00342001976, 0.00206772983, 0.0452678353, -0.013831839, 0.0247585587, 0.00423030974, 0.00420862949, -0.0128779188, 0.021539079, -0.0383519158, -0.0151543189, -0.029853357, 0.00566931954, 0.0257341582, -0.0536363162, 0.0590129569, 0.00640101964, 0.0143846786, 0.0168453585, 0.0188507587, -0.0223520789, 0.00251758983, -0.0442271978, -0.0315227173, 0.00962591916, -0.0402814373, 0.00328722969, 0.0338858366, 0.00119917491, 0.0408451185, 0.00111448742, -0.0248452779, -0.0264495984, -0.023522798, -0.00332245976, 0.0068671396, -0.0106882388, -0.0034444097, 0.0080758, -0.00746875955, 0.0155553985, -0.0161624383, -0.0117505593, 0.0359020755, -0.0072302795, -0.0241515189, 0.00620047934, 0.0511214361, -0.00399454, -0.030633837, 0.0486065559, -0.00452569965, 0.0201298781, 0.0321947969, -0.00455008959, -0.00243764487, 0.00533327973, -0.0132356388, 0.0188073982, -0.00843893923, -0.0310457572, 0.00424928, 0.00657445937, 0.00938743912, 0.0062221596, -0.020520119, -0.0163900796, -0.0082113, -0.0199239179, -6.33885866e-05, 0.0146665191, -0.0270349588, 0.0189808384, -0.0411052778, 0.0326500759, -0.00543083949, 0.00309481984, 0.0315877572, -0.0344278365, -0.0249536783, 0.0122383591, 0.0032492897, 0.0344712, -0.00682919938, 0.0379399955, -0.0049132295, -0.0203249976, 0.0177125596, -0.0101570794, -0.0078861, 0.0118372794, -0.0138209993, -0.033300478, -0.00989149883, -0.0253439173, -0.00531159947, 0.0224821586, -0.00766387954, -0.0448342375, -0.00356906978, 0.0260159988, 0.0160973985, 0.0021666449, -0.0487366356, -0.042059198, -0.0379399955, 0.0473491177, 0.0282490384, 0.0190892387, 0.035967119, 0.0187857188, -0.0212680791, -0.0431215167, -0.0246284772, -0.0404765569, 0.0228940789, 0.00122017739, 0.0158047192, 0.000575197453, 0.0112627596, 0.0217016786, 0.0328018367, 0.0217341986, -0.0299834386, 0.00371811981, -0.00550942961, 0.00325199985, 0.0041734, -0.0283791181, -0.00768555934, -0.0041191997, 0.000887524919, -0.0469155163, -0.00244577485, 0.0126719587, -0.0113061192, -0.00127505488, 0.0163683984, -0.0159781594, 0.00232246984, -0.0516417548, -0.013051359, 0.00942537934, 0.0160432, 0.0161949582, 0.000301995606, 0.0336907171, -0.0136475591, -0.0235011186, 0.0104660196, -0.0144713987, -0.00241460977, 0.000865844951, -0.000714084948, -0.0200431589, 0.00553923938, 0.0121624786, -0.00676415954, 0.00029437372, 0.0290295184, 0.0266880784, -0.0267097577, -0.0060487194, -0.00984813925, 0.0448342375, 0.0246284772, -0.00609207945, -0.0027018697, -0.029940078, -0.0222003181, -0.00500265975, -0.0360321589, -0.0477393568, -0.0299834386, -0.0156529583, 0.0114687188, 0.0715006366, 0.0141353589, 0.0100595197, 0.0479127951, -0.0328885578, 0.00175472489, 0.0512081571, 0.00215038494, 0.0107857995, 0.0268398374, -0.0242165588, 0.0408017561, 0.045181118, -0.0106502995, -0.00805954, 0.028140638, -0.0198263582, -0.00411648955, -0.0127586788, -0.0237395987, -0.0317612, 0.0383952782, -0.0150784384, 0.0179835595, 0.0271650385, 0.0415388756, 0.0563679971, 0.00785899907, -0.00346879964, 0.0249319989, 0.0220160391, -0.0256474372, -0.08251407, 0.0207477584, 0.00950667914, 0.0163250379, -0.00804327894, 0.021810079, -0.0629587173, 0.00437665, -0.0252138376, -0.0185363982, -0.0189483184, -0.0140594793, 0.0209103581, 0.00762593932, 0.010606939, 0.00892673898, 0.0246935189, -0.0227856785, 0.0191651192, 0.0484331176, 0.0264279172, -0.0225688778, -0.0231325589, -0.00281297974, 0.00804327894, -0.0261460785, -0.00602703961, -0.0397611186, -0.0157288387, 0.029701598, -0.00966385938, -0.00381838973, -0.057755515, 0.0188290793, 0.0568015948, -0.00770723959, -0.011219399, 0.0603137538, 0.0188290793, -0.0276636779, 0.0548937544, -0.00157721993, -0.0135391587, 0.00354196969, 0.00601619948, 0.00631971937, -0.0297883172, -0.013680079, -0.0252571981, -0.0120432386, 0.0567148738, 0.0391757563, 0.0470022373, -0.0266230386, -0.00305145979, 0.0344495177, 0.0060487194, -0.0164767988, 0.00250810478, -0.0279671978, 0.018601438, 0.0200648382, -0.011999879, 0.0249103177, 0.0102817388, -0.0132573191, 0.00829801895, -0.0194036, -0.010335939, -0.00822756, -0.0310240779, 0.012661119, -0.00428992976, 0.0332787968, 0.00718149962, -0.00101421739, 0.011100159, 0.00584817957, 0.0106719788, -0.0284007974, -0.00737661961, -0.0189157985, 0.00204604981, 0.0111435195, 0.0117397187, 0.0226989575, -0.0212680791, -0.0163250379, -0.00193764979, 0.00621131947, 0.0213764776, 0.00979935937, -0.00734409923, 0.0235878378, -0.0134741189, -0.0317612, -0.0260376781, -0.0133548789, -0.0135499993, 0.00719775958, -0.0311107971, 0.0442705564, 0.0131163988, -0.0328668766, 0.0114036789, -0.0312842391, -0.0047641797, 0.0121299587, -0.0159022789, -0.0223303977, -0.00200133491, -0.0073386794, -0.0198155176, -0.0144063588, -0.0192735177, -0.00706767943, 0.00286717969, 0.0162274782, 0.00918689929, -0.0369210355, 0.00406770967, -0.00567473937, -0.0100432588, 0.0110947387, 0.0147207193, 0.0133657185, -0.00829801895, 0.0305687971, -0.013289839, 0.0582324751, 0.00389968976, -0.0226772781, 0.0252571981, 0.00674247928, -0.0239563975, -0.0173656791, 0.00486444961, 0.0292246379, 0.018959159, -0.00727905938, -0.00186176982, 0.0514683165, -0.000357381214, 0.00116394495, -0.00759883923, 0.0195228383, -0.00374521967, -0.0246067978, -0.0368776768, 0.00872077886, 0.000303519977, 0.0567148738, -0.0180377588, 0.0055771796, 0.00356906978, -0.00130892987, -0.0168670379, -0.00597825972, 0.0290511977, -0.0159131195, -0.00772349956, 0.00408668, -0.014850799, -0.0113277994, -0.0306121577, 0.00422759959, 0.0452244766, 0.0123792794, -0.0024769397, -0.0291379169, -0.0208236389, 0.0342760757, -0.0400863178, 0.000162599987, 0.0217450392, -0.0296799168, -0.0155337192, -0.0158263985, -0.0231108777, -0.0115987994, 0.000818419911, 0.0117830792, 0.0121949995, 0.00818961952, 0.0245634373, -0.0204767585, -0.027360158, -0.0275986381, -0.000968824897, -0.00611917954, 0.0282490384, -0.0534628741, 0.00635223929, 0.0194794778, 0.0160106793, -0.0249103177, 0.0133765591, -0.0556308739, -0.0104009788, 0.0162166394, 0.0239130389, -0.021300599, -0.00163954985, 0.0672079921, -0.00341730984, 0.0575820766, -0.0143196387, -1.05435929e-05, -0.00276961969, 0.00635765959, -0.0153385988, -0.0102546392, -0.000398031232, 0.0140377991, 0.00413274951, -0.0125960791, 0.0234794375, 0.0239780787, -0.0354901589, 0.0152085191, 0.0094308, 0.00184550986, 0.00763135962, -0.0105689988, 0.0270783175, 0.0229591187, 0.0424711183, 0.00141732988, 0.0151651585, 0.000726957456, 0.0124009587, -0.0208561588, 0.0101299789, 0.0135391587, -0.00728447922, -0.0020799248, 0.0187748782, 0.0416906364, 0.0164659582, -0.0174523983, -0.00533056958, 0.0141028389, -0.0222436786, -0.0256474372, 0.00258940482, 0.011999879, -0.0249536783, 0.000739152427, 0.0193277188, -0.0296582375, -0.0153711187, 0.00622757943, 0.00447420962, -0.0105202189, 0.0195336789, 0.0332787968, 0.0112952795, 0.0212247185, -0.00324657978, -0.00523571949, -0.0219835192, 0.0273384787, 0.00113074738, 0.0252571981, 0.00154876488, 0.0255173575, -0.00839015935, -0.013799319, 0.0138643589, 0.0150567591, -0.0020162398, 0.00977225881, 7.22384284e-05, 0.00769639947, 0.00826008, -0.0191000793, -0.0205634777, 0.0272951182, -0.00494032959, -0.040021278, -0.00286175986, -0.0580156744, -0.0224171188, -0.0047641797, -0.0294847973, 0.0137884794, -0.0190458782, -0.0319779962, -0.00352299982, 0.00616253959, -0.0117505593, -0.00233466481, 0.0150567591, 0.0129429586, -0.00634139962, -0.0209970791, 0.00180892483, 0.0074199792, -0.00450130971, 0.00833054, -0.0164984781, -0.00634139962, 0.00462867972, -0.00949041918, 0.0434900783, -0.010335939, 0.0212355591, -0.00424115, -0.00477502, -0.00629261974, -0.0185255595, 0.0322598368, 0.0334305577, 0.0155553985, 0.015783038, 0.00477230968, 0.0200756788, -0.000633462449, 0.0229591187, 0.0557609573, -0.0222870391, 0.00978309941, 0.0110784788, -0.0189483184, -0.0208886787, 0.0213331189, 0.00894299895, -0.00364765967, -0.00487799942, -0.0199456, -0.0162057988, -0.0125310393, -0.00476959953, 0.00379399979, -0.00511105964, -0.00676957937, -0.00799991935, -0.00399724953, 0.0168995578, 0.0136909187, -0.0419941582, 0.00133196486, -0.0053630895, -0.0299183968, -0.00108264491, -0.0215607584, 0.0174090378, -0.0049999496, 0.0115012387, 0.00455279974, 0.018178679, -0.00108603237, 0.0493436754, -0.0134524386, 0.0243466385, 0.00225878484, -0.0305254385, 0.00492406962, 0.00270322477, -0.0338858366, -0.0107532796, 0.00954461936, 0.0259075984, -0.00608123932, 0.0270132776, -0.00901887938, -0.00144036487, -0.0334955975, -0.000347557478, 0.0205417983, -0.00134416, 0.0187748782, -0.0248886384, 0.0331704, -0.030633837, -0.0165852, 0.0141353589, -0.0234143976, 0.0173873585, -0.0407367162, 0.00622757943, -0.0157938786, -0.000768962433, 0.0133006787, -0.0261243973, 0.00550942961, 0.0080758, 0.027360158, 0.0302219167, 0.0179076791, 0.0182870794, -0.00294576981, -0.0397611186, -0.0103088394, -0.00840641931, 0.00564221945, 0.000710019958, 0.0211921986, -0.00181569986, 0.032281518, 0.0109267188, -0.00159076985, -0.0175716393, -0.0191542786, 0.0570183955, -0.00527094956, -0.0223087184, 0.00289969984, -0.00786984, 7.6218741e-05, 0.0188399181, -0.000689694949, -0.0201840792, 0.00336310966, -0.00940369908, 0.0151001187, 0.0106882388, 0.00946873892, 0.00663949968, -0.0196854379, 0.00548503967, -0.0125960791, 0.00726821925, 0.00141597493, -0.00698637962, 0.00652025966, 0.029072877, -0.0162166394, -0.0210946389, 0.0116855195, 0.00527907955, 0.0252571981, 0.0180594381, 0.019501159, -0.014222079, -0.030482078, 0.0169971194, 0.0169862788, 0.00391053, -0.0175607987, 0.0126719587, -0.0279238373, -0.0103901392, -0.0123142386, 0.0112410793, -0.0306121577, -0.0247151982, -0.0453111976, -0.00699179946, 0.0131814387, 0.025560718, -0.00101828238, -0.00948499888, -0.0404548757, -0.0153927989, 0.00223168475, 0.035793677, -0.0213873181, -0.00220322981, -0.00152572989, 0.00172220485, -0.00348505983, 0.0229374375, -0.0163358785, 0.0098373, -0.0378749557, 0.0334305577, -0.00881834, -0.0222870391, 0.0074253995, 0.0116855195, -0.0341026373, -0.0561511964, 0.0166610796, 0.0265363175, -0.00907849893, -0.0290078372, 0.0265796781, 0.030091837, -0.00726279942, -0.00276690978, -0.0200973582, 0.0123575991, 0.00397285959, -0.0278804787, -0.0156746395, -0.00670453953, -0.0239997581, -0.00498368964, -0.00438748952, -0.0106502995, 0.0040731295, -0.00736577949, -0.0108128991, -0.0450510383, 0.00168832985, -0.0584492758, -0.0150459185, -0.0329752788, 0.0029267997, 0.00913811941, 0.035967119, 0.0123575991, 0.0216257982, 0.00506769959, -0.0249319989, -0.000877362443, -0.00821671914, -0.00749043934, -0.0128779188, 0.0184279978, -0.00237666979, -0.010726179, 0.00721401954, -0.0076801395, -0.000861779961, -0.0172681194, -0.00634681946, -0.00666117948, -0.0117071988, -0.00489696953, -0.0382435173, -0.0195987187, -0.00119510991, -0.0481295958, 0.0138209993, -0.0343844779, -0.0135283191, -0.0066936994, -0.0203575175, 0.00255282, -0.00739287958, 0.0369643979, -0.0191326, -0.0349698365, 0.0547203161, -0.0134741189, -0.00133264239, -0.000368898734, -0.0470455959, 0.013051359, -0.00816251896, -0.0107695395, 0.0205092784, 0.0315444, 0.00462054973, -0.00668827957, -0.033603996, 0.00153656991, 0.0146556785, 0.00731157931, -0.0287043173, -0.00772891939, -0.0393708758, -0.0372028761, -0.0156854782, 0.0144063588, 0.0135825193, -0.014699039, 0.00942537934, -0.0295715183, 0.0236745588, -0.00647689961, -0.00423572958, -0.00209483, 0.000156756549, 0.0128453989, 0.0387855172, 0.0166177191, 0.00271677482, 0.0112410793, 0.00464222953, 0.0340809561, -0.00423572958, 0.0237179175, 0.0374847166, 0.0340159163, 0.029701598, -0.0181461591, -0.0258425586, -0.00486173946, -0.00513273943, -0.0141787184, -0.0121949995, -0.00443627, -0.00840641931, -0.00452569965, -0.0105527388, 0.022980798, 0.0118155992, 0.0246935189, -0.00161244988, 0.0224604774, 0.0121299587, 0.0101245595, -0.000486106204, 0.00556091964, -0.011490399, 0.0107478593, -0.0191651192, -0.0295931976, 0.00339833973, -0.00938201882, -0.0221894775, -0.00469914, 0.00728447922, -0.000540645, 0.00684545934, -0.0222870391, 0.00511647947, 0.000134653121, -0.00906765927, 0.0116855195, 0.0362923183, 0.0242165588, 0.0272517577, -0.0398261584, -0.0182870794, -0.0238263179, 0.0056855795, 0.00796739943, 0.00346066966, 0.0266230386, 0.024541758, 0.00360700977, -0.00421133963, -0.0103630396, -0.0107857995, -0.0406499952, 0.00205417979, -0.0128128789, -0.00950667914, -0.014850799, -0.0204117186, -0.00406770967, -0.000293696241, -0.0117505593, -0.0138535192, -0.00715439953, -0.0315444, 0.0154253189, -0.00476689, 0.00604329957, 0.00122695242, 0.00460157963, 0.00193900487, 0.00586443953, 0.0198480394, -0.0175174382, 0.0065852995, -0.00894299895, 0.00736577949, -0.00162193482, 0.0130296787, -0.00347150979, -0.0181895178, -0.0123033989, 0.0337124, -0.0230675191, 0.028140638, 0.0088888, 0.0284441579, -0.00519506959, -0.012661119, -0.00891589932, 0.0131814387, 0.0250187181, -0.0045799, -0.00580481952, -0.0168995578, 0.00466119964, -0.0209970791, -0.0257341582, 0.00624383939, 0.00810289942, -0.0111435195, 0.0129104387, 0.00430077, 0.00284007983, -0.0036693397, 0.0334955975, 0.00701889955, 0.0106286192, 0.0170187987, -0.00548503967, -0.00985897891, -0.0177233983, 0.00583733944, -0.022590559, 0.000568422431, -0.0221461188, 0.00036280122, -0.00684003951, -0.0120215593, -0.010742439, -0.020433398, -0.000157264672, 0.00408125948, -0.0179618783, 0.0026842549, 0.0115445992, -0.00203521, 0.0281189587, 0.000529466197, -0.0299834386, -0.0163683984, 0.00520590972, -0.0386337563, -0.00560427969, -0.0190783981, 0.0390673578, -0.00579397939, 0.0272517577, 0.00942537934, -0.00971263926, -0.0216041189, -0.00447962945, 0.0209537186, -0.00156773487, 0.00542541966, -0.0164442789, -0.0177559182, 0.0235444773, 0.0148291187, 0.0175174382, -0.0409968756, 0.0175174382, 0.00636307942, 0.00217883987, 0.0119890394, 0.0144171985, -0.0140486388, 0.00284549966, -0.0010738374, 0.0284007974, 0.00721401954, -0.00781563949, 8.90065567e-05, 0.0118481191, -0.00339291967, 0.00769639947, -0.0149375191, -0.0080703795, -0.00636307942, -0.00824382, -0.0144930789, -0.00497555966, -0.0242165588, -0.022980798, 7.83782743e-05, 0.010335939, -0.00263276487, -0.0155228786, 0.0300267972, 0.0267747976, -0.00206637476, 0.0247585587, -0.00208127988, 0.0065039997, 0.030091837, -0.00360971969, -0.0203358382, -0.00994028, 0.000711374916, 0.00922483951, -0.0106882388, -0.0124985194, 0.0214631986, 0.00121475745, -0.0102275396, -0.025322238, 0.00320321973, -0.014731559, 0.0094308, -0.000837389962, 0.0310674384, -0.00322489976, -0.0193168782, -0.00297286967, 0.00862863939, 0.0119565194, -0.000949854904, -0.0105418991, -0.00949583948, -0.00113007, -0.00224523479, -0.0101245595, -0.0131597593, -0.0338858366, 0.011251919, 0.00199591485, 0.0151434792, 0.0407583974, -0.00712729944, 0.0136475591, -0.0160757191, 0.00394033967, -0.00857985951, -0.00685629947, -0.00369643979, -0.0170838386, -0.0109212995, 0.020758599, 0.0158155579, 0.00833595917, 0.00253249472, -0.00992943905, -0.0325199962, -0.00497284951, 0.010726179, -0.0125960791, 0.00517880963, -0.0191976391, 0.0200431589, -0.00523842964, -0.0121407993, -0.0377882384, -0.000766252459, 0.022829039, -0.0139619187, 0.0109212995, 0.0384169556, -0.0123792794, -0.0283357576, -0.00767471921, -0.0280972775, 0.00827091932, -0.0200865176, -0.0152627192, -0.00543354964, 0.0206827186, -0.0361405574, -0.00110093737, 0.00177775987, -0.0135933589, 0.00759883923, 0.0113061192, -0.0087533, 0.00399454, -0.0256040785, 0.0109917596, -0.014070319, 0.0193710793, -0.00853108, -0.0120107187, 0.00336310966, 0.0124659995, 0.00901345909, 0.00514899939, -0.0119131589, 0.035793677, 0.00101760495, 0.00878039934, 0.00973431952, 0.0068671396, 0.00988607947, -0.037441358, 0.0145364385, -0.00384819973, 0.022829039, -0.0126177594, 0.0013604199, -0.0371595174, -0.0167586394, 0.000216799977, 0.0301568769, -0.00626009936, -0.0243249573, 0.0147207193, 0.0522487946, -0.00884001888, -0.0469588749, -0.000715439965, 0.0176258385, 0.00846061949, 0.0128887594, -0.028921118, -0.0252571981, 0.008146259, -0.0109483991, -0.0321947969, -0.000486783712, 0.00791862, 0.0083468, -0.00712729944, 0.0153711187, 0.0163358785, 0.0256257579, 0.0251487978, 0.0270999987, 0.0201298781, -0.0105202189, 0.0210187584, -0.0223954376, -0.0094416393, -0.0460049547, 0.0245851185, -0.018091958, 0.00881834, -0.0333655179, -0.0241081584, -0.0241731983, -0.000131519671, 0.0287476778, 0.00967469905, -0.0039457595, 0.00884001888, 0.0220593978, 0.00820587948, -0.0318045579, -0.00625467952, -0.000477976224, 0.0294847973, -0.011609639, 0.00627635932, 0.00906765927, -0.000831969955, 0.0201298781, 0.0170296393, 0.0251487978, -0.00772349956, -0.0165743586, -0.0178859979, -0.0339075178, 0.0231975988, -0.00509751, -0.00288344, -0.00469371956, 0.0383519158, 0.00114091, 0.00258533983, -0.00811373908, -0.00468829973, 0.0250187181, 0.0146881985, -0.0136041986, -0.0057722996, -0.0378749557, -0.00460970961, -0.00249184482, 0.0156529583, -0.0053224396, -0.00757715944, 0.00810832, 0.0144063588, 0.0137884794, 0.0219835192, 0.0111868791, 0.00690507935, -0.0164334383, -0.015869759, -0.000594844925, 0.0500374362, 0.00343085965, -0.00973973889, 0.017311478, -0.0102383792, -0.0486065559, 0.0243683178, -0.0130947186, 0.00426554, -0.0379833579, -0.011653, 0.0249970388, -0.000412936206, 0.0129971588, -0.0320647173, -0.0056855795, 0.0151109584, 0.0186881591, -0.0103250993, -0.0150133986, 0.0138643589, -0.0276419986, -0.014070319, 0.00902971905, -0.0090243, 0.0136583988, 0.0218209177, 0.0434467159, -0.0103034191, -0.0138643589, -0.0238913577, 0.0165201593, -0.0173006393, -0.0103142587, 0.0172356, -0.0107478593, 0.0383519158, 0.0233276784, 0.0124659995, -0.0360538363, 0.0285742376, -0.00739287958, -0.00348505983, -0.0156963188, -0.000635156175, -0.0272083972, 0.038763836, -0.0176041592, 0.00717607932, 0.00475062942, 0.0138860391, 0.0249103177, 0.0250403974, -0.0262111183, 0.00626009936, 0.00609207945, -0.009436219, -0.0184821989, 0.0248886384, 0.00485631963, 0.0099944789, -0.0076150992, 0.00849313941, 0.00968554, 0.0292463172, -0.0372679159, 0.0126285991, -0.00841184, 0.016021518, 0.00315985968, -0.00644437969, -0.0106123593, 0.00478585949, 0.0377882384, -0.000335193094, -0.0200323183, -0.0030135198, 0.0570617542, 0.030872317, -3.2350621e-05, 0.0140486388, -0.00781021919, 0.0149049992, 0.00388613972, -0.0259509571, -0.0241948776, -0.0308072772, 0.00609207945, 0.0238046385, -0.0109158792, 0.00244983984, -0.0143629992, 0.00312462985, 0.00690507935, 0.00633597933, 0.0250837579, -0.027121678, -0.00375876972, -0.0076150992, 0.00495658955, 0.00895925891, 0.00113277987, -0.0179185178, 0.00377773959, -0.00745791942, -0.0162599981, -0.0047641797, 0.0136041986, 0.00440104, -0.020010639, 0.00576688, 0.00254333485, -0.0114145195, -0.0133548789, -0.0142871188, -0.0137451189, 0.0231325589, -0.0318262391, -0.00753921922, -0.0145147592, -0.00285633979, -0.0112844389, 0.045484636, -0.00517880963, -0.0073169996, -0.0080758, 0.0200756788, -0.0264062379, 0.0102708992, -0.0110242795, -0.000969502435, 0.00621131947, -0.00313275983, 0.000762864947, -0.00919773895, -0.00772891939, 0.0102817388, 0.0146123189, 0.00556633947, 0.0210187584, -0.00977225881, -0.0012350824, 0.00614627963, 0.00299996976, 0.0118155992, 0.000497623696, -0.000469168706, 0.0358370356, -0.00150404987, 0.00130825245, 0.014341319, -0.00242002984, 0.00762051949, 0.0281189587, 0.0319563188, 0.0158047192, 0.018720679, -0.000848229916, 0.00640101964, 0.00415713945, -0.00482108956, -0.00101692742, -0.0052546896, -0.0173981991, 0.00698637962, -0.0114361988, -0.000845519942, 0.0087966593, -0.0244550388, -0.000130418746, 0.014189559, 0.0110242795, -0.00169645983, -0.0160648786, 0.0118589588, 0.0101950197, -0.0408017561, 0.0101353992, 0.0314793587, 0.00432786951, 0.0086232191, -0.00308939978, 0.0208886787, -0.0272951182, 0.0077885394, -0.00400808966, 0.00285633979, 0.0275335982, 0.0105039589, -0.0110730594, -0.00115920242, -0.00354467961, 0.0081516793, -0.00865573902, 0.0106665595, 0.0207802784, 0.0215282384, 0.00636849971, 0.00507853972, 0.000167596547, 0.00682377955, -0.0206935592, -0.0173331592, -0.018601438, -0.0119781988, -0.000289800606, -0.0190675594, -0.00523842964, -0.00668827957, 0.020520119, 0.0048048296, 0.0225255191, -0.00836847909, 0.012661119, -0.0116313193, -0.0205092784, -0.0434683971, -0.0351215973, 0.019652918, 0.0197613183, -0.0346012786, 0.010861679, -0.0131380791, -0.013680079, -0.0064985794, 0.00971263926, -0.0304387175, 0.0164767988, -0.0137667991, 0.0050405995, -0.00844435953, 0.0144280391, 0.0251271185, 0.0115120793, -0.0019335848, 0.0123792794, -0.0128670791, -0.00799449906, 0.0208561588, -0.0102221193, 0.00341459969, -0.0222653579, -0.0036693397, 0.0117071988, 0.000818419911, -0.0139402393, -0.000188006234, 0.00344711985, 0.011609639, 0.0127044786, -0.00149591989, 0.0120432386, 0.0030243597, -0.00767471921, 0.0184821989, -0.0089646792, -0.00766929938, 0.00640643947, 0.0246718377, 0.0179835595, 0.00156502484, 0.000313004974, 0.000383126229, 0.00130012236, 0.00695927953, 0.0139077185, -0.00317611964, 0.0100540994, 0.0118264388, -0.00118223741, -0.0061354395, -8.55343678e-05, -0.013799319, 0.0101299789, -0.00655819941, 0.00555549935, -0.0198371988, 0.0137234386, 0.00777227944, 0.0177667588, 0.00890506, 0.0182328783, 0.0158372391, -0.0231108777, 0.0138535192, 0.041343756, 0.0101353992, 0.00078183494, -0.00045561872, -0.0079782391, 0.0122166788, 0.0228507183, 0.0295281578, 0.0179727189, -0.0121624786, -0.00906765927, 0.017430719, 0.0144713987, 0.0104443394, -0.0173981991, 0.00972889923, -0.00301893987, -0.0191217586, -0.020162398, -0.0344061591, 0.0211596787, -0.00679667946, -0.00950667914, -0.00600535935, -0.00646605948, -0.00455821957, 0.0101083, 0.00932239927, -0.0121299587, -0.0241948776, 0.00353654963, -0.021452358, 0.00677499967, -0.00938743912, -0.00312462985, 0.00910017919, -0.00772891939, -0.0253872778, -0.00537664, -0.00227368972, -0.0104443394, 0.00630345941, 0.00462325942, -0.0133115193, 0.0156204384, 0.0235661585, -0.00322218984, 0.0123250792, 0.0049132295, 0.0122275194, -0.017582478, 0.00583733944, -0.00504602, 0.0168562, -0.00320050982, -0.00684003951, -0.0197938383, -0.00784273911, -0.00190783991, -0.00756089948, -0.0273384787, -0.0128453989, -0.0181027986, -0.0121407993, -0.00324657978, 0.00177504984, 0.0217450392, 0.00757715944, -0.0325416774, -0.00394305, 0.0177125596, 0.0341893584, 0.00510292966, -0.0126177594, -0.0171705578, -0.0114470394, 0.0032384498, 0.020520119, -0.0138860391, -0.00887254, -0.00519777974, -0.0148941586, 0.0111435195, 0.00533598941, 0.0308506377, 0.0321514383, 0.0194469579, 0.0248019174, 0.0228073578, -0.000433599955, -0.0115554389, -0.00539831957, -0.0113603193, -0.00841725897, 0.0152952392, 0.0220051985, 0.0119673591, -0.00362597965, -0.00202030479, -0.0287693571, 0.0175933186, -0.018211199, -0.00955004, -0.00646063965, -0.00151759991, -0.0362489559, 0.00917606, -0.0149266785, -0.0104822796, 0.0257558376, -0.00213277, -0.0193385594, -0.000632107432, 0.000229672485, -0.0274685584, 0.0117830792, -0.0234360788, 0.0105744191, -0.0218317583, 0.038460318, 0.00938743912, -0.00196203985, -0.0150675988, 0.00912728, 0.00947415922, -0.0155228786, -0.0161299184, 0.00049220369, -0.0123033989, -0.0103250993, -0.0078861, 0.00170729985, -0.00542541966, -0.00707851956, -0.0246067978, -0.00296202977, 0.00407042, -0.00524655962, -0.00889963936, 0.0208778381, 9.30715541e-05, 0.00060839497, -0.00840099901, 0.00579939969, -0.00377231976, 0.0129429586, -0.000921399915, -0.013560839, 0.00501349941, -0.00984813925, -0.000155570931, 0.00478856964, 0.0257775187, -0.0144171985, -8.69105406e-06, -0.00549316965, -0.0150459185, -0.0064172796, 0.017940199, 0.00219916482, 0.000894299941, -0.0112410793, -0.00205553486, 0.00258127484, 0.0191542786, -0.0074253995, -0.00887254, 0.023371039, -0.00418153, 0.0198588781, -0.0142003987, -0.0266013574, 0.00104402739, 0.00441458961, 0.029853357, -0.0024430647, 0.00352841965, 0.00265579973, 0.00540102972, -0.0015555399, 0.0155662391, -0.0124985194, -0.0137667991, -0.0144930789, 0.00244848477, 0.00452841, 0.0317612, 0.00427095965, 0.00688881939, -0.0200756788, -0.011609639, 0.0157396793, -0.0136150392, -0.00162193482, -0.000214936852, 0.019143438, -0.0373763181, 0.00629261974, 0.00469371956, 0.00394305, 0.020249119, -0.0201949179, 0.00994028, 0.0196312387, 0.019230159, -0.0117939189, 0.0280755982, 0.00064769, -0.0333221592, 0.0082329791, -0.00152572989, 0.00602703961, 0.0192626789, -0.00789693929, 0.0319996774, -0.0121841589, -0.0178317986, 0.0146665191, 0.0213331189, -0.00796197914, -0.0139727592, -0.00265173474, 0.017343998, 0.000993892434, 0.0131597593, 0.0299617574, -0.0267747976, 0.0081571, 0.0234577581, -0.0083251195, -0.0269048773, 0.0211271588, 0.00317069981, 0.00334955985, 0.00853108, -0.0105473194, 2.26115608e-05, -0.00400267, 0.00569641963, 0.00113684486, 0.0184930377, -0.00159754488, 0.0213439576, 0.00386716961, 0.00758257927, -0.00849313941, -0.00850939937, -0.00744165946, -0.0287259985, -0.0324549563, 0.00995111931, -0.00917063933, -0.00785358, -0.00417068973, -0.0216799974, -0.000810967409, 0.0125960791, 0.00804327894, -0.0136909187, 0.00533598941, -0.0197721589, 0.00712187961, 0.00474791974, 0.0278154369, -0.00833054, 0.0105418991, -0.0148182791, 0.00996195897, 0.00887254, 0.00970721897, -0.00400537951, -0.0080649592, 0.00558801973, -0.0227856785, 0.012270879, 0.00944706, -0.027121678, -0.023761278, 0.0175933186, 0.0073169996, 0.011653, -0.00110703497, -0.0020054, 0.00059247372, 0.00441458961, -0.00901345909, -0.00739287958, -0.0228940789, -0.00941454, -0.000930884911, 0.011880639, 0.0135066388, 0.0294847973, 0.0210079178, 0.00974515919, -0.00137600244, 0.00564763974, 0.0188399181, -0.0215065591, 0.00307042967, -0.00190241984, -0.00393762952, -0.0274902377, -0.0147423986, -0.00348234968, 0.0260159988, 0.00146068993, -0.00502433954, 0.000974244904, -0.000566051225, 0.0087533, 0.0099944789, 0.0015067599, -0.013560839, -0.0114036789, 0.0196637586, 0.0193493981, -0.0178968385, 0.0225255191, -0.0058265, 0.00818961952, 0.00600535935, 0.000962049933, 0.0100486791, 0.0270566382, 0.0185147189, 0.00614085933, -0.000605684938, -0.00193222985, 0.00920858, 0.00202978984, -0.00382109964, 0.00760967936, -0.000623977452, -0.00270864484, -0.00473166, -0.0103142587, -0.0187857188, -0.0102871591, -0.0159889981, -0.00406499952, 0.0101624988, 0.0221569575, -0.00304603972, 0.00048779996, -0.00692133931, -0.00134212745, 0.015512039, -0.0168778785, 0.0280972775, 0.0125201987, 0.0176583584, 0.00351486984, 0.00415713945, 0.0173765179, 0.00369101972, -0.00010670624, -0.00198371988, -0.0248019174, -0.0184388384, -0.0263845585, -0.0196962785, -0.0187640376, 0.0208561588, 0.000765574921, 0.00670995936, -0.0170296393, -0.00915437937, -0.00630345941, -0.0148399584, -0.0114361988, 0.032671757, 0.0430998355, 0.0112085594, 0.00617879955, -0.00359616964, 0.000211549355, 0.0160323586, 0.00176285487, 0.0356852785, -0.00985356, 0.0112844389, 0.000879394938, 0.00956087932, -0.00991859939, -0.00352570973, 0.0133006787, -0.0223737583, -0.00957713928, 0.00401621964, -0.0245200787, -0.00745791942, -0.00590237975, 0.0180052388, 0.0100920396, 0.00152437494, -0.0124659995, 0.0133006787, -0.00657445937, -0.0192409977, 0.00889421906, 0.0143629992, -0.00724111963, -0.014341319, -0.0055771796, 0.0121841589, 0.0164659582, -0.00210431474, -0.0135283191, -0.000856359955, -0.00376418978, -0.00501620956, 0.0183954779, 0.0054904595, -0.0136367185, 0.00648773927, 0.00474791974, -0.0060541397, 0.00867741928, 0.010997179, -0.00433599949, 0.00793487951, 0.000408871216, -0.013322359, 0.0120432386, 0.0146881985, 0.00891589932, -0.0193602387, 0.0123142386, -0.00135838741, 0.00863406, 0.0100269988, -0.00160702993, 0.00465035951, -0.013560839, -0.000818419911, 0.0207369179, -0.00495116971, 0.00457177, 0.0160865579, -0.0122491987, -0.00918147899, 0.00615711929, 0.0160323586, -0.0141461985, 0.00315443985, -0.0243683178, -0.0166393984, -0.000222728107, 0.00231298478, -0.0080758, -0.0033766597, -0.000615847472, -0.00373437977, 0.0192735177, -0.0190892387, 0.0130947186, 0.0344278365, -0.0262761582, 0.0112085594, -0.0208019577, 0.0127044786, 0.0110676391, -0.0225255191, -0.0217883978, 0.00246745488, -0.00643353956, -0.0215824377, 0.00656903954, -0.0222003181, -0.00247287471, 0.0047587594, 0.00142003992, 0.000413952454, -0.010455179, 0.0147857592, 0.022980798, 0.00321134971, -0.00670995936, -0.0066936994, -0.0089700995, -0.024303278, 0.00713813957, 0.00232382491, -0.00326012983, 0.0104822796, -0.00541186938, -0.0168670379, -0.011490399, 0.0255390387, -0.00868825894, -0.00171136484, -0.0109267188, -0.00779937953, -0.00693759928, 0.0107803792, 0.00394033967, -0.00468016975, -0.0031219197, 0.0221569575, 0.0115771191, 0.0113386391, 0.00738203945, -0.0216149576, -0.0145472791, -0.034145996, 0.0193168782, -0.008146259, -0.0089700995, 0.00873161945, 0.00884001888, -0.0257558376, -0.0141678788, 0.0142979585, 0.0126177594, -0.0023617649, -0.0209537186, -0.00840099901, 0.0133873988, 0.00234414986, 0.0148941586, 0.0105635794, 0.0163575578, 0.00663949968, 0.0112735992, 0.0148399584, -0.0066936994, -0.0073169996, -0.00417068973, -0.00336039974, -0.014460559, 0.00889963936, -0.00343898963, 0.00803786, -0.00852565933, -0.00678583933, 0.022590559, 0.00111787487, -0.0185038783, 0.00378586981, -0.00469914, -0.0136909187, 0.00223439489, -0.0231325589, 0.0323899165, 0.00265038, -0.00629261974, -0.00312733976, 0.00697011966, 0.0130947186, -0.0101028793, -0.00536038, -0.0170946792, 0.00314901979, 0.00045934497, -0.0168995578, 0.00502162939, -0.00455550943, -0.00650941953, 0.00932239927, -0.0180702787, 0.0108128991, -0.0143738389, -0.00788067933, -0.00168561982, -0.0162057988, -0.021810079, 0.00646063965, 0.0204117186, -0.0280105583, 0.016292518, -0.00183331489, -0.00924651884, -0.0294414386, 0.00976141915, -0.0110188592, -0.00790777896, 0.0141570391, -0.00515170954, -0.0205526389, -0.00202030479, -0.00790777896, -0.00908391923, 0.0170621593, -0.0147532392, 0.00649315957, -0.015783038, -0.0122166788, -0.034319438, -1.62494125e-05, 0.0149158388, -0.0119239995, -0.0127695194, -0.0102112796, 0.00895925891, -0.0166393984, 0.0104931192, 0.0154144792, -0.00184957485, -0.00565847941, 0.00998905953, -0.00376960961, 0.000100439371, 0.0154361585, 0.0127695194, -0.0265796781, -0.00371811981, -0.00274929474, -0.0133657185, -0.0138860391, -0.0149591984, 0.00970721897, 0.00610291958, -0.0115662795, 0.0281839985, -0.0173981991, 0.0166936, -0.00373708969, -0.00294847973, 0.00580481952, -0.012661119, -0.00313275983, -0.0128345592, 0.00142545986, -0.00555007951, 0.000315714977, -0.00359616964, -0.013951079, 0.00579397939, -0.0154144792, -0.0131272394, 0.017701719, 0.010861679, 0.0106611392, 0.00432244968, -0.0018631249, 0.0102112796, -0.0280322377, -0.0149375191, 0.0221135989, -0.00355009967, 0.0207802784, 0.00135364488, 0.0126502793, 0.00973431952, 0.0176475178, 0.00108399987, -0.000953919953, -0.0133006787, 0.0109538194, 0.0110567994, 0.0152518786, -0.00487528974, 0.0253005587, -0.014850799, 0.00589695945, -0.0105418991, -0.00637391955, 0.0132139586, -0.0362489559, 0.00198642979, 0.0292463172, -0.0190567188, -0.012032399, -0.0131272394, 0.0174415577, -0.00265850988, -0.00486715976, 0.00892673898, -0.0163683984, -0.0124985194, -0.036899358, -0.00187260984, -0.00835763942, 0.0246501584, -0.00392949954, 0.0146014793, -0.0080758, 0.0024362898, -0.00939285941, -0.0124443192, -0.0125310393, 0.00727363955, -0.0241515189, 0.0116746789, -0.0216041189, 0.00615711929, -0.0125852395, 0.000400741206, -0.00358803966, -0.00253384979, -0.0327151157, 0.0148616387, 0.00285633979, -0.00920858, 0.0199564379, -0.00314359972, -0.0117288791, -0.00492678, 0.0203900393, -0.0054498096, -0.0070568393, 0.0208886787, -0.0193710793, 0.0207260791, -0.00349047966, 0.00256636972, -0.0354684778, 0.0150350789, -0.0228723977, 0.00324115972, -0.0113928393, 0.0115987994, 0.000343661843, -0.0240214374, 0.00403518975, 0.00326283975, -0.00482650939, 0.0101137189, -0.00341188977, -0.00584275974, -0.0225038379, 0.0109483991, 0.00558259944, 0.00443355972, -0.00352570973, -0.0175607987, 0.0108725196, -0.0144171985, -0.0125960791, -0.00193900487, -0.00123033987, 0.0106448792, -0.00801075902, -0.00114429742, -0.0144063588, 0.000241189977, 0.011642159, 0.0345145576, -0.0300051179, -0.0112627596, 0.00916521903, 0.00958256, -0.00102099241, 0.00226014, 0.00710561965, -0.000848229916, 7.17726507e-05, -0.0103142587, 0.0395443179, 0.0048915497, 0.0164984781, -0.00487257959, -0.0259509571, 0.0182870794, 0.0210404377, 0.018362958, 0.023306, -0.00066936994, -0.0148291187, 0.00649315957, -0.0156204384, -0.0144280391, -0.0119239995, -0.0141787184, 0.0120757595, -0.00747417938, 0.0236745588, 0.016379239, 0.00514357956, 0.0254739989, 0.0141570391, 0.00958797894, -0.0409968756, -0.000524384959, -0.00224523479, -0.00309481984, -0.0192951988, 0.0127044786, 0.00311378972, -0.00703515951, -0.000308939983, 0.0103955595, 0.00817877892, -0.0178751592, -0.0122166788, -0.0154578388, -0.00138887484, 0.00420320965, 0.00785899907, 0.0103413593, -0.0128345592, -0.00145526987, 0.00179943989, -0.0114578791, -0.00910017919, 0.0253872778, -0.0112302387, 0.00668827957, -0.0200756788, 0.020671878, 0.00011500562, 0.00305958977, 0.00647147931, -0.0143738389, -0.0061354395, -0.0196854379, 0.000355348719, -0.0212247185, 0.0227206387, -0.00107248244, -0.000348573725, 0.0182545595, 0.0169103984, -0.0349698365, 0.0146014793, 0.00616253959, 0.0189049579, -0.00597283943, 0.00732783927, -0.00143900991, 0.0152627192, -0.0178968385, -0.00874787942, -0.0172030795, -0.0148182791, 0.0268831979, 0.0100053195, -0.0146773588, -0.00229265983, -0.0241515189, 0.00547148939, -0.0190133583, 0.0304170381, -0.0149375191, 0.00570725976, 0.0070622596, 0.00973973889, 0.00524114, -0.00359074981, -0.0307422373, 0.00163954985, 0.034145996, 0.021810079, -0.0101570794, 0.00421946961, -0.00773975952, -0.0266447179, -0.00670453953, -0.0061354395, -0.00486715976, -0.00753921922, -0.0172139183, -0.0161949582, -0.00389968976, -0.00338207977, -0.0119890394, -0.0011056799, -0.00263411971, -0.0197938383, 0.0132789994, -0.0157938786, -0.0152085191, -0.00374521967, -0.0142979585, -0.0146123189, 0.00745791942, 0.0176475178, 0.0243466385, -0.00449046958, -0.00286446977, 0.0125635592, -0.0297666378, -0.014731559, -0.0142654385, 0.013831839, 0.0131380791, -0.0532460772, 0.00816251896, 0.00342814974, 0.00304332981, -0.0266663972, -0.0175499581, -0.00557176, -0.0205743182, -0.0032384498, -0.0170838386, -0.000815709936, -0.0141461985, -0.00765845925, 0.0163467191, -0.00583733944, 0.00962049887, 0.017853478, -0.0037099896, 0.0144063588, -0.0304170381, -0.000250336219, 0.0025067497, 0.000615847472, 0.0164442789, 0.0366608761, 0.0210512783, 0.00557176, 0.000984407379, 0.00268832, -0.00221677986, -0.00495116971, -0.0381784774, -0.0142979585, 0.0333438367, 0.0167477988, 0.00427637948, 0.0118914787, -0.0158047192, 0.0368776768, 0.00811373908, -0.0168778785, -0.0176908784, -0.00599993952, 0.0111760395, -0.00469914, 0.00738203945, -0.0142871188, 0.0116855195, 0.0078861, -0.0086232191, 0.00319508975, -0.0185797587, 0.00581023935, 0.0123684388, -0.00225607492, -0.0232192781, 7.73620268e-05, -0.0248886384, -0.0040731295, -0.00687255943, 0.014850799, -0.00918689929, 0.0106828194, -0.0128345592, -0.0163250379, -0.0077018193, 0.0110784788, 0.00502704969, -0.0119023193, -0.0122600393, -0.0118589588, -0.0232192781, 0.0225688778, 0.000371947477, -0.00365578965, 0.00300538982, 0.0226122383, 0.0160323586, -0.0381567962, 0.0108508393, -0.00395931, 0.00691049965, 0.0257124789, 0.00827634, -0.0442922376, -0.0223303977, -0.000798772438, 0.0128779188, 0.0199672785, 0.0156637989, 0.00156637991, -0.011490399, -0.0123359188, -0.0326500759, -0.019652918, 0.00898093916, 0.022980798, 0.0274468772, -0.0233276784, 0.0241948776, 0.0222219974, -0.00391594972, 0.013831839, -0.000171830921, 0.0129212793, -0.000433938723, 0.00381838973, 0.00818961952, -0.00741455937, -0.0125743989, 0.0181027986, -0.00447149947, -0.0124985194, 0.0117180394, 0.0267964788, 0.0047154, 0.00388071965, -0.0129429586, 0.0100540994, -0.00602703961, -0.00649315957, 0.00277774967, 0.00466661947, 0.00704057934, 0.00716523966, 0.0163142, -0.0192518383, 0.0295281578, -0.0183196, 0.0063305595, -0.00930613931, 0.0290511977, 0.00336039974, -0.012509359, -0.000397014956, -0.031349279, 0.0267747976, 0.00458260952, -0.00547961937, 0.0141028389, -0.0168236792, -0.0178751592, -0.0162166394, -0.0162166394, -0.0117939189, 0.00657445937, 0.00457447954, 0.00255823974, 0.0117830792, -0.00586985936, -0.0209645592, 0.0055988594, 0.0157396793, 0.0102546392, -0.00753379939, -0.000952564937, 0.00595115963, -0.00909475889, 0.0370944776, 0.00126760243, 0.00313817966, 0.00852023903, -0.00073373242, -0.0258859172, -0.00653109932, 0.0111760395, -0.00652567949, 0.020433398, -0.00512460945, 0.00925735943, 0.0126827992, -0.00321947969, -0.019501159, 0.00175201485, 0.0159347989, -0.00602161931, -0.0034742197, 0.00347963977, -0.00178317982, -0.0113928393, 0.0292896777, -0.00083874492, 0.00967469905, -0.00363410963, -0.00145662494, 0.0117830792, -0.0313275978, 0.00797282, 0.0172030795, -0.0246067978, 0.00469914, 0.00180214981, 0.000687323685, 0.0241515189, -0.00900804, -0.0117071988, -0.0221244376, -0.00397828, -0.0127044786, -0.0105039589, 0.00448504975, -0.0286609586, -0.00712729944, -0.00118494744, 0.00637391955, 0.0130296787, 0.0172897987, 0.00912185945, -0.0162274782, -0.0177125596, -0.021690838, -0.00109348493, -0.0119348392, -0.00295931986, -0.0117939189, 0.00650941953, -0.00812999904, 0.0182328783, 0.0287259985, 0.0257775187, -0.0184063185, -0.00826549903, -0.0122383591, 0.0133765591, -0.0195119977, 0.00514899939, 0.0322598368, 0.0235444773, -0.0357286371, -0.00442271959, 0.0147423986, -0.0207369179, -0.0238479991, 0.0132789994, -0.00433329, -0.00470727, 0.00387258967, -0.00970721897, 0.0409101583, 0.00227775471, -0.00195661979, -0.0201732386, 3.35997647e-05, -0.00635765959, 0.00132383488, 0.0141136786, 0.0162816793, 0.00684003951, 0.00126150495, -0.00427908963, -0.00811915938, 0.0197071191, 0.00385090965, -0.013951079, -0.0109538194, -0.0225255191, 0.0447908752, -0.0010399624, -0.00543354964, -0.00496471953, -0.019110918, 0.00670995936, 0.0088888, -0.0270566382, 0.0171488784, 0.015783038, 0.0103250993, -0.0135283191, -0.016292518, -0.0149808787, -0.0238913577, 0.0087099392, 0.00118697993, 0.0128453989, -0.000652093673, -0.0226989575, -0.00223439489, 0.012032399, 0.0146231586, -0.00842267927, 0.00885628, -0.0129754785, -0.0130188391, 0.00884543918, -0.00176149991, -0.00268560974, 0.0075934194, 0.0120215593, -0.037831597, 0.0127261588, -0.0392841585, -0.0010399624, -0.0114253592, 0.012270879, -0.0149808787, -0.00504602, -0.0094308, -0.015360279, -0.0137342792, 0.0227639973, 0.00552297942, 0.00675873971, -0.00880208, -0.022742318, -0.00490239, 0.0388072, -0.0022113598, 0.00661239959, 0.00168019987, -0.00352570973, -0.0173548386, -0.00065277121, -0.0186447985, 0.00102438, 0.0199889578, -0.0110730594, 0.00204198482, -0.0115229189, -0.0155987591, -0.012661119, -0.00552839972, 0.00399995968, -0.017159719, -0.00584275974, -0.0122925593, -0.00328993984, -0.032671757, -0.00276284479, 0.00389697962, 0.0112952795, -0.00812458, 0.0298750382, -0.00856901892, 0.0010738374, 0.00886711944, -0.011999879, 0.00435767975, 0.0144822393, 0.0191976391, -0.0134849586, -0.014222079, -0.00590779958, 0.0118155992, 0.0148399584, 0.014070319, 0.00615711929, 0.00291866972, -0.0110947387, 0.014699039, 0.00735493936, -0.00811915938, 0.00426011952, -0.0345795974, -0.00491593964, -0.014970039, -0.00032435311, -0.0218859576, 0.0110622188, -0.0073386794, 0.0042682495, 0.00760967936, 0.0226339176, -0.0236745588, 0.000578584964, -0.0213331189, 0.0153385988, 0.00725737959, 0.00330890971, 0.00189157983, 0.00232789, 0.0102925794, -0.0115879588, -4.386812e-05, -0.00340917963, -0.00788067933, 0.0110838991, -0.00917606, 0.000517271226, -0.00666659931, 0.0113061192, 0.00949041918, 0.00203249976, 0.0254739989, -0.0251054373, 0.025560718, -0.00602161931, 0.0048048296, -0.0275119171, 0.0045690597, 0.000153707806, -0.014460559, 0.00748501951, -0.0195553582, 0.0117288791, 0.0146881985, 0.00611917954, 0.030091837, 0.0108291591, 0.0347747169, 0.00747959921, 0.0159022789, 0.00276148971, -0.00409209961, 0.00754463952, -0.00971263926, 0.00615169946, 0.0295281578, -0.0132356388, 0.00461512944, 0.00985356, -0.0108399987, -0.00754463952, -0.00172220485, -0.0134090791, 0.0284441579, -0.00886711944, -0.0165743586, -0.00448504975, 0.00531701976, -0.0178859979, 0.00209483, 0.00201217481, 0.0186447985, 0.00101557246, 0.0142762791, 0.0240431186, -0.0116204787, -0.00490509951, 0.00662865955, -0.0278371181, -0.0013285774, -0.000447149971, 0.0019268099, -0.0113819987, 0.00575061934, 0.00335768983, 0.018178679, -0.00911643915, -0.0114687188, 0.00104470493, -0.00691591948, 0.0234143976, -0.00909475889, -0.00863947906, 0.010861679, 0.00588069949, 0.000428518717, 0.00490509951, -0.0172030795, 0.00104402739, 0.00676957937, -0.00400537951, 0.0176041592, 0.0194252785, -0.00483464, 0.00411106972, -0.00449317973, -0.0188073982, -0.0144713987, -0.0105418991, -0.00557176, 0.0209970791, -0.0103955595, -0.0121082794, -0.00200268975, 0.0129646389, 0.0107586989, 0.00801617932, 0.00348776975, 0.00863947906, -0.0226772781, 0.0172681194, -0.0208995175, 0.0106611392, -0.00476146955, 0.00860154, 0.0105364788, -0.00998905953, 0.0206285175, -0.00342814974, -0.0124226389, 0.00731157931, -0.00307313981, -0.0058265, -0.0142654385, -0.00801617932, -0.0129646389, -0.0428396761, 0.0294631179, 0.0131163988, -0.00135025743, 0.0048915497, -0.0173331592, -0.023761278, -0.00513815973, 0.0138426786, 0.00292137987, -0.00319508975, 0.0332354382, 0.00139971485, 0.00355822966, 0.0264495984, -0.00938743912, 0.0269699171, -0.029940078, -0.00221542479, -0.0230241586, 0.0300484784, 0.00469642971, -0.0133440392, -0.00328722969, -0.0061354395, 0.0208778381, 0.0220160391, -0.00172762491, -0.00624925969, 0.0118589588, 0.0108237388]
|
29 Jul, 2021
|
Python calendar module | monthdayscalendar() method
29 Jul, 2021
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions. monthdayscalendar() method in Python is used to get a list of the weeks in the month of the year as full weeks.
Syntax: monthdayscalendar(year, month)
Parameter:
year: year of the calendar
month: month of the calendar
Returns: a list of the weeks in the month.
Code #1:
Python3
# Python program to demonstrate working
# of monthdayscalendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
year = 2018
month = 9
# printing with monthdayscalendar
print(obj.monthdayscalendar(year, month))
Output:
[[0, 0, 0, 0, 0, 1, 2], [3, 4, 5, 6, 7, 8, 9], [10, 11, 12, 13, 14, 15, 16], [17, 18, 19, 20, 21, 22, 23], [24, 25, 26, 27, 28, 29, 30]]
Note that weeks in the output are lists of seven day numbers. Code #2: iterating the list of weeks
Python3
# Python program to demonstrate working
# of monthdayscalendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
# iterating with monthdayscalendar
for day in obj.monthdayscalendar(2018, 9):
print(day)
Output:
[0, 0, 0, 0, 0, 1, 2]
[3, 4, 5, 6, 7, 8, 9]
[10, 11, 12, 13, 14, 15, 16]
[17, 18, 19, 20, 21, 22, 23]
[24, 25, 26, 27, 28, 29, 30]
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module | monthdayscalendar() method
|
https://www.geeksforgeeks.org/python-calendar-module-monthdayscalendar-method/?ref=lbp
|
Pandas
|
Python calendar module | monthdayscalendar() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python calendar module | monthdayscalendar() method, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.030285323, 0.0121610528, -0.0111932522, 0.0334917754, 0.000271430268, 0.00393963372, 0.0291317832, 0.0277240723, 0.0162571, -0.00181584852, -0.00677949376, 0.0201185271, -0.00377588975, 0.0167165603, -0.0236769058, -0.0123076895, -0.0365613662, 0.013930467, 0.0182611309, 0.00554285944, 0.0167556629, -0.00253925519, -0.000380949379, 0.0180558395, 0.0109195309, -0.0123761203, 0.028369274, -0.0355642363, 0.0153772803, 0.0291513354, 0.0274307989, 0.0071167578, 0.00875419844, 0.0238528699, -0.061078988, -0.0223474018, 0.00442597829, 0.0230317041, -0.00263456907, -0.00454084342, 0.0096046906, 0.0114083188, 0.0372065641, -0.0377735607, -0.0236573536, 0.0294641592, -0.00896926504, -0.0133439209, -0.00323333452, -0.0242634509, 0.0215653405, -0.00912078936, 0.0152306436, -0.00912078936, -0.0171271414, 0.00897415355, 0.00162155519, 0.00483900402, -0.0290926807, -0.0163646322, 0.0409018062, -0.0316343792, -0.00596810505, -0.0178603251, 0.0316930339, 0.00398362475, -0.0295032617, -0.0004634324, 0.0238137655, -0.0256516095, 0.0339414589, -0.00721940305, -0.00792814605, -0.027450351, -0.0179971848, -0.0207441747, 0.0029156222, 0.0157976374, -0.0308132153, -0.00842671, -0.0188379, -0.0183979925, 0.0131972842, -0.00143459369, -0.00265412056, -0.0206464175, 0.0243221056, -0.0143606, -0.00754200341, 0.0507166758, 0.0134123508, 0.026609635, 0.00719496375, -0.00494409353, -0.014184637, -0.0147907343, 0.0266682897, 0.0478230491, -0.0431306809, -0.00130628678, -0.0140673276, 0.00312335719, -0.0145952189, -0.0204509031, 0.0215848908, -0.0133634722, 0.015103559, -0.0233836323, 0.0212525148, -0.027450351, 0.0176061541, 0.00679904548, -0.0316734836, -0.0183002334, 0.00759577, 0.0259839855, -0.0137251755, 0.0071411971, 0.00238773087, -0.0167556629, 0.0491916537, -0.0393767841, 0.0366004668, 0.0417620726, -0.021936819, -0.00499786, -0.00301337987, 0.017684361, 0.0130017688, -0.0216826499, -0.00376366987, -0.0259253308, 0.0162375476, -0.0608052649, -0.0217413045, 0.016266875, -0.000281511515, 0.0284670312, -0.0307545606, -0.0164721664, 0.0108119976, 0.00620272337, 0.0188379, -0.0329443328, -0.000166646263, -0.0289558191, 0.0117211435, 0.0444601849, 0.0118091255, -0.00116759306, 0.00121219503, -0.034039218, 0.0237942152, -0.00725361845, 0.0236378033, -0.0174790695, -0.0139402421, -0.0321231671, 0.011261683, -0.0070923185, -0.0299920496, -0.0130702, 0.0298942924, 0.00474124635, 0.0215457883, 0.00903769583, 0.0277045202, -0.0213307217, 0.0182122514, 0.0161104631, -0.0077912854, -0.00765442476, -0.0279586911, 0.0115940589, 0.0414492488, -0.00698478473, 0.0370892547, 0.0117602469, 0.0158660691, -0.030285323, -0.0238333177, -0.0240679365, 0.0214480311, 0.0406671874, 0.0197959263, 0.061157193, 0.0325142, 0.0176941361, -0.00415225653, 0.0331398472, 0.0342347324, 0.0205682125, 0.0113105616, -0.00192460394, -0.00505895913, 0.00751756411, 0.0166188031, 0.0534929931, 0.0136176422, 0.00270544318, -0.053297475, -0.00182440237, -0.0139891217, -0.00545487739, 0.0244980697, 0.0254560951, -0.00575303845, 0.0343715921, -0.00360970153, -0.0119753135, 0.0182709061, 0.00880307704, -3.68691508e-05, -0.0177527908, 0.0170000568, 0.0257689189, -0.00786460377, 0.0127182715, 0.042114, -0.0113789914, -0.0100494875, 0.0119362101, -0.00200769794, -0.0150937829, 0.00702877576, -0.0196883921, 0.0309891775, 0.0272157323, -0.026199054, -0.0498173051, -0.0141455336, -0.0419966914, -0.00254658703, -0.00869065616, 0.0750387833, 0.0201967321, 0.0197568238, 0.00425734604, 0.0323577859, 0.0019368236, 0.0487224199, -0.0309891775, -0.00957047474, 0.0014773627, 0.00490254676, 0.0205682125, -0.0121219503, 0.0236378033, 0.00169609545, 0.015015577, 0.0218195096, -0.00851469208, -0.0183882155, 0.00829962548, -0.0519288704, -0.0367373303, 0.00108694297, -0.0285452362, -0.0168436449, 0.0275285579, -0.00510294968, 0.0279782433, 0.0183393378, -0.0144485822, -0.0176550336, -0.000993462279, 0.0304612871, 0.00982464477, -0.00568460813, -0.0231490135, 0.0430524722, -0.0232467726, 0.0125520835, 0.0113594402, -0.00328465737, 0.0056992718, -0.00453839917, -0.00823119469, -0.0080650067, 0.0163744073, -0.0183686651, -0.0112812342, 0.0266878419, -0.0227384325, 0.0108511, 0.0242439, -0.0122294836, -0.0123565681, -0.00581169315, -0.0077179675, 0.0320645124, -0.0006445896, -0.0233249776, 0.0265118778, 0.0224842615, -0.00114559755, -0.0217022, 0.013265715, -0.0093163047, -0.00426956592, -0.0266878419, -1.05490449e-06, -0.000308394869, -0.00745402183, 0.0128453569, -0.0220736805, 0.0505602621, -0.00540111074, 0.0200989749, 0.0252410285, -0.021604443, -0.0446165949, -0.00820675585, 0.00971222389, 0.0218195096, -0.0238919724, 0.0434435047, -0.0135883149, -0.00135272159, -0.00648622075, -0.00811388623, 0.00720473938, 0.00626137806, -0.00129895494, -0.0278609339, -0.00688702706, -0.0161788929, -0.0031209134, 0.0164037347, 0.0119166588, -0.0537276119, -0.00225331401, 0.0336481854, 0.00673061516, 0.00407405058, -0.00869554374, -0.0519288704, -0.0206855219, 0.0279977936, 0.0270788725, 0.0192387085, 0.0208614841, 0.00299627241, -0.00377344573, -0.0233249776, -0.00750778848, -0.00503451936, 0.0162864272, -0.00235595973, -0.00365369255, 0.0004056943, 0.00625160243, 0.0420748964, 0.0143214976, -0.00286185555, -0.00396896107, -0.0114865247, -0.0046630404, -0.00582635636, 0.0249673072, -0.0165601484, -0.00488299504, -0.00442109024, -0.00185739552, -0.0165894758, -0.0273330417, 0.0240874868, -0.0244589671, 0.00026730611, 0.0267855991, -0.000722184719, 0.0191409495, -0.0279391389, -0.00417425204, 0.0115647316, 0.0123174656, 0.0182024762, 0.0121708289, 0.0105187241, -0.0315366201, -0.0217608549, 0.00683326041, -0.0181633737, 0.00473391451, 0.00838271901, -0.0212134123, -0.00849025324, 0.0065155481, 0.00219832547, -0.00281786453, -0.0174790695, 0.0443428755, -0.00698478473, -0.0365418121, -0.00361703336, -0.0163353048, 0.0200598724, 0.0311455913, -0.00211156555, -0.0114865247, -0.0287603047, 0.000944583386, 0.00579702947, -0.0389857553, -0.0284279268, -0.00760554615, -0.00100507098, -0.0113594402, 0.0282324124, 0.0494653769, 0.00412292918, 0.0491916537, -0.0325533, 0.00254658703, 0.0378713161, 0.0095460359, -0.00823119469, 0.0221518856, -0.0193560161, 0.0330225378, 0.0742958188, 0.00495631341, -0.018182924, 0.0258666761, -0.0244980697, 0.00330665288, -0.0168534201, -0.0319081, -0.0228752922, 0.0242439, -0.00462638121, 0.0267269444, 0.0014981362, 0.0205877628, 0.0594757609, 0.0304808393, 0.00133927993, 0.0172346756, 0.00173519843, -0.0439127423, -0.0470018834, 0.0125618596, -0.00517138047, 0.0256907139, -0.0159931537, -0.00446752505, -0.0658104569, 0.0538449213, -0.0146049941, -0.00620761141, -0.028447479, -0.0194635503, 0.0211156551, 0.0286820978, 0.0342151821, 0.0106360335, 0.0183588881, -0.0124543263, 0.0148689402, 0.0316343792, 0.0260621924, -0.0369915, -0.00826541055, -0.0116331615, -0.0134416781, -0.0096046906, 0.00229241722, -0.0237160083, -0.0279782433, 0.0322404765, 0.0134905567, -0.01059693, -0.0393767841, 0.0231881179, 0.0291317832, 0.00195881911, -0.0165699236, 0.0571295768, 0.00415714458, -0.0170782637, 0.0289362669, -0.00203580339, -0.0152990744, -0.000377283461, 0.00750290044, -0.0147614069, -0.0396309569, -0.0292881951, -0.0178896524, 0.00634936, 0.0325533, 0.00499541638, 0.0520070754, -0.0140477754, 0.0111541487, 0.0252019241, -0.00283986, -0.000352844043, 0.0247522406, -0.0318885483, 0.00212745112, 0.0109488582, -0.00538644707, 0.0234618392, 0.00976599, -0.0300898086, -0.0108608762, -0.0157683101, -0.0271570776, 0.00544999, -0.0383405536, 0.023774663, -0.00506873475, 0.0218390618, 0.0058898991, 0.0205486603, 0.0205682125, 0.0154261589, 0.00129773293, -0.0026027977, -0.00502963178, -0.0204900056, 0.000156106762, -0.00603653537, -0.00127695943, -0.0042744535, -0.0235595964, -0.0238137655, 0.00632003276, -0.00585079612, 0.0156118982, 0.0237355605, 0.0122881383, 0.0169609543, 0.0108022215, -0.00558196241, -0.0422313102, -0.00120119727, -0.0132852662, -0.0120535195, -0.0226797778, 0.0589283183, 0.0132461628, -0.0215262361, 0.0208419338, -0.0389075503, -0.00407405058, 0.00685281213, -0.0232858751, -0.0147516308, -0.0199132357, -0.0190920718, -0.0103525361, -0.0111248214, -0.0182611309, -0.0361898877, -0.00094030652, 0.014038, 0.00896437746, -0.0265900828, -0.00313557708, 0.0299725, 0.00595344137, -0.00125618593, 0.00212011929, 0.0416447632, -0.00969267171, 0.0165112689, 0.0259057805, 0.0329247788, -0.00238284306, -0.0302462205, 0.0453986563, 0.00901814457, -0.0392790288, 0.00875908602, -0.0107533429, 0.0235204939, -0.00302315573, 0.00295961322, -0.0116233863, 0.0543532595, -0.00697012106, -0.0195319802, -0.00488299504, 0.0286429953, -0.00817742851, -0.0100299362, -0.0287407525, 0.0275676604, -0.0118384529, 0.0425050296, -0.0181438215, -0.00603164779, 0.00747846114, -0.00380277308, -0.0123272408, -0.0283497218, 0.0566994436, 0.00406427495, -0.000494592648, -0.00912078936, -0.027274387, -0.000760676805, -0.028036898, 0.00540111074, 0.0210765526, -0.0229926016, 0.0159736015, -0.0375975966, -0.0300116017, 0.0123370169, -0.021057, 0.000909146271, -0.00443575392, -0.0233836323, -0.00844137371, -0.00892038643, -0.0276654176, -0.0188379, 0.0205095578, 0.0184566472, 0.00471436325, 0.00904747192, 0.0227188803, -0.0211352054, -0.00878841337, -0.0233054254, -0.00325777405, -0.0179189797, -0.018104719, -0.041292835, 0.00954114739, 0.0106946882, 0.0208614841, -0.0321231671, -0.0136958482, -0.0509512946, -0.0213893764, 0.0251237191, 0.0243416578, -0.0277436245, -0.0261012949, 0.0513814278, 0.0075517795, 0.0366982259, 0.0145267881, 0.00479501346, -0.00549886841, -0.00998594519, -0.0321818218, -0.0353296176, 0.00436487934, 0.0121415015, -0.0113301128, 0.0042842296, 0.0192387085, 0.0116722649, -0.0165699236, 0.00153112935, 0.00330420886, 0.00576770213, 0.00244516344, -0.00646178145, 0.0168534201, 0.0208223816, 0.0299725, -0.012679169, 0.0156216742, -0.00336286356, 0.0034752849, -0.00707765482, -0.0151426615, 0.0238919724, -0.0326706097, -0.0109879607, 0.0215066858, 0.0133830234, 0.00919899624, -0.0082849618, 0.0217804071, 0.0227188803, -0.0435608141, -0.0227579828, -0.0422313102, -0.00232174434, -0.0136371935, -0.00759088248, 0.0139206909, -0.000916478049, -0.021936819, 0.0298160873, -0.00682837283, -0.000423412857, 0.00137593911, 0.00530335307, 0.0126987202, 0.0184761975, 0.0083924951, 0.0148005094, -0.00252947956, 0.031282451, -0.0161397904, 0.0296010189, -0.00029617516, 0.0143214976, -0.0142726181, -0.0123663442, 0.00867599249, 0.0315561742, 0.015602123, -0.00911101419, 0.00285696774, -0.00792814605, -0.0039787367, -0.00633958448, -0.00180729479, 0.0217022, 0.00260035368, -0.024771791, -0.0017266447, -0.0550962165, -0.0150449043, 0.00421335502, -0.0258471258, 0.0299529471, -0.00883240439, -0.0349385887, -0.00587034738, 0.0107240155, -0.0217217524, -0.00133439212, 0.0215457883, 0.0109097548, -0.00815298874, -0.0262968112, -0.00231074682, 0.00184517587, 0.00500030443, 0.0165601484, -0.0134612303, -0.0132754901, 0.0179287549, -0.0278804842, 0.0432088859, -0.0264727753, 0.0289167166, -0.0111150462, 0.0255538523, -0.0229143966, -0.0145463403, 0.0282324124, 0.0413710438, 0.0471191928, 0.0171955731, -0.0045310678, 0.0186228342, -0.00321867107, 0.0269615632, 0.07390479, 0.00781572517, 0.0015824521, 0.00770330383, 0.00679415744, -0.026199054, 0.0360725783, 0.00116881507, 0.00425979029, 0.00242805597, -0.00702388771, 0.00144925737, -0.0231490135, 0.0141455336, -0.00263212505, 0.0204900056, -0.0100885909, -0.0230121538, 0.000243477669, 0.0185153019, 0.00794281, -0.0250064097, 0.00289362669, 0.0186423864, -0.0169511791, 0.00249404227, -0.0261795018, 0.0193951204, -0.00110954943, 0.01743019, 0.00338730286, 0.0297183283, -0.0116429375, 0.0407453924, -0.017439967, 0.0221909881, 0.0172444507, -0.032787919, -0.00811877381, -0.0076348735, -0.0247131363, 0.00573837478, 0.0174790695, 0.0175083969, -0.0103525361, 0.022112783, -0.0071656364, 0.000812610553, -0.0276263151, 0.0133145936, 0.0203531459, -0.0255343, 0.0142335156, -0.0141553096, 0.0163255297, -0.0366786756, -0.00696034543, 0.0263554659, -0.00148591644, 0.0143410489, -0.0399242304, 0.0368546396, -0.0271179751, -0.00749801239, 0.0286625456, -0.0113203367, 0.00601209607, 0.0186619367, 0.0286625456, 0.012512981, 0.0275872126, 0.0248499978, -0.00183662202, -0.0311455913, 0.0113203367, -0.0119459862, 0.0104111908, 0.0194635503, 0.0160909109, -0.00266878423, 0.0369132943, 0.00807967, -0.0112421308, -0.0232663229, -0.0112225795, 0.0359161645, 0.0101081422, -0.0123076895, -0.00499541638, -0.00676971814, 0.0202944912, 0.0258080233, 0.026609635, -0.0200598724, -0.00192460394, -0.0229730494, -0.00420846744, 0.00344840158, -0.00430133706, 0.0172737781, 0.00919410773, -0.0051225014, -0.0155923469, -0.0145756677, -0.00796724949, -0.0145952189, 0.0312629, 0.00631514471, -0.0128746843, -0.00555752311, -0.00774729438, 0.0265900828, 0.0304417349, 0.0330225378, 0.00908168685, -0.0188183505, -0.0357402, 0.00320889521, 0.00250137411, 0.0235400442, -0.00558685046, 0.0349190347, -0.0483313873, -0.00215433445, -0.0213502739, -0.0038125487, -0.00519582, 0.00558685046, -0.0565821342, 0.000561801076, 0.000918311, 0.0395331979, -0.0147907343, -0.0178603251, -0.0345084555, 0.0172933303, -0.00770819141, 0.0171173662, -0.0362485424, -0.00944827776, -0.0149764735, 0.00552330771, -0.0230903588, 0.00870043226, -0.0322404765, 0.0207832791, -0.0338046, 0.0335113257, -0.0106067061, -0.00970733538, -0.00320645119, 0.0106751369, -0.0487224199, -0.0635424778, 0.0151524376, 0.0132168354, -0.0184859745, -0.0172737781, 0.0205877628, 0.0295814686, -0.0129822176, 0.0165601484, -0.0231685657, 0.0182611309, -0.00917455647, -0.0328465737, -0.00459461, -0.0259839855, -0.0211938601, -0.00377100171, 0.00167532195, -0.0421922058, 0.0125227561, -0.0248499978, -0.0134612303, -0.0628386214, -0.0127378237, -0.061078988, -0.0105187241, -0.0276654176, -0.00273477053, 0.0371870138, 0.00489277113, 2.71697554e-05, 0.0152208675, -0.0195124298, -0.0229730494, -0.00613918109, 0.0283497218, 0.00457505835, -0.0014981362, 0.0253583379, 0.00708743045, -0.0027274387, 0.0395331979, -0.0351536535, -0.0180362891, -0.0213111695, -0.00327488175, 0.0112030283, -0.00566994445, -0.0163646322, -0.0210178979, -0.0103525361, 0.00947760511, -0.0130506475, -0.00165821437, -0.0359943695, -0.0232467726, -0.0169609543, -0.0245371722, -0.00649599638, -0.0122001562, 0.0460634083, -0.0200012177, -0.00230585877, 0.0549789071, 0.0174692944, -0.0168143176, -0.0118189016, -0.045476865, 0.0233445298, 0.0135296602, -0.0139891217, 0.0323577859, 0.00847070105, -0.0126302894, -0.00255636289, -0.00723406672, -0.00865155272, 0.015015577, 0.0183588881, -0.0250650644, -0.0244198628, -0.0387902409, -0.0144876856, -0.0145072369, 0.00680393307, 0.0130604235, -0.010929306, -0.014937371, -0.0316343792, 0.0153186256, -0.0167067833, -0.0181633737, -0.0122392587, 0.00909146201, 0.0169023, 0.0499737151, 0.0185153019, 0.0183002334, -0.000652532384, -0.0124934288, 0.0174008645, 0.00696034543, 0.0231881179, 0.0381841436, 0.0186912641, 0.0229926016, -0.0220345762, -0.00738070346, -0.00975621492, -0.0235595964, -0.017019609, -0.0260230899, -0.00697500911, -0.00508339843, 0.00535711972, 0.00330909691, 0.0342738368, 0.0168240927, 0.000813221559, -0.00737581542, 0.014038, 0.0064911088, 0.0183979925, 0.00654487545, -0.0131386295, -0.00228141947, 0.0265705325, -0.0182513557, -0.0420357957, 0.00272988272, -0.00683814846, -0.0129137868, -0.0033946347, -0.0190529674, -0.000563634036, -0.000470764237, -0.0244003125, 0.0187596958, -0.0114180949, -0.0255343, -0.00984908454, 0.018104719, 0.0191702768, 0.0098099811, -0.0181731489, -0.0224256068, -0.00250259601, 0.00107411225, 0.000621066662, -0.00434532808, 0.0105773788, 0.0276458673, -0.00819698, 0.0112812342, -0.000563328504, -0.00554285944, -0.0356424414, 0.0210178979, -0.0204704534, -0.0306372512, -0.00694079371, -0.0159736015, 0.0118775554, -0.0100494875, -0.00458483445, -0.0105089489, 0.0116820401, -0.026277259, 0.00672083907, -0.0191507265, 0.000210026221, 0.00564061711, -0.0057237111, 0.00574326236, -0.00541088637, 0.00323089072, -0.0150449043, 0.000685525592, -0.000631758885, -0.00163988478, 0.0228948444, 0.0148298368, 0.00781083712, -0.0207246244, -0.00211889739, 0.015015577, -0.026942011, 0.0143117215, -0.0022081011, 0.0255734045, -0.0135296602, -0.0143117215, -0.00124702114, 0.0248499978, -0.00144314743, -0.0258471258, -0.0131972842, -0.0119655374, 0.0297183283, -0.007019, -0.0117895743, 0.00350461225, 0.0110563915, -0.00788904354, 0.000779617345, -0.00476079807, -0.00913545303, 0.00737092784, 0.0243221056, 0.00930164102, 0.00372212287, -0.0115256282, -0.00251725968, -0.0158758443, -0.0122001562, 0.00133439212, -0.00880307704, -0.00557218678, -0.0179483071, -0.00123174652, 0.00246471493, -0.0339414589, -0.0155239161, 0.00327488175, -0.00504429545, -0.00468503591, -0.015934499, -0.0186912641, 0.0218390618, 0.00245982711, 0.0464153364, 0.00626137806, -0.0343911462, -0.00392741384, -0.000369035173, -0.0272939391, -0.000229577752, -0.00745890941, 0.0440300517, 0.00378566538, 0.0131679568, -0.00658886647, -0.0142726181, -0.0298942924, 0.0107924454, 0.0128453569, 0.000335430959, -0.0063249208, -0.0294837113, -0.0322013721, 0.0330029875, 0.00486833137, 0.0105871549, -0.0343324915, 0.0159051716, 0.0143410489, 0.0113887675, 0.00850980449, 0.0134807816, -0.0234813895, 0.00616850844, -0.0183979925, 0.0218195096, 0.000336958445, -0.01059693, -0.0190822948, 0.0209787935, -0.00348994858, 0.0209983457, -0.0044137584, -0.0187108163, -0.00987352338, -0.0102058994, -0.0214871336, -0.0181633737, -0.0267269444, -0.0126107382, 0.00151646568, 0.0328465737, -0.00661330577, -0.0235009417, 0.00773263117, 0.0215262361, 0.0138131576, 0.0193071384, 0.00752245216, 0.00495142536, 0.0367373303, -0.00998594519, -0.00962424185, -0.00754689146, -0.00898392871, -0.0198936835, -0.0165503714, -0.00947760511, 0.0353687219, -0.0126693929, -0.026277259, -0.0168240927, -0.00258080219, -0.0119948648, 0.0282715149, -0.00491721043, 0.0218586121, 0.00373189873, -0.00160566962, -0.00620272337, 0.0101081422, 0.0232076682, 0.0162375476, -0.0077424068, -0.012180605, 0.00677949376, -0.0164917167, 0.0117797982, -0.0198252536, -0.0317907929, 0.0274699032, -0.0299333949, 0.00872975867, 0.0191311743, 0.00267855986, -0.0140868789, -0.0367177762, -0.00357793039, 0.00382232456, -0.0111248214, -0.0123370169, -0.00521537103, -0.0103720874, 0.0121903801, 0.0294837113, 0.00124274427, 0.000961690967, 0.000965356885, -0.0220541283, 0.0149471462, -0.00721451547, 0.00751756411, 0.0166090261, -0.0228361897, 0.0310282819, -0.0107240155, -0.0241461415, -0.0225624684, -0.0201576296, 0.0232467726, 0.00200403202, 0.00437465543, 0.0368155353, -0.0322209261, -0.0372847728, 0.0011358218, -0.0161104631, -0.000206665805, -0.0263750162, 0.00394940935, -0.0150742317, 0.00304270722, -0.0277240723, 0.0177821182, 0.0113692163, -0.0209005885, 0.00794281, 0.0211938601, -0.0150351282, 0.0157585349, -0.0299529471, 0.00460683, -0.0213502739, 0.0203140415, -0.0185055248, -0.0077424068, -0.0115451794, 0.0218195096, 0.00364636071, -0.00726828212, -0.0271375272, 0.0528282411, -0.000783283263, -0.00334575586, 0.0122392587, 0.0125716347, 0.0161104631, -0.0339414589, -0.0136078661, -0.00786949135, 0.0230121538, -0.00622716313, 0.0127573749, -0.0175475, -0.004003176, 0.0311260391, 0.0145658916, -0.0233054254, -0.028036898, 0.0331985019, 0.0494653769, 0.00836805534, -0.0167165603, 0.00870043226, 0.0183197856, 0.0145952189, 0.00810899772, -0.0233054254, -0.0348408297, 0.00151646568, 0.00088715076, -0.0192778111, -0.0109684095, -0.00225820206, 0.00258813403, -0.016433062, -0.00862222537, 0.00764953718, 0.0141357575, 0.00455795089, 0.0169902816, 0.00771307945, 0.00706299115, 0.0400024354, -0.00612940546, -0.0118189016, -0.0483704917, 0.0161593407, -0.0169805065, 0.0217608549, -0.0416447632, -0.0360139236, -0.0193364657, -0.000109671877, 0.0214871336, 0.0158562921, 0.00263212505, 0.000717296847, 0.00737092784, -0.00436732359, -0.0351927578, -0.00853913184, -0.0195026528, 0.0205291081, -0.00754200341, -0.00834850408, 0.0305199418, -0.00121341692, 0.0143214976, 0.0268442538, 0.0208028294, -0.0031453527, -0.0174595173, -0.0126889441, -0.0238137655, 0.0247522406, -0.00878841337, 0.0013722732, -0.0153968316, 0.0200794227, -0.00234618387, -0.00221421104, -0.0231881179, -0.00123724539, 0.0260230899, -0.00525936205, -0.0106360335, -0.00265900837, -0.0236378033, 0.00902792, -0.0164232869, 0.0175572764, -0.0246935859, -0.00673061516, 0.000220718473, 0.0277631748, 0.00999083277, 0.00861733779, 0.0366982259, 0.00866132881, -0.0261012949, -0.0145658916, -3.07783885e-05, 0.0310673844, 0.016599251, 0.014038, 0.00741003081, -0.00286185555, -0.0437954329, 0.0392008238, -0.0193462409, 0.0150937829, -0.0392790288, -0.0298160873, 0.0242243484, -0.00852446817, 0.00949715637, -0.0305981487, -0.0115647316, -0.00206268672, 0.00933585688, 0.0156118982, -0.0208614841, 0.0123565681, -0.0268638059, -0.0073318244, 0.0108511, -0.0288971644, -0.0100054964, 0.0172933303, 0.0496999957, 0.00303048757, -0.0252214763, -0.0137251755, -0.0121023981, -4.35708935e-05, -0.0304026324, 0.0131679568, -0.00337019539, 0.046141617, 0.00590945082, 0.0256711617, -0.032631509, 0.0227188803, -0.00953137223, 0.00325777405, -0.00619294774, -0.0154457102, -0.018437095, 0.0214284789, -0.0117993494, 0.0148200616, 0.00889594667, 0.0180753917, 0.0258275736, 0.0357010961, -0.00908657443, 0.00365369255, 0.0205095578, -0.0205291081, -0.00344106974, 0.0200989749, -0.0261404, 0.00101606874, -0.0288971644, 0.0194537751, 0.0148102855, 0.0333158113, -0.0331202969, 0.0175670516, -0.0217217524, 0.0172835551, -0.0147907343, -0.00598765677, -0.012014416, 0.0181633737, 0.0396896116, -0.0113301128, -0.0122099314, 0.00628093, 0.0553699397, 0.0301484633, 0.00872487109, 0.00146269903, -0.00772774313, 0.00498808455, 0.0173813123, -0.0395331979, -0.0164037347, -0.0289949216, -0.00240850425, 0.0264336709, -0.0184859745, -0.00807967, -0.0117406948, 0.00174619618, 0.0223865043, 0.0140771028, 0.0299138445, -0.0372652188, 0.0149569223, -0.0013307262, 0.0169120748, -0.000312366261, -0.000275707163, -0.0114767496, -0.00833384, 0.0159247238, 0.0129822176, 0.00128795719, 0.0279586911, 0.000266542367, -0.029444607, -0.00088715076, 0.00514205312, -0.0208419338, 0.000519643072, -0.00477546174, 0.00949226879, 0.0238137655, -0.0489179343, 0.00455795089, 0.000451823696, -0.0205682125, -0.0072242911, 0.0321622714, -0.00864177756, 0.00289607071, 0.0017706356, 0.0186326094, -0.00324066635, 0.0335504301, -0.00423779478, 0.00873464718, -0.00274210237, -0.00207124045, 0.015347953, 0.000144268924, 0.0114376461, 0.0154848136, 0.000498869573, 0.00152379752, 0.0159051716, -0.0169023, 0.000445713842, 0.00313557708, -0.0148102855, 0.00831917673, 0.00325288624, 0.0110563915, 0.0226406734, -0.00374411838, 0.00889594667, 0.0156216742, -0.00467526028, 0.00140160043, 0.00464348868, 0.0248695482, 0.0124347741, 0.0267073922, 0.0100494875, 0.00716074882, -0.0023315202, -0.00132828217, 0.0039298581, 0.00287896302, -0.0184957497, 0.00389075489, -0.0180362891, -0.00471191946, 0.0178309977, -0.0306959059, -0.0135394363, 0.0140673276, 0.00850980449, 0.00630536908, -0.000909757218, 0.0105285, -0.00963890553, -0.0422313102, 0.0169609543, 0.0343715921, 0.0170880388, 0.00751756411, 0.00218610559, 0.00844137371, -0.024107039, -0.00446996884, 0.00408382621, 0.0058898991, 0.0306959059, 0.0201967321, -0.0250846166, -0.0174595173, -0.0105187241, 0.0216239952, -0.0238137655, 0.00821653102, 0.00463371305, 0.00292295404, 0.015015577, 0.000420968921, 0.0145072369, 0.00450907229, -0.0111150462, -0.0307154562, -0.0134221269, -0.0141748609, -0.00099162932, -0.0226406734, -0.0115158521, -0.0121121742, 0.0171857961, 0.000973299728, 0.0316539295, -0.004003176, 0.00415958837, -0.00853424333, -0.0101276934, -0.0311260391, -0.0100494875, 0.0183491129, 0.020939691, -0.0255538523, 0.0105480514, -0.0189649854, 0.00255391886, 0.00281297672, 0.00931141712, -0.0244785175, 0.0283106193, 0.0018329561, 0.0101276934, 0.00166310219, 0.00856357068, 0.0104209669, 0.00734648807, 0.00174375228, -0.0153968316, -0.00884218048, -0.00667684805, 0.0156118982, 0.00327976956, 0.0138327088, -0.0289167166, 0.00092503184, 0.0115842829, 0.00235595973, -0.00876397453, 0.00198570243, 0.00672083907, 0.00646178145, 0.00416203262, -0.00598765677, 0.0195710845, 0.00367080024, -0.0235204939, 0.0290926807, 0.00238528685, 0.00548420474, 0.0164428391, 0.0381841436, 0.0121317254, -0.0028325282, 0.000547748408, -0.0178701, -0.00392252626, 0.00205291086, 0.0156314503, -0.008006352, 0.0224842615, -0.000995295239, 0.000186808786, 0.00712164538, -0.00369035173, -0.0144094788, -0.0114474222, -0.00368057587, 0.00738559105, -0.00551353209, 0.0169805065, 0.00767886406, -0.00150058011, 0.000129452528, 0.00958513841, 0.0230708085, -0.0246935859, 0.0185935069, 0.0390248597, 0.0141553096, 0.00144925737, 0.0095949145, -0.00330909691, 0.0193071384, 0.0202162843, 0.012346793, 0.0104893968, 0.000951915223, -0.00519093173, 0.0032284467, 0.00629070541, 0.00898392871, -0.013265715, 0.0136958482, -0.0113301128, -0.00186594937, -0.0376758, -0.0208223816, 0.0111639248, -0.0037465624, -0.0130799748, -0.0121023981, 0.00217022, -0.0050149681, 0.00872975867, 0.0122588109, -0.00353393937, -0.0261404, -0.00408627, -0.0280955508, 0.0215066858, -0.0114767496, -0.00596321747, 0.00548420474, -0.0113105616, -0.0256320592, -0.0223669522, -0.00832406525, -0.0149080437, 0.00306225871, 0.00869065616, -0.00714608515, -0.00169853936, -0.0028911829, -0.00297672069, 0.000614956778, 0.00833384, 0.00384676387, -0.0174204148, -0.000219343754, -0.0191702768, 0.00988329947, -0.0120828468, -3.81674945e-05, -0.0076593128, -0.0113789914, -0.00844626222, -0.00980020594, -0.021936819, -0.0159833767, -0.0104600694, -0.00817254, 0.000505590404, 0.0150840068, 0.0246153791, 0.00473635877, -0.0422704108, -0.0114180949, 0.0119850896, 0.0254169926, 0.00171809085, -0.00944827776, -0.00652532373, -0.0193853434, 0.00635424815, 0.0195613075, -0.0105187241, -0.00963401701, -0.00352171971, -0.00595344137, 0.00185861753, 0.00564061711, 0.0427005477, 0.0305003896, 0.0116429375, 0.0122001562, 0.00875419844, 0.00639335113, -0.00322111486, -0.0207246244, -0.0225233659, -0.0121121742, 0.0254951976, 0.0182611309, 0.0144388061, 0.00747846114, 0.00390541856, -0.0317516886, 0.0146440975, -0.0125911869, -0.000691635476, 0.00212622923, 0.0108413249, -0.028779855, 0.00257591438, -0.0151524376, -0.0255734045, -0.00665240875, -0.00254169921, -0.0276849698, 0.0112910094, 0.00197103876, -0.0286234431, 0.0100690387, -0.00741491839, 0.00383454422, -0.0189454351, 0.0273916963, -0.00675505446, 0.00101056986, -0.0101570208, 0.028076, 0.00717052445, -0.0052055954, -0.00974155124, 0.00433555245, 0.0185739547, -0.00352905155, -0.0110661676, -0.0125618596, -0.00959980208, 0.00331642875, -0.0258862283, -0.00610007811, 0.0191507265, 0.00202358351, -0.0203335937, 0.00752245216, 0.00730249705, 0.00303781941, -0.00222765259, 0.0207832791, 0.00749312481, 0.0150742317, 0.00333353621, -0.0136176422, -0.00860267412, -0.00632003276, -0.00695057, 0.0139891217, 0.0253974404, 0.00422068685, -4.84253633e-06, 0.000804667769, -0.0196590647, -0.0190920718, 0.0165405963, 0.0103916395, -0.021936819, -0.0084022712, -0.0131581808, -0.00785971619, 0.0202944912, -0.0106653608, 0.00295228139, 0.0108315488, -0.00343129388, 0.018016737, -0.0117113674, -0.0298942924, 0.00427689776, -0.00208590413, 0.0101276934, 0.0131777329, -0.00404961128, 0.00861245, 0.013431903, -0.000139992029, 0.0116820401, 0.00197348278, 0.0070581031, -0.0082360832, 0.0213698242, -0.00124457723, 0.0241656937, -0.000103943887, -0.00997128151, -0.0291513354, -0.0146636488, 0.00185861753, -0.00957047474, 0.0025783584, -0.0037465624, 0.0252996832, -0.0456723794, 0.00170709321, 0.00947271753, -0.017351985, 0.0163841844, -0.0193853434, -0.00796236191, 0.00231319061, -0.000891427684, -0.00625160243, 0.0219954737, -0.00456772652, -0.0386924818, 0.00487810746, -0.0120241921, -0.00270544318, 0.0109684095, -0.00340441056, 0.028779855, 0.000840104884, -0.0110368403, 0.016433062, 0.0172053482, -0.00587034738, 0.000642145635, -0.0117602469, 0.0127475988, 0.000540722045, 0.0200403202, 0.0129431142, -0.0309109725, -0.00692124246, 0.0139988968, -0.0144485822, -0.0182415787, 0.0131972842, 0.00961935427, 0.00158489612, 0.0215848908, -0.0106946882, 0.00412537344, -0.00271277502, 0.00810411, 0.00885684416, 0.0194537751, -0.0142237395, 0.0236378033, -0.00210545561, 0.00610007811, -0.0165699236, 0.0017290886, 0.00123785634, -0.0134514542, -0.0190236401, 0.00405449886, -0.0129431142, -0.0124152228, 0.00417180825, -0.0289362669, 0.00325044221, -0.0021421148, 0.032631509, -0.00749312481, -0.00388831086, -0.0241656937, -0.0124836536, 0.0023962846, 0.00904747192, -0.00316734822, -0.00151768769, -0.0195613075, 0.00140282244, 0.0113789914, 0.00439420668, -0.0137545029, -0.0143019455, 0.0213111695, -0.0161984451, 0.00686258776, 0.00728294579, -0.0484486967, -0.00679904548, 0.00144070352, 0.00157512026, 0.0190138649, -0.00613429304, -0.00262723723, -0.000562412, -0.00979043, -0.015690105, -0.015435935, -0.029034026, -0.0146049941, -0.00223254063, 0.0120730707, 0.0225038137, 0.0198643561, 0.0165503714, 0.00414003711, 0.00283986, 0.0150742317, 0.0303830802, -0.0191996042, 0.00410337793, 0.0187792461, -0.00494164973, -0.0167947654, -0.0147614069, -0.0115060769, 0.0220345762, 0.0228166375, -0.017019609, 0.0187108163, 0.00756155513, 0.0115647316, 0.0313411057, 0.0100788148, -0.0111932522, 0.00261012954, 0.0271766298, 0.0217608549, -0.0102547789, 0.00545487739, 0.00284719188, 0.00665729679, 0.0124249989, 0.00380032905, -0.00279342523, 0.0201771818, 0.0285061337, 0.000824219256, -0.0126400655, -0.00294983736, 0.0164526142, 0.0105578275, -0.00316490419, 0.0113301128, -0.0184859745, -0.0138815874, -0.0163255297, -0.0102547789, -0.0275090057, 0.00573837478, -0.0101179183, 0.00155556877, 0.010010384, 0.0042744535, -0.00581169315, 0.0048023453, 0.00251725968, -0.0115745068, 0.0213502739, -0.00133439212, 0.0338632539, -0.00917944405, 0.0174888447, -0.00339707872, 0.00305981468, -0.00353638339, 0.00747357309, 0.0114669735, 0.00704832748, -0.0125325322, -0.0179971848, -0.0186521616, -0.0242047962, -0.00874931086, 0.015602123, 0.0135101089, 0.0028080889, -0.00843159854, -0.00550864404, 0.00704343943, -0.0146343214, -0.0397287123, 0.0290535763, 0.0360725783, 0.00678438181, -0.0100592636, -0.00685281213, -0.0121219503, 0.0306568015, -0.0124836536, 0.0325924046, -0.0110466154, -0.00423535053, 0.00562106539, 0.0102254516, -0.00749312481, -0.0060218717, 0.017439967, 0.0124249989, -0.00128429127, 0.0210374482, -0.0246349312, 0.00892038643, -0.00667684805, 0.0170293842, -0.00127451553, 0.000365674758, 0.000350094633, 0.00494653778, 0.00195270928, -0.0116820401, 0.000287315866, -0.00274699018, -0.00321867107, -0.0127671501, -0.013099527, 0.0114571983, 0.0177039132, 0.00335064391, -0.00406916253, -0.0188770052, -0.00295472541, -0.00710698171, 0.0203726962, 0.0118775554, -0.0231294632, 0.0159051716, 0.0141944122, -0.00986374822, 0.00713142147, 0.0133536961, 0.0204117987, 0.0198057014, -0.0050736228, -0.0110563915, 0.00328465737, 0.0256320592, 0.0167165603, -0.0124641014, 0.00296938885, -0.0101276934, 0.000194446096, 0.0106946882, 0.0183491129, -0.0205877628, -0.0107435668, -0.0246935859, 0.0244785175, -0.00239995052, 0.00335064391, 0.0013722732, -0.0212134123, -0.00941895, 0.0114083188, 0.0221909881, -0.00832406525, 0.0112910094, -0.00890572276, -0.0142335156, -0.0113398889, -0.0105773788, -0.00950204488, 0.00113093399, 0.0148005094, -0.00942383893, 0.00211278745, -0.0095460359, 0.00211645337, 0.0148298368, -0.00775707047, 0.00341418642, -0.0142139634, 0.00746379746, 0.0175963789, -0.0307741109, -0.0235400442, 0.00695057, -0.0247522406, -0.028036898, 0.00570904743, -0.0193071384, 0.0089448262, -0.0163353048, -0.0159540493, -0.0029571692, 0.00872975867, 0.00886173174, 0.0239897296, 0.00323333452, -0.0169316269, -0.0182220284, -0.00439420668, -0.015690105, 0.0120926229, 0.0112714581, -0.0139891217, 0.00609030249, -0.0226602256, -0.0103525361, -0.0202553868, 0.0234031845, -0.00411315355, 0.00918922, -0.00951182, -0.000892038632, -0.0275090057, 0.00700433645, 0.0172737781, 0.00406916253, -0.0171857961, 0.0271570776, 0.0199230108, 0.0127964774, 0.00682837283, -0.0139793456, -0.0252410285, -0.0236182511, 0.00108388811, -2.8449007e-05, -0.00922343507, 0.0154554863, 0.0130017688, -0.0200403202, -0.0349190347, -0.000285177433, 0.0248499978, -0.00912567787, -0.0168729722, -0.00336041953, 0.0110759428, 0.00817254, 0.0210374482, 0.00937007181, -0.00750778848, 0.00707765482, -0.00538644707, 0.00130262086, 0.000869432173, 0.00997616909, 0.00807478279, -0.00420602318, -0.00737581542, 0.0128160296, 0.00452373596, -0.00601209607, -0.0134221269, -0.0139988968, 0.0225038137, 0.014018449, -0.0263750162, 0.00547442911, -0.00346306502, -0.0235791486, -0.00647155708, -0.0285256859, 0.0238724202, 0.00888128392, -0.000490315782, -0.00533268042, 0.0152404197, 0.00491476618, 0.00324066635, -0.0106849121, -0.0251041669, -0.00862222537, 0.00935052056, -0.0210374482, 0.0148396129, -0.00715097273, -0.0127182715, 0.0289753713, -0.0121415015, 0.00489277113, 0.0026614524, -0.0158758443, -0.00398851233, -0.0162473228, -0.0267464966, 0.000430439191, 0.0122001562, -0.0260621924, 0.00486833137, 0.00307447836, -0.0188281257, -0.0223082975, 0.000344290253, -0.0174986217, -0.000167868231, -0.00434288429, 0.00658397842, -0.00486833137, -0.00119997526, 0.00865155272, -0.00378322136, 0.0148396129, -0.0105089489, -0.0032455544, -0.00456528272, -0.0116038341, -0.0303635299, -1.611474e-05, 0.0140771028, -0.0140868789, -0.00255147484, -0.0071998518, 0.0111737009, -0.0143606, 0.00864177756, 0.0103623122, 0.00833384, -0.00433799624, 0.0064080148, 0.000326266192, -0.00267611607, -0.00262234919, 0.0135785388, -0.00472658267, -0.000633591844, -0.00142115203, 0.00571882306, -0.0160713587, -0.00157389836, -0.00077167456, 0.0139793456, 0.000884706853, 0.0115354043, -0.0112225795, 0.00565039273, -0.0166285783, 0.0125618596, 0.0254560951, -0.0100690387, 0.00331642875, -0.0294641592, -0.0118091255, -0.0105187241, 0.0050736228, 0.0011749249, -0.0105871549, 0.00438443106, -0.00266389619, -0.00959002692, -0.00938473549, 0.00220199139, 0.00844137371, 0.0100788148, -7.19053423e-05, 0.00946782902, -0.0189063307, -0.00945805386, 0.0284670312, 0.00192704785, 0.0161300134, 0.0121610528, 0.0161104631, 0.00401295209, 0.0078988187, -0.00127207162, -0.012512981, -0.00640312675, 0.00517626805, -0.00418402767, 0.0213893764, 0.00706299115, 0.0292099882, -0.00922832359, -0.00611962937, -0.0123174656, -0.00668173609, 0.00616362039, -0.0336481854, 0.0116722649, 0.0263945684, -0.00879330188, -0.0103818635, -0.00570415938, 0.0200403202, 0.0015189097, 0.00464348868, 0.014849389, -0.0257102642, -0.0180362891, -0.0296792258, 0.0104698455, 0.0127378237, 0.0110270642, -0.000281969755, 0.0210765526, -0.0152892983, 0.0188281257, -0.00177796744, -0.00240850425, -0.00831428915, 0.00242316793, -0.0446948037, 0.0153772803, -0.0175475, -0.0107240155, -0.0161202382, 0.00735626416, 0.00397140486, -0.0122392587, -0.00127573742, 0.00235962565, 0.00541088637, -0.00319423154, 0.0246544816, 0.0038125487, -0.0214284789, -0.00845115, 0.0126596168, -0.0149471462, -0.00921854749, 0.0147320796, -0.00921854749, 0.0202358365, 0.00349239237, 0.0077179675, -0.0427396484, 0.0112714581, -0.0334917754, 0.00997616909, -0.00936518423, -0.00167654385, 0.000120669611, -0.0118482281, -0.00463615684, 0.0191507265, 0.00478523737, 0.00589478714, -0.00779617345, -0.0053131287, -0.0230512563, 0.000724628684, -0.0134710055, 0.0148005094, -0.0050149681, -0.0149666974, 0.0131875081, -0.0193364657, 0.00707765482, 0.0030793664, -0.0053131287, 0.0299333949, -0.00992729049, 0.00590456277, -0.0178994276, -0.0129235629, 0.000251267746, 0.0267660469, -0.012014416, 0.000915867102, 0.0185348522, -0.0125716347, 0.0183197856, -0.00876886211, -0.00075823284, 0.00850491691, 0.00529357744, -0.00980020594, 0.026277259, 0.0032040074, 0.0172737781, 0.00762998546, -0.023109911, 0.00757621881, 0.0174692944, 0.0278804842, 0.00757133076, -0.00381988054, -0.0077668461, 0.00893016253, -0.0186912641, -0.0150058009, -0.0194537751, 0.00291317818, 0.0184664223, 0.00396896107, 0.0194244478, 0.00797213707, -0.00476324186, 0.0188281257, 0.00989307556, 0.0155141409, -0.0179678574, -0.00603164779, -0.00461660558, -0.0119655374, -0.022112783, 0.0187303685, 0.00488299504, -0.00982953236, -0.00261257356, 0.0308523178, 0.000347650668, -0.0121317254, -0.0163255297, -0.0104209669, -0.0141259823, 0.00227408763, 0.0104893968, 0.0154945888, -0.0181731489, 0.00434777187, -0.00274454639, -0.00799657684, -0.0211743098, 0.0192778111, -0.0171857961, -0.0131875081, 0.000163438584, 0.0100494875, 0.00621738704, -0.00820186734, 0.0153772803, -0.0161397904, 0.00385165191, -0.0239115246, 0.00971711148, -0.0110563915, 0.00302315573, -0.00962912943, 0.00731716072, 0.0179971848, 0.0166970082, -0.0263163615, 0.00633958448, 0.00262723723, 0.0102450028, -0.014018449, 0.0013930467, -0.000383087841, 0.0104111908, -0.0167458877, 0.00077350752, -0.0165601484, -0.0219759215, 0.0146440975, -0.0100885909, -0.0194048956, 0.00160933554, -0.0143117215, 0.0158171896, -0.00984419603, 0.033452671, -0.0104014147, -0.00309158606, 0.000911590178, 0.0115647316, 0.0058898991, -0.0103525361, -0.00761043373, -0.00263945688, 0.0125227561, 0.0170684867, -0.0153284008, 0.013930467, -0.00853424333, -0.0112812342, -0.0214871336, -0.0147223035, -0.00317712408, -0.0131972842, -0.0140477754, -0.0149666974, -0.00472169509, 0.00385165191, -0.0052055954, -0.014018449, -0.00263701286, -0.00934074447, 0.0171369184, -0.0101667969, -0.0156412255, -0.0107924454, 0.00168020977, -0.0153968316, 0.00482189655, 0.0248891, 0.0140673276, -0.0154750375, 0.00650577247, 0.00661819382, -0.0358966142, 0.00510783773, -0.0138229337, 0.0233445298, 0.0255734045, -0.0334917754, 0.0188672282, -0.0022728655, -0.0146636488, -0.0214284789, -0.0208614841, -0.0115647316, -0.011095494, 0.00342151802, -0.0102743302, -0.0110857189, -0.0147614069, -0.0149178188, -0.00576770213, -0.0156118982, 0.0170391612, 0.0137936063, 0.00250992784, 0.0279977936, -0.0367373303, -0.00953137223, -0.00311358157, -0.00213111704, 0.0177625678, 0.0371870138, -0.00293028587, 0.00565528078, 0.00117248099, -0.00341174239, -0.00104417396, -0.00245860522, -0.00481700851, -0.00385165191, 0.0325142, 0.0100299362, 0.000367507717, 0.00541577442, -0.0119166588, 0.0184077676, 0.0121610528, 0.000416997529, -0.00072890555, -0.0138424849, 0.00410582172, 0.00443086587, -0.0137838302, -0.0123761203, 0.0110466154, 0.0091012381, -0.0102938814, -0.00559662608, -0.00252703554, 0.00173275452, 0.0126498416, -0.0113301128, -0.0286038909, -0.00416203262, -0.0077179675, -0.0145463403, 0.00140282244, 0.0109977368, -0.00508828647, 0.00232541026, -0.013265715, -0.020020768, -0.00145903311, 0.00113215588, 0.00449440861, -0.000415775547, -0.0261599496, -0.00340441056, -0.021604443, 0.0186521616, -0.00220076926, -0.0239701793, -0.00534734409, 0.0233249776, 0.00880796555, -0.0363071933, 0.00302315573, -0.00663285749, 0.0033530877, 0.0178896524, 0.000858434476, -0.0431306809, -0.017351985, 0.00844626222, 0.00958513841, -0.000528807868, -0.00342884986, 0.0103329848, -0.0273330417, -0.00506873475, -0.0216630977, -0.0148200616, -0.000435327092, 0.0141259823, 0.017097814, -0.0170000568, 0.0158171896, 0.0211352054, -0.0120828468, 0.0124543263, -0.00555263506, 0.0201380774, 0.00126229576, 0.00972688757, -0.0210374482, 0.0105871549, -0.00922832359, -0.0163157545, 0.00324066635, -0.0134710055, 0.0101863481, 0.0185055248, 0.0101570208, -0.00265900837, 0.00494409353, 0.0114963008, -0.0151426615, 0.00794769824, 0.0168143176, -0.00252214773, -0.000862100394, 0.0124152228, -0.000419441465, -0.0319863074, 0.0261599496, -0.00862222537, 0.0169707295, -0.0065644267, 0.0152110923, 0.00874442235, -0.00881774072, -0.0178798754, -0.0347626247, 0.0134710055, 0.00238406495, 0.00338485907, 0.0189454351, -0.0188867804, -0.00591922645, -0.00272010686, -0.0134807816, -0.0204704534, -0.00494653778, -0.00773751875, 0.0111052701, 0.000848658674, -0.0160322562, 0.00319423154, -0.0116331615, 0.00214944663, -0.00882262923, -0.0180656165, 0.00477790553, -0.000199028495, 0.0030402632, 0.027782727, 0.00179018721, -0.00521537103, 0.00791348238, -0.00908168685, -0.0246544816, -0.0133243687, 0.00011654546, 0.0101179183, 0.0226406734, -0.00844137371, -0.00212256331, -0.000759454852, -0.00241583609, -0.0214089286, -0.00364391692, 0.017518172, -0.000132049216, 0.00725850649, 0.00382721238, -0.00398362475, -0.00493920594, -0.00317712408, 0.000505590404, 0.00134538976, -0.0136469696, -0.00294006173, 0.0108999796, -0.0280173458, 0.0152501948, 0.0129626654, -0.0257689189, 0.00173397653, -0.00520070735, 0.0111345975, 0.00694079371, 0.00528380135, -0.0146245463, -0.0226406734, 0.0030793664, -0.0163255297, -0.00629070541, 0.0238333177, -0.0114963008, -0.00655465107, 0.00851469208, 0.00411315355, 0.0171369184, 0.0157585349, 0.00406916253, -0.00757621881, -0.0152892983, -0.00639823871, -0.0130310962, -0.0129528902, -0.00226431177, -0.0237551108, 0.00309891789, 0.0179189797, 0.0120828468, 0.04121463, 0.0144974608, -0.0196492895, -0.00337752723, -0.0131777329, 0.0153675042, -0.0117504708, 0.0121512776, 0.00349483639, 0.014849389, -0.0127280476, -0.0134221269, 0.0107924454, -0.0268638059, -0.0320840627, 0.0196395144, -0.0133830234, -0.0075517795, -0.00302071171, -0.0271766298, 0.0283888243, 0.00626137806, 0.00104173, -0.00516649242, -0.00726828212, -0.001209751, -0.0076837521, 0.0129724415, 0.0197177194, 0.00342884986, -0.00119447638, -0.00439665094, -0.00887639541, 0.00916966889, 0.00196737284, -0.0123663442, -0.00389808672, -0.0190040898, 0.0368350856, 0.00305248285, 0.00344106974, 0.0123663442, -0.0188867804, 0.00647155708, -0.00332620437, -0.00864666514, 0.0161691178, 0.0106164822, 0.0158953965, 0.00556241069, -0.0190822948, -0.00801612809, -0.0201967321, -0.00434532808, 0.00259546586, 0.00563084148, -0.0036659122, -0.0268833563, -0.00180118484, 0.00435021613, 0.0194733255, -0.00352660753, 0.0221714377, -0.0175377242, 0.00808944646, 0.015347953, 0.00175719394, 0.00448218873, 0.0131875081, 0.030617699, -0.0353687219, 0.00604142342, -0.0398460217, -0.0160420313, -0.00897904113, 0.00936029572, -0.0112812342, -0.00985886, 0.0155141409, 0.000481456489, -0.0130897509, 0.0355251357, 0.0156998802, -0.00824585836, -0.00651066, -0.0174204148, -0.0020590208, 0.0157389827, -0.017772343, 0.00539133511, 0.0051811561, -0.00680882111, -0.0106458096, -0.0111443736, -0.0162277725, 0.0146440975, 0.0143214976, -0.0219172668, 0.00327243772, -0.00167532195, -0.0184761975, -0.00793792214, 0.00230097095, 0.0120241921, -0.0183197856, -0.016266875, -0.00780594908, 0.00375878206, -0.0237551108, -0.0245176218, 0.0105382763, 6.08694172e-05, -0.0035999259, 0.0252214763, -0.0189258829, -0.000866377261, 0.00627604173, 0.00457017077, -0.00418158388, 0.0173813123, 0.0162766501, -0.00131728454, -0.025612507, -0.0139500182, 0.00507851038, 0.00461416179, 0.00250015222, 0.0088372929, -0.00954114739, -0.00363658508, 0.0111150462, 0.00345817721, 0.0017083151, -0.00488055125, -0.0242830031, 0.0132559389, -0.00367080024, 0.0111443736, -0.0204704534, 0.0127378237, -0.00375389424, -0.00684303604, 0.00967312, -0.00235962565, -0.00497097708, -0.00974155124, -0.0156705528, 0.00617828406, 0.0103329848, 0.00885684416, 0.0145072369, 0.0110661676, 0.00938473549, -0.0110563915, -0.00109549682, 0.00194415543, -0.00392741384, 0.0111345975, -0.00883240439, 0.0071656364, -0.0138815874, 0.00625160243, 0.00319423154, 0.00964868069, 0.015651, -0.0246349312, 0.0164819416, 0.00267855986, 0.0271179751, -0.025612507, 0.0181340463, -0.00762021, 0.00459461, 0.0141259823, -0.0255734045, -0.0148787163, 0.00634447206, 0.0130408723, 0.0339414589, 0.00552819576, 0.0275285579, 0.00635913573, 0.00932608079, 0.00475346623, 0.00277142972, 0.008006352, -0.0159638263, 0.00813343748, 0.0370697044, -0.0098686358, 0.00165821437, 0.0135589875, -0.0159247238, -0.0017290886, 0.00255391886, -0.0144388061, 0.0191996042, -0.00150424603, -0.0177332405, -0.012180605, -0.0030402632, -0.00734648807, -0.00572859915, 0.0092674261, 0.0036243652, 0.00526913814, 0.0261012949, 0.0150840068, -0.00862711389, -0.0148982676, 0.0121121742, -0.0480967686, 0.00783038884, 0.0187890232, -0.00426467787, -0.0198154785, 0.0145072369, -0.0115451794, 0.0361507833, -0.0139695695, -0.00893505, 0.0248108935, 0.00683814846, 0.0199621152, -0.0103916395, -0.0043893191, -0.000392252608, -0.000832162099, 0.0151719889, -0.00530824112, -0.0152990744, -0.000524836418, -0.00869065616, 0.00489521492, 0.00865644123, 0.0237942152, -0.0212329645, -0.0057481504, 0.0165210441, -0.00852446817, 0.0020590208, -0.0121415015, -0.0111932522, 0.0415665582, 0.000171381398, -0.0117797982, 0.0165796988, 0.00925276242, 0.0227579828, 0.012180605, -0.00467770407, 0.00268344767, -0.016599251, 0.0113594402, -0.0223669522, 0.0121415015, 0.00601698412, 0.00526425, 0.00579702947, -0.00857823435, 0.0166090261, -0.00715586077, 0.00392497, 0.00200525392, -0.0108608762, -0.017439967, -0.024947755, 0.00500030443, -0.0077179675, -0.0372456685, 0.0123663442, 0.00681859674, -0.008006352, 0.00460683, -0.0250650644, -0.0207050722, 0.00627115415, 0.0058068051, -0.00588501105, 0.00548420474, 0.0310282819, 0.00287163118, 0.0117309196, 0.00976599, -0.0174106397, 0.0334722213, -0.0267855991, -0.0145854428, -0.0125618596, 0.0213502739, 0.00294983736, -0.00344351353, 0.0231881179, -0.00183417811, -0.00737092784, 0.0103329848, 0.0103427609, -0.0139891217, 0.00024408866, 0.0162179954]
|
05 Jul, 2021
|
Python calendar module : monthdays2calendar() method
05 Jul, 2021
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions. monthdays2calendar() method in Python is used to get a list of the weeks in the month of the year as full weeks.
Syntax: monthdays2calendar(year, month)
Parameter:
year: year of the calendar
month: month of the calendar
Returns: a list of the weeks in the month.
Code #1:
Python3
# Python program to demonstrate working of
# monthdays2calendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
year = 2018
month = 9
# printing with monthdays2calendar
print(obj.monthdays2calendar(year, month))
Output:
[[(0, 0), (0, 1), (0, 2), (0, 3), (0, 4), (1, 5), (2, 6)], [(3, 0), (4, 1), (5, 2), (6, 3), (7, 4), (8, 5), (9, 6)], [(10, 0), (11, 1), (12, 2), (13, 3), (14, 4), (15, 5), (16, 6)], [(17, 0), (18, 1), (19, 2), (20, 3), (21, 4), (22, 5), (23, 6)], [(24, 0), (25, 1), (26, 2), (27, 3), (28, 4), (29, 5), (30, 6)]]
Note that weeks in the output are lists of seven-tuples of day numbers and weekday numbers. Code #2: iterating the list of weeks
Python3
# Python program to demonstrate working of
# monthdays2calendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
# iterating with monthdays2calendar
for day in obj.monthdays2calendar(2018, 9):
print(day)
Output:
[(0, 0), (0, 1), (0, 2), (0, 3), (0, 4), (1, 5), (2, 6)]
[(3, 0), (4, 1), (5, 2), (6, 3), (7, 4), (8, 5), (9, 6)]
[(10, 0), (11, 1), (12, 2), (13, 3), (14, 4), (15, 5), (16, 6)]
[(17, 0), (18, 1), (19, 2), (20, 3), (21, 4), (22, 5), (23, 6)]
[(24, 0), (25, 1), (26, 2), (27, 3), (28, 4), (29, 5), (30, 6)]
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : monthdays2calendar() method
|
https://www.geeksforgeeks.org/python-calendar-module-monthdays2calendar-method/?ref=lbp
|
Pandas
|
Python calendar module : monthdays2calendar() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python calendar module : monthdays2calendar() method, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0206020679, 0.0245325267, -0.0166514013, 0.0306151379, -0.00855304115, 0.0109022222, 0.028877249, 0.034757778, -0.00141203485, -0.00541574694, 0.00125226518, 0.0200160351, -0.00128952379, 0.0268968642, -0.0188843869, -0.0154894404, -0.0378698148, 0.0329188518, 0.0159239136, 0.00292005762, 0.0126300072, -0.00484487088, 0.0101545257, 0.014155712, -0.00532481121, -0.0114074228, 0.0225925576, -0.0226935968, 0.0165402573, 0.023825245, 0.0353033952, 0.00387236, 0.00172652199, 0.0119934548, -0.0613111071, -0.0220873561, 0.00966448151, 0.028756, -0.0246133581, 0.00746686, 0.0132261431, 0.00643119961, 0.0294834878, -0.0295441132, -0.0183488745, 0.0393652059, -0.00870965328, -0.00999286212, -0.00269524357, -0.0323934406, 0.0114882542, -0.015641, 0.0301705617, -0.000734434929, -0.0266745742, 0.00865913276, -0.00766894035, 0.0022519303, -0.00591084315, -0.00271545164, 0.0436493047, -0.0220267326, -0.00952807721, -0.0162573457, 0.0298270248, -0.00321054785, -0.0276647676, 0.0150145525, 0.0261087511, -0.0190258436, 0.030493889, -0.00335200387, 0.00726983231, -0.0167726502, -0.0256237593, -0.0313830413, -0.000470783503, 0.012660319, -0.0422751606, -0.00029680517, -0.0208546687, -0.0247750226, 0.017722426, 0.00225319318, -0.00858840533, -0.018641891, 0.0382537656, -0.0176314898, 0.00273060752, 0.0454680249, 0.0253610536, 0.0180356503, 0.0179750267, -0.00511010084, 3.19894389e-05, -0.00962406583, 0.0337877944, 0.0511666834, -0.0482567325, -0.0150246564, -0.0151358005, -0.00628974335, -0.00923000928, -0.0221883971, 0.0210163314, 0.00284932973, 0.0281699672, -0.0140950885, 0.0169444177, -0.00489539094, 0.0416285023, -0.0030135198, -0.0343536213, -0.0149135124, -0.000710437889, 0.0068101, -0.0186317861, 0.0115993982, 0.0139031122, -0.00615839148, 0.0469634198, -0.0197129156, 0.0331411399, 0.0410828888, -0.0150347603, 0.000530776044, 0.0113872141, 0.0119126225, 0.0171262901, -0.0225723479, -0.0190460514, -0.0335048847, 0.0150953848, -0.0482163168, -0.0297461934, 0.0197028108, 5.37762025e-06, 0.0221681893, -0.0209557079, -0.0173182655, 0.0117711667, 0.0062594316, 0.0167524423, -0.0342121646, 0.0063048997, -0.0285741277, 0.00814382825, 0.0307970103, 0.00732035236, -0.0206121709, 0.00262198946, -0.0295239054, 0.00206626928, -0.0123774074, 0.0273414403, -0.0274222717, -0.000156848895, -0.0451446958, 0.0238454528, -0.00573402317, -0.0100585381, -0.0187429301, 0.0237848293, 0.0231381729, 0.0267958231, -0.00148528884, 0.0287964158, -0.0204201955, 0.0290187038, 0.0157319363, -0.020369675, -0.00699702417, -0.0212992448, 0.0087197572, 0.0522983335, -0.0107809743, 0.0503583662, 0.0114478385, 0.00514799077, -0.0384760536, -0.0306555536, -0.040618103, 0.0182680432, 0.0403958149, 0.0131857274, 0.0603815392, 0.0274626873, 0.0237444136, -0.00233149924, 0.0345557, 0.0364552513, 0.0217640288, 0.015641, -0.0103768138, -0.01621693, -0.000468573271, 0.0310799219, 0.0412243418, 0.00405170629, 0.00590579119, -0.0478929877, 0.00144234684, -0.0272404, -0.0178436749, 0.0138222799, 0.0141860237, -0.00422600051, 0.0311001297, -9.58301825e-05, -0.0124380309, 0.0225521401, -0.0116297109, 0.00235423329, -0.0214204919, 0.0147619527, 0.0244516935, -0.00863387249, 0.00154086086, 0.0392035432, -0.00771440845, -0.0197533313, 0.0189551152, -0.00484234467, -0.00760831637, 0.00468573254, -0.0119328303, 0.011730751, 0.0245931502, -0.0349396504, -0.0582799055, -0.0247548148, -0.0261491667, 0.0109022222, -0.0186115783, 0.0534299836, 0.00899256486, 0.0256641749, 0.00254999846, 0.0270787347, -0.00916433334, 0.0457105227, -0.0314840823, 0.00196144, -0.00658781175, 0.0045038606, 0.0239869095, -0.0161462016, 0.0338686258, -0.00369554013, 0.0358692221, 0.0300493129, 0.00891173352, -0.0186722018, -0.00134004373, -0.0528641567, -0.0358692221, -0.00157369894, -0.00948766153, -0.00704754423, 0.023703998, -0.00749717234, 0.0344748683, 0.0141658159, -0.0247750226, -0.00828528497, 0.00660296762, 0.0253610536, 0.017257642, -0.0107203498, -0.013003855, 0.0412243418, -0.00685051596, 0.0142971678, 0.00816403702, -4.42050259e-05, 0.00306656584, -0.0120641831, -0.0133979116, -0.0068252557, 0.0198240597, -0.00958870165, -0.0066383318, 0.0297461934, -0.0221479814, 0.00775482459, 0.017823467, -0.0210567471, 0.00351366797, -0.00531975925, -0.021743821, 0.0347779877, -0.0106092058, -0.0289176647, 0.0213396605, 0.00848231278, 0.00407444034, -0.0127108395, 0.006729268, -0.0110234702, -0.00115943467, -0.00665348768, 0.00187429308, 0.00990192592, -0.0284528807, 0.00442050258, -0.0333028026, 0.0526216626, 0.00543090329, 0.0104778539, 0.0314436667, -0.028412465, -0.041871, -0.00561277522, 0.0119530391, 0.0235423334, -0.0231785886, 0.0342727862, -0.0261895824, 0.000855051505, -0.0109123262, -0.0297866091, 0.000376374228, 0.00665348768, -0.00620385958, -0.0293218251, -0.00649687555, -0.016227033, -0.00239970139, 0.0279274713, 0.0118418951, -0.0573907532, -0.0026295674, 0.0316861607, 0.00661307154, -0.0110032624, -0.0126199033, -0.0539958067, -0.0307768, 0.0256641749, 0.0204404034, 0.0291803684, 0.0368998274, -0.00280133565, -0.000106171, -0.0303120166, -0.0246133581, -0.0106799342, 0.0134989517, 0.0021483642, 0.00166968699, 0.000388688466, -0.0109931584, 0.0247143973, 0.0215215329, 0.0137919681, -0.0154086091, 0.000418053241, -0.0191774033, -0.00256641745, 0.0179851297, -0.014388104, -0.00602703961, -0.00392540637, -0.00283417362, -0.0216831956, -0.0136707202, 0.0282710083, -0.0199453067, -0.0104172295, 0.0191066749, -0.00658276, 0.0218044445, -0.0251589734, -0.0218852758, 0.00266493158, 0.0172475372, 0.0191875063, 0.00415022, 0.0128320875, -0.031524498, -0.0165301543, -0.00187934504, -0.0146002881, 0.00674947584, -0.00536522688, -0.00463268673, -0.00208647712, -0.00608766358, -0.00246158848, 0.00380921015, -0.000567087322, 0.0406989343, -0.000562035304, -0.0277455989, -0.00861366466, -0.0101848375, 0.0317265764, 0.029564321, -0.00712332409, -0.0118924147, -0.0191470906, -0.0254014712, 0.00259925541, -0.0417901687, -0.0287762079, -0.00618365174, -0.000872733479, -0.0154995453, 0.0391025022, 0.0417497531, 0.00205490226, 0.0541978851, -0.0237848293, 0.0111447182, 0.0320701152, 0.00434977468, -0.00921990536, 0.0420326628, -0.0174597222, 0.0336867534, 0.0680605844, -0.000227498, -0.0213800762, 0.0120338704, -0.0145295607, 0.00456448458, -0.00446849642, -0.0299280658, -0.0275233109, 0.023239214, 0.0111447182, 0.0236635823, 0.00722941617, 0.0301503539, 0.045670107, 0.0323530249, -0.00901782513, -0.00328885391, 0.0158632882, -0.0384962633, -0.0335048847, 0.0104879579, -0.00923000928, 0.0333836339, -0.0174395144, 0.00221025129, -0.0613919385, 0.0448213704, -0.0150852809, -0.00506715896, -0.0211779959, -0.0347981974, 0.0244719014, 0.0251993909, 0.020713212, 0.0166412983, 0.0221277718, -0.0215417407, 0.0116095021, 0.036495667, 0.0290793292, -0.0262097903, -0.0113670062, -0.0178739857, 0.00463268673, -0.0268564466, 0.00413253857, -0.0312415864, -0.0346163251, 0.0346163251, 0.00802258, -0.00769925257, -0.0428409837, 0.0186620988, 0.0333028026, 0.0051151528, -0.000687703898, 0.0563803539, 0.00994739402, -0.025785422, 0.0289782882, -0.0039632963, -0.0200867634, 0.000563298294, 0.0117913745, -0.0224713087, -0.0444576256, -0.017267745, -0.00319033978, 0.000398792472, 0.0320297, 0.0228754692, 0.0603007078, -0.0122965751, 0.0107304538, 0.0130341677, -0.00178967207, -0.00307666976, 0.0159037057, -0.0354044363, 0.0139637357, 0.00471604476, -0.0125289671, 0.024855854, 0.00496864505, -0.0243304465, -0.0133979116, -0.00257525849, -0.0104879579, 0.00327622378, -0.043608889, 0.0261087511, -0.00528439507, 0.0199655145, -0.00234665535, 0.0107102459, 0.0126097994, 0.00907845, -0.00268261344, -0.0139637357, -0.00384457409, -0.029342033, 0.00470088888, -0.00139561575, 0.0108517017, -0.00189829012, -0.0074112881, -0.0191774033, 0.00524903089, -0.00109060109, 0.0143577922, 0.0237848293, 0.0107607665, 0.0183286667, 0.00762347225, -0.00747696403, -0.0390418768, -0.0132463519, -0.0196219794, 0.00248305942, -0.0296451524, 0.0575928316, 0.0210567471, -0.0319892839, 0.0124683427, -0.0275233109, -1.39620784e-06, 0.00597651955, -0.0192582346, -0.0133979116, -0.0187732428, -0.00643119961, -0.0091946451, -0.00727488426, -0.0181569, -0.0301907696, -0.0119732469, 0.0180861708, -0.00619880762, -0.0356873497, 0.00131225772, 0.0257247984, -0.00388499023, -0.00334442593, 0.00996254943, 0.0405372716, -0.00597651955, 0.0266543664, 0.0188843869, 0.036596708, -0.00380163221, -0.0205818601, 0.0341717489, 0.0145699764, -0.0430026501, 0.000404160237, -0.0134181194, 0.0390216708, 0.00450638635, -0.0091946451, -0.0137111358, 0.053834144, -0.0104273343, -0.0184499137, -0.0176719055, 0.0252600145, -0.0210567471, -0.00329138, -0.031403251, 0.0262704156, -0.00083294895, 0.0358085968, -0.0212992448, -0.011508463, 0.0232190043, 0.00255883951, -0.0120136626, -0.0230775494, 0.0436493047, 0.00573402317, -0.0042158966, -0.00233528833, -0.0140142562, -0.000858840474, -0.0208142512, 0.014620496, 0.0291399527, -0.0133069754, 0.0141860237, -0.0289580803, -0.0232594218, 0.0160956811, -0.0245527346, 0.00640088785, -0.0107607665, -0.0321509466, -0.0169040021, -0.0158430804, -0.017156601, -0.0128725031, 0.0290591214, 0.0178638827, 0.00121879566, 0.00424873456, 0.0176314898, -0.0202181153, -0.00967458542, -0.0283518396, -0.010588998, -0.0190359466, -0.0157016255, -0.0537128933, 0.00725972792, 0.00416032458, 0.0252398066, -0.022430893, -0.0129735433, -0.0629681647, -0.0227744281, 0.029342033, 0.0185004342, -0.028877249, -0.0236837901, 0.0570270084, 0.00077169342, 0.0313022099, 0.0116701266, -0.000865787, -0.0102606183, -0.0056481394, -0.0332421772, -0.0398906134, 0.00479182461, 0.0112861739, -0.0132362479, 0.0185509548, 0.0188843869, 1.95469092e-05, -0.0235827491, 0.00256894343, -0.00781039661, 0.00172273302, 0.00771946041, -0.00888142083, 0.0213396605, 0.017156601, 0.022895677, -0.0080175288, 0.0112558622, 0.000723067904, 0.00524903089, -0.0100231739, -0.00990192592, 0.0167019218, -0.0284528807, -0.0027786016, 0.0181467943, 0.0182579383, 0.0189450104, -0.0234817099, 0.0204303, 0.0195613559, -0.0372837819, -0.026816031, -0.0408403911, 0.00152949383, -0.000654865871, -0.0075931605, 0.0187429301, -0.00298573379, -0.0329592675, 0.0226127654, -0.0112457583, -0.00377637218, -0.000389319961, 0.0244516935, 0.00947250519, 0.0327167697, 0.00214331225, 0.00281901751, 0.00273818546, 0.0261491667, -0.00563298305, 0.0283316318, 0.00381931406, 0.0137010319, -0.0152570484, -0.0101040062, 0.0212184116, 0.0176314898, 0.000733171939, 0.00887636933, 0.0045291204, -0.000863892492, 0.000674442388, -7.96874519e-05, -0.0061684954, 0.0228350535, -0.00391025, -0.0182377305, -0.00159011793, -0.0753758848, -0.0125693828, 0.00560772326, -0.0259268787, 0.026917072, -0.0028947976, -0.032575313, -0.00679494394, 0.0095129218, -0.00763862813, -0.0113164866, 0.0303120166, 0.00401381636, 0.00381173613, -0.0306959692, 0.010068642, 0.00131225772, -0.00203848304, 0.0266745742, -0.0121045988, -0.00141203485, 0.00405675825, -0.0197735392, 0.0555720329, -0.0373646133, 0.0291399527, -0.0125289671, 0.014266856, -0.0243708622, 0.000743275916, 0.0327773951, 0.0207940433, 0.0451851152, 0.0258056298, -0.000997770578, 0.00851262454, 0.00187681906, 0.0292409919, 0.0758608729, 0.00878543314, 0.00604724744, 0.0239464939, 0.0173485782, -0.0367785804, 0.0371625349, 0.00102745113, 0.000490991515, 0.00262198946, -0.008108465, -0.0045038606, -0.0269372799, 0.000998402, -0.00241233129, 0.0193188582, -0.00716879219, -0.0216427799, -0.00458974438, 0.0128017757, 0.0044583925, -0.023703998, -0.00253610546, 0.0174092017, -0.0164897367, -0.000102381993, -0.00865913276, 0.0287155844, -0.0086742891, 0.0213800762, -0.00672421604, 0.021743821, -0.0123369908, 0.0358085968, -0.0265331194, 0.024734607, 0.0163684897, -0.0229765084, -0.00590073923, -0.00644130353, -0.0332825966, 0.00124342425, 0.0299482737, 0.0331613459, -0.0211982038, 0.0174799301, -0.0159037057, -0.00206374307, -0.0266947839, 0.013579784, 0.0287964158, -0.0273616482, 0.0118823107, -0.0256237593, 0.00708290795, -0.0283518396, -0.00611292338, 0.022208605, -0.0114074228, 0.0105687901, -0.040618103, 0.0390216708, -0.0271595679, -0.00514293881, 0.0172071215, -0.0152368406, 0.0124683427, 0.0227542203, 0.0189248025, 0.00805794448, 0.0199554116, 0.0261087511, -0.008628821, -0.0157925617, 0.0103161903, -0.00529449899, 0.00925021712, 0.0178941935, 0.0118722068, -0.0151054887, 0.034394037, 0.0107708704, -0.0139031122, -0.0113670062, -0.0169444177, 0.031282, 0.0033772639, -0.0160249528, 0.000838632463, -0.0114579424, 0.0142365443, 0.0220873561, 0.0255227182, -0.0215417407, -1.2580671e-05, -0.0151964249, -0.00257273251, 0.000889784, -0.0157319363, 0.0269574877, 0.00960890949, 0.00943208952, -0.014378, -0.0146912243, -0.00795185287, -0.0126805268, 0.0252600145, 0.00198038504, -0.00803773664, 0.00132741372, -0.015651105, 0.00269019161, 0.0355256833, 0.0299684815, 0.0187429301, -0.0129634393, -0.0454276092, 0.0114074228, 0.00075716892, 0.0243102387, -0.00418811059, 0.0242698211, -0.0508837737, -0.00619375566, -0.0158632882, 0.00321307383, -0.0104475422, -0.00558751496, -0.0581990741, -0.00339999795, 0.0091037089, 0.0485800579, -0.0127108395, -0.018399395, -0.0317669958, 0.0103161903, 0.00192228705, 0.0154793365, -0.0253610536, -0.00415274641, -0.0149943447, -0.00602703961, -0.00962911732, 0.0111447182, -0.0199352037, 0.0252802223, -0.0384760536, 0.0416285023, 0.00133878074, -0.0134484321, -0.00348840794, 0.00561277522, -0.0351821482, -0.0643018931, 0.0128623992, 0.0229765084, -0.0177729465, -0.0181973148, 0.00707785599, 0.0145093519, -0.0127613591, 0.0302311853, -0.00713342801, 0.0346769467, -0.000293489778, -0.0245527346, -0.0117408549, -0.0272404, -0.0150852809, -0.00349598587, -0.0106900381, -0.038435638, -0.000754011446, -0.0190056339, -0.0129331276, -0.0684243292, -0.00307919574, -0.0557336956, -0.00514293881, -0.0270989425, -0.0045947968, 0.0379304364, 0.0168635864, 0.00648171967, 0.0133271832, -0.00862376858, -0.0260885432, -0.015297465, 0.0288368333, -0.00239464943, -0.0185812674, 0.0190763623, 0.0147922644, 0.00712837605, 0.0190662593, -0.0229967162, -0.0122662634, -0.0147518488, -0.00307919574, 0.00531470682, 0.00270282151, -0.0131958313, -0.0261087511, -0.0118722068, 0.00743654836, -0.0240475331, 0.00257778447, -0.0435684733, -0.0205010269, -0.0271393601, -0.019682603, -0.00176441204, -0.00960385706, 0.0288570412, -0.0193491708, -0.0147922644, 0.0517325103, 0.01046775, -0.0195916668, -0.0136505114, -0.0380718932, 0.0115286708, 0.00640594, -0.0161259938, 0.0290793292, 0.0095129218, -0.0114276307, -0.00727488426, -0.0114781503, -0.00605735136, 0.0134787438, 0.021400284, -0.0136808241, -0.0298472326, -0.0475696586, -0.0156915206, -0.0211173724, 0.00164695294, 0.0121753272, -0.0125188632, 0.00049036, -0.0303524341, 0.0148629928, -0.0145295607, -0.0164796337, -0.00505705504, 1.03309512e-05, 0.0151459044, 0.0425984897, 0.00992213376, 0.0312011689, 0.00279375748, -0.00583506329, 0.00823981687, -0.00533996709, 0.0239060782, 0.0472463295, 0.018177107, 0.0308778416, -0.0175506584, -0.0105586862, -0.00166210893, -0.0291399527, -0.0171262901, -0.0309182573, -0.0074567562, -0.000142876961, 0.00634026341, -0.00880564097, 0.0340505, 0.0271595679, 0.00536017492, -0.0107405577, 0.0224713087, 0.0115286708, 0.0202989466, 0.0177426338, 0.00161664095, 0.00321054785, 0.0325955227, -0.0139940483, -0.0373241976, 0.0148730967, -0.00120490266, -0.0201979075, -0.00723952, -0.0183387697, -0.0087197572, 0.0191774033, -0.0133574959, 0.0147922644, 0.00554204732, -0.0217034034, -0.00737087196, 0.0189652182, 0.0156308971, 0.0206020679, -0.0262299981, -0.0215821564, -0.00998275727, 0.0182276256, 0.00229108334, -0.00607755966, -0.000288911426, 0.023239214, -0.00906329323, 0.00170884, -0.0074314964, -0.0148023684, -0.0296451524, 0.0164695289, -0.0256237593, -0.0219459012, -0.00626448356, -0.0108921183, 0.00384457409, -0.00576938735, -0.000188818609, -0.0080680484, 0.00870460086, -0.0288166236, 0.00296047376, -0.0173586812, 0.00638573151, 0.00472867489, -0.00830549281, 0.0106900381, -0.00174546696, 0.00445334055, -0.0198240597, -0.00311203371, -0.00464531686, 0.00557741104, 0.0146609126, 0.0201069713, 0.01001307, -0.015762249, -0.00511262706, 0.0145901842, -0.0195916668, 0.0159946419, -0.000180135481, 0.0304130577, -0.0066635916, -0.0101696821, -0.00208142516, 0.00522377109, 0.00179346104, -0.0145598724, -0.0148326801, -0.0178941935, 0.00818424486, -0.00542585086, -0.0306555536, 0.000518461806, 0.00916938484, -0.0074112881, 0.00194249512, 0.00105523714, -0.00284427754, 0.00913907308, 0.0250175186, 0.00640088785, 0.004945911, -0.0107405577, -0.00657265587, -0.016338177, -0.00188439712, 0.00429420266, -0.0148629928, 0.00245148432, -0.0102202017, -0.00707280403, 0.0011417527, -0.0317669958, -0.0131756235, -0.00642109569, -0.000110512563, 0.00844189711, -0.0247750226, -0.00844189711, 0.0315649137, 0.00418053241, 0.044740539, 0.00735066412, -0.0260279179, -0.00192481314, -0.0109527418, -0.0265129115, -0.00328127597, -0.00864397734, 0.04765049, 0.00695660803, 0.0226733889, -0.00739108026, -0.012660319, -0.0259066708, 0.00950786937, 0.0216023643, 0.000846841955, -0.00845705252, -0.0165402573, -0.0398906134, 0.0296653602, 0.00629479578, 0.0119126225, -0.0398906134, 0.014499248, 0.00896225311, 0.00697681587, 0.00143729476, 0.0115286708, -0.0131756235, 0.00764873251, -0.0169747304, 0.0233402532, -0.00636047171, -0.0124986554, -0.0122763673, 0.0193794835, 0.000610029325, 0.0133271832, -0.015418713, -0.027967887, -0.00886626542, -0.00409717439, -0.0186823066, -0.024734607, -0.0219459012, -0.0133069754, -0.00350609, 0.02600771, -0.00860861316, -0.0147417439, 0.0208142512, 0.0297866091, 0.00381931406, 0.0163179692, 0.0115993982, 0.0123976152, 0.0379102305, -0.0176921133, -0.00939672533, 0.00210921117, -0.006845464, -0.0164089054, -0.0134989517, -0.0051606209, 0.0362733789, -0.018874282, -0.0258662552, -0.0229360927, -0.00547131896, -0.00651708385, 0.0211577881, 0.000692755915, 0.024956895, 0.00307414378, 0.00455438066, -0.00847220886, 0.00875512138, 0.0213396605, 0.0130442716, -0.0183589775, -0.00804278813, 0.0199857242, -0.0141759198, 0.00708290795, -0.00593105145, -0.031403251, 0.0291803684, -0.0224915165, 0.0146912243, 0.0192582346, -0.0113670062, -0.0218044445, -0.0412243418, -0.00356166204, 0.0020309051, -0.00950281695, -0.0167019218, -0.00489539094, -0.0166716091, 0.00645140745, 0.0160754733, -0.00577949127, -0.00584516721, -0.00112785969, -0.0265735351, 0.00698186783, -0.00421084417, 0.00104323856, 0.0137818642, -0.0293016173, 0.0322317779, -0.0107304538, -0.0067090597, -0.0276041441, -0.00375869, 0.0193794835, 0.000464784272, 0.007249624, 0.0305949301, -0.0346163251, -0.0475292429, -0.00370817, -0.0220065247, 0.00815393217, -0.0218246523, 0.0037738462, -0.0147821605, 0.0142365443, -0.0272808149, 0.0109123262, 0.00213826029, -0.0168130659, 0.00795185287, 0.0207738355, -0.0124986554, 0.00927042495, -0.0213396605, -0.000825370953, -0.00653729169, 0.0223096441, -0.0163988, -0.0145396646, -0.00214078627, 0.00505958078, 0.0115589825, -0.0117711667, -0.0232998375, 0.0440534651, -0.00935125723, -0.000526039803, 0.013003855, 0.00643119961, 0.0142466482, -0.0432047285, -0.00948260911, -0.012771463, 0.0214609075, -0.0112053426, 0.0108719105, -0.0278264321, -0.000343536201, 0.0229563, 0.0195916668, -0.0183690824, -0.0179649219, 0.0381729342, 0.0462359302, 0.0143274805, -0.0219459012, 0.00604724744, 0.00340757589, 0.0189854261, 0.0153782964, -0.0237848293, -0.0278264321, 0.000528250064, -0.00341010187, -0.0212184116, -0.00995749794, 0.00350861601, 0.00896730553, -0.0124380309, -0.00872480869, 0.0117913745, 0.0158531852, 0.0162775535, 0.015651105, 0.010068642, 0.0124380309, 0.0370817, -0.00394308846, -0.0269776955, -0.0513283499, 0.0113467984, -0.0182680432, 0.0268766545, -0.0403149836, -0.0311405454, -0.0335655063, -0.000143113764, 0.0276243519, 0.0171161853, 0.00212689326, 0.00393803604, 0.0101494733, 0.00464531686, -0.0287964158, -0.0108415978, -0.0153075689, 0.0229967162, -0.013579784, -0.00183008809, 0.0284932964, 0.00259167748, 0.0157218333, 0.027381856, 0.0147922644, 0.0060977675, -0.0166109856, -0.0116499187, -0.0373646133, 0.0193895865, -0.0109729506, -0.00472109672, -0.00667874794, 0.0288166236, -0.00827012863, 0.00174799294, -0.0150145525, -0.00634026341, 0.0322519876, 0.00480445474, -0.0108517017, -0.00388246425, -0.0189349074, 0.00618365174, -0.0169242099, 0.01783357, -0.021400284, -0.00803268421, 0.0109123262, 0.0231583808, 0.0174698252, 0.00556225516, 0.0329592675, -0.000416158728, -0.0193693787, -0.0243708622, -0.0015358089, 0.0390014611, 0.0121147027, 0.0112356544, 0.013690928, -0.0151661122, -0.0458721854, 0.0403958149, -0.0256439671, 0.0150145525, -0.0309990905, -0.0322721936, 0.0327369794, -0.0123268869, 0.0111043025, -0.0209355, -0.012539071, 0.00630995166, 0.00928052887, 0.0132867675, -0.0181569, 0.0124784475, -0.0319690742, -0.00606745528, 0.00055761484, -0.0129230237, -0.00575928343, 0.0119227264, 0.0512475185, -0.0105586862, -0.014842784, -0.0258662552, -0.00950281695, 1.31233664e-05, -0.0336261317, 0.00568350311, 0.00823476445, 0.0410020538, 0.0159239136, 0.0199352037, -0.0411435105, 0.0146508086, -0.00818424486, 0.0100332778, -0.00920474902, -0.00843179319, -0.0304534733, 0.0249366853, -0.0105081657, 0.0252600145, 0.0154086091, 0.0220873561, 0.031059714, 0.039466247, -0.00772451237, 0.00406938838, 0.0111447182, -0.0221479814, -0.00429925462, 0.0220671482, -0.0245931502, 0.00297562964, -0.0208950844, 0.0128219835, 0.0212184116, 0.030493889, -0.0411637202, 0.0122864712, -0.00978067797, 0.0137616554, -0.0175304506, 0.00794174895, -0.01356968, 0.017823467, 0.0354852676, -0.00847726, -0.011851999, 0.00309182587, 0.0470038354, 0.032332819, 0.000528250064, -0.0056733992, -0.00953818113, 0.0204100907, 0.0129937511, -0.043730136, -0.0111851348, -0.0221277718, -0.00465794653, 0.0242091976, -0.0174395144, -0.00237444136, -0.00735571608, 0.00365765, 0.0174900331, 0.0170353539, 0.0273212306, -0.0353236049, 0.00847726, 0.00599167543, 0.0140748797, 0.00282154349, -0.000970616064, 0.000162927099, -0.00335200387, 0.00472362246, 0.0048095067, -0.00785586424, 0.0206121709, 0.00478172069, -0.0277658086, 0.0081994, 0.009149177, -0.0217640288, 0.0101090576, -0.0198543705, -0.00473625259, 0.00675957976, -0.033605922, 0.0087652253, -0.00439524231, -0.0131554157, -0.0159744322, 0.0340100825, -0.00580475107, -0.00573907513, -0.0040542325, 0.017368786, -0.00688082771, 0.0331209302, -0.00676968368, -0.00433209259, -0.00442050258, -0.00799732096, 0.00898246095, -0.000655497366, 0.0028366996, 0.0137010319, 0.00712837605, 0.00284932973, 0.0165503621, -0.0236837901, 7.8227109e-05, 0.00292510958, -0.000868313, -0.00141203485, -0.00192228705, -0.00123837218, 0.0236029569, -0.0119833509, 0.00688082771, 0.0127815669, -0.0107809743, 0.000106565683, -0.0016077999, 0.0294228643, 0.0133979116, 0.0320499055, 0.00913402159, 0.013802072, -0.00730014406, -0.00109881058, -0.00334442593, -0.00518335495, -0.0184398107, 0.00590579119, -0.0103161903, -0.00649182359, 0.0188237634, -0.0326157287, 0.00282154349, 0.0203292593, 0.0127916709, 0.00585527113, -0.00846715644, 0.0066635916, -0.00543595525, -0.0373039879, 0.0097604692, 0.0326763541, 0.0172879547, -0.000506463286, 0.00167221297, 0.0102505134, -0.0174496174, -0.00385720422, 0.00507473666, -0.00377637218, 0.0242698211, 0.0145497685, -0.00975036528, -0.0151054887, -0.0143274805, 0.010124214, -0.0213194527, 0.000580664608, 0.0127613591, 0.0118418951, 0.0173182655, -0.00830549281, 0.00646656379, 0.00981099, -0.0170858745, -0.0214407, -0.0131453117, -0.0137212398, 0.00241233129, -0.0169444177, -0.00877027679, -0.0103414496, 0.0104980618, 0.000879048486, 0.0353438109, 0.00544605916, 0.00862376858, -0.00732540432, -0.0109426379, -0.0296249446, -0.0116701266, 0.00979583338, 0.0182781462, -0.0246739816, 0.0159037057, -0.0201878026, 0.000466363, 0.00253610546, 0.0128118796, -0.0264320783, 0.0256439671, 0.00098072, 0.0121652232, -0.00886121299, 0.00870965328, 0.013458536, 0.000293489778, 0.00936641358, -0.00998781, -0.00741634, -0.00902287755, 0.0234412942, -0.0048549748, 0.00978572946, -0.0265533272, -0.00674947584, 0.0078205, -0.0025891515, -0.0109123262, -0.00203469419, 0.00180482806, 0.0116499187, 0.012892711, -0.00922495686, 0.0209961236, 0.00187934504, -0.0236433726, 0.0281295516, -0.00500400877, 0.00116827572, 0.0102151502, 0.0358288027, 0.0226733889, 0.000454048772, 0.00214078627, -0.020713212, -0.00535007101, -0.00401886832, 0.00880564097, -0.00354145397, 0.0292207841, -0.00484487088, -0.00353892799, 0.00698692, -0.00300088967, -0.0151762171, -0.00374353421, -0.00268513942, 0.00799732096, 0.00300341565, 0.0107304538, 0.00170631392, -0.00110070512, 0.0050696847, 0.0193390679, 0.0246537738, -0.0253408458, 0.0139637357, 0.034636531, 0.0083560124, 0.00306909182, 0.00805794448, -0.00589568727, 0.0143476883, 0.016691817, 0.0138424877, 0.010068642, 0.00450891256, -0.00654234365, -0.000293016172, 0.00256894343, 0.00772956433, -0.0123774074, 0.00878038071, -0.0137212398, 0.00121753267, -0.0344344527, -0.0159037057, 0.0190763623, -0.00221404037, -0.0092401132, -0.0113164866, -0.00280891359, -0.00514546502, 0.0130846873, 0.015418713, -0.00641604373, -0.0340302922, -0.00705259619, -0.0197129156, 0.0176719055, -0.010932534, -0.00974026136, 0.00848231278, -9.73299902e-05, -0.0168635864, -0.0172374342, -0.0125693828, -0.0125996955, 0.00205111317, 0.0133271832, -0.00727993622, -0.00060087262, 0.00703238789, 0.0018578741, -0.00586537551, 0.0134181194, 0.00105460559, -0.0151560083, 0.00657770783, -0.0204606112, 0.0126502151, -0.0134282233, -0.00494338479, -0.0101090576, -0.00891678501, -0.00791143626, -0.000214394371, -0.0206121709, -0.011508463, -0.00665853964, -0.0176516976, 0.00152065291, 0.0106799342, 0.0303524341, 0.00674947584, -0.0442959629, -0.00978067797, 0.0176011771, 0.0263108313, 0.00515556894, -0.0116903344, -0.0032736978, -0.00715868827, 0.00346062193, 0.018399395, -0.00955333747, -0.00516314711, 0.00142971682, -0.00345557, 0.00545111112, 0.00958364923, 0.0356873497, 0.0319690742, 0.00483729271, 0.0158430804, 0.0120237665, 0.00849746913, -0.00363239017, -0.0120540792, -0.0211982038, -0.00757800415, 0.0211173724, 0.0207940433, 0.0189652182, -0.00103629206, 0.00762852421, -0.0338282101, 0.0134181194, -0.011619607, -0.00290237553, 0.0036121821, 0.00457964046, -0.0430430658, 0.00747696403, -0.0197230186, -0.0233200453, 0.0105586862, -0.00249568932, -0.0243506543, 0.00706775207, 0.00442302832, -0.0326763541, 0.00915422942, -0.0162977614, 0.00428915024, -0.0188843869, 0.0315042883, -0.0051151528, 0.000808320474, -0.0167524423, 0.0299886893, -0.00102113606, -0.0160148498, -0.0138727995, 0.00743654836, 0.0131857274, -0.00689598406, -0.00769925257, -0.0148023684, -0.014620496, -1.26892101e-05, -0.0187328272, -0.00628974335, 0.0174597222, -0.000558877829, -0.0229158849, 0.012771463, -0.0011998507, -0.00156359491, -0.00352882408, 0.0209355, 0.0125087593, 0.0259672944, -0.00336716, -0.00348083, -0.012539071, -0.00405170629, -0.00906329323, 0.00827012863, 0.0223096441, 0.00149918185, -4.83985832e-06, 0.00376374205, -0.0235019177, -0.0268362388, 0.00855809264, 0.0134484321, -0.0147013282, 0.000214552245, -0.00783060491, -0.00646656379, 0.0107304538, -0.0163684897, -0.00766388839, 0.0245325267, -0.00449123047, 0.0182377305, -0.0137515515, -0.0253408458, 0.00226329733, -0.00302109774, 0.00879048463, 0.00615839148, -0.00131225772, 0.00765883643, 0.0179346111, 0.00696671195, 0.0108517017, -0.00126110623, -0.00310445577, -0.0116297109, 0.00270534749, 0.0028366996, 0.0266947839, -0.00208268827, -0.00533491513, -0.0319084488, -0.00877027679, 0.00372332614, -0.0113467984, -0.00531975925, -0.00541069498, 0.0285943355, -0.0356469341, 0.00299331173, 0.001841455, -0.00391277624, 0.0218448602, -0.0155399609, 0.0021660463, 0.00501158694, 0.000267914031, -0.00264472351, 0.0284730885, 0.00607755966, -0.0342323706, 0.00870460086, -0.00880058855, -0.0130745834, 0.015418713, -0.000338484184, 0.0192279238, -0.00322065176, -0.00945229735, 0.00109881058, 0.0189349074, -0.00171768095, -0.00261946348, -0.0149236163, 0.0209152922, 0.00751738, 0.0221075639, 0.0197735392, -0.0271595679, -0.00878543314, 0.0186924115, -0.0170252491, -0.0134181194, 0.0179144014, 0.0168231688, 0.00190207909, 0.01621693, 0.00159643288, 0.0100332778, -0.00662822789, 0.00394308846, 0.0124885514, 0.0171667058, -0.00960890949, 0.0168332737, 0.000236181135, 0.00495854067, -0.0196421873, -0.00836106483, 0.00434472226, -0.0203393642, -0.0190460514, 0.00738097634, -0.00452154269, -0.0227744281, 0.00228729425, -0.0241283663, -0.00257273251, 0.00628974335, 0.0299886893, -0.00665348768, -0.00128005119, -0.0255631339, -0.00394814042, 0.0068101, 0.0166615061, -0.00383952213, -0.00676968368, -0.0156106893, 0.0102303056, 0.00812362, 0.00602703961, -0.0137818642, -0.0241485741, 0.0147417439, -0.0237848293, -3.57192403e-05, 0.00659791566, -0.037384823, -0.00807310082, 0.0174597222, 0.00803773664, 0.0205717552, -0.0090127727, -0.0062594316, -0.0020309051, -0.0112861739, -0.00949271303, -0.00966448151, -0.0296249446, -0.00966953393, 0.0045493287, 0.00620891154, 0.023825245, 0.0230169259, 0.0152873611, 0.00249821553, 0.000352061441, 0.0226935968, 0.0306555536, -0.0258056298, 0.0127108395, 0.00598662347, -0.00644130353, -0.0163078643, -0.0192784425, -0.0116701266, 0.0286751688, 0.014620496, -0.0105182696, 0.014620496, 0.01001307, 0.00875512138, 0.0261289589, 0.0131655196, -0.013458536, -0.0042158966, 0.0202686358, 0.0170656666, -0.0103414496, 0.0142971678, 0.00899256486, 0.00223172223, 0.0118418951, 0.00195512502, 0.00180230208, 0.023360461, 0.0208748765, 0.00278365356, -0.0130341677, -0.00414769445, 0.0199453067, 0.00546121504, 0.003624812, 0.016802961, -0.0215821564, -0.00685556792, -0.00903298147, -0.0101595782, -0.0231583808, 0.00367280608, -0.0151459044, -0.00316760573, 0.00258536241, 0.00863387249, -0.00485750055, -0.005466267, -0.0112861739, -0.00826002471, 0.023825245, 0.000229076759, 0.0343738273, -0.00714858389, 0.0191875063, -0.000935252057, 0.00763357617, 0.00268766563, 0.00119606173, 0.0166412983, -0.000176188594, -0.0184802264, -0.0193390679, -0.020480819, -0.031645745, -0.00526418677, 0.0186216831, 0.00952302571, 0.00969479326, -0.0170959774, -0.00557235908, 0.00732035236, -0.00990192592, -0.0337271728, 0.0323934406, 0.041668918, 0.00246285135, 0.000208395111, -0.0119429352, -0.0149337202, 0.0301907696, -0.00307666976, 0.0289782882, -0.00148023688, 0.00117143313, 0.0030842477, 0.0183185618, -0.0152267367, -0.00946240127, 0.00586537551, 0.0119934548, 0.000932726, 0.018288251, -0.0203999877, 0.0131352078, -0.00774977263, 0.0107304538, 0.00722436421, 0.000543406059, 0.00235170731, 0.00761842029, -0.000161821969, -0.00651203189, 0.00328632793, -0.00692124385, -0.00281901751, -0.0127815669, -0.0135292634, 0.0153378807, 0.0108921183, 0.0111346142, -0.012084391, -0.0151054887, -0.005466267, -0.0101696821, 0.0227542203, 0.00619880762, -0.0160855763, 0.0113265906, 0.00915422942, -0.0146407047, 0.0123470947, 0.0139536317, 0.0193188582, 0.0104576461, 0.00061066082, -0.0140142562, 0.00129583874, 0.0106294136, 0.0106294136, -0.016227033, 0.00827012863, -0.0119429352, -0.00136530376, 0.00579464715, 0.0133777037, -0.0184196029, -0.0162674487, -0.0211173724, 0.0282710083, -0.00233907741, -0.00216983515, 0.01082139, -0.0286145434, -0.00281649153, 0.0154389208, 0.0268362388, -0.0113771101, 0.00147771079, -0.00638067955, -0.0222288128, -0.00540564302, -0.00739613222, -0.00260935957, 0.00475898664, 0.00556225516, -0.00808825623, 0.00147392182, -0.0155096492, 0.00543090329, 0.0193390679, -0.00666864356, 0.00580475107, -0.0225723479, 0.00968468934, 0.0205616523, -0.0269574877, -0.0339898765, 0.00468825875, -0.0164493211, -0.0351013169, -0.00110386265, -0.0221479814, 0.00752748409, -0.0142870639, -0.00535512296, -0.00574412709, 0.0186216831, 0.010356606, 0.0196421873, -0.00757800415, -0.0183589775, -0.00904308539, -0.00235297042, -0.016691817, 0.00172147, 0.00786596816, -0.0120944949, 0.00795690436, -0.021743821, -0.00617859932, -0.0255631339, 0.0182680432, -0.001754308, -0.00647161575, -0.0132968714, 0.000285438175, -0.0276041441, 0.0116297109, 0.0118621029, -0.00978572946, -0.0161259938, 0.0326157287, 0.0189450104, 0.0106698303, -0.0015939069, -0.0193390679, -0.0198240597, -0.0258056298, 0.00694650412, 0.00225950824, -0.0117509589, 0.0136404075, 0.00522377109, -0.0237646215, -0.0308778416, -0.00181745808, 0.0127815669, -0.00811856892, -0.00879048463, -0.00627458747, 0.015186321, 0.00754264044, 0.0118115824, 0.0140445679, -0.00502169086, 0.0186317861, -0.0117105423, -0.00272808154, -0.00263967155, 0.0074314964, -0.0010602891, 0.00247800746, -0.00804784056, 0.0125087593, 0.00398350414, -0.00837622117, -0.007189, -0.0141456081, 0.023703998, 0.0100888498, -0.0240071174, -2.64934124e-06, -0.00441039866, -0.0125188632, 0.000145087208, -0.0282103848, 0.0231583808, -0.00118785212, -0.00334947789, -0.00657265587, 0.0119227264, 0.00447102264, -0.00525408285, -0.010301034, -0.019682603, -0.000105539497, 0.00801247638, -0.0149438241, 0.0112154465, -0.00571886729, -0.0119833509, 0.0312415864, -0.00981604122, 0.003422732, 0.0035212459, -0.0126401111, -0.00228224229, -0.0165907778, -0.0300493129, 0.0101494733, 0.0196017716, -0.022430893, 0.0014473988, 0.00473120064, -0.0244314857, -0.0294834878, 0.00358944805, -0.0221479814, 0.0119025186, -0.001754308, 0.00693134777, -0.00798216462, 0.00253231637, 0.00807310082, -0.0112962788, 0.0124885514, -0.00892183743, 0.000336589699, 0.000270440039, -0.00752243213, -0.0277860165, -1.38436717e-05, 0.013802072, -0.0197230186, -0.00604724744, -0.00923000928, 0.00775987655, -0.0180255454, 0.0146508086, 0.0125996955, 0.0112356544, -0.00549657922, 0.012892711, -0.00545616308, 0.00566329528, -0.00116006611, 0.0152671523, -0.00696166, -0.00194249512, 0.000947882, -0.000639709877, -0.0185610577, -0.00974026136, 0.00509241875, 0.00987161323, 8.50946744e-05, 0.0121147027, -0.0108415978, 0.0030261497, -0.0202282201, 0.018399395, 0.0227340125, -0.0240475331, 0.00710816821, -0.02784664, -0.0111851348, -0.00306403963, 0.00529449899, 0.010588998, -0.0119328303, -0.00180988, 0.00155854283, -0.0110941986, -0.00575928343, 0.00402897224, -0.00315497583, 0.0153681925, 0.00483476697, 0.00729004, -0.020713212, -0.00247800746, 0.031282, -0.00215467927, 0.0185105391, 0.0129331276, 0.00859850924, -0.00322570372, 0.00187555607, -0.0140950885, -0.00667369599, -0.0163684897, 0.00655244756, -0.00545111112, 0.0193188582, 0.0111144064, 0.0251185577, -0.00840653293, -0.00158759195, -0.0201069713, 0.0075476924, 0.0118722068, -0.0419114158, 0.0106597263, 0.0299684815, -0.00949271303, -0.00768409623, -0.00631500361, 0.0194300022, 0.00439776853, 0.00291247969, 0.0156612098, -0.0226733889, -0.0183690824, -0.0321307369, 0.0109426379, 0.015762249, 0.0107304538, -0.00491812499, 0.0290187038, -0.00304888375, 0.0201777, 0.00171262899, -0.00549657922, -0.00365007203, 0.00674442388, -0.0439726338, 0.0097150011, -0.0168130659, -0.00233023637, -0.0217034034, 0.00906329323, 0.00132362475, -0.0156814177, -0.0101090576, 0.00465289457, 0.0113872141, -0.00297815562, 0.0257450063, 0.00799732096, -0.023360461, -0.00795185287, 0.0225319322, -0.005582463, -0.00300594163, 0.0129937511, -0.0117408549, 0.0193895865, -0.00218246528, 0.000863892492, -0.0299886893, 0.00837116875, -0.0353438109, 0.00666864356, -0.00474635651, -0.000121169134, -0.00314487168, -0.0134989517, -0.00116701261, 0.0187429301, -0.0011101776, 0.000712963927, -0.0060068313, -0.00311455969, -0.0261895824, -0.00233655144, -0.00916433334, 0.0136404075, -0.00761842029, -0.0120641831, 0.0124481348, -0.00816403702, 0.00536522688, -0.000548773794, -0.00715363584, 0.0281497594, -0.0124178231, 0.00451649074, -0.0116499187, -0.00483224075, 0.00210415921, 0.0238858704, -0.00241106842, -0.001798513, 0.014499248, -4.07712432e-05, 0.0119227264, -0.000748959428, -0.00156738388, 0.00157748791, 0.00319791771, -0.0154591287, 0.0161664095, -0.0024994784, 0.0226733889, 0.0154086091, -0.018753035, 0.0165301543, 0.0131251039, 0.0318478271, 0.00662822789, -0.00146381778, -0.00282912166, 0.0116095021, -0.0294430722, -0.0201170761, -0.0163482819, 0.0048095067, 0.0146811204, -0.00191218313, 0.0176011771, 0.00909865741, -0.00674442388, 0.0111043025, 0.00552183902, 0.0142971678, -0.0241283663, 0.00131352071, 0.000128668195, -0.0179346111, -0.0235019177, 0.0203191563, 0.00251084543, -0.0255833417, -0.0131048951, 0.0321913622, 0.00763862813, -0.0123369908, -0.0115185669, -0.0107607665, -0.0219054837, -0.00595125929, 0.00885110907, 0.015641, -0.0183488745, 0.0067090597, -0.00353892799, 0.00121500669, -0.0272606071, 0.00621901546, -0.019904891, -0.0220873561, -0.00190965703, 0.00368796219, 0.000714858412, -0.0100080175, 0.00776492851, -0.0172172263, -0.00249190046, -0.022208605, 0.00651203189, -0.0157117285, 0.00528439507, -0.00403907616, 0.00712332409, 0.0192784425, 0.0238454528, -0.023926286, -0.00300341565, -0.00697176391, 0.00987666566, -0.0203494672, 0.0122864712, 0.00229234621, 0.0122864712, -0.0185004342, 0.00180609105, -0.0154591287, -0.0162472408, 0.0174900331, -0.00656760391, -0.0175708663, -0.00242875027, -0.0209961236, 0.00781544857, -0.0152772563, 0.0325955227, -0.0119025186, -0.0098968735, 0.0063503678, 0.012316783, 0.0039178282, -0.00589063531, -0.00684041204, -0.00156738388, 0.0208748765, 0.0173081625, -0.00946240127, 0.0139031122, -0.00211552624, -0.0232998375, -0.0142062325, -0.0191571955, 0.00198543724, -0.00575423148, -0.0219661091, -0.0174698252, -0.00134509581, 0.000331537682, -0.0105687901, -0.00931589305, -0.000523829542, -0.0044306065, 0.0166008808, -0.0242496133, -0.0149842408, -0.0102303056, 0.00327117182, -0.0183286667, 0.00704249181, 0.0314638726, 0.0145598724, -0.00960890949, 0.00149160379, 0.00445081433, -0.0310192984, 0.00111586112, -0.011164926, 0.0228350535, 0.0265533272, -0.0423155762, 0.0229967162, 0.00573402317, -0.00824486837, -0.0259066708, -0.0162371378, -0.0194805227, -0.0121854311, 0.00499895681, -0.012084391, -0.00669390382, -0.0144689362, -0.0164796337, -0.000426578481, -0.00644130353, 0.0166109856, 0.0157521442, 0.000742644421, 0.028998496, -0.0420326628, -0.0126906317, -0.0130745834, -0.00574917905, 0.0204201955, 0.0307768, 0.00119037821, 0.00476909056, 0.00243001338, 0.00541069498, 0.00112280762, -0.00758810854, -0.0022784532, -0.00968974177, 0.0280891359, 0.0156713128, -0.0112861739, 0.00176314905, -0.00777503243, 0.0215215329, 0.00644130353, -0.0061887037, -0.00316507975, -0.0187227223, 0.00286701159, 0.0120540792, -0.0117408549, -0.015186321, 0.00643119961, 0.00447102264, -0.013690928, 0.0107809743, -0.00129962771, -0.00365259801, 0.0117206471, -0.00590579119, -0.0264724959, -0.00224308926, -0.00818929635, -0.0084014805, 0.000912518, 0.00698186783, -0.00378142414, 0.00246032537, -0.00915928092, -0.0277051833, -0.00446091872, -0.00177704205, -0.00433461834, -0.00655244756, -0.0209759157, -0.00422852626, -0.0144790402, 0.0177830495, -0.00561277522, -0.0200362429, -7.87402e-05, 0.0270181112, -0.00142213877, -0.03566714, -0.00202080118, -0.00153959787, 0.00755274436, 0.020258531, -0.00395319238, -0.0485800579, -0.014266856, 0.00496864505, 0.00901782513, 0.00470846659, -0.00633521145, 0.00866923667, -0.013114999, -0.00330653577, -0.0322924033, -0.0122864712, 0.00846210495, 0.016328074, 0.0205212366, -0.016105786, 0.0163179692, 0.0190460514, -0.0188237634, 0.0147013282, -0.0168938972, 0.0175102428, -0.00714858389, 0.00464531686, -0.0179952346, -0.00321559981, -0.0158228725, -0.00444828859, 0.000955460069, -0.0187732428, 0.00757295219, 0.0170656666, 0.00596641516, -0.0101999938, 0.00275334157, 0.00972005352, -0.00945735, 0.0036121821, 0.00643625157, 0.00512525672, 0.00195133616, 0.0134989517, 0.00138298573, -0.0272606071, 0.0308172181, 0.000102145183, 0.0227138046, 0.000322065171, 0.0133878076, 0.000441734504, -0.0145901842, -0.0206020679, -0.0345961154, 0.0200362429, -0.00246664044, 0.00674442388, 0.0105081657, -0.0217842367, 0.0054864753, 0.00244769547, -0.0153277768, -0.018409498, -0.00127057871, -0.00420326646, 0.00436745631, -0.00636552367, -0.0138323838, 0.000765378412, -0.00225824537, 0.00170505093, 0.0091946451, -0.019440107, 0.00906329323, 0.00446849642, 0.0026346196, 0.0239869095, -0.0023820193, -0.0032736978, 0.00574412709, -0.00574917905, -0.0250781421, -0.00935631, -0.000504568801, 0.00477414252, 0.0226127654, -0.00899761729, 0.0066383318, 0.00622406742, -0.00488781277, -0.0124784475, -0.00550163118, 0.0151560083, 0.000322065171, 0.00760831637, 0.00434219651, 0.00162421889, -0.000141692886, 0.0146912243, -0.00311708567, -0.00328380195, -0.0087652253, 0.00220393622, 0.0139839435, -0.0256035514, 0.0078205, 0.0154793365, -0.0273414403, 0.00393045833, -0.00372585212, 0.016328074, 0.00838127267, 0.00435230043, -0.0148326801, -0.0219459012, 0.000268545526, -0.0151054887, -0.00392540637, 0.0167726502, -0.0218044445, 0.00092893705, 0.013347392, 0.00758810854, 0.0111447182, 0.0128421914, 0.0033419, -0.0121551193, -0.0087197572, -0.00941693317, -0.0156005844, -0.00276849768, -0.0124380309, -0.0275233109, 0.00247927033, 0.0160047449, 0.00736076804, 0.0385770947, 0.0132059352, -0.0234817099, -0.00363744213, -0.00594115537, 0.0166716091, -0.0101191616, 0.00937146507, 0.00990192592, 0.0113973189, -0.0167322326, -0.0130442716, 0.00965942908, -0.0233402532, -0.0352427736, 0.0185004342, -0.00626953552, -0.00328127597, -0.00177199, -0.0273616482, 0.025886463, 0.00180482806, 0.00502926903, -0.0110941986, -0.00761842029, 0.00130594277, -0.00270787347, 0.00642614765, 0.0139839435, 0.0151054887, -0.00179472403, -0.00277102366, -0.00450133439, 0.0147821605, 0.00501916464, -0.0164493211, -0.000975668081, -0.0168332737, 0.034757778, -0.00478172069, -0.000185503231, 0.0151964249, -0.0233200453, 0.00935631, 0.00332674384, -0.0131352078, 0.0134181194, 0.0144083118, 0.0119227264, 0.0102707222, -0.0213194527, -0.0120540792, -0.0292409919, -0.00148528884, 0.0074567562, 0.00488276081, -0.00978067797, -0.0310192984, 0.00256389147, 0.000324591179, 0.0218246523, 0.00438008644, 0.0337271728, -0.0174698252, 0.00629479578, 0.0164291132, -4.33367131e-05, 0.00581485545, 0.0126502151, 0.0309182573, -0.0412445515, 0.00133246579, -0.0412041359, -0.00988677, -0.0139637357, 0.00198922609, -0.0155500649, 0.000237602013, 0.008108465, -0.00967963785, -0.00559761934, 0.0237444136, 0.0156915206, -0.00300846761, -0.00257146941, -0.0146002881, -0.00287458953, 0.032332819, -0.0155197531, 0.00399613427, 0.00693134777, -0.00580980349, -0.00368291, -0.00701723201, -0.0243102387, 0.0104273343, 0.0138525916, -0.0216225721, -0.00315244985, -0.00362986396, -0.0168837942, -0.00925021712, -0.00396834826, 0.00686567184, -0.0137515515, -0.0129735433, -0.00606745528, -0.00332169188, -0.0231179651, -0.0116903344, 0.00939167291, 0.00205742824, -0.00864397734, 0.0445788726, -0.0127108395, -0.0024262243, 0.00756284827, -0.00107544509, -0.00429925462, 0.00920980144, 0.0182276256, -0.000754011446, -0.0267958231, -0.00958870165, 0.00901782513, 0.00301857176, 0.00474888273, 0.014499248, -0.00290237553, -0.00358692207, 0.0245527346, -0.00222414429, 0.00383952213, 0.00620891154, -0.0222894363, 0.0143274805, -0.000257810025, 0.00136277778, -0.0181063786, 0.0145598724, 0.00232644728, -0.00443313271, 0.00671916362, 0.00210289611, -0.00357934413, -0.00959375314, -0.0213194527, 0.00584011525, 0.0103768138, 0.00498127472, 0.00584516721, 0.0176516976, 0.0162068252, -0.00866418518, -0.00326611986, 0.0066838, -0.00654234365, 0.0197230186, -0.00348840794, 0.000938409532, -0.0137919681, 0.000846841955, 0.00289732357, 0.00467057666, 0.0227744281, -0.0218246523, 0.0267958231, 0.00120869174, 0.0215619486, -0.025542926, 0.0138626955, -0.000884732, 0.00165832, 0.0138626955, -0.0345759094, -0.0101949414, 0.00675957976, 2.48653268e-05, 0.0478121564, 0.00272302958, 0.0301099364, 0.00211300026, 0.00958364923, 0.00441039866, -0.000268545526, 0.0102454619, -0.012427927, 0.00441039866, 0.0271999836, -0.0100383293, 0.00308172172, 0.00892183743, -0.0126906317, 0.00170252495, 0.00359197403, -0.0158329774, 0.0222490206, 0.00295794779, -0.0144790402, -0.0115589825, -0.00251463451, -0.0195007306, 0.000866418472, 0.00646151183, -0.00247421837, 0.00191723509, 0.0258460473, 0.0172374342, -0.00467815483, -0.0160956811, 0.020137284, -0.0445788726, 0.00877027679, 0.0210163314, 0.00184777007, -0.0146609126, 0.00963922124, -0.00858840533, 0.0338484198, -0.00712332409, -0.0174092017, 0.0253812633, 0.0133271832, 0.0230573416, -0.00877027679, -0.00236686342, 0.00336716, -0.00558751496, 0.00697681587, -0.00371322222, -0.0129432315, -0.00159138092, -0.00277102366, 0.00204732409, 0.0169848334, 0.0145295607, -0.0178739857, -0.0160249528, 0.00561277522, -0.000518461806, 0.00135014777, -0.0139637357, -0.0155601688, 0.0381527245, -0.000211552615, -0.00461247843, 0.00813372433, 0.00984130148, 0.0177830495, -0.00204858719, -0.0100383293, 0.00537027884, -0.0161765125, 0.0113265906, -0.017368786, 0.0127815669, 0.00836106483, 0.0110638859, 0.00464784261, -0.0109527418, 0.0102707222, -0.0105384784, -0.00473625259, 0.00390267232, -0.0106193097, -0.0189753231, -0.0272808149, 0.00755274436, -0.0122763673, -0.0385973, 0.0140445679, 0.0080680484, -0.00445586676, 0.0067545278, -0.0242091976, -0.0218448602, 0.00130341679, 0.00864397734, -0.00783060491, 0.00916433334, 0.0324742757, 0.00774977263, 0.0160451606, 0.00568350311, -0.0150953848, 0.0274828952, -0.0323530249, -0.00993729, -0.014610392, 0.0164089054, -0.000150297084, 0.00205111317, 0.0145598724, 0.00393803604, -0.00595125929, 0.0132261431, 0.00813372433, -0.0084014805, 0.000141298209, 0.0167120248]
|
05 Jul, 2021
|
Python calendar module : monthdatescalendar() method
05 Jul, 2021
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions.
monthdatescalendar() method in Python is used to get a list of the weeks in the month of the year as full weeks.
Syntax: monthdatescalendar(year, month)
Parameter:
year: year of the calendar
month: month of the calendar
Returns: a list of the weeks in the month.
Code #1:
Python3
# Python program to demonstrate working
# of monthdatescalendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
year = 2018
month = 9
# printing with monthdatescalendar
print(obj.monthdatescalendar(year, month))
Output:
[[datetime.date(2018, 8, 27), datetime.date(2018, 8, 28), datetime.date(2018, 8, 29), datetime.date(2018, 8, 30), datetime.date(2018, 8, 31), datetime.date(2018, 9, 1), datetime.date(2018, 9, 2)], [datetime.date(2018, 9, 3), datetime.date(2018, 9, 4), datetime.date(2018, 9, 5), datetime.date(2018, 9, 6), datetime.date(2018, 9, 7), datetime.date(2018, 9, 8), datetime.date(2018, 9, 9)], [datetime.date(2018, 9, 10), datetime.date(2018, 9, 11), datetime.date(2018, 9, 12), datetime.date(2018, 9, 13), datetime.date(2018, 9, 14), datetime.date(2018, 9, 15), datetime.date(2018, 9, 16)], [datetime.date(2018, 9, 17), datetime.date(2018, 9, 18), datetime.date(2018, 9, 19), datetime.date(2018, 9, 20), datetime.date(2018, 9, 21), datetime.date(2018, 9, 22), datetime.date(2018, 9, 23)], [datetime.date(2018, 9, 24), datetime.date(2018, 9, 25), datetime.date(2018, 9, 26), datetime.date(2018, 9, 27), datetime.date(2018, 9, 28), datetime.date(2018, 9, 29), datetime.date(2018, 9, 30)]]
Note that weeks in the output are lists of seven datetime.date objects. Code #2: iterating the list of weeks
Python3
# Python program to demonstrate working
# of monthdatescalendar() method
# importing calendar module
import calendar
obj = calendar.Calendar()
# iterating with monthdatescalendar
for day in obj.monthdatescalendar(2018, 9):
print(day)
Output:
[datetime.date(2018, 8, 27), datetime.date(2018, 8, 28), datetime.date(2018, 8, 29), datetime.date(2018, 8, 30), datetime.date(2018, 8, 31), datetime.date(2018, 9, 1), datetime.date(2018, 9, 2)] [datetime.date(2018, 9, 3), datetime.date(2018, 9, 4), datetime.date(2018, 9, 5), datetime.date(2018, 9, 6), datetime.date(2018, 9, 7), datetime.date(2018, 9, 8), datetime.date(2018, 9, 9)] [datetime.date(2018, 9, 10), datetime.date(2018, 9, 11), datetime.date(2018, 9, 12), datetime.date(2018, 9, 13), datetime.date(2018, 9, 14), datetime.date(2018, 9, 15), datetime.date(2018, 9, 16)] [datetime.date(2018, 9, 17), datetime.date(2018, 9, 18), datetime.date(2018, 9, 19), datetime.date(2018, 9, 20), datetime.date(2018, 9, 21), datetime.date(2018, 9, 22), datetime.date(2018, 9, 23)] [datetime.date(2018, 9, 24), datetime.date(2018, 9, 25), datetime.date(2018, 9, 26), datetime.date(2018, 9, 27), datetime.date(2018, 9, 28), datetime.date(2018, 9, 29), datetime.date(2018, 9, 30)]
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : monthdatescalendar() method
|
https://www.geeksforgeeks.org/python-calendar-module-monthdatescalendar-method/?ref=lbp
|
Pandas
|
Python calendar module : monthdatescalendar() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python calendar module : monthdatescalendar() method, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0182286259, 0.0378655568, -0.0115540531, 0.0516907498, -0.00588612026, 0.0119210053, 0.0132499691, 0.0291578658, 0.000650845235, 0.00150872127, -0.00371167739, 0.0158682261, -0.011068088, 0.00826139562, -0.0171178505, -0.0256271865, -0.0232667867, 0.0225923881, 0.0223146938, -0.00363729522, -0.00151244039, -0.00309430412, -0.00236163847, 0.00657539628, -3.48860813e-05, -0.0134979105, 0.0253494922, -0.0180401895, 0.01417231, 0.0285033025, 0.0285826437, 0.00500592962, -0.00386044197, 0.00374638918, -0.0576016642, -0.00404391857, 0.0109490762, 0.0230486, -0.00912918895, -0.0222948585, -0.00146905065, -0.00401912443, 0.033779487, -0.0226915646, -0.00797874294, 0.023286622, 0.000604666246, -0.0115540531, -0.00644646725, -0.0299512781, 0.000219582784, -0.0163343567, 0.0339580067, -0.000630080176, -0.0224138703, -0.00881182496, -0.00648117904, 0.00765641965, -0.0211245771, -0.0217593051, 0.0322323367, -0.00944159459, 0.00713574328, -0.0192898139, 0.041138377, 0.00111387519, -0.04478807, 0.00449765055, 0.00288107502, -0.0195278358, 0.0403648019, 0.00574727356, 0.00748781953, -0.0149657214, -0.0185559075, -0.0274123624, 0.00946143, 0.00750269601, -0.0368539579, 0.000141248907, -0.0255875159, -0.0198848713, 0.0185261555, -0.00282404851, 0.00524147367, -0.0341365226, 0.0369333, -0.0177426618, -0.00973912422, 0.0393135324, 0.0194484945, 0.0235841516, 0.0117920758, -0.00752749, -0.0114945471, -0.0285231378, 0.0344935581, 0.0524841584, -0.0444310345, -0.0132202161, -0.00481005618, 0.007086155, -0.0104829473, -0.0189625304, 0.0148070389, -0.00653572613, 0.0249329507, -0.0196369309, 0.00920357183, -0.00832090154, 0.0199245419, -0.0101953354, -0.045303788, -0.0129623581, -0.00570760295, 0.0236436576, -0.0138053577, 0.00323315128, 0.0163244382, -0.0286818203, 0.0518494323, -0.0105920415, 0.0392936952, 0.0451451056, -0.0274917036, -0.00277693965, 0.00184592104, 0.0160864145, -0.00511254417, -0.0404639766, -0.00114796706, -0.028919844, -0.00403648, -0.0508179963, -0.0271743387, 0.0106515475, 0.0033719982, 0.023861846, -0.014430169, -0.0105622886, -0.00650101434, 0.00364969205, 0.0328273959, -0.0371713229, -0.000862215, -0.0336604752, 0.00388771552, 0.0381630845, 0.000567165145, -0.0239808578, 0.000323563057, -0.0376275331, -0.00225626351, -0.00252403971, 0.013309475, -0.0225130469, -0.0136665106, -0.0233262926, 0.0165128727, -0.0132003808, -0.00130169047, -0.0114647942, 0.0159872379, 0.0148070389, 0.0257065278, -0.0114548765, 0.0136466753, -0.0275512096, 0.0032976158, 0.0164037794, -0.0200534724, -0.0146086859, -0.0301297959, 0.00421251822, 0.0427648723, -0.00965978298, 0.0431615785, 0.00874240138, 0.0179509316, -0.0265792795, -0.0312405713, -0.0173757076, 0.0147177801, 0.040622659, 0.0256668571, 0.0439549871, 0.0435582809, 0.02380234, -0.00468360633, 0.0199443772, 0.0293760542, 0.0163343567, 0.0051918854, -0.0163442735, 0.000719029049, 0.00509766769, 0.0230287649, 0.044074, -0.00362489815, 0.0304669961, -0.0254883394, 0.00502328575, -0.0142714866, -0.0100812828, 0.0183079671, 0.0110879233, -0.00344638061, 0.0298521016, 0.00466377102, -0.0183476377, 0.0197956134, 0.00141822279, 0.00125706114, -0.0250717979, 0.00827131327, 0.0207873769, -0.0108201476, 0.0166021325, 0.0253296569, -0.020212153, -0.0230287649, 0.0182782132, -0.00055631774, 0.0067439964, -0.00243230164, -0.00688284356, 0.0131309573, 0.0142714866, -0.0349497683, -0.0494691953, -0.00514229713, -0.0313794166, -0.00392986555, -0.00909943599, 0.0532775708, -0.00336208055, 0.0124168871, -0.000751261367, 0.0304273255, -0.0148467096, 0.0276503842, -0.040940024, -0.00237775454, -0.00139218895, 0.022037, 0.014202063, -0.00905480701, 0.031994313, 0.00309430412, 0.0375680253, 0.0393135324, 0.00595554383, -0.0109193232, -0.00784485415, -0.0548247248, -0.0300306194, -3.74429728e-05, -0.0382225923, -0.00815726072, 0.0267379619, -0.023286622, 0.0438359752, 0.0101060765, -0.00498113548, -0.0207873769, 0.00732417824, 0.015293004, 0.0183278024, -0.00172814901, -0.0273528565, 0.0391548499, -0.00752253132, 0.0132003808, -0.00453980034, 0.0048918766, 0.00353563926, 0.00202691811, -0.0196468476, -0.0130714523, 0.0286818203, -0.00234800158, -0.00964490697, 0.029237207, -0.0235841516, 0.0149458861, 0.0283644553, -0.00454723882, -0.0132301338, -0.0033719982, 0.00777047221, 0.0372308269, -0.00166988291, -0.034672074, 0.0192104727, 0.0193294846, 0.00620844355, -0.00774071924, -0.000278623746, -0.0145987682, 0.00504560024, -0.000808287819, 0.00797874294, 0.0022575031, -0.0205493532, 0.00504064141, -0.0275313742, 0.0425268486, 0.00105312956, 0.0184666496, 0.0236833282, -0.0351679586, -0.025210645, 0.00158062414, 0.0105127, 0.0386986397, -0.0218584817, 0.0255478453, 0.00214716955, 0.00505303824, -0.000107931839, -0.016701309, 0.000181306881, 0.0249924567, -0.0240006931, -0.0389168262, -0.0105622886, -0.0138946157, -0.00110643695, 0.016354192, 0.0196369309, -0.0673606247, 0.00129797135, 0.0124664754, 0.0154616032, -0.00769609, -0.0174550489, -0.0408606827, -0.0111771822, 0.0317761227, 0.0272735152, 0.0185955781, 0.0213229302, 0.000506419572, -0.00441583, -0.021243589, -0.0227114, -0.0127044991, 0.0247345977, -0.00596050266, 0.00861843, 0.000399804936, -0.00874736, 0.0272338446, 0.0227709059, 0.0150450626, -0.00528114429, 0.0196270123, -0.0297925957, -0.00313645415, 0.023286622, -0.0226320587, -0.00543486746, 0.00790436, -0.00330257462, -0.0290983617, -0.000698573887, 0.023544481, -0.00712086679, 0.0114846295, 0.0443913639, -0.004877, 0.0212039184, -0.0287214909, -0.00848454237, 0.00790436, 0.00931266602, 0.016701309, 0.0136665106, 0.0180203542, -0.0257461984, -0.029554572, 0.0285826437, -0.0278884079, 0.00737872534, 0.00840024278, -0.0149657214, 0.00329017756, 0.00795394834, 0.00877215434, 0.00853909, -0.00761179, 0.0346919112, -0.0105920415, -0.0226915646, -0.00139466836, -0.00743823126, 0.0322521701, 0.0155211091, -0.0101507064, -0.00470096199, -0.0209460594, -0.0212237537, -0.0158682261, -0.0292967129, -0.0207080357, -0.0248139389, 0.0059852968, -0.018972449, 0.0445103757, 0.032510031, 0.0014963242, 0.0602992624, -0.0216402952, 0.00570760295, 0.039868921, 0.0129326051, 0.0126350755, 0.0381829217, -0.024119705, 0.0242188815, 0.0736682415, -0.00241370616, -0.0179906022, 0.0202319883, -0.0253693275, 0.0114350412, -0.0145491809, -0.0335414633, -0.0285033025, 0.0210650712, -0.00415549194, 0.0193493199, 0.012992111, 0.0224337056, 0.0501039252, 0.0323315114, -0.000299233856, 0.00728450762, 0.00684317295, -0.0386986397, -0.0518494323, 0.0183377191, 0.00300008664, 0.0311810654, -0.00687292591, 0.0127838403, -0.0607356392, 0.0488344692, -0.0265594441, -0.00357283046, -0.00718037272, -0.0205890238, 0.0200435538, 0.0149558038, 0.0322720073, 0.00202319887, 0.0179806836, -0.0163046028, 0.0191906374, 0.0388573185, 0.0184765663, -0.0420904718, -0.0285033025, -0.00467368867, -0.00384556549, -0.0232667867, 0.00417036843, -0.019517919, -0.0332042649, 0.0242585521, 0.019865036, -0.00713078445, -0.0497865602, 0.0268768091, 0.0324901938, -0.00476046791, -0.00425218884, 0.0581570528, 0.013884698, -0.0162550155, 0.0608943217, -0.007086155, -0.0171476025, -0.00517700892, -0.0148268742, -0.0106912181, -0.0394920483, -0.0255676806, -0.0127044991, -0.0148268742, 0.0299512781, 0.021243589, 0.0343547128, -0.00776055455, 0.00466129184, 0.0124168871, 0.0126945814, -0.00460426509, 0.00909943599, -0.0362589, 0.00243106182, 0.00117276108, -0.00548941456, 0.0223543644, 0.00908456, -0.021243589, -0.00778534869, -0.0207080357, -0.00502328575, -0.0140830511, -0.0340968519, 0.0192898139, -0.00622332, 0.0318951346, 0.0049786563, 0.0240403637, 0.0152037451, 0.0156797916, -0.0104730297, -0.0122681232, -0.0138053577, -0.02098573, 0.0043240916, -0.00291082775, -0.00688284356, 0.00839528348, -0.00591091439, -0.0174649674, -0.00501336809, -0.000658283476, 0.00737376651, 0.0227312353, 0.0167806502, 0.0151144862, -0.00705640204, -0.00867793616, -0.0364572518, -0.00734897237, -0.0062183612, 0.00234676199, -0.0258652102, 0.0635919198, 0.0148764625, -0.0406623296, 0.0189030245, -0.0262222439, 0.00373647152, 0.0092283655, -0.0216204599, -0.0242585521, -0.0198551193, -0.00185087987, -0.019517919, -0.0137160989, -0.0363382399, -0.011643311, -0.00582661433, 0.0143111572, 0.00327034225, -0.0253693275, -0.000168135026, 0.0235841516, 0.00128557428, 0.00331001286, 0.0146582741, 0.0275710449, 0.00262073684, 0.0206683651, 0.0204105061, 0.0401267782, 0.000365403102, -0.0202319883, 0.0530792177, 0.0192898139, -0.0301893018, -0.00436624186, -0.0130714523, 0.0309033711, 0.0127838403, -0.0075919549, -0.00970937125, 0.063988626, -0.0130714523, -0.016701309, -0.00075560034, 0.0212832596, -0.0157690495, -0.0121491114, -0.0324901938, 0.0109986644, -0.000365093176, 0.0454228, -0.0382622629, -0.00487204129, 0.0132598868, -0.0182385426, -0.00116160384, -0.0333629474, 0.0437169634, 0.00719029037, -0.0101457471, 0.00127937575, -0.0253098216, -0.0217791405, -0.0323513485, 0.0160169918, 0.0236833282, -0.0291777011, 0.0171178505, -0.0385597907, -0.030705018, 0.0275512096, -0.024318058, 0.00844487175, 0.015352509, -0.0294157248, -0.00356787164, -0.0248139389, -0.0222750232, -0.0139739569, 0.0144896749, 0.00931266602, 0.00619356707, 0.00836553052, 0.0256073512, -0.0213229302, -0.0190517902, -0.0305463374, -0.00962507166, -0.0155607797, 0.00111325528, -0.0372308269, 0.00779526634, 0.0114747118, 0.0251114685, -0.0223345291, -0.00803824887, -0.0564115457, -0.0220568348, 0.0245759171, 0.0117226522, -0.0231477767, -0.0263015851, 0.0698995367, -0.00108784134, 0.0460972, 0.00297033368, 0.00343894237, -0.00498113548, -0.0079837013, -0.0297330897, -0.0340571813, 0.00633737305, 0.0188633539, -0.00114796706, 0.00134136109, 0.0267577972, 0.0241792109, -0.0132995574, -0.00357778929, 0.00253519719, -0.000784113538, 0.00409350684, -0.00588116143, 0.0199146252, 0.0372506641, 0.040702, -0.00337943644, 0.00488691777, 0.00462658, -0.00385548314, -0.0170781799, -0.00219799741, 0.0234651398, -0.0249131154, -0.00037594061, 0.0144698396, 0.0289793499, 0.0189327784, -0.0245164111, 0.0139838746, 0.0172170252, -0.0470492914, -0.0349100977, -0.0279677492, 0.0060596792, -0.0211840831, -0.00227237958, 0.00181616819, -0.000792791485, -0.018972449, 0.0173757076, -0.00531089725, -0.00107978319, 0.0011932163, -0.00106490683, 0.00776055455, 0.0286421496, 0.000504250114, 0.00455963565, -0.00231329, 0.0180897787, -0.00739360182, 0.0259445515, -0.00556875579, 0.0229692589, -0.0122185349, -0.0112763587, 0.0133788986, 0.0274917036, 0.00462905923, 0.00614397926, 0.00317364535, 0.00646134373, -0.0240998697, -0.00261081918, -0.00272735138, 0.0235246457, -0.0198055301, -0.0176137313, -0.000443194614, -0.0550627485, -0.0189922843, 0.00273726904, -0.0229494236, 0.0250519626, -0.0197757781, -0.0292173717, -0.0183972251, 0.00208518421, -0.0157492142, -0.0053009796, 0.0304471608, 0.017822003, -0.0141623924, -0.0257263631, 0.014202063, 0.0108499, -0.0144202514, 0.0248932801, -0.00718037272, -0.0164335333, 0.0205691885, -0.00696218433, 0.0557371452, -0.0259643868, 0.0112664411, -0.0119606759, 0.0164236147, -0.0212832596, 0.00269016041, 0.0282256082, 0.0382820964, 0.039730072, 0.0377267078, -0.00557867344, 0.00466377102, 0.0121193584, 0.0144202514, 0.0733508766, -0.00568776764, 0.0019909665, 0.0128135933, -0.0114747118, -0.0296140779, 0.0326488763, 0.00434888573, 0.00218560034, -0.00460674474, -0.0182782132, -0.00983334146, -0.0349299349, 0.000639687874, 0.00647126138, 0.00238023396, 0.00428690063, -0.0129425228, 0.003823251, 0.0162351802, 0.0147276977, -0.0282256082, 0.00453236233, 0.00329017756, -0.0206882, 0.0160169918, -0.011068088, 0.0180401895, -0.00703656673, 0.0104730297, 0.000642787141, 0.0138251921, -0.00636216719, 0.0470096208, -0.0207477063, 0.0252899863, 0.015610368, -0.0236833282, 0.00390755106, 0.00628778478, -0.0323315114, 0.0072993841, 0.0184765663, 0.0361993909, -0.0229494236, 0.0305265021, -0.00156326825, 0.0024620546, -0.0291578658, 0.0162946861, 0.0181195308, -0.0240800343, 0.0120896054, -0.0237031635, 0.0242188815, -0.0349100977, -0.0182682965, 0.0113457823, -0.0127144167, 0.0159178153, -0.0440343283, 0.0380044021, -0.0319149718, 0.00703160791, 0.0353464745, -0.02380234, 0.00697210198, 0.0133987339, 0.0198848713, 0.0169294141, 0.0311612301, 0.0220766701, -0.00840024278, -0.0218188111, -0.00818205439, -0.00682829646, 0.00736384885, 0.0146979447, 0.0211245771, -0.00790931936, 0.0331050865, 0.00653572613, -0.0112466058, -0.00418276526, -0.0118416641, 0.0410590358, 0.00778534869, -0.00885645393, 0.00136119628, -0.0162351802, 0.0120995231, 0.0216601305, 0.0191013776, -0.0217989758, 0.000270875578, -0.0235048104, -0.0100267362, -0.00289099268, -0.00652084965, 0.0196865182, 0.00169839617, 2.76996634e-05, -0.0080084959, -0.00212361501, 0.0119507583, -0.0157194622, 0.024119705, 0.00854900759, 0.00119693542, -0.00861843, -0.0100118592, 0.00990276504, 0.0265991148, 0.0304669961, 0.0178616736, -0.0213824362, -0.0414954126, 0.000736384885, 0.0149062155, 0.0213824362, -0.00648117904, 0.0177228265, -0.0410987064, -0.00276206317, -0.0247147623, 0.00126201985, -0.00587124377, -0.0174153782, -0.0650994, -0.0275313742, 0.0078547718, 0.0468112677, -0.0131309573, -0.0124268048, -0.0327083841, 0.0145987682, -0.00836057216, 0.0210055653, -0.029812431, -0.00289843068, -0.01190117, -0.00536544435, -0.0159574859, 0.012793758, -0.0185856614, 0.0179112609, -0.0292570423, 0.0495485365, 0.00159302121, -0.0196369309, -0.000823784096, 0.015263251, -0.038837485, -0.067558974, 0.00207278715, 0.0299909487, -0.019061707, -0.0264801029, 0.0179013442, 0.0146681918, -0.0157293789, 0.018744342, -0.0180302728, 0.0170087554, 0.00389019493, -0.0182286259, -0.0181592014, -0.0287809968, -0.0154715208, 0.00084114, -0.0111275939, -0.0315182656, 0.00719029037, -0.0255676806, -0.0111275939, -0.0647027, -0.00286867796, -0.0645836815, -0.0104333591, -0.0265396088, -0.00134508021, 0.030328149, 0.0275512096, 0.0118416641, 0.0203311648, -0.00963994768, -0.0198253654, -0.0214419421, 0.0149062155, 0.00438359752, -0.0124565577, 0.0128730992, 0.0121987, 0.00355299516, 0.0147376154, -0.0168401562, -0.00502576493, -0.010750724, -0.00119569572, 0.00410342449, -0.0221163407, -0.0141623924, -0.0338191576, 0.00615885574, 0.000132803427, -0.0300306194, 0.00442574779, -0.0354258157, -0.0269561503, -0.0156500395, -0.0225923881, -0.00460178591, -0.00506543554, 0.0361597203, -0.0201724824, -0.0153723443, 0.0531982295, 0.00776551338, -0.0189129431, -0.00290586893, -0.030645512, 0.0179509316, 0.0135574164, -0.0135474987, 0.0302686431, 0.0144698396, 0.000857256178, -0.0105920415, -0.0115243, 0.00465137418, 0.00355547457, 0.0147673683, -0.0198551193, -0.0268569738, -0.0394523777, -0.0249924567, -0.0138946157, -0.00978871249, 0.0219378229, -0.0118218288, 0.00254387502, -0.0179509316, 0.0302488077, -0.0120400172, -0.0126549108, -0.00138970953, 0.00351332454, 0.0294157248, 0.0247147623, 0.0178616736, 0.00424723, 0.00477286521, -0.00612414395, 0.0321529955, 0.00353563926, 0.0285231378, 0.0511750318, 0.0333232768, 0.0337596536, -0.025210645, -0.01816912, -0.00835561287, -0.0258453749, -0.0218981523, -0.0232667867, -0.00614397926, -0.00953581277, 0.0138351098, 0.00172443, 0.0316372775, 0.00944655389, 0.00497121783, -0.010720971, 0.0205890238, 0.00146657124, 0.0137855224, 0.00328026, 0.00776055455, -0.00602992624, 0.0143309925, -0.0286223143, -0.0485567749, 0.0101755, 0.00517205, -0.0177624971, -0.0140929688, -0.0103441, -0.000864074507, 0.00996227097, -0.022037, 0.0190815423, -0.0023876722, -0.024635423, 0.00403152127, 0.0249329507, 0.0156004503, 0.020470012, -0.0253098216, -0.00854404829, -0.0188831892, 0.00629274361, 0.0106317122, -0.000574913283, 0.016532708, 0.0252304804, -0.00535056787, 0.0137359342, -0.00494146487, -0.0110185, -0.0453831293, 0.0199146252, -0.0193889905, -0.0222155172, -0.00448277406, -0.0189030245, 0.00592083205, 0.00237899437, -0.000346187677, -0.00504560024, -0.00648613786, -0.0213824362, 0.0136764282, -0.00343398354, -0.00129921106, 0.00286371913, -0.00451004738, 0.00371663622, -0.00214469014, 0.00905976538, -0.0216799639, -0.00722996099, -0.0095903594, -0.00165748585, 0.0120499348, 0.00823164266, 0.00394474203, -0.0150847333, 0.00407615071, 0.0217394698, -0.0194088258, 0.0165624619, 0.0059852968, 0.0281065963, -0.00162277417, -0.0188831892, -0.0105722062, 0.0199245419, 0.00382077158, -0.0130020287, -0.0170583446, -0.0223543644, 0.0160368271, -0.0129722757, -0.0155012738, 0.00207774597, 0.00324306893, -0.00364473322, 0.00533569138, 0.00723987864, -0.00570760295, 0.00464889454, 0.0298322663, 0.00600017328, 0.0142913219, -0.00432905043, -0.0112466058, -0.0128830168, -0.0122681232, 0.00283396617, -0.0114747118, 0.00559850875, -0.0151938275, 0.00648117904, -0.0126350755, -0.0210650712, -0.0156698748, -0.0179509316, -0.00475798873, 0.0102250883, -0.0211642478, -0.0131408749, 0.0343348756, 0.0103738531, 0.0436772928, 0.00648613786, -0.0328075588, -0.00686796708, 0.00902505405, -0.0290190205, -0.000981846475, -0.00720516685, 0.0424078368, -0.002195518, 0.0185063202, -0.00526130898, -0.027828902, -0.0369531326, 0.0079837013, 0.00983830076, -0.00718037272, 0.00109589938, -0.0255478453, -0.0429632254, 0.0332241, 0.00508279121, 0.00376622449, -0.0432012491, 0.00623819651, -0.00608943217, 0.0111771822, 0.0100564891, 0.0112168528, -0.0213626, 0.0109391585, -0.0171079319, 0.0361597203, -0.011068088, -0.00491171191, -0.00918373652, 0.0137260165, 0.00254635443, 0.00840024278, -0.00932754204, -0.0166418031, -0.00821180735, 0.00299512781, -0.0285628084, -0.0194385778, -0.0236436576, -0.0146186035, -0.0110085821, 0.0194286592, -0.00711094914, -0.0155310268, 0.0137756048, 0.0225923881, 0.00328769814, 0.0134284869, 0.0110581703, 0.00969449524, 0.0286818203, -0.0126549108, -0.00613406161, -0.0117722405, -0.00369928032, -0.00557867344, -0.0144500043, -0.000317054597, 0.0329067335, -0.00517700892, -0.0179906022, -0.0281859376, -0.00206782832, -0.0256470218, 0.0142714866, 0.004391036, 0.0231279414, 0.00953085348, -0.00256866915, -0.0118515817, 0.0216601305, 0.0244767405, 0.00855396595, -0.0099226, -0.00116904196, 0.0169988386, 0.00037408105, 0.00639687898, -0.00878703, -0.0304273255, 0.0228700824, -0.0153128393, 0.00430921512, 0.0273330212, -0.0137855224, -0.00459434744, -0.0261825733, -0.00269511924, 0.00766137801, -0.0171674378, -0.017306285, 0.00278685731, -0.00470592082, 0.00926307775, 0.0106019592, -0.00495634135, 0.00610430865, -0.000193548971, -0.02834462, 0.0105722062, -0.000466439087, -0.00778039, 0.0173459556, -0.0256668571, 0.0319744758, -0.0273330212, -0.0154814385, -0.023861846, -0.00908456, 0.0177228265, -0.00920853, 0.00272239256, 0.040940024, -0.0293958895, -0.0445897169, 0.0134879928, -0.0222155172, 0.0110284174, -0.0267974678, -0.00233188551, -0.0112862764, 0.0114647942, -0.0290388558, 0.00545470277, 0.000888868643, 0.00325050717, 0.0137756048, 0.0213824362, -0.0119110877, 0.0155310268, -0.0262420792, -0.00544974394, -0.0366754383, 0.0166517198, -0.021501448, -0.00694730785, -0.00797378365, 0.0213626, 0.00719029037, -0.00799857825, -0.0242783874, 0.03742918, -0.00910935365, -0.00475303, 0.0237825047, 0.0158880614, 0.0170880966, -0.0261429045, -0.00264305156, -0.013597087, 0.022136176, -0.015838474, 0.0094862245, -0.0242982227, -0.00504560024, 0.0373300053, 0.0178914256, -0.0030471955, -0.0161756743, 0.0293165483, 0.0522064678, 0.0148268742, -0.0233064573, -0.00147524918, 0.0124069694, 0.0177228265, 0.017048426, -0.020727871, -0.0241395403, 0.00579686137, 0.000652704795, -0.0153425913, -0.0129326051, 0.00282404851, 0.0188236833, -0.00766137801, -0.00186327694, 0.0163046028, 0.00507287355, 0.0120796878, 0.0163145214, 0.0129326051, 0.0225923881, 0.0281462669, -0.0106118768, -0.0209063888, -0.0506196432, 0.00663490221, -0.0060596792, 0.022909753, -0.0501435958, -0.0406623296, -0.0217791405, -9.20481107e-05, 0.0284041259, 0.0257461984, -0.00212981366, 0.000551978766, 0.0111375116, 0.00117833982, -0.0358621925, 0.00175666227, -0.015610368, 0.0310223829, -0.00943663623, -0.00344390119, 0.0208468828, 0.00160293886, 0.0167707317, 0.0217791405, 0.0202716589, -0.00238891202, -0.0182782132, -0.0139739569, -0.0365960971, 0.0232271161, -0.00775559573, -0.00786468945, -0.00474311225, 0.024060199, -0.00824156, -0.00224510604, -0.0124268048, -0.00400176831, 0.0276900548, 0.009754, -0.00870768912, -0.00795394834, -0.0206286944, 0.00823164266, -0.0134384045, 0.0163244382, -0.0237825047, -0.00752749, 0.0101953354, 0.0260040574, 0.0164236147, 0.00222403114, 0.0342357, 0.00775559573, -0.0262817498, -0.0240998697, -0.00109465967, 0.039016, 0.012764005, -0.000339059363, 0.0117722405, -0.0170880966, -0.039670568, 0.0312009, -0.0213626, 0.0023492414, -0.0258850455, -0.0268173032, 0.0315777697, -0.00941680092, 0.0169294141, -0.0288008321, 0.001703355, 0.00883661862, 0.016155839, 0.0133888163, -0.012476393, 0.0166616384, -0.0233064573, -0.00360506284, 0.0024620546, -0.0225527175, 0.00407119188, 0.0203906707, 0.0529205352, -0.00255131326, -0.0229692589, -0.0198749546, 0.00697210198, -0.0175244734, -0.0282851141, 0.0177426618, 0.00365960971, 0.038837485, 0.0225527175, 0.0176831558, -0.0232667867, 0.0235246457, -0.00777543103, 0.00593570853, 0.00274222787, -0.0170285907, -0.0264404323, 0.0423284955, -0.0112168528, 0.0125755696, 0.00290586893, 0.0230486, 0.0267577972, 0.0404441431, -0.0114152059, 0.0080927955, 0.00793907233, -0.0191509668, 0.00237775454, 0.029237207, -0.0109589938, 0.0132995574, -0.0220766701, 0.0142913219, 0.0145888506, 0.0361200497, -0.035187792, 0.0191311315, -0.0132400515, 0.015293004, -0.00725971395, 0.00441335049, -0.0191509668, 0.0170285907, 0.0347117446, 0.00448277406, -0.01417231, 0.0109887468, 0.0568479225, 0.0288801733, 0.00687292591, 0.00400672713, -0.00568280881, 0.0145690152, 0.00357283046, -0.0314389244, -0.0230287649, -0.0328472294, -0.00648613786, 0.0135078281, -0.0172269437, 0.000610554824, -0.00729442528, 0.00349596865, 0.0146186035, 0.0187641773, 0.0234849751, -0.0464145616, 0.0077506369, -0.00645142607, 0.0125755696, 0.0103441, -0.00620844355, -0.00181120937, -0.0152830863, 0.00558363227, -0.00781014282, 0.00878207199, 0.0245957524, 0.00253271777, -0.0166913904, 0.0114747118, -0.00182236661, -0.0271743387, -0.000332241, -0.00609439099, -0.00168351969, 0.0104730297, -0.0379845686, -0.0119210053, -0.0109689115, -0.00767625449, -0.00421251822, 0.0352274626, -0.0138053577, 0.00691259606, -0.00859859493, 0.0287016556, -0.0203708354, 0.0222551879, -0.00273231021, -0.0044530211, -0.00541999098, 0.00569768529, 0.0019698916, -0.00414309464, 0.00193765922, 0.00698697846, 0.00389763317, 0.000559417, 0.0160070732, -0.0240998697, -0.00869281311, 0.00811759, -0.00974904187, 0.000973788439, 0.00265544862, 0.00184344163, 0.030962877, -0.00836553052, 0.00509766769, 0.0166517198, -0.00702664908, -0.00277693965, 0.0170583446, 0.0370919816, 0.0124664754, 0.0255676806, 0.000880810549, 0.00199592533, -0.00426458614, -0.00488691777, -0.00515221478, 0.00200832239, -0.013081369, -0.000672540104, -0.00931762438, -0.010780477, 0.00511750299, -0.0297925957, 0.00445054192, 0.0178616736, 0.0138450274, 0.00399185065, -0.00490923272, 0.000580491964, 0.00540015614, -0.0304074902, 0.0120201819, 0.0289793499, 0.0148764625, 0.0115044648, -0.00540511496, 0.0122185349, -0.0311413947, 0.00460922392, 0.00115230598, 0.00812750775, 0.0281462669, 0.0216402952, -0.0155310268, 0.00866306, -0.0127540873, 0.0121391937, -0.0203708354, 0.00318356301, 0.0208072122, 0.0099374773, 0.0201526489, -0.0110879233, 0.0158087201, 0.0113557, -0.0174451321, -0.0222551879, -0.0209262241, -0.0205691885, 0.00563817937, -0.0206485298, -0.00825147796, -0.00966970064, 0.0245957524, 0.0101259118, 0.0272140093, 0.00552412635, 0.0155012738, -0.01589798, -0.0222551879, -0.0321529955, -0.0125755696, 0.02380234, 0.0206286944, -0.0273528565, 0.0138152754, -0.0190914609, -0.00160789769, -0.00226494134, 0.00929283071, -0.0237031635, 0.0312405713, 0.0048497268, 0.0114052882, -0.00747294305, 0.00528610311, 0.0172170252, 0.00609935, -0.00989284739, -0.00451748585, -0.00949118286, -0.0107408063, 0.0144500043, -0.00222155172, 0.0109094055, -0.0242387168, -0.00505799707, 0.0129028521, 0.00100044208, -0.0120400172, 0.00256618974, -0.000465509307, 0.0143508278, 0.00458938861, -0.00910439529, 0.0217394698, 0.00534560904, -0.0159971565, 0.0308637, -0.0133491457, 0.000385238382, 0.0083060246, 0.0367746167, 0.0150648979, 0.0106317122, 0.00342158647, -0.0120201819, -0.00210006069, -0.00389019493, 0.008221725, -0.00927795377, 0.0207675416, -0.00238271337, 0.00918373652, 0.00400672713, -0.00554396166, -0.0127044991, -0.000358584744, -0.0085638836, 0.00880686566, -0.00138846983, 0.0159178153, -0.00239263102, 0.00500592962, 0.00614893809, 0.0181492846, 0.024377564, -0.0208468828, 0.0172071084, 0.0451847762, 0.0112466058, -0.00658035511, 0.00722996099, -0.00349348923, 0.010750724, 0.0262024086, 0.0149558038, 0.0163740274, -0.00381581276, -0.0100862412, 0.00333728641, 0.0101655824, 0.00649605552, -0.0139739569, 0.0164831206, -0.010522618, 0.00326042483, -0.028661985, -0.0135276634, 0.0159574859, -0.00290586893, -0.00525635, -0.00322323362, 0.000184561111, 0.000354865624, 0.0123375459, 0.0231874455, -0.0119805112, -0.0330455825, -0.00777047221, -0.0168599915, 0.0172467791, -0.0092482008, -0.0157293789, 0.0034686951, -0.00282404851, -0.0170087554, -0.0148367919, -0.0242585521, -0.00778039, 0.0117821582, 0.00784981344, -0.0152830863, 0.00409846567, 0.0141227217, 0.0017430255, 0.011643311, 0.00544478511, -0.00483980915, -0.00805312488, 0.00218931935, -0.0200038832, 0.0147971213, -0.01362684, -0.00562826172, -0.0122681232, -0.00860851258, -0.0090151364, 0.000884529669, -0.0217196345, -0.00286619854, -0.00606959686, -0.00381581276, -0.00263561332, 0.0214419421, 0.0232667867, 0.00395465968, -0.0519287735, -0.00751261367, 0.0200038832, 0.0323315114, -0.00169839617, -0.0129524404, -0.0045075682, -0.0120598525, -0.00585636729, 0.0245957524, -0.0103441, -0.0064018378, -0.00163641083, -0.00568280881, 0.00154467265, 0.00478278287, 0.0418524481, 0.0344538875, 0.0158682261, 0.0167608149, 0.0108895702, 0.0132102985, 0.00198352826, -0.0122879585, -0.0103143472, -0.00611918513, 0.0195377544, 0.0305265021, 0.0182881318, -0.00107358478, 0.00630266126, -0.0287413262, 0.0115243, -0.0153425913, -0.00294058071, 0.00190542697, 0.0129425228, -0.0342158638, 0.00475303, -0.016731061, -0.0170583446, 0.0121391937, 0.0134780752, -0.0251908097, -0.00131284783, 0.000858495885, -0.0339778401, 0.00985317677, -0.0137359342, 0.0044951709, -0.013944204, 0.0334819593, 0.000753120927, 0.00327530107, -0.0172368605, 0.0245957524, 0.0127044991, -0.00743823126, -0.0128334286, 0.00136615511, 0.0100763245, -0.00171575206, -0.00738864299, -0.00383812725, -0.0121987, 0.00651589083, -0.0191212129, 0.000621402229, 0.00355795398, -0.00517700892, -0.0162550155, 0.0164533667, 0.00307694846, -0.00662498455, -0.00600513211, 0.0163046028, 0.00962011237, 0.0149359684, 0.00682333764, -0.00778039, -0.00930770673, -0.0117623229, -0.0036348158, 0.0155211091, 0.0290388558, -0.00278933672, -8.56655697e-06, -0.00148020801, -0.0144698396, -0.0179906022, 0.0184666496, 0.0109986644, -0.00391498907, -0.00463897688, -0.0139045333, -0.0102845943, 0.0177426618, -0.0155409444, -0.00817213673, 0.0119606759, -0.00723987864, 0.0244172346, -0.016096333, -0.0174352136, 0.00509766769, -0.00617869059, 0.0165525433, 0.0135474987, -0.00153599482, 0.00653076731, 0.0174649674, 0.00482989149, 0.00952093583, 0.00483485032, 0.00397945382, -0.016155839, 0.00684813177, 0.00319100125, 0.0329464041, -0.00523155602, -0.000389577355, -0.0317562893, -0.00104817073, 0.00389515376, -0.0064563849, -0.0069572255, 0.000388957502, 0.0280272551, -0.0356638394, -0.00408358919, 0.00546462042, 0.000200057431, 0.0220766701, -0.0162153449, 0.0099226, 0.00986309443, 0.013081369, -0.00335216289, 0.0279082432, 0.00659523159, -0.0344142169, 0.0246155877, 0.00429929746, -0.0142714866, 0.0171971899, -0.00145045505, 0.0290190205, 0.000607145601, -0.0102746766, 0.00625803182, 0.0137656871, -0.00153475511, -0.00638696132, -0.0105821239, 0.018972449, 0.000836181163, 0.00776055455, 0.0292173717, -0.0296140779, 0.00132152578, 0.0193096492, -0.0139739569, -0.0130119463, 0.0202220716, 0.0108994879, 0.00301248371, 0.00374143035, 0.000582351524, 0.00255131326, -0.0079837013, 0.00870768912, 0.00664482, 0.0111573469, -0.0168500729, 0.0259247161, 0.00600017328, 0.00322075421, -0.00961515401, 0.00253147795, -0.004391036, -0.0162550155, -0.0235643163, 0.00278685731, -0.00218931935, -0.017941013, 0.00527618546, -0.0372308269, 0.00567785, 0.00436872104, 0.019319566, -0.0249726214, -0.00105622888, -0.0145590985, -0.00296785426, -0.00427946262, 0.00404143892, -0.00341662765, -0.00596546149, -0.0259643868, 0.0114449589, 0.00531585608, 0.0168104023, -0.00934737734, -0.0118515817, 0.012159029, -0.0247345977, 0.00737376651, 0.0122383703, -0.0341960303, -0.00293314247, 0.00693243137, 0.00793907233, 0.0197162721, -0.00305463374, -0.00360506284, 0.000534003, -0.00515717361, -0.00847462472, -0.00461666239, -0.035505157, -0.013884698, 0.0021372519, 0.000251350226, 0.0191013776, 0.0239610225, 0.0227114, -0.0035604334, 0.00260338094, 0.0108895702, 0.0318951346, -0.0294157248, 0.00306951022, 0.00888124853, 0.00401416561, -0.0263015851, -0.0226717293, -0.0101854177, 0.0276107155, -0.00543982629, -0.00953581277, 0.00544478511, 0.0189625304, 0.0160368271, 0.0231081061, 0.00232196786, -0.0184468143, -0.000210904851, 0.0305066667, 0.0211840831, -0.00269759865, 0.00313893356, 0.00819197204, 0.008221725, 0.00127565663, -0.00708119618, -0.000959531812, 0.0239610225, 0.0170980152, 0.00792915467, -0.00221535331, 0.00162277417, 0.0153029216, 0.00417284761, -0.000459310773, 0.0113656176, -0.0153326737, -0.00546957925, -0.00677374937, -0.0133491457, -0.0218386464, 0.000190449719, -0.00222651055, -0.000681837846, 0.014202063, 0.010720971, 0.00216080621, 0.00347365392, -0.003823251, -0.000445983955, 0.0205096826, -0.00788452476, 0.0318157934, -0.00290586893, 0.0110780057, 0.00301992195, 0.00869281311, 0.00678862585, 0.0039397832, 0.00346125686, 0.0034885304, -0.0175244734, -0.0220568348, -0.0203113295, -0.0277693961, -0.00725971395, 0.0126251578, -0.00190542697, 0.00139342865, -0.0164533667, -0.0103936885, -0.00596050266, -0.0154814385, -0.0302289724, 0.0321331583, 0.0255676806, 0.00452740351, -0.00426458614, -0.0117623229, -0.0177922491, 0.0313397497, -0.00182236661, 0.0300504547, -0.0127441697, -0.00241866498, 0.00836553052, 0.0232072808, -0.0131904632, -0.00427202415, 0.0106019592, 6.80675657e-05, -0.00282652793, 0.00769609, -0.0151244039, 0.00941184163, -0.00525635, 0.0134780752, 0.00578198535, 0.00147400948, -0.00765641965, 0.0067241611, -0.0129524404, -0.0103143472, 0.0112862764, 0.00495386217, -0.00740351947, -0.0142814042, -0.00677870819, 0.00791923702, 0.0184964016, 0.0090151364, -0.0119408406, -0.0160665791, -0.00424970966, -0.00723987864, 0.0128433462, 0.00960027706, -0.0121491114, 0.0133888163, 0.00878703, -0.00655556098, 0.00844487175, 0.0207675416, 0.0083308192, 0.0182087906, -4.80773197e-05, -0.0144896749, -0.000860355445, 0.0234254692, 0.0108102299, -0.020351, 0.0132896397, -0.0120102642, 0.00197113119, 0.00795890763, 0.00180749025, -0.0125755696, -0.0116234757, -0.000447223661, 0.0317959599, 0.00257114857, -0.00155583, 0.00383564783, -0.00580182, -0.00362737756, 0.0185261555, 0.034672074, -0.00989284739, 0.00595058501, -0.00692747254, -0.0149558038, 0.00136987423, -0.00818205439, -0.00624811416, 0.008221725, 0.00606463803, 0.000159921969, -0.00204799301, -0.0175740607, 0.00214469014, 0.017941013, -0.0140433805, 0.00287363678, -0.0129028521, 0.00806304254, 0.0179608483, -0.0292570423, -0.0382622629, 0.009754, -0.015263251, -0.0269759856, 0.000347117457, -0.0157293789, -0.00249800598, -0.0121788643, -0.00826139562, -0.000702293, 0.00550925, 0.00960027706, 0.0215609539, -0.000516337226, -0.0128730992, -0.0153921796, -0.00308686588, -0.021243589, 0.0050208061, 0.0047331946, -0.0142615689, 0.0154120149, -0.0189823657, -0.0127739226, -0.0230684355, 0.0170285907, -0.00379597745, 0.000547019939, -0.0172071084, 0.00613406161, -0.0308438651, 0.0119705936, 0.0134086516, 0.0042943391, -0.0180699434, 0.0339381695, 0.0228105765, 0.0050753532, 0.00521172071, -0.0173856262, -0.0167806502, -0.0354853235, 0.0129821934, -0.00291578658, -0.00639687898, 0.0118813347, 0.0112168528, -0.0234254692, -0.0353861451, 0.00106986566, 0.019230308, -0.00952589512, -0.015640121, -0.00318108359, 0.0163641088, 0.00658035511, 0.0198452, 0.00582661433, 0.00540015614, 0.0132102985, -0.0116631463, 0.00711094914, 0.00647126138, -0.000981846475, -0.00121986994, -0.00515717361, -0.0062183612, 0.0133888163, -0.00607455568, 0.0031463718, -0.00865810085, -0.0145987682, 0.0317959599, 0.0148268742, -0.0180104375, 4.93218658e-06, 0.00214964873, -0.0168500729, 0.002687681, -0.0270354915, 0.028860338, -4.20095421e-06, -0.00769113097, -0.00789940171, 0.00772584276, 0.00323811, -0.00955564808, -0.00679358467, -0.0318951346, -0.00682829646, -0.00571256177, -0.0149260508, 0.0187245067, -0.00481997384, -0.0129127698, 0.0262024086, -0.0142218983, 0.00517700892, -0.00653572613, -0.0113457823, 0.00144425663, -0.0161657557, -0.0313794166, 0.00431417394, 0.0198848713, -0.0292173717, 0.000962631078, 0.00490675308, -0.0142913219, -0.0354456529, 0.00247817067, -0.0094862245, -0.005534044, -0.0120400172, -0.00116036413, -0.00539023848, 0.00597042032, 0.00943167694, -0.0153723443, 0.0115937227, -0.00688284356, -0.00322571304, -0.0088862069, -0.00917381886, -0.0381630845, -1.4876463e-05, 0.0120995231, -0.00972424727, -0.00602000859, -0.0152037451, 0.0114945471, -0.00772584276, 0.0160368271, 0.00292818365, 0.0141822277, -0.00757707842, 0.00621340238, 0.0042273947, -0.00436128303, 0.00680846116, 0.0120201819, -0.0194782484, 0.00433153, 0.00175914168, -0.00190294755, -0.0205295179, -0.00761674903, -0.00205667084, 0.00145045505, -0.00106118771, 0.0111375116, -0.0145194279, 0.00171823148, -0.0239610225, 0.00915894192, 0.0140433805, -0.00773080159, 0.00968953595, -0.021501448, -0.0118515817, -0.00846470706, 0.00602000859, 0.0075919549, -0.0131408749, 0.00210501952, 0.0069076377, -0.0128235109, 0.00422491552, -0.000828742923, 0.00237651495, 0.017048426, -0.000119786513, 0.0201923177, -0.0210849065, -0.00262321625, 0.0293165483, -0.00946638919, 0.0166616384, 0.00893579517, 0.0113457823, -0.0113953706, 0.00601009093, -0.0014021066, -0.00852917228, -0.0111573469, 0.00955068879, -0.00174922403, 0.0194187425, 0.00249180757, 0.0219774935, -0.0121491114, 0.00153971394, -0.0191807188, 0.000482865173, 0.00963003, -0.0250321273, 0.00167608145, 0.0299314428, -0.0056629735, -0.0104234414, -0.0146285212, 0.0158483908, -0.00438855635, -0.000921720813, 0.00893579517, -0.0265197735, -0.0114449589, -0.0255478453, 0.00241370616, 0.00656547863, 0.0203311648, 0.00622332, 0.0234849751, -0.00441335049, 0.00921348948, -0.00186947547, -0.00275958376, -0.00565305585, 0.000211369741, -0.0411780477, 0.00523155602, -0.0164930373, -0.0101259118, -0.0284437966, 0.0101655824, 0.00441335049, -0.019865036, -0.0154219326, 0.011038335, 0.00478774169, -0.00925316, 0.0248932801, -0.00319596, -0.0214419421, -0.00533073256, 0.0180501081, -0.00238519278, 0.00154095353, 0.0161756743, -0.0182682965, 0.0271148328, -0.0123970518, 0.000332241, -0.0375085212, 0.0164533667, -0.0386788025, 0.00351580395, -0.00943167694, 0.00426210649, -0.000657043769, -0.0111375116, -0.00491171191, 0.00936721265, 0.00267280452, 0.00960523635, -0.0159078967, -0.00373647152, -0.0236833282, 0.0075919549, -0.00822668336, 0.0149657214, 9.63095954e-05, -0.0158583093, 0.0064563849, -0.0124863107, 0.0159574859, 0.0018942696, -0.00541503262, 0.0227312353, -0.0182782132, 0.00136987423, -0.0284041259, -0.000861595152, 0.00684813177, 0.0376672037, -0.00933746, -0.00841511879, 0.0133193927, 0.0130912866, 0.0091192713, 0.00242610322, -0.000220977454, -0.00567289116, 0.00361993932, -0.00572247943, 0.0307248533, 0.00028761162, 0.0291975364, 0.00539519731, -0.00972920656, 0.00875727739, 0.0196468476, 0.018972449, 0.0146781094, -0.000763038581, -0.00850437768, 0.00132276549, -0.0186054967, -0.0185261555, -0.0222750232, -0.00425466849, 0.0104432767, -0.00841016, 0.0157591328, 0.010463112, -0.00570264412, 0.0219774935, 0.00755228428, 0.0141623924, -0.0130416993, -0.00104569132, -0.00391994789, -0.00495882099, -0.0213030949, 0.0128830168, 0.00118019932, -0.015610368, 0.00844983105, 0.0325893722, 0.00747294305, -0.0106713828, -0.0131210396, -0.0174252968, -0.0104036061, 0.00164384907, 0.00311909826, 0.0119210053, -0.0152037451, 0.00135871687, -0.00569272647, -0.00443070661, -0.0144004161, 0.0156302042, -0.0116234757, -0.00317860418, -0.00676383171, 0.0101507064, -0.000745062833, 0.000898786297, 0.0102548413, -0.0159376506, 0.000130943867, -0.0250717979, 0.000107544431, -0.0129425228, 0.00729442528, -0.00663986104, -0.0101159941, 0.0108697349, 0.0111474292, -0.027452033, 0.000131796158, 0.00662994338, 0.00923828315, -0.00688780239, 0.00863826554, 0.0101556648, 0.00546462042, -0.0141028864, 0.0043240916, -0.0309033711, -0.0130317817, 0.0236833282, 0.00268520159, -0.0223146938, 0.00477286521, -0.0180600248, 0.0111771822, -0.00683325529, 0.0351481214, -0.00932258368, -0.000904365, 0.00359266577, 0.0172864497, 0.00996723, -0.00956060644, -0.0151343215, 0.00515221478, 0.0206088591, 0.0166219678, -0.0100564891, 0.00727459043, -0.00479270052, -0.025012292, -0.0133193927, 0.00120561337, -0.00395465968, -0.00723492, -0.0165227912, -0.0107408063, -0.0058762026, -0.00504312059, -0.0138648627, -0.00317860418, 0.00360258343, -0.00875231903, 0.0146880271, -0.0107408063, -0.0123672988, -0.00929778907, -0.00480261818, -0.00945647154, 0.0134086516, 0.0270354915, 0.017851755, -0.00497369748, -0.00852917228, 0.0122978762, -0.0360605456, -0.00270751631, -0.00981350616, 0.0311215594, 0.0176236499, -0.0400672741, 0.0174848028, -0.00850933697, -0.00702169025, -0.0313000791, -0.0191112962, -0.0113755353, -0.0217989758, -0.00589603791, -0.0118218288, -0.00633737305, -0.00551916752, -0.020122895, -0.00638696132, -0.00541503262, 0.0122879585, 0.00403895974, 0.000376560463, 0.0323116779, -0.0285033025, -0.00819693133, -0.0126152402, 0.00169839617, 0.0156302042, 0.0335017927, -0.00116036413, 0.0065406845, 0.00910935365, 0.00346125686, 0.0137855224, -0.00321579538, -0.0156599563, -0.0125358989, 0.040186286, 0.025785869, 0.00108350231, 0.00122792798, -0.0150946509, 0.0279677492, 0.0123276282, -0.00206410908, -0.0116631463, -0.0115838051, 0.00413565664, -0.00329017756, -0.00772088394, -0.00837049, 0.00568776764, 0.0114747118, -0.0124069694, 0.00624811416, -0.0089308368, -0.000619542669, 0.0071952492, -0.0103936885, -0.0204303414, 0.000349906797, -0.0186451674, -0.00710103149, -0.00424475083, 0.00935233571, -0.0025376766, 0.00776055455, -0.0149359684, -0.0185559075, 0.00790931936, 0.00257858681, 0.00630266126, -0.00716053741, -0.0284636319, -0.010492865, -0.0156797916, 0.0142913219, -0.00402160361, -0.0254685041, -0.00805312488, 0.0270949975, 0.0130615346, -0.036397744, 0.00156450795, -0.00761179, 0.00994739495, 0.0174451321, 0.00334720407, -0.0501435958, -0.0159178153, -0.00656052, 0.00561834406, 0.00533569138, 0.00540511496, 0.00726963161, -0.012734252, -0.00649109669, -0.036536593, -0.012734252, 0.00842503645, 0.0223742, 0.0264999382, -0.0148863802, 0.0165227912, 0.0154219326, -0.0189129431, 0.0168302376, -0.00596546149, 0.0150153097, 0.00419020373, 0.0124268048, -0.00967466, -0.00673407875, -0.00456459448, 0.000971928879, 0.00658035511, -0.0135078281, 0.00744814891, 0.0155607797, 0.00331249228, -0.00294553954, -0.00432657124, 0.00300752488, -0.0142318159, 0.00258602505, 0.00298521016, 0.00368440384, 0.0098035885, 0.00686300825, 0.019865036, -0.0123276282, 0.0294553954, -0.00140954484, 0.022909753, -0.000896926736, 0.0166517198, 0.0057175206, -0.00754732545, -0.0144103337, -0.0256470218, 0.0247345977, -0.00347117451, 0.006510932, 0.00977383554, -0.0206683651, -0.00197237101, -0.00529106194, -0.0132598868, -0.016731061, -0.000433896814, -0.00461418275, 0.0159078967, 0.00991764199, -0.00933250133, -0.0187740959, -0.00147276977, 0.00784485415, 0.00280173379, -0.0120598525, 0.00193517981, 0.00616877293, -0.000856016472, 0.0223543644, -0.00543486746, -0.0033893541, 0.0102945119, -0.00514725596, -0.0321331583, -0.0067439964, -0.00266040745, -0.00149384479, 0.0277892314, -0.0118813347, 0.0122978762, 0.00944655389, -0.00613406161, -0.0216998, -0.00224758545, 0.0229295883, -0.000836801, 0.00675391406, 0.000979987, -0.00610430865, -0.00377366273, 0.0200038832, 0.00646630256, -0.00738368416, -0.0122978762, 0.0020827048, 0.00950606, -0.0165426265, 0.00674895523, 0.0112466058, -0.0189922843, -0.000139544325, -0.00900521874, 0.00846966635, 0.0181492846, 0.00570760295, -0.00838040747, -0.0223742, -0.00333232759, -0.0106515475, -0.00985813607, 0.0220568348, -0.0282851141, -0.00483980915, 0.0133491457, 0.00865314249, 0.0190815423, 0.00544974394, 0.00481997384, -0.0102250883, -0.0142318159, -0.0174848028, -0.00357035105, -0.00621340238, -0.0110879233, -0.0287214909, 0.00264553097, 0.00453236233, 0.00899530109, 0.0277693961, 0.0166913904, -0.0123077938, -0.00417036843, -0.00764154317, 0.0141822277, -0.01926006, 0.00522659719, 0.0107606417, 0.0106713828, -0.0302488077, -0.00978375319, 0.0121193584, -0.0222551879, -0.0359216966, 0.0156599563, -0.0034091894, -0.00336951879, -0.00821676664, -0.0151541568, 0.0290983617, -0.0031463718, -0.00760187255, -0.018109614, -0.00358274812, 0.00235296041, 0.00204923283, 0.00769609, 0.00146905065, 0.0064018378, 0.000401664496, -0.0141822277, -0.00562826172, 0.0128135933, 0.00330505404, -0.0134185692, 0.0035976246, -0.034672074, 0.0343745463, 0.000749401806, 0.00368192443, 0.00792915467, -0.0234453045, -0.00303975726, -0.00227237958, -0.0132995574, 0.0185360722, 0.0194782484, 0.0142417336, -0.00497617666, -0.0190914609, -0.0119408406, -0.0336208045, -0.00449269172, 0.00499601196, -0.00272487197, -0.0105424533, -0.0185955781, -0.00493154721, 0.0168302376, 0.014202063, -0.00554396166, 0.016731061, -0.0122582056, 0.00480261818, 0.0111474292, -0.00370671856, 0.00832586, 0.00873744208, 0.0291777011, -0.0251114685, 0.00756220194, -0.0399284251, -0.0114846295, -0.0173261203, 0.00499601196, -0.00302240136, -0.00499353278, 0.00728450762, -0.00269511924, -0.0132995574, 0.0304669961, 0.0184765663, 0.00657043746, -0.00830106623, -0.0079837013, 0.00275710435, 0.0253891628, -0.0046786475, 0.0100267362, 0.0122383703, -0.00886637159, -0.00286867796, 0.00892587751, -0.0330059119, 0.0114052882, 0.0163046028, -0.0205096826, 0.00796882529, -0.00343646295, -0.0215807892, -0.010463112, 3.1554373e-05, -0.00100602082, -0.0101755, -0.0141028864, 0.00248808833, 0.0086729778, -0.0303876549, -0.014142557, 0.0142417336, 0.00460426509, -0.00471087964, 0.0358621925, -0.00765146082, 0.00247817067, 0.000415921095, -0.00985317677, -0.00057243387, 0.0144400867, 0.0246155877, -0.00131408754, -0.0245164111, -0.00075188122, 0.00450260937, 0.00228725607, -0.00253395736, 0.00550925, -0.00475303, -0.00248932815, 0.0206286944, 0.00820189, -0.00256123091, 0.00791427772, -0.0282652788, 0.00372407446, -0.00130293018, 0.00141822279, -0.0151144862, 0.0166120492, 0.00639192, 0.00923332479, 0.00321083656, 0.000997962663, -0.0139541216, -0.013081369, -0.0154120149, 0.0044654184, 0.0200633891, 0.00842999574, -0.000591649325, 0.00901017711, 0.0153624266, -0.0216402952, 0.00733409589, 0.00099920237, 0.00057801255, 0.0159078967, -0.00184840045, 0.00283148675, -0.0102746766, 0.00470344163, 0.00205543125, 0.00678366702, 0.0185360722, -0.0205890238, 0.0246750917, 0.00565305585, 0.0191509668, -0.0241395403, 0.0143309925, -0.00365217146, 0.00319596, 0.0186848361, -0.0233461279, -0.00133392285, 0.0158087201, 0.00781014282, 0.0375283547, 0.00300752488, 0.0281859376, 0.000513547915, 0.00711590797, 0.00454723882, -0.00408358919, 0.0190121196, -0.0112466058, 0.014430169, 0.0293165483, -0.016185591, 0.0122185349, 0.0128433462, -0.0100217769, -0.00463153888, -0.000490923238, -0.00972424727, 0.0191013776, 0.000869033334, -0.0156797916, -0.00697210198, 0.0129821934, -0.0263412558, 0.0148467096, 0.0136070047, 0.00662002573, -0.00052439532, 0.0292768776, 0.0258255396, -0.00459186826, -0.00827627163, 0.00939696562, -0.0401466154, 0.00540511496, 0.0123871341, -0.00430921512, -0.0110482527, 0.00774071924, -0.00531089725, 0.0320339836, -0.0186451674, -0.0138351098, 0.013309475, 0.0021372519, 0.0270156562, -0.00444310345, -0.00228353706, 0.00534560904, -0.0105424533, 0.0116928993, -0.00319348066, -0.00754236663, -0.00661010807, 0.00539519731, 0.00327530107, 0.00371167739, 0.0194584131, -0.0198154487, -0.0020827048, 0.0103936885, -0.0146086859, -0.00585636729, -0.0179013442, -0.0255478453, 0.0457798354, -0.00604976155, -0.0106317122, 0.00583157316, 0.00500097079, 0.0122284526, 0.00759691373, 0.00144177722, -0.00027536953, -0.020727871, 0.0212832596, -0.0196865182, -0.000332241, 0.0132102985, 0.00641671428, 0.0185063202, -0.00648613786, 0.012506146, -0.00862338953, 0.00864322484, -0.00610926747, -0.014747533, -0.00650597317, -0.0264801029, 0.00398441264, -0.0135177458, -0.0459781885, 0.0125656519, 0.00717541389, -0.0107408063, -0.00166864321, -0.026420597, -0.0153921796, -0.00304471608, 0.00897546578, 0.00973912422, 0.00763658434, 0.0430822372, 0.0078547718, 0.00596546149, 0.0127044991, -0.01589798, 0.0263015851, -0.0306653474, -0.0069076377, -0.0155607797, 0.0295149013, 0.00215088855, -0.00625803182, 0.0115143824, -0.000900645857, 0.00409598602, 0.0124863107, 0.00889612455, -0.007646502, -0.000145897808, 0.0173162017]
|
22 Oct, 2018
|
Python calendar module | itermonthdays2() method
22 Oct, 2018
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions.
itermonthdays2() method is used to get an iterator for the month in the year similar to itermonthdates(). Days returned will simply be day of the month numbers. For the days outside of the specified month, the day number is 0.
Syntax: itermonthdays2(year, month)
Parameter:
year: year of the calendar
month: month of the calendar
Returns: an iterator for the month.
Code #1: Working example of itermonthdays2() method
# Python program to demonstrate working
# of itermonthdates() method
# importing calendar module
import calendar
obj = calendar.Calendar()
# iterating with itermonthdays2
for day in obj.itermonthdays2(2018, 9):
print(day)
Output:
The starting day number in calendar is : 0
(0, 0)
(0, 1)
(0, 2)
(0, 3)
(0, 4)
(1, 5)
(2, 6)
(3, 0)
.
.
(29, 5)
(30, 6)
Code #2 : Working example of itermonthdays2() method with firstweekday=2
# Python program to demonstrate working
# of itermonthdates() method
# importing calendar module
import calendar
obj = calendar.Calendar(firstweekday = 2)
# iterating with parameter itermonthdays2
for day in obj.itermonthdays2(2018, 9):
print(day)
Output:
(0, 2)
(0, 3)
(0, 4)
(1, 5)
(2, 6)
(3, 0)
(4, 1)
.
.
(27, 3)
(28, 4)
(29, 5)
(30, 6)
(0, 0)
(0, 1)
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module | itermonthdays2() method
|
https://www.geeksforgeeks.org/python-calendar-module-itermonthdays2-method/?ref=lbp
|
Pandas
|
Python calendar module | itermonthdays2() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python calendar module | itermonthdays2() method, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.012543763, 0.00341475219, -0.0124664688, 0.032596115, -0.0210792627, -0.00865696277, 0.00346444151, 0.0438148342, -0.0193898305, 0.0166182779, 0.00742577482, 0.00788402, 0.00501860911, 0.0179874916, -0.0243808348, -0.00688471505, -0.0248446, 0.0344290957, 0.0346057676, -0.00771838939, -0.0108708926, 0.00136921357, -0.0193567034, 0.0231220424, -0.00526981568, -0.00494131492, 0.0272738505, -0.0292172506, 0.0117929038, 0.0286430642, 0.0330598801, 0.00750859035, 0.0227686968, -0.00473703723, -0.0580369867, -0.025683796, 0.0125216786, 0.038360063, -0.00502137, -0.0130406544, -0.00558175379, 0.0101421177, 0.0271634292, 0.0138688078, -0.0359308124, 0.0311827343, -0.00638230192, -0.0193235781, -0.0224705618, -0.0315139964, 0.0225588977, -0.0202290267, 0.022382224, 0.00604551937, 0.00705586653, -0.000311765238, 0.00347272307, 0.0176451877, -0.0298356041, -0.0164195206, 0.0546802059, -0.0205271617, -0.0163974371, -0.0278038681, 0.0280026253, 0.0157901235, -0.0215540715, 0.0402151272, 0.0164747313, -0.0239170678, 0.0260592252, -0.00331813446, -0.00588540966, 0.00508486154, -0.00804412924, -0.048408322, -0.00787297823, -0.0057639475, -0.0218190812, 0.000546581228, -0.0227245279, -0.00738712773, 0.00593509898, -0.0122014591, 0.017678313, -0.0101697231, 0.0173139255, -0.0171482954, 0.0309177246, 0.0182304159, 0.036747925, 0.051544264, -0.0186389722, -0.0105617158, -0.0401709601, 0.00577498926, 0.0412972458, 0.054503534, -0.0358645618, -0.00650928542, -0.0015638296, -0.0122345854, -0.0067356471, -0.00787849911, 0.0078067258, 0.018650014, 0.019665882, -0.0245354231, 0.0224153511, -0.0219405424, 0.0422468632, 0.0103519168, -0.0137583874, 0.00363283278, -0.021487819, 0.00548789604, -0.0185727198, -0.00384539203, -0.0035141306, -0.0111248596, 0.0510584153, -0.00903791375, 0.0308956411, 0.0665172786, -0.0258163, -0.0224926453, 0.0113291377, 0.00062456564, -0.00864592101, -0.00251482567, 0.00203587697, -0.035135787, 0.0219295, -0.0659430921, -0.0145092467, 0.0239391532, 0.0019875681, 0.0293055866, -0.0233428832, -0.00128708838, 0.011273928, -0.000319011568, 0.00937469583, -0.00349480705, -0.0055016987, -0.0478783064, -0.0198535956, 0.0233428832, 0.0108819352, 0.0105285896, -0.00457140664, -0.0438810848, -0.0106776571, -0.00425946852, 0.0136590088, -0.0272075981, 0.0175458081, -0.000745338039, 0.0109702712, -0.00637678057, -0.0295705963, -0.00685158884, 0.0236741435, 0.00523116859, 0.0350695327, 0.00189509091, 0.0265009068, -0.00191993546, 0.000602481537, 0.0149840545, -0.0328390412, -0.032176517, -0.0207480025, -0.00522840815, 0.0488500074, 0.0205713287, 0.0296368487, -0.00598478829, 0.00938573759, -0.0291951653, -0.0362841599, -0.0099047143, 0.00787849911, 0.0433510691, 0.0105396314, 0.0405905545, 0.0394863524, 0.0222718045, -0.00569217419, 0.0313373245, 0.0373662785, 0.00459349062, 0.0138135981, 0.0153042739, -0.0181972887, 0.00460453285, 0.0314698257, 0.0308073051, 0.00858518947, -0.0156465769, -0.0491150133, 0.00564248487, -0.0368362628, -0.0272075981, 0.0133167058, 0.0107770357, -0.0175568517, 0.0563144274, 0.00320495339, -0.0104071274, 0.0279584564, -0.0131289912, -0.006166982, -0.00870665256, -0.00320219295, 0.0270088408, -0.0201959, 0.0142552797, 0.0649713874, -0.0152380215, -0.0235416386, 0.0232766308, 0.0027591309, -0.0293055866, 0.00489990739, -0.0536643378, 0.0283118021, 0.00459073, -0.02738427, -0.0592736974, 0.000609727926, -0.0211234316, 0.0114837261, -0.0255292077, 0.069079034, 0.0139902709, 0.0429093838, 0.00887228269, -0.00369080342, 0.00949615799, 0.0510584153, -0.0233207978, -0.0114174746, 0.0157569982, 0.0211013481, 0.0219184589, -0.00234091352, 0.0410984904, -0.0306306314, 0.024667928, 0.0447865315, 0.0168391187, 0.000201172254, 0.000646994798, -0.0436381623, 0.00737608597, 0.0172808, -0.002797778, 0.00478672655, 0.00767422095, 0.0341861695, 0.0236078911, 0.00981637742, 0.000895095756, -0.00645407522, 0.010765994, 0.0309177246, 0.0206154976, -0.0196217131, -0.0360412337, 0.0335015617, -0.00864592101, 0.0335015617, -0.0144761205, 0.0148957185, 0.00928636, -0.016275974, -0.00301447813, 0.0352241211, 0.0198977645, -0.0106886989, -0.00122704718, 0.00605104025, -0.0254408717, 0.0168280769, 0.0163091, -0.0300343614, 0.018859813, -0.0240274891, -0.0278259534, 0.0338549092, -0.0167286973, -0.0208915491, 0.0240274891, 0.0264788233, 0.0230116211, -0.0176562294, 0.00451067509, 0.00247065746, -0.0318894237, -0.018694181, 0.00156244927, 0.0100813871, -0.0287093166, 0.014155901, -0.0306306314, 0.0363504104, -0.00285988953, 0.0128308563, 0.017589977, -0.0243366659, -0.048319988, -0.00251068501, 0.000360936829, 0.0303214546, -0.0436381623, 0.0403034613, -0.0195223354, -0.00502137, 0.0133829582, -0.0110751707, -0.0058191577, 0.0106886989, 0.000424773665, -0.0164305624, -0.0370791852, -0.0127425194, 0.0320661, 0.0139792282, -0.0179433227, -0.044764448, -0.0348266102, 0.0385588184, 0.0111635076, -0.0412530787, -0.0364608318, -0.029371839, -0.0279142894, 0.0422247797, 0.0501308814, 0.0142994476, 0.0349370278, 0.0282455496, 0.0340094976, -0.0488941744, -0.002797778, 0.0149288448, 0.0234533027, -0.00587988878, 0.0107604722, 0.000480328948, -0.00788954087, 0.0149398865, 0.000726014434, 0.0243587513, -0.0158232506, -0.0242704134, -0.00866800547, -0.00413248502, -0.00425394764, -0.0145644573, -0.0116824834, -0.00442509959, 0.00779568357, 0.00349756773, -0.0115941465, 0.0148625923, -0.0390888378, -0.010086908, 0.00500480691, -0.0236741435, 0.00708899274, -0.0130627388, 0.00144650787, -0.00416837167, -0.00379846338, 0.0276051108, 0.0125548048, 0.0246016756, -0.0236299764, -0.0173912197, -0.0143546583, -0.0259708893, -0.00956241, 0.000430294691, 0.00638230192, -0.0118812397, 0.00204553874, 0.000152086912, 0.00131952437, 0.0031939114, 0.0151828118, 0.00167010922, -0.0246016756, 0.0115499785, -0.0181199946, 0.0295705963, -0.0152821895, -0.00441129692, -0.0105672367, -0.0199088063, -0.0172255896, -0.00648720143, -0.0442786, -0.0218963753, 4.80070157e-05, -0.0119916601, 0.0177003983, 0.0398838669, 0.0407230593, 0.0104457745, 0.0260150563, -0.0295043439, 0.0195333771, 0.0282455496, 0.00124430039, -0.00525601348, 0.0419818535, -0.0308514722, 0.0392213427, 0.0564027652, 0.00220012735, -0.00441129692, 0.0094188638, 0.00549065648, 0.0103684803, 0.00090544764, -0.0194892082, -0.0224595182, 0.0496450327, 0.00587988878, -0.0104733789, 0.0121793756, 0.0167286973, 0.0174133051, 0.00731535442, -0.00598478829, -0.00927531719, 0.00706690876, -0.0420701914, -0.0282897186, 0.0159447119, -0.0108101619, 0.0458465703, -0.0181972887, 0.00532226544, -0.0638230145, 0.0462440848, -0.0149840545, -0.00502413046, -0.0024734179, -0.0150613487, 0.0327948742, 0.0195112936, 0.0310281459, 0.024159994, 0.0457140654, -0.0144319525, 0.0300343614, 0.0380950533, 0.0362620763, -0.0249550212, -0.0173912197, 0.00123463862, 0.00199999032, -0.0212890618, 0.0280688778, -0.0174574722, -0.0187052228, 0.0151717691, 0.0240054056, -0.0215540715, -0.0196217131, 0.0213001035, 0.0505283959, -0.00231054774, -0.0227686968, 0.0386692397, 0.0217749123, -0.0392875932, 0.00664179, -0.0255954601, 0.00290681818, -0.00912072882, 0.01950025, 0.0231441259, -0.0277376156, -0.0371896066, -0.0112352809, 0.0065700165, 0.0314256586, 0.0126431407, 0.0355774686, 0.0100924289, -0.00391992601, 0.0206707083, -0.0128750242, -0.0123229222, 0.00306968833, -0.0462882519, 0.0119254086, 0.00530570233, -0.0103795221, 0.0150061389, -0.013095865, -0.0201848578, -0.0144319525, -0.036505, -0.0019875681, -0.024204161, -0.0604662374, 0.0370350182, -0.0130406544, 0.0146748777, 0.00674668932, 0.0240054056, 0.0183850043, -0.0029454655, -0.0171924643, -0.0176231042, -0.00331261335, -0.0246458445, 0.00641542813, -0.000286575552, -0.00103933248, 0.0281792972, -0.0202069413, 0.0109537086, 0.00584124168, 0.0239612367, 0.0209578015, 0.0261917301, 0.00168805255, 0.0164084788, 0.0153484419, -0.00710555585, -0.0156244934, -0.00823736563, -0.0344953462, -0.00404690951, -0.0408334807, 0.0369466804, 0.0196327548, -0.0320219286, 0.0211676, -0.0305422954, -0.0258604679, 0.00450515421, -0.0181420799, -0.00936917495, -0.00824288651, -0.00408003572, -0.0169716235, -0.00258245808, -0.0127535611, -0.0290405769, -0.00432572095, 0.0301226974, -0.0180868693, -0.029460175, -0.0177887343, 0.0424235351, -0.00784537289, -0.00011335349, 0.0106169255, 0.0329494625, -0.0130627388, 0.0164416041, 0.00569769507, 0.0387134068, 0.00115182332, -0.0287534837, 0.0277817845, 0.0150944749, -0.0376975387, -0.0157569982, -0.00301723881, 0.0264346544, 0.0177776925, 0.00367147988, -0.0171482954, 0.0389784165, -0.00908760261, -0.0237403959, -0.0276271962, 0.0141779855, -0.00610625092, -0.00363835366, -0.0309177246, 0.0194119141, 0.0033043318, 0.0242704134, -0.0158895031, -0.00244167214, 0.0263904873, 0.0138467243, -0.0182083324, -0.00140786066, 0.0418051817, 0.0128750242, 0.00527257612, 0.0133719165, -0.0104347318, -0.0322648548, -0.0252200309, 0.0170599595, 0.0159336701, -0.0202511102, 0.00812694523, -0.030983977, -0.038956333, 0.0224153511, -0.0147963399, 0.00412972458, -0.00368804298, -0.0112242382, -0.0229232851, -0.000613178534, -0.0192683674, -0.00452447776, 0.0162870158, 0.0251096096, 0.00542440452, 0.0207369607, 0.00290405774, -0.0157349128, -0.00974460412, -0.0254187863, -0.0176010188, -0.0298576895, 0.00200551143, -0.0418272652, 0.0275609437, 0.0043063974, 0.0268321689, -0.0185285509, -0.0110586081, -0.0460232422, -0.0310943983, 0.016485773, 0.00302275969, -0.0255733747, 0.0131179495, 0.0393538475, 0.00372392964, 0.0242924988, 0.0102746226, 0.00840851665, 0.010429211, 0.000390957401, -0.0176562294, -0.0370129347, 0.00400826242, 0.0144429943, -0.017082043, 0.0203725733, 0.0274726078, 0.00350308861, -0.0068074204, -0.00755275832, -0.00719389226, -0.0174574722, 0.0128750242, 0.0125216786, 0.0257058796, 0.00729879132, 0.0157128293, -0.012886066, -0.00384815247, 0.00788954087, -0.0188708548, -0.00981637742, -1.66277659e-05, 0.0130737806, -0.016066175, -0.00891645066, -0.00675773155, 0.0183187518, 0.00959553663, -0.0198204704, 0.0215540715, 0.00311937765, -0.0228349492, -0.0186168868, -0.0146417515, -0.00889988802, -0.00501584867, -0.00170047488, 0.00979981478, -0.00369356386, -0.0162538905, 0.029371839, -0.00758588454, -0.00307797, 0.0161655527, 0.0295705963, 0.0172035061, 0.0131952437, -0.000333504257, 0.0128750242, -0.00673012622, 0.0207480025, -0.0217307433, -0.00338990777, 0.00772391027, 0.0153374, -0.0134271262, -0.015977839, 0.00182745839, 0.00493579404, -0.00919802301, 0.0255954601, -0.00434228405, -0.0302772857, -0.00471771369, -0.00475360034, -0.0148736341, 0.0151828118, 0.0153042739, -0.00763005298, 0.0117045669, -0.0429535545, -0.0229232851, -0.0271413457, -0.0208584219, 0.0305202119, 0.00346996263, -0.0401267894, -0.0157128293, 0.011273928, -0.0286651477, -0.0149509283, 0.0223601405, -0.00407727482, 0.00555414846, -0.0167397391, 9.81706762e-05, -0.00240716571, 0.0189702325, 0.00674668932, -0.00689575681, -0.0011456121, -0.00735952286, -0.00876738317, 0.0336340666, -0.0338549092, 0.0271192621, -0.000483089447, -0.00233401218, -0.0244250037, 0.00234091352, 0.0319335945, 0.0163311847, 0.0357099734, -0.000248791068, -0.0228791162, 0.00582467858, -0.0135927573, 0.0364387482, 0.0608637519, 0.0137031777, -0.00173084054, 0.00951824244, -0.00814902876, -0.035179954, 0.0284884758, 0.0249991883, 0.0146196671, 0.00955136865, 0.00142718432, -0.0204167403, -0.0458465703, 0.0174243469, 0.000642508967, 0.00431743963, 0.0166403614, -0.033788655, -0.011781862, 0.0071552447, 0.00541336229, -0.0225257706, 0.00944094826, 0.0194450412, -0.0146196671, -0.000331606396, -0.0226361919, 0.0213442724, 0.0136148408, 0.0471716151, -0.0143657, 0.00595166208, -0.0063878228, 0.0207038336, -0.0136148408, -0.000133884794, 0.0116051892, -0.0260150563, 0.00621667132, -0.0102911852, -0.0415180884, 0.0109868348, 0.0238287318, 0.0147963399, -0.00752515346, 0.012289796, -0.0229674522, -0.015514073, -0.0115831047, 0.0138356816, 0.012079997, -0.0048612603, -0.00541888364, -0.017380178, 0.00666939514, -0.0338990763, 0.00742577482, 0.016066175, 0.0158011653, -0.00394477043, -0.0256175436, 0.0225809813, -0.0378742144, 0.0240274891, 0.0189371072, -0.00639886502, 0.00912072882, 0.0225809813, 0.00642094901, 0.0103960847, 0.0237403959, 0.00583019946, 0.00950168, -0.00838091224, 0.0113622639, 0.00951272156, 0.0118481135, -0.000302103435, 0.00211593183, -0.018484382, 0.0388017446, 0.0192131568, -0.010213891, -0.00430363696, -0.0138908923, 0.0446540304, 0.00347272307, -0.0175126828, 0.0216424074, 0.00229398487, 0.0378079601, 0.0291951653, 0.0340094976, -0.0187383499, 0.0093084434, -0.0257279649, 0.00942990649, 0.00935813319, -0.0241820775, 0.0241820775, 0.018992316, 0.0145644573, -0.00713868206, 0.00456036441, -0.0246458445, -0.0115499785, 0.00752515346, 0.0175568517, -0.00245271414, 0.0127425194, -0.00255071232, 0.0166955721, 0.0149509283, 0.0164416041, 0.0193567034, -0.0197321344, -0.0371454395, 0.0147852981, 0.00507381931, 0.0242262464, -0.00796683505, 0.0433731526, -0.0388238281, -0.0197873432, -0.0217197016, -0.00496615935, -0.00222083135, 0.0127204359, -0.0452061296, -0.0123670902, 0.023696227, 0.0405463874, -0.00280882022, -0.0144650787, -0.0287534837, -0.00286265, 0.0123670902, 0.0217307433, 0.00431191828, -0.00290957885, -0.0457582325, -0.00340923131, 0.000297962688, 0.0331703, -0.00681294175, 0.0371233523, -0.046155747, 0.0421364419, 0.00967835169, -0.0145754991, -0.0254187863, 0.0188818965, -0.0173139255, -0.0578603148, 0.0269425884, 0.0225699395, -0.0319335945, -0.018186247, 0.00204829918, 0.0225368124, -0.0138246398, 0.0156686623, 0.0131069068, 0.0421585254, 0.00427603163, -0.0166072343, -0.0324194431, -0.0159226283, -0.00740369083, 0.00424566632, 0.0181972887, -0.0405463874, 0.00656449562, -0.00929188076, -0.0222497191, -0.0647947192, 0.000781224633, -0.0653689057, 0.00540232053, -0.0184070878, -0.00984950364, 0.0150613487, 0.0138025554, 0.00981637742, 0.0225036871, -0.0102083702, -0.0127535611, -0.00708899274, 0.0347161889, -0.00470667146, -0.0112849697, 0.0191248208, -0.0108156828, -0.0096121, 0.0176010188, -0.0265229922, -0.0110586081, -0.00817111321, -0.00257969764, 0.00124982139, 0.00299791503, -0.0218632482, -0.0399722, 0.00758036366, 0.00436988939, -0.00631052861, -0.0149509283, -0.0399280339, 0.00223739422, -0.0291509982, -0.0200633947, -0.00631052861, -0.0279363729, 0.024071658, -0.0148957185, -0.0161545109, 0.0562702604, -0.0192904528, -0.014155901, -0.0322427712, -0.0400384553, 0.0312269032, 0.0193567034, 0.00250930456, 0.0240937416, 0.0213442724, 0.00567561109, -0.0289743245, -0.0157128293, -0.00161627925, 0.00972804148, 0.0274505224, -0.016066175, -0.0124775106, -0.0404580534, -0.0311164819, -0.00438093115, -0.00820423942, 0.00840851665, -0.0134823369, -0.00280191889, -0.0546802059, 0.0146527933, -0.0295926798, 0.00717732916, 0.00154588628, 0.0140344389, 0.00472875545, 0.0418272652, 0.00374601362, 0.00483089453, 0.0146086253, -0.00856310595, -0.00536643388, -0.0124112582, 0.0207811277, 0.0301889498, -0.0116051892, 0.00971147791, -0.0143546583, -0.00457692752, -0.00658657961, -0.016485773, -0.0179212391, -0.00105796591, 0.000824702729, -0.00914833415, -0.000868180767, -0.013095865, 0.034208253, 0.00416837167, -0.00885019917, -0.0197431762, 0.028267635, 0.00367147988, 0.025683796, -0.0119806184, -0.0137804719, -0.00698961411, 0.0280247089, -0.0160440914, -0.0196990073, 0.00479224743, -0.0106500518, -0.0253083669, 0.000553137448, 0.0110033974, 0.00571425818, 0.0201627742, -0.0327065364, -0.00976668857, 0.00176672719, -0.0148405079, -0.00479500787, 0.0299460255, 0.0349591151, 0.0227686968, -0.0162649322, -0.0261696465, -0.0228128638, -0.00722149713, 0.010004092, 0.00680189952, 0.0141448593, 0.0198425539, -0.00443614135, 0.00852445886, -0.0239612367, -0.00480052875, -0.023696227, 0.0135485884, -0.0230116211, -0.016574109, 0.00917041767, -0.0177224819, -0.0148957185, -0.0147852981, -0.00287645264, -0.0226582754, 0.0355774686, -0.0318673402, 0.0153926099, -0.0134712942, -0.0119474921, 0.0158674177, 0.00703930343, 0.00609520869, -0.0123670902, 0.0220509637, -0.0107107833, -0.0123229222, -0.0147742555, 0.00891093, 0.00947407447, 0.0230778735, -0.00041787239, -0.0200965218, -0.00231606886, 0.0155030303, -0.031072313, 0.0130296126, -0.00764661608, 0.0125327203, -0.0107549513, -0.016066175, 0.00656449562, 0.016066175, -0.0084306011, -0.00623323442, -0.0183297936, 0.00719389226, 0.00266113272, 0.0215430297, -0.0227907803, 0.00711659761, 0.0117929038, -0.00988815073, 0.00177362841, -0.0129191922, -0.0120247863, 0.0168280769, 0.0112021547, 0.000547961448, -0.00925323367, -0.0117929038, -0.0010627968, -0.00406071171, -0.00284332642, 0.0219626259, -0.00621115, -0.0149178021, -0.00339818932, 0.00350584928, 0.0021808038, -0.0112463227, -0.0215540715, -0.00692336215, -0.00753619568, -0.00479224743, 0.00883915648, 0.00230916752, 0.0242483299, 0.0109150615, 0.0310281459, 0.0062774024, -0.0252200309, 0.0112849697, -6.57778073e-05, -0.0241820775, -0.0158232506, -0.0127866874, 0.0604662374, 0.00730431266, 0.0274726078, 0.0195112936, -0.0113843484, -0.02365206, 0.0138467243, 0.020770086, -0.0180427, 0.00845268555, -0.0124443844, -0.0123670902, 0.04315231, 0.00814350788, 0.0200854801, -0.00764661608, 0.0137031777, -0.0124223, -0.00761349, 0.00280053867, 0.0130296126, -0.00869561, 0.00893853512, -0.0122125018, 0.0244250037, 0.0165078565, 0.00273566647, -0.0236299764, -0.00183021894, 0.00723253936, 0.0442344323, -0.00830361713, -0.0151717691, -0.0230116211, -0.00979981478, -0.00287645264, 0.00509038242, -0.0216755345, -0.00930292252, 0.00522288727, 0.0195223354, -0.00807725545, -0.0157017875, -0.00196824456, 0.0121904174, 0.00304208323, 0.0201186053, 0.0290405769, 0.00530570233, 0.034804523, -0.0183297936, 0.000899926643, -0.00975564681, -0.0189150218, 0.00611729268, 0.00852998, -0.0185506344, 0.0174243469, -0.0346278511, -0.0152711477, -0.00989367161, -0.00221945089, -0.0194119141, 0.0192904528, -0.0180868693, 0.013603799, 0.00159971626, 0.00612281356, -0.00307244901, -0.0032491216, 0.0284443069, 0.00534434943, 0.00317458785, -0.0163422264, 0.0178218596, -0.0169605799, -0.0132062854, -0.015260106, -0.0167176556, 0.0124443844, -0.0190364849, 0.00544924894, 0.0102470173, 0.0110365236, 0.00579707325, -0.0376312882, 0.00654241163, 0.0119143659, -0.02187429, -0.00704482431, -0.0151055166, -0.0320661, 0.0159557536, 0.00411316147, 0.00364939566, -0.00452171732, 0.00876186229, -0.0280467942, 0.00292338128, -0.0116603989, 0.0177114401, 0.0163422264, -0.0106334891, 0.0270971768, 0.0049468358, -0.0181752052, -0.0315581635, -0.00351689127, 0.00840851665, 0.000397513621, -0.00926427543, 0.0261917301, -0.0188929383, -0.0218632482, -0.00385091314, -0.013603799, 0.0120027028, 0.00349204661, -0.0040855566, -0.0232766308, 0.024071658, -0.00782328844, 0.0357983075, -0.00328500825, -0.00870665256, -0.00552930404, 0.0117156096, -0.0120137446, 0.013140033, -0.0221724249, 0.00719941314, -6.41818842e-05, 0.029371839, 0.00310281455, -0.00487230206, -0.0128198136, 0.0346057676, 0.00790610444, 0.0132283699, -0.0139240185, 0.0303877071, 0.014409868, 0.00118080864, -0.0068460675, 0.0108598508, 0.00908208173, -0.0132504534, -0.0292614177, 0.006166982, 0.0264346544, -0.0287314, 0.0111359023, -0.0347161889, -0.00493027316, 0.0280688778, 0.0199750587, -0.0194781665, 0.0127314776, 0.0173691362, 0.0356216356, 0.00209108717, -0.0317127518, -0.000857138715, 0.00749754813, 0.0211123899, 0.00223877444, -0.0298356041, -0.0134492107, -0.0262579825, -0.0084306011, -0.0274284389, -0.0168943275, 0.00288473419, -0.00613937667, -0.0166514032, 0.0062221922, -0.00134850969, -0.00519804237, 0.0141227748, 0.0256175436, 0.0162649322, 0.0175347663, 0.032551948, -0.00498548336, -0.0341861695, -0.0515000969, 0.0161545109, -0.026876336, 0.00995992403, -0.0378521308, -0.035135787, -0.0343628414, -0.000172359418, 0.0258604679, 0.00914833415, -0.00516767707, -0.00108626112, 0.00692336215, 0.0185285509, -0.0148515496, -0.0181310382, -0.0176562294, 0.0102801435, -0.00936917495, -0.00700065633, 0.0241820775, 0.00997648761, 0.0153705264, 0.014409868, 0.0284443069, 0.0014368461, -0.0207038336, -0.00802204572, -0.0184291732, 0.0247783475, -0.0160551332, -0.00078398519, -0.0146307088, 0.0225588977, 0.0105175478, 0.00878394675, -0.00965626817, -0.0235858075, 0.0102470173, 0.0105506741, -0.0117156096, 0.000571770885, -0.0334573947, 0.029371839, -0.0142994476, 0.0310060605, -0.0319115072, -0.000363352272, 0.00898270309, 0.0248004328, 0.0284222234, 0.00035886644, 0.0125106368, -0.0149067603, -0.0179212391, -0.0182745848, 0.00460729329, 0.027848037, 0.0188046023, 0.0206044558, 0.00801100302, -0.0214657355, -0.0314256586, 0.0175458081, -0.0281792972, 0.0146969613, -0.0208915491, -0.00693440391, 0.00814350788, -0.009750125, -0.0201627742, -0.0281130448, -0.00225533755, -0.0011559641, -0.00379018183, -0.00970043615, -0.0163091, 0.0111690285, -0.0270309262, -0.00728222867, 0.00124292017, -0.00492751226, -0.00208004517, 0.00454104086, 0.0329936296, -0.0097942939, -0.0181089528, -0.0325740315, -0.00182469783, -0.00312213809, -0.035135787, 0.00228708354, 0.00732639665, 0.0293055866, -0.0044168178, 0.0170378741, -0.0318894237, 0.0263463184, -0.0156024089, 0.0230778735, -0.00851341616, -0.0017018551, -0.0274284389, 0.0294822585, -0.00803308748, 0.00714420294, 0.00325188204, 0.0121572912, 0.0369025134, 0.0318673402, -0.0101200342, -0.00767974183, 0.0274505224, -0.0110310027, -0.00203587697, 0.0316685848, -0.0403697155, 0.00705586653, -0.0306748, 0.0113291377, 0.0171041265, 0.0337003209, -0.0412309952, 0.00343683641, -0.0198425539, 0.0147963399, -0.021785954, 0.00615594, -0.0126652252, 0.0343628414, 0.045139879, 0.00992679782, -0.00571425818, 0.00598478829, 0.0320219286, 0.024159994, 0.00753067434, 0.000623530475, -0.0093470905, 0.0101862866, 0.00275499024, -0.043196477, 0.00165768701, -0.0201075636, 0.0187604334, 0.0177335236, -0.0253967028, 0.00661418494, -0.0171372537, -0.0212117676, 0.000289508607, 0.0163753517, 0.0237183124, -0.00738712773, 0.0300343614, 0.0101973284, 0.0221613832, 0.0249329377, 0.0107218251, -0.0208363384, -0.0197321344, 0.00053208851, 0.0040689935, -0.00951824244, 0.0131510748, 0.00722701801, -0.0370350182, 0.00283504487, 0.0280026253, -0.0319115072, 0.0101145133, -0.00397789665, -0.0126873096, 0.00608416647, -0.0374546163, -0.00455760397, -0.00106969813, -0.00787849911, -0.0121793756, 0.0357320569, 0.018351879, 0.00760796899, -0.0105617158, 0.0100537818, 0.00835882779, 0.0424897894, -0.00896614, -0.0147632137, 0.00349756773, -0.00746442238, -0.00527533703, 0.000895095756, -7.92568642e-07, 0.0216534492, 0.00148929574, 0.0142111117, 0.0138356816, -0.00824288651, -0.0172035061, 0.0142221535, -0.000799858128, 0.00306416745, 0.010429211, 0.0033485, 0.0164195206, -0.00137749512, 0.0094188638, 0.0033043318, -0.000240509529, -0.00171565765, 0.0103519168, 0.0169384964, -0.00415733, 0.0181199946, 0.0129523184, 0.00889436714, -0.00504621444, -0.00444166269, 0.00191165402, 0.00775151514, -0.0136810932, 0.00501584867, -0.0138908923, 0.0106224474, 0.00333745801, -0.0311385654, 0.000734986097, 0.025175862, 0.0289522409, -0.00756380055, -0.00963418372, 0.00891093, -0.012124165, -0.0312710702, 0.0120247863, 0.0252200309, 0.037388362, 0.012289796, 0.0175126828, 0.0012111743, -0.0235858075, -0.0103463959, -0.0064043859, 0.00104416336, 0.0168059915, 0.0207480025, -0.0155361565, 0.00280329911, -0.00734295975, 0.02305579, -0.0276271962, -0.00781224668, 0.000965488784, 0.0109757921, -0.000934433, 0.00172531942, 0.0245133396, 0.0024182077, -0.0158122089, -0.0215540715, -0.0134823369, -0.0170710012, -0.00939678, -0.0128087718, -0.00171151687, -0.00520080281, 0.0101973284, -0.0123008378, 0.0138135981, -0.0105561949, 0.00659210049, -0.00544096762, -0.0251316931, -0.0253525339, -0.00602895627, 0.0116162309, 0.0324856937, -0.00898270309, 0.00301171769, -0.0163532682, -0.0062387553, -0.0106279682, 0.00943542738, -0.028355971, 0.0225257706, 0.000893715478, 0.0101807648, -0.00499376468, 0.0053912783, 0.0179212391, 0.00335126044, 0.00380122382, -0.0103187906, -0.00670804223, -0.00580259459, 0.0121352067, 0.00225809822, 0.012333964, -0.031072313, -0.00781224668, 0.0163201429, 0.000401999452, -0.0100206556, 0.010848809, -0.0114837261, 0.00488886517, 0.0251316931, -0.0057805106, 0.0165299401, -0.000342130865, -0.0126652252, 0.0107880775, 0.0050986642, 0.0172808, 0.0100372182, 0.0477016345, 0.015215938, -0.00677429419, 0.00464870082, -0.0173912197, 0.000791576575, 0.00242925, 0.0328832082, 0.0128087718, 0.0205823705, 0.0119364504, 0.0104236901, 0.00467354525, -0.0049468358, -0.0223270152, -0.00873977877, -0.00649824319, -0.00110282423, 0.00431191828, 0.00658105873, -0.00174188253, -0.00925875455, 0.0162428468, 0.0176231042, 0.0133608738, -0.0152048953, 0.00303932279, 0.0316685848, 0.027295934, 0.0151055166, 0.0100979498, -0.00733191753, 0.0338328257, 0.0134933786, 0.00525877392, 0.020008184, -0.0152932322, 0.0103519168, 0.00246099569, -0.00682398351, 0.0109150615, -0.0150613487, -0.00167010922, -0.00241682748, -0.000407865533, -0.0284443069, -0.0141890272, 0.0152380215, 0.00701169856, -0.00221116934, -0.00120427296, -0.0157238711, -0.0117708193, 0.00115734432, 0.0169384964, -0.00385919469, -0.0339653306, 0.00249826256, -0.0346057676, 0.012632099, -0.0107163042, -0.0195223354, 0.0135706728, -0.0213663559, -0.0150613487, -0.0179874916, -0.0126541834, -0.00848029, -0.00913177058, 0.0043202, 0.00474531855, -0.00926427543, 0.00194478012, 0.0140786069, -0.00531122368, 0.0164968148, -0.00920354389, -0.0169716235, 0.00353345438, -0.0135485884, 0.00258383853, -0.00731535442, -0.0102746226, 0.00105796591, 0.0064043859, -0.0107439095, 0.00412144326, -0.018992316, -0.00176948763, -0.0158784594, -0.0104236901, 0.00215181848, 0.00910968706, 0.0253967028, 0.00909864437, -0.0365933366, -0.00967283081, 0.0151165593, 0.0253083669, 0.016872244, -0.00736504374, -0.00480605, -0.0245133396, 0.00242510904, 0.0158453342, -0.0162980575, -0.00262110541, 0.00799996126, -0.00368804298, 0.00686815195, 0.0146086253, 0.0297251847, 0.0239612367, 0.00419045612, 0.00849133264, 0.00121186441, 0.0108322455, -0.00375981629, -0.00114216155, -0.0172587149, -0.0126210572, 0.0182966683, 0.0231441259, 0.018484382, -0.00771286804, 0.00673012622, -0.0338990763, 0.0131731592, -0.00685158884, -0.0059295781, 0.00568665285, 0.0010296707, -0.0363504104, 0.0124664688, -0.0152380215, -0.00650376407, 0.00907656085, -0.00101655826, -0.0290626623, 0.00550721958, 0.00722149713, -0.0209025908, 0.0115610212, -0.00522288727, 0.0206596646, -0.0211565569, 0.0240937416, -0.011146944, -0.00584124168, -0.0302993711, 0.012632099, 0.00113042933, -0.0123891737, -0.0126100155, 0.00238232105, 0.00570321595, 0.00786745641, 0.00146169064, -0.0104181692, -0.00619458687, 0.00681294175, -0.0276051108, -0.00958449487, 0.0277155321, -0.0206154976, 0.000243097515, 0.0153594837, -0.00623323442, 0.0062387553, -0.00513179041, 0.0298576895, -0.0023740395, 0.0135927573, -0.000458934985, -0.00596822519, 0.00500756735, -0.0050821011, -0.0155361565, -0.00227604154, 0.0291289147, 0.0115831047, -1.09018629e-05, 0.00752515346, -0.0236299764, -0.0106776571, 0.00450239377, 0.00857966859, -0.0224926453, -0.00485297851, 0.000573841273, -0.0140454806, 0.00498272246, -0.0282897186, -0.00687919371, 0.00878946763, -0.00560659822, 0.00125396217, -0.0140344389, -0.0210350957, 0.00243339059, 0.00881155208, -0.00222221157, 0.00326292426, -0.00167148956, 0.000841265777, 0.0224705618, -0.000180813484, -0.00418217434, -0.00224843645, 0.00269563915, 0.0339874141, 0.00766317919, -3.21340758e-06, 0.0288197361, -0.0055403458, -0.0024458128, -0.0311827343, -0.00800548214, 0.0249550212, -0.0011062749, 0.00190613291, 0.00771286804, 0.0224595182, -0.0492916889, -0.000493786414, -0.012124165, -0.00587988878, 0.0234753862, -0.023188293, 0.00234781485, -0.00246099569, -0.00519528193, 0.00161627925, 0.0290626623, 0.00108281046, -0.0150171807, 0.00255761365, -0.010512027, 0.00387575757, 0.00661418494, -0.00859623216, 0.0238949843, 0.00898270309, -0.000713592162, 0.0228349492, 0.0188046023, 0.00765765784, 0.00878394675, -0.0127646038, 0.0131510748, 0.00787297823, 0.0288859885, 0.00933604874, -0.0144650787, -0.00724358112, 0.0251096096, -0.00827049185, -0.0109095406, 0.0117487358, 0.00400550151, 0.0158453342, 0.0147632137, -0.00668595824, -0.000276051112, -0.00267079449, 0.0188046023, -0.00452171732, 0.000526912569, -0.00475912122, 0.0153705264, 0.00528913923, -0.000336954894, -0.0244470872, -0.0123670902, 0.00103588181, -0.0321323499, -0.0121131232, -0.0020151732, -0.0115831047, -0.00309177255, 0.0168059915, -0.0127535611, -0.0263904873, 0.00422082143, 0.0426443778, -0.00400826242, -0.00225395733, -0.013438168, -0.00948511623, 0.011527895, 0.0146527933, 0.00062525575, 0.0142221535, -0.0169826653, 0.0151607273, -0.00415733, -0.00940230116, -0.0173912197, -0.0125658466, -0.00309729343, -0.0189591907, 0.00601791451, 0.00185230304, -0.0306748, -0.0126100155, 0.0178770702, 0.00242786948, 0.00283780554, -0.00445270445, -0.00392544689, -0.00789506175, -0.00464318, -0.00554586714, -0.00709451362, -0.00712764, -0.0192352422, 0.005319505, 0.0201848578, 0.0216313656, 0.0274946913, 0.0205823705, -0.00117804809, -0.0106555726, 0.00886124093, 0.0247562639, -0.00947959535, 0.00632157037, 0.0148846759, 0.00460453285, -0.00563696399, -0.0142221535, -0.00292614172, 0.0392655097, 0.0099323187, -0.0121904174, 0.00811590254, 0.0148073817, -0.0114285164, 0.0217307433, 0.00202069408, -0.0173360109, 0.00348376506, 0.0238287318, 0.0147632137, -0.0126100155, 0.00456036441, 0.00317458785, 0.0161765963, 0.0108653717, 0.000989643275, -0.010004092, 0.0138356816, 0.0347824395, -0.00201241253, 0.00374049274, -0.00637678057, 0.014200069, 0.00663626892, 0.00412144326, 0.00297031, -0.00671356311, -0.0138246398, -0.00796131417, -0.0144209107, -0.0127314776, 0.00986606721, -0.0132946214, 0.00224705599, 0.0024458128, 0.0222386774, -0.0121793756, -0.013946102, -0.0271192621, 0.00112835888, 0.0227907803, 0.00631604949, 0.036747925, 0.0142111117, 0.0151496856, 0.00272738514, -0.00536367297, 0.000986192608, 0.00652032718, -0.00411592238, 0.000420977944, -0.00625531841, -0.01890398, -0.0198977645, -0.0123008378, 0.00174050231, 0.0284443069, 0.0212559365, -0.00186334504, -0.00377361872, -0.013095865, -0.00382054737, -0.00142304355, -0.0596712083, 0.0314035751, 0.0318010896, -0.000317976373, 0.00653689029, -0.00526981568, -0.00896614, 0.0279584564, -0.00727118645, 0.00451619644, 0.00354725681, -0.00638230192, 0.0233870503, 0.0317348354, -0.000227224577, 0.0032767267, 0.0164084788, 0.0158674177, 0.00697857235, 0.001393368, -0.0110254819, 0.0186279286, -0.0101531604, 0.0124995941, -0.00507105887, -0.00848581176, 0.00404138817, -0.00207728473, 0.00617250288, 0.00324084, 0.00617802376, -0.0129964864, -0.00440853648, -0.00293166284, -0.0239391532, 0.0141227748, 0.0110862125, 0.0029012973, -0.00354725681, 0.00116631598, -0.00449687289, -0.00902135, 0.0140013127, 0.0179985333, -0.0235858075, 0.0267217476, 0.0107328678, -0.0150944749, 0.000415111863, 0.0104126483, 0.00849685352, 0.00170875643, -0.0121352067, -0.0105893211, 0.00751411123, -0.00112421822, -0.0042346241, -0.0184622984, 0.0239170678, -0.0177224819, -0.00252310722, 0.0157238711, -0.00682950439, -0.0110420445, -0.0281792972, -0.00451895688, 0.0287314, -0.0116935251, -0.0137252612, 0.00390612334, -0.0204388238, 0.00654793251, -0.00954032689, 0.0205713287, -0.00424842676, 0.00759692676, -0.00708899274, -0.0149730127, -0.00558175379, -0.0138798505, -0.00633813348, 0.0063878228, 0.00631604949, -0.00438369159, -0.0126431407, -0.0132835796, 3.86902902e-05, 0.0249550212, -0.0173691362, 0.0198094286, -0.029371839, -0.00703378255, 0.0237403959, -0.0163753517, -0.0157128293, -0.0156244934, -0.0187935606, -0.0169716235, 0.00129813037, -0.00590197276, 0.00788402, -0.0165520255, 0.00933604874, 0.0108377673, 0.0168612022, 0.00591853587, 0.0354891308, -0.0029289024, -0.0178549867, -0.0103243114, -0.0171482954, -0.0200523529, 0.024579592, 0.00585780479, -0.00833674334, -0.00509038242, -0.00640990678, -0.00383158959, -0.018992316, 0.0212228093, -0.00357210147, 0.00582467858, -0.0127093932, 0.000975840725, -0.0334353112, 0.0079171462, 0.00712764, -0.019456083, -0.0236078911, 0.00760244764, 0.0122235436, 0.0133719165, -0.00220702868, -0.0258825533, -0.021785954, -0.013692135, 0.0128971078, -0.0145975826, -0.00939678, 0.000390612317, 0.00413248502, -0.0209025908, -0.0204498675, -0.00540232053, 0.0151717691, -0.00879498851, -0.00342303375, -0.00190199225, 0.0144650787, 0.00599030918, 0.00377085828, 0.0116714416, 0.00908208173, 0.00542440452, 0.00203863741, -0.000897856255, -0.00171151687, 0.0187052228, 0.00648720143, 0.00992127694, -0.0266113281, 0.0242924988, 0.00940782204, 0.00130779215, 0.0010572758, -0.000462730677, 0.0166403614, 0.00226914021, -0.0337003209, -0.00109868345, -0.0112960115, -0.00637678057, -0.00711659761, -0.00917593949, 0.0280909613, 0.00783985201, -2.72816142e-05, 0.00203587697, 0.0335899, 0.00402758596, 0.00398065709, -0.0117045669, -0.00520632416, 0.00674116844, 0.00402758596, -0.0163643099, 0.0202290267, -0.0176120605, -0.011146944, 0.0118481135, -0.0212117676, 0.00842508, -0.0106666153, -0.0134160845, -0.00790610444, -0.00682398351, -0.0168943275, 0.00506001711, 0.0125989728, -0.0185506344, 0.0110806916, 0.00237265928, -0.0227466114, -0.0178549867, 0.00277983467, -0.00232159, 0.0167066138, -0.00530018145, 0.0160440914, -0.00247203768, 0.00928636, 0.00478396565, -0.00297583104, 0.00427603163, -0.0125989728, -0.0152380215, 0.00318010896, -0.0207480025, -0.014200069, -1.34143593e-05, 0.0119695766, -0.00884467736, 0.0118591562, -0.00676877331, -0.00425946852, -0.0355333, 0.0112518435, 0.0179985333, -0.00508486154, 0.000442026852, 0.0203946568, 0.00724910246, -0.011781862, -0.00325740315, 0.0279805418, -0.0188156441, -0.00527257612, 0.00645407522, 0.00440577604, 0.00562868221, 0.00849685352, 0.00265561184, 0.00789506175, -0.016872244, 0.0129633602, -0.00173360098, 0.0223380569, -0.016485773, 0.00756932143, 0.0239170678, -0.0296810158, 0.00731535442, -0.018351879, -0.00913177058, -0.000177535374, -0.00129606, 0.00323255849, -0.00909864437, 0.00280743977, -0.0092090657, -0.00138853712, -0.00681294175, 0.000496546971, -0.00386195513, 0.0014865353, -0.00617802376, 0.00331813446, -0.0151717691, -0.0214436501, 0.0216755345, 0.0101034706, 0.0216092821, 0.00496615935, 0.00135610113, 0.000607312482, 0.00481709186, -0.00634365482, -0.0193014946, -0.00184678193, 0.000792266685, 0.00299791503, 0.0199750587, 0.00586332567, 0.0196106713, -0.0135154631, 0.00478120521, -0.00504069356, 0.00794475153, 0.0124775106, -0.0227686968, 0.00170875643, 0.0278701205, 0.0067908573, -0.0067908573, -0.0132835796, 0.0239612367, 0.000410626031, 0.00339266821, 0.0378742144, -0.0276492797, -0.0169495381, -0.0309177246, 0.00597926695, 0.0184070878, 0.020383615, -0.00752515346, 0.0135485884, 0.0120689552, 0.0217417851, -0.0153484419, -0.0137363039, 0.010213891, 0.000702205056, -0.0329494625, 0.0203173626, -0.0188487694, 0.00676877331, -0.0172587149, 0.0201406889, -0.00443614135, 0.00472599501, -0.0117156096, -0.00595718296, 0.01279773, 0.00313318, 0.0318231732, 0.00249826256, -0.0241158251, -0.00529466057, 0.018605845, -0.00794475153, 0.00696753, 0.000638023135, 0.00252034678, 0.0138577661, -0.00454656174, 0.00543268584, -0.0216092821, 0.0053747152, -0.0264346544, 0.00671356311, 0.00624979706, -0.00120151252, 0.000671494345, -0.013095865, 0.010086908, 0.0278701205, 0.00790610444, 0.0221061725, -0.002818482, -0.00168529211, -0.0146748777, 0.00321323494, 0.00394201, 0.0160551332, -0.00438921293, -9.85157458e-05, 0.0129633602, 0.00260040141, -0.00186058448, 0.00701721944, -0.0172587149, 0.0215982385, -0.00642647, 0.00187162659, -0.000875772152, -0.00240302505, 0.0154588623, 0.0165961925, -0.00584676256, 0.00103795214, 0.00505449576, 7.49974788e-06, 0.0108874561, -0.00886124093, -0.00356658036, -0.00525049213, -0.00133539725, -0.00556243, 0.0324194431, 0.00116010476, 0.000526567514, 0.00284884754, -0.0107328678, 0.0128529398, 0.0205823705, 0.0278038681, 0.00664731069, -0.00734848063, -0.00817663409, 0.0281572137, -0.0145975826, -0.0134823369, -0.0260371417, -0.00893301424, 0.00489990739, 0.0216755345, 0.0156907458, 0.0227686968, -0.0129081504, 0.00278811622, 0.0155913671, 0.0241820775, -0.0121020805, 0.00248998101, 0.000819871842, -0.00643751211, -0.0177445654, 0.0132062854, 0.00111110578, -0.0240054056, -0.00334573956, 0.0261475611, -0.00793370884, -0.0170489177, -0.0142442379, -0.00661970582, -0.0270750932, -0.000324187538, 0.00228018221, 0.0381833911, -0.012632099, -0.0153263584, -0.00686815195, 0.0153042739, -0.00453275954, -0.00225947844, -0.0121352067, 0.00821528118, -0.00300619658, 0.0120247863, 0.00301723881, -0.00822632294, 0.00115734432, -0.0139571447, -0.00891093, -0.0297472682, -0.000497582136, -0.0207921695, 0.00341475219, -0.00422082143, -0.0138025554, 0.00867904723, 0.011527895, -0.00684054662, 0.00239750394, -0.0015472665, 0.00835330691, -0.0234974716, 0.00357210147, 0.0047094319, 0.0196437966, -0.0131289912, -0.0113291377, -0.0240274891, -0.00187576737, 0.0185727198, -0.000606622314, -0.0127314776, -0.028863905, -0.0254629552, 0.0087453, -0.0214105248, 0.0146859195, -0.0224816035, -0.0032932898, -0.00272324425, 0.0107494304, -0.00440025469, -0.0127535611, -0.00914833415, -0.0032104745, 0.000820561952, 0.0115058105, -0.0122566698, 0.00947407447, -0.0113953901, -0.00924219098, -0.0127425194, -0.0117376931, -0.00455760397, 0.00102276937, -0.0232324619, -0.00862383656, 0.00165906723, -0.00755827967, -0.0062387553, -0.0083201807, 0.00231744908, -0.00718837092, 0.0242924988, -0.022382224, -0.0166955721, -0.00664179, 0.00187714759, -0.0266113281, -0.00185920426, 0.015514073, 0.0135044204, -0.00722701801, 3.82589606e-05, -0.0118039455, -0.0239612367, 0.00104278314, -0.0158674177, 0.0131289912, 0.0299239419, -0.0205823705, 0.018992316, 0.0315139964, 0.00165078568, -0.0275609437, -0.0248225164, -0.0208032113, 0.00891093, 0.0124885524, -0.0192794092, -0.00205796119, -0.0147411292, -0.0084306011, -0.00427603163, -0.000752929423, 0.00343407597, 0.00745338, 0.00437817071, 0.0158122089, -0.0357541405, -0.00377913984, 0.0101918075, -0.0106279682, 0.0256617125, 0.0323531926, -0.00939678, 0.00855758507, -0.002786736, 0.00856862683, 0.00611729268, 0.00118218886, -0.0186720975, -0.00983846188, 0.0278259534, 0.0200302694, -0.00242372882, 0.012676267, -0.00610072957, 0.0170489177, 0.0180868693, -0.00144926831, -5.05087264e-05, -0.0200744364, -0.000401309313, 0.0140565224, -0.00780120445, -0.0102304546, 0.00637678057, 0.00732639665, -0.0113070533, -0.00761901075, -0.0177335236, -0.0023837015, 0.016872244, -0.0159557536, -0.0143767418, -0.00776807824, -0.00795579329, 0.00224981667, -0.00710555585, 0.00772391027, 0.00300895725, -0.00535539165, 0.0022843231, -0.0140675651, -0.00938573759, 0.00608416647, 0.00539679918, 0.00303104124, -0.00580811547, -0.00534434943, -0.024579592, 0.0107273459, -0.0166624449, -0.0346941054, 0.0121131232, 0.012079997, -0.00433400273, -0.0518534407, -0.00784537289, 0.0051538744, 0.0165078565, 0.0215651132, -0.000734296, -0.0378300436, -0.0317569189, 0.0164968148, 0.00438093115, 0.00573082129, -0.0187604334, 0.00183850038, -0.0121904174, -0.00828705449, -0.00554310624, -0.00586884655, 0.00699513545, 0.0221282579, 0.0165630672, -0.00735952286, 0.0216644909, 0.00781776756, -0.00554586714, 0.00360522768, -0.00939678, 0.0214657355, 0.00202759542, 0.00489162561, -0.0143436156, 0.0169164129, -0.0207590442, 0.00913177058, -0.00152656273, -0.0146527933, 0.0055569089, 0.00857966859, -0.00147687353, -0.00313318, 0.0142994476, 0.011064129, 0.000552792335, -0.00235609617, 0.0168059915, -0.00293166284, -0.0118812397, 0.00733191753, -0.00825944915, -0.0396188572, 0.0253525339, -0.01182603, 0.00418769522, 0.013140033, 0.00778464135, -0.0126983514, 0.00232297019, -0.00986606721, -0.0170378741, 0.0174133051, 0.00685158884, -0.00618906599, -0.00518424, -0.00997648761, 0.00710555585, -0.0176231042, -0.0043202, -0.0180868693, -0.0269867573, -0.0113733057, 0.00966731, 0.00690127769, -0.00988815073, -0.00865696277, -0.0139902709, -0.000691163, 0.00345616, -0.0046542217, 0.00655345339, -0.00313594076, 0.017380178, 0.0414960049, -0.00748650637, -0.00130848226, -0.0117266513, 0.00954584777, -0.0197652597, -0.00950720068, -0.00998752937, 0.0130516971, 0.00892749336, 0.00278259534, 0.00575290527, 0.00193511834, 0.00956793129, -0.011102776, -0.014454036, 0.00771286804, -0.0165961925, -0.0102635808, 0.00495787803, -0.0217749123, 0.00116976665, 0.00727118645, -0.0035141306, -0.00740369083, -0.00234091352, 0.00136093202, 0.00450791465, -0.030476043, 0.0158453342, 0.0155030303, -0.0145423729, -0.00251482567, 0.0058743679, 0.0188818965, 0.0127425194, 0.0174353886, -0.00969491526, -0.0119695766, -0.00135403068, -0.019157948, -0.0113953901, -0.00136162213, -0.0183297936, -0.00328776869, -0.00089164509, -0.00647615921, -0.000247755874, 0.0105506741, 0.00227604154, 0.00128018705, -0.0212338511, 0.000399238925, -0.0157238711, -0.00590749411, 0.00373221119, -0.0153484419, 0.00225395733, 0.00637125969, 0.0155582409, 0.0224374346, 0.0108984979, -0.00235609617, -0.000866110378, -0.0155361565, 0.00507381931, -0.0159005448, -0.00473979767, 0.0166734867, -0.00749202725, -0.00322703761, -0.0157128293, 0.0031110961, -0.0248887688, -0.034164086, 0.0275167748, -0.00934157, -0.00349756773, 0.0107604722, -0.0180537421, 0.0135154631, -0.000933052797, -0.00275360979, -0.0181641635, -0.00381226582, 0.00160109648, -0.010385043, 0.0212448947, 0.0176231042, 0.0175789353, 0.0116493572, -0.00951824244, -0.01063901, 0.00977220945, 0.00397513621, 0.00653689029, -0.0105396314, -0.0127093932, 0.0448969528, -0.0106445309, 0.00293718395, 0.0120468708, -0.0152380215, 0.00281020044, 0.0141890272, -0.0233207978, 0.00377637916, 0.0105838, 0.00639886502, -0.00671908399, -0.0156024089, -0.00363559322, -0.0280247089, -0.00271910359, -0.00571425818, -0.0133719165, 0.000516215572, -0.0278038681, 0.00254657166, 0.00683502574, 0.0158453342, -0.00214491715, 0.0247562639, -0.00876738317, -3.35089385e-06, 0.00207176362, 0.000632157084, -0.00189647113, 0.015514073, 0.0206044558, -0.0280247089, 0.00134160847, -0.0414297506, -0.00492199138, -0.00693992525, 0.00264733029, -0.015469905, 0.00781776756, 0.000853688049, -0.0053912783, -0.0167176556, 0.0240054056, 0.0139240185, -0.0213553142, -0.00467354525, -0.0314035751, -0.0114726843, 0.0143767418, -0.00713868206, 0.00444718357, 0.0115941465, -0.010213891, 0.00383435, -0.00362731167, -0.0278259534, 0.00214353693, 0.0217528287, -0.0167949498, 0.000903377251, -0.00698961411, 0.00493027316, -0.0103629585, 0.0015417455, 0.0185837615, -0.0169716235, -0.025683796, -0.0231441259, -0.0110144392, -0.0306968838, -0.0210571792, -0.00644855388, -0.000897856255, -0.00750306947, 0.0215319879, -0.0135154631, 0.00806621369, -0.000797097571, 0.0031552643, 0.000224636591, 0.0117376931, 0.0195554607, -0.0141227748, -0.0182414576, -0.00107935991, 0.0152711477, -0.0166514032, -0.00885572, 0.0133608738, -0.00845268555, 0.0147521719, 0.0229674522, -0.00836434867, 0.00774599425, 0.0156134516, -0.0233870503, 0.0114064319, -0.0100096138, 0.00446650712, -0.00368252187, 0.0244691707, -0.0251096096, -0.0177666508, 0.0142884059, -0.000662522682, 0.00268183649, -0.00978325121, -0.0158342924, 0.0148736341, 0.0117266513, 0.0055569089, 0.0161986798, 0.0200854801, 0.00520632416, -0.00595718296, 0.00910416618, 0.0145754991, 0.00116700609, 0.0249329377, -0.00407451438, 0.00932500698, -0.00885019917, -0.00449687289, -0.00478948699, -0.00285436865, 0.0135485884, -0.028355971, 0.0315139964, -0.0130848233, 0.00496892026, -0.0315139964, 0.0173249673, 0.015469905, 0.00232711085, 0.00721597625, -0.00938573759, -0.00807173457, 0.00146721164, 0.011527895, 0.0387134068, 0.00903239287, 0.0305202119, -0.0100758653, 0.00640990678, 0.0145534147, -0.00817111321, 0.015679704, 0.00506829843, -0.0127314776, 0.0175237246, -0.00549341738, -0.0219184589, 0.00753619568, -0.0255733747, 0.00770734716, 0.0003083146, -0.0280909613, 0.0220509637, -0.00383987091, -0.018859813, -0.0209467579, -0.0148515496, -0.00365215633, -0.0127204359, 0.00949063711, -0.00669147912, 0.00759692676, 0.0276492797, -0.000510694575, -0.00377913984, -0.0157790817, 0.00652584853, -0.0186831392, -0.000615939032, 0.0268100835, 0.00556519069, -0.0276051108, 0.0108322455, -0.0169274546, 0.0236741435, -0.00700617721, -0.0117487358, 0.0188266858, 0.00617802376, 0.00926427543, -0.0174574722, 0.00427327119, -0.00958449487, -0.00188128836, 0.00832570158, 0.00475360034, -0.00885572, 0.0049716807, 0.00845820643, 0.00726014422, 0.00878946763, 0.00970595703, -0.00836987, 0.00108833157, 0.0112242382, -0.00315250386, -0.00561487954, -0.0153484419, -0.000867490657, 0.0460674092, 0.0142994476, 0.00110144401, -0.0103077488, 0.00577498926, 0.00306416745, -0.00631052861, -0.00674116844, -1.42446688e-05, -0.0102911852, 0.0224043094, -0.0376312882, 0.00626083929, 0.0137363039, 0.012886066, -0.0111966329, -0.000775703636, 0.0201186053, -0.00360246701, 0.00397513621, 0.00648720143, -0.00720493402, -0.00484469719, -0.0240937416, 0.00225533755, -0.0132173272, -0.0258163, 0.0149840545, -0.00170599588, -0.000394062983, -0.00412972458, -0.0234753862, -0.00428983429, -0.0115389368, 0.0232103784, -0.00812142342, -0.000330226147, 0.0481874831, 0.0197873432, 0.00652032718, 0.0175126828, -0.0386913233, 0.0306968838, -0.0193456616, -0.0145313311, -0.0288859885, 0.018694181, -0.000126552186, -0.000790196296, 0.0142111117, -0.00567008974, -0.00424290588, 0.0120468708, -9.67904198e-05, -0.014409868, -0.0174022615, 0.0143436156]
|
13 May, 2021
|
Python calendar module : itermonthdays() method
13 May, 2021
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions.
itermonthdays() method returns an iterator of a specified month and a year. Days returned will simply be day numbers. itermonthdays() method is similar to itermonthdates().
Syntax: itermonthdays(year, month)
Parameter:
year: year of the calendar
month: month of the calendar
Returns: an iterator of the specified month.
Code #1:
Python3
# Python program to demonstrate working
# of itermonthdays() method
# importing calendar module
import calendar
year = 2018
month = 9
obj = calendar.Calendar()
# iterating with itermonthdays
for day in obj.itermonthdays(year, month):
print(day)
Output:
0
0
0
0
0
1
2
3
4
5
6
.
.
29
30
Code #2:
Python3
# Python program to demonstrate working
# of itermonthdays() method
# importing calendar module
import calendar
# use with firstweekday = 5
obj = calendar.Calendar(firstweekday = 2)
# iterating with itermonthdays
for day in obj.itermonthdays(2018, 4):
print(day)
Output:
0
0
0
0
1
2
3
4
5
.
.
28
29
30
0
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : itermonthdays() method
|
https://www.geeksforgeeks.org/python-calendar-module-itermonthdays-method/?ref=lbp
|
Pandas
|
Python calendar module : itermonthdays() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python calendar module : itermonthdays() method, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.025368318, 0.00693453336, -0.00971060339, 0.0424761325, -0.0165548585, -0.00182955444, 0.0103199854, 0.0342607722, -0.00618409179, 0.0231790598, -0.00524462899, 0.014873418, -0.00930999219, 0.0115274629, -0.036608018, -0.00669755181, -0.0124923168, 0.0218474474, 0.0212832056, -0.00957518537, -0.0124810319, 0.00283954758, -0.0186199844, 0.0285732113, 0.00859904755, -0.00543082878, 0.0269707646, -0.0394969359, 0.005997892, 0.0188795347, 0.0160357561, 0.0149862664, 0.0230436418, 0.00673140632, -0.0480282754, -0.0057524466, 0.0169836823, 0.0396323539, 0.0164081566, -0.0125261713, -0.0142978905, 0.0116910934, 0.0373979546, 0.00609381311, -0.05457348, 0.0269256253, -0.00300176721, -0.0223214105, -0.0303787868, -0.0359534957, 0.0317555368, -0.0185522754, 0.0280992482, -0.00155166537, 0.0134853823, -0.0075552, 0.00653956411, 0.00589068606, -0.0409188271, -0.0175817795, 0.0552505702, -0.0144445933, -0.010968863, -0.0244429614, 0.0279186908, 0.0153699508, -0.0315975472, 0.0453199111, 0.0182250142, -0.0230210721, 0.0328163132, 0.00326413964, -0.00314000645, -0.0119167902, -0.0167467017, -0.0424535647, -0.00877960492, -0.000814624305, -0.029476, -0.0074310666, -0.031191295, -0.0036647513, -0.000749031198, -0.0310107376, 0.0190262385, -0.00981216785, 0.0111889178, -0.011245342, 0.0250749122, 0.0248717852, 0.0204255581, 0.0416861959, -0.021802308, -0.0170626771, -0.0336739607, -0.00650570961, 0.0368111432, 0.0662194341, -0.0343961902, -0.00429388136, -0.00550418, -0.00754391495, -0.00652263686, -0.016588714, 0.00977831241, 0.00543929217, 0.0116346693, -0.0187666863, 0.017073961, -0.0168482643, 0.0274672974, 0.00789374486, -0.0103143426, 0.00139720412, -0.0107544512, 7.62608252e-05, -0.00995887071, -0.0160808954, -0.000433055684, -0.00690067885, 0.045658458, -0.0191052314, 0.0248040762, 0.062111754, -0.0170626771, -0.0101732826, -0.00341930613, 0.0169385429, -0.0163404476, -0.000380863319, 0.0105456822, -0.0276704244, 0.000698954682, -0.0567401685, -0.00117785507, 0.00818715058, 0.00497379294, 0.0280541088, -0.0186989773, -0.00332620624, 0.00187892572, 0.00469449302, 0.00772447232, 0.00382273924, -0.00558035262, -0.0489762, -0.0171303861, 0.029679127, 0.0213396307, -0.00312307919, -0.00688939402, -0.0343284793, 0.00370706967, 0.00550418, 0.014196327, -0.031259004, 0.0088360291, -3.66316453e-05, 0.00510356855, -0.00416974816, -0.0392712392, -0.0195904803, 0.0179993175, 0.000576584716, 0.0248943549, 0.0112791965, 0.021734599, 0.00398919033, 0.000819561421, 0.0150991147, -0.0259777, -0.0143430298, -0.0212380663, 0.00278453389, 0.0514588654, 0.013711079, 0.0223552659, -0.0123230442, 0.00725615118, -0.018439427, -0.0318909548, -0.00499354117, -0.00466063851, 0.0383007415, 0.0211929269, 0.0339899361, 0.0579589307, 0.0288214777, 0.00537158316, 0.0304916352, 0.0477123, 0.00312872161, 0.00552957086, 0.00804609, -0.0163404476, 0.0130791282, 0.0246009491, 0.0219151564, 0.00908429548, -0.0216443203, -0.0434466302, 0.0149749815, -0.0244429614, -0.0124584623, 0.027151322, 0.0151329692, -0.0176156331, 0.0420698784, 0.00506125, -0.0115048932, 0.0333805531, -0.00186058786, 0.00378888473, -0.0104836151, 0.00136828667, 0.0200757291, -0.0255488753, 0.00729000568, 0.0539866686, -0.0173335131, -0.031055877, 0.0124358926, 0.000221288632, -0.0308076106, 0.001422595, -0.0462001301, 0.0292503014, 0.00126672315, -0.0197936073, -0.0530387424, 0.00875139236, -0.0132935401, 0.0124584623, -0.0198726021, 0.0542123653, 0.0107488092, 0.0340802148, 0.00127589214, 0.0112848384, 0.0173109435, 0.0369014218, -0.0127180135, -0.0191165172, 0.0161486045, 0.0269030556, 0.0207753889, 0.0134289581, 0.0314621292, -0.0280766785, 0.0124471774, 0.04049, 0.0113356207, 0.00355190295, 0.00241495552, -0.0514588654, -0.00431645103, 0.0231790598, -0.00929306448, -0.0125036016, 0.0286183506, 0.0225245375, 0.0256165843, 0.012063493, 0.00443212036, -0.0276478548, 0.00708123622, 0.022896938, 0.0221521389, -0.0217007454, -0.0350055695, 0.0391358212, -0.0291600227, 0.0222649872, -0.00379734836, -0.0148395635, 0.0215878971, -0.0187779721, 0.00421206607, 0.0349604301, 0.0156520717, -0.0114428271, -0.00514024403, 0.000266075338, 0.000234513063, 0.0075269877, 0.0364048891, -0.0216217507, 0.0121424869, -0.0133499643, -0.0156069323, 0.035298977, -0.0105287544, 0.00163912284, 0.0175140705, 0.0255940147, 0.0143091753, -0.0167128462, -0.0075552, 0.00142682681, -0.022107, -0.0310107376, -0.0169611126, 0.00922535546, -0.0176946279, 0.000458799215, -0.0399483293, 0.0163855869, -0.0148959877, 0.0157987736, 0.00840720534, -0.0160921793, -0.0425438434, -0.0108503727, -0.00105372188, 0.0285732113, -0.0309655983, 0.0493373163, -0.00222029211, -0.0140947634, 0.0126728741, -0.00525591383, 0.00429952377, 0.0192067958, -0.0131016979, -0.0228517987, -0.0371722579, -0.00507535646, 0.0316201188, 0.0114202565, -0.0128760012, -0.0177397672, -0.0215878971, 0.0284152236, 0.0119393598, -0.0161260348, -0.0357729383, -0.0389326923, -0.0168821197, 0.0547088981, 0.0441688597, 0.00927613769, 0.0240367074, 0.0232919082, 0.0128421467, -0.0522713736, 0.00124838529, 0.0136659397, 0.0325229056, -0.00443212036, 0.0156520717, 0.000521218521, 0.0112171294, 0.00933256187, -0.00546750426, 0.0152458176, -0.010077361, -0.0180444568, -0.0051007471, 0.00361679075, 0.0129098557, -0.0167467017, -0.0107036699, -0.00213424512, 0.0046549961, -0.00842413213, -0.021396054, 0.00791067164, -0.0299725328, 0.0014980624, 0.00249959179, -0.0213396307, 0.00195650896, -0.0235176049, 0.00499072, 0.0077808965, -0.00258846, 0.00459575048, 0.0165999979, 0.0178864691, -0.0165548585, -0.00249677058, -0.00396379968, -0.025571445, -0.0133386794, -0.00127377617, 0.00574962562, -0.0220505744, -0.00287904451, -0.000983191538, -0.00696274545, 0.00293970061, 0.0246235188, -0.0128760012, -0.016724132, -0.00273375213, -0.00334877591, 0.0315749794, -0.00413871463, -0.00938334316, -0.00966546405, 0.0023444253, -0.000403433, -0.000561068067, -0.0443268456, -0.0280541088, -0.0152345328, -0.0141850421, -0.00660163071, 0.0409413949, 0.0382104628, 0.00850876886, 0.0334256925, -0.0177284814, 0.0158551987, 0.0284829326, -0.00180275296, -0.00242341915, 0.0309430286, -0.0406931303, 0.0488407835, 0.0522713736, 0.00854262337, -0.00636464916, 0.0306270532, -0.0165774282, 0.00782039296, -0.00180839538, -0.025571445, -0.0301982295, 0.0427469686, -0.00542800734, -0.002998946, 0.0125600258, 0.00925921, 0.0386167169, 0.0161373187, 0.0042233509, -0.00370989088, 0.0149185574, -0.045387622, -0.0398580506, 0.00616716454, -0.003376988, 0.0369691327, -0.0153699508, 0.00848055631, -0.0566498898, 0.0454779, -0.0195002016, -0.0204594135, -0.00013347849, 0.00078429631, 0.0301756598, 0.0213622, 0.0396774933, 0.0269707646, 0.0336288214, -0.0133951036, 0.0195566248, 0.0373528153, 0.0353441164, -0.0341479219, -0.0145235872, 0.00914636161, -0.00381427561, -0.0241044164, 0.0119732143, -0.00851441082, -0.012548741, 0.0103594819, 0.0244429614, -0.0282346662, -0.0323874876, 0.0211929269, 0.0377590694, -0.0101055736, -0.0272416, 0.0512331687, 0.0122327656, -0.0433789194, -0.00766240573, -0.0186312683, -0.00470577786, 0.00231903442, 0.000701775891, 0.0146702901, -0.0265419409, -0.0432660729, -0.0211365037, 0.00584554672, 0.0283249449, 0.00799530838, 0.0414379276, 0.00370424846, -0.00396379968, 0.0167467017, -0.0115500325, -0.0153022418, 0.00094651588, -0.0405802801, 0.00905044097, 0.00556342537, -0.002313392, 0.0178864691, -0.0153699508, -0.0230549257, -0.013507952, -0.0389778316, -0.00775832683, -0.0201772917, -0.057597816, 0.0477574393, -0.0131806917, 0.0173673667, 0.0239689983, 0.0410542451, 0.0180331729, -6.77972e-05, -0.0101619978, -0.018439427, -0.00571012823, -0.0264516622, 0.0100040101, 0.00523052271, -0.0141737573, 0.0336513892, -0.0217007454, 0.00745363627, 0.0134515278, 0.0188118257, 0.0388649851, 0.0130001344, 0.00446597487, 0.0196920447, 0.0168934036, -0.00362243317, -0.0339673646, -7.74179625e-06, -0.0252329, -0.00354626053, -0.0413702205, 0.0403771549, 0.0158777684, -0.0175479241, 0.0287086293, -0.0318006761, -0.00655084895, 0.00931563415, -0.0126390196, -0.0175817795, -0.00616716454, -0.0181121659, -0.0176269189, 0.0020637149, -0.026948195, -0.0314621292, -0.00525309239, 0.0229533631, -0.0105964635, -0.0280315392, -0.0130678434, 0.0408511162, -0.00518538337, 0.00688939402, 0.00713201798, 0.025774572, -0.0132935401, 0.00708123622, 0.00708123622, 0.0476220213, -0.00726743601, -0.0356375203, 0.0492019, 0.0153360963, -0.0422504358, -0.00951311924, -2.1500704e-05, 0.0172432344, 0.0190036688, 0.0136885094, -0.0285055023, 0.0416861959, -0.014331745, -0.023720732, -0.0283700842, 0.00620101904, -0.00619537663, -0.0193647835, -0.0345090367, 0.0170175377, -0.00211590738, 0.0317781046, -0.0160244703, 0.00556342537, 0.0177059118, 0.00675397599, -0.0322069302, -0.0115218209, 0.0432886407, 0.0109914327, 0.00789938681, 0.00558881648, -0.0171529558, -0.0196130499, -0.0235627443, 0.0227389503, 0.0105738938, -0.0244203918, 0.00769061781, -0.0262936745, -0.0357955098, 0.0347798727, -0.0192857888, 0.000201011193, 0.00699095754, -0.0144220237, -0.0250297729, 0.00286775967, -0.021249352, -0.00991373137, 0.0117700873, 0.0343736187, 0.00389044825, 0.0301305205, -0.00013665235, -0.0159680471, -0.0152458176, -0.025436027, -0.0095018344, -0.0155956475, 0.0108165182, -0.0287763383, 0.00683297, 0.00587940123, 0.0264065228, -0.0208430979, -0.0276252851, -0.0524970703, -0.027354449, 0.0159567613, -0.00106430135, -0.0218700171, 0.0067878305, 0.0419344604, 0.00274644769, 0.0329743, 0.0230436418, 0.0126051651, 0.010421549, -0.00839027762, -0.0174012221, -0.0274447277, -0.00475655962, 0.020978516, -0.0149862664, 0.00766240573, 0.0266322196, 0.0109180817, 0.00249394937, -0.00728436327, -0.00103397341, -0.0102522764, 0.0120973475, 0.00158269866, 0.0211590733, 0.0171303861, 0.0123907533, -0.00388480583, 0.00335441832, 0.0142527511, -0.00864418689, -0.0122553352, -0.0195340551, 0.0135305217, -0.0179428943, -0.00173927576, 0.00776396925, 0.0104666883, 0.00708687864, -0.0150539754, 0.0216443203, -0.00189162116, -0.0230774954, -0.0190149527, -0.00766804814, -0.00789938681, -0.0163968708, -0.000551899138, -0.00783167779, -0.00326978206, -0.00265475828, 0.0248943549, -0.0025912812, 0.000179763956, 0.0144784478, 0.0206174012, 0.013575661, 0.00793324132, 0.0113976868, 0.0159229077, 0.00504996534, 0.025639154, -0.033583682, 0.01014507, 0.0111324936, 0.0114766816, -0.0103876945, -0.0145010175, -0.00193252868, 0.0177849066, -0.00603738893, 0.0217910241, 0.0114315413, -0.0182927232, -0.0133951036, -0.011448469, -0.0140721938, 0.0247589368, 0.00460703531, -0.0074649211, 0.0165774282, -0.0419344604, -0.0208769515, -0.0162727367, -0.018304009, 0.0276704244, 0.00692324853, -0.0363371819, -0.0113751171, 0.0118490811, -0.0426566899, -0.0143655995, 0.0339673646, 0.00412743, 0.00163206982, -0.0193083584, -0.0148395635, 0.00697403029, 0.0127292983, 0.00372681813, -0.00897708908, -0.00779218134, 0.00113130512, -0.00858776271, 0.0401288867, -0.0379847661, 0.0103764096, -0.00425720541, 0.00140284654, -0.0258422811, -0.0081307264, 0.039158389, 0.0249394942, 0.0493373163, -0.00117009669, -0.0132596856, 0.00312025798, -0.0074649211, 0.0352764055, 0.0615249425, 0.00343341217, -0.00896580424, 0.00380299077, -0.0211703572, -0.024059277, 0.0445751138, 0.0294534303, 0.0182588696, 0.00928178, 0.00757212704, -0.0204142742, -0.0409413949, 0.0184055716, 0.000623487344, 0.00528412592, 0.00367321493, -0.0269933343, 0.00706995139, 0.00603174651, 0.00279722945, -0.0303562172, -0.00129070343, 0.0197258983, -0.00721665425, 0.00276478543, -0.0238335803, 0.0155956475, 0.0103425551, 0.0336513892, -0.00466910191, 0.0033798092, -0.00944541, 0.0222424176, 0.0128647164, 0.0009528636, 0.000568826392, -0.0246009491, 0.00358011504, 0.00471706269, -0.0352312662, 0.00930999219, 0.0223552659, 0.0133048249, -0.012131202, 0.00306665502, -0.0103707667, -0.0125148864, -0.0272641703, 0.0117700873, 0.00561702857, 0.00039708527, -0.0127631528, -0.0238335803, 0.00531515898, -0.021249352, -0.0100435065, 0.0316878259, 0.00341648492, -0.0139254909, -0.0196356196, 0.0182927232, -0.0330645777, 0.0261131171, 0.0298596844, -0.0221182834, 0.00074621, 0.0357052311, 0.0221859924, 0.000863995461, 0.0301530901, -0.00230774959, 0.0109067969, -0.0132258311, 0.00907301065, -0.00394123, 0.014331745, 0.012819577, -0.00204819837, -0.0133612491, 0.0222762711, 0.00806865934, -0.0110083604, -0.00761726638, -0.0193422139, 0.043198362, 0.00859340467, -0.0183491483, 0.0163065922, -0.00340237888, 0.0350507088, 0.0234950352, 0.0234950352, -0.0176382028, -0.00564241922, -0.0260002688, -0.00244881, 0.010556967, -0.0164532959, 0.0171191, 0.0265193712, -0.00792195648, -0.00100928778, 0.0126277348, -0.0166902766, -0.00879089, 0.0139706302, 0.0171980951, -0.00734643, 0.00980088301, -0.00546468329, 0.0193873532, 0.0162275974, 0.0183830019, 0.0225245375, -0.0346444547, -0.0199290253, 0.00870625302, 0.0224455446, 0.0210800786, -0.0123794684, 0.0557922423, -0.0455907471, -0.0194663461, -0.0248266459, -0.00932691898, -0.00704738172, 0.0149072725, -0.0454779, -0.0191052314, 0.0121086324, 0.0359760672, -0.00990244653, -0.0125374561, -0.0337416679, 0.0122101959, 0.0150426906, 0.0239012893, -0.01576492, -0.0128985709, -0.0417764746, -0.00312872161, -0.0167354159, 0.0239464287, -0.00416410575, 0.0248943549, -0.0405577123, 0.046403259, -0.00395533582, -0.0203465652, -0.0292277317, 0.0155843627, -0.0165548585, -0.0612089671, 0.0225245375, 0.0334031247, -0.0349152908, -0.0141399028, 0.0181573052, 0.0296565574, -0.0018408394, 0.0102240639, 0.00714330282, 0.0192180797, 0.000404843595, -0.00713201798, -0.0220957138, -0.0210349392, -0.0144784478, 0.00433337828, 0.0161034651, -0.0446879603, 0.00839592051, -0.0133273946, -0.016927259, -0.0532193, -0.00414717849, -0.0666708276, -0.0050584292, -0.0286409203, -0.0105908215, 0.0187779721, 0.0120522082, -0.00600917684, 0.0315298401, -0.025503736, -0.000391090201, -0.00771883, 0.0470803492, 0.00587940123, -0.0121424869, 0.0213283449, -0.0129888495, -0.00126813375, 0.0192406494, -0.0277381334, -0.0074310666, -0.00465781707, -0.00521077449, 0.00661291555, -0.0033149214, -0.0233144779, -0.0339899361, -0.000623487344, 0.00316257612, -0.0111889178, -0.0241044164, -0.0277155638, -0.00742542418, -0.0166225675, -0.0276252851, -0.00953004602, -0.0232467689, 0.0444171242, -0.0311687253, -0.0141399028, 0.0659937412, -0.0118942205, -0.0193647835, -0.0378042087, -0.0353892557, 0.0299273934, 0.014534872, -0.00711509073, 0.0262936745, 0.0129324254, 0.00168567279, -0.0285506416, -0.0116233844, -0.000410838664, 0.0081307264, 0.0164307263, -0.0261356868, -0.013022704, -0.0426792614, -0.0410091057, -0.00540543767, 0.000886565133, 0.0113186929, -0.021396054, 0.00106994377, -0.050872054, 0.0250974819, -0.0291825924, -0.00373528176, 0.00135347538, 0.0192632191, 0.0119844992, 0.0549345948, 0.0144897327, -0.0126277348, 0.0131694069, -0.0167805552, 0.0085200537, -0.00729000568, 0.0180895962, 0.0171078164, -0.0102522764, 0.0198726021, -0.0116121, -0.00489479862, 0.000376278855, -0.0187666863, -0.0241044164, -0.010833445, 0.00168144098, -0.00780910859, 0.00739156967, -0.0180444568, 0.0283249449, -0.00261244015, 0.00320489425, -0.0192519352, 0.0247363672, 0.00978395529, 0.0167805552, -0.0151104, -0.0180106033, -0.00795016903, 0.0234047566, -0.0220957138, -0.0115331057, 0.00914636161, -0.00796709582, -0.0133161098, -0.00578912254, 0.0114823235, -0.0102240639, 0.0116910934, -0.0465386771, -0.00504432293, -0.00858776271, -0.0163404476, -0.00743670901, 0.032703463, 0.0330194384, 0.0218248777, -0.0067878305, -0.0246686582, -0.0231339205, -0.0116233844, 0.00476502301, 0.0106754573, 0.0131242676, 0.0194324926, -0.0123681836, 0.0152345328, -0.0227728039, -0.00990244653, -0.0273770187, 0.0136546548, -0.0255488753, -0.0161034651, 0.00857083499, -0.0158664826, -0.0105005428, -0.00329235173, -0.00241918722, -0.0174802151, 0.0266322196, -0.0281218179, 0.016114749, 0.000862584857, -0.0127857225, 0.00872318074, 0.00609381311, -0.00261949329, -0.0115669603, 0.0164984353, -0.0208882373, -0.00800659321, -0.0141511876, -0.00130763068, 0.0182588696, 0.0176607724, -0.0047311685, -0.0186876934, 0.00341366371, 0.00872882269, -0.0250297729, 0.0109237237, -0.0132709704, 0.011724948, 0.00395251485, -0.0199967343, -0.000935936347, 0.0279864, -0.0108108753, -0.00549007393, -0.0104046213, -0.00392994517, 0.0118152266, 0.021802308, -0.0162275974, 0.0223214105, 0.0102861309, -0.00935513154, -0.000968380249, -0.00647749752, -0.0158326291, 0.000559304841, 0.010077361, -0.00630258257, -0.0051007471, -0.00166028191, 0.00561420713, -0.0175027847, -0.0172883738, 0.0175704937, -0.0110986391, -0.004697314, -0.0175704937, 0.00698531512, -0.00121312018, -0.0150991147, -0.0103820516, -0.0204594135, -0.0132258311, -0.00884167105, 0.00793324132, -0.00990244653, 0.0349604301, 0.00700788479, 0.0218813028, 0.00672012148, -0.0345993154, 0.00483555347, 0.00187187269, -0.0139254909, -0.00567909516, -0.00862161722, 0.0630596802, 0.00210885424, 0.0252554696, 0.0067257639, -0.0133499643, -0.0233370475, 0.0172206648, 0.0213396307, -0.018168591, 0.00810815673, -0.0280766785, -0.0119055053, 0.0410091057, 0.0152571024, 0.0133951036, -0.00805737451, 0.0193309281, -0.00989680365, -0.00897708908, 0.000986012747, 0.0182363, -0.0132145463, -0.00123851106, -0.0178300459, 0.0257520024, 0.00900530163, -0.00692324853, -0.0268127769, 0.00607124344, -0.00549007393, 0.0356375203, -0.00840156246, -0.0207302496, -0.0231339205, -0.0193196442, -0.00205666199, -0.000124309547, -0.025436027, -0.0134966671, 0.000268014934, 0.0231564902, -0.00345033943, -0.0206625406, -0.0044349418, 0.012063493, 0.00115316943, 0.0223552659, 0.0165097192, -0.000622782041, 0.0448910892, -0.0179654639, 0.00091125071, -0.00895451941, -0.0228630826, 0.00733514503, 0.00437569618, -0.00924792513, 0.0202675704, -0.020087013, -0.0225358233, -0.00442365697, -0.00723922392, -0.0182701536, 0.0129437102, -0.00924228318, 0.0220280048, -0.00686118193, 0.00320489425, -0.00165181828, -0.00375785143, 0.0277832728, 0.00329235173, 0.00676526083, -0.0132709704, 0.0121424869, -0.0088360291, -0.0165999979, -0.0238787197, -0.0211703572, 0.0110873543, -0.0173899364, 0.0170965306, 0.0158890523, 0.00702481205, 0.0175817795, -0.0262033958, 0.000287587056, 0.000214940912, -0.0191278011, -0.00919150095, -0.00849184114, -0.0205948316, 0.0250297729, 0.00525309239, -0.00517409854, 0.00586247398, 0.00227812678, -0.0318458155, 0.00237404788, -0.0183491483, 0.0172883738, 0.0178864691, -0.0051628137, 0.0228405129, 0.00521923788, -0.0284152236, -0.0263613835, -0.0166225675, 0.0135305217, -0.00507535646, -0.00733514503, 0.037578512, -0.0217233151, -0.0184732806, 0.0074649211, -0.0116572389, 0.0103764096, -0.00132032612, -0.00308358227, -0.0175704937, 0.0193873532, 0.000198189984, 0.0388875529, -0.00427977508, -0.00846927147, 0.00129211403, 0.0158326291, -0.0108616576, 0.0281669572, -0.0294308607, 0.0034729091, -0.00728436327, 0.0330194384, -0.00747056352, -0.0114823235, -0.018856965, 0.0389326923, 0.0111550633, 0.0178639, -0.0149298422, 0.0298596844, 0.00945105217, 0.00622358872, -0.0103256274, 0.00784296263, 0.00700788479, -0.0230097864, -0.0360437743, 0.00966546405, 0.01261645, -0.0306044836, 0.00998708233, -0.0325003341, -0.0154827992, 0.0159341916, 0.00480169896, -0.018439427, 0.00470295642, 0.0188908204, 0.0358180776, 0.0138690667, -0.0309430286, 0.00752134528, 0.0203578491, 0.0190262385, 0.002502413, -0.0236981623, -0.0129098557, -0.0149298422, -0.0150201209, -0.0300402418, -0.0120973475, -0.000284942187, 0.00400047516, -0.0119844992, -0.00271118246, 0.00439826585, 0.00167861977, 0.00492301118, 0.0247589368, 0.014399454, 0.0146477204, 0.0265645105, -0.011386402, -0.0321392193, -0.0473060459, 0.0198048931, -0.0238787197, 0.0124246078, -0.0458164476, -0.0357955098, -0.0169385429, -0.000195368775, 0.0125600258, 0.0153360963, -0.00489197765, -0.0136546548, 0.00916328933, 0.0124584623, -0.0201660078, -0.0111155659, -0.0120070688, 0.00956390053, -0.00361114834, -0.0153812356, 0.0225019678, 0.00609381311, 0.0179767478, 0.0187554024, 0.0301530901, -0.001816859, -0.0117362328, -0.00243047206, -0.011724948, 0.0168031249, -0.0208882373, 0.000795581145, -0.0174350757, 0.0309430286, 0.0120409233, -0.00226402073, -0.0139142061, -0.0148959877, 0.0123568987, 0.00485812314, -0.00960339792, -0.00290866732, -0.0260002688, 0.0358406492, -0.0172545183, 0.0254585966, -0.0327937417, -0.00257294322, 0.0163630173, 0.0276478548, 0.0278284121, -0.000345069217, 0.0174689312, -0.0113469055, -0.0223439801, -0.010624676, 0.00220477534, 0.0202337168, 0.0180106033, 0.0105400393, 0.0159906168, -0.0161034651, -0.0397226326, 0.0250974819, -0.0293180104, 0.0120860627, -0.0245783795, -0.0125374561, 0.0166338533, -0.0141060483, -0.0221408531, -0.0323874876, 0.00524745, -0.0133499643, 0.00633643707, 0.00206653611, -0.01714167, 0.0104046213, -0.0396097861, 0.00123286864, 0.013778788, -0.0230210721, -0.00678218808, 0.00319360942, 0.0344864689, -0.00930999219, -0.0230887812, -0.0300628114, -0.00288891885, -0.0163178761, -0.034418758, 0.0151104, -0.00540825911, 0.0215089023, -0.00735207275, 0.0138916364, -0.0378267802, 0.0299273934, -0.0115105361, 0.0116910934, -0.00280428235, -0.00555496197, -0.0147605697, 0.0353892557, -0.00761726638, -0.00324439118, 0.00814201124, 0.0177171975, 0.0231790598, 0.0229307935, -0.0111042811, 0.00449136598, 0.0221295692, -0.0100547913, 0.00547596812, 0.0304464959, -0.0363371819, 0.0130114192, -0.0355472416, 0.0204368439, 0.0182475839, 0.0347798727, -0.0360212065, 0.00578912254, -0.0276027154, 0.0286409203, -0.0215201881, 0.000412249268, -0.00611638278, 0.0372399688, 0.0392938107, 0.00225414662, -0.00380299077, 0.0111042811, 0.0416861959, 0.0324551947, 0.0095018344, 0.00853133854, -6.02151958e-05, 0.00825486, 0.0127180135, -0.0343961902, -0.0201772917, -0.0198726021, 0.012198911, 0.0291825924, -0.0318458155, 0.00863854401, -0.0106133912, -0.0146251507, 0.000290584605, 0.0183942877, 0.0186199844, -0.00853133854, 0.0369239934, -0.000702128571, 0.0278284121, 0.0142414663, 0.00964289438, -0.0159341916, -0.0198500324, 0.0101619978, 0.00123921642, -0.00909558, 0.0150201209, 0.00223298743, -0.0357729383, -0.00595839508, 0.0243526828, -0.0379847661, 0.00708123622, -0.0025644796, 0.0052587348, 0.0259325597, -0.0473511852, -0.00787117518, -0.00650570961, -0.016588714, -0.00941155571, 0.0338545181, 0.0131129827, 0.00904479809, -0.0159229077, 0.0156069323, -0.00321053667, 0.0540318079, -0.0122214807, -0.0113186929, 0.00956390053, 0.00930434931, 0.0134289581, -0.00322464271, -0.00762855122, 0.0105287544, -0.00430234475, 0.0190375224, 0.0177623369, -0.0030610126, -0.0151104, 0.0167805552, -0.004181033, 0.011860366, 0.0074649211, -0.00307793985, 0.0226599555, -0.0048129838, 0.00929870736, 0.00977267, 0.00196215138, 0.00210885424, 0.0164194405, 0.0264516622, 0.00689503644, 0.000115493276, 0.0165661443, 0.00336852437, -0.00661291555, -0.010489258, 0.00964289438, 0.0138803516, -0.00231198128, 0.00410486, -0.00900530163, 0.0155392233, 0.00282826275, -0.0167128462, -0.00929306448, 0.0214863326, 0.0232467689, -0.0113976868, -0.00306947622, 0.00425156299, -0.0111042811, -0.0336513892, 0.0114879664, 0.0227502342, 0.0350958481, 0.0178187601, 0.0147831393, 0.0066919094, -0.0250072032, -0.00779782375, -0.00529258931, 0.0107995905, 0.0254585966, 0.0141737573, -0.0309430286, -0.00184789242, -0.00972753111, 0.020222431, -0.0304239262, -0.00280710356, -0.00862161722, 0.00489197765, -0.00105231127, -0.00133866398, 0.021599181, 0.00586811639, -0.00605431618, -0.017073961, -0.00842977501, -0.0193534978, -0.0161937438, -0.0213847701, 0.0024713797, -0.0150539754, 0.00600353442, -0.0105626089, 0.0126051651, -0.00154743355, 0.0093438467, -0.0101958523, -0.0223439801, -0.028798908, -0.00903915614, 0.0177059118, 0.0362469032, -0.00732386, 0.00489762, -0.018721547, -0.00199600589, -0.00831128377, 0.00457882322, -0.0248040762, 0.0277381334, -0.00212013908, 0.00998708233, -0.00362807559, 0.00498789875, 0.0130904131, 0.00234724651, -0.00434184168, -0.009185859, -0.0139932, -0.00748184836, 0.0129662799, 0.00376349385, 0.0189698134, -0.0246912278, -0.00131750491, 0.0169159733, 0.00518538337, -0.010009652, 0.0124810319, -0.00533490768, 0.0155053688, 0.022107, -0.00973881595, 0.0205158368, 0.00536029832, -0.0111889178, 0.0123230442, -0.00128576637, 0.0140609089, 0.0190262385, 0.0416410565, 0.00943976734, -0.011995784, 0.001156696, -0.00946233701, 0.00673140632, 0.00107911276, 0.0422730073, 0.00552675, 0.0178187601, 0.010077361, 0.00908429548, 0.00294534303, -0.000295169069, -0.0231790598, -0.0175592098, -0.00198048912, 0.00779782375, 0.00037804211, 0.0140270544, 0.0044772597, -0.00396379968, 0.00407946901, 0.0102635613, 0.0166112836, -0.0181573052, 0.00555496197, 0.0323649161, 0.028866617, 0.0133386794, 0.0157310646, -0.00802352, 0.0332902744, 0.0128308618, -0.00158410927, 0.0192293655, -0.0188682508, 0.00346726668, 0.00433619926, -0.00557471, 0.013575661, -0.0184507109, 0.00468602916, 0.00214411947, 0.0014980624, -0.027151322, -0.0108052334, 0.0164081566, 0.0134176733, -0.00419796025, -0.0119167902, -0.00893195, -0.0148169938, -0.00275067938, 0.016588714, -0.00203550281, -0.035163559, 0.0110704266, -0.0433563516, 0.017073961, -0.0138464971, -0.0242624041, 0.0208092425, -0.0207866728, -0.014196327, -0.0186651237, -0.00951876119, -0.00956390053, -0.00622358872, 0.00673140632, 0.00209756941, -0.00738592725, -0.00821536314, 0.014196327, -0.00133443216, 0.00878524687, -0.00922535546, -0.0105795367, 0.00533208624, -0.0178977549, 0.0052164169, -0.00973881595, -0.00659034587, -0.00257717515, 0.00182250142, -0.0172206648, -0.00845234469, -0.0252554696, -0.00358011504, -0.0203691348, -0.00800095, -0.00643800059, 0.0065339217, 0.0205722619, 0.0113976868, -0.0394292288, -0.00373528176, 0.0135869458, 0.036608018, 0.0178526156, -0.00789374486, 0.00204960885, -0.0252103303, 0.00787681714, 0.0215089023, -0.0151104, -0.00512895919, 0.00981781, -0.0101507129, 0.00531798042, 0.00862161722, 0.0402417369, 0.0264290925, 0.00775832683, 0.00392430276, 0.00345033943, 0.0105287544, 0.00478759268, -0.0048891562, -0.0105738938, -0.00962596759, 0.0161486045, 0.0301982295, 0.0115500325, 0.000563889276, 0.00545339845, -0.0334708318, 0.00651135202, -0.0101168584, -0.00629129773, -0.00722229667, 0.0028141567, -0.0368111432, -0.000835783372, -0.0134289581, -0.0141624724, -0.00615023728, -0.00544775603, -0.0295211393, 0.0126503045, 0.00266322191, -0.011036572, 0.011928075, -0.0112679116, 0.0115782451, -0.019883886, 0.0232467689, -0.0039073755, -0.00286352797, -0.0321392193, 0.0141060483, 0.00645492785, -0.0115782451, -0.0110535, 0.0052164169, 0.0155392233, 0.00248689647, 0.00365910889, -0.0127744377, -0.0051825624, 0.0042233509, -0.0273995884, -0.0134966671, 0.014331745, -0.0135192368, -0.00555778295, 0.017073961, 0.00810251385, 0.00709816348, -0.00935513154, 0.0291825924, 0.0014345852, 0.00954697374, 0.00666369731, -0.015629502, 0.00822100509, -0.00515435031, -0.00986859202, 0.00598660717, 0.0442817062, 0.0039073755, -1.02323957e-05, 0.00704738172, -0.0212042127, -0.0129211405, 0.00475655962, 0.00951311924, -0.0278284121, -0.0102353487, -0.000268720236, -0.0154715143, 0.00103608926, -0.021249352, -0.0155956475, 0.0153699508, 0.00171670609, 0.0108898692, -0.0210800786, -0.0199403111, 0.0074649211, 0.00688939402, 0.00738028483, 0.00780910859, 0.00601481926, 0.00841849, 0.0114315413, -0.00100858242, -0.00160103652, -0.00243329327, 0.00485248072, 0.0261356868, 0.0123456139, -0.00730129052, 0.0328840204, -0.0111268507, -0.00369014242, -0.0317555368, -0.0106811, 0.0205271225, 0.00126672315, -0.00238110102, 0.00709252106, 0.0296565574, -0.0543477833, 0.00102268858, -0.0106754573, -0.00660163071, 0.017209379, -0.0247363672, -0.00347855152, -0.00330081536, -0.00457036, 0.00751006044, 0.0316652581, -0.00908429548, -0.0232016295, 0.00386505737, -0.00388762704, 0.00796145387, 0.00976138562, -0.00212296029, 0.0283249449, 0.00938334316, 0.00307793985, 0.0216330364, 0.0197823234, 0.0071376604, -0.000268367585, -0.0212719217, 0.00569884339, -0.00164476526, 0.0275801457, 0.00800659321, -0.0220392905, -0.00434466312, 0.0245332401, -0.00826614443, -0.00800095, 0.016588714, -0.00285365363, 0.0133951036, 0.000741272874, -0.0127067287, -0.013022704, -0.00233314047, 0.0204142742, -0.00399201177, 0.0106641725, -0.0196920447, 0.0232919082, 0.0064097885, -0.00222452381, -0.00651699444, -0.0132032614, -0.00888681, -0.0345993154, -0.0089940168, 0.000386505737, -0.00659034587, -0.0060599586, 0.00534055, -0.0137675032, -0.0204819832, 0.00554649811, 0.0443719849, 0.00375503022, -0.0122891897, -0.0127292983, -0.00999272522, 0.00437287521, 0.00913507678, -0.0078655323, 0.0197146144, -0.0240367074, 0.0143091753, -0.00165181828, -0.00613895245, -0.00791067164, -0.00920842867, 0.000637946068, -0.0191390868, 0.0138803516, 0.00652827928, -0.0317329653, -0.0161034651, 0.00753263, 0.00361114834, 0.00475373818, -0.00436723279, 0.00642107334, -0.0094284825, 0.00054308289, -0.0180218872, -0.0125261713, -0.0143204601, -0.0251651909, -0.000856237137, 0.0169611126, 0.0259551294, 0.0144107388, 0.0238787197, 0.000410486, -0.00483837444, 0.0127180135, 0.0303110778, -0.00032073629, 0.00814765319, 0.025639154, 0.00353215449, -0.0123568987, -0.0112284143, -0.00770190265, 0.0296565574, 0.01364337, -0.0123456139, -0.00105019531, 0.0174576454, -0.00777525408, 0.0189359598, -0.00695146061, -0.0146477204, 0.000672858499, 0.0257971417, 0.0104836151, -0.00476502301, -0.00741978176, 0.00720536942, 0.0209333766, 0.00869496819, 0.00312307919, -0.015561793, 0.00784860551, 0.0245332401, -0.0122440504, 0.000765958452, 0.00017156481, 0.0184055716, 0.00895451941, -0.00635900674, 0.0063138674, -0.00508099888, -0.01035384, -0.0154150901, 0.000911956, -0.0171078164, 0.0148169938, -0.0137336487, -0.00103820523, 0.0142301815, 0.00684989709, -0.0111607052, -0.0108447298, -0.0178300459, -0.00827742927, 0.0251651909, 0.00392430276, 0.0366982967, 0.018304009, 0.0186876934, 0.0050245747, -0.00570448581, -0.00188033632, 0.0110422149, -0.00898837391, -0.00287058088, -0.00236558425, -0.0181008819, -0.0180106033, -0.0129211405, 0.005997892, 0.0186312683, 0.0234950352, 0.00302151567, -0.00531798042, -0.00533772865, -0.00143952225, -0.00476502301, -0.0543929227, 0.0189811, 0.0349604301, -0.000907724199, -0.00275773252, -0.00908993743, -0.0160244703, 0.034418758, -0.0136095155, 0.015494084, -0.00522205932, -0.0157310646, 0.0234498959, 0.0348024443, 0.0011122619, 0.0031569337, 0.0168482643, 0.0128647164, 0.00589068606, -0.00255883718, -0.0180670265, 0.00858212, 0.000554720347, 0.0185974147, -0.0066919094, -0.0101507129, -0.00292277336, -0.000613613112, 0.0070417393, -0.0082887141, 0.00242906157, -0.0133612491, -0.00543929217, -0.00514588645, -0.0266096499, 0.0185184199, 0.0106585305, -0.00373246055, -0.00230492838, 0.00837335084, 0.00344469701, 0.00167861977, 0.0264065228, 0.0141060483, -0.0232919082, 0.0182588696, 0.00873446558, -0.00717715733, -0.00266322191, 0.00977831241, 0.013372534, -0.000811803096, -0.0163178761, -0.0102409916, 0.00602610409, 0.0145574417, 0.0124584623, -0.0230887812, 0.0175930634, -0.0141511876, 0.000167509323, 0.0124471774, -0.00175761362, -0.00387069979, -0.0243978221, -0.00609945552, 0.0248492155, -0.0151216844, -0.0104441186, -0.00358575745, -0.0182475839, -0.00433337828, -0.0134515278, 0.0253006089, -0.00629694, 0.0129662799, -0.00235571014, -0.00622358872, -0.00695710303, -0.00581169222, -0.00219349051, 0.00105019531, 0.00319078821, -0.0056283134, -0.0127857225, -0.000528624165, -0.00169554702, 0.0144333085, -0.0270384736, 0.0105343973, -0.0142414663, -0.00618973421, 0.0223214105, -0.0226486716, -0.00597532233, -0.0162050277, -0.0182250142, -0.0150426906, 0.00355190295, -0.00585683156, 0.00826614443, -0.00199600589, 0.00319643063, 0.00737464242, 0.00862161722, 0.0104046213, 0.0369014218, 0.00195791945, -0.00828307215, -0.018168591, -0.0138916364, -0.0285506416, 0.022626102, 0.00193393929, -0.00286211725, 0.000213001331, -0.00812508352, -0.0115331057, -0.0244203918, 0.0256165843, -0.00709252106, 0.00284660049, -0.0134853823, 0.00343059096, -0.0262033958, 0.00517974095, 0.0198951717, -0.0096598221, -0.0357503705, 0.0146702901, 0.0165097192, 0.0151216844, 0.00296227029, -0.0221295692, -0.0215089023, -0.00729000568, 0.0082887141, -0.0163178761, -0.0127744377, 0.00107347034, 0.00962032471, -0.00994194299, -0.0148169938, -0.00669755181, 0.0126390196, -0.00428823894, -0.00839027762, -0.00441519311, 0.0144784478, 0.00990808848, 0.0104554035, 0.00204255595, 0.00649442477, 0.0075608422, -0.0139593454, 0.00817586575, -0.0050245747, 0.00732950261, 0.00465781707, 0.0024135448, -0.0255488753, 0.0213396307, 0.00565934647, 0.0106754573, 0.00323874876, 0.00138521392, 0.0197597537, -0.00136828667, -0.0203239955, -0.00491454732, -0.00968239177, -0.00722793909, -0.010556967, -0.00973881595, 0.0295211393, 0.0092704948, -0.0034108425, 0.00471424125, 0.0328614525, 0.00413307222, -0.00259692362, -0.015911622, -0.000196603054, 0.00180557417, 0.00460421434, -0.0162953064, 0.0285506416, -0.0186651237, -0.00284236879, 0.0105964635, -0.0195566248, 0.00718279975, -0.0110817114, -0.00709816348, -0.00605431618, -0.000792759936, -0.0194212068, -0.00102762564, 0.0231000651, -0.0138013577, 0.0104328338, 0.0105626089, -0.0214411933, -0.0166225675, 0.0136095155, -0.000143352721, 0.0105908215, -0.00798966549, 0.00540825911, -0.00805173256, 0.000297461287, 0.0156182172, -0.00778653892, 0.009394628, -0.0176156331, -0.0149749815, -0.0027252885, -0.0259325597, -0.0291148834, -1.51419617e-05, 0.0162388831, -0.00788246, 0.0131919766, -0.01364337, 0.00520513207, -0.0230662115, 0.00461267773, 0.00862725917, -0.00412743, -0.00026060926, 0.0162727367, 0.00734078744, -0.0127857225, -0.00822100509, 0.0222198479, -0.0151555389, 0.00744235143, 0.00841849, 0.00947362185, 0.00488351379, 0.0154715143, -0.00176889845, 0.00738028483, -0.00827742927, 0.0134176733, -0.000642177882, 0.0182814393, -0.0238110106, 0.00442647794, 0.0275575761, -0.0148169938, 0.00761162397, -0.0131806917, -0.00732950261, -0.000814624305, -0.000288468698, -0.00143317459, -0.00313436403, 0.0130791282, 0.000962737831, -0.00607688585, -0.00403997209, -0.00528694689, 0.00199036347, 0.00277324906, -0.00652827928, 0.0087626772, -0.0197146144, -0.0255263057, 0.0206286851, 0.00625180081, 0.0196807589, 0.0074649211, 0.00046373636, -0.00358011504, -0.00036852053, 0.00409639673, -0.014873418, -0.00354343932, -0.00788246, -0.00703609688, 0.0251426212, 0.00668062456, 0.019748468, -0.0152458176, 0.00173081213, -0.00538568944, -0.00233737216, 0.0176607724, -0.025368318, 0.00230916, 0.0341704935, -0.00247420091, -0.00893759262, -0.0234724656, 0.0248266459, -0.000104561084, 0.0119506447, 0.0349152908, -0.019669475, -0.00945669506, -0.0357052311, 0.00923099834, 0.0127292983, 0.0205496922, -0.00252216146, 0.0223101266, -0.000446456426, 0.0263162442, -0.0172883738, -0.0176043492, 0.00810815673, -0.00181262719, -0.0299499631, 0.0215540417, -0.021317061, -0.00539697427, -0.0197258983, 0.0326131843, -0.00735771516, 0.000230104924, -0.00657906104, -0.00332620624, 0.0109462934, 0.00108898699, 0.0372851081, 0.00193252868, -0.0307399016, -0.0107713789, 0.0186651237, -0.0154376598, 0.00537158316, 0.0105343973, 0.0021906693, 0.0103143426, -0.00321335788, 0.00898837391, -0.0187102631, 0.00919714384, -0.019601766, 0.0130452737, 0.00175056059, -0.00367885758, 0.000178706, -0.0134515278, 0.00808558706, 0.0159906168, 0.0158326291, 0.0164420102, -0.00643235818, 0.000706713, -0.00311461557, 0.00286352797, 7.49824612e-05, 0.0109462934, 0.00262090378, -0.00748184836, 0.0106698154, 0.00214553, 0.00995322783, 0.00625744322, -0.0164420102, 0.0248492155, -0.0104497606, -0.00629129773, 0.00147831393, -0.00662420038, 0.0136772245, 0.0230662115, -0.00369014242, 0.00507535646, 0.00708687864, 0.00274785818, 0.00618973421, -0.0100547913, 0.00131962087, -0.00667498214, -0.00189867418, -0.00727872085, 0.0305819139, 0.00737464242, 0.00624051597, -0.00326696085, -0.00392994517, 0.0100717191, 0.0190262385, 0.0273770187, 0.0223326962, -0.010765736, -0.0140270544, 0.0191278011, 0.00118843454, -0.0162840225, -0.0293405801, -0.00200870121, 0.00316257612, 0.0260228384, 0.0137449335, 0.0155053688, 0.000464441662, 0.0100491494, 0.0178864691, 0.0204029884, -0.0100491494, -0.000864700763, 0.00251934025, -0.00519666821, -0.0275801457, 0.013022704, 0.00409921771, -0.0188005418, 0.0023754586, 0.0157310646, -0.00699095754, -0.0141511876, -0.0120070688, -0.0149185574, -0.0197258983, 0.00456471741, 0.00375785143, 0.0330194384, -0.00703609688, -0.00670319423, -0.00960904, 0.00775832683, -0.000272246747, 0.00850876886, -0.0147492848, 0.00673140632, -0.00372117572, 0.00624051597, 0.00123286864, -0.00295380666, 0.00100646657, -0.0150088361, 0.00488351379, -0.0366982967, 0.00323874876, -0.016588714, 0.010698027, -0.00132314733, -0.0113581903, 0.00889245328, 0.00334031228, -0.0116685238, 0.00132103148, 0.00425720541, 0.00642107334, -0.015629502, 0.000697896758, 0.00363653922, 0.0183378626, -0.00972753111, -0.00744799385, -0.0293857194, -0.00653956411, 0.027083613, -0.010009652, -0.0196469054, -0.0304690655, -0.0280089695, 0.0144445933, -0.0281218179, 0.0199854504, -0.020910807, -0.00482144719, -0.00656213379, 0.0177510511, -0.0027873551, -0.0121876262, -0.00264629466, -0.0082887141, -0.00648314, 0.0133048249, -0.0205045529, 0.00458446564, -0.00854262337, -0.00718844216, -0.00677654566, -0.00875703525, 0.00462678401, 0.00314847, -0.0204255581, -0.00969367661, -0.000200305891, -0.00701352721, -0.00895451941, -0.0158100594, 0.00291995215, -0.010692385, 0.0325003341, -0.0109745059, -0.0136320852, -0.00550700119, 0.000791349332, -0.0169723984, 0.00332620624, 0.0174463615, 0.0108729424, -0.0156069323, 0.00158834108, -0.0037776, -0.0291600227, 0.00294534303, -0.0232919082, 0.00713201798, 0.0266547892, -0.025503736, 0.0128985709, 0.022626102, -0.000745504687, -0.0218474474, -0.025774572, -0.0192857888, 0.0035377969, 0.00372399692, -0.016182458, -0.00549571635, -0.0164194405, -0.00604867376, 0.00161232136, -0.00483273203, 0.00934948865, 0.0017519712, 0.00244598882, 0.0166789927, -0.0444171242, 0.00387916341, 0.00742542418, 0.000930293929, 0.0167015623, 0.036134053, -0.00527284108, 0.00539697427, -0.00539697427, 0.0121424869, -0.00399483275, 0.00320207304, -0.0157197807, -0.0046888506, 0.041483067, 0.0134289581, -0.00275067938, 0.0152909569, -0.00874575, 0.0211703572, 0.0207979586, -0.00141413137, -0.00063230365, -0.0279186908, 0.000121488345, 0.0107262395, -0.0108616576, -0.00997015554, 0.00914072, 0.00897708908, -0.0101507129, -0.00536876218, -0.0243301131, -0.00926485285, 0.0229420774, -0.0200080201, -0.0164871495, -0.0127744377, -0.00877396204, -0.000859058346, -0.00259269169, 0.0140721938, 0.00323874876, -0.000932409836, 0.00456753839, -0.000773716776, -0.00923099834, 0.00888681, 0.0109350085, -0.00448854454, -0.0184507109, -0.000847068208, -0.031958662, 0.0135869458, -0.00797273871, -0.027015904, 0.00403432967, 0.0131355524, -0.00676526083, -0.0473963246, -0.0103425551, -0.00196074066, 0.0164081566, 0.0205609761, 0.00388480583, -0.0345767476, -0.0297242664, 0.00644364301, 0.0141173331, 0.00803480484, -0.0133838188, 0.00102057261, -0.0261582565, -0.00944541, -0.0116008148, -0.00515435031, 0.00319078821, 0.0214863326, 0.0157197807, -0.00882474426, 0.0204932671, 0.0102522764, 0.00471706269, 0.00960339792, -0.00397508452, 0.0243752524, 0.012954995, -0.00292841578, -0.0103876945, 0.0262259655, -0.0132935401, 0.00426566927, 0.00186905148, -0.0170852467, 0.0114315413, 0.00517974095, -0.00359139987, 0.00245163124, -0.00705302414, 0.00674269116, -0.0116008148, 0.00237404788, 0.0203691348, -0.0116685238, -0.00872882269, 0.00357729383, -0.00271400367, -0.0378719196, 0.0190713778, -0.00255037355, -0.000258140702, 0.00823793281, 0.0071038059, -0.00332620624, 0.00616152212, -0.00771883, -0.0260002688, 0.0146251507, 0.0030920459, -0.00780910859, -0.00630822498, 0.000341542705, 0.00967674889, -0.0265419409, -0.0110535, -0.0167128462, -0.0192293655, -0.00850312598, 0.00236981618, 0.0124020381, -0.0099250162, -0.0112058446, -0.0200418737, 0.00651699444, 0.000848478812, -0.0121086324, 0.00773011474, -0.00246009487, 0.0198951717, 0.0364048891, -0.00248407526, 0.00525309239, -0.0104949, 0.00575808901, -0.0178300459, -0.0137675032, -0.0128308618, 0.00947926473, 0.0187441166, 0.00757212704, 0.00874010753, 0.00428823894, 0.00512613822, -0.0169611126, -0.0126954438, 0.00839027762, -0.0100942887, -0.00710944831, 0.00586811639, -0.0180557426, 0.00119337172, -0.00332620624, -0.00312307919, -0.00582861947, 0.000781475101, 0.000476079149, 0.00336852437, -0.0317329653, 0.0104159061, 0.0165661443, -0.00989680365, -0.00325567601, 0.0038424877, 0.0215089023, 0.0158890523, 0.00727872085, -0.0124697471, -0.0085200537, -0.0102297068, -0.0213847701, -0.0132258311, 0.00376349385, -0.0168256946, -0.00928742252, 0.00354908174, -0.00211308617, 0.00792195648, 0.0137336487, 0.00666933972, 0.00467192335, -0.0246912278, 0.00319078821, -0.0154602295, -0.00639850367, 0.00864982884, -0.0214299094, 0.00561702857, 0.0101507129, 0.0182024445, 0.0215653274, 0.0157310646, -0.00689503644, -0.00504714437, -0.0200644433, 0.00521077449, -0.0195114855, 0.00647749752, 0.0132596856, 0.000582579814, -0.00412178738, -0.0158326291, 0.00372399692, -0.0141173331, -0.0368111432, 0.0184281413, -0.00866675656, -0.00969931856, 0.00132173672, -0.0133838188, 0.0224568285, -0.00658470346, -0.00995887071, -0.018507136, -0.00175479241, 0.00652827928, -0.00893759262, 0.0207866728, 0.0139819151, 0.00881345943, 0.00912943482, -0.00580605, -0.0104554035, 0.0112114875, 0.000689080451, 0.00685553951, 0.00243470399, -0.0192067958, 0.0362243317, 0.00161091075, 0.000591043441, 0.00189162116, -0.0200644433, -0.000774422078, 0.00310615194, -0.0249394942, 0.0104271909, 0.0190826617, 0.0123117594, -0.00538004702, -0.0220167208, -0.00114117935, -0.0264516622, -0.00944541, -0.00523898657, 0.00220477534, 0.000595980557, -0.0231790598, -0.00726743601, 0.00925356802, 0.0222875569, 0.00197907863, 0.0208430979, -0.00721101183, 0.0084128473, 0.00639286125, -0.000635124859, -0.00630258257, 0.00784296263, 0.03209408, -0.0210575089, 0.0113299778, -0.0322069302, 0.000350006332, -0.0191052314, 0.0203804187, -0.00214976189, -0.00500764744, 0.00396379968, -0.00153896993, -0.014331745, 0.0259777, 0.0201772917, -0.017209379, -0.0142414663, -0.0290471744, -0.0133951036, 0.0096598221, -0.0144107388, 0.0052784835, 0.00256589032, -0.00167297735, -0.00152627449, -0.00423745718, -0.0177397672, -0.00240508118, 0.0241044164, -0.0115895299, -0.000949337089, 0.0022865904, 0.0091125071, -0.0177510511, -0.00408229046, 0.0149185574, -0.0207866728, -0.0285732113, -0.0187328327, -0.00232608733, -0.0250974819, -0.0177736208, -0.00811379869, 0.00138944574, 0.0028762233, 0.00953568891, -0.0154376598, 0.0106698154, 0.00426566927, 0.0134966671, -0.00540543767, 0.0108447298, 0.0338319466, -0.0198613163, -0.0236530229, -0.00130551483, 0.0135869458, -0.0195114855, -0.00230210717, 0.0116685238, -0.00801787805, 0.0110873543, 0.0128647164, 0.00386505737, 0.00491736876, 0.00932127703, -0.0197033286, 0.0052164169, -0.0052784835, 0.0222311318, -0.00220900727, 0.0262259655, -0.0199177414, -0.0190826617, 0.0125713106, -0.00488351379, 2.60906791e-06, -0.01261645, -0.0111437785, 0.0104836151, 0.0186651237, 0.00730129052, 0.0216556061, 0.0151329692, -0.00311461557, -0.0219377261, -0.000777243287, 0.0115669603, 0.00603174651, 0.0124020381, -0.00402304484, 0.00719408458, -0.00842413213, 0.00107347034, -0.00529258931, 0.00354343932, 0.0198387466, -0.0223552659, 0.0204481278, -0.0121086324, 0.00492865359, -0.0318458155, 0.0136208, 0.00393276615, 0.00748749077, 0.0130339889, -0.00189444236, -0.0143543147, 0.00505278679, 0.0130452737, 0.0313041434, 0.0127970073, 0.0285506416, -0.00710944831, 0.00716023, 0.0153473811, -0.010212779, 0.0160696097, 0.00246291608, -0.00120747776, 0.0272416, -0.00730129052, -0.0143655995, 0.00276478543, -0.020222431, 0.000498296169, -0.00316821854, -0.0243752524, 0.0245106705, 0.00171529548, -0.0247137975, -0.0279186908, -0.012198911, 0.000695428171, -0.00963725243, 0.00422617234, -0.0090278713, 0.00223721936, 0.0304916352, -0.00385659374, -0.00915764645, -0.00919714384, 0.0116121, -0.0215766113, -0.00471142028, 0.0203465652, 0.00315129128, -0.029002035, 0.00308640348, -0.0210236553, 0.0265645105, -0.0136772245, -0.00722229667, 0.0164081566, 0.0071376604, 0.0144220237, -0.0152458176, 0.00267309626, -0.00924792513, -0.00509228371, 0.00936641637, 0.00574680418, -0.00451957807, 0.00185776665, 0.00739721209, 0.014534872, 0.00158975169, 0.0103199854, -0.015358666, 0.0034983, 0.0185184199, -0.00316539733, -0.00284660049, -0.0184619967, 0.00269707642, 0.0408962555, 0.0119167902, -0.0065339217, -0.00727872085, 0.0127744377, 0.000371341739, 0.00625744322, -0.00683861226, -0.0108785843, -0.0235627443, 0.021463763, -0.0264290925, 0.00918021612, 0.0108616576, 0.00456189597, -0.00477066543, -0.00646621268, 0.0250297729, -0.0029030249, 0.00447161729, -0.000668626686, -0.00451111421, -0.0010621855, -0.0177623369, 0.00182955444, -0.00514870789, -0.0234950352, 0.00870625302, 0.00682732742, -0.00458728708, -0.00597532233, -0.0288214777, -0.0156182172, -0.0151216844, 0.0250749122, -0.0149749815, 0.000597391161, 0.0473963246, 0.0129211405, 0.014534872, 0.0124358926, -0.0408511162, 0.0339222252, -0.0162614528, -0.0149072725, -0.0242624041, 0.0222988408, 0.0066919094, -0.00638157642, 0.0160921793, -0.00279864, -0.00301023084, 0.0148621332, 0.00318232458, -0.0153360963, -0.00277889147, 0.0114597538]
|
01 Mar, 2023
|
Python calendar module | itermonthdates() method
01 Mar, 2023
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions. itermonthdates() method returns an iterator for the month (1–12) in the year. This iterator will return all days for the month and all days before the start of the month or after end of the month that are required to get a complete week.
Syntax: itermonthdates(year, month)
Parameter:
year: year of the calendar
month: month of the calendar
Returns: an iterator for the month.
Code #1:
Python3
# Python program to demonstrate working
# of itermonthdates() method
# importing calendar module
from calendar import Calendar
obj = Calendar()
# iterating with itermonthdates
for day in obj.itermonthdates(2018, 9):
print(day)
Output:
2018-08-27
2018-08-28
2018-08-29
2018-08-30
2018-08-31
.
.
.
2018-09-26
2018-09-27
2018-09-28
2018-09-29
2018-09-30
Code #2:
Python3
# Python program to demonstrate working
# of itermonthdates() method
# importing calendar module
import calendar
# use with firstweekday = 5
obj = calendar.Calendar(firstweekday = 5)
# iterating with itermonthdates
for day in obj.itermonthdates(2018, 4):
print(day)
Output:
2018-08-30
2018-08-31
2018-09-01
2018-09-02
2018-09-03
.
.
2018-09-30
2018-10-01
2018-10-02
2018-10-03
2018-09-01
2018-09-02
2018-09-03
.
.
2018-09-28
.
.
0018-03-31
0018-04-01
0018-04-02
.
.
2018-04-28
2018-04-29
2018-04-30
2018-05-01
2018-05-02
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module | itermonthdates() method
|
https://www.geeksforgeeks.org/python-calendar-module-itermonthdates-method/?ref=lbp
|
Pandas
|
Python calendar module | itermonthdates() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position, Python calendar module | itermonthdates() method
|
GeeksforGeeks
|
[-0.0308826789, 0.019825248, -0.00920729153, 0.0661926717, -0.0119038289, 0.00479625585, -0.0134338569, 0.0265638772, -0.0169279613, 0.0162334815, -0.0124355406, 0.0105636995, -0.00479896879, 0.0153219756, -0.0255872644, -0.00278877304, 0.00231809984, 0.0191633198, 0.0303184129, -0.00424826751, -0.0212684646, 0.0107318936, -0.0149530331, 0.0142585523, 0.0159947537, -0.0170039199, 0.0180890467, -0.0329444185, 0.00612553488, 0.0264770687, 0.023178285, 0.0137051381, 0.018240964, -0.00716725551, -0.0559924878, -0.00747109065, 0.00710757356, 0.0506970733, 0.00653245673, -0.0256523732, -0.01303236, 0.0114806304, 0.0360695794, 0.0146817509, -0.0465301909, 0.030535439, 0.000984073384, -0.0297107436, -0.0148119666, -0.0242417082, 0.0311865136, -0.0210297368, 0.0282349717, 0.00895228703, 0.0114914812, -0.0119363833, -0.00218788488, 0.00954368059, -0.0444033444, -0.0147685613, 0.0575116649, -0.00510009099, -0.00564265391, -0.0151158012, 0.0437088646, 0.0134338569, -0.0462263562, 0.0396721959, 0.00783460774, -0.0215723, 0.0358959585, 0.00448699482, 0.00835546851, -0.00625575, -0.00703704031, -0.0375019461, -0.00971730147, -0.00379251456, -0.0263251513, -0.00281861401, -0.0306005459, -0.0020712337, 0.0121751111, -0.0240463857, 0.0273885746, -0.0126200123, 0.0281481612, -0.0182735175, 0.0308392737, 0.0334652774, 0.0325320698, 0.0513915569, -0.0311648119, -0.0118495729, -0.0288426429, -0.00188133679, 0.0324886665, 0.0642394423, -0.0390645266, -0.0148879252, -0.00283760391, -0.00830121152, -0.00296510616, -0.0130106574, -0.00857791863, 0.000625981891, 0.00603329903, -0.0144864284, 0.0108512575, -0.0187835265, 0.0297541469, 0.00378166325, -0.00644564675, -0.000326724577, -0.0214854889, 0.00355649972, -0.00899569225, -0.000713470159, 0.0131951291, -0.0201073792, 0.0392381474, 0.00410177512, 0.0249578916, 0.058466576, -0.0227876399, -0.0188377835, -0.0115782917, 0.01320598, -0.0154413395, -0.0209212247, 0.0164505057, -0.028951155, -0.0109163653, -0.0467472151, -0.0054337671, 0.0124246897, 0.00337745389, 0.0243502222, -0.00788886379, -0.00642937, -0.00818184763, -0.00196272111, 0.020281, -0.0090770768, -0.00629372941, -0.0447505862, -0.0194780063, 0.0381530225, 0.0229178555, -0.0130974678, -0.0028728703, -0.0504800491, 0.00223671552, 0.000632763957, 0.0143453619, -0.0246540569, 0.0147251561, 0.0143236602, 0.00346697681, -0.0164613575, -0.0276707057, -0.00990719814, 0.0177960619, 0.0195756685, 0.0357874483, -0.00658128783, 0.0116108451, -0.000805027667, 0.0020061261, 0.0211708024, -0.0397807099, -0.0245021395, -0.0283000786, -0.00755790062, 0.0409309417, 0.0164722092, 0.0299928747, -0.000729068881, 0.00852366257, -0.0159296468, -0.0337474123, 0.0026260044, 0.00559382327, 0.0363300107, 0.0270196311, 0.0365036316, 0.0600725599, 0.0278443266, -0.00296239322, 0.00350224343, 0.0355487205, 0.00706959423, 0.0120665981, -0.0101079466, 0.00859962124, 0.00891973358, 0.020400364, 0.0154630421, 0.00421842653, -0.00960336253, -0.0379794, 0.00582712516, -0.0126959709, -0.0164613575, 0.018750973, 0.00477726618, -0.0214529354, 0.0356138274, 0.00953283, -0.0253702402, 0.0211708024, -0.00861589797, 0.0124680949, -0.0141283367, 0.00317128, 0.0077857771, -0.0246106517, 0.0117953168, 0.0493949242, -0.0190005526, -0.0382181294, 0.0137268407, 0.0104768891, -0.0249361899, 0.00206309534, -0.0419726633, 0.0260430183, 0.00226655649, -0.0197384376, -0.0331180394, 0.00570776127, -0.00674948189, 0.0117085064, -0.0218001753, 0.0556886531, 0.00845313, 0.0219954979, 0.00834461674, 0.0142259989, 0.020910373, 0.0306656528, -0.0175139289, -0.0239595771, 0.0171883926, 0.0249795951, 0.0192501303, 0.0194780063, 0.0412781835, -0.0181216, 0.0307958685, 0.0362649038, 0.0120557472, -0.00134419953, 0.000891837699, -0.067017369, -0.00565893063, 0.00616351422, -0.0248276778, -0.00814929418, 0.0239378735, 0.011556589, 0.034854237, 0.0112961587, 0.000446597056, -0.0182735175, 0.0183820296, 0.00939718913, 0.0295371227, -0.016374547, -0.042211391, 0.0317073725, -0.0115348864, 0.0273885746, -0.0162660349, 0.0118495729, 0.00934293307, -0.00885462575, -0.00791599229, 0.0139113124, 0.0200205706, -0.0181433018, -0.0109814722, 0.0225272104, -0.00735172676, 0.0194997098, 0.037458539, -0.0235472284, 0.00674948189, -0.0157126207, -0.0179805327, 0.0238944683, -0.0060170223, -0.0102381613, 0.0147251561, 0.0391296335, 0.0203244053, -0.00412890362, 0.00196000841, -0.000166414204, -0.0154413395, -0.0157126207, -0.00445715385, 0.0140306754, -0.0132602369, 0.00558297196, -0.0286256168, 0.0203895122, -0.00846398063, 0.0169605147, -0.00253376854, -0.0269545242, -0.025500454, -0.00524387, 0.0067711845, 0.035527017, -0.0277792197, 0.034398485, -0.00190439564, 0.00470944587, 0.0075524752, -0.00163582701, 0.000243814196, 0.0247842725, -0.0165915731, -0.0319678038, -0.0391730405, -0.00297324453, 0.0249795951, 0.0256957784, -0.00376267359, -0.0277358145, -0.0142368497, 0.0294286106, 0.0121968137, -0.0243285187, -0.0253702402, -0.0395419821, -0.010824129, 0.0533881858, 0.0524766818, -0.00527642388, 0.00566435652, 0.0360261761, 0.00984751619, -0.0539958552, -0.00536052138, 0.00771524385, 0.0348325372, -0.0138570555, 0.0194671564, 0.000538832741, -0.00583797647, 0.00440561073, -0.00737885525, 0.020118231, -0.00525472127, -0.0107698729, -0.00982581358, 0.000209904014, 0.00460093329, -0.0256957784, -0.0209537782, 0.00228825887, 0.000483559154, -0.0105202943, -0.0090770768, -0.00359447906, -0.0183169227, -0.00285388064, 0.0204763226, -0.0211816542, 0.00725949137, -0.0286907237, 0.00320383371, -0.00848568324, 0.00275621936, 0.00941889174, 0.0235255267, 0.0205088761, -0.025500454, -0.00712385029, 0.00852908846, -0.0290162619, -0.00144050445, -0.0105040176, 0.00691767642, -0.010482315, 0.0127719296, 0.000708722742, -0.0110520059, 0.000832834, 0.0158862416, -0.0117736142, -0.0173620116, -0.00929410197, -0.0101296492, 0.0419726633, -0.00819812529, -0.00579457125, -0.00583255105, 0.010710191, -0.017676698, -0.00926697347, -0.0433616228, -0.0314686447, -0.0199880153, -0.0199120566, -0.00378166325, 0.0368074663, 0.032358449, 0.00418858556, 0.0294286106, -0.0106939143, 0.0123161776, 0.0264987703, 0.010254438, 0.00186234701, 0.040627107, -0.0303835198, 0.0445335619, 0.0496553555, 0.00500242971, 0.0128478892, 0.0268243086, -0.000890481286, 0.0198578015, -0.00462263543, -0.0277575161, -0.0408441313, 0.050046, 0.00280505, -0.00877866708, 0.0208995212, 0.011784466, 0.0401279517, 0.0107481703, -0.00958166, -0.0121642593, 0.00235743565, -0.0517387949, -0.0332916565, 0.0142259989, 0.00625575, 0.0403015688, -0.0241331961, 0.0232216902, -0.0550375767, 0.0391296335, -0.0267592017, -0.0138679072, 0.00477184029, -0.00959793758, 0.0218978375, 0.0143670645, 0.0399760306, 0.0231999885, 0.0232216902, -0.0208886713, 0.0432748161, 0.0454450659, 0.0327273905, -0.0342248641, -0.0304052234, 0.00831748918, -0.00832834, -0.0240029823, 0.0227876399, -0.0048396606, -0.0175247807, 0.00200205692, 0.0256957784, -0.0288426429, -0.0191741716, 0.0290596671, 0.0418858528, -0.0128153348, -0.0274970867, 0.0398458168, 0.026802605, -0.0344852954, 0.0202158932, -0.0238293614, 0.00936463475, 0.0063751135, 0.00107291806, 0.0182518158, -0.0385436676, -0.0393683612, -0.018523097, -0.00298138289, 0.0282349717, 0.0160056055, 0.0220823083, -0.000483559154, -0.00589765841, 0.0147577105, -0.0101133715, -0.0126634175, 0.00481253257, -0.0422547981, 0.0103629511, 0.00670065125, -0.00923442, 0.000401835627, -0.00724321418, -0.0159730501, -0.00792684313, -0.0439475924, -0.00394714484, -0.0350495614, -0.0402147584, 0.0435569473, 0.00392544223, 0.0264987703, 0.0236557405, 0.0508706942, 0.018750973, 0.00354022277, -0.0210839938, -0.0189028904, -0.00361618144, -0.0334652774, 0.00743311131, -0.00112446153, -0.0216048528, 0.0357440412, -0.00871898513, 0.0100102853, 0.00578914583, 0.0153870834, 0.0335086845, 0.0119580859, 0.015354529, 0.0301881973, 0.00569691, 0.000202782874, -0.0253919419, -0.00422385195, -0.0185665023, -0.00123433059, -0.0393900648, 0.0556452498, 0.0152460169, -0.023178285, 0.019315239, -0.0230263676, -0.00296239322, 0.00109665515, -0.00608755555, -0.0172317959, -0.00818727352, -0.0154413395, -0.0221474171, -0.00554227969, -0.0311865136, -0.014052378, -0.0022123002, 0.0209863316, -0.0146709, -0.019543115, -0.0152894221, 0.0395419821, -0.00282403966, 0.00475556357, 0.0151375039, 0.0271715485, -0.00784003362, 0.015300273, 0.0113612665, 0.0589006245, -0.00837717112, -0.0324886665, 0.0441212133, 0.021474639, -0.0252834298, -0.00955453236, 0.00259616342, 0.0156258103, 0.0178720206, 0.0166458283, -0.0358308516, 0.0566001572, -0.00602787361, -0.0179262776, -0.0222450774, 0.00774237234, -0.00889803097, -0.0232433937, -0.0330963358, 0.00441646157, -0.0044815694, 0.0335303843, -0.0238293614, -0.00343984854, 0.00385762192, -0.00475556357, -0.0182843693, -0.0172860529, 0.0348108336, 0.00797024835, -0.00202375953, 0.0045276871, -0.0163636953, -0.0369810835, -0.0324452594, 0.0285171047, 0.0144321723, -0.0293418, 0.00672777975, -0.0291030724, -0.0333567634, 0.0360695794, -0.0285171047, 0.00455481512, 0.0200314205, -0.0180673432, -0.00789971557, -0.00303292647, -0.0328793116, -0.0131408731, -0.00101527083, 0.0254787523, 0.00829036068, 0.0333350636, -0.00179045752, -0.0136074768, -0.0153979342, -0.0276924092, -0.00743853673, -0.0236991458, 0.00964676775, -0.023460418, 0.0199771654, 0.0112527544, 0.0281264596, -0.0178828724, -0.0247842725, -0.0497421622, -0.0265204739, 0.0177743603, -0.00957623497, -0.0133687491, 0.00966304448, 0.0496553555, 0.000385897845, 0.039607089, 0.0166675318, 0.021474639, 0.0120665981, -0.00492104515, -0.0172100943, -0.0243936274, -0.0101730535, 0.0211056955, -0.01303236, 0.00758502912, 0.0248710811, 0.0103195459, -0.00663011847, 0.00338559225, 0.00399055, -0.0105419969, 0.0158319846, 0.00606585294, 0.0295588244, 0.0294720158, 0.0299060661, -0.00335032563, -0.0053767981, 0.0144647257, -0.00888718, -0.0076826904, -0.0101079466, 0.0243502222, -0.0223318879, 0.0113829691, 0.00717268093, 0.0139764193, 0.017166689, -0.012804484, 0.0112202, -0.0113504156, -0.0346155129, -0.0278877318, -0.00725949137, -0.0165373161, -0.0221691187, 0.00239541498, -0.0156041086, -0.00141880196, 0.00671692844, 0.0205848347, 0.00453311298, -0.00165752962, -0.00518690096, 0.0175790377, 0.00454667676, 0.00895228703, 0.0124897975, 0.0106342323, 0.000404548453, 0.0164830592, -0.0323367454, 0.0151375039, -0.00692852773, 0.0200314205, -0.0087949438, -0.0214420855, 0.00210514385, 0.01699307, -0.00799195096, 0.0192067251, 0.00512450654, -0.017448822, -0.0176115911, -0.0214637872, -0.00359719177, 0.0262383409, 0.00141473266, -0.0112853078, 0.0184796918, -0.034962751, -0.0271932501, -0.0298409574, -0.015300273, 0.0309260841, -0.0037762376, -0.0268460102, -0.0137376916, 0.00889803097, -0.0371981114, -0.0122185154, 0.0240463857, 0.0133796008, -0.00585425319, -0.0175573342, -0.00603329903, 0.0130757652, 0.000869457, 0.0142151471, -0.00614181161, -0.00674405647, 0.00625575, -0.00177960622, 0.0466604084, -0.0362214968, 0.0102056079, -0.00373825827, 0.00218381546, -0.0139764193, -0.00283217826, 0.0385436676, 0.0255655628, 0.0379359946, 0.0231565833, -0.0155498516, -0.00228283321, 0.00584882777, 0.0224404, 0.0504800491, -0.0121642593, -0.00488849124, -0.0015028991, -0.0212250594, -0.0311214067, 0.0417773426, 0.0229395591, 0.0118495729, 0.00116922299, 0.00458736904, -0.023568932, -0.0450110175, 0.0137702459, 0.0115891425, -0.00104578992, 0.00695023034, -0.0220606066, 0.000850467302, 0.016146671, 0.0180239379, -0.0311214067, 0.00644022133, 0.0160273071, -0.0210405886, 0.0147468587, -0.0225489121, 0.00323096197, 0.0063751135, 0.0371981114, -0.0141717419, 0.00657043653, -0.0162551831, 0.0290596671, -0.00220280536, 0.00683629233, -0.00362703274, -0.0308826789, 0.00392001681, 0.00644564675, -0.0376321599, 0.0107427444, 0.0252400246, 0.0218869857, -0.0134013025, 0.0109000877, -0.00463619968, -0.0177526567, -0.0229829624, -0.000294509897, 0.00410448806, -0.00808961224, -0.006006171, -0.0249361899, 0.00801365357, -0.0235255267, -0.0184254348, 0.0228093434, 0.0077857771, -0.0190873612, -0.0278009214, 0.0220714584, -0.0435135439, 0.0231131781, 0.0413866974, -0.0125115, -0.00316585437, 0.023178285, 0.0181758553, 0.0153328264, 0.0288643446, -0.00931580458, 0.0151375039, -0.0210839938, -0.00678203581, 0.00579999713, -0.00231674337, 0.00136047637, 0.0101676285, -0.00619064225, 0.0326188803, 0.00426725717, -0.0164179523, -0.00617979094, -0.014052378, 0.0542128831, -0.00344798714, -0.0179154258, 0.00771524385, 0.00738970609, 0.0280396491, 0.0286256168, 0.0289945602, -0.00819812529, 0.00251884805, -0.0264987703, -0.00182165485, 0.0044246004, -0.0124029871, 0.0130649135, 0.0220389031, -0.00582712516, 0.00617979094, 0.0236340389, -0.0126091614, -0.0103249718, 0.0219086893, 0.0315120518, -0.00316042872, 0.00458194362, -0.0165807214, 0.0215723, 0.0116651021, 0.0126525657, 0.0341163538, -0.040627107, -0.021930391, 0.00760673126, 0.0224404, 0.026911119, -0.0132602369, 0.0495685451, -0.0370461941, -0.0136834355, -0.0295588244, -0.0122727724, -0.00305191614, -0.00272095273, -0.0489174686, -0.0351797752, 0.0146491975, 0.050089404, -0.00973900314, -0.00890888274, -0.0364168212, 0.00410448806, 0.00608755555, 0.0181324519, -0.0161683727, -0.0112093491, -0.0414518043, 0.00294340355, -0.0145949414, 0.0244370308, -0.00784003362, 0.0266072825, -0.0332699567, 0.0442948341, -0.00311159808, -0.0246106517, -0.0291030724, 0.0137810968, -0.0181433018, -0.0528673269, 0.0274319779, 0.0439692959, -0.0481361784, -0.0198469497, 0.0148336692, 0.0290379655, -0.000718895812, 0.0149313305, 0.00871355925, 0.00857791863, 0.00531711616, 0.00420757523, -0.0282566734, -0.0236340389, -0.0114046717, 0.00307361875, 0.00976070575, -0.0457923077, 0.00874068774, -0.0164722092, -0.0186099056, -0.059030842, 0.00370570435, -0.0661492646, 0.00357277645, -0.0171341356, -0.0138679072, 0.0146383466, 0.00686884578, 0.00422927737, 0.0350929648, -0.0241114944, -0.00935378391, -0.0161792245, 0.024480436, -0.00104511168, -0.0102490131, 0.0140740806, -0.017676698, -0.00497258874, 0.015864538, -0.0256306697, 0.00215126178, -0.00471758423, -0.00311973644, 0.00336117693, -0.011838722, -0.0321631283, -0.0461829528, -0.00867015496, -0.00272909133, -0.00514620868, -0.0123704337, -0.0277792197, -0.00243610726, -0.0166132748, -0.0196950324, -0.0039552832, -0.021702515, 0.0412130766, -0.0220931601, -0.00833919086, 0.0622428134, -0.0129346987, -0.00857249368, -0.0307741668, -0.0290813707, 0.0316856727, 0.0199229084, 0.011784466, 0.0342248641, 0.0224404, 0.0147360079, -0.0263034478, -0.0197167341, 0.0104877399, 0.00810588896, 0.0131083187, -0.0141825937, -0.0188052282, -0.0291464776, -0.0429709777, -0.00316856708, -0.00480710715, 0.0103466744, -0.0209646299, 0.00433779, -0.0562963225, 0.0257608853, -0.0280179475, 0.015636662, 0.00348867918, 0.0199880153, 0.0207150504, 0.0361997932, 0.0142368497, -0.00929410197, 0.0177635085, -0.00120584597, 0.00969559886, -0.0234821215, 0.0279528387, 0.0340729468, 0.0035673508, 0.0230697729, -0.0102273105, -0.00776950037, 0.000127841369, -0.0173511598, -0.0132276826, -0.00505126035, 0.000916931254, -0.0136725847, 0.0120448954, -0.00889803097, 0.0256957784, -0.00811131485, 0.00037063827, -0.0267809033, 0.0208778195, 0.00188269315, 0.0158102829, -0.0106396582, -0.00746566523, -0.0087949438, 0.0102707148, -0.0173186064, -0.0276924092, 0.00368671468, -0.00578914583, -0.0139330141, -0.00419401098, 0.0107535962, -0.00283760391, 0.00840429869, -0.0494817346, -0.0015395222, 0.000327233225, -0.02821327, 0.00433236454, 0.0340512469, 0.0273451693, 0.0190656595, -0.00870270841, -0.0170039199, -0.0244153291, -0.0121425567, 0.00792684313, 0.00387661182, 0.0115240356, 0.0202375948, -0.00215804391, 0.013998122, -0.0254570507, -0.0136942873, -0.0228744503, 0.0126200123, -0.0266723912, -0.0214312337, 0.00642937, -0.0222450774, -0.013542369, -2.22535547e-07, -0.00212684646, -0.00720523484, 0.0177201033, -0.0314252414, 0.0178828724, 0.00272909133, -0.0210948437, 0.0115891425, 0.00480168127, 0.000187184196, -0.0110574309, 0.0180347897, -0.0210297368, -0.0160815641, -0.00991262402, -0.00239270227, 0.0150832478, 0.0155932568, -0.00118414348, -0.0111116879, 0.00298680854, 0.00886005163, -0.0246757586, 0.0114480769, -0.0104551865, -0.00108987314, 0.00450327201, -0.0260430183, 0.000116735791, 0.0244587343, -0.0162877366, -0.00802450441, -0.012630864, -0.0111116879, 0.00921271741, 0.0183603279, -0.00607127836, 0.0178720206, 0.0104497606, -5.61213456e-05, 0.00533610582, -0.0125657562, -0.01699307, -0.00495902449, 0.0246323552, -0.00871355925, -0.00243339455, 0.00631000614, -0.00129875983, -0.000417434319, -0.0122293672, 0.0126851201, -0.00290813693, -0.00265991455, -0.015528149, 0.00936463475, -0.00334761292, -0.0150506943, -0.00724864, -0.0223969948, -0.00865930319, -0.000899297942, 0.00347240246, -0.00364873535, 0.0322499387, 0.0155715542, 0.0202484466, 0.00732459873, -0.0261298269, -0.000164040495, 0.0137376916, -0.0214854889, 0.00363788405, -0.0126851201, 0.061591737, -0.00617436552, 0.0245455448, 0.0172317959, -0.0168085974, -0.0201833379, 0.0143562136, 0.00992347486, -0.019825248, 0.00788343884, -0.014508131, -0.0254787523, 0.0363517106, 0.00965761952, 0.0148879252, -0.0125115, 0.0121100033, -0.0103195459, -0.0120014912, 0.0107590221, 0.0112093491, -0.0155932568, -0.000454396417, -0.0169713665, 0.0378925912, 0.0110737085, 0.00156529387, -0.0148336692, 0.0104497606, 0.00292983954, 0.0405837037, -0.00700991228, -0.0135640716, -0.0237208493, -0.0102435872, -0.0052927006, 0.00864845235, -0.0223101843, -0.0187726747, -0.00377081195, 0.0166675318, -0.0105040176, -0.011784466, -0.00674405647, 0.00875696447, 0.00242525595, 0.0210080352, 0.020856116, -0.00265177595, 0.0363300107, -0.0106288064, -0.00210650032, -0.0176441446, -0.0207801573, 0.00437848223, 0.0028159013, -0.0155172981, 0.0232216902, -0.0177960619, -0.0109272161, -0.0139113124, 0.00236693048, -0.0360261761, 0.0123161776, -0.00244288938, 0.0235038232, -7.16776412e-05, -0.00593021233, -0.0098203877, 0.000511365477, 0.0309477858, 0.00418858556, 0.00516248588, 0.00255140197, 0.000918965845, -0.00335032563, -0.0112961587, -0.0163636953, -0.0140957832, 0.000392340764, -0.0162226297, 0.0117953168, 0.00981496274, 0.00801365357, 0.01303236, -0.0260430183, 0.000475759822, 0.00818727352, -0.0174054168, -0.0017945267, -0.00224485388, -0.0268894155, 0.0304486286, 0.00718895812, 0.00619606813, 0.0121317059, -0.000650736329, -0.0217133667, 0.00431066193, 0.00285388064, 0.0154413395, 0.0184796918, -0.00452497415, 0.0201507844, 0.000724999642, -0.0168303, -0.0216916632, -0.00750364456, 0.0150832478, -0.00899569225, 0.000569691, 0.0379142947, -0.0214095302, -0.0264770687, 0.00252834288, -0.00778035168, 0.0101079466, -0.0137919486, -0.0028918602, -0.0126200123, 0.0228527486, -0.00367043773, 0.0298626609, -0.00874611363, 0.00870270841, 0.00225706166, 0.0267374981, -0.0117953168, 0.025326835, -0.0306439511, 0.0055178646, -0.0240897909, 0.0225272104, -0.010254438, 0.00298680854, -0.0145949414, 0.0338776261, 0.00846398063, 0.0203895122, -0.0152134625, 0.026911119, 0.0101567768, 0.0110086007, 0.00294069084, 0.00252291723, 0.00114955509, -0.024306817, -0.0314035378, 0.00661926717, 0.015864538, -0.0355704203, 0.00917473808, -0.0292549897, -0.0146709, 0.026628986, 0.0100970948, -0.0117410608, -0.00101459259, 0.0144430241, 0.0389994197, 0.0109597696, -0.0342682712, -0.00131842773, 0.0238510631, 0.0124680949, 0.00674405647, -0.0242851134, -0.0198578015, -0.0173728634, -0.0101947561, -0.0341597572, -0.014334511, 0.00814929418, 0.0134772621, -0.0141717419, 0.0026938247, 0.00392272975, -0.00948942453, 0.0101730535, 0.0134881129, 0.0173837151, 0.0159404967, 0.0121859619, -0.00601159642, -0.0317507796, -0.0518690087, 0.0212359112, -0.0109543446, 0.0124246897, -0.0385002606, -0.0344201885, -0.015072397, -0.000156919356, 0.0128261866, 0.0178611688, -0.0154413395, -0.00855079107, 0.0143236602, 0.014616644, -0.0203895122, -0.00909335352, -0.0136183277, 0.00734630134, -0.0154955955, -0.0121751111, 0.0131842773, 0.00340729486, 0.0227659382, 0.0122293672, 0.0281264596, 0.00128655217, -0.0196624789, -0.00365144806, -0.014280255, 0.0131951291, -0.027649004, -0.00307633146, -0.00859962124, 0.0220823083, 0.0128587401, 0.00182029838, -0.00771524385, -0.0171232838, 0.00748736784, 0.00994517747, -0.00978240836, -0.00527913682, -0.0238076579, 0.0359610654, -0.0204763226, 0.0156475138, -0.026802605, -0.000471012405, 0.0209320746, 0.0222450774, 0.0324235559, 0.00419129804, 0.0303618181, -0.00887090247, -0.0323150456, -0.0169496648, 0.00907165091, 0.0168954078, 0.0162660349, 0.00602787361, 0.014562387, -0.0177526567, -0.0331831463, 0.0150506943, -0.0215940028, -0.00392001681, -0.0261732321, -0.0121100033, 0.0197384376, -0.0108892368, -0.0230263676, -0.0288643446, 0.0106342323, -0.000135301612, 0.0218761358, -0.00330963358, -0.0156258103, 0.0196299255, -0.0315771587, 0.00703704031, 0.000811809674, -0.0210188851, 0.0035212331, 0.0110140266, 0.040562, -0.00881664641, -0.0276924092, -0.019315239, 0.000200409166, -0.0161249693, -0.0303184129, 0.0141717419, 0.00139167381, 0.024024684, -0.00981496274, 0.00564807933, -0.041755639, 0.0306439511, -0.0149530331, 0.00606042705, -0.00058562879, -0.0119797885, -0.0234170128, 0.0480059646, -0.0105040176, -0.00644564675, 0.000659213867, 0.0194454528, 0.0209646299, 0.025608968, -0.0114697795, 0.00374910934, 0.0181975588, -0.0101025207, 0.00184471381, 0.0235038232, -0.0246106517, 0.0167651922, -0.0300579835, 0.0182301123, 0.0121425567, 0.0422982, -0.0287992377, 0.00269518117, -0.0367640592, 0.023460418, -0.0152785704, 0.00715097878, -0.0117627634, 0.0269979276, 0.0341597572, 0.000891837699, 0.00502413232, 0.0140740806, 0.0450544208, 0.025023, 0.00237778178, 0.0116868038, 0.000279250322, 0.0123921363, 0.00711842487, -0.0357006378, -0.0214854889, -0.0261949357, 0.010200182, 0.0273885746, -0.0238076579, 0.00588138169, -0.00679288711, -0.0183494762, -0.00278877304, 0.0228744503, 0.0248927847, -0.00871355925, 0.0210731421, -0.0159622, 0.0186858661, 0.0251098089, 0.0135749234, -0.0101187974, -0.0271715485, -0.000379115809, -0.0153219756, -0.00959251169, 0.0190222543, 0.006402242, -0.0302099, 0.0097552808, 0.0168737061, -0.0241983049, 0.0060170223, -0.00473386096, -0.00466332771, 0.0141283367, -0.0397807099, -0.0111333905, -0.0172317959, -0.00236828695, -0.00856164191, 0.0329010114, 0.0129564013, 0.0189571474, -0.0173403099, 0.0241766013, -0.0100048594, 0.030426925, -0.00965219364, -0.0153979342, 0.00410448806, 0.0158536863, -0.00673320517, -0.0050268448, -0.00628287811, 0.00697735837, -0.00119770749, 0.0116868038, 0.0143019576, 0.0070424662, -0.0211165473, 0.0192175768, -0.0148879252, 0.0102815665, 0.00407464709, -0.0127827814, 0.0249144863, -0.00481524551, 0.00350495614, 0.0103032691, 0.00325809, 0.00202918518, 0.0227659382, 0.0337257087, 0.00078196876, 0.00585425319, 0.00632085744, 0.000102917395, -0.00686884578, -0.0148011148, 0.00602244772, 0.0162117779, -0.0104877399, -0.00154766056, -0.0110520059, 0.00993975159, -0.00618521683, -0.0168194491, -0.00372469402, 0.0172860529, 0.025326835, -0.00667352322, -0.0127176736, 0.00381421694, -0.00590308383, -0.0234821215, 0.00139167381, 0.0196841806, 0.0113721173, 0.029515421, 0.0146057922, 0.00399326254, -0.0273885746, -0.00212684646, -0.00413161609, 0.0075416239, 0.0264553651, 0.0236991458, -0.0239161719, 0.00738428067, -0.00958166, 0.0238944683, -0.0315771587, 0.00367315067, 0.00312787504, 0.0092181433, 0.00322824903, -0.000887090282, 0.0195973702, 0.00961963926, -0.00750907, -0.0138679072, -0.0197709911, -0.0240029823, -0.0168737061, -0.0292549897, 0.00193559309, -0.012750227, 0.00590850972, -0.000350970367, 0.00844770391, -0.00578372041, 0.0213227216, -0.00711299945, -0.0350495614, -0.034854237, -0.0132493852, 0.0201616362, 0.0299494714, -0.00736257806, 0.00872441102, -0.0265204739, -0.00134962518, -0.0123053258, 0.00579999713, -0.0307741668, 0.0254787523, 0.00458736904, 0.00826323219, -0.00663554389, 0.0161900762, 0.0193477925, 0.000610722345, -0.00735172676, -0.0104009304, 0.000896585116, -0.00860504713, 0.0048396606, -0.00437305681, 0.0170473251, -0.0238293614, 0.00389288855, 0.0148879252, 0.00198035454, -0.0122619206, 0.0166783817, -0.00494546071, 0.013824502, 0.0222450774, -0.0148011148, 0.0170798786, 0.0124355406, -0.0116651021, 0.0180239379, -0.00145271211, 0.0179479793, 0.0205197278, 0.0355704203, 0.0119906394, -0.00488577876, 0.00169143977, -0.00323096197, -0.00575116649, -0.00289728562, 0.0382832363, 0.000823339156, 0.0150832478, 0.00775322365, 0.0113395639, -0.00625032419, -0.00175383443, -0.0253485367, -0.00469316868, -0.00343171018, 0.00095423247, -0.00575659191, 0.0215940028, 0.00396342156, 0.000315703772, 0.00791599229, 0.0111225387, 0.015636662, -0.0166783817, 0.0177526567, 0.0444901548, 0.0262600426, 0.00520860357, 0.0102327354, -0.0214637872, 0.0261081252, 0.00906622596, 0.00210921327, 0.0264987703, -0.0172752012, -0.000788750767, 0.00785088446, -0.00386033487, 0.0170147717, -0.0137702459, 0.0102707148, -0.000280776294, -0.000870135205, -0.0245672464, -0.0158970915, 0.0229612608, 0.00916931219, 0.000788750767, -0.00680916384, -0.00921271741, -0.0142477006, -0.00334218726, 0.0227442347, -0.000867422379, -0.0359393656, 0.0081926994, -0.0330746323, 0.0111008361, -0.00973357819, -0.0148879252, 0.0195865203, -0.0200314205, -0.0113395639, -0.0279528387, -0.00875696447, -0.014052378, -0.0061580888, 0.0108295549, 0.00264363759, -0.00394985778, 0.00212413375, 0.0192175768, -0.00533339288, 0.0030139368, -0.0129998066, -0.0119038289, 0.0081926994, -0.0168194491, 0.00457923068, -0.0129129961, -0.00519503932, -0.011730209, 0.00646192394, -0.0130540626, 0.000758231618, -0.0255221575, 0.00242118677, -0.0141825937, 0.00019549219, -0.011502333, 0.0157560259, 0.025782587, 0.0145732388, -0.0351580754, -0.00265041972, 0.0168411508, 0.0351797752, 0.014790264, -0.00294340355, -0.0024198303, -0.0317507796, 0.0076826904, 0.0117085064, -0.0133361956, -0.00287558325, 0.00622862158, -0.00636426266, 0.00709672226, 0.0116216969, 0.0413866974, 0.0238510631, 0.0108892368, 0.00317399274, 0.00762843387, 0.0204980262, 0.0110140266, -0.000258056476, -0.0101839053, -0.015582406, 0.0175898876, 0.0336823, 0.0118604247, 0.00667352322, 0.00488577876, -0.0326405838, 0.00242525595, -0.0120448954, -0.00486407615, -0.00459279492, 0.00649447739, -0.0386738814, 0.00824153, -0.0186099056, -0.00973900314, 0.0101676285, 0.00651618, -0.0244587343, -0.00356463809, 0.00540121319, -0.0158862416, 0.0119906394, -0.0147794122, 0.0168520026, -0.01699307, 0.0188377835, 0.000298409577, 0.000354022282, -0.0304486286, 0.0118604247, 0.00638596481, -0.000183793178, -0.0109651955, 0.0115131838, 0.00914218463, 0.0109706214, 0.00710757356, -0.00903909747, -0.00293526519, 0.00922899414, -0.0202375948, -0.0140849324, 0.0138570555, -0.0166892335, -0.0018162292, 0.0228961539, 0.00640766742, 0.000571386539, -0.00499700382, 0.0228744503, 0.00227876403, 0.00776407449, 0.00476370193, -0.0115999943, 0.0106016789, -0.0130432118, -0.00837717112, 0.00782918185, 0.0390211232, 0.00826865807, -8.14904e-06, 0.00320925936, -0.00991804898, -0.00671692844, 0.00651075458, 0.00552871544, -0.0206499435, -0.00205766968, -0.00762300845, -0.0121751111, 0.00899026636, -0.0199880153, -0.00694480492, 0.00607670425, -0.00204410567, 0.01320598, -0.0182518158, -0.00570776127, 0.00431066193, 0.00634256, 0.00912590791, 0.0112310518, 0.00643479545, 0.00933750719, 0.0166241266, -0.00381692988, 0.00616351422, -0.000537815446, 0.00184471381, 0.0261081252, 0.0144430241, -0.00081859174, 0.034962751, -0.0095653832, 0.00202647224, -0.0264553651, -0.00698820967, 0.0196190737, -0.00492918352, -0.00043371119, 0.00948399864, 0.0301881973, -0.048960872, 0.00437848223, -0.0122836232, -0.000578168547, 0.0221257135, -0.0294937175, 0.00651618, 0.0118495729, 0.0093320813, 0.0024279689, 0.0350929648, -0.0130432118, -0.0190222543, 0.00535238255, 0.00299223419, 0.00047406432, 0.0178286154, 0.00193288026, 0.0400194377, 0.00631543202, 0.00349139213, 0.0244587343, 0.0239595771, 0.00957623497, 0.00230317935, -0.0089631388, 0.0124789458, -0.00172128074, 0.0256306697, 0.000263990747, -0.0212250594, -0.000417095202, 0.0307307616, -0.0101350741, -0.0122836232, 0.0167760439, -0.00209564902, 0.00330963358, -0.00801365357, -0.00708587095, -0.01320598, -0.00875696447, 0.021984648, -0.0116216969, 0.00260294531, -0.0207259022, 0.0226574261, -0.00316585437, -0.00252020452, -0.00779120298, -0.00695023034, -0.00817099679, -0.0321631283, -0.0144104697, -0.00472843554, -0.00166973728, -0.0066463952, 0.00118753454, -0.0151049504, -0.0185990557, -0.000545953866, 0.0319461, -0.00733545, -0.00837717112, -0.016602423, -0.00406650873, 0.000771795691, 0.0083337659, -0.00503227068, 0.0209971834, -0.0172317959, 0.0180022363, 0.00125467661, 0.00203868, -0.00710757356, -0.000118346528, 0.00752534717, -0.0224404, 0.0064130933, 0.00865387823, -0.0302967113, -0.0102218846, 0.0116759529, 0.00391459092, 0.00616893964, -0.00475013815, 0.00874068774, -0.00783460774, 0.00350766885, -0.0144972801, -0.0128478892, -0.0170364734, -0.025500454, -0.0045304, 0.0192067251, 0.020400364, 0.0132710878, 0.0113178613, 0.00268432987, -0.00257853, 0.0129455505, 0.0307958685, -0.00204546191, 0.00358362775, 0.0098692188, 0.0117193582, -0.014052378, -0.0176549964, -0.00671692844, 0.0284954011, 0.000592071738, -0.0158536863, -0.00131435855, 0.0232216902, -0.00789429, 0.0183494762, -0.0102490131, -0.0188486334, -0.00359176612, 0.0295371227, 0.0203678105, -0.00506211165, -0.000982717, 0.0108458316, 0.0218761358, 0.0090608, -0.00426183129, -0.0153111238, 0.00735715264, 0.0189679973, -0.00502413232, 0.00254733278, -0.000296883634, 0.0155498516, 0.00753619848, -0.00402581645, 0.00846398063, -0.0117736142, -0.0135640716, -0.0143887671, -0.00738428067, -0.0180673432, 0.00545275677, -5.925804e-05, 0.0058759558, 0.00689597428, 0.020682497, -0.00756332651, -0.00726491679, -0.0194237512, -0.0023343768, 0.0249795951, 0.00103900791, 0.031273324, 0.0243719239, 0.016092414, 0.0109814722, -0.000344357861, -0.00134419953, 0.0157343224, -0.0081926994, 0.00255140197, -0.00101594895, -0.02606472, -0.0252617281, -0.0109272161, 0.000693124079, 0.0225055087, 0.0124246897, -0.00181758567, -0.00597904297, -0.00962506514, -0.0127285253, -0.00496716285, -0.048049368, 0.0290596671, 0.0305788442, -0.000433372101, 0.00483423518, -0.0127393762, -0.0134989638, 0.0409526452, -0.00382506824, 0.011730209, -0.00324995164, -0.0176984016, 0.0215505976, 0.0379794, 0.000658196572, -0.00111564493, 0.0158102829, 0.0109109394, 0.0113504156, -0.00855621602, -0.00915846135, 0.00950570125, 0.00462534837, 0.0184254348, 0.00602244772, -0.000716861221, -0.0128478892, 0.00309803407, -0.00645107264, -0.00984209, 0.0186424609, -0.00644564675, -0.00324181304, -0.00668980042, -0.026802605, 0.0111984974, 0.00973900314, 0.00107427454, -0.00594648905, 0.00732459873, -0.0043513542, -0.00655415934, 0.0157126207, 0.0193369407, -0.0194997098, 0.0137485433, 0.0168628544, -0.00602244772, -0.00686884578, 0.0122619206, 0.00752534717, 0.00119431654, -0.00461992295, -0.00213091564, 0.00888718, 0.0186967161, 0.00294340355, -0.0215288941, 0.021648258, -0.016938813, 0.00535509549, 0.0132819386, -0.00999943353, -0.00491290679, -0.0290813707, 0.00430523651, 0.0253919419, -0.0139330141, -0.0101242233, 0.000131995374, -0.00958708581, 0.0070153377, -0.00874611363, 0.0194888581, -0.00501328101, 0.00761758257, 0.00592478644, -0.0015069684, -0.000984073384, -0.00592478644, -0.00293526519, 0.0104063563, -0.00101866177, 0.00443273876, -0.0107915755, -0.006402242, -0.00349139213, 0.020856116, -0.0319895074, 0.00436763093, -0.0132493852, -0.0123812845, 0.0222233757, -0.0231131781, -0.0248710811, -0.00893058442, -0.0140089737, -0.0141825937, 0.00725949137, 0.00268975552, -0.00217703357, -0.00608755555, 0.0126525657, 0.0179479793, 0.00447885646, 0.00963049103, 0.0380662121, 0.00622319616, -0.00552600296, -0.0181541536, -0.00808418635, -0.0278660282, 0.0206173882, 0.00819812529, -0.00189761363, 0.00429167226, -0.00297867018, -0.0108458316, -0.0203135535, 0.0310345963, -0.000242796887, -0.00169957813, -0.0159404967, 0.00827951, -0.0284085926, 0.00109597703, 0.0176875498, -0.00163311418, -0.0401062481, 0.0190873612, 0.0219954979, 0.0143019576, 0.00283489097, -0.0218652841, -0.0246106517, -0.0173403099, 0.00784545951, -0.0145189827, -0.00894686207, 0.00816014595, 0.00876239, -0.0150832478, -0.0239812788, -0.0135206664, 0.00996688, -0.00397427287, -0.0117736142, 0.0019776416, 0.0180890467, 0.00554499263, 0.0177743603, 0.000564943592, 0.00965761952, 0.00583255105, -0.00725949137, 0.0160598606, -0.00461449707, 0.00963049103, 0.00196272111, -0.00608755555, -0.0141174858, 0.0208344143, 0.00396884745, 0.0131951291, -0.00297324453, 0.00218924112, 0.0189245921, 0.0079376949, -0.022722533, 0.00156258105, -0.00362974568, -0.00610383227, -0.00500785513, -0.00937006064, 0.0295371227, 0.00411805231, -0.00324452599, 0.00530897779, 0.0257608853, 0.00120516773, -0.000893194112, -0.00941346586, -0.0123378793, 0.0017334884, -0.0113504156, -0.0183386244, 0.0280830543, -0.0131083187, -0.00725949137, 0.00678203581, -0.0197384376, 0.000946094, -0.0248059742, -0.00702076359, -0.0027223092, -0.00449784612, -0.0161032658, -0.00327165402, 0.0217459202, -0.0219086893, 0.00677661039, 0.00920729153, -0.0184362866, -0.0199446119, 0.00968474708, 0.00429709814, 0.0104931658, -0.0101784794, 0.00353479711, -0.003654161, 0.00462263543, 0.0148879252, -0.0106613608, 0.00609298097, -0.013998122, -0.00929952785, -0.00993975159, -0.0164830592, -0.025782587, -1.61603202e-05, 0.0102978433, 0.00126010226, 0.012294475, -0.0101296492, 0.00318484404, -0.0217350684, 0.00347240246, 0.00596276578, 0.00331234629, -0.0123053258, 0.01699307, 0.00301936246, -0.0192826837, 0.00327707967, 0.024762569, -0.0220931601, 0.00682544103, 0.0105257193, 0.00612553488, -0.00322282338, 0.0145732388, -0.00286473194, 0.00179317023, -0.0184145831, 0.00807333551, -0.00151103758, 0.0124463923, -0.0190005526, -0.000144203033, 0.0198686514, -0.00623404747, 0.0140957832, -0.0140632298, -0.0173186064, 0.000710079155, -0.00115294615, 0.000975256786, -0.00711299945, 0.00504312199, -0.00187048549, -0.000161412449, 0.00431608781, -0.00661384128, -0.00226384355, 0.00375996064, -0.00189218798, 0.0136508821, -0.0182735175, -0.0174705237, 0.0257608853, -0.00406379579, 0.0212793164, 0.00392815517, 0.00256767869, -0.00168058847, 8.34614257e-05, 0.00403666776, -0.0160056055, 0.000629712, -0.000981360557, -0.00548531068, 0.0229829624, 0.0054337671, 0.0226357225, -0.0172535, -0.00137268403, -0.00584882777, -0.00343713583, 0.0098692188, -0.0141717419, -0.00709129684, 0.0319895074, 0.00584340189, -0.0122510698, -0.0199771654, 0.0315988623, -0.00845313, 0.00195322628, 0.0239161719, -0.032401856, -0.00669522583, -0.0286907237, -0.00210514385, 0.0131734265, 0.0260864235, 0.00363245839, 0.0188160799, 0.00451141037, 0.0303835198, -0.0203678105, -0.0195865203, 0.0148987761, -0.00495902449, -0.0241549, 0.0160598606, -0.0144321723, -0.00231538713, -0.0217784736, 0.0257391818, -0.00365687371, -0.00345341256, -0.0205631331, -0.00484779943, 0.00858334452, 0.00555313099, 0.0340295434, -0.00334490021, -0.0238510631, -0.000401835627, 0.0176984016, -0.00855621602, 0.00240626629, 0.0156041086, -0.0121968137, 0.0124572432, -0.0111333905, 0.00690682512, -0.0219412427, 0.00785088446, -0.025326835, 0.00560467457, -0.00387661182, -0.000867422379, -0.00332591031, -0.0139764193, 0.0123053258, 0.0189354438, 0.0132168317, 0.0225272104, -0.00944601931, 0.00327165402, -0.00719980942, 0.0009603363, 0.00278606033, 0.00771524385, 0.000211938619, -0.00968474708, 0.00468503032, 0.0082849348, 0.0156258103, 0.00969559886, -0.010368376, 0.019033106, -0.013314493, -0.00767726451, -0.00306819309, -0.00560467457, 0.0139764193, 0.0313384309, -0.00923442, 0.00441374909, 0.0141608911, 0.0173620116, 0.00769896712, -0.0102381613, 0.00392272975, -0.00215261825, 0.00707501965, -0.00776950037, 0.0374368392, 0.0021648258, 0.00689054839, -0.00855621602, 0.00521674193, 0.00706416834, 0.0162985884, 0.0246540569, 0.0165590197, -0.00527371094, -0.0104117813, 0.0102490131, 0.00115633709, -0.0158211328, -0.0338993296, -0.015918795, 0.00130554195, 0.0197384376, 0.0146600483, 0.0149638839, -0.00203732355, 0.017503079, 0.0171775408, 0.0144321723, -0.00947857369, 0.00807333551, 0.00196814677, -0.000618182588, -0.022212524, 0.00962506514, 0.000986108, -0.0171232838, 0.0121534085, 0.0200531241, -0.00423199032, -0.011556589, -0.0158862416, -0.0172860529, -0.015690919, -0.00142558396, -0.00249714567, 0.0300145783, -0.0120557472, -0.00970645, -0.0119255316, 0.00353479711, -0.00224214117, -0.00142829679, -0.00589765841, 0.0126091614, 0.00449784612, 0.0148987761, -0.000562909, -0.00118889089, -0.00488306582, -0.0100591155, 0.00384677085, -0.0341597572, -0.000538493623, -0.0217242166, 0.00322824903, -0.000598853745, -0.0210514385, 0.00836631935, -0.000892515935, -0.0175247807, 0.00112717436, 0.0146600483, 0.0102273105, -0.00689597428, -0.00404480612, 0.00773694646, 0.015528149, -0.012012342, 0.00389017584, -0.0354836099, -0.00473928684, 0.0268243086, 0.00116447557, -0.0105474219, -0.0276924092, -0.0255655628, 0.0127936322, -0.0236123353, 0.0221474171, -0.0215940028, -0.00259616342, -0.00984209, 0.0261515304, 0.0010017067, -0.00344256149, -0.00678203581, -0.00780205429, -0.0124572432, 0.0129672522, -0.0184362866, 0.00558297196, -0.00181487284, -0.0118929781, -0.0103955045, 0.00286744488, -2.01977509e-05, 0.00569691, -0.0183494762, -0.00449784612, 3.04661762e-06, -0.00916388724, -0.0152894221, -0.00670065125, 0.00642394461, -0.017112432, 0.0269762259, -0.00955453236, -0.00804620702, -0.00372469402, 0.000187692844, -0.00831748918, 0.00850738585, 0.0114914812, 0.00838259608, -0.00638053939, 0.000116990122, -0.00473114802, -0.0329444185, 0.00218652841, -0.0171883926, 0.0149747357, 0.0198035445, -0.023286799, 0.0137485433, 0.00899569225, 0.00184064452, -0.0182192605, -0.028386889, -0.0171341356, -0.00392544223, 0.00509195263, -0.0124789458, 0.00132520986, -0.0129672522, -0.00133741752, -0.00302478811, 0.00054086739, 0.00460907165, 0.00182979333, 0.0033231976, 0.0183169227, -0.0389126092, -0.000538493623, 0.00724864, 0.00388203724, 0.012630864, 0.0382398292, 0.00291898823, 0.00748194195, -0.00810046401, 0.00633170875, -0.000383863226, 0.00214176695, -0.0247191638, -0.0207584556, 0.0472246706, 0.0123161776, -0.00251884805, 0.0116325477, -0.0119363833, 0.0203135535, 0.021756772, -0.00575116649, -0.00984751619, -0.0249578916, 1.66689733e-05, -0.00125874591, -0.0117519116, -0.000799602, 0.00390916551, 0.00654330803, -0.00655415934, -0.00130961114, -0.0192501303, -0.00109190773, 0.0230263676, -0.0145732388, -0.00732459873, -0.0024849379, -0.0179913845, 0.00357277645, -0.0176549964, 0.0160707124, 0.00565893063, -0.00282675261, -4.2149295e-06, -0.0039552832, -0.0021078568, 0.0109217903, 0.0123053258, -0.00566978194, -0.0110194515, -0.0166783817, -0.0298192557, 0.0131408731, -0.00836089347, -0.0303184129, 0.00392544223, 0.0112961587, 0.00375453499, -0.0483098, -0.00433507748, -0.00276164501, 0.024306817, 0.0208344143, 0.00893058442, -0.0408224314, -0.0307958685, -0.0027223092, 0.00310617243, 0.0107264677, 0.00169686542, 3.06463262e-05, -0.0197709911, -0.00819812529, -0.0205848347, -0.00167109363, 0.0134881129, 0.0156583637, 0.0233519059, -0.0130866161, 0.0231565833, 0.000754162378, 0.000427946477, 0.00336388987, -0.00844770391, 0.0188160799, 0.0167760439, -0.00184607017, -0.00992890075, 0.0141717419, -0.00706416834, 0.0129455505, -0.000372333772, -0.0106016789, 0.0130649135, 0.0101187974, 2.17660963e-05, 0.00489391712, -0.00195865193, 0.00465790229, -0.012750227, -0.00557754608, 0.0191850234, -0.00545275677, -0.00932123, 0.000752805965, -0.00404209318, -0.0282783769, 0.0265421756, 0.000435067603, 0.0071455529, 0.00763928518, 0.0176224429, -0.00150018639, 0.0023343768, -0.0155390007, -0.0274970867, 0.0202267431, 0.00034859663, -0.00914218463, -0.00657586195, -0.00567520782, 0.004050232, -0.0182952192, -0.00706959423, -0.0200748257, -0.00772066973, -0.00831206329, 0.0141608911, 0.0122293672, -0.00951655302, -0.0226357225, -0.0170798786, 0.0131734265, -0.00304649048, -0.00938091241, 0.0016615988, 0.0072974707, 0.0101513509, 0.0390862301, -0.00629372941, 0.00447614351, -0.0143779162, 0.00787258707, -0.0181758553, -0.00818184763, -0.0100753922, 0.00623947289, 0.0127176736, 0.000233471583, 0.0199012067, 0.00184607017, 0.0104551865, -0.0139764193, -0.0111659439, 0.00205902616, -0.0140089737, -0.010764447, 0.001352338, -0.0297107436, 0.00364602241, 0.00841515, -0.000298579136, -0.0139547167, 0.00316585437, -0.00257039163, 0.00590308383, -0.0304920338, 0.00843685307, 0.0186750144, -0.00238998933, 0.000178876202, -0.0053198291, 0.0128587401, 0.0271932501, 0.00674948189, -0.00743853673, -0.0131191704, -0.0107970014, -0.0149638839, -0.0286473203, 0.000224315838, -0.0199771654, -0.0103575252, 0.0109055135, 0.00254190713, 0.0109434929, 0.00520860357, 0.00418858556, 0.00193830591, -0.0168520026, -0.00232759467, -0.0138136502, -0.00750364456, 0.00447885646, -0.02606472, -0.00304106483, 0.00634798547, 0.0131517239, 0.0204220656, 0.0190222543, 0.00784003362, 0.00171992427, -0.0120014912, 0.00430794898, -0.0183169227, 0.00834461674, 0.0134881129, -0.00285388064, -0.00367857632, -0.0144213215, 0.00900111813, -0.00963591691, -0.0409743488, 0.0196082219, -0.0101296492, -0.0120231928, -0.00894686207, -0.0128370374, 0.0287992377, -0.00704789162, -0.00916931219, -0.0201833379, 7.62979e-05, 0.00324995164, -0.00527371094, 0.0156149594, -0.00139167381, 0.00785088446, 0.00668437453, -0.0125549044, -0.0128261866, 0.0144755775, 0.00579457125, -0.00279691163, 0.00700448686, -0.0285171047, 0.0463999771, 0.00468774326, 0.00570233585, 0.00738428067, -0.0196733288, -0.00489663, 0.00491019385, -0.0219954979, 0.00801365357, 0.0163962506, 0.00391730387, -0.0111876465, -0.0244153291, -0.00382778095, -0.0373717323, -0.0116108451, -0.00460093329, -0.00163989631, -0.00475556357, -0.0166349784, -0.00969559886, 0.02062824, 0.0222884826, 0.00287015759, 0.0143236602, -0.00390373985, 0.00771524385, 0.00656501064, -0.00403395481, 0.00451683579, 0.018186707, 0.0303184129, -0.0125983097, 0.019553965, -0.0288860481, 0.00237913826, -0.0198469497, 0.0120340446, -0.00574031519, 0.00855079107, 0.00374910934, -0.00304920343, -0.0170147717, 0.0247408673, 0.0165373161, -0.012240218, -0.00674948189, -0.0274319779, -0.0038874629, 0.0112961587, -0.0143128084, 0.00944601931, 0.00944059435, -0.00852366257, -0.00563722802, 0.00718895812, -0.022722533, -0.0001995614, 0.0199554618, -0.0186641626, 0.010536571, -0.0045304, 0.000860640372, -0.0162334815, -0.00111564493, 0.0113395639, -0.0149204787, -0.0333567634, -0.0191307664, -0.00484508649, -0.0325103663, -0.0129129961, -0.0070153377, -0.000217533801, 0.00593021233, 0.0135532208, -0.0179371294, 0.0102218846, -0.00153274008, 0.00672777975, -0.00689054839, 0.0114480769, 0.0296673384, -0.0109055135, -0.0156258103, 0.00966304448, 0.014106635, -0.00573489, -0.00908792764, -0.000455074594, -0.0102273105, 0.0104443356, 0.0206173882, 0.00164532196, 0.00673863105, 0.0196190737, -0.0293200966, 0.0010322259, -0.00863217562, 0.0129021453, -0.00370299164, 0.0247191638, -0.0190765113, -0.00538493646, 0.0112419026, -0.0043974719, -0.00397969875, -0.013542369, -0.022266781, 0.0132493852, 0.0148770735, 0.00738428067, 0.0209537782, -0.00149476074, -0.00327707967, -0.0167434905, 0.00129062147, 0.00891430769, 0.00230046664, 0.0126091614, -0.00255004549, 0.0132927904, -0.0112310518, -0.00207259017, -0.00320654665, -0.0039444319, 0.01320598, -0.0235472284, 0.0215505976, -0.00991804898, 0.0114046717, -0.0202701483, 0.0158102829, 0.0086810058, 0.00212820293, 0.0135315182, 0.0010084887, -0.00735715264, 0.0127068227, 0.0119797885, 0.0332699567, 0.00872441102, 0.0220389031, -0.00939176325, 0.0107970014, 0.015072397, -0.018240964, 0.0159296468, 0.00925069675, -0.0024279689, 0.0199229084, -0.011730209, -0.004050232, -0.00429709814, -0.0134555595, -0.0043866206, -0.00130961114, -0.0227442347, 0.0208669677, 0.00347240246, -0.0164939109, -0.0238727666, -0.00226113084, -0.00396070909, 0.00748194195, 0.00698820967, -0.0167217869, 0.00192202895, 0.0213552751, 0.0127719296, -0.0051326449, -0.00884377491, 0.000582576904, -0.015636662, -0.00422113901, 0.018186707, 0.00470402, -0.0275187884, 0.000110716734, -0.0118061677, 0.0234821215, -0.0158102829, 0.000389967056, 0.00980411097, 0.00528727518, 0.0130432118, -0.0106016789, -0.00080028025, -0.00893601, 0.00105799758, 0.0152785704, 0.0124789458, -0.00791599229, 0.0032472387, 0.0171232838, 0.00794854574, 0.00508381426, 0.0201290827, -0.0115782917, 0.00172128074, 0.0184796918, 0.000474742497, -0.00613638619, -0.0168085974, -0.00414518034, 0.0414083973, 0.0121751111, 9.57114826e-05, -0.0143128084, 0.00770981843, -0.00877324119, 0.00213227211, 0.00356192514, -0.00416417, -0.0258693974, 0.0225923173, -0.0362214968, -0.00118346524, 0.0238944683, 0.00850196, 0.00110275904, -0.00137878791, 0.0291681793, -0.00404751906, 0.00540392613, -0.0109868981, -0.0105799763, 0.0039824117, -0.0158862416, 0.00268026069, -0.0144213215, -0.0254787523, 0.0141934445, 0.000201256917, -0.00444901548, 0.00150154275, -0.0239161719, -0.00592478644, -0.0114697795, 0.0121100033, -0.00932123, -0.00219737971, 0.0529541373, 0.0222233757, 0.0138679072, 0.019033106, -0.0433833264, 0.0329444185, -0.0168628544, -0.015126653, -0.0256957784, 0.025608968, -0.00147712743, -0.00205631321, 0.00963591691, -0.00473928684, -0.00524115749, 0.0187943783, 0.0124355406, -0.0200856775, -0.00412076479, 0.0115348864]
|
04 Dec, 2020
|
Python calendar module : iterweekdays() method
04 Dec, 2020
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions.
iterweekdays() method returns an iterator for the week day numbers that will be used for one week. The first number from the iterator will be the same as the number returned by firstweekday().
Syntax: iterweekdays()
Parameter: no parameter
Returns: iterator for the week day numbers
Code #1:
# Python program to demonstrate working
# of iterweekdays() method
# importing calendar module
import calendar
# providing firstweekday = 0
obj = calendar.Calendar(firstweekday = 0)
for day in obj.iterweekdays():
print(day)
Output:
0
1
2
3
4
5
6
Code #2:
# Python program to demonstrate working
# of iterweekdays() method
# importing calendar module
import calendar
# providing firstweekday = 2
obj = calendar.Calendar(firstweekday = 2)
for day in obj.iterweekdays():
print(day)
Output:
2
3
4
5
6
0
1
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python calendar module : iterweekdays() method
|
https://www.geeksforgeeks.org/python-calendar-module-iterweekdays-method/?ref=lbp
|
Pandas
|
Python calendar module : iterweekdays() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python calendar module : iterweekdays() method, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0177431032, -0.0103537766, -0.011672521, 0.030712571, -0.0247400757, -0.00537306489, 0.0448591, 0.0373825841, -0.00948732905, -0.00439218106, 0.00715500442, 0.0213941727, -0.00357205281, 0.0168385096, -0.0262223016, 0.0332192741, 0.0112801669, 0.0396495126, 0.0360529386, 0.00708961207, -0.0206094645, 0.00669725845, 0.0149203371, 0.0208274387, 0.0223641563, -0.00590710202, 0.0205658693, -0.0348758772, -0.00127855514, 0.00458835764, 0.0219391081, 0.0103537766, 0.0194433015, 0.0162172839, -0.0539704226, -0.0123264436, -0.00973799918, 0.0360529386, 0.0116834193, 0.000306185684, -0.00735118147, -0.0132092386, 0.0639536455, 0.0270724, -0.0400854647, 0.0401508547, 0.00207211752, -0.000854867743, -0.0205658693, -0.0322819836, 0.0336552225, -0.0181136597, 0.0403906256, 0.00655012578, 0.00684984075, 0.00893149432, -0.0142882112, -0.0113455588, -0.0294919144, -0.0262658969, 0.054798726, -0.00816858467, -0.0446847193, -0.0114872428, 0.0191054419, 0.0371646099, -0.0262005031, 0.0550602935, 0.0289251823, -0.0151056154, 0.0360747352, -0.0110621927, -0.0220589936, -0.0125989113, -0.0294047259, -0.0600301065, 0.0118904952, -0.0130348597, 0.00119613367, -0.00454476289, -0.035399016, -0.00268925726, 0.00375188165, -0.0216557402, 0.0113564581, 0.000258844404, 0.0026265895, -0.0186803918, 0.0325871482, 0.0170782823, 0.0210345145, 0.0442269742, -0.022037195, -0.0077326363, -0.0365106836, -0.000237728163, 0.0140920347, 0.0430063196, -0.0277045257, -0.00884430483, 0.00647928426, -0.0160647016, -0.027007008, -0.0216012467, 0.0429845192, 0.0293175355, 0.00662096776, -0.0155088669, 0.0208601356, -0.0191708338, 0.0201517195, 0.0205113757, 0.00136506371, -0.00351210986, -0.012904075, -0.0104573146, -0.0249362532, -0.0217320323, 0.0033867748, 0.00862633064, 0.0522702225, 0.00426412094, 0.0253722016, 0.0636920705, -0.0259607323, -0.0170455854, 0.0326089449, 0.0297316872, -0.00554471975, -0.00241542701, 0.029230345, -0.0182553418, -0.0104682129, -0.0239989646, -0.00623951247, -0.000137936819, 0.00585805764, 0.0210890081, -0.0173289515, -0.0129476702, -0.00350121129, -0.0114436476, 0.00083783851, 0.00456928508, -0.0165987387, -0.0337642096, -0.0079015661, 0.00396713102, 0.0221461821, 0.00687163789, -0.0183970258, -0.0508751869, -0.00402979879, 0.0099505242, 0.0155960573, -0.0027396637, 0.0227565113, 0.0127514927, 0.0155524621, -0.020064529, -0.0394533388, 0.0105227064, -0.00436765887, -0.0185714047, 0.0454694256, 0.0218846146, 0.0347015, -0.00692068227, -0.00480633182, 0.0088715516, -0.0118904952, -0.0285110306, -0.0195195936, 0.00366741652, 0.0520958453, 0.0219936017, 0.0206857547, -0.0153671838, -0.0112256734, -0.0290559661, -0.0299496613, 0.00938379113, -0.00541121047, 0.0510059707, 0.00977069512, 0.054406371, 0.034243755, 0.0373825841, -0.0139939459, 0.0356387869, 0.0494801514, 0.00641389191, -1.83862551e-06, 0.0310831275, -0.0201190226, -0.0220153984, 0.00487989839, 0.00986878388, 0.0234976225, -0.00796695892, -0.0446411259, 0.0226693209, -0.0286854096, 0.00985788461, -0.00517416373, 0.0274865516, -0.00884430483, 0.0281622726, 0.00596159557, -0.00434313668, 0.0259389356, -0.0272685774, -0.0088879, -0.028598221, 0.0108169718, 0.0109804524, -0.0317806453, 0.0212197918, 0.0352028385, -0.00640844274, -0.00686073909, 0.0141356299, 0.0108551169, -0.0204350855, -0.015269096, -0.0563681386, 0.0262223016, -0.00936199352, -0.0120757725, -0.025917137, 0.00413878588, -0.000481246243, 0.0107406806, -0.0194106065, 0.0477363579, 0.00452569034, 0.0246746838, 0.0187348854, -0.00497798668, 0.0357477739, 0.0357259773, -0.00598884234, -0.0267018452, -0.00097339123, 0.00765634514, 0.0316934548, -0.0291867517, 0.0491313934, -0.011814204, 0.0111112371, 0.0133945169, 0.0267890338, 0.0121847605, -0.0197484661, -0.0385160483, 0.00281731714, 0.0230616741, -0.00868627336, 0.00404342217, 0.0100431629, 0.0290123709, 0.0212197918, 0.0142664136, 0.0122283548, -0.0225167386, -0.0114981411, 0.0370120257, 0.00160347298, -0.0306689758, -0.00924755726, 0.0147786532, -0.0210236162, 0.0245656967, -0.025067037, -0.0242387354, 0.0187021904, -0.0313882902, 0.0126425056, 0.041676674, 0.0398238935, -0.00840290729, -0.022603929, 0.000535058673, -0.00712230848, 0.00772173749, 0.00702966936, -0.0511367582, 0.00831571687, -0.0150838178, -0.0351156518, 0.0299932547, -0.0254811887, 0.00324236695, 0.00927480403, 0.0103592258, 0.0247836709, -0.00527225202, -0.0219282079, 0.00463740202, -0.0433114804, -0.0125008225, -0.0213069823, 0.0392571613, -0.0203587934, -0.00414423505, -0.0335462354, 0.0131002516, -0.0363363065, 0.00508697378, 0.017100079, -0.0103374282, -0.0391045772, -0.00163071975, 0.00523138186, 0.0216121469, -0.0432024933, 0.0394533388, -0.0150729185, -0.0155306645, 0.0316498615, -0.0072040488, 0.00130307721, -0.0047709113, -0.00798330642, -0.00932929758, -0.0302548241, -0.0162172839, 0.0317806453, 0.00490169553, -0.0345271192, -0.000737706549, -0.0252196193, 0.0277045257, 0.0314754806, -0.0108823637, -0.0448591, -0.0479543321, -0.0204568822, 0.0458617806, 0.0330884904, 0.0209909193, 0.050526429, 0.032260187, 0.00172744587, -0.0468208678, -0.0044139782, 0.0226257257, 0.0251324307, -0.00304619013, 0.0215467531, 0.000527565775, 0.0189746581, 0.0109150605, -0.0089805387, 0.0111330347, -0.0220153984, -0.0413497128, -0.00507607497, 0.0214268677, 0.0121629629, -0.033459045, -0.0258081499, -0.00500795804, -0.0028363897, -0.0185278114, -0.0240207613, 0.0126643032, -0.0306689758, -0.00437855767, -0.00952547416, -0.0261569098, -0.00841925479, -0.0166205354, -0.00595614593, -0.00901868381, -0.0124790249, 0.0205440726, 0.0176450144, -0.00240997761, -0.00179420051, -0.0099505242, -0.0199337453, -0.017274458, -0.00266337278, -0.0154979685, -0.00638664514, -0.0244785082, -0.0265710596, 0.00187594083, -0.0149203371, 0.0180373676, -0.0144516919, -0.006364848, -0.0296662934, 0.0174161419, -0.0100268153, 0.0347668901, 0.00742747216, -0.0130784549, 0.0057926653, -0.0208492354, -0.00431044074, 0.000331559248, -0.0416984707, -0.0369466357, -0.00834296364, -0.0252850112, 0.0218192209, 0.0386468321, 0.0291213579, -0.0247618742, 0.0179501791, -0.013928554, 0.0172962565, 0.0291649532, 0.0163480677, 0.00293447822, 0.0251106322, -0.0250452403, 0.032652542, 0.0518342741, 0.00114572712, 0.00529404916, 0.0285328273, 0.0132528339, 0.010544504, 0.012446329, -0.00168248871, -0.0403688289, 0.0581991225, 0.00392353628, -0.00280369376, 0.0295791049, 0.0111820782, 0.0351592451, 0.0125226201, 0.0234322306, -0.011705217, 0.0100322645, -0.0166532323, -0.0356605873, 0.00795606, 0.00572182378, 0.0380583033, -0.0208928306, 0.000519732304, -0.0605096482, 0.0223423596, -0.00511967, -0.0162717775, -0.00195359415, -0.0191926323, 0.0311267208, 0.00572727341, 0.0212851837, -0.00105989981, 0.0352682322, -0.00574362138, 0.0128277838, 0.0233668387, 0.0344617292, -0.00743837096, -0.0105499532, 0.00103946461, 0.00667001167, -0.0234104339, 0.0151383113, -0.0133509226, -0.0159993097, -0.00574362138, 0.0174706355, -0.0386468321, -0.0235848129, 0.00295082619, 0.050177671, 0.00767814275, -0.0245656967, 0.0425049774, 0.00994507503, -0.0371864066, -0.00559103908, -0.0179283805, -0.0128168855, -0.0103483275, 0.033110287, 0.029797079, -0.00849554595, -0.0339821838, -0.0151601089, 0.0167295225, 0.0177213065, 0.0193561129, 0.0453822352, 0.0296444967, -0.0111548314, 0.0194759984, -0.0108333202, -0.0147786532, 0.0194106065, -0.0228001047, 0.0288815871, 0.00238681794, -0.00965625886, 0.0161191951, -0.0146805653, 0.00105785625, -0.00183915766, -0.0285546258, -0.0052014105, -0.00460470608, -0.0377095453, 0.0264184773, -0.0330666937, 0.014844046, 0.0144843888, 0.0234976225, 0.0285764225, -0.0033867748, -0.00412788708, 0.00672995485, -0.00245629717, -0.00166205363, 0.00422597537, 0.0127732903, -0.00090936129, 0.0448155031, -0.0390827805, 0.00810864195, -7.88879406e-05, 0.025917137, 0.0434858613, 0.00808684435, 0.00489897095, 0.0249798484, 0.0092802532, -0.0109041613, -0.0291431565, -0.00776533224, -0.0197266694, 0.00374643225, -0.0437692292, 0.0488262288, 0.0280968789, -0.0302548241, 0.0230616741, -0.0277481209, -0.0136015927, 0.0181136597, -0.0251978226, -0.00289905746, -0.0107624782, 0.00540031167, -0.0175796226, -4.46166e-05, -0.0128386831, -0.0199337453, -0.00287726, 0.00944373384, 0.000298181956, -0.0271159951, 0.00867537502, 0.0389955901, -0.00965625886, -0.0025394, 0.0193343144, 0.026091516, -0.0162499789, 0.0151383113, -0.0120321782, 0.0407611839, -0.00957996771, -0.00881705806, 0.0310177337, 0.0146914637, -0.0188002791, -0.00857728627, -0.0130784549, 0.00306798751, 0.0165115483, 0.0160973985, -0.0428973325, 0.00779257901, 0.00466192421, -0.021721134, -0.0206312612, 0.010364675, -0.011672521, -0.0168385096, -0.0385160483, 0.0216448419, 0.0167186242, 0.0452950485, 0.0251978226, 0.0160320047, 0.0225167386, 0.0080105532, -0.036140129, 0.0337860063, -0.00202034879, -0.0087189693, -0.00134735333, 0.00502975564, -0.0166314337, -0.0303638112, -0.0180482678, 0.0289251823, 0.00508424919, -0.0218846146, 0.00609238027, 0.000344160886, -0.0180918612, 0.0374261774, -0.00101698609, -0.0103810234, 0.0189964548, -0.0126207089, -0.0131111508, 0.0155960573, -0.0158467274, 0.0089805387, 0.00293447822, 0.0317806453, -0.00922576, 0.0394751355, 0.00895329192, -0.00302166794, -0.0203043, -0.0288161952, -0.0135579975, -0.0125989113, 0.0122828484, -0.0448591, 0.0172635596, 0.020980021, 0.00712775765, 0.00218791654, -0.0187130887, -0.0258299485, -0.0345707163, 0.018865671, 0.0213178806, -0.0123264436, 0.0190509483, 0.0337206163, -0.00126901874, 0.0409137644, 0.0107951742, 0.0192035306, 0.0112256734, 0.0119449887, -0.0265928581, -0.012304646, -0.00812498946, 0.0152037032, 0.00683894195, 0.00883340649, 0.0320422128, -0.000739750103, -0.0326961353, -4.96828e-05, 0.00319877197, 0.000453318295, 0.0348322839, 0.00188956421, 0.0224513467, 0.00781437661, 0.0238681789, -0.014527983, -0.00509242341, 0.00750921248, -0.0136560863, 0.000683894206, -0.000501000148, 0.0189419612, -0.0114763435, -0.00116479991, -0.00422870042, 0.0130566573, 0.0131765427, -0.00491804397, 0.00420145364, -0.00491804397, -0.00122406159, -0.018298937, 0.0172853582, -0.00560193788, -0.0141465282, -0.00945463311, 0.0120539758, -0.00277644699, -0.00907862745, 0.00402162457, 0.0154216774, 0.00155579112, 0.0209255274, 0.0250452403, 0.00877346285, 0.0148004508, 0.00316880061, 0.00208710344, -0.0096726073, 0.0279225, -0.0172090661, 0.00664821453, 0.0264402758, 0.0142882112, -0.0177104063, -0.0105336048, -0.00556379231, 0.00135620846, -0.00484175282, 0.0204786807, -0.00724764355, -0.00882795639, -0.0227129161, -0.00412243791, -0.00577086816, 0.0195195936, 0.0234758258, -0.00244403607, -0.00447937055, -0.0297752805, -0.0235848129, -0.0298188757, -0.0118033048, 0.0211652983, -0.0122283548, -0.034592513, -0.00171109778, 0.0136342887, -0.0254157968, -0.0198029596, 0.00265383627, -0.00296444958, 0.00769449072, -0.0215576533, -0.038537845, -0.00500523346, -0.00258980645, 0.0118251024, -0.0030625381, -0.00867537502, 0.00385814416, -0.013754175, 0.0306471791, -0.0413933098, 0.00388811552, 0.00731303589, -0.0176232178, -0.00187185383, -0.00333228125, 0.0194433015, 0.0299932547, 0.0346797034, -0.0115962299, -0.00778713, 0.0132855298, 0.00233913609, 0.0219282079, 0.0540140159, 0.000797649496, 0.0019903772, 0.000149516709, -0.0104845613, -0.0297534838, 0.00783617422, 0.0188765693, 0.0177758, 0.0195740871, 0.0108987121, -0.00906227902, -0.042810142, 0.0154979685, -0.00081467873, 0.00679534674, 0.00269334414, -0.0351592451, -0.00601063948, -0.00224922178, 0.00368376472, -0.0276173372, -0.0209146291, 0.0386686288, -0.010364675, -0.00214977097, -0.045164261, 0.011988583, 0.0206421614, 0.0517906807, -0.00706781493, -0.000319468498, 0.00639209477, 0.0326743387, 0.0165987387, 0.0235848129, -0.00971075241, -0.0152799943, 0.0295791049, -0.00382544799, -0.0196721759, 0.00724219438, 0.0305599887, -0.00133100525, -0.0016784016, 0.012904075, -0.0263312887, -0.0129912645, -0.015443475, 0.00800510403, -0.01227195, 0.00275873649, -0.0112038758, -0.0170237888, -0.00251487782, -0.0279007033, 0.0129912645, 0.031170316, 0.0127950879, 0.0157377403, 0.00597794354, 0.0117815081, -0.0467336774, 0.0283802468, 0.0169692952, -0.0234976225, 0.0318460353, 0.03723, 0.0205113757, 0.0221679807, 0.0148985395, -0.0196830742, 0.00846285, -0.026832629, 0.0181463547, 0.000612711941, 0.0218301211, 0.00452569034, -0.00835386291, -0.00948188, 0.0201626178, 0.027007008, -0.00861543231, 0.000113159287, -0.0172962565, 0.0382980742, 0.0199446436, -0.0386468321, 0.0407829806, -0.00781982578, 0.0389084034, 0.0210563112, 0.0167295225, -0.00371646089, 0.00505427783, -0.00450661732, 0.0158358291, 0.0162063856, -0.0212415904, 0.0312575065, 0.00403524796, 0.0146042742, -0.00501613226, 0.00414968468, -0.0251542274, -0.00853914116, -0.00565643143, 0.0250888355, 0.000693430542, 0.000556515472, 0.0151383113, 0.0108987121, 0.0205331743, 0.0214159694, 0.0282712597, -0.0236938, -0.0451206677, 0.0244131144, 0.0166532323, 0.00677899877, 0.0107679274, 0.0363799, -0.0438346192, -0.0141792241, -0.0249798484, -0.0294265226, -0.000160585711, 0.0188220758, -0.0454258323, 0.012304646, 0.0119122919, 0.0396931097, 0.00926935486, -0.00533764437, -0.0274865516, -0.0219282079, 0.00011954525, 0.0563681386, 0.0228219032, -0.00515509071, -0.0262876935, -0.00110417581, -0.00546570402, 0.0281622726, -0.00464830082, 0.0268762242, -0.0271377936, 0.0371210128, -0.00573817175, -0.0105172573, -0.00570547581, -0.00354480604, -0.0240425579, -0.0316062644, 0.0255247839, 0.0180700645, -0.0257209595, -0.00810319278, 0.0287726, 0.0331320837, -0.0100540621, 0.0132855298, 0.0203043, 0.0186041016, -0.0026265895, -0.00973255, -0.0407393873, -0.0160864983, -0.00432133954, 0.00113959657, 0.00855003949, -0.0358131677, 0.000266167, 0.00703511853, -0.0134272128, -0.0522702225, -0.00577086816, -0.0549731031, 0.020663958, -0.0277699176, -0.00999956857, 0.0364888869, 0.0130566573, 0.0176559128, 0.0267672371, -0.0119122919, -0.00460743066, 0.00618501892, 0.0193779096, -0.000939332764, -0.0235630162, 0.00541666, -0.0132310363, -0.0220045, 0.0165987387, -0.0224077515, -0.0165442452, -0.00901868381, 0.00547387823, -0.00496163871, 0.0144189959, -0.0213832725, -0.0424831808, -0.00487989839, -0.000400187069, -0.00217429316, -0.0292521436, -0.0416984707, -0.0143100088, -0.0165660419, -0.00811409112, 0.0072040488, -0.0180373676, 0.0445757322, -0.00196857983, -0.00205168244, 0.0300150532, -0.0248054694, -0.00180646149, -0.0336770192, -0.0279660951, 0.0171327759, 0.00866447575, -0.0144625911, 0.00413061166, 0.00719315, 0.00878436211, -0.0263966806, -0.0234104339, 0.00453113951, 0.0143427048, 0.0166968275, -0.0243259259, 0.00698062498, -0.0304292049, -0.031519074, 0.00129967136, 0.00354753085, 0.0313446969, -0.0240643565, 0.020206213, -0.0417202711, 0.0289251823, -0.0246964823, -0.00977069512, 0.00632125279, 0.0228001047, 0.00209119031, 0.0542319901, 0.0132419355, -0.0099723218, 0.0160429049, -0.0330013, 0.0133182257, 0.00287726, 0.0354426131, 0.00601608912, 0.00144952873, 0.0176341161, -0.0146696661, 0.00285546249, -0.00684439112, -0.0168930031, -0.0230398774, -0.0132528339, 0.000374983822, 0.00194405776, -0.000974072376, -0.0207947418, 0.0246528871, 0.00674085319, 0.0017928381, -0.00972710084, 0.0195958838, 0.0083102677, 0.0244785082, -0.00466737337, -0.0300150532, -0.0209037289, 0.0246746838, -0.0298406743, -0.000934564567, 0.00786887, -0.0180700645, -0.0266800467, -0.00929115247, 0.00366469193, -0.00639209477, 0.00101358024, -0.0385814421, -0.00219609053, 0.000758822833, -0.00401072623, -0.0103919217, 0.0375569612, 0.0443359613, 0.0257645547, -0.015585158, -0.0296662934, -0.0106207952, -0.00279279496, 0.00208846573, 0.0222442709, 0.0171763711, 0.020238908, 0.00356115424, 0.000657328579, -0.0295791049, -0.014527983, -0.0258081499, 0.0191054419, -0.0199228451, -0.0188547727, 0.0205331743, -0.0120648742, 0.00121656875, -0.0147350589, -0.0203587934, 0.00674630282, 0.0254375935, -0.0238899775, 0.0159448162, -0.00706781493, -0.00325599033, 0.00986333471, 0.0100213662, 0.00317424978, -0.00365106855, 0.0255683791, -0.00898598786, -0.00768359192, -0.0107297823, 0.0143971983, 0.0100050177, 0.0126425056, -0.013045758, -0.0226257257, 0.0100159161, -0.00592889916, -0.0329141095, 0.00914401934, -0.000910042436, 0.00663731573, -0.0177649, -0.0159557145, 0.00688253669, 0.0261787064, -0.000775852066, 0.01142185, 0.0130675556, 0.00374370767, 0.0040052766, 0.022603929, -0.0330884904, 0.0161954854, 0.00787431933, -0.0115962299, 0.0193343144, -0.00959631614, -0.0196176823, 0.0195413902, 0.0174706355, 0.00135144033, 0.00319877197, 0.00815768633, -0.00461560441, -0.00330775906, -0.00378730241, 0.0238245837, -0.0120539758, 0.00530494796, -0.0145715782, -0.00386086875, -0.0133727193, -0.0211326033, -0.0112910653, -0.0098415371, -0.0121084694, -0.00505700242, 0.00566733, -0.000580697029, 0.0286200177, 0.0180264693, 0.00186776672, -0.00621771533, -0.0125771137, 0.0104137193, -0.0107134338, -0.0231706612, -0.0170346871, -0.0098415371, 0.0604660548, -0.0135688968, 0.020206213, 0.00221107621, -0.00862088148, -0.0226693209, 0.0279442985, 0.0179283805, -0.0275083501, 0.00874621607, -0.00895874109, 0.000382136088, 0.0321076065, 0.00741657335, 0.0228001047, 0.000713865622, 0.0173289515, -0.0196721759, -0.015617854, -0.00390173891, 0.0119013935, -0.00329141109, -0.00453386409, -0.0151492096, 0.0223641563, 0.0189746581, -0.00628855685, -0.0221134871, 0.0144952871, -0.0092584556, 0.0268108323, -0.00572182378, -0.0203478951, -0.0114545468, -0.0107624782, 0.00284456392, -0.00245493487, 0.00544663146, -0.0153998798, -0.0107352315, 0.0181027614, -0.00199310202, -0.0213287789, -0.00319877197, 0.0230834726, -0.0133073274, 0.00114504597, 0.0330666937, -0.0062449621, 0.0215140581, -0.0221243855, 0.0166532323, -0.00902413391, -0.00435948465, 0.00944918301, -0.00126697531, -0.00769449072, 0.0272031855, -0.0111493822, -0.0225821305, -0.00650653103, -0.0101576, -0.00750921248, 0.0234976225, -0.00322601874, 0.0255247839, -0.00261160382, 0.00421235198, 0.00628855685, -0.00322601874, 0.0187457856, -0.00621771533, 0.0109259589, -0.0139176557, 0.00901868381, -0.0150293242, -0.004424877, -0.0114545468, -0.0166314337, 0.0110512944, -0.0173725467, 0.023345042, 0.00565098226, 0.00821218, 0.0372953936, -0.0311485194, -0.00143318065, -0.00762909837, -0.0161627904, -0.00447119679, -0.0111112371, -0.0272249822, 0.0348322839, 0.00555834314, -0.0141574265, 0.00758550363, -0.00113687187, -0.0200318322, -0.00550112501, -0.0326089449, 0.0184733178, 0.015127412, -0.00716590323, 0.0194433015, 0.00560738752, -0.0255465806, -0.0320640095, -0.0251978226, 0.00925300643, -0.0335680321, -0.0122828484, 0.0323909707, -0.0182880387, -0.0147459572, 0.0040270742, -0.00393988425, 0.0115962299, -0.0203043, 0.00428319396, -0.0204786807, 0.0218846146, -0.013329125, 0.0235412177, -0.00815768633, -0.0126534048, 8.87649e-06, 0.0187675823, -0.00368921412, 0.0216339435, -0.0363145098, -0.00555834314, -0.00802690163, 0.0290341694, 0.00510332175, -0.00533219473, -0.0127405943, 0.0496981256, 0.00505700242, -0.00126765645, -0.0163807645, 0.0266800467, -0.00194678246, 0.00392626086, -0.000220017755, 0.00948188, -0.00045910824, 0.00288543408, -0.0352028385, -0.00459653186, 0.0171436742, -0.018691292, 0.0161954854, -0.0290995613, -0.00604878506, 0.0181136597, 0.00199446431, -0.0094328355, -0.000452637149, 0.00527770119, 0.0164025612, 0.000707053929, -0.0294483192, -0.00543300807, -0.00740022538, 0.00889334921, -0.00192498497, -0.017699508, -0.0145497806, -0.000954318501, -0.0112692686, -0.0307997596, -0.0323691741, -0.0062449621, -0.00340857217, -0.00495074, -0.00398075441, -0.000385541935, 0.0158467274, 0.00938379113, 0.0343091451, 0.0108551169, -0.00445757341, 0.0155088669, -0.0150947161, -0.0284892339, -0.0548423193, 0.0213069823, -0.0245439, -0.00268108328, -0.0301894322, -0.0139176557, -0.0306471791, -0.000133764668, 0.0231052693, 0.0234322306, 0.00370828668, 0.00353935664, 0.00725309271, 0.0136669846, 0.00187866553, -0.0128168855, -0.00435403548, 0.00651743, -0.0109368572, -0.00769449072, 0.0114654452, 0.0105772, -0.0122174565, 0.0162172839, 0.0208165403, -0.00162935746, -0.0243259259, -0.0119449887, -0.0268762242, 0.013045758, -0.0317370482, -0.00515236612, -0.0203369968, 0.0302984193, 0.0161627904, 0.0124354307, -0.00802690163, -0.00174924324, 0.00431861449, 0.0152581967, -0.00717135239, -0.00243177521, -0.0210454129, 0.0240207613, -0.0205004774, 0.0297316872, -0.0185823049, -0.0296880919, 0.0107243331, 0.0344835259, 0.0233014468, -0.00257754535, 0.00152990676, -0.0156505499, -0.00775988307, -0.00921486132, 0.00550929876, 0.0263966806, 0.0268544257, -0.00204623328, 0.022778308, -0.0167404208, -0.0447719097, 0.020206213, -0.00238681794, 0.0249798484, -0.0220262967, -0.00521230884, 0.0258081499, -0.0127405943, -0.0155742597, -0.019290721, 0.00363744516, -0.0166314337, -0.00811409112, -0.00989058148, -0.00727489032, 0.0204677805, -0.0231924597, -0.00523410644, 0.00762909837, -0.0300150532, 0.00260342984, 0.0015857626, 0.0359439515, -0.00986878388, -0.0265056677, -0.0352028385, -0.00475183828, -0.00852279272, -0.0259607323, 0.00650108187, -0.00646838546, 0.0284892339, -0.0161191951, 0.0141574265, -0.0354644097, 0.0375351645, -0.0113346605, 0.0116289258, 0.0103047322, 0.0137650734, -0.0224731434, 0.0256773662, -0.00986878388, -0.00170564849, 0.0151928049, 0.0066645625, 0.0140048452, 0.016326271, -0.0133727193, 0.000994507456, 0.027573742, -0.00242632581, -0.01650065, 0.0346361063, -0.021721134, 0.0124899242, -0.0287072081, 0.0258517452, 0.0125335185, 0.0161191951, -0.0400418676, 0.0147132613, -0.00671905605, 0.0190073531, -0.0173616484, 0.0152581967, -0.00348213851, 0.0152255008, 0.0423959903, 0.00205713185, 0.00561828585, 0.000977478223, 0.029797079, 0.025459392, 0.0222878661, 0.0108878138, -0.00843015406, -0.0126969991, 0.0113346605, -0.0387776159, -0.0124790249, -0.00806504674, 0.0105336048, 0.0114436476, -0.0378185324, 0.0165115483, -0.00129490322, -0.0218301211, -0.000709778629, 0.0109096104, 0.0112692686, -0.00140457146, 0.0270506032, 0.0108387694, 0.0266800467, 0.00993962493, 0.0142555153, -0.022037195, -0.0239335708, -0.00250942842, -0.00511149596, -0.00452296529, -0.0131111508, -0.00012857074, -0.0335026421, 0.0196612757, 0.0451206677, -0.0393661484, -0.00708961207, -0.0133727193, -0.0164897516, 0.00786342099, -0.0430063196, 0.00365651795, 0.0139721492, -0.0169583969, -0.0136887822, 0.0257209595, 0.0134926056, -0.0191599354, -0.00435403548, -0.0115417363, -0.00707871327, 0.0473876, -0.0142010218, -0.0140048452, 0.00386359333, 0.0108660161, 0.00265247398, -0.00363744516, -0.0213505775, 0.042810142, -0.00869717263, 0.0118469, -0.00931294914, -0.0166205354, -0.00974344835, 0.0297534838, -0.0100377137, 0.0110785412, 0.00209119031, 0.0127623919, 0.0211435016, -0.00286091189, 0.0080105532, 0.00530767255, 0.00281186774, -0.0175905209, 0.0140266428, 0.0100813089, 0.000461492338, -0.0105336048, 0.0214268677, 0.0162172839, -0.00586895645, 0.000299203704, -0.00127038115, 0.0145933758, 0.00185550575, 0.000173953667, -0.0141356299, 0.0200209338, -0.00357477763, -0.0234976225, 0.00186231744, 0.0341129676, 0.0255465806, -0.0127514927, -0.0135688968, 0.0111221354, 0.00511422055, -0.030712571, 0.0253286064, 0.0299932547, 0.0319768228, 0.0267890338, 0.0123591395, 0.00564008346, -0.028031487, -0.00143045594, -0.00793426204, -0.00261841551, 0.0117488112, 0.0142119201, -0.021012716, -0.00426139636, -0.0146260718, 0.0164352581, -0.0197048709, 0.00191136159, -0.00432678871, 0.0109586548, 0.00361292297, 0.00286636129, 0.0107842758, 0.0137214782, -0.00810864195, -0.0136560863, -0.0105118081, -0.00466464879, -0.0126425056, -0.0179610774, 0.0110403951, -0.0187021904, 0.0221352838, 0.00822307821, -0.00276009878, -0.00441942783, 0.0145170847, -0.00195768126, -0.0216012467, -0.0181572549, -0.016784016, -0.00510332175, 0.0272903759, -0.0216557402, -0.00330230966, -0.0120866718, -0.00593979796, -0.00677899877, -0.00302984193, -0.0345707163, 0.0242605321, -0.011214775, 0.0140702371, 0.000595682708, 0.0106698386, 0.015127412, 0.00395623269, -0.00852279272, -0.00257618306, -0.0159448162, -0.0024385869, 0.00542483386, 0.0073239347, 0.0091276709, -0.0318242386, -0.00259798043, 0.0179719757, -0.00234731, -0.006364848, -0.01396125, -0.0114763435, 0.012588012, 0.0166641306, -0.0161409918, 0.0140702371, 0.00784162339, 0.000165353893, 0.00579811493, 0.00827757176, 0.00451206695, 0.0089805387, 0.0410009548, 0.0117488112, -0.00114708941, 0.00740022538, -0.00312793045, 0.00300259516, 0.00458018389, 0.0293175355, 0.00608693063, 0.015127412, 0.0198465548, 0.00344399293, -0.00129149738, -0.00505155325, -0.0199991371, -0.0176341161, -0.0106534911, -0.000118523494, 0.00991782825, -0.0124245314, -0.00165660423, 0.0182771403, 0.0119231911, 0.0189310629, 0.00453658868, -0.0165769402, 0.0130239613, 0.0264402758, 0.0187784806, -0.00518506207, 0.011389154, 0.00168385101, 0.0302984193, 0.0113782557, 0.00387449213, 0.0207184516, -0.00967805646, 0.00680624554, 0.00546570402, 0.00181599788, 0.00991782825, -0.00662641693, -0.00172472117, -0.00157213921, 0.00185414334, -0.0198465548, -0.01100225, 0.0110567436, 0.0233232435, 0.0033867748, -0.0121629629, -0.00929660164, -0.0209582224, 0.00670815725, 0.0252196193, -0.0123373419, -0.016326271, 0.00340857217, -0.0377531387, 0.0098415371, -0.0205004774, -0.0129258726, 0.0166968275, -0.0106534911, -0.00332683185, -0.00927480403, 0.010789725, -0.0143536041, -0.0142555153, 0.00296989898, -0.0090023363, -0.00551202381, 0.00303256651, 0.0283802468, -0.00228464254, 0.0134381121, 0.00335407862, -0.0102665871, 0.00993417576, -0.0112910653, -0.00428319396, 0.00086849113, -0.0033922242, -0.00354753085, -0.000783344905, -0.0111820782, 0.00791246537, -0.0205113757, -0.00780892698, -0.00965081, -0.00650653103, 0.00181872258, 0.00447119679, 0.00431044074, 0.0126207089, -0.0246528871, 0.000936608063, 0.00232278812, 0.0273339693, 0.0233014468, -0.0113782557, -0.0153889814, -0.0245874953, 0.0195522886, 0.0140593387, -0.0177975968, -0.00329686049, 0.00534309354, -0.00317969918, 0.011034946, 0.00866992585, 0.0158794243, 0.0171109773, 0.00139775977, 0.00695882784, 0.00466192421, 0.0120430766, 0.0035911256, 0.00203533447, -0.0282494612, -0.00905683, 0.0245221015, 0.0158467274, -0.000582399953, -0.00852279272, 0.0130239613, -0.0239989646, 0.00417148182, 0.00578721613, 0.00893149432, -0.0108224209, -0.0101140048, -0.0325217582, -0.000940695056, 0.000881433312, -0.00798875559, -0.00626675924, -0.0043513109, -0.0185496081, 0.00739477621, 0.00620136736, -0.0197157692, 0.0287943967, -0.00232959981, 0.0201626178, -0.0139067564, 0.027007008, -0.00402979879, -0.0132310363, -0.00634849956, 0.0169474967, 0.00359929958, -0.00315245241, -0.0138304653, 0.0100213662, 0.0103537766, -0.0188002791, -0.0067626508, -0.0124245314, 0.00455021206, 0.00786342099, -0.0166205354, -0.00791791454, 0.0164679531, -0.01650065, 0.0035856762, 0.00489624636, -0.00423687417, 0.0116289258, -0.0113782557, 0.0335680321, -0.015443475, 0.00266745966, 0.00651198067, -0.0122174565, 0.0175142307, -0.00373825827, -0.0123591395, -0.0123918355, 0.0360093452, 0.00322874356, -9.71730879e-06, -0.00258844416, -0.0213505775, -0.0310177337, -0.00325599033, 0.00974889752, -0.0151492096, -0.00781437661, 0.00140320917, -0.00245084777, 0.014102933, -0.0130566573, -0.00308706029, 0.025067037, -0.00820673, -0.000692068192, -0.0109968008, -0.0129149742, -0.013187442, 0.00348758791, -0.0017955628, 0.0148549443, -0.00523138186, 0.0119340895, 0.0105499532, -0.00207620463, 0.0072149476, 0.00214432157, -0.00723129557, 0.018691292, 0.00793971214, -0.0148767419, 0.0379493162, -0.00363744516, -0.00556924194, -0.018266242, -0.00880616, 0.0285110306, 0.00464557623, 0.0116289258, 0.0124354307, 0.0210890081, -0.0523574129, -0.00501068309, -0.00733483303, 0.00932929758, 0.00587985525, -0.0269416161, -0.00109600171, -0.00712775765, -0.00819038227, -0.00750376331, 0.0265056677, 0.00308161089, -0.016184587, -0.0129585685, -0.0218737144, 0.0218846146, 0.0188547727, -0.00361837237, 0.0309305452, 0.00780347781, -0.0189746581, 0.0208601356, 0.0182335451, 0.0133945169, 0.00673540402, -0.0108387694, 0.0140593387, -0.0054684286, 0.0231052693, 0.0145061854, -0.0143863, 0.00128059869, 0.0191163402, -0.00231188932, -0.0200536307, 0.0158249307, -0.00308706029, 0.00737297861, 0.0241733436, -0.0174161419, -0.0177431032, 0.00916036777, 0.0234322306, -0.00717680203, 0.010261137, -0.00573817175, 0.0206421614, 0.017525129, -0.00249580503, -0.0162608791, -0.00204759557, -0.00258027017, -0.0336552225, -0.0177431032, 0.00802145246, -0.0233232435, 0.0201517195, 0.00551474839, 0.00126765645, -0.0176777113, 0.0195086952, 0.0265274644, 7.73553111e-05, -0.0152472984, -0.0217429306, -0.0133836186, 0.0147677548, 0.0122937476, -0.0105663016, 0.0225603338, -0.0313446969, 0.0148658436, -0.00571092498, -0.0173943453, -0.00691523263, -0.00699152378, 0.000954999647, -0.0304945968, 0.0181463547, 0.00939468946, -0.0151056154, -0.0162935741, 0.00468099676, 0.0152037032, 0.0146042742, 0.0139067564, 0.00370828668, -0.0141901234, 0.0113346605, -0.0100377137, -0.015443475, 0.00130716432, -0.0209473241, 0.000349439943, 0.0122828484, 0.0317588486, 0.0212415904, 0.0238899775, 0.000702966936, -0.0117597105, -0.00377095444, 0.0242387354, -0.0166205354, 0.0102284411, 0.0192253273, -0.00382817257, -0.0131656444, -0.0168058146, 0.0160102081, 0.035399016, -0.0027519248, -0.000682531856, -0.0109150605, 0.0151601089, -0.0213941727, 0.00505427783, 0.00244403607, -0.0194215048, -0.0100159161, 0.0109368572, 0.0140048452, -0.0141356299, -0.00535399234, -0.00841925479, 0.0165551435, 0.000673336035, -0.0050706258, -0.0121193677, 0.0126098096, 0.0221570823, -0.00232278812, -0.00943828467, -0.00644658832, 0.0171872694, -0.000276043953, -0.0139939459, 0.0168385096, 0.00179420051, -0.00110417581, -0.00777623104, -0.00511422055, -0.0228219032, 0.0123809371, -0.0139721492, -0.0073239347, 0.00407066895, 0.00439763, -0.0101031065, -0.0193234161, -0.0262658969, 0.00570002617, 0.0260697193, -0.00464830082, 0.0349194743, 0.0224949419, 0.0157704372, 0.0172308646, 0.0020026383, 0.0102066435, 0.0189746581, -0.00577631732, -0.00809229352, -0.00557741569, -0.00213206047, -0.010964104, -0.0106752887, 0.000594320416, 0.0326961353, 0.0116834193, 0.0134817064, -0.00031844675, -0.0184297226, -0.01227195, -0.000214057523, -0.0539268255, 0.0206748564, 0.0440307967, 0.00725854235, -0.0152363991, -0.00734028267, -0.0101085557, 0.0191054419, -0.0171109773, 0.00407884317, 0.00726399152, -0.0085718371, 0.0161082968, 0.0296227, 0.00970530324, -0.0104518645, 0.0111548314, 0.021437766, 0.0099505242, -0.000903911947, -0.00376550504, 0.00967805646, 0.00383634656, 0.0171436742, -0.00726399152, 0.000680147728, -0.00316062639, -0.00286091189, 0.00272604031, -0.0176886097, -0.00543300807, -0.000937970413, -0.00486627501, -0.00411971333, -0.0140157435, -0.00383634656, 0.0120866718, 0.00318514858, -0.0040189, 0.00947643, -0.00210617599, -0.0101412516, 0.0177213065, 0.0191381387, -0.0250452403, 0.0235848129, -0.00227783085, -0.0013759624, 0.00237728166, 0.00184188236, 0.00311703165, -0.000714546826, -0.0255247839, -0.00778168, 0.0165224466, -0.000225296812, 0.00531857135, -0.0229744855, 0.0230616741, 0.00458290847, 0.00908407662, 0.0260697193, -0.0141356299, -0.00400255201, -0.0349630676, -0.011247471, 0.0349630676, -0.0135797951, -0.0263748839, -0.000256800908, -0.0110567436, -0.00644113868, -0.00345761632, 0.0023432232, -0.00878436211, -0.012729696, 0.00574907055, -0.00248763105, -0.00669725845, 0.000492826162, 0.00543300807, -0.00281459233, 0.0099505242, -0.00211979961, -0.00040154942, 0.00185686804, 0.00201217481, 0.0199664403, -0.0160647016, 0.0265274644, -0.023977166, -0.00433496293, 0.0240643565, -0.0136233903, -0.00426957058, -0.0178629886, -0.0118360016, -0.0245874953, 0.0120648742, -0.00174243154, 0.00768904155, -0.00241270242, 0.0121411653, 0.0132746315, 0.00678989757, 0.0125117218, 0.0314100869, 0.00524773, -0.00640844274, -0.0205440726, -0.0180809628, -0.0135362, 0.0234758258, -0.00186367973, 0.0149748307, 0.00314972783, -0.00189910061, -0.0114981411, -0.0163371693, 0.0273339693, -0.003817274, -0.00212524878, -0.016784016, -0.00744382, -0.037338987, 0.00546025485, 0.0159557145, -0.0121084694, -0.0375351645, 0.00595069677, 0.0254811887, 0.0134490104, -0.0016852133, -0.0102665871, -0.0253286064, -0.0146042742, 0.012304646, -0.018615, -0.0159666128, 0.000825577416, 0.00221516332, -0.0124136331, -0.0203914903, 0.00464830082, -0.000464217, -0.0132964291, -0.00975979678, -0.00410336489, 0.0085718371, 0.0152581967, 0.00535944151, 0.00981429, -0.00184596935, 0.00131601945, 0.00367831532, 0.0132637322, -0.00484175282, -0.00104014587, 0.00396985607, -0.0125662154, -0.0290995613, 0.0281622726, 0.00931294914, 0.00947098061, -0.00898598786, -0.00068048836, 0.0192362275, -0.000562305446, -0.0390173905, -0.0027505625, -0.00731303589, 0.0015762262, -0.00197811634, -0.0187784806, 0.019781163, 0.0110131484, 0.00742747216, 0.00162799517, 0.0332192741, 0.0140702371, -0.00370283751, -0.00311430707, 0.0093075, 0.00754190888, 0.0094328355, -0.0146696661, 0.0237373952, -0.0166423339, 0.00322874356, -0.00986878388, -0.0113455588, 0.00140048447, -0.0169365983, -0.0105880983, 0.012304646, -0.00519596087, -0.00805959757, -0.00118523499, 0.0291649532, -0.0127623919, 0.00974344835, 0.00564553263, -0.0142664136, -0.0184079241, 0.0211652983, 0.0207947418, 0.00993417576, 3.22916931e-05, 0.0167731177, -0.0126861008, 0.00154353015, 0.00124040968, -0.0107134338, 0.00930205081, -0.0271377936, -0.0163371693, 0.0107243331, -0.0210672095, -0.0135797951, -1.39001149e-05, 0.0317152515, -0.0168058146, -0.000271956931, -0.0205876678, 0.0152255008, -0.0343963355, 0.0198465548, 0.0261133146, -0.00216884376, 0.000103793202, 0.018124558, -0.00633760123, -0.0076236492, -0.00520413509, 0.023519421, -0.0310613289, -0.00829936936, 0.00655557541, -0.00364834396, 0.0108060734, 0.00371101149, 0.0115090404, -0.00435948465, -0.00239635422, 0.0131547451, -0.00736752944, 0.0218083225, -0.00737297861, 0.00531584676, 0.0331974775, -0.0261133146, 0.00775988307, -0.0177322049, -0.00537306489, 0.00572727341, -0.00980884116, 0.00111848034, 0.00269606896, 0.0130021637, -0.0173943453, -0.00308161089, -0.005253179, 0.00334317982, -0.00459925644, 0.00086849113, -0.00449571852, 0.00253122579, -0.0175905209, -0.00423687417, 0.0352900289, 0.022603929, 0.0156287532, -0.00462105405, 0.0101412516, 0.00578176696, 0.010190296, 0.000555493752, -0.0196067821, -0.00289905746, -0.00296444958, 0.0119340895, 0.0131547451, 0.0061032786, 0.019214429, -0.0170019902, 0.00996142253, -0.00856093876, 0.0110948887, 0.019781163, -0.0232142564, 0.00813588873, 0.0272249822, -0.0076018516, -0.0119013935, -0.0152146025, 0.015018425, 0.00769994, 0.0147241596, 0.0295791049, -0.0202934016, -0.00866447575, -0.0430717096, 0.00545753026, 0.0165224466, 0.0132201379, 0.00613052538, 0.0130021637, 0.00628855685, 0.0337642096, -0.0181790516, -0.0173616484, -0.00228055543, 0.00649018306, -0.0203478951, 0.0176232178, -0.0142010218, -0.00801600236, -0.00650653103, 0.0132528339, -0.00746561773, 0.0139176557, -0.00987968221, -0.00289088348, 0.0130130621, 0.011530837, 0.0362055227, 0.00369738811, -0.030145837, -0.00974344835, 0.0131765427, -0.0132637322, 0.000313167693, -0.00680079637, -0.00986333471, 0.00779257901, -0.0152363991, 0.000622248335, -0.00752011128, 0.00627220888, -0.0102393404, 0.00643024, -0.000164928162, -0.00106943608, 0.00522320764, -0.0142882112, 0.027007008, -0.00160483539, 0.0120975701, 0.0062122657, -0.0104573146, 0.000655966229, -0.00221516332, -0.00161300937, 0.00575996935, 0.00638119597, -0.0136015927, -0.00149857288, 0.00322056934, 0.00798875559, -0.0119231911, 0.00211979961, -0.00886065327, 0.0193561129, -0.0143645024, 0.00837021, 0.00385269476, 0.00655557541, 0.0245221015, 0.00663731573, -0.0245656967, -0.000405977, 0.0177975968, 0.00911677256, -0.00182689657, -0.00791246537, -0.00341674616, -0.00530222338, 0.00687708752, -0.00697517581, 0.0166968275, 0.00672450522, -0.0112256734, 0.00294265221, -0.00247809454, 0.00991782825, 0.0218519177, 0.0241733436, 0.0252414178, -0.013786871, -0.0150620202, 0.0176341161, -0.0087026218, -0.0123809371, -0.0194106065, 0.000627357105, -0.010048613, 0.0198683515, 0.0232142564, 0.0270724, -0.000650516886, 0.00021099225, 0.0112692686, 0.0364016965, -0.0251978226, 0.0052014105, 0.000264974951, -0.019181734, -0.0231052693, 0.0234322306, 0.021405071, -0.00778713, 0.00238136854, -0.00429681735, 0.00334045524, -0.0144952871, -0.0305599887, 0.00998322, -0.0111929774, 0.00874076691, -0.00557196653, 0.0379057191, -0.00171927188, -0.022778308, -0.0047245915, -0.00911132339, 0.000590573938, 0.00998322, -0.0192253273, -0.00089914375, -0.00906772818, 0.00868082419, -0.00931839924, 0.0145497806, 0.00784162339, -0.0191599354, -0.00564553263, -0.0248708613, 0.00773808546, -0.0313011, 0.0158576258, -0.00878436211, -0.0222006757, 0.0142664136, 0.00434858631, -0.0248708613, 0.00147950021, 0.011214775, 0.0119558871, -0.0216666404, -0.000658009725, -0.0106643895, 0.0328705162, -0.00728033949, -0.00713865645, -0.0273557678, -0.00571637461, 0.0198465548, 0.00892604515, -0.0140920347, -0.0347232968, -0.0207729451, 0.00637574634, -0.0157159436, 0.0190945435, -0.0309305452, -0.00447937055, 0.000550385, -0.00968350563, -0.0134926056, -0.00146315212, 0.00252577662, -0.0057926653, -0.0159775112, 0.00342219556, -0.0126752025, -0.00571092498, -0.01227195, -0.00651743, -0.00783617422, -0.000346544984, 0.00820128061, 0.000578312902, -0.0256991629, 0.00296989898, -0.0036864893, -0.0166968275, 0.00100540614, -0.0141465282, -0.00249035563, -0.0215031598, 0.0234758258, -0.0212197918, -0.0263312887, -0.00411698828, 0.00230507762, -0.015901221, -0.00748741534, 0.00120362651, 0.00742747216, -0.0111602815, -0.00668635964, -0.0112910653, -0.0323255807, 0.00255438569, -0.0223423596, 0.0143427048, 0.0306471791, -0.0253504049, 0.0127732903, 0.0411971323, 0.00772173749, -0.0175360274, -0.0176123194, -0.0102992831, 0.0146151725, -0.000308569783, -0.00916036777, 0.00579811493, -0.0144734895, 0.000212524887, 0.0163044725, 0.0105390549, 0.0135906935, 0.00990148, 0.0118577983, 0.0030625381, -0.0324999578, 0.00426957058, 0.0058035641, 0.0162935741, 0.00336225261, 0.0339603871, -0.00562918466, -3.10996438e-05, -0.0101085557, 0.0188547727, -0.00761819957, -0.00486082537, -0.0272467807, -0.00716045359, 0.0198683515, 0.0171109773, 0.0131765427, 0.0184624176, -0.00162254577, 0.0237155966, 0.014985729, -0.0137214782, -0.0123482412, -0.0250888355, 0.00193588377, 0.015301792, 0.00605423469, -0.0117161153, 0.00460198103, 0.00189228891, 0.000292221725, -0.00528587541, -0.0222224742, -0.0159339178, 0.0132310363, -0.0281840693, -0.0052749766, -0.0153671838, -0.00361837237, 0.00468917098, -0.00625586091, 0.00822852738, 0.0196285807, 0.00365379313, 0.0146042742, -0.00387721672, -0.00925300643, 0.0146260718, 0.000845331349, -0.000441057258, -0.00375460624, -0.00324509153, -0.0309523419, 0.0235412177, -0.00261977781, -0.0189746581, -0.000598407409, 0.00953092333, -0.00860998221, -0.0329141095, -0.00156668981, 0.00378185301, 0.0087189693, 0.0294265226, 0.0110131484, -0.0356169902, -0.0185605064, 0.00440852903, 0.00743837096, 0.0165987387, -0.0185714047, -0.0074819657, -0.0268762242, -0.0154543733, -0.0107134338, 0.0109150605, 0.00371918548, 0.0318678357, 0.00959086698, -0.011672521, 0.0116180275, -0.00542483386, 0.0050706258, 0.0221570823, -0.0117379129, 0.0226693209, -0.00983063783, 0.0113128629, -0.0110894395, -0.000111796944, -0.00842470396, 0.00698607462, -0.00751466211, -0.0116289258, 0.00948188, 0.0145061854, 0.0052640778, -0.00426139636, -0.00702421973, -0.00820673, -0.00597794354, -0.00357750221, 0.0193452146, 0.0107679274, -0.00729123829, -0.00886065327, -0.00985788461, -0.033110287, 0.0283366516, 0.00082625862, -0.00897508953, 0.0146805653, 0.00787431933, -0.0175578259, 0.00131397601, -0.000346034096, -0.0190836452, 0.0143754017, -0.00717135239, -0.00482812943, -0.0173071548, -0.00249308045, 0.0109423073, -0.0248708613, -0.00993417576, -0.0236284081, -0.0174815338, -0.0201844145, -0.00191408629, 0.0165551435, -0.00909497496, 0.0141247306, -0.0214486662, 0.0232360549, 0.0036020244, -0.0131765427, 0.00870807096, 0.00901323464, 0.0184951145, 0.0362491161, 0.00497253751, 0.0133509226, -0.00038758546, 0.00768359192, -0.00542755844, -0.00759095279, -0.0111112371, 0.0116507234, 0.0175033323, 0.00252305181, -0.00132828054, 0.00139435392, 0.0209364258, -0.027399363, -0.0122065572, 0.00960721448, -0.00660461932, -0.0112256734, 0.00877346285, -0.0324999578, 0.0150293242, 0.00585260848, 0.000592958066, 0.00267290906, 0.0115417363, 0.00247945706, 0.0103973709, -0.0287726, -0.00489897095, 0.00768359192, -0.0255901758, -0.0047245915, 0.0119231911, 0.00723129557, 0.0225385372, 0.00295900041, -0.0133836186, 0.00552019756, -0.00280096894, -0.00385814416, -0.0224295501, -0.0146369701, -0.0292085484, -0.00654467661, 0.00681169517, -0.00493984111, 0.00714410562, 0.0113019645, 0.0181463547, -0.00689343549, -0.0108769145, 0.00945463311, -0.00880616, -0.000365447428, 0.00981429, -0.00756370602, 0.00247945706, 0.00147268851, 0.0274211597, 0.0177866984, 0.0195086952, -0.016751321, 0.000640980492, -0.0187130887, 0.00627765805, -0.0123264436, 0.0143100088, 0.00840835646, 0.00970530324, -0.00459380727, 0.00649563223, 0.0107733766, -0.0211870968, -0.0358349644, 0.0159230176, -0.00883885566, -0.018865671, -0.00317969918, 0.00263612601, 0.0338078029, 0.000681510079, -0.0070732641, -0.00370556209, -0.00177785242, 0.0107679274, -0.0164243598, 0.0110185975, 0.0282930564, 0.0142664136, -0.000530971622, -0.0120539758, 0.00246174657, 0.0141247306, -0.00331048388, 0.00662096776, 0.00869717263, -0.017666813, 0.0343963355, -0.0106098959, 0.0151383113, -0.000440376083, -0.0208274387, 0.00815223623, 0.0223641563, -0.0154652726, 0.0106371427, 0.00079424365, 0.0081849331, -0.000352505216, -0.0241079517, -0.00104695756, -0.0218955129, 0.00146996381, -0.00311430707, -0.00140320917, -0.00223151129, -0.01735075, 0.002547574, 0.0177975968, 0.00799965486, -0.00431316532, 0.0236066096, 0.00227101916, 0.000283877394, 0.0101467008, -0.00853369199, 0.00330503448, 0.0232796483, 0.0137650734, -0.0171654709, 0.0147023629, -0.0286636129, 0.000180169329, -0.0172199644, 0.00916581694, -0.0193125177, 0.00249852985, 0.00550657418, 0.0152255008, -0.00344671775, 0.0173725467, 0.020380592, 0.00356932823, -0.00417965604, -0.0199773386, -0.007634548, 0.00683349231, 0.00202171109, 0.00380909978, 0.00918216445, -0.0148876403, 0.0124572283, -0.0148767419, -0.022178879, 0.00747651653, 0.0216557402, -0.00243041269, 0.00274920021, 5.82825669e-05, 0.00455021206, -0.030712571, 0.0014740508, 0.0108278701, -0.0234540291, -0.0232142564, -0.0148658436, 0.0130021637, -0.0241079517, -0.0121629629, -0.00506790122, 0.000645067543, -0.00805959757, 0.00920941215, -0.0173289515, 0.0170455854, -0.00145361573, 0.0105608515, 0.00918761455, 0.0134272128, 0.0322383903, -0.0175578259, -0.0169910919, -0.0151165137, 0.0205331743, -0.0217102338, -0.0012118005, 0.0138958581, -0.0168930031, 0.0100377137, 0.0333718546, 0.0016852133, 0.00251351553, 0.00916036777, -0.00136233901, 0.00487989839, -0.0178193934, 0.018691292, -0.0101412516, 0.0194215048, -0.0267890338, -0.00962356292, -0.00211707479, 0.000717271469, -0.00135007792, -0.00365379313, -0.0112256734, 0.00513874274, 0.00274102599, 0.00686073909, 0.0177213065, 0.0184079241, 0.0202171113, -0.00125607662, -0.00580901373, 0.00633215159, -0.00182825897, 0.0140593387, 0.00711685885, 0.00540303672, -0.0151819056, -0.0053839637, 0.00268108328, 0.00710051088, 0.0096671572, -0.0272467807, 0.0262658969, -0.0131111508, -0.00429681735, -0.0224077515, 0.00844650157, 0.0107025355, -0.00851189438, -0.0125662154, -0.00902958307, -0.0098197395, 0.000229894707, 0.00656647421, 0.0277263243, 0.0100050177, 0.0235412177, 0.00986333471, 0.0179174822, 0.028031487, -0.017699508, 0.00493711652, -0.00487989839, -0.0160211064, 0.0292521436, -0.0146587677, -0.0169583969, 0.00172063417, -0.00515781529, -0.00180782389, 0.00237183226, -0.013786871, 0.0183861274, -0.0044139782, -0.0224949419, -0.0252196193, -0.00999411941, -0.00424504839, -0.00620681653, 0.00622861413, -0.000708416279, 0.00604333589, 0.00264021289, -0.00170973549, -0.0058253617, -0.016151892, 0.0157159436, -0.0313011, -0.000501681352, 0.012446329, 0.0111439331, -0.0227347128, 0.00521230884, -0.0212197918, 0.0211870968, 0.00198356551, -0.0176559128, 0.012871379, -0.000590914569, 0.0211979952, -0.00542755844, 0.00129967136, -0.0120430766, 0.000380092592, -0.0020257982, 0.00690978346, -0.0233886354, 0.00641934155, -0.00823942665, 0.00561283669, 0.0173180532, 0.000728170213, -0.000903230743, 0.00855548866, -0.00120090181, -0.00192498497, -0.0136342887, -0.00971075241, 0.00140048447, 0.0380365066, 0.0112038758, 0.00882250722, 0.00207075523, 0.00765089598, -0.0044466746, -0.00669725845, -0.0170891806, 0.0166314337, -0.0389519967, 0.0237155966, -0.0304074064, 0.0126098096, 0.0113128629, 0.0172199644, -0.0142010218, -0.010718883, 0.0171109773, 0.000323896093, 0.00489352178, 0.00313610444, -0.00207756693, -0.0111929774, -0.014560679, 0.00434858631, -0.00934019592, -0.022952687, 0.015726842, 0.0216884371, -0.000768359227, 0.00528587541, -0.0263094902, -0.0149530331, 0.00103333418, 0.0280532856, -0.0266146548, -0.00178602641, 0.0121193677, 0.0138958581, 0.000748605293, 0.0229308903, -0.0136887822, 0.0372082032, -0.0149312355, -0.0111602815, -0.0248490628, 0.0258517452, 0.0155524621, -0.0105935484, -0.00398620404, -0.00793971214, 0.0041360613, 0.0292957388, 0.00494529074, -0.0129803661, -0.00156396523, 0.00657192338]
|
15 Mar, 2024
|
Formatting Dates in Python
15 Mar, 2024
In different regions of the world, different types of date formats are used and for that reason usually, programming languages provide a number of date formats for the developed to deal with. In Python, it is dealt with by using a liberty called DateTime. It consists of classes and methods that can be used to work with data and time values.
Required library
import datetime
The datetime.time method
Time values can be represented using the time class. The attributes for the time class include the hour, minute, second, and microsecond.
Syntax of datetime.time
time(hour, minute, second, microsecond)
Example 1:
[GFGTABS]
Python3
import datetime
tm = datetime.time(2, 25, 50, 13)
print(tm)
[/GFGTABS]
Output
02:25:50.000013
Example 2:
There are ranges for the time attributes i.e for seconds we have the range between 0 to 59 and for nanoseconds, range is between 0 to 999999. If the range exceeds, the compiler shows a ValueError. The instance of time class consists of three instance attributes namely hour, minute, second, and microsecond. These are used to get specific information about the time.
[GFGTABS]
Python3
import datetime
tm = datetime.time(1, 50, 20, 133257)
print('Time tm is ',
tm.hour, ' hours ',
tm.minute, ' minutes ',
tm.second, ' seconds and ',
tm.microsecond, ' microseconds')
[/GFGTABS]
Output
Time tm is 1 hours 50 minutes 20 seconds and 133257 microseconds
The datetime.date method
The values for the calendar date can be represented via the date class. The date instance consists of attributes for the year, month, and day.
Syntax of datetime.date
date(yyyy, mm, dd)
Example 1:
[GFGTABS]
Python3
import datetime
date = datetime.date(2018, 5, 12)
print('Date date is ', date.day,
' day of ', date.month,
' of the year ', date.year)
[/GFGTABS]
Output
Date date is 12 day of 5 of the year 2018
Example 2:
To get today’s date names a method called today() is used and to get all the information in one object (today’s information) ctime() method is used.
[GFGTABS]
Python3
import datetime
tday = datetime.date.today()
daytoday = tday.ctime()
print("The date today is ", tday)
print("The date info. is ", daytoday)
[/GFGTABS]
Output
The date today is 2020-01-30The date info. is Thu Jan 30 00:00:00 2020
Convert string to date using DateTime
Conversion from string to date is many times needed while working with imported data sets from a CSV or when we take inputs from website forms. To do this, Python provides a method called strptime().
Syntax: datetime.strptime(string, format)
Parameters:
string – The input string.
format – This is of string type. i.e. the directives can be embedded in the format string.
Example:
[GFGTABS]
Python3
from datetime import datetime
print(datetime.strptime('5/5/2019',
'%d/%m/%Y'))
[/GFGTABS]
Output
2019-05-05 00:00:00
Convert dates to strings using DateTime
Date and time are different from strings and thus many times it is important to convert the DateTime to string. For this, we use strftime() method.
Syntax of datetime.strftime
Syntax: datetime.strftime(format, t)
Parameters:
format – This is of string type. i.e. the directives can be embedded in the format string.
t – the time to be formatted.
Example 1:
[GFGTABS]
Python3
import datetime
x = datetime.datetime(2018, 5, 12, 2, 25, 50, 13)
print(x.strftime("%b %d %Y %H:%M:%S"))
[/GFGTABS]
Output
May 12 2018 02:25:50
Example 2:
The same example can also be written in a different place by setting up the print() method.
[GFGTABS]
Python3
import datetime
x = datetime.datetime(2018, 5, 12, 2, 25, 50, 13)
print(x.strftime("%H:%M:%S %b %d %Y"))
[/GFGTABS]
Output
02:25:50 May 12 2018
%H, %M and %S displays the hour, minutes and seconds respectively. %b, %d and %Y displays 3 characters of the month, day and year respectively. Other than the above example the frequently used character code List along with its functionality are:
Frequently used character code in DateTime
%a: Displays three characters of the weekday, e.g. Wed.
[GFGTABS]
Python3
import datetime
x = datetime.datetime(2018, 5, 12, 2, 25, 50, 13)
print(x.strftime("%a"))
[/GFGTABS]
Output
Sat
%A: Displays name of the weekday, e.g. Wednesday.
[GFGTABS]
Python3
import datetime
x = datetime.datetime(2018, 5, 12, 2, 25, 50, 13)
print(x.strftime("%A"))
[/GFGTABS]
Output
Saturday
%B: Displays the month, e.g. May.
[GFGTABS]
Python3
import datetime
x = datetime.datetime(2018, 5, 12, 2, 25, 50, 13)
print(x.strftime("%B"))
[/GFGTABS]
Output
May
%w: Displays the weekday as a number, from 0 to 6, with Sunday being 0.
[GFGTABS]
Python3
import datetime
x = datetime.datetime(2018, 5, 12, 2, 25, 50, 13)
print(x.strftime("%w"))
[/GFGTABS]
Output
6
%m: Displays month as a number, from 01 to 12.
[GFGTABS]
Python3
import datetime
x = datetime.datetime(2018, 5, 12, 2, 25, 50, 13)
print(x.strftime("%m"))
[/GFGTABS]
Output
5
%p: Define AM/PM for time.
[GFGTABS]
Python3
import datetime
x = datetime.datetime(2018, 5, 12, 2, 25, 50, 13)
print(x.strftime("%p"))
[/GFGTABS]
Output
PM
%y: Displays year in two-digit format, i.e “20” in place of “2020”.
[GFGTABS]
Python3
import datetime
x = datetime.datetime(2018, 5, 12, 2, 25, 50, 13)
print(x.strftime("% y"))
[/GFGTABS]
Output
18
%f: Displays microsecond from 000000 to 999999.
[GFGTABS]
Python3
import datetime
x = datetime.datetime(2018, 5, 12, 2, 25, 50, 13)
print(x.strftime("% f"))
[/GFGTABS]
Output
000013
%j: Displays number of the day in the year, from 001 to 366.
[GFGTABS]
Python3
import datetime
x = datetime.datetime(2018, 5, 12, 2, 25, 50, 13)
print(x.strftime("%j"))
[/GFGTABS]
Output
132
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Formatting Dates in Python
|
https://www.geeksforgeeks.org/formatting-dates-in-python/?ref=lbp
|
Pandas
|
Formatting Dates in Python
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Formatting Dates in Python, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.014556204, 0.00717933243, -0.00488293357, 0.0693364218, 0.0181242637, 0.0228652172, -0.0141487783, 0.0108770281, -0.0160130598, -0.0103276204, 0.0233714115, 0.00161889929, 0.0115128588, 0.000432118017, -0.0238776077, 0.0216429401, -0.00444155606, -0.00201860839, -0.00261431397, 0.00327175064, 0.0183835346, 0.0133339278, -0.0436562672, -0.0127289621, -0.00199700263, 0.0215935539, -0.0134450439, 0.0205070861, 0.0332360491, 0.00795097183, 0.0333101265, 0.000456038833, 0.0244702268, -0.0362732224, -0.0440513454, -0.0277790148, 0.0159389824, 0.0290877167, -0.00919176731, -0.00146997289, -0.00297544128, 0.01062393, 0.0255813859, 0.0024553563, -0.0142598944, 0.0386437, 0.0046113166, 0.0118894186, 0.0196305048, -0.0374337658, -0.039310392, -0.0285197888, 0.0260999277, 0.0609903708, 0.0306927264, 0.0155192101, 0.0172353368, 0.0107412189, -0.0403721705, -0.0254579242, 0.0297297202, -0.00380881177, 0.00401561102, -0.0358040631, 0.0237788372, -0.000534360239, -0.0157167502, 0.016321715, 0.0108029507, -0.0201367, 0.00618237443, 0.0173958372, 0.0213713218, -0.026346853, -0.00521010859, -0.027087627, -0.00825962704, 0.0267913174, -0.0279271696, 0.0465946682, -0.0130623104, -0.018371189, -0.00197076681, -0.012988233, 0.0269147791, 0.0166180246, 0.0261986982, -0.038396772, -0.00235195667, 0.0285197888, 0.0372609198, 0.009599193, 0.00193064159, -0.0151488231, -0.0596569777, 0.00727192918, 0.0272357818, 0.0257542338, -0.0257789269, 0.00491997227, 0.00199700263, 0.00281648361, 0.00462057628, -0.0515084676, 0.00662992522, -0.0165069085, 0.0209885892, -0.0118523799, -0.0168896411, -0.0318779647, -0.0111177796, -0.027828401, -0.00437056506, -0.00239671185, -0.0863742158, -0.00704969699, 0.000442535151, -0.0289889462, 0.0493849181, 0.0145068197, 0.00167600065, 0.0333348177, 0.0474095196, 0.0429648757, -0.0390140824, 0.0384214669, 0.0174081828, -0.0265443921, 0.0253344625, -0.0106115844, -0.0333842039, 0.0250504985, 0.00762379635, 0.0222849436, -0.00725958264, 0.00764848897, 0.0123153636, 0.0347422883, -0.00342607871, 0.00208959938, -0.0227047149, -0.00417919876, 0.00046221196, 0.00525949383, 0.0149389375, -0.0226553306, 0.00390140852, 0.0465205908, 0.0309149586, -0.00244763982, -0.0422241054, -0.0704228878, 0.00393536035, 0.0383720808, 0.0596075952, -0.0229146015, 0.0164575242, -1.27561625e-05, -0.0195934661, -0.0606940612, 0.00028550654, -0.0279765557, 0.0118276877, -0.0292358715, 0.00876582228, 0.0140500087, 0.0569408089, 0.0075991042, -0.0037655998, 0.0457798168, -0.00650646258, -0.0194453113, -0.0101856394, 0.00938313454, -0.0117474366, 0.0127783474, 0.0110745672, 0.00206490676, -0.00765466224, 0.00650646258, -0.058274202, 0.00518850284, 0.0124079604, 0.0159142893, 0.00847568642, 0.0263962373, 0.00964857824, 0.00859914906, 0.00456810463, -0.0378288478, -0.0171612594, 0.0151611697, 0.0263221599, -0.0222108662, -0.00927201845, -0.00432735309, -0.0118029946, -0.00106872048, -0.0461008213, 0.0461255126, -0.0279518627, -0.0366929919, -0.0291864853, 0.00123539451, 0.0115684168, 0.00398165872, -0.0520517, 0.00326866424, 0.0187786147, -0.00193527143, -0.00571013102, 0.0108461622, -0.0047625578, -0.0304704942, 0.0226800237, 0.0101609463, 0.0118647264, 0.0132228117, 0.0368411466, -0.0581754334, -0.0197539665, 0.0401005521, 0.020704627, -0.00871026423, -0.0188526921, -0.010025138, -0.0127783474, 0.0209885892, -0.035458371, 0.00425327616, 0.0120252268, -0.00722254394, -0.0209145118, -0.0228899084, 0.0331619717, -0.00132181821, 0.0323718116, -0.00366065698, -0.0468662865, 0.0159883667, 0.0350879841, -0.0400264747, 0.0293593332, -0.0328656621, -0.0132475039, -0.012562288, 0.020309547, 0.0428661071, 0.0168526024, 0.0440266542, -0.0174452215, -0.023099795, -0.0047995965, 0.0233343728, -0.0104572559, -0.000348973874, -0.0249640755, -0.00578420842, 0.0292111784, 0.00083491375, 0.0150377071, 0.0177909154, 0.0142722409, 0.00812999159, 0.014926591, 0.0179637633, -0.00292142644, -0.0470391326, 0.00182569865, -0.0322977342, 0.0294087175, -0.040421553, -0.00637065433, 0.00647559715, 0.0118894186, -0.00511442544, -0.0204330087, 0.00575334299, 0.0220874045, 0.0327668935, -0.000473786553, 0.0292358715, 0.0435574949, 0.0018812567, 0.0318532698, -0.0102103315, -0.0229886789, -0.0285938662, -0.00074501778, -0.0399523973, 0.0139759313, 0.00581198744, -0.00882138, 0.0214330535, 0.0343965963, 0.0208651274, -0.0316557325, -0.0365448371, -0.0132968891, 0.0169637185, -0.0229639858, -0.00806208793, -0.0494343, 0.0064570778, 0.00253715017, -0.00935226865, 0.0339768231, -0.01062393, 0.0260752365, -0.00119526929, -0.00906213187, 0.0116610136, -0.0114264349, 0.00463600922, -0.0115437247, 0.0245936885, -0.0124943843, 0.0122721521, -0.0146179358, -0.0351620615, 0.00850655232, 0.00627805758, 0.00521010859, 0.0108461622, 0.0264456235, -0.016321715, -0.0404956304, -8.00575799e-06, -0.00381498481, -0.0424957201, -0.0452365838, 0.0127413087, -0.0179884564, 0.00258962158, -0.0192354247, -0.015408094, -0.0304951854, -0.0338039771, 0.0190872699, -0.00670400262, 0.00551567785, 0.0278777853, -0.00171766907, -0.0242479946, 0.00935226865, -0.00632126955, -0.0164945628, -0.00451872, -0.0248899981, 0.00286741182, 0.00103631162, -0.0123524023, 0.0132475039, 0.00793245248, 0.0290630236, -0.0516566224, 0.00519158924, -0.0347669795, -0.0250998847, -0.0127783474, -0.00601878669, -0.00598792126, 0.0143339718, 0.00305260508, -0.0488910675, -0.0517060086, 0.0155315567, 0.0194700025, 0.0144080492, 0.00323162554, -0.0132598504, -0.0121795554, -0.0109572783, -0.0213219374, -0.00634596171, 0.00521319546, 0.021902211, 0.002990874, 0.0111795105, -0.0169019885, -0.0149018988, 0.0212972462, -0.000668239663, 0.00539530208, -0.0361744501, -0.0155192101, -0.0193465408, -0.0182230342, 0.000225897413, 0.0278777853, -0.011790649, -0.00904978625, 0.00181026582, -0.05343448, -0.00185039104, -0.00554037048, 0.0349398293, 0.00161426945, 0.0187539216, 0.0262233913, -0.0236183368, -0.0140253166, 0.00675956067, -0.0181119181, 2.42584119e-05, -0.0223713666, -0.0351867527, 0.011790649, 0.0656325519, 0.0407425575, 0.00656202063, 0.059014976, -0.00653732847, -0.0186798442, -0.00816085748, -0.0147043588, -0.0308161881, 0.0556568019, -0.0103584863, 0.00279179099, 0.0350879841, 0.0153463632, -0.0197910052, 0.031359423, 0.036199145, 0.0150623992, -0.020766357, 0.0424216427, -0.0139388926, 0.00106254732, -0.0146179358, -0.0130005796, 0.0281247105, 0.0402734, 0.0195317343, -0.0323718116, 0.0160624441, -0.01062393, 0.0103708329, -0.0451131202, -0.0451871976, 0.0118338605, 0.0605952926, 0.0227541011, -0.0289148688, 0.0381992348, -0.0430389531, 0.017087182, 0.0272357818, -0.00126085861, 0.000969179, -0.0172847211, -0.0106115844, 0.0364213772, 0.0335076675, 0.00534591731, -0.0146179358, -0.0139759313, 0.0128030395, 0.00427796831, 0.0580272786, -0.0134203508, -0.0223837141, 0.0167414863, 0.0264950078, -0.0324705839, 0.0365942232, 0.00400635134, -0.0272357818, 0.011136299, -0.0482490622, -0.0192848109, -0.00706821634, 0.00136888819, 0.0342484415, 0.00722871721, -0.0208774731, 0.0275073983, -0.00654967455, -0.0190625787, 0.0575828142, -0.00406190939, 0.0199268144, 0.011562244, -0.00184730452, 0.00584902614, -0.0127289621, -0.0192107335, -0.0149636297, -0.0129141556, 0.0257295407, 0.0476811379, 0.0239640307, -0.00782750919, -0.0137536991, 0.0337545909, -0.0273098592, 0.0160747897, 0.0132845426, -0.0138648152, -0.000294573314, 0.0317791924, -0.0220133271, 0.0489651449, 0.00502800196, -0.00308501394, 0.00360201229, 0.00722871721, -0.0147167053, -0.010938759, -0.000691003, 0.00685215741, -0.0130252717, 0.0525455512, -0.00302791269, 0.0153463632, -0.00640151976, -0.0017701406, -0.010765912, -0.0130499639, 0.0179020315, -0.00843864772, 0.00724723656, -0.00495701097, 0.000457196293, 0.0166056789, 0.0012824646, -0.0277049374, 0.00370078208, -0.000878897205, 0.0331372805, 0.00415450614, 0.00354028121, 0.0128277317, -0.00267141522, -0.0439278819, -0.0554592609, 0.00909917057, 0.0189638082, 0.0144944731, -0.0362732224, 0.0291617941, -0.0375325382, -0.0217664018, 0.0130993491, -0.0218034405, -0.00877816882, 0.019655196, -0.00480577, 0.0133215813, -0.00427488191, 0.0240381081, -0.0282234792, -0.00954363495, -0.0236800667, -0.00704969699, -0.0279271696, -0.000326017616, -0.0254826173, 0.0342731327, -0.0173711441, 0.0106301038, -0.00869174488, 0.0145932427, 0.0354336761, 0.000737687165, -0.0136549296, 0.0280753244, 0.00588297797, 0.0329891257, 0.0231244881, -0.0191366561, 0.0333348177, 0.00244763982, -0.0209268592, -0.000532431121, 0.0237171054, 0.0125931539, 0.0268407017, 0.0108708544, -0.00145994162, 0.0195811186, -0.00553728361, -0.0199144669, 0.00817320403, -0.00856828317, -0.0273839366, -0.00788924, -0.0278777853, 0.0175810307, 0.0334829725, 0.0390387774, -0.0217293631, -0.0023812789, -0.0155932875, 0.021988634, -0.0106177572, -0.00161581277, 0.0457798168, -0.0037655998, 0.00366065698, 0.0203465857, 0.0278530922, 0.0337052047, -0.00909917057, -0.0141364327, 0.0138648152, -0.0314828828, -0.00692006154, -0.0142969331, -0.0180625338, 0.00251708739, 0.00887076557, -0.00108029507, 0.00827814639, -0.00419771811, 0.0100806961, 0.0387177728, -0.0278530922, -0.032445889, 0.00252326066, -0.00253560673, 0.0250751916, 0.0270382427, -0.00235041347, 0.0150130149, 0.0271123201, 0.00447550789, -0.0145191653, -0.0609903708, 0.0240257625, -0.0406190939, -0.00782750919, 0.00561444787, 0.0470885187, 0.00216676318, 0.000636602461, -0.00423784321, 0.00342607871, 0.0209268592, 0.00951277, -0.00960536674, -0.0122042475, 0.107856661, 0.00170069304, 0.0292852558, -0.0185069982, 0.0456069708, 0.00650029, 0.010253543, -0.0296062566, -0.0335817449, 0.0157784801, 0.0329397395, -0.0108029507, -0.00300476351, 0.0116857057, -0.0318038873, 0.0205688179, 0.00467922073, 0.00289056101, 0.000438676943, 0.0309149586, -0.00330570294, 0.0126425391, -0.00141672976, 0.0359275267, 0.0157661345, 0.0181613024, 0.0227911398, 0.025606079, -0.0289395619, -0.000468770886, 0.0213095918, -0.00275783893, -0.00924732536, -0.0077163931, 0.0247912277, 0.0210009366, -0.0125437686, 0.00184113148, -0.018284766, -0.0244578794, -0.0106856609, 0.0268160105, 0.00546629308, 0.00549715851, -0.0179390702, 0.00289673405, -0.000155967602, 0.0177415311, 0.0344706737, 0.0233714115, 0.0149759762, -0.00275783893, 0.0194453113, -0.00851272512, 0.00814233813, -0.0102226781, -0.000571398938, 0.00668548327, 0.0254579242, -0.0131487343, -0.00933992211, -0.0339027457, 0.0286926366, -0.00967327, -0.0079077594, 0.00107566523, -0.015951328, 0.0163340606, -0.0130623104, 0.000737301365, -0.0092905378, -0.011167164, 0.0298531819, 0.0111054331, 0.0377794616, 0.012247459, -0.0169884115, 0.00443229638, -0.00848185923, -0.00698796567, 0.0040279571, -0.0186181143, 0.00238436554, -0.00834605098, -0.00865470618, -0.0452118926, -0.0107227, 0.00299859047, -0.037680693, 0.032445889, 0.00204330101, -0.0240257625, -0.0303223394, -0.00792627875, 0.0238282215, -0.0234578345, 0.0226553306, -0.00200163247, -0.0180995725, -0.00630275, -0.0147167053, 0.0143092796, -0.0121857282, 0.0497553051, 0.0215688627, -0.0124141332, -0.0275320914, 0.011821514, 0.0139635848, 0.0345200561, -0.00449094083, -0.00484280847, -0.0129758865, -0.00791393314, -0.00148231909, 0.025235692, 0.0300754141, 0.0178279541, -0.00129789731, 0.00235504331, -0.0179267246, 0.00913003646, -0.0105745457, -0.0293840263, 0.0191860404, 0.00572865037, 0.00892015081, 0.00606508506, 0.0153093245, 0.0366929919, 0.0207169726, 0.0271123201, 0.0157044027, -0.0115437247, -0.0323224291, 0.00982142519, -3.08414601e-05, -0.00358657958, -0.0229763333, -0.00335508771, -0.0301247984, 0.00504343444, -0.021618247, -0.00277172844, -0.0125005571, -0.00656202063, 0.00672252197, 0.0261740051, 0.00692623435, 0.00120375736, 0.0273098592, 0.0297297202, -0.039310392, -0.0148648601, -0.0289642531, -0.0247418433, -0.00116749026, -0.00640769303, 0.00701265829, 0.0292111784, -0.0368658416, 0.0640028492, -0.0261493139, -0.0275320914, -0.0334829725, 0.0103831785, 0.0131363878, 0.00502182869, 0.0171859507, -0.0146549745, 0.0257295407, -0.00289673405, 0.00746329548, -0.0205317792, 0.0153587088, -0.00354028121, -0.0101239076, -0.00190594909, -0.0190378856, -0.00318841357, -0.00105405936, -0.00420389092, 0.0239393376, 0.016235292, -0.00908682495, 0.0333101265, -0.00695092697, 0.0119573232, -0.010852335, -0.0466934405, -0.0109264124, -0.00627497118, 0.0247294977, 0.0104942946, -0.0114079155, 0.000761608, 0.0520517, -0.0145191653, 0.0186674986, 0.00148077589, 0.0205811635, 0.0221614819, 0.00588297797, -0.031902656, -0.00587989157, -0.00137351803, 0.022272598, 0.0292358715, 0.00301093655, 0.00996958, -0.00275012245, 0.00947573129, 0.0330632031, 0.00266832882, 0.000980753568, 0.0143463183, -0.0130746569, 0.00672252197, 0.00512985839, 0.0101424269, 0.0118276877, 0.00233498053, -0.0349645205, -0.0148772057, 0.0137536991, -0.0239887238, -0.0272604749, -0.00708056241, -0.0152969779, 0.0435821898, 0.0185563825, -0.00688302284, -0.0240381081, -0.0031513751, -0.0151858618, -0.00490762619, -0.00367300329, 0.0140253166, 0.00909299776, -0.00144991034, -0.0140870474, -0.0130746569, 0.0268653948, -0.00946955755, -0.0198033508, -0.0218281336, -0.0124141332, 0.0311124977, 0.00777812442, 0.0028396328, -0.0371868424, -0.00119141117, 0.000456424663, 0.0222355593, -0.0146179358, 0.0170377959, 0.00861149468, 0.0104757752, 0.00487058749, 0.0233096816, -0.00829666574, 0.0403721705, -0.0103770057, -0.00874113, 0.0155439023, -0.0181613024, 0.0133092348, 0.0267913174, 0.0180995725, -0.0209515505, 0.0131981187, 0.00778429769, 0.00632126955, -0.0255073085, 0.00901274756, 0.00219762884, -0.0188897308, -0.00911151711, 0.0073398333, 0.000733829, 0.0447674282, 0.0118276877, -0.0215071309, -0.0497553051, -0.030989036, 0.00521319546, -0.00574408332, -0.0185440369, 0.00922263321, 0.00106717716, -0.0319273472, -0.0195564274, 0.0108091235, -0.0674598, 0.0517060086, -0.0507676937, 0.00283500296, -0.00482428912, 0.0621756092, 0.0230627563, -0.0168896411, -0.00808060728, -0.0384461582, -0.00258807838, 0.00914855581, 0.00350324251, -0.0296556428, 0.0157167502, 0.0215688627, 0.00808678, 0.0158031732, 0.0264703147, -0.0263221599, -0.0228528697, -0.0127289621, 0.00393227395, 0.0174205285, -0.00370386872, 0.00995723344, 0.0161365215, 0.0175069533, -0.0434834175, 0.0241121855, -0.0181983411, -0.00584285287, -0.0189885013, -0.010994317, 0.0164822154, -0.0402734, 0.0441254228, -0.0161488671, -0.0411129445, 0.0211737826, -0.0169637185, -0.0263962373, -0.0103831785, -0.0298284888, 0.00542308111, -0.0124820378, -0.00362979132, 0.0038736295, 0.0332360491, -0.038594313, -0.00436747866, -0.0122906715, 0.0148154749, 0.00908065122, 0.00389214884, -0.0128153861, -0.0120437462, -0.0165192541, -0.0181242637, -0.00379337883, 0.0125931539, -0.000446007529, 0.0130870026, 0.0158278663, 0.00439217081, 0.00106486224, -0.0471872874, -0.00562988035, 0.0282481723, 0.0156426728, 0.00706821634, 0.00732131395, 0.0290877167, -0.0135808522, -0.0123215364, -0.0398783199, 0.00479651, -0.00931523, 0.0182724185, 0.0361497588, 0.00304025901, 0.00803739484, -0.0151858618, 0.0157290958, -0.00434587244, 0.00405882299, -0.00244918326, -0.00597248832, 0.0157167502, -0.0134326974, 0.00165130815, 0.00173001538, -0.000630815164, -0.0037285611, -0.0114758201, -0.0150623992, 0.0133709665, 0.00353410817, 0.0234454889, 0.00233035069, 0.00344151142, -0.0219639409, 0.0128400782, 0.00163741864, -0.0120684393, -0.0107720848, -0.00182569865, -0.0229022559, -0.00551259145, 0.0169637185, 0.0019923728, 0.0117412638, 0.00351250218, 0.0142969331, -0.00277172844, 0.0116795329, -0.0154698249, 0.0305692628, -0.00213435432, 0.00635830779, -0.0403721705, -0.00122304831, 0.00593853602, 0.0103029283, 0.0108646816, 0.000256184256, 0.00396313937, 0.00289519085, 0.000457967952, 0.034544751, 0.0264950078, 0.00977204, -0.0201737378, 0.0163834468, -0.00717933243, -0.0401499383, -0.00511751184, -0.00515455054, 0.0185810756, -0.0202354696, 0.0173464511, -0.0037254747, -0.0317545, -0.0170007572, 0.0152846314, 0.0123770945, -0.00312976912, 0.0142722409, 0.0141981635, 0.00739539135, -0.0124264797, -0.0119141107, -0.0143339718, -0.0122165941, 0.00738304481, -0.00100853259, -0.0172353368, -0.00260814093, -0.0116980523, 0.0400758609, 0.004685394, 0.075311996, -0.00428414159, -0.014469781, -0.0155562488, -0.0157908276, -0.00821024273, -0.00016869964, 0.0164698698, -0.0120993042, 0.0176798, -0.00886459276, -0.00294303242, -0.0191366561, 0.0134573895, -0.0075991042, -0.0114140892, 0.00651880912, -0.00475021172, -0.00491688587, -0.0170377959, -0.0229146015, -0.0092905378, 0.0038767159, 0.0140500087, -0.0184452664, 0.00819789618, -0.0123153636, -0.00220688852, -0.031902656, -0.00831518508, 0.0205317792, -0.01948235, 0.0144574344, -0.00316372118, 0.00837074313, 0.0290383305, 0.00274394942, -0.0122783249, -0.0288654845, 0.0304458011, -0.00131796, 0.0144450879, -0.0170254502, 0.021161437, 0.0310137272, 0.0177291855, -0.00880286098, 0.00572865037, 0.00995106064, -0.011963496, -0.0116424942, 0.00436130539, -0.0236306824, 0.0116918795, 0.0117968218, 0.0103461398, 0.00129095255, 0.00563605363, -0.00913620926, -0.0214454, 0.0218034405, -0.0302976463, 0.0296556428, -0.00871026423, -0.0063397889, 0.0210256279, 0.00492923195, 0.00967327, -0.0239887238, 0.0338780545, -0.00658054, 0.0160130598, 0.0152229005, 0.0208898205, -0.00384585047, 0.0414339453, 0.0362238362, 0.00957450084, 0.0228405241, -0.00702500436, 0.00607743114, -0.00615150854, 0.0449649654, 0.0218404792, -0.0143339718, -0.00768552767, 0.0164328311, -0.0175563376, -0.0228775628, -0.0164204855, 0.00421932386, -0.0173094124, -0.000174004672, 0.0159266349, 0.00821024273, -0.0315075777, 0.00743860286, 0.0131116956, -0.00281494018, 0.0218775179, 0.0110128364, 0.0106054107, 0.0194700025, 0.0167538337, -0.00814233813, -0.0158278663, -0.0169760659, -0.00887076557, -0.0117103979, -0.00703117764, 0.0323718116, -0.0121548623, -0.0198774282, -0.0451625064, 0.0106547959, -0.0133092348, 0.000526643824, 0.0262727756, 0.00854976382, 0.0105992379, -0.0367670693, -0.0164451767, 0.00787689444, 0.0110869138, 0.0158278663, -0.0301494915, 0.024754189, 0.0227787923, 0.00510516576, -0.00389523525, -0.0097103091, -0.0243097246, 0.00264826627, -0.0095189428, 0.0129141556, 0.0202725083, -0.00478725042, 0.0144203957, -0.00532431155, 0.00193681475, 0.00535517698, 0.00398474559, 0.00703117764, 0.0135685056, -0.00413907319, 0.0211367439, -0.0217170175, 0.0152352471, 0.000775883324, 0.0119202845, -0.00841395557, 0.00602496, 0.0138524687, 0.0124079604, 0.0235319119, -0.000498093199, 0.0160130598, -0.0189514626, -0.0168896411, -0.0144080492, -0.00581816072, 0.0155192101, 0.0221861731, 0.0110992603, 0.0303964168, -0.0233096816, -0.00534283044, -0.00707438914, -0.0152352471, 0.0131734265, -0.0139142005, 0.0102782361, 0.00253560673, -0.0149018988, -0.00222540786, -0.00801270269, 0.0215441696, -0.00698796567, 0.0121363429, 0.023926992, -0.0265690852, -0.00489836652, -0.0315075777, -0.00593236322, -0.0137043148, 0.0270135496, 0.000876582286, 0.00729662133, 0.0290630236, -0.0279765557, 0.0097164819, 0.0148772057, -0.0114387814, 0.0197169278, 0.0171118733, -0.0165686402, 0.00968561694, -0.0151982084, -0.000289750576, -0.00940165389, -0.0132104652, 0.00123693782, 0.00596631505, -0.0094819041, -0.0127413087, -0.0238652602, -0.0240381081, 0.0188650377, -0.000280105072, -0.00144373719, -0.02039597, 0.00950042345, 0.0179761089, 0.00873495732, -0.0265937783, -0.02079105, 0.0225071758, -0.0210873596, -0.00726575591, -0.00217447965, -0.00848803297, -0.00695710024, 0.0103214476, -0.0197045822, -0.0108585088, -0.00648177043, -0.00924115255, -0.0204206631, -0.0153216701, 0.0139265461, -0.00571321743, 0.00248930836, 0.0126301926, -0.00354645425, 0.0189020764, -0.00519467611, -0.00635213498, 0.0121425167, -0.0150994379, -0.00433044, -0.0167661794, 0.0359275267, -0.0217540562, -0.0194453113, -0.00810529944, -5.25197029e-05, 0.0190131925, -0.0185687281, -0.0047594714, -0.00563296722, -0.0110622216, 0.0160624441, -0.00758058485, -0.0172970667, -0.0185563825, 0.0182353798, 0.000227054872, 0.0191490017, 0.0300013367, 0.00228250911, 0.0329150483, 0.00867322553, 9.5056319e-05, 0.0136302374, -0.0122906715, -0.000870409131, -0.0301247984, -0.000531273661, -0.0245566498, 0.0226676762, -0.0164575242, 0.0341249779, 0.00806826074, -0.0144574344, -0.0102226781, -0.0138771618, 0.00530887861, 0.0158155188, 0.00404647645, -0.00819789618, -0.0256307721, 0.0248406138, -0.00589841092, 0.0114140892, -0.0224207528, 0.0171859507, 0.00723489048, -0.00273468974, -0.0010710354, -0.0181613024, 0.0301001072, 0.0224948302, -0.0088399, -0.0108338157, 0.00973500125, 0.0497553051, 0.0273345523, -0.0114943394, -0.0100560039, 0.00534900371, -0.0430389531, 0.00385819655, -0.0139759313, -0.00677190674, -0.0214700922, 0.00324088521, 0.0278530922, -0.00051314017, -0.00274857925, -0.0260999277, 0.00322545227, -0.0149389375, -0.00344768446, -0.00418537157, -0.0309396498, 0.000824110815, -0.00369460904, 0.00792010594, 0.00630275, -0.018655153, 0.0201490466, 0.0102844089, 0.00538912881, -0.0073398333, -0.00570395775, -0.0143463183, -0.0214824378, 0.00334891467, 0.00337978033, -0.00164513499, 0.00184267468, 0.00338595337, -0.00247078901, 0.0104634296, -0.0379276164, -0.00375942676, -0.0125067299, -0.00853741728, 0.0291124079, 0.0111239525, -0.0146179358, 0.0214454, -0.0142352022, 0.0154698249, 0.0234578345, 0.00854359102, 0.0163093694, 0.0123956138, 0.00410203449, 0.044347655, 0.0105313333, -0.0175069533, 0.0115684168, 0.0202601627, 0.00954363495, 0.0124203069, -0.00845099427, 0.0299766436, -0.00441069, 0.0158278663, -0.0163711, 0.0291617941, -0.00835222378, -0.00998192653, 0.0197539665, 0.00319767324, -0.00042363, -0.0154574793, 0.0357546806, 0.00463909563, -0.0119141107, -0.0278777853, 0.00700648502, 0.039507933, 0.0157290958, -0.00287204166, -0.00356806023, -0.0010594608, -0.00743243, -0.0520023182, -0.0214454, 0.00772873964, 0.00395696657, -0.0236677211, -0.0288407914, -0.0143339718, -0.010994317, 0.013642583, 0.0173341054, 0.0302976463, 0.0404709391, -0.0124943843, 0.0203218926, 0.0195317343, 0.00173773174, 0.0247171503, -0.00778429769, -0.021075014, -0.0118955914, 0.000666696404, 0.0398289338, 0.0118894186, 0.0120622655, 0.010197985, 0.0107535655, 0.0177662242, 0.00517307, -0.0169266798, -0.00315754814, -0.0107844314, -0.0249887686, -0.00467613433, -0.032075502, 0.0160254054, 0.0219515953, -0.0248653051, 0.0116178021, 0.0257789269, 0.0146920132, 0.00466687465, 0.0137660457, -0.00655584782, -0.00528418599, 0.0123832682, -0.00638300041, 0.0127536543, -0.0267913174, 0.00523171481, 0.0166056789, -0.00142984767, 0.0153340166, 0.0306433402, -0.0139018539, 0.0215071309, 0.0318779647, 0.00311896624, 0.0130870026, 0.0164698698, 0.00974117499, 0.0121795554, -0.00378411915, -0.00397548592, -0.0109140668, 0.00549715851, 0.0133215813, 0.0180378407, -0.00774108572, 0.0107906042, -0.00350941555, 0.0173094124, -0.000312321, 0.0177662242, 0.00293685915, -0.0117412638, -0.00672869477, -0.00242603407, -0.0044971141, -0.0134944282, 0.00653732847, -0.00479033682, 0.00141750148, -0.00666079065, -0.000378489087, -0.00704969699, 0.014469781, 0.0077163931, -0.00638300041, 0.0075311996, -0.0164698698, 0.00788924, 0.00167908717, -0.0286185592, 0.00731514068, 0.0091053443, 0.00584902614, 0.00499096327, 0.0133956587, 0.0096362317, 0.00817937683, -0.00191675208, -0.0138277765, 0.00934609585, 0.000364213774, 0.0122227669, 0.009370788, 0.0360756814, -0.0100436574, 0.000399323355, -0.0102597168, 0.0111239525, 0.0284210201, 0.021075014, 0.00964857824, -0.0006049652, 0.00419154484, 0.0223096367, -0.0118338605, -0.0055681495, 0.00521936826, -0.0202725083, 0.000614996534, 0.00258036191, 0.0076793544, -0.0125808073, 0.00365448394, 0.0285197888, -0.0063397889, -0.0277543236, 0.00791393314, -0.0339274369, -0.00167754386, -0.00619163411, -0.00612064311, 0.0297050271, 0.0166056789, -0.0185563825, 0.0123153636, 0.00119372609, -0.0125252493, 0.00772256637, 0.0226553306, -0.0121178236, 0.0250134598, -0.00982142519, 0.00570395775, -0.014099394, 0.0269641653, 0.0222232118, -0.0307421107, -0.00278098811, 0.00866705272, -0.0197045822, -0.0128030395, 0.0135685056, 0.0163464081, 0.000184711156, -0.00334582804, 0.0123030171, 0.00785837509, -0.000341836218, -0.00601878669, 0.0246554203, -0.0142969331, -0.00169760652, 0.00367300329, 0.00998192653, 0.0258530043, -0.0130376182, -0.0224701371, 0.0242726859, 0.000753505796, -0.00806826074, -0.0104510831, 0.0185810756, 0.0138030844, 0.00943251885, -0.0034507711, 0.0117783025, 0.00229485543, -0.00892015081, -0.00659905933, -0.00231183134, 0.00458662398, -0.00084726, 0.00219917204, -0.00606508506, 0.012247459, -0.0113400118, 0.00783985574, -0.0318285786, -0.00240134168, 0.0231985655, 0.00780281704, 0.014185817, 0.0179390702, 0.00314365863, -0.0111856833, 0.00954980869, -0.00414216, -0.00629966334, -0.00247850548, -0.0107844314, 0.0133462735, -0.0185440369, 0.00580581417, 0.011648667, 0.00989550259, 0.0199021213, 0.00366374361, 0.00326249097, -0.0177291855, 0.00935844146, -0.00582124712, 0.00244301, -0.0284210201, 0.0024183176, -0.0220256727, 0.0114387814, -0.00954363495, -0.0331125855, 0.00341064576, -0.0308161881, 0.0113338381, 0.00579964137, -0.00352484849, -0.0258776955, 0.00155022345, 0.0164698698, -0.012019054, -0.00946338475, -0.0128894635, -0.00701265829, 0.0105560264, -0.0201984309, -0.0277543236, 0.0199638531, -0.00172692875, -0.00785220135, -0.0120931314, 0.00365448394, -0.0149018988, -0.0148772057, 0.0117227444, 0.00284734904, 0.00333039532, 0.0104202172, -0.0118523799, -0.0092905378, -0.00642003911, -0.0181983411, -0.00416993909, 0.00314057199, -0.00746329548, 0.00727192918, -0.0066052326, -0.0125067299, -0.0255813859, -0.00480885617, 0.00509590609, 0.0174081828, -0.000721096934, 0.0102288509, 0.007833682, -0.00638300041, 0.0174946059, -0.00308347074, -0.015667364, -0.0106609687, -0.00114897091, 0.0272110887, -0.00205256068, 0.0282728653, -0.00899422821, 0.00523788761, -0.00667313673, -0.0239516851, 0.00216367655, -0.00199082936, -0.0245443042, -0.0168896411, 0.00432426669, -0.0114511279, 0.0014946654, 0.0221491344, 0.0201120079, 0.00521936826, 0.00858680252, 0.00330570294, 0.00654350128, -0.00343225175, 0.0125375958, -0.028396327, -0.00307112443, -0.016716795, -0.0167044476, 0.0286432523, 0.0386683904, -0.00297698448, -0.016716795, 0.0108461622, 0.00590767059, -0.0121116508, 0.0245813429, 0.00335817435, -0.010339967, -0.0330632031, 0.00834605098, 0.00120221404, -0.0107720848, 0.00250628451, 0.013642583, -0.0142475488, -0.0200873148, 0.00587989157, -0.0135191213, -0.0110683944, -0.00213126792, 0.0144327423, 0.00773491245, 0.0259270817, 0.000351095892, 0.00632744236, -0.00693240762, 0.00851272512, -0.018000802, -0.0170007572, 0.00625027856, -0.000477644731, -0.00108723983, 0.0182230342, -0.0224701371, 0.00408351514, -0.0185687281, -0.0127166156, -0.0202725083, 0.0207787044, 0.00529961893, 0.0139018539, 0.00783985574, 0.0254332311, 0.00311896624, -0.0063397889, 0.00212355144, -0.0036513973, -0.0147413975, 0.00812999159, 0.00557432231, -0.0205194335, 0.0118585527, -0.00898188166, -0.00988933, 0.0157908276, 0.0169266798, -0.00125545717, -7.22206187e-06, 0.0250134598, -0.0190008469, 0.00690154219, 0.0499281511, 0.0185810756, 0.0035279349, 0.00667931, -0.0168526024, -0.0110437023, -0.0142105101, 0.00946338475, -0.0104325637, -0.0151858618, -0.00483046239, 0.0132228117, -0.011877072, -0.0237664916, 0.0066052326, -0.0258283112, -0.00606817147, 0.0193095021, -0.000173040113, -0.0175192989, -0.00554037048, 0.00987698324, 0.000737301365, 0.0173464511, -0.000542076596, 0.00570087135, 0.0101609463, 0.0100868689, 0.0111239525, -0.0135067748, -0.0189020764, 0.01016712, -0.00243220711, 0.0115498975, -0.0156797115, 0.00832753163, 0.0177909154, 0.0222849436, -0.0301741846, -0.00101702067, 0.010197985, -0.00365757034, 0.0067163487, -0.0241986085, -0.00493849162, 0.022359021, -0.0287173297, -0.0170131046, -0.00256184256, -0.00605273899, -0.00606508506, 0.0228405241, -0.0188897308, 0.0258036181, -0.00234887, -0.00872878358, 0.0347422883, -0.00508973282, -0.00582433352, 0.0141611248, 0.0281247105, 0.00969796255, 0.00094062835, -0.00276401197, -0.0163464081, -0.0126055, 0.00793245248, -0.00436130539, -0.0296556428, 0.00829049293, 0.0160747897, -0.00584902614, -0.000951431284, 0.019568773, 0.00750650745, -0.02763086, -0.00536135, -0.0110869138, 0.0380016938, -0.0078707207, -0.00611755671, -0.0131116956, 0.0189391151, -0.0435821898, -0.00217756606, 0.00412055384, -0.0111733377, -0.0152846314, 0.0442241915, -0.0108338157, -0.0095251156, -0.00338595337, -0.00614224887, -0.00588606484, -0.0179761089, -0.0155315567, -0.0359769128, -0.000206992248, 0.0143710105, 0.00791393314, -0.00511751184, 0.00631201, -0.0241986085, 0.0146673201, -0.00359892589, 0.00435821898, -0.00101856387, 0.00210040226, 0.018284766, 0.0207416657, 0.0010980427, 0.018827999, -0.00416685222, 0.0182230342, 0.0046452689, -0.0183588434, 0.0125684617, 0.00681511872, -0.0156179797, -0.0232109111, -0.0101300813, -0.0121178236, 0.00285043567, -0.00701883109, -0.00174081826, 0.02124786, -0.00248776516, 0.00747564156, -0.0227047149, -0.00802504923, 0.00974734779, -0.00229639863, -0.00516072381, -0.00162661565, 0.0291617941, -0.00146225654, 0.0224207528, 0.00301402318, 0.000170050014, 0.0239022989, -0.0213219374, -0.00362979132, 0.0103708329, 0.00725958264, 0.00477490434, -0.00808678, -0.00279024779, 0.00898188166, -0.0196305048, 0.00184113148, -0.00225936, -0.00442303671, 0.00305106188, 0.0057564294, 0.00775960507, -0.00106331904, -0.0144821266, 0.0196305048, 0.0128524248, -0.0239640307, 0.000224932868, 0.00998192653, 0.00455267215, 0.0116239749, 0.00684598414, 0.0131116956, 0.00364522426, 0.00267450185, -0.0119449766, -0.00487058749, 0.0153216701, 0.00478107715, 0.00271462719, -0.00984611735, 0.0221614819, -0.0193465408, 0.000794788473, 0.00141595816, -0.0112165492, -0.0202478152, 0.0184823051, -0.0185687281, -0.00518541643, 0.0281987879, -0.00658671325, 0.00695092697, -0.00627497118, -0.0185934212, -0.00677808, 0.00966092478, 0.0149142444, 0.0219762884, 0.00615768181, 0.00746946875, -0.0117042251, -0.0074139107, 0.00216059014, 0.0147660896, -0.00114819931, 0.0079077594, 0.00395696657, -0.00614224887, -0.0259270817, -0.0208157431, 0.0103708329, 0.0266678557, 0.00326866424, 0.000989241642, 0.0101547735, -0.00942634605, 0.00280722394, -0.00846334, -0.0104696024, 0.0088399, 0.027087627, -0.0127166156, 0.0201490466, -0.0136796217, 0.0143710105, 0.0156179797, -0.00314211543, 0.0226800237, -0.00281185377, -0.0161982533, 0.0075620655, 0.0174946059, 0.0221120957, -0.0136919683, -0.00389214884, 0.00180100615, -0.00907447841, 0.0130870026, -0.00874113, 0.0111116059, 0.005682352, 0.0232973341, -0.000535903499, 0.00266524218, -0.00796331745, 0.00412672712, -0.0101177348, 0.007376872, 0.00505269412, 0.000389099121, -0.02671724, -0.00452797953, 0.0155068636, 0.000116710449, 0.01316108, -0.0074139107, 0.00225318689, -0.0205564722, -0.00896953512, -0.00750033418, 0.0211984757, 0.0114449542, -0.028766714, 0.00624410529, 0.000944486528, 0.00816085748, 0.0227170624, 0.00231028814, -0.000613839075, 0.00452180626, 0.0200626217, -0.00037656, -0.000982296886, 0.00153401901, -0.0322977342, 0.00956832804, 0.0156179797, -0.0118400333, 0.00809912663, 0.000542848255, -0.00105251605, 0.01335862, 0.000598792103, -0.00274394942, 0.0149759762, -0.00903126691, 0.0134450439, 0.0258283112, -0.000485746947, 0.0228528697, 0.023926992, 0.0318532698, -0.0362485275, -0.016321715, 0.000198697118, -0.00105560257, -0.00921028666, 0.00284580584, -0.0150130149, 0.00108106667, 0.0143339718, -0.0194576569, 0.0104202172, 0.00923498, 0.0132475039, 0.0264209304, 0.00960536674, -0.00541382143, -0.00460514333, 0.00389523525, 0.00256184256, -0.0384461582, -0.0141487783, -0.0129511943, 0.00780281704, -0.0220256727, 0.0252727307, -0.016716795, -0.0148895523, 0.00808060728, -0.0021173784, 0.00346003077, 0.00313594216, 0.0210873596, 0.00642003911, 0.00987081, 0.0137166604, 0.00108029507, -0.00131410174, -0.0296556428, 0.00730279461, 0.0218281336, 0.0192848109, -0.00892632362, -0.0133215813, -0.0373349972, -0.0184082277, 0.00163896196, 0.0112042027, 0.00181026582, -0.0110313557, -6.84829911e-06, -0.00943251885, 0.0134573895, 0.00954363495, -0.00279024779, -0.000524714764, 0.000685215695, 0.0234454889, -0.00399709167, 0.00913003646, -0.00114742771, -0.0381745398, -0.0239393376, 0.00898188166, -0.00309427362, 0.00701883109, 0.00947573129, 0.00825345423, 0.000211236271, -0.00695710024, -0.0183958821, -0.0159019437, -0.0193465408, -0.0239516851, -0.00781516265, 0.0198033508, 0.00247387565, -0.000662066566, 0.00511751184, 0.0169513728, 0.0300754141, -0.0194206182, 0.0152229005, -0.011080741, -0.00512368511, -0.007376872, -0.0102165043, -0.0143586649, -0.00167291402, 0.00341064576, -0.00988933, 0.0103523135, 0.014840167, 0.0240257625, 0.0067533874, -0.0202478152, 0.0187045373, -0.0095621543, -0.00426253583, -0.00617311476, -0.000907447829, 0.035458371, -0.00936461519, -0.0166550633, -0.0195811186, -0.0030664946, 0.00246615917, 0.00995106064, -0.00237664906, -0.00246307277, 0.0120067075, -0.0136055443, 0.00472860597, 0.00491997227, -0.0242109559, -0.000694089569, 0.00633361563, 0.00554654328, 0.0109757977, -0.0222355593, -0.02671724, 0.0127413087, 0.00072804169, -0.0240751468, 0.0092967106, 0.0148031283, 0.00459897052, -0.0202107765, 0.0130623104, -0.0126919234, -0.0311865751, -0.0029137102, -0.0181983411, -0.013729007, -0.0254085399, 0.0286926366, -0.0104449103, -0.00901892, 0.00725341, -0.0130993491, -0.00671017542, -0.0453600474, -0.00574716972, -0.0101486007, 0.00964240544, -0.0311865751, -1.80611823e-05, -0.0183341503, 0.005611361, 0.00879668817, -0.0162229445, 0.0108152963, -0.0204947405, 0.0117536103, 0.000605736859, 0.00164513499, 0.0160130598, -0.00155562488, 0.00845099427, 0.00285043567, 0.00936461519, 0.02170467, -0.0352361389, 0.00608669082, -0.00946338475, -0.014556204, -0.00657436717, -0.0120128812, 0.00270073768, -0.00196150714, -0.00763614289, 0.0250875372, 0.000385433843, 0.00872878358, 0.0227417536, 0.0104078716, 0.00141827308, -0.00411438104, 0.00548789883, 0.00797566399, -5.57027124e-06, 0.0206922796, 0.00441686343, 0.009370788, 0.0166180246, 0.00316372118, -0.00817937683, 0.000905132911, 0.0249764211, 0.016778525, 0.02170467, 0.0278777853, 0.0108461622, 0.0185193438, -0.00292605627, -0.00558666885, 0.0260505434, 0.0156920571, 0.0196922347, -0.0124203069, -0.00855593663, -0.00589841092, -0.0202972014, -0.024297379, 0.00556197623, 0.00716698589, 0.0327915847, -0.00817937683, 0.0183835346, -0.00488602, -0.00260505429, -0.011364704, -0.00880286098, -0.00771022029, 0.00900040101, 0.000686373154, -0.026346853, -0.0209268592, 0.0177044924, 0.00330878934, 0.00711142784, 0.00294303242, 0.00469156727, -0.0121857282, -0.017087182, 0.00152630254, -0.00384276384, 0.00334891467, -0.0142598944, -0.0146673201, -0.0033026163, 0.0210503209, 0.025976466, 0.0198033508, 0.0108708544, 0.016408138, -0.0159142893, -0.017260028, 0.0168155637, 0.010025138, -0.00422549713, 0.0220009796, -0.000494620821, -0.010253543, -0.00981525239, 0.00962388609, -0.0213713218, -0.0137907378, -0.0188526921, 0.014099394, 0.00256338576, -0.00185502088, 0.0193465408, -0.012617846, -0.0160500985, 0.0128524248, 0.0108832009, -0.0105745457, 0.00612064311, 0.00574408332, -0.00512368511, 0.0181736499, 0.00647559715, 0.00651263585, 0.00558975525, -0.0107412189, -0.0180254951, -0.00154019205, 0.00362361828, 0.0180501863, -0.0184823051, 0.0459279716, -0.014099394, -0.00911151711, -0.00207262323, 0.0156920571, -0.0126240198, -0.00697561959, -0.0146302814, 0.00754971895, 0.015408094, 0.00743860286, -0.00386436982, 0.00533357123, 0.00916090235, -0.00621324, -0.000973808812, -0.00042363, 0.00467922073, -0.00903126691, 0.0177909154, -0.00766083505, -0.00210966193, 0.0094510382, 0.0195070412, 0.0269888565, -0.0108152963, 0.00897570886, -0.0143216262, 0.00989550259, -0.00650029, -0.00965475105, -0.0204700474, -0.00401561102, 0.00887076557, -0.00504960772, 0.0356065258, 0.0301988758, -0.0152352471, 0.0168772954, -0.0179761089, 0.00487058749, 1.12611115e-05, 0.0194453113, 0.0103214476, 0.00559592852, -0.00629040366, 0.00483046239, -0.0118894186, -0.0103893522, -0.0094448654, -0.00759293092, 0.007605277, 0.00511751184, -0.0102658896, 0.017260028, 0.00847568642, -0.000437133684, 0.00905595906, 0.00334274163, -0.00486750063, -0.010765912, -0.00255875592, 0.00149312208, -0.030989036, 0.0128647704, -0.00513294479, -0.0185563825, 0.0108708544, -0.000988469925, -0.0046452689, 0.011191857, -0.00763614289, -0.000880440464, -0.0023812789, -0.00650646258, -0.00722871721, 0.0025788187, -0.0110313557, -0.0214207079, 0.0160500985, 0.0141364327, -0.0019445311, -0.00448168116, -0.00596322864, 0.00532122469, 0.0064570778, -0.0150870923, 0.000227440687, -0.0112535879, -0.0106609687, -0.0104325637, 0.00466687465, 0.0018195255, -0.0170131046, -0.0206305496, -0.017605722, 0.0066052326, -0.0366189145, 0.011790649, 0.0129511943, 0.0131240413, -0.00171303935, 0.0235442594, -0.0165562928, -0.0107412189, 0.0137043148, -0.00236738939, 0.0212725531, 0.00356188719, -0.0221491344, -0.0332360491, -0.00731514068, 0.000263900642, 0.0171982981, -0.00434278604, -0.00340447272, -0.0141364327, 0.00517615676, -0.0127783474, 0.0377053842, -0.0165069085, -0.0140253166, -0.0012461975, 0.0114017427, -0.00167291402, 0.000400480814, -0.0139388926, -0.0146055892, -0.00561753428, -0.00295692193, -0.00046259776, 0.00565148657, 0.0026544393, -0.0221738275, -0.0154204406, -0.00835222378, 0.0125252493, -0.0168649498, 0.0156303253, -0.00882138, -0.0159636736, -0.0140006235, 0.00474712532, 0.017087182, 0.0117103979, -0.0111177796, -0.00835839752, -0.0214700922, 0.0015332473, -0.000406653911, 0.0242850333, -0.0116116283, 0.00337052066, 0.0088399, -0.014840167, 0.00378720579, -0.0163957924, -0.00417302549, -0.0189267695, 0.000704892504, 0.0110930866, 0.0244702268, 0.00244609662, -0.0274827052, 0.0144080492, -0.00266369898, 0.011963496, -0.0421994105, 0.00651880912, -0.00500948261, -0.0260999277, 0.0122968443, -0.000724183512, -0.00410512136, -0.0165316015, -0.00662992522, -0.00184884784, 0.0125252493, 0.0168526024, 0.00761145027, -0.00787689444, 0.00991402194, -0.0225935988, -0.00312205264, 0.0094510382, -0.0226059463, 0.00101316243, 0.031334728, 0.0141240861, 0.00490762619, 0.00235658651, -0.00155099505, 0.0116548408, -0.0130129252, -0.0117536103, -0.00577494875, 0.000943714869, 0.00397239905, 0.0133709665, 0.00232417765, -0.00843247492, 0.0442735776, 0.0155932875, 0.0106362766, -0.0180501863, -0.00887076557, -0.000806363067, -0.00221614819, 0.0125993267, -0.00717933243, 0.005682352, 0.00639534649, -0.00619163411, 0.0158772506, -0.014185817, -0.000582973531, -0.00757441157, 0.00493849162, -0.0267913174, 0.00503417477, 0.0192724634, -0.000520470727, -0.0146673201, -0.0150377071, 0.00598174799, 0.00405264972, -0.0108399894, -0.0123462295, 0.00851889793, 0.0232109111, -0.0131487343, 0.00540456176, -0.0281000175, -0.0135067748, -0.00389214884, 0.00909917057, -0.00177631376, -0.0159883667, -0.0122536328, 0.0131734265, 0.0315075777, -0.0159389824, 0.0036915224, -0.0100745233, 0.00290136389, -0.00312668248, -0.00968561694, -0.0308408812, -0.0138648152, -0.00364213763, 0.0151735153, 0.00598792126, 0.009370788, 0.00233189412, -0.000591847347, -0.00717933243, -0.0065681939, -0.00216059014, 0.00193218491, 0.00198465632, -0.0078707207, -0.0160130598, 0.0142228557, 0.00420389092, 0.00134342408, -0.00126857508, -0.00321619259, 0.0166427176, 0.00387980253, -0.00396005297, 0.0205441248, -0.00750033418, -0.002841176, 0.00570395775, 0.000463369419, 0.00486750063, 0.00887693837, 0.0111424718, 0.0110622216, -0.0142475488, 0.00221151835, -0.00665461738, 0.00252789049, 0.00400943775, 0.0222479049, -0.00371312839, -0.0020695366, 0.0054199947, -0.00504034804, -0.0159142893, 0.00818555, -0.00168526033, -0.00364213763, 0.0102350237, 0.0055311108, -0.0245443042, -0.0147413975, 0.0107165268, -0.0170748346, -0.00904361252, -0.0150253605, -0.00536752306, 0.0100806961, -0.0166056789, 0.0206182022, -0.00904361252, -0.00220688852, -0.0152969779, -0.00506504066, -0.00150778319, -0.00126626017, 0.00850037858, -0.00328409695, -0.0311371908, 0.0153463632, -0.00202015182, 0.00667313673, 0.0159636736, -0.00171766907, 0.0318038873, -0.0155562488, 0.015864905, -0.00949425064, 0.0208404344, 0.002492395, 0.013729007, -0.0142228557, 0.00162970228, 0.0011088457, 0.00609286409, 0.00170377968, -0.00840778183, 0.00950659625, 0.00814851094, 0.0284950975, -0.0117536103, 0.0103214476, 0.0259023886, 0.00689536892, 0.0230627563, -0.015580941, -0.01335862, 0.0291864853, 0.0169760659, 0.00608977769, 0.0197169278, -0.00375634013, -0.0368164554, 0.00431500701, -0.00418845844, -0.0328903534, 0.0103708329, -0.00872878358, -0.0116795329, 0.00198619952, -0.000821024238, 0.0284704044, -0.00195224746, -0.0133833122, -0.014926591, -0.00989550259, -0.0166056789, -0.0398289338, 0.0217787474, -0.0319273472, 0.0133339278, 0.00303871557, 0.00872261077, -0.0203712787, 0.00260351109, 0.0214700922, 0.00755589223, -0.0122165941, -0.017630415, -0.00899422821, 0.00105483097, 0.00672869477, 0.00642621238, -0.0228405241, -0.0129265022, 0.0038767159, 0.0152599392, 0.00200317567, -0.00789541379, 0.00297852769, -0.0184329208, -0.00112042029, -0.00808678, -0.000857291277, 0.0191860404, 0.00788306724, -0.0282975566, -0.0365942232, 0.0104325637, -0.0015324757, -0.0177415311, -0.0031513751, 0.00683981087, -0.00220225868, -0.00101084751, 0.00513294479, 0.00677808, -0.00826580077, -0.00983377174, -0.0270382427, 0.00866705272, -0.0141364327, 0.00518850284, -0.00262203044, 0.000806363067, 0.0099016754, -0.00576568907, -0.0121733816, -0.0200132374, -0.0123030171, 0.0162476376, -0.0167291407, -0.00145145354, -0.0174452215, -0.00600952702, 0.00607434474, 0.0116301477, 0.00703735044, 0.0236183368, 0.0172847211, 0.0280753244, 0.00107489363, 0.00304643204, 0.00711760111, -0.0233714115, 0.00267141522, -0.024322072, -0.0172353368, -0.012988233, 0.000362284656, -0.0205317792, -0.0138277765, -0.0203218926, -0.0126425391, -0.00877816882, -0.00117520674, 0.0204330087, -0.00542925438, -0.0104634296, -0.00855593663, 0.027828401, 0.0286926366, -0.00398474559, 0.0131116956, -0.00535517698, 0.0147167053, 0.00203404133, 0.00537369633, -0.0344212875, -0.00700648502, -0.0160254054, -0.00646942388, -0.0168526024, -0.00530887861, 0.00487984717, -0.0230751019, -0.0045711915, 0.0269147791, 0.0325446613, 0.00442612311, -0.0129388478, -0.0111980299, -0.0019445311, 0.0391869321, -0.0139635848, 0.0625213, -0.00939548, 0.0148154749, -0.000352253352, -0.00390758133, -0.00281185377, 0.00506504066, 0.0333842039, 0.0259270817, 0.00266215578, -0.000136483708, -0.00960536674, -0.0171982981, 0.0057193907, -0.0175192989, 0.00889545772, -0.00718550524, -0.00154405029, -0.0091794217, -0.00148926384, -0.0221491344, -0.00663609803, -0.00597866159, -0.0142845875, 0.00123539451, -0.000909762748, -0.00857445598, -0.0167044476, -0.0059477957, -0.00856211, 0.00304488884, 0.011080741, -0.00578112202, 0.0105560264, 0.0047594714, 0.0129265022, -0.00393227395, 0.0122165941, -0.0109017203, 0.00465452857, -0.0029924172, 0.0113893962, -0.00219762884, -0.0126919234, -0.00348472316, 0.00685215741, -0.0160747897, -0.0188650377, 0.00325014489, -0.0137043148, -0.00903744, -0.0115807634, 0.00656202063, 0.0168402568, -0.00215904694, -0.00894484296, 0.0292605627, -0.0018827999, -0.00519158924, -0.0034908962, 0.009370788, -0.0094448654, 0.0194700025, 0.00192446844, -0.00527184, -0.028396327, -0.00479342369, 0.00488602, -0.0297050271, 0.0190502312, 0.0155315567, -0.00421623746, 0.0110560479, -0.000245381292, 0.0124511719, 0.0159760211, -0.0264950078, 0.0263221599, 0.00297852769, -0.00266524218, -0.00327792391, 0.00490453932, -0.00615768181, -0.0215441696, 0.00648177043, 0.00970413629, 0.000924423919, -0.00928436406, -0.00118755293, 0.0269641653, -0.0182724185, 0.0158155188, 0.0165933315, 0.00437365146, 0.0141611248, -0.00460514333, 0.00403413037, -0.0145438584, 0.00966092478, 0.030791495, -0.00537678273, 0.02079105, -0.0154451327, -0.00514837774, 0.00443538278, 0.0185193438, -0.0112535879, 0.0185440369, 0.00322545227, -0.00636448106, -0.00792010594, -0.00666079065, -0.0173834898, 0.00429340126, 0.00744477613, 0.0209885892, 0.0205070861, 0.007833682, 0.00856211, -0.0111980299, -0.00719785178, 0.00669165608, -0.025606079, 0.00373473438, 0.00328718359, -0.00113276648, -0.00312050944, 0.020766357, 0.0211737826, 0.0362238362, 0.00626879791, -0.00151086983, 0.00528109958, 0.00641386583, 0.02039597, 0.0119141107, 0.00778429769, 0.0130005796, 0.0114943394, 0.000334698561, 0.000632744224, -0.0130623104, 0.0100313108, 0.0224207528, -0.0037625134, 0.00625336496, 0.00425636256, -0.00789541379, 0.0464465134, 0.0275567826, 0.00179020327, 0.00526258023, -0.00252326066, -0.00893249642, 0.0154574793, 0.00736452593, -0.00969796255, -0.0411870219, 0.000503108837, -0.0102165043, -0.00486441422, 0.00890780427, 0.00445081573, -0.0222232118, 0.00304643204, -0.00966709759, 0.0172847211, -0.0040649958, -0.00088892848, 0.00838926248, 0.0154574793, 0.0296062566, -0.00151318475, -0.00877199601, 0.0189761538, 0.00126703177, -0.0140870474, -0.0126672313, -0.0127536543, -0.0349892117, -0.0211984757, 0.0258283112, 0.000501565577, 0.0253344625, 0.00793862529, -0.00906213187, 0.011593109, -0.00578420842, 0.0139142005, -0.00338904, -0.0094819041, 0.000933683594, 0.0101918122, -0.00171921239, 0.0166303702, -0.0115684168, 0.0296062566, -0.0197910052, 0.0156426728, -0.000273546146, 0.0173341054, -0.0135191213, -0.018741576, -0.0114140892, -0.00069138885, 0.0191366561, -0.0173834898, 0.0178896859, -0.00990784913, 1.02965623e-05, 0.0091794217]
|
29 Dec, 2020
|
Python program to print current year, month and day
29 Dec, 2020
In this article, the task is to write a Python Program to print the current year, month, and day.
Approach:
In Python, in order to print the current date consisting of a year, month, and day, it has a module named datetime. From the DateTime module, import date class
Create an object of the date class
Call the today( ) function of date class to fetch todays date.
By using the object created, we can print the year, month, day(attribute of date class) of today.
Python3
# importing date class from datetime module
from datetime import date
# creating the date object of today's date
todays_date = date.today()
# printing todays date
print("Current date: ", todays_date)
# fetching the current year, month and day of today
print("Current year:", todays_date.year)
print("Current month:", todays_date.month)
print("Current day:", todays_date.day)
Output:
Current date: 2020-12-10
Current year: 2020
Current month: 12
Current day: 10
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python program to print current year, month and day
|
https://www.geeksforgeeks.org/python-program-to-print-current-year-month-and-day/?ref=lbp
|
Pandas
|
Python program to print current year, month and day
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python program to print current year, month and day, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0251728315, 0.0102459667, -0.00287571852, 0.0771134645, 0.00550872413, 0.0125777479, 0.0159930699, 0.0168945752, 0.0140080219, 0.0336331204, 0.017891435, -0.00930111855, 0.0297843833, 0.000827283773, -0.0233351458, 0.00715570664, -0.0120749846, 0.0355748273, -0.0131845307, 0.0199024864, 0.0244446918, -0.0159757324, -0.0329223201, 0.0335637741, -0.00504063396, 0.00514898822, 0.00661827, -0.000541228859, -0.00218441919, -0.00918843, 0.019954497, 0.0238379091, 0.00876801647, -0.0287788566, -0.038487386, -0.0115722213, 0.00601148698, 0.0325755849, -0.00120056374, 0.0133232241, -0.00693899859, 0.0469476767, 0.0187929403, -0.02943765, -0.0166778676, 0.0307032261, 0.00491060922, -0.0109567698, 0.0263343882, -0.011069458, -0.0254848916, 0.00250948174, 0.0304258391, 0.0365110077, 0.0210120324, 0.00814389624, 0.00307725719, -0.00752844522, -0.0575923882, -0.0304951873, 0.0572109818, 0.0173713341, 0.0412265807, -0.0146321421, 0.025588911, -0.000291472621, -0.053674303, 0.00563441496, 0.0332343802, -0.00608083373, 0.0310152862, 0.000788818055, 0.00708202599, -0.00829559192, 0.0264037345, -0.0515939035, -0.0208906755, 0.0498602353, -0.0227456987, -0.000163885619, -0.00898905843, -0.0350027196, 0.0223642923, -0.0156983472, 0.0111821461, 0.04895873, 0.00762813073, -0.033286389, 0.0135659371, 0.037412513, 0.0227283631, 0.0541597269, -0.0121443309, 0.00112146523, -0.0155596528, -0.0335117653, 0.0117715923, 0.0416426584, -0.0296456907, 0.00837794133, 0.00314443698, 0.0125430739, 0.0156376678, -0.0235431846, -0.00935312826, -0.00224293047, 0.00994257536, -0.0323675461, -0.0116329, -0.0653592125, -0.0272879042, -0.00573410047, -0.0283454414, 0.00160689175, -0.0357135199, 0.00169249147, -0.000188400751, -0.0347426683, 0.00442084856, -0.00993390661, 0.0318127722, -0.0127597824, 0.0411919057, 0.032055486, -0.0127597824, 0.0166691989, -0.0077408189, -0.00856864452, 0.00674396101, -0.0151869152, -0.0402210541, -0.0106620463, -0.00936179701, -0.00238379091, 0.0137046305, -0.00397226261, 0.0266464483, 0.0204399228, -0.00692599593, -0.000317206723, -0.00883736275, -0.0333557352, 0.00719038025, 0.00887637, 0.0158023667, -0.0502416417, 0.033477094, 0.0478491858, 0.0272185579, -0.0198678132, -0.024912782, -0.0128984759, 0.0251554959, 0.0407064781, 0.0275826268, -0.0189663079, 0.00108841725, 0.0175793748, -0.0571069606, -0.0595687665, -0.00862932298, -0.0287441835, 0.00863365736, -0.00917109381, 0.012057648, -0.00628020521, 0.00963918306, 0.00246830704, -0.0311886538, 0.0168685708, -0.00176292169, -0.0319514647, 0.016703872, 0.0285534803, -0.0213587657, 0.0155163119, 0.0166345257, -0.0215147957, -0.00947448518, 0.0326796062, -0.0465316, 0.021861529, 0.000915050623, 0.0172153041, 0.0117282514, 0.0189142972, 0.0130545059, 0.00409361906, -0.0300270971, -0.00832593162, 0.0204399228, -0.0159323905, 0.0149442013, -0.0182728413, -0.0286054909, 0.0147534981, 0.0224683117, 0.0143114133, -0.0391461812, 0.0384527147, -0.0457341112, -0.0302004628, -0.0218095202, 0.00581645, 0.00308809266, -0.000223886716, -0.0225203224, -0.00170549401, 0.053084854, -0.0280680545, 0.0254155453, -0.00718171196, -0.0131758619, -0.0240806211, 0.0120749846, 0.0142680723, -0.00135551021, 0.0066919513, 0.0304431766, -0.0314487033, -0.0503109917, 0.0281200632, -0.00265901047, -0.0328009613, -0.0144934487, 0.00360169122, 0.0305645335, 0.0262303688, -0.0212374087, -0.0138346553, 0.0291429274, 0.0103326496, -0.03602558, -0.0151609099, 0.055061236, 0.0275826268, 0.0423014536, -0.0122136772, 0.0102893086, 0.0461155176, 0.0483692847, -0.0566215329, -0.0049669533, -0.0224683117, -0.000148038831, 0.00199805014, 0.0296110176, 0.0244446918, 0.00540903816, 0.0389381386, 0.00449019531, -0.0148661863, 0.0151435733, 0.0153082712, -0.033286389, -0.0499989316, 0.00392241962, -0.0317607634, 0.0118582761, 0.0223989654, -0.0202838928, -0.00510131242, 0.0076931431, -0.00228627212, 0.00652725296, -0.0227977093, 0.00327229477, 0.00199805014, 0.00949182175, -0.0189663079, 0.031344682, -0.0223122817, 0.0172326416, 0.0222776085, -0.0269585084, 0.00990790129, 0.00649257936, 0.0205439422, 0.000930220238, -0.0123003609, -0.01396468, 0.000556398474, 0.0653245375, 0.0135312639, 0.038001962, 0.0188276134, -0.0182208307, -0.0205959529, 0.0303391572, -0.000913425349, 0.009006395, 0.0239766017, -0.00186802517, -0.0060028187, 0.0444165245, 0.00601148698, -0.0289868973, 0.00143352512, -0.0493054651, 0.0190876629, -0.0299230758, -0.0382793471, -0.0214281119, 0.00334597565, -0.0230057482, -0.0105060162, 0.0117195826, -0.030547196, 0.0415039659, 0.00820024, -0.00199154881, -0.0257969517, -0.0504496843, -0.00283887819, 0.016027743, 0.0208386667, 0.0394929126, -0.00272619, -0.0306512173, 0.00426915288, -0.0112948343, 0.00687398622, 0.00631487882, 0.0388687924, 0.0411919057, -0.0326622687, -0.0304605123, -0.03821, -0.000202486786, -0.043757733, -0.0406718068, -0.0300270971, 0.000541228859, 0.00122331816, -0.0210120324, -0.015195583, -0.0131498575, -0.0149702067, 0.0263690613, 0.0357481949, 0.0018506886, 0.0158630442, -0.000758478942, -0.00874634553, -0.0174406804, -0.022815045, -0.00268068118, 0.036615029, -0.00902373157, 0.00279987068, 0.000230523408, 0.00108408311, 0.0411225595, 0.0256235842, 0.030668553, -0.0501722954, -0.0164264869, -8.39067288e-05, -0.0269238353, 0.0216708258, -0.0118062664, 0.00859898422, 0.0204225872, 0.00385307288, -0.0228323825, -0.0580431409, 0.0225029867, 0.0205266066, 0.00173474965, -0.0164004806, 0.00263083819, 0.0104193334, -0.0277213212, 0.00546538224, -0.0118929492, 0.00973453466, -0.00702134753, 0.0303738303, 0.0106880516, 0.00156463368, -0.0147361616, 0.0113901859, -0.0130198328, 0.00835627, -0.0253288615, -0.0274612717, -0.00697367173, -0.0126297576, -0.0258316249, -3.26586123e-05, -0.00833893381, 0.0161230955, 0.015750356, -0.00347600062, 0.00444251951, -0.0329743288, 0.00826958753, -0.0136006102, 0.00169357506, 0.0182728413, -0.0295243338, -0.00698234, 0.0161577687, -0.0656366, -0.0131151844, -0.0249647908, -0.0309112668, -0.00222992804, 0.0474677794, 0.0402557254, -0.00496261939, 0.0540210344, 0.00385307288, 0.00653158687, 0.0218441933, -0.0171286203, -0.00204355898, 0.00842128322, -0.0231271051, 0.00167190423, 0.0576270595, 0.0126124211, -0.00513598556, 0.0201972108, -0.0115722213, 0.00302091311, 5.41770642e-05, 0.0342919156, -0.0389381386, 0.027530618, -0.0187929403, -0.0123523707, 0.00976054, 0.0565868616, 0.0335811116, -0.0183075145, -0.0230924319, -0.0105233528, 0.0281374, -0.0318301097, -0.034673322, -0.0208039936, 0.0113641815, 0.0188276134, -0.0329223201, 0.0372044742, -0.0234911758, 0.0205959529, 0.0060981703, 0.00203164, 0.00053120614, 0.0200238433, 0.0363029689, 0.00415213034, 0.0202665571, 0.026819814, -0.027530618, -0.00724672433, 0.0411225595, 0.00975187216, 0.0303044841, -0.0282760933, -0.0223816298, 0.0174060073, -0.0336677954, -0.000838119187, 0.0307899099, -0.0389381386, -0.00863365736, 0.0122830244, -0.0323328711, -0.0269585084, -0.0545064621, 0.0191916842, 0.0385567322, -0.00260916748, 0.000594322395, 0.0357135199, 0.0201452, -0.00646224, 0.0551652536, -0.0122743556, -0.00340231974, 0.034118548, -0.0244620293, -0.00842561759, -0.0473984294, -0.00896305405, -0.0204399228, -0.0174580179, 0.00462022, 0.0335464403, 0.048993405, -0.0067873029, -0.00543504301, 0.0344479457, -0.0340145305, 0.0268371515, 0.0471557193, -0.0151782464, 0.0123090288, -0.00540903816, -0.0123610394, 0.0384527147, -0.0176660568, 0.012456391, 0.0144587755, -0.017891435, -0.0243233349, 0.012179004, -0.00091559242, 0.0144327702, -0.00406544702, 0.0300444327, 0.0333383977, 0.0288655404, 0.0319341309, -0.00262867124, -0.00185502274, -0.0173886716, -0.00194387313, -0.0247220788, 0.0139906853, -0.0302871466, -0.0381406546, 0.0186195746, -0.0140687, -0.0325582474, 0.0137046305, 0.00230577588, 0.00868133269, 0.0282414202, 0.0210293699, -0.00431466149, 0.00508397585, -0.0417120047, -0.0129678221, -0.0383140221, 0.0164698269, -0.0141293788, -0.0335984491, 0.0307205636, -0.0102026248, -0.0321595073, 0.0274612717, -0.0113295075, -0.00735074421, -0.00775382156, 0.00324195554, -0.00762813073, -0.0175620373, -0.00953516364, -0.0208560023, 0.0277039837, -0.0135572692, -0.0209600236, -0.000683172781, -0.00140210241, -0.0115548847, -0.00693899859, -0.00802687369, 0.00794019084, 0.00655325782, -0.00718604587, 0.0155943269, 0.0135139273, -0.00693899859, 0.0100986054, -0.00338715012, 0.0414346196, 0.0127164405, -0.0358522162, 0.044555217, 0.00802254, -0.0406024605, 0.00539170159, 0.00871600583, -0.00891971216, -0.0121876728, 0.0232658, -0.00836060476, 0.0574536957, -0.0124650588, -0.0269758441, -0.0112341559, 0.000691841124, -0.00565608544, -0.0053960355, -0.0181341469, -0.000703218335, -0.000567775627, 0.0449713, 0.0154556334, 0.026819814, -0.0126904361, -0.0013002496, 0.00885036495, -0.0436537117, 0.0396662802, 0.0293509662, 0.00662260456, 0.00615018047, 0.0173019879, 0.0241499692, 0.000505472, -0.000234180363, 0.0160970893, 0.00676996587, -0.00632788101, -0.024756752, -0.047017023, 0.00557807041, 0.015550985, 0.00201105257, 0.0189836435, 0.00941380672, -0.00329396548, 0.00722071948, -0.0402210541, -0.0286921728, -0.00341532216, -0.0013793481, 0.00478058401, 0.0116675729, -0.0120663159, 0.00792285427, -0.000287680217, -0.0133839026, 0.00117022463, -0.0604702719, 0.00627153693, -0.0142767401, -0.0093097873, 0.0195730906, 0.00717737759, -0.0295069963, 0.031500712, -0.0268544871, -0.035349451, 0.0490627512, 0.0165998526, -0.0239245929, 0.000925886037, 0.0938953534, 0.00924910884, 0.0291082542, 0.0068956567, 0.0391115062, 0.0373778418, -0.010037927, -0.0277213212, -0.0391461812, 0.0106533784, 0.00676996587, -0.00640589604, 0.00640589604, 0.00276736449, 0.0127164405, 0.0295763426, -0.0097865453, -0.0301311165, -0.00463322271, -0.00274352659, -0.0203185659, -0.00214974605, -0.00203705765, 0.0527727939, -0.00192328577, 0.0233698189, 0.0174753536, -0.00353017752, -0.0307205636, -0.0122396825, 0.0345866382, 0.0103239818, 0.00210748776, -0.00217033317, 0.00671795616, 0.0102806399, 0.00333947432, -0.00799220055, -0.00776249, -0.0245313756, -0.00147903385, -0.0156203313, -0.00624986645, -0.0152996033, -0.000727056235, 0.0053006839, 0.00648391107, -0.0213067569, 0.00606349716, 0.013288551, 0.0286921728, -0.0167905558, 0.0223296192, 0.0161837731, -0.0153169399, -0.0116502363, -0.0108787548, -0.012933149, 0.0186369102, -0.0181341469, 0.0110607892, -0.026143685, 0.0286054909, -0.00958717335, 0.0155163119, -0.00604616059, 0.0173973385, 0.0115722213, -0.00335030979, -0.0090324, -0.0204572603, -0.0143720917, -0.0122396825, 0.0155423163, 0.0217228364, 0.0175793748, 0.00447719265, -0.0110781267, -0.0300097596, -0.0515939035, 0.0100552635, -0.0269238353, 0.00374038448, 0.0108527495, -0.0313966945, -0.000436938019, 0.0029992424, 0.0146234734, -0.00570376124, 0.0100726, 0.00309892814, -0.0162704568, -0.0289348867, -0.00560840964, 0.017692063, 0.0302004628, -0.00480225496, -0.0173713341, -0.0314833745, -0.00212590815, 0.0217054989, 0.011546216, -0.00656626048, 0.0258836355, -0.0171026159, 0.00870733801, -0.0026004992, 0.00326145929, 0.00634088367, 0.0367883928, 0.0114855375, 0.00944848, -0.00302741444, -0.0132452091, -0.0447285846, 0.0428562239, 0.0481959172, 0.00396576105, -0.00542637473, 0.0272012204, -0.0194343962, -0.0291776, 0.00182034937, 0.0197984669, 0.0131065156, -0.00268501532, 0.0187756047, 0.0111648096, -0.000252465135, 0.00570376124, 0.0201452, 0.00125907501, -0.0400823615, -0.00304041686, -0.033997193, 0.00362986326, 0.00527467905, -0.0153862862, -0.0245833844, 0.00814823061, -0.0158543773, 0.00133708993, -0.0212894194, 0.0392155275, -0.0161317624, 0.0167645514, 2.51076835e-05, 0.0397009552, -0.00808755215, 0.0160797536, 0.0111561408, 0.0413999446, -0.0256062485, -0.0011236323, -0.017692063, 0.0143894283, -0.0250688121, 0.0191743467, 0.00751110818, 0.0220348965, -0.0257622786, 0.0101766195, -0.017258646, -0.0153256087, -0.031344682, 0.00378589332, 0.0119102858, 0.00747643504, -0.0107227247, -0.0222082622, 0.0189316329, 0.00740275439, -0.00281287334, 0.00409145188, -0.0118582761, 0.00767147262, -0.0276346374, 0.0157763623, -0.0221215785, -0.0145021165, 0.0322288536, -0.00648824545, 0.000656626, 0.0251554959, 0.00468956679, 0.0325929224, -0.0111821461, 0.0352107584, 0.0131758619, -0.00382273365, -0.0136179468, -0.0157070141, 0.0299404133, 0.0429602452, 0.0144327702, 0.0130718425, 0.0286228266, 0.00692599593, -0.0114595331, 0.0169899277, -0.0114508644, 0.0125084007, 0.00902373157, -0.016383145, -0.000387907785, -0.014519453, 0.0160017386, 0.0307725724, -0.00397226261, 0.0177267361, -0.0102546345, -0.016981259, 0.0286921728, 0.0301657896, 0.0315700583, 0.0150308851, -0.01479684, -0.00551739242, -0.0169205815, -0.00241196295, -0.00553906336, 0.00558240479, -0.00822624564, -0.00198938185, 0.0211507268, -0.00777982641, 0.0150308851, -0.00303174858, 0.0156029947, 0.0182555038, 0.0124130491, -0.0110607892, -0.0196077637, 0.00428865664, 0.0144327702, 0.027808005, 0.00881569181, 0.0333904102, -0.00859465, -0.0104713431, -0.00778849469, -0.0156896785, -0.0141553832, -0.00512731727, -0.00498862425, -0.00790985115, -0.0377592482, 0.0151435733, 0.0205959529, 0.0220002234, -0.00814389624, 0.0113381762, -0.00345866382, -0.0117802611, -0.0095004905, 0.0212200731, -0.00878535304, -0.00331130228, -0.0110087795, 0.0216361526, -0.00802254, 0.00472424, -0.00679163681, 0.0301311165, 0.0247740876, -0.00588579616, 0.00194712367, 0.0105233528, -0.0050146291, -0.0312406626, 0.0371004529, -0.00287138438, 0.0015938892, -0.0225549955, 0.020387914, 0.0240979586, -0.0066096019, -0.0265944377, -0.00937046483, -0.00440134481, -0.00487593608, -0.00687832, -0.0170506053, -0.0288655404, -0.0355401561, -0.0074070883, -0.0223469567, -0.0217921827, 0.00838661, -0.0141727207, -0.0295590069, -0.0164351538, 0.000779608, -0.0554773137, 0.0188796241, -0.0302871466, -0.0206132904, -0.00986456, 0.0248781089, -0.00430816039, 0.00890237559, -0.0328009613, -0.00796186179, -0.00658793095, 0.013210536, 0.00922310352, -0.0158630442, 0.0435496904, 0.0112168193, -0.0112948343, 0.0320728235, 0.00961317867, -0.0236298684, -0.00533969142, -0.00630621053, 0.0092144357, -0.0191223361, -0.0321941786, 0.0130024953, -0.0134965908, -0.0162011087, -0.0104800118, 0.00749377161, -0.0222082622, -0.020387914, -0.0163484719, -0.0363029689, -0.00218008505, -0.0582165085, 0.0303391572, -0.0342052318, -0.0278600138, 0.0156116635, -0.0330090038, -0.0239766017, -0.0156376678, -0.0320728235, 0.0276866481, -0.0243580081, -0.0153429452, 0.0211854, 0.0422321074, -0.0459768251, 0.00495395064, -0.0089543853, 0.00748076895, 0.001993716, -0.0106187044, 0.00129374827, 0.00378589332, -0.0214454494, -0.041261252, -0.0115288794, 0.00375122, 0.00827825535, -0.00659659924, -0.00364503288, -0.00524000591, 0.0333904102, -0.0298884027, 0.00449452922, 0.00832593162, 0.0266811214, -0.000186910882, 0.0260916743, 0.00925777666, -0.0109481011, -0.00937913358, -0.0141467154, 0.0309979506, -0.0257969517, 0.0103499861, 0.00123957125, 0.00964785181, 0.00770181138, 0.00406978093, -0.00221259124, 0.0251208209, -0.000646874134, 0.00848196167, -0.0142680723, -0.0114508644, -0.0240459479, 0.00671795616, -0.00752411084, 0.00523567153, -0.000489489757, 0.0138259875, -0.0310672969, 0.0171112847, 0.00913642067, -0.00615884876, 0.00268934947, -0.0019059492, -0.0218095202, 0.0289695598, -0.0205959529, -0.0194517337, 0.000177294452, -0.0120489793, -0.000754686538, 0.00281937444, 0.0317260884, -0.0286228266, -0.000194224776, -0.0219135396, 0.0405677855, -0.00643190136, -0.0180474631, 0.00821324345, 0.0228323825, 0.0134185757, 0.0014996212, -0.0209946968, 0.00570809562, 0.000403077371, -0.00335897808, 0.000810488884, -0.013210536, 0.0161491, 0.0148575185, -0.00375555409, 0.00911041535, 0.0337371416, 0.00322678592, -0.0260223281, -0.00225159875, -0.0231791157, -0.031258, 0.0165131688, -0.00296023488, -0.0130545059, 0.00631054444, 0.00720338244, -0.00618918799, -0.00386824249, -0.0400130115, 0.0190529898, 0.00434716791, -0.000482446776, -0.013011164, -0.0118149342, 0.00667461427, -0.00434283353, 0.00845162198, -0.0102719711, 0.0065142503, -0.0078145, -0.00040334824, -0.00494528236, -0.00790118333, 0.0175967105, 0.0283454414, 0.00509697851, 0.00338281598, -0.00816556718, 0.00336114503, -0.0181688201, -0.00143244164, 0.0169899277, -0.0162791237, 0.00998591632, 0.0105406903, -0.0203012303, -0.00578177627, 0.0184635445, -0.0229017287, 0.0235951953, -0.0351760834, -0.0276346374, 0.000263977738, 0.0131845307, 0.000835952116, -0.00791418552, -0.0095004905, -0.0141033735, -0.0117715923, 0.012378376, -0.0104626752, 0.00561707793, -0.0364416614, 0.00400910294, 0.000645790598, -0.0248781089, 0.0323328711, -0.0186022371, 0.00191028335, -0.0207346473, 0.0128464662, -0.00365803554, 0.0110347848, -0.0210120324, 0.00335464394, 0.0215321332, 0.0111734783, 0.01142486, 0.00410012, 0.0211507268, -0.00270451908, -0.00303174858, 0.0199371595, -0.0184635445, -0.0290909167, -0.0063235471, -0.0207866561, 0.0144154336, -0.0246007219, 0.028917551, -0.00075197767, 0.00550872413, 0.0157590248, 0.0189316329, -0.0233351458, 0.00977787655, 0.00842128322, -0.0127944555, 0.00431466149, -0.0252248421, -0.00706468942, 0.0293509662, 0.00797919836, -0.0076324651, -0.0179954544, 0.0364763327, 0.00906707346, -0.00200780202, -0.0151262367, 0.00442951685, 0.0137219671, -0.00589879882, 0.00543504301, 0.0209253505, 0.0317607634, -0.00982121844, -0.0228323825, -0.00687398622, 0.0197637938, 0.013288551, -0.0216534901, -0.023959266, -0.0061328439, -0.000475945504, -0.0257449411, 0.0298190564, -0.0429602452, 0.00276736449, 0.00119948026, 0.0150568904, -0.00330696814, -0.0127511136, 0.00294506527, 0.0149181969, -0.00336981355, 0.0126297576, -0.00127316103, 0.0122830244, 0.00607216544, -0.00805287901, -0.0187756047, -0.00559540745, -0.0332690515, 0.00020993613, -0.00356485089, -0.0165045019, 0.019105, -0.00196446036, -0.0350547284, -0.0420587398, -0.00782750268, -0.0167732202, -0.0180821382, 0.0321421698, -0.00579044456, 0.00482826028, 0.000459963281, 0.00196771091, 0.0290909167, 0.0171546265, 0.00914508849, -0.0277559943, -0.0216881633, 0.0147361616, 0.00013760975, -0.00211398909, 0.00252465135, -0.00046023418, 0.0362336226, -0.0149181969, 0.00129049772, -0.00663127284, -0.0110607892, 0.00615884876, 0.0171632934, -0.023803236, -0.000103004146, -0.000353776239, 0.00448586093, 0.0113208396, -0.00478491839, 0.0183075145, 0.00591180148, -0.000754144741, 0.0414346196, -0.0199891701, 0.00128941413, -0.00634521805, 0.00256365864, 0.0238725822, -0.00786651, 0.0133405607, 0.0405331142, -0.0100552635, -0.00934446, 0.00581645, -0.0269931816, 0.00848196167, 0.00206197915, 0.0154296281, 0.0105060162, 0.00195145793, -0.0129938275, -0.0401517078, -0.0216708258, 0.00349333719, -0.0150222164, 0.0083952779, -0.0159237236, 0.00498429, -0.00143135805, 0.0131498575, 0.00109383499, -0.0138346553, 0.00629320787, 0.0095958421, -0.0240286123, 0.00521400059, -0.0036472, 0.00399826746, -0.013011164, 0.019243693, -0.0375512093, -0.00483259419, -0.0176400524, 0.0145107852, -0.00480225496, 0.020630626, -0.00652291859, 0.0298537295, -0.00385740702, -0.0134445801, -0.00345216249, -0.00930111855, -0.00736808078, -0.0286228266, -0.00327662891, -0.0319167934, 0.00898039062, 0.00234911754, -0.0127597824, -0.0296110176, -0.010037927, 0.000941055652, 0.00954383146, 0.0023924592, -0.00951782707, 0.0150135485, 0.0411919057, 0.00511431508, 0.00268501532, -0.0144241014, -0.0147621669, -0.000822407834, -0.0136699574, -0.0145627949, -0.0175447017, 0.0169465858, -0.0116155632, -0.000702676538, -0.00504063396, -0.0215321332, 0.00568209076, -0.0116415676, 0.00452486845, 0.00962184649, 0.00480658934, 0.00486726733, -0.0101592829, -0.0173713341, 0.0179607812, -0.00936179701, -0.0109307645, -0.00535702799, -0.0133492285, 0.02284972, -0.0239419285, 0.0368924141, -0.00123415352, -0.0483692847, 0.0121876728, 4.00402359e-06, -0.0061458461, -0.00814823061, -0.00239462638, -0.00898039062, -0.00857731327, -0.00617618533, -0.0266637839, -0.0143374186, -0.0200931896, 0.0146754831, 0.00237945677, 0.00726839527, 0.0212547462, -0.00247047422, 0.0108354129, 0.0089543853, 0.0332690515, 0.00742009096, -0.00938780233, -0.0168859083, 0.00286054914, 0.000330209208, -0.0409491919, 0.00562574668, 0.00600715308, 0.0141120423, 0.0282934308, -0.0212894194, 0.0130024953, -0.00222776085, 0.0242886618, 0.00603315793, 0.00505363662, -0.00510564679, -0.0108440816, -0.00779282907, 0.00458121253, 0.0249647908, -0.0313966945, 0.0173279922, -0.00128724705, 0.0124217179, -0.0102546345, -0.033442419, 0.0454567261, 0.00690432498, -0.0272185579, -0.0257969517, 0.00228410517, 0.0392502, -0.00191028335, 0.00129808253, 0.00786217581, 0.0212200731, -0.05561601, -0.00742442487, -0.0156983472, 0.00344782835, -0.00281720748, -0.000257070176, 0.016981259, -0.00773215061, 0.00358218746, -0.0230404232, 0.0149702067, -0.0244620293, -0.00137284689, -0.0144674433, -0.0164784957, 0.0161664356, -0.0201625358, 0.00304258405, 0.000823491369, -0.00579044456, 0.0142073939, 0.0074417619, 0.038001962, -0.0162791237, -0.0196944475, -0.0282240845, -9.23041734e-05, -0.0187062565, -0.0235778596, 0.00682197604, -0.00757612102, -0.0103326496, -0.00334380846, 0.0244273543, -0.0277386568, -0.00125474087, -0.00563008059, -0.0157416873, 8.39744534e-05, 0.0254848916, -0.0173713341, 0.0306512173, 0.00564741716, 0.0205092691, 0.0200931896, 0.0174580179, 0.0168512352, 0.00114313606, -0.00491060922, 0.0217748452, 0.017059274, 0.00160797534, 0.00271968869, 0.00611984124, -0.00719904853, -0.00253331964, -0.00761946244, 0.0389034674, -0.000983855454, 0.0111214677, -0.0274786074, 0.0147014884, -0.0159583967, -0.00166540302, -0.00385090569, 0.00993390661, -0.00722071948, 0.00349117, 0.0365110077, -0.0183075145, 0.00247697532, -0.0497562177, 0.0262477044, 0.0293509662, 0.0162877925, 0.0122570191, -0.000163343851, 0.0195730906, -0.00338281598, -0.028484134, -0.0406024605, -0.00484559685, -0.017059274, -0.00291689322, -0.0260396656, 0.00495828502, -0.0131585253, 0.00849062949, 0.0292642843, 0.0173019879, 0.0386260822, -0.0182381663, 0.0276173, -0.0155336484, -0.0201625358, 0.0138693284, -0.0099772485, -0.016981259, -0.0336504579, 0.00200671842, 0.022294946, 0.0129678221, 0.0114161912, -0.0100726, -0.00692599593, -0.0152996033, 0.00316177355, -0.00258966372, 0.000627912174, -0.0263517238, -0.0114595331, 0.0172153041, -0.00676129758, -0.0180821382, -0.0205266066, -0.000440188654, -0.00663994113, 0.0269931816, 0.0149008604, 0.012855134, 0.0104106646, 0.025866298, 0.000123117381, 0.0210813805, 0.0137393037, -0.0055737365, 0.0054783849, 0.016781887, 0.0104366699, -0.00545671396, 0.00364503288, -0.00386174116, 0.00430816039, 0.00992523879, 0.0341012105, 0.0150482217, 0.0175447017, -0.00562574668, 0.00634521805, 0.00437534, -0.00582078379, -0.02134143, 0.019954497, -0.0251554959, -0.00344132725, 0.00738108344, -0.015750356, 0.0095958421, -0.00650124764, 0.0143114133, 0.0108787548, 0.012100989, 0.00602882402, 0.00522700325, 0.00602015527, -0.00931845512, 0.00625853473, 0.0130024953, 0.0214107763, 0.0067526293, -0.00197746279, 0.00415646425, 0.0140687, 4.84884731e-05, -0.00947448518, 0.00488460436, 0.0177440718, 0.000288492884, 0.0130631737, 0.0131238522, 0.0175360329, -0.0253982078, 0.0074070883, 0.0101766195, 0.00943114329, 0.00659659924, 0.00232527964, 0.0196077637, -0.00454220502, -0.0127944555, -0.00488027, 0.00533102313, 0.00718171196, -0.00388124492, -0.0077408189, 0.00953516364, -0.00614151219, 0.0208906755, -0.027530618, 0.00277603278, 0.0134532489, 0.00891104341, -0.00630187616, -0.0042713196, 0.00106078689, 0.0216361526, -0.000655542477, 0.00317477598, 0.000298244733, -0.0223469567, 0.00675696367, 0.0110521214, 0.0118322708, -0.00417813519, 0.0192957036, 0.00553906336, 0.00273702526, -0.00288221985, 0.0192090198, -0.0118842814, -0.00278686825, -0.0135399317, -0.00882002618, 0.0349160358, 0.00215191301, -0.0350027196, 0.0337024704, -0.0135139273, 0.00350633962, 0.0125084007, 0.0158630442, -0.0138953337, -0.00235561887, -0.00248781079, -0.0178740975, -0.00943981204, 0.0315873958, 0.0171979684, 0.00325929234, -0.0015548818, -0.00438617542, -0.0156983472, -0.0109567698, 0.0351067372, 0.0107660666, 0.00479358668, 0.00144761114, 0.0022255939, 0.0252768509, 0.00198504771, -0.0128811393, 0.0179261081, -0.0115635525, 0.00865099393, 0.00799653493, 0.00880702399, 0.00266767875, -0.00842995103, -0.0122310147, 0.0226070061, -0.00420197332, 0.00346299796, -0.00972586684, 0.0224856492, 0.0157330204, 0.00198721467, -0.0163658075, 0.00281287334, -0.00242929952, 0.00172716484, -0.001339257, -0.00833893381, 0.0100899367, 0.00584678911, 0.00345649687, -0.0134965908, -0.00159280573, -0.00647090888, -0.00834760256, 0.0091017466, 0.0136179468, 0.020908013, 0.0179261081, -5.30935249e-05, -0.00144761114, -0.00599848479, -0.00738975173, 0.0126470942, 0.00797919836, -0.00135876075, 0.00100390101, -0.0018268507, -0.00105699454, 0.000608408416, -0.0137306359, 0.00950915832, 0.0012915812, 0.00589013053, 0.00449019531, 0.01967711, -0.0150482217, 0.0144327702, 0.000983313774, 0.00679163681, -0.0209253505, -0.00652725296, -0.00496261939, 0.0126904361, -0.0106013678, 0.00491060922, 0.0230230857, -0.0185155533, 0.0177093986, -0.00909307878, -0.00546104833, -0.0169725902, 0.0113728493, 0.0144761121, -0.027253231, 0.00296240184, 0.0238725822, -0.0317607634, 0.0100899367, -0.0287268478, -0.0260223281, 0.0143374186, 0.00213457644, 0.00425181631, -0.0115375482, -0.00702134753, -0.0182728413, -0.00212049042, 0.0112168193, -0.0148921916, 0.00312059885, 0.00662260456, 0.0264037345, 0.00343916, 0.00384873874, 0.0114421966, -0.00527467905, -0.00260266615, -0.0123263663, 0.0114335278, -0.0254848916, -0.0012753281, -0.0170766115, 0.00391808525, -0.0276346374, -0.000119934477, -0.000714053749, -0.00141835562, -0.016781887, 0.00927511323, 0.0153602818, 0.0202665571, 0.00575577142, -0.00806588121, -0.00572976656, 0.00522700325, 0.00608083373, 0.0292122737, -0.0169552546, -0.000197339963, 0.00645790622, -0.0228323825, 0.0196251, 0.0205092691, -0.0206132904, -0.00840394665, 0.0129591543, -0.0273919236, -0.00829559192, -0.00634521805, 0.0195730906, 0.0228670556, 0.00595947728, 0.00203922484, 0.00834760256, 0.00322245178, 7.04301856e-05, -0.0229364019, 0.0166691989, -0.0137566403, -0.00470690336, 0.029871067, 0.0169639233, 0.0120489793, 0.0049669533, -0.000316394056, 0.000727056235, -0.034118548, 0.00525734248, 0.00351934205, 0.00806154776, -0.0172759835, -0.00042935324, -0.0149788754, -0.00035594331, 0.00263083819, -0.00783183612, -0.0255715754, -0.0106880516, 0.00448152702, 0.00526167639, -0.00659226533, -0.0140687, 0.0188102778, 0.00144652766, 0.019399723, -0.0151262367, 0.00551739242, -0.0211160537, 0.0110174483, -0.0128724705, -0.0105320215, -0.0101592829, 0.00794019084, 0.00958717335, 0.00898039062, 0.0174233448, 0.00151370722, -0.0114075225, 0.00305558648, -0.031258, 0.00380106294, 0.0170332696, 0.00811789185, 0.013487922, 0.00368837453, 0.00785350706, -0.0249301177, -0.00617185142, 0.0192957036, -0.00438184105, -0.0185155533, 0.0171459578, -0.029715037, 0.00356268371, -0.0104280012, 0.00875934772, 0.0213067569, 0.019399723, -0.00960451, -7.52553296e-06, 0.0230404232, 0.0140773682, 0.00818723813, 0.025866298, 0.0222429354, -0.0145541271, -0.0151869152, -0.0156463366, -0.00586412568, 0.00572976656, -0.00338281598, -0.00187127583, -0.014164052, 0.00302741444, 0.0158977173, -0.00759345759, -0.0188622866, 0.00863365736, -0.00782750268, 0.00981255, -0.00209665252, 0.00523133762, 0.00898039062, -0.00981255, 0.0166085213, -0.0039332551, 0.0147448303, 0.0101419464, -0.00409361906, 0.0124477223, 0.000395492563, 0.0188449509, 0.00519233, -0.00845162198, 0.00401343685, 0.0016827397, 7.09042361e-05, -0.0163224656, 0.00139776827, 0.0123350341, 0.0480572246, -0.0250341389, 0.00494528236, 0.0141987251, -0.00500596082, 0.00526601076, -0.0303564928, -0.012179004, 0.0132192038, -0.0309459399, -0.00868133269, 0.0287268478, -0.00183335191, -0.0351934209, 0.0221042428, -0.00770614576, 0.0308939293, 0.0089543853, -0.0241326317, 0.0305818692, -0.00981255, -0.0059551429, 0.0197637938, 0.0280680545, 0.0135919424, -0.0059074671, 0.0049669533, -0.00712536741, -0.0176227149, 0.00174341793, 0.0118582761, -0.0173539966, 0.014441439, -0.00200780202, -0.0120836524, -0.00430165883, 0.032731615, -0.00498429, -0.0186369102, -0.0180994738, 0.00798786618, -0.00153321098, 0.00423014536, 0.00296890317, 0.00975187216, 0.00653592125, -0.00803987682, -0.00665294379, -0.00957850553, -0.00468089851, -0.0180994738, 0.0154989753, -0.0207693204, -0.00898905843, 0.00402427232, 0.0147534981, -0.00803987682, -0.00575577142, -0.0119969696, -0.0213934388, -0.0130371694, 0.0176053792, -0.00497128768, -0.0159583967, 0.0193130411, -0.0310846325, -0.00376855675, 0.00572543219, 0.00751110818, 0.0228323825, 0.0214281119, -0.00458121253, -0.0026004992, 0.000964351755, 0.0122830244, -0.00206197915, 0.00771914842, 0.00406111265, -0.00823058, 0.0194170605, -0.012057648, -0.0287095103, 0.00396792823, 0.00887637, -0.0141467154, 0.0130545059, -0.0244620293, 0.011624231, 0.00615884876, -0.0226936899, -0.00173366605, -0.0314140283, -0.0158630442, -0.0113641815, -0.0260743387, 0.0137826456, 0.00874634553, 0.0324195549, -0.00330046681, 0.0327142775, 0.00160797534, 0.0192090198, 0.0150568904, -0.010037927, -0.0100032529, 0.0127251092, 0.017258646, 0.00458554691, -0.0134705855, -0.00875934772, 0.0235431846, 0.00424531475, -0.00280637201, -0.00202188804, -0.009006395, 0.0273919236, 0.0152129196, 0.00247480837, -0.0148921916, 0.0148575185, 0.0154296281, 0.0283454414, -0.0124737276, 0.0137826456, 0.0235431846, 0.00588579616, 0.0108094085, 0.00856431, 0.00879835524, 0.00195904262, 0.00648391107, -0.0223469567, -0.0174580179, 0.0122656878, 0.00693466421, 0.00810488872, 0.00530935219, 0.00232527964, -0.00611117296, 0.00302958139, -0.00821757689, 0.00302741444, 0.00896305405, 0.0087636821, -0.0234044921, 0.00644923793, 0.0313620195, -0.0175533686, -0.0051099807, 0.0137913134, -0.00996858, -0.0132972188, 0.0278253406, 0.00402210513, 0.0075371135, -0.016903244, 0.0146061368, -0.00244446914, -0.00976054, -0.015550985, 0.0217401721, 0.0275999643, -0.0128724705, -0.0082999263, -0.0110001117, -0.00805287901, -0.0137479724, 0.00135334313, 0.00445985608, 0.000339148421, -0.00856431, -0.000352692703, -0.00428648945, 0.0014909528, -0.00836493913, -0.0390768349, 0.0267504677, 0.0240806211, -0.00285404781, 0.00334814261, -0.0101506151, -0.00268284837, 0.0390421599, -0.016027743, 0.0293509662, 0.0108527495, -0.00241413014, -0.0127164405, 0.029004233, 0.00302308029, 0.00302741444, 0.00473724259, -0.0100812679, -0.00565175153, 0.021064043, -0.00610250467, 0.0104366699, 0.0213240925, 0.0417120047, 0.0113381762, -0.00657492876, -0.00550005585, -0.00221800897, 0.0208039936, 0.00291689322, 0.00124715606, -0.00353451166, -0.00776682422, -0.00999458507, 0.0280333813, 0.00277386582, 0.013409907, 0.00722505338, 0.019000981, -0.020387914, 0.00666594598, 0.00433849916, 0.0250168014, 0.0190183166, -0.0169552546, 0.0101072732, 0.00845595635, 0.00625420036, 0.00773648499, 0.00179542799, 0.0221909266, 7.28004306e-05, 5.59970749e-06, 0.00124282192, 0.000646332395, 0.00716437493, -0.00476324745, 0.00443818513, 0.00248997798, -0.0175013598, 0.0189489704, 0.00573843485, 0.0312059894, -0.0095525, -0.00962184649, -0.03261026, 0.0357135199, 0.0114161912, 0.0128898071, 0.0303044841, 0.00954383146, 0.00178459252, 0.0150482217, 0.0337198041, 0.0141900573, -0.00462022, -0.00105049333, -0.00535269408, 0.00100606808, 0.00792718865, 0.0158890504, -0.00237728958, 0.0177267361, -0.0181341469, -0.0108094085, 0.00733774155, 0.0119276224, 0.0187929403, -0.0218441933, -0.00938780233, 0.00361252669, 0.0173019879, 0.00592913805, -0.0424054712, -0.00637555681, -0.0245660488, -0.0117542557, -0.0017705065, 0.0162271149, 0.0012753281, -0.00669628521, -0.00494094845, -0.036615029, 0.00484993076, -0.016738547, 0.0164871644, 0.020387914, 0.0140947057, -0.00936179701, 0.00132625457, -0.00742009096, -0.0273572505, 0.0257102679, 0.0148661863, -0.00768447481, 0.00321378349, -0.0291776, -0.0278773513, -0.0119276224, 0.00719038025, -0.0311886538, 0.013765309, -0.0108787548, 0.0122916922, 0.00150503882, 0.0073594125, 0.0126210889, -0.0113121709, -0.0138779972, -0.0112601612, 0.014519453, 0.00494961673, -0.00875501335, -0.0134445801, -0.032020811, -0.00650558202, 0.00647524279, -0.00772348233, 0.0097865453, 0.0113815181, 0.0100465948, -0.000967060623, -0.0198331401, 0.00137609744, 0.00398093089, -0.0172239728, -0.023803236, 7.04301856e-05, 0.0396316051, 0.00537003065, 0.0147708347, 0.00346516515, 0.0259529818, 0.0166171901, -0.00913642067, -0.00438617542, -0.0123870438, -0.0097865453, 0.00742875924, -0.00406978093, -0.015117568, -0.00937046483, 0.000689132256, 0.00352367642, 0.0163918138, -0.0115202116, 0.0060504945, -0.00572543219, -0.0105840312, 0.0133665651, 0.00816556718, -0.0278946869, 0.0127857877, 0.00196446036, 0.0182208307, -0.00931845512, -0.00775382156, -0.0016274791, 0.0217401721, -0.00570809562, 0.000953516341, -0.0128638027, 0.00699967705, -0.00588579616, -0.000988189713, -0.000759562477, 0.0206479635, -0.0115028741, 0.00497995596, 0.0378632657, -0.00406328, 0.00251598284, 0.0204399228, -0.0212027356, -0.0101072732, 0.0025766613, -0.0078145, 0.00344132725, 0.0134185757, -0.00284104538, -0.017770078, 0.0053960355, -0.0287961941, -0.0176573899, 0.0170852784, -0.00786651, -0.0161230955, -0.000103004146, 0.010115942, 0.0124477223, 0.000443981058, -0.00461588614, -0.00868133269, 0.00777115813, -0.0299577508, 0.00281504029, -0.0192957036, -0.00395492557, -0.0277213212, -1.24353292e-05, -0.0128638027, -0.00353667885, 0.00930111855, -0.00930111855, -0.0041282922, -0.0162097774, 0.00445985608, 0.0036472, -0.0133145554, -0.00173583312, -0.0155683216, 0.00944848, -0.0075371135, 0.0029277287, 0.0150395529, -0.0176313836, 0.00924910884, -0.0142767401, 0.0069433325, 0.021618817, 0.00830859505, -0.00670928787, -0.00253115245, 0.0072944, 0.0114421966, -0.00621519284, 0.0129158124, 0.00216816622, 0.00858164672, -0.00741142267, 0.00938780233, 0.00336764636, 2.81720731e-05, -0.00887637, 0.0148921916, -0.0114942063, 0.0140947057, 0.0336504579, 0.00197746279, 0.0126297576, 0.00671362178, 0.00594647462, 0.0155769894, 0.0270451903, 0.0169379171, 0.00691299373, 0.0113728493, -0.011546216, -0.021861529, 0.0228670556, -0.0166691989, 0.0168512352, 0.0110781267, 0.00117455877, -0.00272619, 0.0124737276, -0.0293162931, 0.00552172633, 0.00569075905, 0.00338064879, 0.0175273642, 0.0280333813, 0.00297107035, 0.0364069864, -0.00850796606, -0.0108180763, -0.000469986029, -0.0210120324, -0.0109567698, -0.0354534723, -0.0236472059, 0.0229364019, -0.0252075046, -0.0157330204, -0.00324412272, -0.00108137424, -0.00661827, -0.0102893086, 0.0185849, -0.0112428246, -0.00550005585, -0.0383486934, -0.0107053882, -0.0020890676, 0.0014281075, 0.0139040025, 0.00394625729, 0.0121876728, 0.0159844011, -0.00328096305, -0.00950915832, 0.00273919245, 0.000577527506, -0.00737674907, 0.0126384255, 0.00180843042, 0.000692924659, -0.0170072652, 0.00380323, -0.00279336958, -0.0212374087, -0.0119449589, 0.0197291207, -0.00937046483, -0.0207693204, 0.0227283631, -0.00513165165, -0.0415039659, -0.0158023667, -0.00118864479, -0.0061805197, -0.00848629512, 0.0381753258, 0.0198158026, -0.00516199088, 0.00609383639, 0.0200065058, -0.0266117752, -0.00752411084, -0.0162964612, 0.0076801409, -0.00579044456, 0.00595080899, -0.00745909847, 0.0159757324, -0.0153689496, -0.00852096919, -0.00762813073, -0.0179434437, -0.00912775192, -0.0188622866, -0.00391158415, 0.00973453466, -0.0150482217, -0.00538303331, 0.0166952051, -0.00803554244, 0.00405677874, -0.000728681509, -0.00270451908, -0.00552172633, -0.011901618, -0.00410662172, 0.0124997329, -0.0029992424, -0.00528334733, 0.00435150182, 0.0205266066, 0.0343265869, -0.0248434357, 0.0195557531, 0.00520966668, -0.0117542557, -0.0148488497, -0.0131065156, -0.0150568904, 0.00372954924, 0.00726839527, -0.0205612797, 0.0102459667, 0.0152389249, -0.0167125408, 0.0157156829, -0.00247697532, -0.00896305405, 0.0070733577, 0.0313966945, 0.00370571134, -0.0166431945, -0.0199891701, 0.0181688201, 0.0232137889, -0.0104106646, -0.0139213391, -0.00207823212, -0.00193412125, 0.00719904853, 0.00214107754, 0.0126297576, -0.000876584905, 0.0258489605, 0.0188449509, 0.00150287175, -0.0201625358, 0.00391591806, -0.00563008059, 0.00146169728, -0.0179261081, 0.00281720748, 0.000462672149, -0.0139560122, 0.0152822668, -0.00268068118, 0.00222992804, 0.0343092531, -0.00751110818, -0.000863040623, -0.00573410047, 0.00283237686, -0.00243363366, -0.00320944935, -0.00591180148, -0.00639722776, 0.00728139747, 0.00119406253, -0.0016664865, 0.00905840565, -0.0137913134, 0.00693466421, 0.00245963875, 0.00593780633, -0.00703435, 0.00185718981, 0.00585112302, -0.00209340174, 0.0144067649, -0.0192610305, -0.00239896053, -0.0054307091, -0.00816990156, -0.00722938776, -0.01547297, 0.0132798823, -0.00753277913, 0.00704735285, -0.00365370139, -0.00662260456, 0.0075977915, 0.0132538769, 0.0151349045, -0.00869433582, 0.0208039936, -0.00915375724, -0.0233004726, -0.0158110354, 0.00527901342, -0.0073594125, -0.00199046545, -0.0120836524, -0.0243580081, -0.0125084007, 0.0122483512, -0.0217401721, 0.015949728, -0.0310326237, 0.012655762, -0.00579477893, 0.0278946869, 0.0151089, -0.0102459667, -0.0169639233, -0.0201105271, -0.00516632479, 0.00473290822, -0.00693466421, 0.0019211187, -0.000597573, -0.012378376, -0.0175793748, -0.0226070061, 0.00238595787, -0.0165218376, 0.0124477223, 0.0130024953, 0.00362336216, 0.00924044, -0.0117282514, 0.00318561145, 0.00560407573, -0.00624553207, 0.0176400524, -0.0199718326, -0.0068826545, 0.0117369192, 0.000444522826, 0.0116762407, 0.00784050487, 0.00706902333, 0.00918843, -0.000208039928, -0.00128291291, 0.00743309315, -0.0125864157, -0.00904973689, -0.00736374687, 0.00938780233, 0.00898905843, -0.0176227149, 0.00436667167, 0.0237858985, -0.00864232518, -0.0493054651, 0.00575143704, 0.000364340754, -0.0216534901, 0.0233004726, -0.016738547, 0.0115808891, 0.00583812036, -0.000647957728, -0.00382490084, -0.00170224335, -0.00654458953, -0.00455520768, -0.00926644541, 0.0135139273, -0.0235431846, 0.00474157697, 0.014242067, 0.00308375852, 0.000887420319, 0.0244967025, -0.0019449566, 0.00560840964, 0.0252595153, -0.00615018047, -0.000485968281, -0.00129049772, -0.00312710018, -0.0108440816, 0.0143027455, 0.00180951401, -0.00354968128, 0.0110607892, -0.00814389624, 0.0529114902, 0.0315873958, -0.0150395529, -0.0254502185, 0.00465055928, 0.00218116865, 0.0176227149, 0.00443168404, -0.0231791157, 0.0185849, 0.0161577687, 0.00611117296, 0.00269151665, 0.0108180763, -0.00418463675, -0.00307942438, 0.0167212095, -0.0186369102, 0.00129483186, -0.00136851263, -0.00292122737, 0.00546971662, -0.00243146671, 0.00958717335, -0.00970853, -0.0158370398, -0.0179434437, -0.00350850681, 0.0194690693, -0.00471990602, 0.00308809266, -0.0295069963, -0.00661393628, 0.0023447834, 0.00689999107, -0.00387907797, -0.0144501068, -0.0129938275, 0.0142333983, 0.00336981355, -0.0183421876, 0.0121183256, -6.64515574e-06, 0.00178567611, 7.05656275e-05, 0.02943765, -0.0306165423, -0.0201972108, 0.000671795628, 0.025311524, 0.0245487113, 0.0095958421, -0.00887637, -0.0138693284, -0.00866399612, 0.00025856003, 0.00669628521, -0.0068826545, -0.00418680348, -0.0265944377, -0.0222602729, 0.000848412863, 0.0216361526, -0.0201972108, 0.000399826735, 0.00458554691, 0.0175793748, -0.00730306841, -0.0192263573, -0.00752411084, 0.00349767134, -0.00300140935, -0.0112861665, 0.0108787548, 0.00430165883, 0.0186195746, 0.0275479537, 0.00863799173, 0.00382923498, 0.0120923212, 0.0042713196, 0.00398959918, 0.0370311067, 0.0112688299, -0.0216708258, 0.0155683216, 0.0107660666, 0.00210207, -0.0202665571, 0.0281200632, -0.0154122915, -0.0302698091, -0.00418897066, 0.0198158026, -0.0088460315, -0.00697367173, 0.0116849095, -0.0266117752, -0.00788818114, -0.00723805605, 0.00380106294, 0.0242193155, 0.00679163681, 0.0157936979, -0.018290177, -0.0154989753, -0.0051576565, -0.00746776676, -0.00459421519, -0.0239766017, -0.00558673916, -0.00260916748, 0.0101072732, -0.00579911284, -0.00494961673, 0.00282154162, -0.0216881633, 0.0164698269, 0.0068826545, 0.0116502363, 0.0115895579, 0.00340231974, 0.00445118779, -0.00914508849, 0.00321378349, -0.0275999643, -0.0117455879, -0.033321064, -0.00437100558, 0.0155249797, 0.0091970982, 0.00698667439, -0.00157980318, 0.0233698189, 0.00193737191, 0.00211290549, 0.00569509296, 0.0188796241, 0.00976920873, -0.0304431766, -0.00475024525, 0.0135832736, -0.00085979, -0.001339257, 0.00371871376, 0.0045985491, -0.0158110354, 0.0109567698, -0.0170679428, 0.00673095882, 0.00422581099, -0.00167082064, 0.00932712387, 0.000243255025, 0.00231444417, 0.00677863462, 0.00390941696, -0.0185328908, -0.0162791237, -0.0226070061, -0.0417466797, -0.0328183, 0.0132192038, -0.0193477143, -0.00917976163, -0.0016025576, 0.00871600583, -0.00912775192, 0.0238725822, -0.00768880919, -0.0146148056, 0.0059551429, -0.0072944, -0.0165565107, 0.0169465858, 0.0124303857, -0.0150395529, 0.0203359034, 0.00111062988, 0.0154643012, 0.0149095282, -0.00669628521, -0.0183595233, -0.0102286302, -0.00936179701, 0.00556073384, -0.00846895855, -0.00454220502, 0.00943114329, 0.0135399317, -0.0156116635, -0.0272879042, 0.00798786618, -0.0142767401, -0.0440004468, 0.00784483925, -0.0102286302, -0.00546971662, -0.000471882231, 0.00478491839, 0.0355054811, -0.0263690613, -0.0217921827, -0.020387914, -0.00787951238, -0.00787084363, -0.00969986152, 0.0166431945, 0.0128031243, 0.015273598, -0.00125582435, 0.00163939805, -0.0190529898, 0.00611117296, 0.017692063, -0.0180648, 0.00389641454, -0.0189836435, 0.0216881633, 0.00270451908, 0.0184808802, -0.00452920282, -0.00341532216, -0.000576985767, 0.00888503902, -0.0186022371, 0.0193130411, 0.0186022371, 0.00393108791, 0.00582945207, -0.0244273543, -0.013843324, -0.0137566403, -1.78784321e-05, -0.00962184649, 0.0138346553, -0.00880269, -0.0110867945, -0.00823491346, 0.0135919424, 0.0113988547, -0.00254415488, -0.0142854089, -0.0116329, 0.0164871644, 0.00748076895, 0.00253765378, 0.00601148698, 0.000989815, 0.00517499307, 0.0051576565, 0.00665294379, -0.0289002135, -0.011624231, -0.0224163029, 0.0106793828, -0.0249647908, -0.0274092611, 0.0018236, 0.00202188804, -0.00444251951, 0.0276519749, 0.00924044, 0.0149528701, -0.00465489365, 0.00620219065, -0.00486293342, 0.0337371416, -0.00877668429, 0.00458988082, 0.0129678221, -0.00135767728, 0.00112688297, -0.0116675729, -0.01952108, -0.011147473, 0.0100726, 0.00356268371, 0.0133405607, 0.00645357184, -0.0158110354, -0.0130631737, -0.00112038176, 0.0108267451, -0.0275132805, -0.00281287334, -0.012855134, -0.0239419285, 0.00423881365, 0.000772564963, 0.00200780202, -0.00545671396, 0.0162444506, 0.0074894377, 0.0226763524, -0.00128074584, -0.00051928719, 0.00202838937, -0.0138346553, 0.0080138715, 0.0139473435, 0.0226070061, -0.00878535304, -0.00946581643, 0.00863799173, 0.0057167639, 0.00872900896, 0.00533535751, 0.0192263573, 0.00144652766, 0.0104019968, -0.00972586684, -0.00130241667, 0.0108094085, -0.0136699574, 0.0111561408, -0.0233004726, 0.00767580653, -0.0155856581, -0.0123090288, -0.00785784144, -0.00597681385, 0.0147361616, 0.0048716017, -0.0169899277, -0.0196251, -0.0150482217, -0.00745909847, -0.012153, 0.0170679428, 0.0143980971, 0.020231884, 0.0147881713, -0.00366453663, -0.0042171427, 0.00975187216, -0.0162531193, -0.0169725902, 0.0108007398, 0.00894571748, -0.0133665651, 0.00839094352, -0.00207931572, 0.00273919245, 0.00922310352, -0.00520966668, 0.0257622786, 0.00128724705, 0.0141727207, -0.0190703273, 0.0155769894, -0.0124737276, -0.0111648096, 0.00974320341, -0.00476324745, -0.00367970625, 0.00270885322, 0.00336331222, 0.0021291587, -0.00839094352, 0.0170419384, 0.00956983678, 0.00797919836, 0.0127684511, -0.00238379091, -0.00338931731, -0.0227283631, 0.0139213391, 0.027253231, 0.00356485089, 0.021861529, -0.00411095563, -0.010315313, 0.000394409028, 0.00603749231, -0.0157243516, 0.0234565027, -0.00517932745, -0.00715137273, -0.0179434437, -0.0205612797, -0.0175186954, -0.00255932449, 0.0148228453, -0.00100606808, -0.024479365, 0.0267678052, 0.00464189099, -0.0104019968, -0.00734641, 0.0110954633, -0.0242193155, -0.00701267924, 0.0118669448, -0.00996858, -0.0187582672, -0.0108440816, -0.0104713431, 0.0472597368, 0.00342399045, -0.0183075145, 0.0239939392, 0.0192783661, 0.0185849, 1.06999705e-05, 0.0186542477, 0.00489760656, -0.00217033317, 0.0157243516, -0.002648175, -0.00379889575, 0.00265467609, 0.00858598109, 0.00540037, -0.01142486, 0.0163484719, -0.019954497, -0.00642756699, 0.0310672969, 0.000904215209, -0.0111041311, 0.0020175539, 0.00534402579, 0.00930111855, 0.0044555217, -0.00518799573, -0.0252248421, 0.0175880417, 0.00413262658, 0.012057648, 0.00647957716, 0.0156463366, -0.0227630362, 0.011346845, 0.00820024, 0.0189489704, 0.00266117742, 0.0187409297, 0.00653158687, 0.00464189099, 0.0242539886, -0.0290215705, -0.00551739242, 0.0292122737, 0.00565175153, -0.00677430024, 0.00602015527, -0.0293162931, -0.00824791659, -0.0137479724, -0.0012764117, 0.0181341469, -0.0212894194, 0.00347166625, -0.0359215625, -0.0184288714, -0.0196424369, 0.0130891791, 0.00956116803, 0.00668328255, 0.0534315892, 0.0118149342, -0.00914508849, 0.0202492196, -0.0208039936, -0.00121031562, -0.00110521214, -0.0229190663, -0.00143460871, 0.0194690693, 0.00873334333, -0.00821757689, 0.00363419764, -0.00633654976, 0.0221215785, -0.00350417267, 0.013843324, 0.0107660666, -0.0129418178, 0.00701701362]
|
10 Feb, 2020
|
Calendar Functions in Python | Set 2(monthrange(), prcal(), weekday()…)
10 Feb, 2020
Some of calendar functions are discussed in the Set 1
1. monthrange(year, month) :- This function returns two integers, first, the starting day number of week(0 as monday) , second, the number of days in the month.
2. prcal(year, w, l, c) :- This function also prints the calendar of specific year but there is no need of “print” operation to execute this.
# Python code to demonstrate the working of
# monthrange() and prcal()
# importing calendar module for calendar operations
import calendar
# using monthrange() to print start week day and
# number of month
print ("The start week number and no. of days of month : ",end="")
print (calendar.monthrange(2008, 2))
# using prcal() to print calendar of 1997
print ("The calendar of 1997 is : ")
calendar.prcal(1997, 2,1,6)
Output:
The start week number and no. of days of month : (4, 29)
The calendar of 1997 is :
1997
January February March
Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su
1 2 3 4 5 1 2 1 2
6 7 8 9 10 11 12 3 4 5 6 7 8 9 3 4 5 6 7 8 9
13 14 15 16 17 18 19 10 11 12 13 14 15 16 10 11 12 13 14 15 16
20 21 22 23 24 25 26 17 18 19 20 21 22 23 17 18 19 20 21 22 23
27 28 29 30 31 24 25 26 27 28 24 25 26 27 28 29 30
31
April May June
Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su
1 2 3 4 5 6 1 2 3 4 1
7 8 9 10 11 12 13 5 6 7 8 9 10 11 2 3 4 5 6 7 8
14 15 16 17 18 19 20 12 13 14 15 16 17 18 9 10 11 12 13 14 15
21 22 23 24 25 26 27 19 20 21 22 23 24 25 16 17 18 19 20 21 22
28 29 30 26 27 28 29 30 31 23 24 25 26 27 28 29
30
July August September
Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su
1 2 3 4 5 6 1 2 3 1 2 3 4 5 6 7
7 8 9 10 11 12 13 4 5 6 7 8 9 10 8 9 10 11 12 13 14
14 15 16 17 18 19 20 11 12 13 14 15 16 17 15 16 17 18 19 20 21
21 22 23 24 25 26 27 18 19 20 21 22 23 24 22 23 24 25 26 27 28
28 29 30 31 25 26 27 28 29 30 31 29 30
October November December
Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su
1 2 3 4 5 1 2 1 2 3 4 5 6 7
6 7 8 9 10 11 12 3 4 5 6 7 8 9 8 9 10 11 12 13 14
13 14 15 16 17 18 19 10 11 12 13 14 15 16 15 16 17 18 19 20 21
20 21 22 23 24 25 26 17 18 19 20 21 22 23 22 23 24 25 26 27 28
27 28 29 30 31 24 25 26 27 28 29 30 29 30 31
3. prmonth(year, month, w, l) :- This function also prints the month of specific year but there is no need of “print” operation to execute this.
4. setfirstweekday(num) :- This function sets the day start number of week.
# Python code to demonstrate the working of
# prmonth() and setfirstweekday()
# importing calendar module for calendar operations
import calendar
# using prmonth() to print calendar of 1997
print ("The 4th month of 1997 is : ")
calendar.prmonth(1997, 4, 2, 1)
# using setfirstweekday() to set first week day number
calendar.setfirstweekday(4)
print ("\r")
# using firstweekday() to check the changed day
print ("The new week day number is : ",end="")
print (calendar.firstweekday())
Output:
The 4th month of 1997 is :
April 1997
Mo Tu We Th Fr Sa Su
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
The new week day number is : 4
5. weekday(year, month, date) :- This function returns the week day number(0 is Monday) of the date specified in its arguments.
# Python code to demonstrate the working of
# weekday()
# importing calendar module for calendar operations
import calendar
# using weekday() to print day number of date
print ("The day number of 25 April 1997 is : ",end="")
print (calendar.weekday(1997,4,25))
Output:
The day number of 25 April 1997 is : 4
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Calendar Functions in Python | Set 2(monthrange(), prcal(), weekday()…)
|
https://www.geeksforgeeks.org/calendar-functions-in-python-set-2monthrange-prcal-weekday/?ref=lbp
|
Pandas
|
Calendar Functions in Python | Set 2(monthrange(), prcal(), weekday()…)
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position, Calendar Functions in Python | Set 2(monthrange(), prcal(), weekday()…)
|
GeeksforGeeks
|
[0.00215311744, 0.00577933807, -0.00634470815, 0.0348519199, -0.0269116126, 0.00621278817, 0.0219489206, 0.0282433741, -0.0173631422, 0.0155162662, -0.00353356265, 0.019297963, -0.00392304, -0.0198758971, -0.0205166508, 0.00976833794, 0.0132924775, 0.0293238591, 0.0302033238, 0.00326030049, 0.00698546087, 0.0173254497, -0.0315099545, 0.0185315739, 0.00722417235, 0.00329799182, 0.0362339355, -0.00885746349, 0.0160565078, 0.00940398779, 0.0263839345, 0.0023258694, 0.0280674808, 0.00247035292, -0.0479936339, -0.0211950932, 0.0173757058, 0.0135563165, -0.0123439124, 0.0108613865, -0.0244365484, -0.00558145856, 0.0455060042, 0.0145614194, -0.0233937558, 0.0296253897, -0.00571651896, 0.00555004925, 0.00868157111, -0.051084321, -0.00868157111, -0.0324145481, 0.0647285879, 0.0375405699, 0.00364663661, -0.000479779294, -0.0142850159, 0.00560344523, -0.036007788, -0.0408322811, 0.0255170334, -0.0163329113, -0.0125574963, -0.040706642, 0.0454557501, 0.0206171609, -0.00915899407, 0.0137447733, 0.0327160805, -0.025806, 0.0270372517, 0.0223635249, -0.0118099516, -0.0305299815, -0.0336457975, -0.0343996249, -0.00386964367, 0.0299017932, -0.0793025717, 0.00692892354, -0.00318177696, -0.0278915875, 0.00710481685, -0.0100384587, 0.0188582316, -0.00473968545, 0.0268864855, -0.037113402, 0.0246375687, 0.0408574082, 0.019348219, 0.0126391612, 0.00723045459, -0.00672790315, 0.00268236664, -0.00531761907, 0.0438978411, 0.0335704163, -0.0288213082, 0.0356811322, -0.000639967446, 0.0161444545, -0.0202276837, -0.0566375144, 0.0355554931, 0.00534902886, 0.0223132707, -0.0315602124, -0.0123439124, -0.00221750699, 0.00265409821, 0.000899095379, -0.00798428152, -0.0125951879, -0.030806385, -0.00822299253, -0.0128527451, -0.0214714967, 0.0165339317, 0.0155037027, 0.0553811342, -0.00875067152, 0.0216599535, 0.0310576595, -0.0345755182, 0.0279167164, 0.0501294769, 0.0167726446, 0.0173380133, -0.037113402, -0.0159308705, -0.000531604863, -0.0080471, -0.030781256, 0.000193855172, 0.0022756143, 0.000674125215, 0.0426917188, 0.00412091939, 0.00348016666, -0.019800514, -0.0342739858, 0.0452798568, -0.0136065716, 0.00491871918, -0.0400282, -0.00670905784, 0.010930487, -0.0149634602, -0.00156654615, -0.0247506425, -0.0488479696, 0.0058578616, 0.0225142911, 0.0181546602, -0.0294997524, -0.00843657739, 0.0106792115, -0.00826696586, -0.0612609833, -0.0188833587, -0.0140463039, 0.0171998125, -0.00624105707, 0.0287459251, 0.00791518, 0.00553748524, -0.0108299768, -0.0163706038, 0.0308566391, 0.0132673504, -0.0228912048, -0.0189964324, 0.0122810937, 0.0283941384, 0.00656457432, 0.0184184983, 0.00480564544, 0.00934745092, -0.00206517102, -0.00571337808, 0.00827324763, -0.00446328241, 0.014121687, -0.0124130128, 0.0187451579, 0.0339975841, -0.00618137885, -0.0269367415, -0.0106101111, 0.0277408231, 0.0023824065, 0.0184813179, 0.0298515372, -0.0230796617, -0.00496583339, -0.010823695, 0.0592005253, -0.0415609777, 0.0450537093, -0.0557329208, -0.0207302347, -0.0188456681, 0.022941459, 0.00881349, 0.00658970186, -0.0290223286, 0.0247129519, 0.00348958955, -0.00161287503, 0.0306556188, -0.0210443288, 0.00611227797, -0.00983115658, 0.00826068409, 0.0172375031, 0.00694148755, 0.0445762873, 0.0152147356, -0.010823695, -0.0269869957, 0.0454054959, 0.0287961792, -0.0210820194, -0.0323391668, -0.0358821526, 0.0305048544, 0.0156167764, -0.047013659, -0.0358570218, -0.0124130128, -0.0221373774, -0.0142473243, -0.028167991, 0.0349524319, 0.0339222029, 0.0140337404, 0.0205794685, -0.00842401292, 0.026610082, 0.0127019798, -0.0168605912, -0.015918307, -0.0159057435, -0.00959872641, -0.00254102424, -0.0212327857, 0.0557831749, -0.0114330379, 0.0268613584, 0.00478051789, 0.0175892897, -0.0083863223, 0.00719276303, -0.0152021721, -0.0321381465, 0.00960500818, -0.0222755782, 0.00498153828, 0.0207679253, -0.0140337404, 0.0274392925, -0.0307058748, 0.00147859962, -0.00517941779, -0.00408322783, 0.0123627577, -0.010955615, 0.00619080197, -0.0220619943, 0.0498279445, -0.0620650649, 0.0102206338, 0.0153529374, -0.0145362914, -0.0022285, -0.037666209, -0.0222253241, 0.00161130459, 0.0431440137, -0.0296505168, 0.00785864331, 0.0235947762, -0.000943853869, 0.0379174836, 0.028167991, -0.0313089341, -0.00663367519, -0.0136191361, -0.015126789, 0.028167991, -0.0005645848, -0.0173003227, 0.0125951879, 0.0192225818, 0.0308817681, -0.0214589331, 0.0239339974, -0.00827324763, -0.0132170953, -0.00879464485, 0.00508518936, -0.000816645566, 0.00907733, -0.0168228988, -0.036083173, 0.042741973, -0.00924065895, -0.00740006566, 0.0366108492, -0.0199889708, -0.020303065, -0.0576426163, -0.0341232233, 0.0279669706, -0.0166721344, 0.0226399284, -0.00401098607, -0.0194110367, -0.0296756439, 0.00799056329, 0.0188959222, 0.0061562513, -0.000860618835, -0.0101578152, -0.0234691389, -0.0287710521, 0.00426854379, 0.00197251327, -0.0287961792, -0.0319371261, -0.00467372546, 0.0207679253, 0.0012029818, -0.00466116192, -0.0366611071, -0.0341483504, 0.0122999391, 0.0267357212, 0.0103776809, -0.00741891097, 0.0283187572, 0.0301781949, -0.0141845057, -0.0330176093, -0.0357062593, 0.0120863551, -0.00495955162, 0.00987513, 0.00736865588, 0.00115351193, 0.0202779379, 0.0483454205, 0.0122245559, 0.00228346675, -0.00859990623, -0.0243360382, -0.0335955434, 0.00922809541, 0.0121114822, -0.016420858, 0.000913229655, 0.00714878971, -0.0129783833, 0.00746916607, -0.0290474556, 0.0574415959, 0.00385393901, 0.0269367415, 0.0106980577, -0.0123501942, 0.00843029562, -0.0259316377, -0.0156167764, 0.00532704219, 0.00854965113, 0.0356057473, 0.0125763426, 0.00253788312, -0.0293992423, -0.0679951683, -0.00700430665, 0.00131841144, -0.0114330379, 0.00464859791, -0.00608086865, -0.0336960517, -0.00265095732, -0.0248385891, 0.00364035484, -0.0186320841, -0.00277816551, 0.0229163319, -0.0272382721, 0.0035147171, -0.017212376, -0.0252531953, -0.00222378876, 0.00319119962, 0.019348219, -0.0349524319, -0.00241381582, 0.0103776809, -0.0110938167, -0.0402794741, -0.0197753869, -0.0152272992, 0.00270592375, 0.0574415959, 0.0307058748, 0.0207051076, 0.0299520474, -0.0322135277, -0.00386650278, 0.025077302, 0.0211574025, -0.0346760266, 0.0278664604, -0.048018761, 0.0011629347, 0.0348016657, -0.00844914094, -0.0258813836, 0.0216725171, -0.0192854, 0.0322637819, -0.032942228, 0.0203407574, -0.014360399, 0.0711612403, 0.00376599259, -0.00541498838, 0.0152021721, 0.0190718155, 0.0310576595, -0.0279418435, -0.00871298, 0.00546838436, 0.0325150602, -0.0579944, -0.0411338098, 0.0274141636, 0.0139709217, -0.0168982819, -0.0176898, 0.0179159474, -0.0716135353, 0.0680956766, -0.0126077514, 0.0238837432, -0.0409579165, -0.0114393206, 0.00279701105, 0.0152775543, 0.0547278188, -0.00137965987, 0.0177777465, -0.0281177368, 0.00771416, 0.0150137153, 0.0339975841, -0.00971180107, -0.00522024976, -0.0292736031, -0.00818530191, -0.0251778122, 0.0137070818, -0.0350780673, -0.0200392269, -0.00102708885, -0.0183808077, -0.0131668393, -0.0389728397, 0.0122057106, 0.037113402, -0.00810363702, -0.00541812927, 0.0229163319, 0.0110247154, -0.0171746854, 0.0226901844, -0.00835491251, 0.00801569, 0.0041680336, 0.00592068071, -0.00593952602, -0.0514612347, -0.0201774277, -0.00679700403, 0.00892028306, 0.0209815092, 0.0555821545, 0.0351032, -0.00821042899, -0.0140588684, 0.000914800097, 0.0248888452, 0.00067334, 0.0165339317, -0.00383195234, 0.0232932456, 0.0332186297, -0.0444506481, 0.0266854651, -0.00815389212, -0.0267105922, 0.0175264701, -0.0231927354, 0.013305041, -0.00653316453, 0.00996935833, 0.0233686268, -0.0220745578, 0.0337463096, -0.00864388, 0.00278444728, -0.0122999391, 0.00214997656, -0.00231330562, -0.00423399312, 0.0175139066, 0.00254730601, 0.00282370928, 0.00294306502, 0.0149760237, -0.0049626925, -0.0113199642, -0.000416175171, 0.0030859781, -0.00846170448, 0.0143227074, 0.0233183727, 0.014335271, 0.019348219, -0.0100887138, -0.0429178663, -0.0162449647, 0.0122182742, -0.0244742408, 0.0164334215, -0.0489233546, 0.0435963124, -0.0182928611, -0.0226273648, -0.00501922937, -0.0385205448, -0.00918412209, 0.00500352494, 0.00747544831, 0.0137699014, -0.00660226541, 0.00856849644, -0.0414102152, -0.007839798, -0.0211574025, -0.034500137, 0.0141342506, 0.0173003227, -0.0045166784, -0.00346132088, 0.00140635797, 0.0131542757, 0.0221122503, 0.0191974528, 0.00398899941, -0.0113953473, -0.0182551704, 0.0249265358, -0.00638239924, 0.00897682, 0.0280172266, -0.0182802975, 0.0197502598, 0.0152398627, -0.0259567667, 0.0140839955, -0.00359009975, 0.00453238282, 0.0257557463, -0.00329799182, -0.00163486169, 0.00362150907, 0.0139081022, -0.0215217527, 0.00277816551, 0.00629759394, -0.00938514248, 0.00370003283, -0.0247506425, 0.0136065716, -0.0105975466, 0.0365857221, -0.000438161776, -0.0203910116, 0.0275398027, 0.0192351453, 0.00289438036, 0.0119104618, 0.0254667792, -0.00572594209, -0.0159936901, -0.0131668393, -0.00356183108, -0.00504121603, -0.0315602124, -0.00985628366, 0.0103022987, 0.00434706733, -0.00563171366, -0.0335704163, 0.0176269803, 0.025806, -0.0138201565, -0.00275617884, -0.00203847303, -0.0382190123, -0.00211542612, -0.0107860034, -0.0228912048, 0.00555633102, -0.0107357483, 0.00638868148, -0.0104781911, 0.0183556806, -0.00626618462, 0.00866272487, -0.0139960488, -0.0440234803, -0.0153529374, -0.0258813836, -0.00587356649, -0.0506571531, 0.0134055512, 0.00944167934, 0.0141970692, 0.0122057106, 0.00303729344, -0.0250521749, -0.0221373774, 0.0097494917, 0.0230545327, -0.0112822726, 0.0147624398, 0.0906099677, -0.00118649181, 0.029801283, -0.00510089379, 0.0320878886, -0.0126580065, 0.0040047043, -0.025529597, -0.0137824649, 0.0146116745, 0.0239591245, 0.0212076586, -0.00419002026, 0.0112257358, -0.010321144, -0.0394000076, 0.0014307003, 0.00663995696, 0.00573222386, -0.0083863223, -0.00890771858, 0.00705456175, 0.00832350273, 0.0197502598, -0.00181075453, 0.0292233489, 0.00704199774, -0.0136819547, -0.00414918782, 0.00822927523, 0.0211322755, -0.0161318909, -0.00740634743, -0.0274895467, 0.0372641683, 0.0363093205, -0.0129783833, -0.0125700599, 0.0150011517, 0.0061059962, -0.0133929877, -0.0183933713, 0.0114204744, -0.015390628, -0.0125009594, -0.0170867387, -0.0139834853, -0.00947308913, 0.00895169191, 0.00859990623, -0.0035147171, 0.00200078171, 0.0173757058, -0.00868157111, 0.0321632735, 0.0143855261, 0.024285784, -0.0142598888, 0.00500980671, 6.89535518e-05, 0.0026305411, 0.0237078499, 0.0198130794, -0.010691775, -0.00472083967, 0.0158554874, 0.0120800724, -0.000135747701, -0.000343344494, -0.0422394238, 0.016207274, -0.00790261663, 0.000351196853, 0.0022583392, 0.0195869301, -0.00438161753, -0.0213081688, 0.0204161406, -0.0442998819, -0.0131417122, -0.00739378342, -0.026082404, 0.0201899912, -0.00226305053, -0.0288715623, -0.025316013, 0.00181703642, -0.0134809343, -0.0137699014, 0.0409327894, 0.00182331831, -0.00314879697, -0.0313089341, -0.0181672238, 0.00863131601, -0.0233058091, 0.0127522349, -0.00165056635, 0.0159936901, 0.0236450303, -0.031283807, 0.0178782567, -0.0116968779, 0.000831565063, -0.0133427326, -0.029248476, 0.0181169678, -0.013305041, 0.0371636562, 0.0354047269, 0.0165088046, 0.00380996568, 0.00652688276, 0.00464231614, -0.000990968, 0.0262080412, 0.0337965637, -0.00407694606, 0.0151770441, 0.010214352, -0.0182426069, -0.00608086865, 0.0324145481, -0.0184184983, 0.0265347, 0.0161193274, -0.0104970364, 0.0210192017, -0.0125951879, 0.0121805836, 0.0203156304, 0.00831093919, -0.0186697748, -0.0223635249, -0.00526736397, 0.0109933056, 0.0407820232, -0.018795412, -0.0116089312, 0.00738122, -0.0239339974, -0.00826068409, -0.0179033838, -0.0130035104, 0.0212830398, 0.0283438843, -0.0236450303, 0.0291479658, 0.00558459945, 0.0169485379, 0.00205574813, 0.00870041642, -0.028695669, -0.00694148755, 0.00348958955, -0.00734981056, -0.000198173977, 0.00277345418, 0.015918307, -0.0150262788, -0.0403297283, 0.0399276875, -0.0312586799, -0.0306556188, -0.0303540882, 0.00766390469, 0.0520642959, 0.0181672238, 0.0215845704, -0.0093788607, 0.0144232176, -0.0343996249, 0.00418059714, 0.0253285766, 0.0169611014, 0.00232743984, -0.0309571493, 0.0106980577, -0.0166846979, -0.00206360058, 0.00896425545, 0.00361836818, -0.00135610288, 0.0197125673, 0.0123564759, 0.0317863598, 0.0327412076, 0.0318868682, -0.0187828485, -0.0342488587, 0.0232932456, 0.0160062537, 0.0204538312, 0.0136317, 0.00160973414, 0.00682841334, 0.0477674864, 0.0401287079, -0.0194236021, 0.0309320223, -0.0187451579, 0.0353796, 0.0109681785, -0.0147875668, 0.0325401872, 0.0038131068, 0.0247632079, 0.0304043442, 0.00908989366, -0.00720532704, -0.00831093919, -0.0372139104, 0.00311110565, 0.00333882403, -0.0183179881, 0.0207051076, 0.00718648126, 0.00638239924, -0.0067530307, 0.0132799139, -0.0131794037, -0.00817273743, -0.0119544351, 0.0130663291, -0.00574792875, -0.00604317756, -0.0245370585, -0.00848055072, 0.00944796111, 0.0476167202, 0.0314848274, -0.000577148574, -0.0361083, 0.030781256, -0.0231173523, 0.0288213082, 0.001303492, -0.00110011583, -0.0271377619, -0.0134432428, -0.0134683708, -0.0120800724, 0.00289752148, 0.00733096479, -0.0491746292, -0.0203784481, -0.000280721928, 0.050632026, -0.00332626025, -0.0228660759, -0.0368872546, -0.011615213, 0.0174636524, -0.00611541932, 0.000549272692, -0.00267137331, 0.0160313807, -0.00772672379, 0.00870669819, 0.0128653087, -0.0304797255, -0.00470827613, -0.0187200289, 0.0154031925, 0.0180290211, 0.0147373118, 0.0038068248, 0.0161570199, -0.0023494265, -0.0719150677, -0.0156670325, 0.00322260917, 0.0141845057, -0.0327160805, 0.0258311275, 0.0464105979, -0.0159936901, 0.00714878971, -0.0275146738, 0.00498467917, 0.027112633, -0.0198633336, -0.011326246, -0.0140714319, -0.0273136534, -0.00690379599, -0.0237204134, -0.049124375, 0.00389163033, -0.00483077299, -0.00496583339, -0.0570395552, -0.000459755771, -0.0572908297, -0.00951706246, -0.0421389118, -0.0286202878, 0.0112508638, 0.0291730929, 0.0420132764, 0.0147624398, 0.00176364044, -0.0202025548, 0.00112367293, 0.0291479658, 0.0216222629, -0.0239214338, 0.0370631479, -0.00576363318, -0.00923437718, 0.00299803168, 0.0059081167, -0.0241601449, -0.0375405699, -0.0123250661, 0.000832350343, 0.0260321479, -0.0292233489, -0.0342488587, -0.00792774372, -0.00115743803, -0.0291730929, -0.016973665, -0.0267859753, -0.0309822783, -0.00419316115, -0.00464545703, 0.0181420967, -0.0136317, 0.0696535856, -0.0040047043, -0.00905848388, 0.0415609777, -0.019323092, -0.0102206338, -0.0100761503, -0.0305299815, 0.0244742408, 0.0082858121, -0.00619394286, 0.0145865465, 0.0204287041, 0.0112885544, -0.00314879697, -0.0268864855, 0.000994894188, 0.0210192017, 0.0198382065, -0.0240847636, 0.00316607207, -0.0436716937, -0.00312366942, -0.00276246085, 0.0373646766, 0.0267608482, -0.0161570199, 0.0114707295, -0.0285951588, 0.0224640351, -0.0161193274, 0.00658341963, 0.022175068, 0.0292233489, -0.00282842061, 0.0234063193, 0.0109367687, -0.0140463039, -0.00587042561, -0.0275146738, 0.0186069552, -0.0237078499, 0.0337714367, 0.00530819641, -0.00152257294, 0.0156167764, -0.0246501323, -0.0135186259, -0.0176898, -0.0139709217, -0.00970551837, -0.0212453492, 0.0138955386, -0.0147373118, -0.0141719421, -0.0113325277, 0.0284695216, 0.0110247154, 0.015126789, -0.0153026823, 0.0159559976, -0.00318020629, -0.0128778731, -0.0010922635, -0.01190418, -0.00944796111, 0.0176269803, -0.0207051076, -0.0111817624, -0.0170364827, -0.00135531754, -0.015126789, -0.00849311426, -0.00642951345, 0.00296505168, 0.0085056778, -0.0250019189, 0.0225394182, 0.00756967627, -0.000186100966, -0.0148378219, 0.0240722, 0.018506445, 0.0245998781, -0.00473654456, -0.0247255154, 0.00520768622, 0.0143980896, 0.0015045125, 0.00826696586, 0.0223258343, 0.00239182939, 0.0161695834, -0.012903, -0.00195523794, -0.0064515, -0.0119795622, 0.00154691515, -0.00819786545, -0.0199387167, 0.0202528108, 0.00861875154, -0.0070796893, -0.0155288298, -0.0126328794, -0.000418138254, 0.0142975794, -0.0409076624, 0.0137447733, -0.0332940109, 0.0146368016, 0.0331683755, -0.00477423565, 0.00618451973, 0.00999448542, 0.00379740191, -0.0172877591, -0.00433450332, 0.00406438252, 0.0134683708, -0.020592032, 0.00164742547, -0.00218138611, -0.00861875154, -0.0100258952, 0.060054861, -0.0212327857, -0.00645778188, -0.0171118658, 0.0265849549, -0.0109367687, 0.00122810935, 0.00321475673, 0.00371573749, 0.014335271, 0.00336709269, -0.00455436949, -0.00721160881, 0.027615184, -0.0014307003, -0.0303792153, 0.00352728087, 0.00594266737, -0.00591125758, -0.0022756143, -0.00391361676, -0.0252531953, 0.00445071841, 0.0035649722, 0.0133678606, 0.0251652487, -0.00594266737, -0.00590183493, -0.00795287173, -0.0124130128, 0.0208684355, -0.0276403129, 0.00713622617, -0.0153655009, 0.0132673504, 0.0110624069, -0.000542205584, -0.00474282634, -0.0177777465, 0.0245370585, 0.00912130345, 0.00299803168, -0.04598343, 0.0236701593, 0.0249767918, 0.0275398027, -0.00975577347, -0.00510403514, -0.00302158878, 0.00616253307, -0.0400282, -0.0151016619, -0.008914, 0.00682213157, 0.0108990781, -0.0100258952, -0.00288809859, -0.0101138419, -0.0186697748, 0.0119104618, 0.00814761, -0.0171621218, -0.00213741278, -0.0318617411, -0.0342488587, 0.0157298502, -0.00955475308, 0.0102457609, -0.0058076065, 0.0154911391, -0.0112257358, 0.011244582, 0.0211950932, 0.00863131601, -0.00861875154, 0.0105096009, 0.00698546087, 0.0230042785, 0.0217227731, -0.0200392269, -0.00873182621, 0.0213584229, 0.00745660253, 0.0217604637, -0.0168228988, -0.00824812055, -0.0177903101, -0.0127271079, 0.00527678709, -0.000834706, -0.0196120571, 0.0171998125, -0.00594266737, 0.0171872489, -0.0115147028, -0.0489233546, 0.025579853, 0.01459911, -3.22682972e-05, 0.0253411401, 0.0234063193, -0.0180164576, 0.00814132858, -0.00997564, -0.00744403852, -0.0166846979, -0.0106792115, -0.00700430665, -0.00468943035, -0.0127710802, 0.0414353423, -0.0067027756, -0.0526171029, -0.00506948447, 0.0207679253, -0.00108127017, 0.0114958575, 0.00806594547, 0.0137447733, 0.00149666, -0.0187451579, -0.00835491251, 0.00084805506, 0.0112697091, 0.00940398779, -0.0184938814, 0.0115335481, 0.0148126949, -0.00711109862, -0.00138437131, -0.0253662691, -0.031359192, 0.00223635253, -0.0115147028, -0.00174793566, 0.0140086133, -0.0074628843, 0.0165967513, -0.0211071484, 0.00273576262, -0.0152524272, -0.0152398627, -0.00791518, 0.0330176093, -0.0152398627, 0.0189210493, 0.0150262788, -0.0167475156, 0.0107483128, 0.00358695863, -0.0180667136, -0.00499724271, -0.00853708759, 0.0166093148, -0.00801569, -0.0181672238, 0.0177777465, -0.0109053599, -0.0140463039, -0.0104781911, -0.00759480381, 0.0093788607, 0.0111063803, 0.0128653087, 0.0184813179, -0.0246124417, -0.0131417122, 0.00882605463, -0.0329171, -0.0155288298, -0.0147247482, 0.0165590607, 0.00493442407, 0.0157549772, 0.00616567442, 0.00239025895, 0.00499410182, -0.0171746854, 0.0034016429, 0.0176395457, -0.00719904481, 0.0131165842, -0.0293992423, 0.01562934, -0.0254416503, 0.0245496221, -0.0139206666, 0.0106729297, 0.00376913347, 0.008914, 0.0180667136, -0.00110247161, -0.00300745433, 0.0215845704, 0.0071299444, 0.00239339983, 0.0124192946, -0.000110423833, -0.00107106206, -0.0013773042, -0.0290474556, -0.0195994936, -0.000289163203, 0.00384137523, -0.00713622617, -0.0425409526, -0.00138908275, -0.00760108605, 0.00769531401, 0.00154455949, -0.00217981543, 0.010164097, 0.0210317653, 0.00681585, -0.0294243693, -0.00504749781, 0.00112131727, -0.00441930909, 0.00328542804, -0.0188331045, -0.0175390337, 0.00569767365, 0.00912130345, -0.014121687, -0.0123878857, -0.00609971443, 0.00541498838, -0.0250521749, 0.0206297245, 0.0132296588, -0.00323831383, 0.0167600811, -0.00215311744, -0.0168605912, 0.00853080582, 0.015440884, -0.0115209846, -0.012645443, -0.0505566448, 0.00919668563, -0.00173537189, 0.0116529046, -0.0236199033, -0.0243234746, -0.0183179881, 4.56909293e-05, 0.00916527677, 0.0115963677, -0.00810363702, 0.0155790849, 0.000128680578, -0.00632586237, 0.00187514396, -0.0246501323, 0.0105221644, 0.0148378219, -0.0150011517, -0.00230388297, 0.0334447771, -0.0205669049, 0.0060211909, 0.0198758971, 0.00748801185, 0.0146870567, -0.0244114213, -0.00642951345, -0.030781256, 0.0108865136, -0.0249767918, 0.0133678606, -0.0116968779, 0.0173631422, -0.0162826572, 0.0028786757, -0.0146996211, -0.012827618, 0.00837375782, -0.00221750699, 0.00296034035, -0.01486295, -0.0104970364, 0.0475162081, -0.0136317, 0.024524495, -0.00941655226, -0.0210443288, 0.00886374526, 0.0163957309, 0.023494266, 0.00691636, 0.0224640351, 0.0164585505, -0.0130286384, -0.00371887838, 0.0126705701, 0.0553811342, 0.0192477088, -0.00731211901, -0.020906128, -0.00321318628, -0.0275900569, -0.00187514396, -0.0206674151, 0.0268362314, 0.00109697494, -0.00316764251, 0.0394502655, 0.00989397522, 0.00316921319, -0.0161444545, -0.00761364959, -0.0203658845, -0.00949821621, -0.00875067152, 0.00834863074, 0.0204035752, -0.00504749781, -0.00632272149, 0.00736865588, -0.00721789058, -1.82506062e-06, -0.000799370406, -0.00190027151, 0.0104216542, -0.035530366, -0.0059583718, -0.0264341906, -0.00367804617, -0.0285449047, 0.00126501545, 0.0184813179, 0.0179787669, 0.0113199642, 0.0179913305, -0.0321632735, 0.0275900569, -0.0132799139, 0.0100196134, 0.000691793044, 0.00504121603, -0.0169108454, 0.0173505787, -0.0217479, 0.00371573749, 0.0125260875, -0.00518884044, 0.0154283196, 0.0155539578, -0.000287592731, 0.0305551086, 0.00260384311, -0.0144232176, -0.0115838032, 0.0425158255, 0.00832350273, 0.0178405661, -0.0260070208, 0.022702748, 0.0029352128, 0.0363847, -0.0369626358, -0.00318805873, 0.00305613899, -0.0106792115, 0.0405810028, -0.00478994055, -0.0248260256, 0.0116214948, 0.00316293119, 0.0162575301, -0.00141342508, -0.00439104065, 0.000563799578, 0.013568881, 0.00924065895, -0.0152775543, -0.0121743008, -0.00432822155, -0.00194581517, -0.0390230939, -0.0150262788, -0.0188456681, -0.020642288, 0.0247632079, -0.0508581735, -0.0132045308, -0.00876323506, 0.0203156304, 0.0304294713, -0.000877108774, 0.0376913361, -0.0137196463, 0.0209563822, 0.00785864331, 0.00274675596, -0.0129909469, -0.00641695, -0.0299771745, -0.0141468141, 0.0119984085, 0.0118602067, 0.0150765339, 0.0045166784, 0.00311895809, -0.00588927092, 0.011722005, 0.0225142911, -0.0126956981, 0.0106980577, -0.013543753, -0.0270875059, 0.00721160881, -0.0290223286, 0.028167991, -0.00455436949, -0.0176018532, 0.00408951, 0.0141970692, 0.00563485455, 0.00209658057, 0.0110372789, 0.0122371204, -0.00242323871, 0.0112382993, -5.05005e-05, -0.00236827228, -0.00981859304, 0.00568196876, 0.0218232833, -0.0130035104, -0.00062661845, 0.0391738601, 0.00214997656, 0.0137699014, 0.0102017876, -0.0268111024, -0.0085559329, -0.00689123245, 0.00903335679, 0.0229540225, -0.0123690395, 4.67767632e-06, 0.00375342881, -0.00446014153, 0.00549979415, -0.00620964728, -0.0174008328, -0.00213270145, -0.00259284978, 0.00331369648, -0.00616253307, -0.00598349934, 0.00609029178, 0.0113702193, -0.00552178081, 0.00804081839, -0.00915899407, -0.0106478026, -0.00847426895, 0.00485904142, 0.00605888199, 0.00140086131, -0.00124852546, -0.0235947762, 0.00500038359, 0.00898938347, 0.0226273648, 0.0108676683, 0.00170396245, -0.0123753212, -0.00225205719, -0.0259316377, 0.00282685016, 0.00440988643, 0.0201523, -0.00609657355, -0.0115649579, 0.00594580825, -0.0148503864, -0.0105221644, 0.00409579184, 0.0093788607, -0.000899095379, 0.00581702916, -0.0117848245, 0.00604945933, 0.00422771135, 0.00885746349, 0.00353670353, 0.0153403729, 0.00783351623, 1.59869178e-05, -0.0053741564, 0.000976048526, 0.011747133, 0.0146996211, -0.00211699656, -0.0264090616, 6.81683159e-05, 0.00411149627, -0.0114518842, -0.000949350477, 0.0141342506, -0.0105284462, 0.0323642939, 0.0176772363, 0.008235557, -0.00410207361, 0.0149508966, -0.0184059348, -0.0315853395, -0.029248476, -0.00997564, 0.0156167764, 0.0202528108, -0.0272634, 0.0150388423, -0.0196874402, -0.0155790849, -0.00299332, 0.0363344476, -0.0219991766, 0.0317109749, -0.0125889061, 0.0199010242, -0.0176018532, 0.00819158368, 0.0141593786, 0.00887002796, -0.00826068409, -0.0136945182, -0.0139081022, -0.00715507194, 0.00239654072, 0.00626618462, 0.00495955162, -0.00865016133, 0.000726343424, 0.0187451579, -0.00907104835, -0.011853925, 0.013305041, -0.00604317756, 0.0057730563, -0.0123564759, -0.0161570199, 0.0104216542, -0.0155162662, 0.00669021206, 0.00146603584, -0.00711109862, -0.0103274258, -0.0158554874, 0.0329673551, 0.0053741564, 0.00321475673, 0.00402355, -0.00999448542, -0.00658341963, -0.00714250794, 0.0132673504, 0.00578562, 0.00371887838, -0.00487474585, -0.00414290605, -0.0062567615, 0.000141931436, -0.00055594719, 0.00601490866, -0.00460776594, -0.010848823, 0.00147702917, 0.0239968169, 0.00792146195, 0.00614054687, 0.0171244293, 0.0163706038, 0.0167223886, -0.0179662034, -0.00941027, 0.0216222629, -0.00844285917, -0.00814761, -0.0159434341, -0.0138704116, 0.020089481, -0.00201805681, 0.0164962411, -0.0192351453, -0.0115398308, -0.00489673251, 0.00246878248, -0.0187451579, 0.00127443823, -0.0304797255, 0.00300431345, -0.0106352381, -0.0202276837, -0.0340980962, -0.0216725171, 0.0129155638, -0.00755083095, -0.00249233958, -0.00124695501, -0.0247380789, -0.02011461, -0.00348644843, 0.0215343162, -0.0249265358, -0.0136945182, -0.0151770441, -0.0270623788, 0.0109493332, -0.0278162044, 0.00145661307, -0.0054746666, 0.00457007438, -0.0130286384, -0.0321381465, -0.00519512221, 0.00684725912, -0.00854336936, -0.00100117608, -0.00235413807, 0.0239716899, -0.0114770113, 0.00161444547, 0.00571023719, 0.00738750165, -0.0115523944, -0.00609657355, 0.00930975936, -0.00103729696, 0.00696033332, -0.00562857278, -0.0118476432, -0.019059252, -0.0184059348, -0.00627874816, 0.00905220211, -0.0100761503, -0.00986884814, -0.00210286235, 0.00893912837, -0.00927206874, 0.00152257294, -0.000577148574, -0.00124381401, 0.0117408512, 0.00610285532, 0.00207616435, 0.0116591863, 0.00772044202, -0.0150011517, -0.0118225152, -0.0220117401, -0.00761364959, 0.0216850806, -0.0222253241, -0.000796622073, -0.00510089379, 0.00372516038, -0.000811148959, 0.00316293119, 0.0258813836, 0.0108111314, 0.0131291486, 0.0109933056, 0.00820414722, 0.00160580792, -0.00179504987, -0.0258813836, -0.0106729297, -0.0187074654, 0.00939142425, 0.0365103409, 0.0236575939, -0.010164097, -0.0106729297, -0.00998820364, -0.0131291486, -0.00748801185, 0.0112382993, -0.0126768528, 0.00330427382, -0.0277408231, 0.00744403852, -0.00180918409, -0.00283470238, 0.00296505168, -0.00429367134, -0.0305802356, 0.00939770602, 0.00905848388, 0.00248291669, 0.00636355393, -0.00564741855, 0.0268111024, -0.0178405661, 0.0336206704, 0.00429995311, 0.0107797217, -0.00074126292, 0.00593324425, 0.000910873932, -0.0170993023, -0.0184184983, 0.00831093919, 0.0210443288, 0.00674674893, -0.0192225818, -0.012117764, 0.0031268103, -0.0122057106, -0.0191095062, 0.00809107348, 0.0161444545, 0.0138955386, 0.00674046716, 0.0130914571, -0.00959872641, 0.00230231229, 0.00971808285, 0.0141845057, -0.00811620057, -0.00623477483, 0.0110247154, -0.0179159474, -0.00360894529, -0.000987827079, -0.00785864331, 0.0136945182, 0.0102457609, -0.0141845057, -1.04657256e-05, 0.00113074, -0.025027046, -0.00682841334, 0.034977559, 0.00991910324, -0.00783351623, -0.0107922852, -0.0100887138, -0.00932232384, 0.00579190161, -0.0157801062, 0.00239811116, 0.0126705701, 0.0152901178, 0.0235068295, -0.0182300415, -0.0154785747, -0.00399214076, -0.0292233489, 0.0157675426, 0.0256426707, 0.00949193444, 0.0115335481, 0.00948565267, -0.0169987921, 0.0261326581, -0.00118413614, 0.000752648863, 0.00875067152, 0.015390628, 0.0069666151, 0.0215720069, 0.003919899, -0.00957988109, -0.00125951879, 0.00707340706, 0.0200015344, 0.000433842972, 0.0137447733, 0.00329485093, 0.0363344476, -0.0238209236, -0.0192225818, 0.0120863551, 0.00512602134, 0.0123564759, -0.0265598278, 0.00124224357, -0.0105661377, 0.000437376526, -0.00659598364, 0.00715507194, 0.000685118546, -0.0278413333, 0.00892028306, 0.00352728087, 0.0207302347, 0.00765134115, -0.0128401816, 0.0251024291, -0.016923409, 0.000499410206, 0.0115021393, 0.00481820898, 0.0184184983, -0.00152492861, -0.00185158686, -0.00111346482, -0.0260572769, 0.0127145434, 0.00222064788, -0.0281428639, 0.000865330221, 0.00695405109, 0.0105975466, -0.00042402753, 0.0384451635, -0.00194424472, 0.00338593824, 0.0141342506, 0.0124758324, -0.019348219, 0.00785236154, 0.0108174132, -0.00440988643, 0.00822299253, -0.0244114213, 0.0246501323, 0.00500038359, -0.0019238285, -0.00598035846, 0.00488102809, 0.00596779492, -0.0316607207, -0.0134934979, 0.00186886208, -0.0120486636, -0.0228409488, -0.00951706246, -0.02919822, -0.00365920039, 0.0280926079, 0.0128150536, -0.00257557468, 0.00349587132, -0.0193984732, -0.0116340583, -0.0189964324, 0.0191471986, -0.00780838821, 0.00334824692, -0.0238586143, 0.0250144824, 0.0125260875, 0.00648919167, 0.00117157237, 0.00649547344, 0.0126768528, -0.0281931181, 0.017501343, 0.0264844447, -0.0270372517, -0.0206297245, -0.0124444226, 0.0144357812, -0.00691007823, -0.0204915218, 0.0126140332, 0.00361208618, -0.00212170812, 0.00552178081, 0.00355240842, -0.00337023358, -0.00125402212, 0.00347702554, 0.0131794037, -0.00350529421, 0.0307058748, -0.00282685016, 0.0096992366, -0.0110812522, -0.00213741278, 0.0222127605, -0.00463917525, -0.00229288964, 0.0183431171, 0.00155712327, 0.0110309971, -0.0122559657, -0.00073341059, 0.023494266, -0.00139693508, -0.0172249395, -0.00827953, 0.0107043395, 0.0299771745, 0.026107531, 0.00691636, -0.0027875884, -0.00360894529, 0.0296253897, 0.0137950284, -0.0119167436, 0.0105033191, -0.00982487481, 0.00967410952, -0.00642637257, -0.0208935626, -0.0172375031, 0.00278444728, -0.00755083095, -0.000912444375, 0.00161444547, -0.00815389212, 0.0244114213, 0.00976205617, 0.00074990053, 0.00831093919, -0.00486532319, -0.0165339317, -0.00188456674, -0.00250333291, -0.0249265358, 0.00785864331, -0.0243862942, 0.00553434435, 0.0125826243, 0.000979189528, -0.0122622475, -0.00210757391, -0.00920924917, -0.0114079108, 0.0196748767, 0.000984686078, 0.0173631422, 0.00346132088, 0.0174887795, -0.00522024976, -0.00617823796, 0.000456222187, 0.0123187844, -0.00581388827, -0.008606188, 0.00733724656, -0.0185315739, -0.0208307449, -0.0285197776, -0.00654572854, 0.0273890365, 0.0195241123, 0.00316921319, -0.00373772415, -0.00923437718, -0.00357439485, -0.00601490866, -0.0389979668, 0.0147875668, 0.0138829751, 0.0260070208, 0.00612798287, -0.012274811, 0.0134558063, 0.0207553618, -0.00325401849, 0.0206799787, -0.0149383321, 0.00125794834, -0.00401098607, 0.000651746, 0.00473340368, -0.0107860034, 0.00598349934, -0.00668393029, -0.00724301813, -0.000390262372, -0.0109430505, -0.00512288045, -5.03532683e-05, 0.00814132858, 0.000744796474, -0.0137070818, -0.000213584237, -0.00897682, 0.0209689457, -0.00473654456, 0.00819786545, 0.00640752679, -0.00398899941, -0.0173003227, -0.0130914571, -0.00278601795, 0.00447584596, 0.00172751956, -0.0235193931, -0.0049626925, -0.00126501545, -0.00516371289, 0.00476167211, 0.0216850806, -0.0012697269, 0.0200392269, -0.00095249142, 0.0111000985, 0.00548094837, 0.012827618, 0.00397643587, 0.0113450922, -0.00723045459, 0.00031802064, 0.0208935626, -0.0170993023, -0.007299555, -0.00644521834, -0.000892813492, -0.00263682287, 0.0074628843, 0.00243423204, 0.0281177368, 0.00145896873, -0.00799684506, -0.00376913347, 0.00163015025, 0.000356693519, 0.00310168276, 0.00705456175, -0.0134432428, 0.010321144, 0.00377541548, 0.0143980896, -0.0243988577, -0.00954847131, -0.00773928734, 0.0134306792, -0.004764813, -0.0155162662, 0.00729327323, 0.00261797733, 0.00150686817, -0.0227530021, 0.0020840168, -0.00274361507, 0.0131794037, 0.0168103352, -0.0148126949, 0.0161570199, -0.0285951588, -0.0217981562, 0.00878208131, -0.0409579165, -0.00903335679, -0.0147247482, -0.00986884814, -0.0301530678, 0.016973665, -0.00679072225, -0.00677815825, 0.00749429362, 0.00556575367, -0.0103965262, -0.00210443279, 0.00939770602, 0.0171998125, -0.00979346503, 0.00448212773, -0.016182147, -0.00799056329, -0.022200197, 0.00435649, 0.00477423565, 0.00873810798, -0.00774556957, -0.0125951879, -0.0258311275, -0.0319873802, 0.0153152458, -0.00173694233, 0.00957359932, -0.015390628, -0.0043533491, -0.0220243037, 0.00565684121, 0.00162072736, -0.0189336147, 0.00713622617, 0.000583430461, 0.0122622475, 0.00364035484, 0.012274811, -0.0270623788, -0.0447773077, -0.00617195619, 0.0358067676, 0.00910873897, -0.0155916493, 0.00958616287, 0.00090851821, -0.0148001313, -0.00883861817, -0.0179662034, -0.0036560595, -0.00912758522, -0.0059709358, -0.00276403129, 0.0115900859, 0.0199512802, 0.0319119953, -0.00466116192, -0.00460776594, 0.00473968545, -0.020592032, 0.0132296588, -0.015390628, 0.0137699014, 0.00619080197, 0.00945424289, -0.0348016657, 0.00547152525, -0.00542755239, 0.00309540099, -0.0125449328, 0.00846798625, 0.020303065, -0.00732468255, -0.0322135277, 0.0152524272, -0.0102080703, -0.0209815092, -0.0144483447, -0.0167600811, 0.0268111024, -0.000639967446, -0.0208056178, -0.0212830398, 0.0122685293, 0.022200197, -0.0136442631, 0.00836119428, 0.00339222024, 0.018770285, -0.00186886208, -0.00683469558, 0.0218735375, -0.0205166508, 0.00753198517, -0.00505063869, -0.00317863584, 0.0122936573, -0.0155916493, -0.00722417235, 0.00835491251, -0.000429131556, -0.0136568267, 0.0164459851, 0.0232178625, -0.00701687, 0.00372516038, 0.0176395457, -0.0213709865, -0.0208307449, 0.0179536399, 0.00570081454, 3.46240049e-05, -0.0184184983, 0.0160439443, 0.017262632, -0.0119858449, 0.00150765339, -0.001725949, 0.013543753, -0.0248385891, 0.019323092, 0.0168228988, -0.000576363353, -0.0146870567, -1.87843216e-05, 0.00472083967, 0.0070294342, 0.000226540622, -0.00146132451, -0.00519198133, -0.0231550429, 0.0144483447, 0.0170364827, 0.0005645848, 0.00660226541, -0.00370003283, -0.000159795556, -0.00799056329, -0.00500038359, 0.0149383321, -0.0334699042, -0.00728070969, -0.0137447733, -0.0103022987, 0.00472712144, -0.0219112299, -0.00345818, -0.0222378876, -0.0088825915, 0.0191471986, 0.0096489815, -0.00120455225, -0.0134809343, -0.00531447819, 0.00859362446, -0.0141970692, -5.60462286e-05, 0.0060211909, 0.00341734779, 0.00995051209, -0.00826696586, 0.015679596, -0.0160188172, 0.0100698685, -0.026610082, -0.00965526327, 0.0181672238, 0.011640341, 0.021408679, 0.0152649907, -0.0163329113, -0.00535216974, -0.0146996211, 0.00444443664, -0.00101609563, 0.00648290943, 0.0178656932, 0.000497447094, -0.00937257893, 0.00311267609, -0.00973064639, 9.39216079e-06, -0.01985077, -0.0150388423, 0.0398774333, 0.0230042785, 0.023783233, 0.00419316115, 0.0152398627, -0.00720532704, 0.0112697091, -0.0123941675, 0.00916527677, 0.0185943916, -0.0453803688, 0.0203658845, 0.0202528108, -0.0158806164, 0.00248605758, 0.00824812055, -0.0068032858, 0.0124821141, -0.00795287173, 0.0174259599, -0.0147121847, -0.0118916165, -0.0232932456, -0.0128087718, -0.00414290605, 0.0106603662, 0.00426854379, 0.0254165232, 0.00317078363, 0.00429681223, -0.0220368672, -0.0205292143, -0.00202276837, 0.00382252946, -0.0197502598, 0.0139960488, -0.00854965113, -0.0247632079, -0.00528935064, 0.0183933713, -0.00725558214, 0.00851196, -0.00846170448, 0.0015013715, 0.00283784349, 0.0117596965, 0.016182147, -0.00726814568, -0.0185315739, -0.00255986978, 0.0164585505, -0.00441302732, 5.516284e-05, 0.00977462, -0.00616567442, 0.0390984789, -0.0097494917, 0.0067027756, -0.00636041258, 0.00535845151, -0.00209501013, -0.0036497775, -0.00163643213, 0.0118225152, -0.00255515845, 0.0131668393, -0.0158806164, -0.00306870276, 0.00604945933, 0.0178908203, -0.00694148755, -0.0197125673, -0.0270875059, 0.00408322783, -0.0119104618, -0.0184561908, -0.0121052, 0.00277659507, 0.0134683708, -0.00511973957, -0.00500038359, 0.0121303285, 0.00790889841, 0.00133411621, -0.00734352833, 0.0259818938, -0.0247129519, 0.00594894914, 0.0270623788, 0.0142347608, -0.00403611362, -0.00624105707, -0.00182488875, -0.00821671076, -0.0194487292, -0.00721789058, -0.00475224899, -0.010930487, 0.0127145434, -0.00627560727, 0.0201523, 0.00204789592, -0.0256426707, 0.0274392925, -0.0403799824, 0.00184059353, 0.0246878248, 0.0251903757, 0.0110561252, 0.000505692093, -0.0131040206, 0.00384451612, -0.0281428639, -0.0128401816, -0.0264341906, -0.00847426895, 0.00907104835, 0.0115900859, 0.0158429239, 0.0188833587, -0.00309068942, 0.0245621875, -0.000483705458, 0.0109618967, -0.0426917188, 0.00359324063, 0.0134558063, -0.00219552033, -0.0189713053, -0.000764427416, -0.012406731, -0.0224263445, 0.000394384842, 0.00951706246, -0.00717391726, 0.000104141945, -0.00767018646, -0.00312366942, -0.010189224, 0.00304828677, -0.010716903, 0.0342991166, -0.000170788859, -0.0149634602, 0.0136191361, 0.00398585852, -0.00837375782, 0.0146996211, -0.00870669819, -0.00740634743, -0.0140714319, -0.00433764467, -0.00775813311, -0.00441930909, 0.00506006181, -0.0118225152, 0.00107106206, -0.00908361189, 0.00250333291, -0.0191346351, 0.0109430505, 0.00484019564, -0.0398774333, 0.0256552361, 0.0279418435, -0.00272005796, -0.00600862689, 0.00459834281, 0.0239716899, -0.0263588075, 0.0105410097, -0.00397643587, 0.024788335, 0.0112068905, -0.0268613584, -0.0333191417, -0.00051079609, 0.0182174779, 0.0196246225, -0.0175516, -0.0247255154, -0.0160816368, -0.00266195065, 0.000761679083, 0.0288966894, -0.019297963, -0.0093788607, 0.00516057201, 0.00160345226, -0.00962385442, -0.00171495578, -0.0168480258, -0.0024499367, 0.00853080582, -0.00281585683, -0.0100698685, 0.000937572, -0.00331997848, -0.0196371861, -0.0127836447, -0.00318805873, -0.0092029674, -0.000665487663, -0.00052885653, -0.00137573376, -0.0163454749, -0.0129281282, 0.00840516761, -0.0080596637, -0.00548723, -0.0140337404, 0.0155916493, -0.0212704763, -0.00489673251, 0.000888887327, 0.0100133317, -0.00636669481, -0.00434078556, 0.00220965454, 0.0178782567, -0.0205040853, 0.000534353196, 0.00462032948, -0.0406312607, -0.00436277222, -0.02919822, 0.0042182887, 0.0263085514, -0.030806385, 0.0265849549, 0.0137573369, 0.0061217011, -0.0322386548, -0.00326030049, -0.0155790849, -0.011853925, -0.000929719594, -0.00533332396, 0.00039772212, -0.0154911391, -0.0165590607, 0.0113765011, 0.00792774372, 0.00657713786, 0.0160313807, 0.00301844766, 0.0218484104, -0.0166344419, -0.0223635249, 0.00706084352, 0.0192100164, 0.0144860363, 0.0238209236, 0.0179410763, 0.0115838032, 0.0104970364, 0.0101578152, 0.0244993679, -0.0111440718, -0.00714250794, 0.0149760237, 0.0343996249, 2.56735416e-06, 0.0182174779, 0.0305048544, 0.00152021716, 0.028218247, 0.0116780316, 0.00106478017, -0.0173254497, -0.00153670716, -0.00525794132, 0.0161570199, -0.000711031316, -0.0210317653, 0.0106980577, 0.0252657589, 0.0103713991, -0.000433450361, -0.00108362583, -0.00684725912, -0.00668393029, -0.0154283196, -0.0375908241, 0.00164742547, 0.0052485182, -0.000758538139, -0.00271063508, 0.0103902444, 0.00478051789, -0.0167977717, -0.00265566865, -0.0160439443, 0.0168103352, 0.00621592952, 0.000358852907, 0.0247506425, -0.0284192674, -0.0173757058, -0.00918412209, 0.020855872, -0.0101389689, -0.016182147, 0.0164585505, 0.0138578471, 0.0144232176, -0.0246501323, 0.0112131722, -0.0219991766, 0.00542127, -0.00333254226, 0.00520768622, -0.0279920977, -0.0286705419, -0.0110121518, 0.00765134115, 0.00613112375, -0.0100447405, 0.00494070584, -0.00186415063, -0.00928463228, -0.0281428639, -0.00415546959, 0.0139709217, 0.000320180028, 0.0123062208, -0.0118350796, 0.00699802442, 0.0151896076, -0.0083360672, 0.00852452405, -0.0134934979, 0.025529597, -0.0173882693, 0.00304043433, -0.00929091405, -0.00528620975, -0.00930975936, 0.0226022378, 0.00878208131, -0.0388220735, 0.0135186259, 0.0304043442, 0.012274811, 0.00732468255, 0.00268864864, -0.00817273743, -0.0137824649, 0.0166595709, 0.0211322755, 0.00709225284, 0.00360894529, 0.0185943916, -0.00772672379, -0.0161947105, 0.0175641626, -0.0171621218, -0.0107797217, -0.00241852738, 0.00790261663, -0.0146619296, 0.0109430505, -0.0175264701, -0.0144483447, 0.0145614194, 0.0151896076, -0.00669021206, 0.00944796111, -0.0128653087, 0.00729327323, -0.000796622073, -0.0123125026, -0.0166218784, -0.0021342719, -0.000832350343, -0.0159434341, 0.00396073097, -0.0080471, -0.00247035292, -0.00312523986, 0.00998192187, -0.00482135, -0.00314565608, 0.00463917525, 0.0016285798, 0.00503179338, 0.0318617411, -0.0253034495, 0.00821042899, 0.0160062537, -0.0203910116, -0.0147247482, -0.00348330755, -0.00288338703, 0.00532076, 0.026107531, 0.00217039278, -0.00522024976, 0.00229446, 0.00738122, -0.0207427982, 0.00507262535, 0.0405558757, -0.00733724656, 0.0102897342, 0.00518569956, -0.00631015748, 0.0198884606, 0.0243109111, -0.0138704116, -0.00562543189, 0.0114958575, -0.0138452835, -0.0111377891, -0.0160690732, 0.0156670325, 0.0100887138, -0.0386964381, -0.0242606569, -0.00112838438, -0.00273890374, 0.0224012174, 0.00410207361, -0.013807592, -0.0140839955, -0.00434706733, 0.00516685378, -0.0189336147, 0.0177777465, -0.0148126949, -0.00601805, 0.0240847636, 0.00791518, 0.00840516761, 0.0201774277, 0.00858734269, -0.00175735855, -0.00153906283, -0.00490301428, -0.0188456681, 0.000702001096, 0.0132547859, 0.00420886558, -0.00574792875, -0.00163015025, 0.0203407574, 0.0315350853, 0.0042182887, -0.0128653087, -0.0127522349, -0.0114016291, 0.000542205584, -0.0131542757, 0.0297259, 0.0230796617, 0.00858734269, -0.0321130157, -0.0317612328, 0.0334447771, -0.0216725171, -0.0119607169, 0.0118664885, -0.000246367854, -0.0185190085, 0.00761364959, -0.00868785288, 0.0345503911, -0.0157172866, -0.00352099887, -0.00184216397, -0.00374400592, 0.00581702916, -0.0112257358, -0.00475853123, 0.0165841877, -0.00996307656, 0.0168480258, 0.00558145856, -0.00254887645, 0.000126423023, 0.00595523091, -0.00641695, -0.00662739296, -0.0223132707, 0.00770159625, 0.0151016619, 0.0194361657, -0.00240753405, 0.00721160881, 0.0175641626, 0.0263336785, -0.00620964728, 0.0108362585, -0.00472398056, -0.00485590054, 0.0116340583, -0.0154031925, -0.00963641796, -0.0213584229, 0.00329485093, -0.0274644196, -0.0114393206, -0.0112131722, -0.00692264177, -0.00853708759, 0.00865016133, 0.0115775215, -0.00772672379, 0.00341734779, -0.0134558063, -0.010716903, 0.00632900326, 0.00842401292, 0.00566626387, 0.0193859097, 0.0202653743, 0.00882605463, -0.00327914604, -0.0190215595, -0.000638397, -0.00908361189, 3.49184702e-05, -0.010584983, -0.00407066429, -0.00338279735, -0.0131040206, -0.00313937408, 0.0392492451, 0.011722005, -0.012827618, -0.00236513116, -0.00425912067, 0.00440046331, 0.0206297245, -0.00829209387, 0.0591502674, 0.0165339317, 0.00990025699, 0.00771416, -0.012903, -0.0304294713, 0.0359072797, 0.0293992423, -0.00421200646, -0.00231016474, 0.00289595081, -0.00919668563, -0.0371636562, -0.000866900722, 0.0137824649, -0.0186572112, -0.00591125758, -0.000533568, 0.000194444103, -0.00821042899, -0.00701058842, -0.0174510889, 3.85256499e-05, -0.0182426069, 0.00954847131, -0.0177274905, 0.0016552778, -0.0105661377, -0.00352099887, -0.0209186915, 0.0129281282, 0.0132547859, 0.000817430846, -0.0183933713, 0.00346760289, 0.017765183, 0.00700430665, -0.00158068037, 0.0184813179, -0.00245778915, 0.00186572107, 0.0150137153, 0.0150262788, 0.00486532319, -0.00961757265, -0.0117031597, -0.00164114358, -0.0157172866, 0.00969295483, -0.0201271735, 0.00871298, -0.0117408512, 0.00356811308, 0.00247349381, -0.000500980648, -0.0131794037, 0.0106729297, -0.00218609744, 0.00347074377, 0.00265095732, 0.000634078169, 0.00102080696, 0.00940398779, 0.00518884044, -0.0139332302, -0.00449155085, -0.00579504296, 0.00553434435, 0.00560030434, 0.000895169214, 0.00995679479, -0.00838004053, -0.00303101144, -0.0129281282, 0.0120926369, -0.015968563, -0.0293741133, 0.0245496221, -0.0123187844, 0.00323203206, -0.0189587418, 0.00159717037, -0.0158052333, -0.0110938167, 0.0034016429, -0.0205040853, 0.00171024434, 0.00809107348, 0.00549037103, 0.0291479658, -0.00525480043, 0.0243109111, -0.0102646071, 0.0300525576, 0.0254290868, -0.0133678606, 0.00656457432, 0.00292579, 0.0103462711, 0.0204035752, -0.0116089312, 0.011351374, -0.000990968, 0.00628817128, -0.0110686887, 0.0213961154, -0.0177400559, 0.0213458594, 0.0051762769, -0.01190418, -0.0142096337, 0.00085590739, -0.0115398308, 0.015415756, 0.0102708889, 0.00496583339, 0.00906476565, 0.0174510889, -0.00194110372, 0.00499724271, -0.00146603584, 0.0196120571, -0.0257306173, 0.000420886587, -0.00868785288, -0.00766390469, -0.00995679479, 0.0188331045, 0.00337651535, 0.036535468, -0.00322260917, -0.0245119315, 0.00366548239, -0.000573615, 0.00785236154, -0.000801333459, 0.00363093195, 0.00740006566, -0.00792146195, -0.00175735855, 0.0200392269, 0.000142127741, 6.09048802e-05, -0.0166093148, -0.0162324011, 0.0102771707, 0.0284192674, -0.0104907546, 0.00699174264, 0.0187200289, 0.0026870782, 0.0170490481, -0.00346446177, -0.0215594433, 0.0408825353, 0.00506948447, 0.00957359932, -0.00254730601, 0.00907104835, 0.0123376306, 0.000727521314, -0.000692185655, 0.0131417122, -0.0338970758, 0.00716763549, -0.0101515325, 0.0188456681, -0.00343619334, 0.0165464953, -0.00846170448, 0.0146368016, 0.0258562565, -0.01486295, 0.00927206874, 0.000585393573, -0.0183054246, -0.0105975466, -0.016709825, -0.0109430505, -0.0304043442, -0.0295248795, 0.0310827885, 0.00196152, 0.0326909497, 0.00464545703, -0.0169987921, -0.0176646728, -0.00643893657, 0.0106101111, -0.0186823383, 0.00871926174, 0.00355240842, 0.0135563165, -0.0127396714, 0.0122434022, -0.012513523, 0.0221248139, -0.0245998781, -0.00278915884, -0.0140714319, 0.0320376344, 0.0122873755, -0.00834234897, 0.0152272992, -0.00538986083, 0.00807851, -0.0110372789, 0.0199261531, 0.0115147028, -0.00814132858, 0.00296662212]
|
03 May, 2023
|
Calendar in Python
03 May, 2023
Python has a built-in Python Calendar module to work with date-related tasks. Using the module, we can display a particular month as well as the whole calendar of a year. In this article, we will see how to print a calendar month and year using Python.
Calendar in Python Example
Input:
yy = 2023
mm = 4
Output:
Calendar of April 2023
Displaying a Calendar for a Month in Python
In the program below, we import the Python calendar module. The built-in function month() inside the module takes in the year and the month and displays the calendar for that month of the year.
Python3
# import module
import calendar
yy = 2023
mm = 4
# display the calendar
print(calendar.month(yy, mm))
Output:
Calendar of April 2023
OR, you can directly run from the command line (CMD in Windows or TERMINAL in Linux ) for displaying a month of a year. Just write the following command:
python -m calendar 2023 4
Output:
Calendar of April 2023
Displaying Calendar of a given Year in Python
In the program below, we import the calendar module. The built-in Python calendar() function inside the module takes in the year and displays the calendar for that year.
Python3
# import module
import calendar
yy = 2017
# display the calendar
print(calendar.calendar(yy))
Output:
Calendar of 2023
OR, you can directly run from the command line (CMD in Windows or TERMINAL in Linux ) for displaying a year:
python -m calendar 2023
Output:
Calendar of 2023
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Calendar in Python
|
https://www.geeksforgeeks.org/calendar-in-python/?ref=lbp
|
Pandas
|
Calendar in Python
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Calendar in Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00255500129, 0.000828307471, -0.000401803816, 0.0711356476, 0.0150267156, 0.0199988578, 0.0366707, 0.0357148722, -0.00937446486, -0.0243919902, -0.0124165704, 0.0131977759, 0.00899305288, -0.00378884631, -0.0255500115, 0.036854513, -0.0301637184, 0.0227560531, 0.0169935152, 0.0116445562, 0.0195393264, 0.00594635168, -0.0102567673, -0.00163938256, 0.0158538744, -0.0279395822, 0.0336929299, -0.021781845, -0.0034878524, -0.0011723825, 0.0152289104, 0.032240808, 0.0235280693, -0.0060198768, -0.018969506, -0.0278660562, -0.00589120761, 0.0107806344, 0.00379344146, 0.00789936539, 0.0337480716, 0.0417990834, 0.0481590144, -0.0171681382, -0.0128577221, -0.00367396302, 0.0094939433, 0.00407835189, 0.010247577, -0.0319834687, 0.00589120761, -0.00726061501, 0.0418358482, 0.0229766294, 0.0101189073, -0.0172692351, -0.00463668397, 0.0186110698, -0.0442621782, -0.00715951761, 0.0564673655, -0.00412430521, 0.012297092, -0.0160560682, 0.0406226814, 0.0316526033, -0.0509897359, 0.0342259891, 0.0413579345, 0.0218369886, 0.0251456238, 0.000264662056, 0.0119754197, -0.0470193736, 0.00272273063, -0.010247577, -0.00953989662, 0.0455488712, -0.0537469313, 0.00911712646, -0.00482968753, -0.0357884, -0.00395657541, -0.029005697, 0.00953070633, -0.000653110677, 0.0339502692, -0.0223149024, -0.00567063224, 0.0442989431, 0.0447033308, 0.0226090029, -0.0190797932, -0.0335458778, 0.0141444132, -0.0156884436, 0.0257889684, 0.0476811, -0.0214877445, 0.0115434583, -0.00732035423, -0.0069803, 0.00186455343, -0.0327003375, -0.00146016479, -0.0172876157, -2.23304123e-05, -0.0383801609, -0.0168372747, -0.04356369, -0.00845539942, -0.0224435721, 0.00160836405, -0.0363214575, -0.065069817, -0.00231949077, -0.0155046294, -0.000669768779, -0.00815670379, -0.00912631769, 0.0401080027, -0.00748578599, 0.034005411, 0.028380733, -0.0199253336, 0.0359722115, -0.002093171, -0.0200907644, 0.0382331125, -0.030641634, -0.0294284672, -0.0296122804, -0.00922741462, -0.0237302631, 0.00270205154, -0.0236383565, 0.0148888556, 0.0247228537, 0.0186570231, -0.0188776, 0.00367626082, 0.00679189153, -6.31139264e-05, -0.0239140764, -0.0492618941, -0.045328293, 0.0388580747, 0.0168464649, 0.00340743409, -0.00873111933, -0.0166075081, -0.0506956354, -0.000109210792, 0.0166258886, 0.00421850896, -0.0130139627, 0.0170027055, -0.00625423854, -0.0387845524, -0.0162674543, -0.00603366271, -0.0410270691, 0.0384169258, 0.00803262927, 0.00275030266, -0.0121959951, -0.00576713402, 0.014346607, 0.0195393264, 0.0232891124, -0.00999023858, -0.0468355604, -0.0273146164, 0.00707220659, 0.00604285346, 0.00746280933, 0.0275903363, 0.00260784756, 0.0057349666, 0.0323327146, -0.0400712416, -0.0226457659, 0.0258992575, 0.0387477875, 0.00206904556, 0.0211384986, 0.0309724975, 0.00142340222, -0.0205502976, -0.0230869167, 0.0148520935, 0.0175909083, 0.026781559, -0.015284054, -0.0168097019, 0.00295939, 0.0204216279, 0.0128301503, -0.0283255894, 0.0257154442, -0.0107714441, -0.0303291511, -0.0419461355, -0.00258027553, 0.00428054621, 0.0184088759, -0.00193118572, 0.0289505534, 0.0544454232, -0.0214693621, 0.0188592169, 0.0100270007, -0.031229835, -0.0407697298, 0.0155046294, 0.021156881, -0.00498133339, 0.0252742916, 0.0343914181, -0.015945781, -0.0510632619, 0.0576437674, 0.010210814, -0.0219105147, 0.0142271286, -0.0174162854, 0.0268367026, 0.0551806726, -0.0299982876, -0.00468033925, -0.0147234239, 0.00174967037, -0.014346607, -0.0192636065, 0.0426078625, 0.0252742916, 0.0245206598, 0.00956746843, 0.0258808751, 0.0388580747, 0.0364133641, -0.0455121063, -0.0149623808, -0.0256235376, -0.000359584257, 0.0342443697, 0.0138870748, 0.0267264154, -0.00834051613, 0.0460635461, 0.0102200052, -0.0125452401, -0.0315239355, 0.0220391825, -0.0487839803, -0.0272410922, -0.01959447, -0.0250904802, 0.0265426021, 0.0218737517, -0.00392900361, 0.0189143606, -0.0207341108, -0.0104681524, -0.0113412645, -0.0182158723, -0.0264139324, 0.03146879, -0.013096679, -0.00580389658, -0.00776610058, -0.0361560248, 0.0375897661, -0.00139008614, -0.0179125797, 0.0279579628, -0.0144936582, -0.00259865681, -0.0219840389, -0.00857028272, -0.00761445519, 0.0223516654, 0.0348325707, -0.01452123, 0.0351266712, 0.0575702414, -0.0138411215, -0.0114515526, -0.0202561971, -0.00491699856, 0.0240795072, -0.00572577631, -0.000375093485, 0.0140157444, 0.0104313903, 0.0158814471, -0.0269469917, 0.0204767715, -0.027443286, 0.0270021353, -0.026744796, -0.00505485851, -0.0380125344, -0.00467344653, -0.0133080641, -0.03751624, 0.044078365, -0.000159543968, -0.00433339225, 0.0131885856, -0.0069619189, -0.0313585028, -0.0263404083, 0.00154402945, 0.0423505232, 0.022370046, 0.034078937, 0.0233626366, -0.015734395, 0.00719628, 0.0103486739, 0.0339135043, 0.0048940219, 0.00900683831, 0.00418863958, -0.0214693621, -0.0238221698, -0.0331966355, 0.0424608104, -0.0137859778, -0.0205870606, -0.0187673103, -0.00832213555, 0.0202561971, 0.00286059035, -0.0406226814, -0.0392992273, -0.00573037146, 0.0392992273, 0.0276271, -0.00293411571, 0.0393359885, 0.0258808751, -0.00417944882, -0.0406226814, -0.0326451957, -0.00698949071, 0.0214326, -0.00430122484, 0.0231053, 0.000426503684, 0.0376081467, 0.0467252731, 0.010109717, 0.0150450971, -0.0188592169, -0.00962261204, -0.0236199759, -0.0210649744, 0.0186662134, -0.00705382507, -0.0176184792, 0.00974209048, 0.00186914881, -0.0327371024, -0.032240808, 0.0134918764, -0.0036142238, 0.00899305288, -0.00977885351, -0.0246493276, 0.00768798031, -0.035678111, 0.0188776, 0.00323970476, 0.000846114359, -0.0276271, 0.0282153, -0.000428514148, -0.0281050131, -0.0324613824, 0.0153575791, 0.0110839261, -0.010247577, 0.0133999707, -0.0131885856, -0.00958585, -0.00365328416, -0.0205870606, -0.0248699039, -0.00718249427, 0.0360457376, -0.00195875764, -0.0261749756, -0.0344098, -0.0512470752, 0.0282520633, 0.0046757441, 0.0185007825, -0.00275260024, -0.0158814471, -0.0220208019, 0.0234177802, -0.0306600146, -0.0321121365, -0.0194658, -0.00790855568, -0.0534895919, 0.0449606702, 0.039041888, -0.0123522356, 0.0498500951, -0.0143925603, -0.0189511236, 0.018932743, -0.00255959644, -0.0383801609, 0.0322775692, 0.000338330865, 0.0214693621, 0.0450341925, 0.0107898256, -0.0144109419, 0.0227928162, 0.00799127202, 0.00367396302, -0.0102935303, 0.0054224846, -0.025844112, 0.0339318849, 0.0035498892, 0.00777069619, 0.00989833195, 0.0240795072, 0.0390051268, 0.00425756956, -0.029667424, 0.0097512817, 0.049188368, -0.0540042706, -0.0357332528, 0.0175173823, 0.0087816678, 0.00462749321, -0.0512470752, 0.0348877124, -0.0321856625, 0.025844112, 0.00188178592, -0.0111298794, -0.00716870837, -0.00825320557, 0.0169199891, 0.00128669129, 0.0310644023, 0.0309724975, -0.0154494857, 0.011322883, 0.0132621108, 0.0285645463, 0.048011966, -0.0360273533, -0.00786260236, -0.014944, -0.0151186222, -0.0381963477, 0.0285829268, -0.038453687, -0.00441381056, 0.0207157284, 0.000258917891, -0.000576713413, -0.0449606702, -0.00675053382, 0.0484163538, -0.00672755716, -0.0323878564, 0.0202194341, 0.0163409784, -0.0310460217, 0.0409167819, -0.00765121775, 0.0100361919, 0.0121684233, 0.0139789814, -0.000749612518, -0.0526808165, -0.049188368, -0.00721466169, -0.0256051552, 0.00788557902, 0.0251272414, 0.0581584461, -0.0199253336, 0.0094939433, 0.0337296911, -0.0229766294, 0.0179769155, 0.0263771713, -0.0113964081, 0.00255040592, 0.0263955519, -0.0179861058, -0.00462749321, -0.0097512817, -0.00492159417, 0.014346607, -0.0105416775, -0.0178390555, -0.0159365907, -0.0016968241, 0.0254213437, 0.00965937506, 0.011635365, 0.0123154735, -0.0121776136, 0.01875812, -0.0149991438, -0.00953070633, -0.0319650881, -0.0170210879, -0.0272778552, -0.0188776, -0.016671842, -0.0145120388, 0.00780745875, 0.00862542633, -0.0369648, 0.0139146466, 0.00877707265, 0.0432695895, 0.0260279253, 0.0124809053, 0.00868057087, 0.0126647186, -0.0476443395, -0.0152381007, -0.0339318849, 0.00762824109, -0.0158354938, -0.046762038, 0.0218737517, 0.0185467359, -0.0113320732, 0.0101556703, -0.0374978594, -0.00234016962, 5.50362092e-05, 0.0147418054, -0.0154770575, -0.0139238378, -0.0200907644, -0.0395198, 0.0135102579, -0.0217634626, -0.00259176386, 0.000979378819, -0.0107806344, 0.000639324717, 0.0100453822, -0.00300534326, -0.00549600972, -0.0292630345, 0.0145396115, 0.0055649397, 0.0275351927, -0.0196496136, 0.0140249347, -0.00124188687, 0.0438945517, -0.0109828291, -0.00740307, 0.0310276411, 0.019484181, -0.0537469313, -0.004377048, 0.0139881717, 0.000408984, 0.015320817, 0.00171980076, -0.0140892696, 0.0628640577, 0.00588201731, -0.0153575791, 0.00227583526, -0.00598771, -0.0146958521, -0.0255500115, -0.046762038, 0.0166810323, -0.0104497708, 0.0297593307, -0.0161295943, -0.000957551063, -0.002440118, 0.0135378297, -0.00859785452, -0.00998104829, 0.0335458778, -0.00823022891, -0.0213406943, 0.00702625327, 0.00317996554, -0.00170141947, 0.00103911804, -0.0051651462, 0.0342995115, 0.0104405805, -0.0165064111, -0.0185099728, -0.018133156, -0.004533289, -0.0244838968, -0.0136297364, 0.00204147352, -0.0221310891, -0.0207157284, -0.0146223269, -0.0150910504, -0.0182158723, -0.0199253336, -0.000612901582, -0.0132529195, 0.00260784756, -0.00260325219, 0.0262485016, 0.00691596558, -0.0319650881, 0.00219197036, -0.0397403799, -0.0185559262, -0.0284358766, -0.00565684633, 0.00951232482, 0.0102935303, -0.0339135043, 0.015146194, -0.0275351927, -0.0198518075, 0.0162215009, 0.0286932141, -0.0303842947, 0.00258027553, 0.0710253567, 0.00889195595, 0.0532322563, 0.0188224558, 0.0254213437, -0.00414038869, -0.00910334103, -0.0137308342, -0.0403285809, 0.00673674792, 0.00550979562, -0.015909018, 0.0101464801, -0.0173887126, -0.0057349666, 0.00672296202, -0.0104497708, -0.00828996766, 0.00234706281, -0.00294330623, -0.009066578, 0.00672296202, -0.00305818929, 0.0430857763, -0.0121316602, 0.0319467075, 0.0247044712, -0.00692515634, 0.00593716092, -0.000967890548, 0.0360641181, -0.00400942191, 0.0135102579, 0.00945718, 0.00777988695, 0.0126555273, -0.00588661246, -0.000493135885, 0.0126830991, -0.0442989431, -0.00116893603, -0.00845999457, -0.0137400245, 0.00745821372, -0.0166442711, 0.00355448457, 0.0260646883, 0.00598311424, 0.0087816678, 0.00468723243, -0.0195760876, -0.0229398664, 0.013547021, 0.0251823869, 0.00386466901, -0.00284680445, 0.00275260024, -0.003230514, 0.0287115965, -0.0204216279, 0.0237302631, -0.0222781394, 0.0151737658, -0.00660807872, -0.00657131616, 0.00893331319, 0.00942041818, -0.00583146838, 0.0100453822, -0.00151071337, -0.0271491855, -0.00408984, -0.00478373421, 0.00916308, 0.0307703018, 0.0148153305, -0.0227009095, -0.0136205461, -0.0278660562, -0.0407329686, 0.0238037873, -0.0310276411, 0.0114239799, 0.00528462464, -0.0293917041, -0.022406809, 0.00491699856, -0.00122810085, 0.00984318834, 0.0354023911, 0.00352461496, -0.029667424, -0.0093514882, -0.0203113407, 0.0164236948, 0.00618071342, -0.00562467892, 0.00431271316, -0.0243368465, 0.0109552573, -0.0188224558, 0.0103578642, -0.0227744356, 0.0024424158, -0.0463944115, 0.0122235669, -0.020145908, -0.00444368, 0.0278660562, 0.051724989, 0.020145908, 0.0132713011, -0.0126922904, 0.00143144408, 0.0043150112, 0.0179125797, 0.0456591584, -0.0163134076, -0.00485725934, 0.0117732249, 0.0024263321, -0.0320386104, 0.0219472758, -0.0022528586, 0.0374611, 0.00465736259, 0.00331323, 0.0112125948, -0.0259544011, 0.0317812748, 0.049114842, 0.0245758034, -0.0608421154, -0.032479763, -0.0103211021, 0.0197047573, 0.0119938, -0.0190614127, -0.0374243334, 0.0190246496, -0.00849216245, 0.0152289104, -0.0335826427, 0.0174806193, -0.00380952517, 0.0177195761, 0.00899764802, 0.0345384702, -0.0190797932, 0.0269469917, 0.00290194829, 0.00365558174, -0.0247963779, -0.0273329988, -0.0349428579, 0.00367396302, -0.0267264154, 0.00972371, 0.0212855488, 0.0164420754, -0.018169919, 0.0354207717, -0.0207157284, -0.0134826861, -0.0104130087, 0.0101648606, -0.0060060909, -0.0191533193, -0.00239646249, -0.0314504094, 0.0153667694, 0.00134413282, -0.0123889986, 0.0236383565, 0.00538112642, 0.0111206891, -0.026230121, 0.0220024213, 0.0109552573, -0.00748119038, 0.0543718971, -0.00777988695, -0.00550060533, 0.0198150445, 0.0231972057, 0.0168924183, 0.000606583, 0.0159733538, 0.0183261596, -0.00422999728, 0.0411741212, 0.011047163, 0.0176368617, 0.0260279253, 0.00157849444, 0.00864380784, 0.0364133641, 0.016120404, -0.0197047573, 0.00178298645, -0.0108357789, 0.0318731815, 0.00887357444, -0.0247412343, -0.00848297123, 0.0154127227, -0.00386926439, 0.0297225676, 0.0427549109, -0.00196220423, 0.00622666674, -0.011672128, -0.000324544904, 0.0107898256, -0.0158538744, 0.00940663181, 0.017158946, -0.00445287069, 0.00436555967, 0.0019173997, -0.00495376112, 0.00143029517, 0.0243184641, 0.0243919902, -0.00374289299, 0.0029318179, -0.00149348087, 0.000570107601, 0.0533057824, 0.0349796191, 0.0258992575, -0.0120765166, -0.00545924716, -0.00987995, 0.0153759606, 0.0107530626, 0.00252053631, 0.0336561687, -0.021708319, 0.00950313359, -0.0117272716, -0.0161847379, 0.0100821452, -0.014484467, -0.013859503, -0.0529013909, -0.0152748637, 0.0313952677, 0.011534268, -0.0130782975, -0.0539307445, 0.0094663715, -0.0109552573, 0.0101372888, -0.0101372888, -0.00057240529, 0.00647481438, 0.0150359068, 0.00440691737, -0.0001605492, -0.00554655818, -0.00979723502, -0.00901603, 0.0359722115, 0.021120118, 0.00224022148, -0.00434717815, 0.0176644325, -0.0131702041, -0.0403285809, 0.0152564822, 0.00299385493, -0.0225538593, -0.0162766445, 0.0253294371, 0.0204032473, -0.00427824864, 0.00815670379, 0.0107806344, 0.0152932443, 0.00358665176, 0.0147877587, -0.00513757439, -0.0241530333, -0.0320018493, -0.00707220659, -0.0104773426, -0.0396668538, 0.00986157, 1.25563693e-05, -0.00118444522, -0.0324613824, -0.0115066962, -0.0660624057, 0.005992305, -0.0366523191, -0.00992590375, 0.0035016383, 0.00129588193, 0.0118191782, 0.0309357345, -0.0109276846, -0.0558056384, -0.00202079467, 0.0176460519, 0.00446206145, 0.00315698888, 0.0392257, -0.0064196703, -0.00887357444, 0.0388580747, -0.0128301503, -0.00421161624, -0.0200907644, -0.0190614127, -0.0145947551, -0.00138549076, -0.0241897963, 0.0191717, -0.0148245217, -0.00301683135, 0.00525245769, 0.00970532838, -0.0323878564, -0.0270940419, -0.0208811611, -0.0225538593, 0.0139422184, -0.0320569947, 0.0499236211, -0.00625883369, 0.00569820404, 0.0329944417, -0.00431271316, 0.0132437292, -0.00743064191, -0.004377048, 0.012958819, -0.0238037873, -0.00363260508, 0.0105416775, 0.0305497274, 0.00457694475, -0.000852433, -0.0146315172, 0.0266712718, 0.0355678238, -0.00413579354, -0.0139330281, -0.00213452894, -0.0500339083, -0.00600149576, -0.000449193118, 0.0303842947, -0.00670917565, -0.0142179383, 0.0150818592, -0.0202929601, -0.0154035324, -0.0380493, 0.0225538593, 0.0309541151, 0.0339686498, 0.0150450971, 0.0327738635, 0.0202929601, -0.00655753026, 0.0107071092, -0.00635533594, 0.00465506501, -0.0266161282, 0.025531631, 0.0355862044, 0.00856109243, 0.00892871805, 0.00780745875, -0.00128784007, -0.00782584, -0.000169596242, 0.00831753947, -0.0251823869, -0.00153483881, -0.0368728936, 0.00670917565, -0.0037704648, 0.0264139324, 0.00768798031, 0.0287667401, -0.0220759455, 0.0148980469, 0.0100545734, 0.00635074032, -0.00492618931, -0.0154494857, -0.0147785684, 0.0110287825, 0.000623241067, -0.0387845524, -0.00693894224, -0.0112125948, -0.00188063714, 0.0146407085, -0.00326497899, -0.0135654025, -0.000423344405, -0.0144017516, 0.0103302924, -0.00711356429, -0.0233258735, 0.0196128506, 0.00879085809, 0.00758688292, 0.0141260317, 0.0106979189, -0.0116445562, -0.00162559655, 0.00904819649, -0.0145855648, 0.000473031367, -0.00241484377, 0.0302923881, -0.00769717107, 0.00687920302, 0.013859503, 0.00593256578, -0.0248331409, 0.0129128657, -0.0399609543, -0.0272410922, 0.0110747358, -0.0156976338, -0.0172232818, 0.0237302631, -0.00618990418, -0.022719292, 0.0097512817, -0.0259360187, -0.00228387699, 0.00831294432, -0.00805101078, 0.000801884395, -0.0143282264, -0.017195709, -0.0127658155, 0.015320817, -0.0238037873, -0.00742145116, -0.00550060533, -0.00347176869, -0.0300350506, -0.000379114383, 0.0199988578, 0.0181791093, 0.00790396053, 0.0173887126, -0.0244471338, -0.000238095323, -0.0279579628, -0.0126647186, 0.00560170226, -0.0104773426, 0.00670917565, 0.0353472456, -0.00709977839, 0.0173795223, 0.00271813525, -0.0155597739, 0.00357746123, 0.0110839261, -0.0150634786, 0.000439715252, 0.00654374389, -0.00611637859, 0.0109552573, -0.0400712416, -0.0250720978, -0.0143098449, 0.0126647186, -0.011497505, 0.00917227, -0.00208398025, 0.0182158723, -0.00204147352, -0.012021373, 0.027130805, -0.00326497899, 0.00913550798, -0.016046878, 0.0166442711, 0.00247917837, 0.00392900361, -0.00583146838, -0.0275168121, 0.00330633693, -0.00301912916, 0.00966856536, -0.0256786812, 0.0368912779, 0.0240427461, 0.0082394192, -0.00107185973, -0.00268596807, -0.0137767866, -0.0213039313, -0.0302188639, 0.00828996766, 0.00336607615, 0.0234177802, -0.0115894116, -0.0107530626, -0.0156516805, -0.010523296, -0.0221862327, -0.00412660278, 0.0199253336, 0.00491240341, 0.0265242215, -0.0169107988, -0.0338032171, 0.0377919599, 0.0321305171, 0.004377048, -0.0226457659, 0.0076604085, 0.0166258886, -0.0141536035, 0.00388305029, 3.83781517e-05, -0.00192314386, 0.0111482609, -0.0111114979, 0.0297960937, 0.0145396115, -0.00616233191, 0.00465506501, 0.0240427461, 0.0172508527, 0.0317996554, -0.0218553692, -0.00939284638, -0.009066578, -0.0173979048, -0.0156700611, 0.0155873457, -0.0281233937, -0.0051513603, 0.0102935303, 0.0238589328, -0.0115250777, -0.0219656583, 0.00511919288, 0.0221678521, -0.0022160958, 0.00568901328, 0.000773163571, 0.00655753026, 0.0135562113, 0.0139697911, -0.0176920053, 0.014796949, -0.0155230109, -0.0108633507, -0.00456086081, -0.0306232516, 0.00891952775, -0.00434717815, -0.0358803049, -0.0424975753, 0.00296398532, -0.0145488018, 0.0115618398, 0.00880004931, 0.0219840389, 0.0262668822, 0.0135194492, -0.00338675524, -0.00959504, 0.0173611417, 0.00905738771, 0.00510540698, -0.00393589679, -0.00310644042, -0.00811075047, -0.0169291813, -7.20532771e-05, -0.0104405805, -0.00749038113, -0.00151990401, 0.00487104524, 0.0209914483, 0.011947847, 0.00784422178, -0.0156241078, -0.0330128223, -0.0051513603, 0.0179033894, 0.0214326, 0.0226825289, -0.0226825289, 0.0300901942, 0.00580389658, 0.0160009246, 0.0242817029, -0.0327003375, -0.0235648304, -0.00304210582, -0.010247577, 0.0115526496, 0.00098684628, -0.0157895405, 0.0224619526, -0.00854271092, 0.00468953, -0.00722385244, -0.00855649728, 0.013372398, -0.000195301356, 0.00549141457, 0.0165431742, -0.0330863483, -0.00786719751, -0.0180504397, -0.0144660864, -0.0304210577, -0.0166994147, 0.0182802062, -0.00364409341, 0.0242265575, -0.00995347556, 0.00542707974, -0.000580159889, -0.00463668397, 0.0191349369, 0.0297777113, -0.0101189073, 0.0242633205, -0.0236567371, 0.00404618448, -0.00234361622, 0.0271124225, 0.00266758678, 0.0128025776, 0.00678270124, 0.00178528414, 0.0137675963, 0.0269837528, -0.0180504397, 0.0289137904, 0.00771095697, 0.00567982299, -0.00380722759, -0.0196312331, -0.00256419182, -0.0332701579, -0.0151553852, -0.00819806103, 0.014171985, -0.0222413782, 0.00487104524, -0.0240243636, 0.011635365, -0.0141995568, 0.0179493427, -0.00241714134, -0.0228295792, 0.024005983, 0.0229766294, 0.00155322021, -0.00936067849, 0.00255500129, 0.00891952775, -0.000238956942, -0.0112401675, -0.0350715257, -0.0334355906, 0.0067045805, -0.010523296, -0.01875812, 0.00537193613, 0.0140892696, 0.0205686782, -0.0465782247, -0.0160101149, 0.0165891256, 0.0123062832, 0.00618071342, -0.012747434, 0.0115434583, 0.00421850896, 0.00783043541, -0.000327129761, 0.00276408857, -0.0183904935, 0.0072330432, -0.0104038175, 0.00612556934, -0.00837268401, -0.000421908364, 0.000975932344, -5.90571181e-05, 0.0110287825, -0.000447182654, 0.00215405901, -0.0131977759, -0.0151553852, -0.0111023076, -0.0371669978, -0.00279625575, -0.0139514096, 0.0174162854, 3.6327308e-06, 0.0243184641, 0.0264323149, -0.0208260175, 0.00961342175, 0.0119938, 0.0335274972, -0.00347636407, -0.00627262, -0.00807398744, -0.000514389307, -0.0114239799, -0.0305313449, 0.00551439123, -0.0349980034, 0.00405997038, 0.0283072069, -0.0208443981, 0.0100821452, -0.012333855, 0.029005697, -0.00743064191, -0.00277787447, -0.00505026337, -0.0103578642, 0.00402780296, -0.0062634293, 0.0142638916, -0.0114515526, 0.00867138, 0.0100821452, 0.0103211021, 0.00990752224, 0.00821184739, 0.0537101701, 0.0307151582, -0.0107622528, -0.0381228253, 0.00286518573, 0.0332333967, -0.00161295943, 0.00403239857, 0.00859785452, 0.00102073676, -0.0192636065, 0.00959504, -0.0249985736, -0.000769142702, -0.0274800491, -0.0137675963, 0.00259635923, -0.0115618398, -0.0193555132, -0.0134367328, 0.0220024213, -0.0163409784, 0.00822103769, -0.00273421896, -0.0164512675, 0.00621747598, -0.0224987157, 0.0112677393, 0.00837268401, -0.0146682803, 0.0244471338, -0.000116319185, 0.047350239, -0.00538112642, -0.00823022891, -0.0298696179, -0.00784422178, -0.0016968241, -0.0326819569, 0.00289505534, 0.00904819649, 0.00944799, -0.0195025634, 0.0105692493, -0.0469090864, 0.0111942142, -0.00757769262, -0.0254581049, 0.0131885856, 0.00518352771, -0.0122603299, 0.0354759172, -0.00641047955, 0.0192268435, 0.0106152026, 0.00719628, 0.0292446539, 0.0131058693, -0.0232707299, 0.0260279253, 0.00715032732, -0.0190430302, 0.00456086081, 0.0185283534, -0.00284220907, -0.00285139983, -0.0138870748, 0.0363398381, 0.0112401675, 0.0313768871, -0.0153943421, 0.00414038869, -0.0158814471, 0.011947847, 0.0100637637, 0.00102533214, -0.0242633205, -0.00310644042, 0.00902522, -0.0126922904, -0.000552587968, -0.00808317866, 0.0292997975, 0.0319650881, 0.0200723838, -0.0110655446, 0.00272043282, 0.0200907644, 0.00952151511, -0.0411741212, -0.0184272565, -0.00805560593, -0.00242403452, 0.0255132485, -0.00190246489, 8.03464e-05, -0.00535815, -0.0187305491, 0.017370332, 0.0316526033, 0.0421667099, -0.029888, 0.0283072069, -0.00432879711, -0.00692515634, -0.00110115495, 0.00439542904, -0.0182618257, -0.017995296, 0.0146682803, 1.64606e-05, 0.017958533, -0.00265839603, 0.000342926185, -0.0120581351, 0.0130047724, 0.0105876308, -0.0160101149, -0.00269056321, -0.00945718, -0.00636912184, 0.00232408615, -0.0133172544, 0.0264139324, 0.00809236895, -0.0155505827, -0.00437934557, 0.0305129644, -0.0022528586, 0.00840025581, 0.00783503056, 0.0165247917, 0.00440002466, 0.0272043291, 0.0232891124, -0.0118559413, -0.0166994147, 0.0180596299, 0.00372451171, 0.00389224105, 0.00803722534, 0.0305313449, 0.0147234239, 0.00354299624, 0.0291711297, -0.00750416704, -0.00822103769, -0.00960423145, 0.00566144148, 0.00437475042, 0.00794991385, -0.0195760876, 0.0171038024, 0.000758228765, 0.000337469246, -0.00408524461, -0.0103670554, 0.0228111986, -0.00167384744, 0.0152197191, 0.00556953484, 0.0112034045, 0.0057487525, -0.0111482609, -0.0206422042, -0.0104589621, 0.0156608708, 0.0202378146, -0.00365328416, -0.00300764083, -0.0168280844, -0.00799127202, 0.00234361622, 0.000154087029, -0.00571199, 0.0035016383, 0.016046878, -0.00287207868, 0.0130415345, 0.00424608123, 0.00304670096, -0.0226457659, 0.00436096406, 0.0110747358, 0.00611637859, -0.00817508437, 0.00240105786, 0.0215612687, -0.00165201968, -0.00664943643, 0.0156608708, 0.0118007967, 0.00817508437, -0.00275260024, -0.00684703561, 0.0160009246, -0.0084967576, 0.0212120246, 0.0022195424, -0.0111574512, 0.00916308, -0.000577287807, -0.00154862483, 0.00657591131, -3.10723e-05, 0.00848756731, -0.00288126944, -0.011534268, -0.00733414, -0.00359124714, -0.00441381056, -0.0112677393, -0.00371761876, -0.0135745928, 0.0206973478, -0.0124809053, -0.00315009593, -0.00667241309, 0.0320018493, -0.00870814268, -0.00325808604, -0.0322591886, -0.0104865339, 0.0250169542, 0.0178666264, -0.0241346508, 6.73143441e-05, 0.000873686338, 0.00918605644, 0.0110931164, 0.0165891256, -0.0235096868, 0.0170027055, 0.0121776136, 0.00876788143, 0.00717330351, 0.0331782512, 0.0134367328, -0.0108541595, 0.0100086201, -0.018307779, 0.0100545734, -0.002188524, 0.0152564822, -0.0132713011, -0.004377048, -0.00419783033, -0.00846459065, 0.0149348089, -0.00411051884, -0.0139606, 0.0178482458, 0.017682815, 0.00840485096, 0.0106887277, -0.000246137148, 0.011672128, -0.00771095697, -0.00925039127, 0.0188224558, -0.0109920194, -0.00603825832, 0.000702510471, 0.0365420319, 0.0145671833, -0.00742604677, 0.00767419441, -0.00251364335, -0.0100270007, -0.00202424102, 0.011047163, -0.0120121818, 0.00365558174, 0.0101464801, -0.00231144903, -0.0166075081, -0.000360733073, -0.00233212789, 0.00590499397, 0.0108541595, -0.00893790927, 0.0239508394, 0.0144109419, 0.00432420149, 0.00651157694, -0.00455626566, 0.00100178109, 0.0151553852, -0.0236935, 0.00844161399, 0.0248331409, -0.00633695442, 0.00112240831, -0.0117272716, -0.039041888, 0.0285461638, 0.00626802444, 0.00395198027, 0.0105968211, 0.00648860028, -0.00977885351, 0.00219771452, 0.00205525942, 0.00438164314, -0.0132988729, -0.00257338258, -0.00396576617, -0.0228663422, -0.00741226086, -0.00905279163, 0.0210833549, -0.00594175654, -0.00769717107, -0.00265839603, 0.00377965556, -0.0138503127, -0.0183904935, -0.00122465438, -0.00267218193, -0.0117364628, 0.00854271092, -0.0190062672, 0.0108449692, -0.0175173823, 2.63513211e-05, 0.00976966321, -0.0146315172, -0.00439542904, -0.00693894224, 0.0314320289, -0.00302831968, -0.0104957242, -0.000669768779, -0.000707105792, 0.0122695202, 0.0110563543, 0.0309357345, 0.00983399712, -0.000391751528, -0.00412660278, -0.00219311938, 0.00612556934, 0.00268596807, 0.0274800491, -0.0369096585, 0.000374806259, -0.0242449399, 0.0119938, -0.0229766294, 0.0116537465, -0.0155322012, -0.0260279253, 0.00742145116, 0.0145028485, 0.000475616223, 0.0238589328, 0.00517433695, -0.00834051613, -0.00446206145, -0.00909874495, 0.0259360187, 0.023344256, 0.00596932834, -0.00638750289, -0.00898386259, -0.0305313449, 0.0126647186, -0.00109713408, -0.0292078909, 0.00490780827, 0.0288954098, -0.00268596807, -0.000691022142, -0.007104374, 0.0270572789, 0.0208260175, 0.00937446486, 0.0137767866, 0.00902522, 0.00965937506, -0.0200356208, -0.0302188639, -0.00391521771, -0.0125728119, 0.0162215009, 0.0142638916, 0.00681027304, 0.0143006546, -0.000541961228, -0.0141627947, -0.000749612518, 0.00755471596, 0.0142363198, -6.98992153e-05, 0.0104681524, -0.0233626366, 0.0129955821, -0.00934229791, -0.0140525065, -0.00468263729, -0.00162674533, -0.00578092, 0.0107806344, 0.00178528414, -0.00230225828, -0.00244471338, -0.0159274, 0.0292814169, -0.00102418324, 0.0112769296, -0.00716870837, 0.00861164089, -0.0187029764, 0.020495154, 0.00418863958, -0.0092412, -0.00873111933, 0.0164328851, 0.0300718136, 0.0229214858, -0.0187397394, 0.00518352771, -0.013547021, -0.014208748, -0.0143833701, 0.00705382507, 0.0113964081, 0.014171985, 0.0150910504, 0.00191510213, 0.00697110919, -0.0127382437, -0.0202378146, 0.0154770575, 0.0006973407, 0.00137974659, 0.0090390062, -0.0192452241, 0.0125728119, -0.0138135497, 0.00170486595, 0.0137951681, 0.0287299771, 0.0234361626, -3.62824312e-06, 0.0114147896, 0.00962261204, 0.00492618931, 0.00659429282, 0.0097880438, 0.00397036178, -0.0215061251, -0.00291343662, 0.000536791515, 0.0107990159, -0.000685278, 0.00310873799, 0.00036245634, 0.0066632228, 0.00850594789, -0.00776150543, -0.0153024355, 0.00136481179, 0.00426446227, 0.0180320591, -0.00508243032, 0.00959504, 0.00699868146, 0.00967775658, -0.00201849686, 0.0220943261, 0.00632776367, -0.0153851509, 0.00294790161, 0.0408800207, 0.00828537252, 0.0157527775, 0.00310873799, -0.0197782833, -0.00537653128, -0.0302740075, -0.00688379817, -0.0399977155, 0.010909304, 0.0274984296, 0.0458062105, -0.0185099728, 0.0209730677, -0.0020150505, -0.00852892455, 0.00901143439, -0.0481222533, -0.0172600448, 0.00655753026, 0.00340513652, -0.0220575649, 0.015458676, -0.0134183513, -0.0492618941, 0.00594635168, 0.00179677247, 0.00972371, 0.00449193129, 0.00651157694, 0.0271491855, -0.0089516947, 0.0150083341, 0.0272043291, 0.0278844368, -0.000347521534, -0.0114883147, 0.00634614518, -0.010560059, -0.00961342175, 0.0254764874, 0.0116445562, -0.0324981436, -0.00440691737, 0.012646337, -0.0057073948, -0.0300534312, 0.0270388983, 0.0027916606, -0.0216347948, -0.0142638916, -0.00207708729, 0.0171865188, -0.00354299624, 0.0146682803, -0.0124809053, -0.018794883, -0.0285094026, 0.0168280844, -0.00275030266, 0.00942041818, -0.0128761036, 0.0136481179, -0.00254351296, -0.0165064111, 0.00439313147, -0.00269056321, 0.011497505, -0.00825780071, -0.0134826861, -0.0168097019, -0.0161479749, 0.0147877587, 0.014796949, -0.0109001128, 0.0153116258, -0.0386007391, -0.0217267014, -0.00494916597, -0.000391751528, 0.00770636136, -0.00631397776, 0.0159917343, 0.00239186711, -0.00142914639, -0.00159917341, -0.00434947619, -0.00431041559, 0.0218369886, -0.0272962358, 0.00520650437, -0.00207938487, -0.0178942, -0.0022195424, 0.00262393104, -0.0152197191, -0.00573956221, -0.0367626064, 0.0180228688, -0.00423689047, -0.00851054396, -0.00626802444, -0.00832213555, -0.00563846482, -0.0315974616, -0.00172209833, 0.000986271771, 0.00470561394, 0.0258808751, -0.000134915899, 0.00729278242, 0.0202194341, 0.0175633356, 0.0276638623, -0.00299845, -0.00794531871, 0.0145304203, -0.000328565802, -0.00894250441, -0.0134275425, -0.020182671, 0.0265793651, 0.00221379823, -0.0343730375, -0.0350347646, -0.00135102577, 0.0204767715, 0.00210236153, 0.01198461, -0.00822563376, -0.0109552573, 0.0243000835, 0.0297409501, -0.0116077932, 0.00386926439, 0.00492159417, 0.0234913062, 0.0135929743, -0.0101464801, 0.00465966063, 0.00198747846, -0.000457809336, -0.00453558657, -0.000501752133, 0.00931472518, 0.021818608, 0.0170670412, -0.00292032957, 0.00340513652, -0.00611637859, -0.000396346848, -0.0141352229, -0.0214509815, -0.0109644476, 0.0018714465, -0.0054638423, 0.0171497557, 0.0238405503, 0.00438623875, 0.00751335779, 0.00157849444, 0.0120765166, -0.021156881, 0.0114331711, 0.00364639121, 0.0153667694, 0.00140387204, 0.0232891124, -0.00909415, -0.00118329644, 0.0209546853, 0.00409443537, 0.032479763, -0.0027916606, -0.00705382507, -0.011947847, -0.00216899393, -0.017370332, -0.00550520048, 0.019557707, -0.00169797288, -0.0106152026, -0.00181285606, -0.00926417671, 0.0105968211, -0.00762824109, -0.0370934717, 0.0215428881, 0.0337848365, -0.00116606394, -0.0017577121, -0.0243368465, -0.00464587472, 0.0187305491, -0.0272227116, 0.0112309763, 0.00383939478, -0.00663565053, 0.00118559413, 0.0341892242, 0.0190062672, 0.00729737757, 0.0015222017, 0.00363720045, 0.00683784485, 0.00940663181, -0.0138686933, -0.00919984281, 0.00368774915, 0.0125084771, -0.0069619189, -0.00328565808, 0.00478373421, 0.00216210075, 0.011221786, -8.00591897e-06, 0.00102360884, 0.00635533594, 0.00309265428, -0.00558332121, -0.00108966662, 0.00620369, 0.0173979048, 0.00989833195, -0.00879545417, -0.00814751256, 0.0103394836, 0.00987995, 0.0161295943, 0.0184824, -0.0250169542, 0.0190981738, 0.00598771, 0.0151002407, -0.0180688221, 0.00660348311, 0.0263771713, 0.0109184943, 0.00575334812, 0.00697110919, 0.000332012307, -0.00650238618, -0.00470101833, 0.0104773426, 0.00993509497, -0.0157895405, 0.0128117688, 0.00848756731, 0.0279763434, -0.0092412, -0.0116905095, -0.0256603, 0.0113504548, 0.00122350547, 0.00778448209, 0.021781845, -0.0133172544, -0.00663565053, 0.0160009246, 0.0147509966, 0.0171865188, -0.00420931866, -0.0108173974, -0.0144936582, -0.000642196799, -0.00210925448, -0.00143948582, -0.0149991438, 0.00620828522, 0.0046757441, -0.0110563543, 0.002344765, -0.000189988, 0.00589580322, -0.00630478701, 0.00868057087, -0.00689298892, -0.00544546125, 0.0126647186, -0.0420564227, -0.0150359068, -0.0244838968, 0.0122051854, -0.0325349085, -0.000906428031, -0.000484806893, -0.00313401222, 0.0131702041, -0.0336745493, 0.00667241309, 0.011047163, 0.00606123498, 0.0269102287, -0.00368774915, -0.00377965556, -0.010872541, 0.00596013758, -0.012747434, 0.0073754983, -0.00400252873, 0.011947847, -0.00907576829, -0.0150083341, -0.0370383263, -0.0137400245, 0.0163501687, -0.00718249427, 0.00684244046, -0.00104256452, -0.00365787931, 0.000419610704, 0.0154862488, -0.00429433212, 0.000699063938, -0.0211017374, -0.00425527198, -0.00174162851, 0.00722385244, -0.00671377126, -0.0249985736, -0.0486369282, -0.00766500365, -0.00998104829, 0.0097329, 0.00151875522, 0.0118927034, 0.00295939, 0.00251134555, -0.0156057272, 0.00146131369, -0.00312941684, -0.0011890406, -0.0222965218, -0.0102935303, 0.030641634, 0.0107530626, 0.0236751195, -0.00675972458, 0.0190062672, 0.00841404218, 0.0090390062, 0.0123706171, -0.0120029915, -0.00382331107, 0.0102935303, -0.0168188922, -0.0193922762, -0.0025044526, 0.00395887345, -0.000201189119, -0.00981561653, 0.0102751488, 0.00458154, 0.00990752224, -0.00979723502, 0.0178298652, -0.0150818592, -0.021745082, 0.0120029915, 0.00195990643, 0.0177379586, -0.000574128528, 0.00834970735, -0.0120857069, -0.000601413252, 0.0162490718, -0.0128761036, -0.00765581289, -0.0170578491, 0.00216210075, -0.00512378849, -0.0184364468, 0.00152794586, -0.0153300073, 0.0248699039, 0.0277741496, -0.0184732098, -0.00798667688, -0.0133172544, 0.00630019186, -0.0132069662, 0.00837727915, 0.00421391381, 0.00860704575, 0.0282888263, -0.0101832421, -0.0222413782, 0.0102383858, -0.0164696481, -0.0181147754, 0.0169935152, -0.0102200052, 0.0051513603, -0.0157527775, 0.00444138236, -0.00119823124, 0.000499454502, 0.00800046232, -0.00756390626, -0.00595094683, -0.000700212782, 0.013372398, 0.00253202464, -0.0163685512, -0.0157160144, -1.87762143e-05, 0.00113217346, 0.0132437292, 0.00117985, -0.0207892545, 0.000462404656, -0.0242265575, 0.00594175654, 0.00432420149, -0.023381019, -0.0192452241, -0.0023619975, 0.0206973478, 0.00422310457, 0.0171038024, 0.0168280844, -0.0148612838, 0.015284054, 0.00127635174, 0.00589580322, 0.00930553488, 0.00425527198, -0.00400942191, -0.0146958521, -0.00740307, 0.0351818167, 0.00127979822, 0.0283623524, 0.00230570487, 0.0143925603, 0.00266528898, 0.00355448457, 0.00152449938, -0.0268367026, -0.0055787256, 0.00988914166, 0.00607042573, 0.00699408585, 0.0133540174, 0.0132253477, -0.00177034934, -0.0232339669, 0.0138778845, 0.00728359167, 0.00379803684, 0.0135102579, 0.00552358152, 0.0196679942, -0.00712735066, -0.00182319561, 0.023381019, -0.0165247917, 0.0116169835, -0.00967775658, -0.0106887277, 0.0145488018, 0.00459532579, -0.0171405654, -0.00229881168, -0.00914469827, 0.0250353348, 0.00508702593, 0.0134367328, 0.0178666264, 0.024557421, -0.00663565053, -0.00457005156, -0.0154311042, -0.0309357345, -0.0087816678, -0.0276822429, -0.0155689642, 0.0193371307, -0.0257705878, -0.00309035671, -0.0068332497, 0.00923660491, -0.00664943643, -0.00630938262, 0.0259176381, -0.00229191873, -0.0261014514, -0.0199620966, 0.00929174945, -0.00465276744, -0.00760066928, 0.0110379728, 0.0330128223, -0.00333620654, 0.00897007622, -0.00549600972, -0.0157160144, 0.0112861209, 0.00590039836, -0.0188408364, 0.00915848464, -0.014870475, -0.00636912184, -0.00700787222, 0.0270388983, -0.00790396053, -0.00349474535, -0.00330633693, -0.00374289299, 0.00167269865, -0.00729278242, 0.0132161574, -0.0174254756, -0.0175173823, 0.00415187702, 0.00159113156, -0.0157160144, -0.0203297213, 0.032829009, 0.0361927859, -0.0011735314, 0.00745361857, 0.0156424902, -0.0230869167, 0.0216715578, -0.0174070951, 0.0219472758, 0.0139146466, 0.00246079708, 0.00442989403, -0.00109885726, -0.00251594093, -0.0128117688, -0.00374289299, 0.00412430521, -0.0208811611, -0.000239962174, -0.0135837831, -0.0102200052, -0.0011252804, -0.0176092889, 0.000732380082, -0.0116077932, -0.00359814, 0.0119386567, 0.0154770575, -0.0026469077, -0.00556953484, 0.00148543913, -0.00281693484, 0.00394508708, -0.0181423463, 0.00691596558, 0.00729278242, 0.0299982876, 0.00289965072, 0.0184732098, -0.00229536532, 0.00716411322, -0.00817968, -0.0130874878, -0.00506404927, 0.000528175267, 0.000543971721, 0.00813832227, 0.0221862327, 0.0263036452, -0.00394508708, -0.00905738771, -0.0215796512, -0.00449193129, 0.0139054563, 0.0180044863, 0.00357056828, -0.0185834989, -0.00720087579, 0.00753633445, 0.00368315377, -0.00039462361, -0.000606583, 0.00840944611, -0.00476535317, -0.00389453862, -0.0177931022, 0.0188776, -0.0207341108, 0.00846459065, 0.00228502578, 0.00107473182, -0.0197231397, 0.0097880438, 0.00788098387, 0.00457234913, -0.0145763736, 0.0161020216, -0.00580389658, -0.0181607287, -0.00488942675, 0.0141627947, -0.00500890519, 0.00745361857, -0.0145028485, -0.00486645, -0.00408524461, -0.00741685601, 0.0178758185, 0.0129496288, -0.00664024614, -0.00127405406, 0.00476075755, 0.00527543435, -0.0192819871, 0.0125728119, -0.00303751044, 0.00422540214, -0.0166258886, 0.0020598548, 0.0174254756, -0.0131702041, 0.0138503127, -0.01212247, 0.0138870748, -0.0216531754, 8.81728192e-05, -0.0034855546, -0.0166626517, -0.00195301347, 0.0056062974, 0.0125728119, -0.0126647186, -0.0108817313, -0.0104405805, 0.00889655109, 0.0188408364, 0.01184675, 0.00598311424, 0.0034740665, 0.00618990418, -0.0103670554, 0.000328565802, -0.0297960937, -0.0132988729, 0.0145396115, -0.0189143606, -0.0107530626, -0.0206973478, -0.0070905881, 0.00468723243, -0.0125268586, 0.0266896524, -0.024594184, -0.0068056779, 0.000670343172, 0.0224435721, 0.00676891487, -0.00151760643, -0.00641047955, -0.0285829268, 0.0092090331, 0.0111390697, -0.0137859778, 0.0129128657, 0.0213039313, -0.000357861019, -0.0183996856, -0.00761445519, -0.0101280985, -0.0107714441, 0.00423689047, 0.00238727173, -0.000996036921, -0.00689758407, -0.0200356208, 0.0212487876, 0.0117640346, -0.00986157, 0.0170394685, -0.000938595331, -0.0146866618, -0.00758688292, -0.00194841821, 0.00889655109, 0.0064196703, 0.0127382437, 0.00960423145, -0.017333569, -0.0126279555, -0.00948475301, -0.00524786208, 0.0100913355, -0.00801424868, 0.0161847379, 0.0119386567, -0.0274984296, 0.00846459065, 0.000502039329, 0.00433339225, -0.0212855488, 6.67040295e-05, -0.00655293465, -0.0128944842, 0.0172784254, -0.000343787833, -0.00294100866, -0.00652995799, -0.0103027206, 0.0103211021, -0.015596536, -0.00774312438, 0.000794991385, 0.0124441423, 0.0176920053, -0.0394095145, -0.0124441423, 0.00596473319, 0.00889195595, 0.0127933873, 0.0252559111, 0.0137124527, 0.00976047199, 0.00570279965, -0.00371761876, -0.00296858046, 0.00825780071, -0.0136848809, -0.00328336027, 0.0459164977, -0.00755931111, -0.00549141457, 0.0048940219, -0.00163823366, 0.0235096868, -0.00281693484, -0.0118559413, -0.0199620966, 0.00137170474, -0.00817508437, 0.0139881717, 0.00199666922, 0.00744442781, 0.00173588435, 0.018794883, -0.00520190876, -0.00527083874, -0.00478833, -0.00555115379, -0.00635993108, -0.00310414261, -0.00343500613, -0.00340054114, -0.00214486825, 0.00221150066, -0.0210833549, 0.000461830263, 0.00118674291, -0.00721006654, -0.0140157444, -0.0329209156, -0.000556034443, 0.023344256, -0.0105324872, 0.00159687572, -0.0336929299, -0.00872192811, -0.0133907795, 0.0155138206, -0.000737549795, -0.0223884284, 0.0172232818, 0.0122603299, 0.0174898095, -0.0185926892, -0.00323740719, -0.0020908732, 0.00694353739, 0.0117640346, -0.00285829278, -0.029667424, -0.0309724975, -0.0067045805, 0.0120857069, 0.0256970618, 0.0121592321, 0.00420931866, -0.0254029613, 0.00369693968, -0.0167913213, -0.0028536974, 0.0192268435, -0.00956746843, -0.0165064111, -0.0205502976, 0.00825780071, 0.0194474198, -0.0108082062, -0.00153598771, 0.0151094319, 0.0249618106, 0.00437245239, -0.0041197096, -0.0189143606, -0.00501809595, -0.0104497708, -0.00180136773, 0.00787179358, -0.0175173823, 0.0194658, 0.0269102287, 0.0234729256, 0.00591418426, 0.0113688363, 0.0226825289, -0.00409213779, 0.0168924183, 0.0191900805, -0.00996266678, 0.0110655446, -0.00886438321, -0.00623126188, -0.0235648304, 0.0273881424, 0.0109552573, -0.00965937506, 0.00148314144, 0.00505945366, -0.0051651462, 0.0125452401, -0.0103578642, -0.0461738333, -0.0124165704, -0.000661726925, -0.0207524914, 0.0138778845, -0.0188224558, 0.00974209048, -0.00948475301, -0.0138870748, -0.0127566243, 0.0016014711, -0.00762824109, -0.0111206891, -0.00700327661, -0.0297409501, -0.0162398815, 0.00535815, 0.0119110849, -0.00575334812, -0.0207892545, 0.00675053382, -0.00888276473, -0.00378425093, 0.0199804772, -0.00307657081, 0.00749038113, -0.0188776, 0.00134068634, -0.0353656299, -0.00222528656, -0.00760985957, -0.0197782833, 0.0122419484, 0.0164053142, 0.0154678673, 0.00220460771, 0.0135286395, -0.0293733235, 0.00342581538, -0.0029961525, -0.00175886101, 0.0135194492, -0.0200172402, -0.0162306912, -0.00139238371, -0.0126187652, -0.00569360889, -0.00382560887, -0.0145304203, -0.010247577, -0.000647366513, -0.0287115965, -0.0109736379, 0.00385088311, -0.00951232482, 0.0174806193, -0.00726061501, 0.0102567673, 0.00671377126, 0.00101958797, -0.0128301503, -0.000174622386, -0.0304026771, -0.0215796512, -0.0277373865, 0.00737090269, -0.0164696481, -0.00153943419, 0.00945718, 0.00809236895, 8.59469583e-05, 0.0362846926, 0.000398644508, -0.0106519656, -0.00263541937, 0.00555574894, -0.0144568952, 0.000653685129, 0.00825320557, -0.0253110547, -0.00140272325, 0.00544546125, -0.00238727173, 0.0288586468, 0.00549600972, -0.00965937506, -0.00141306268, -0.00784422178, 0.0108909225, -0.00194037636, 0.0251640044, 0.0110379728, 0.0220575649, -0.00587282656, -0.00514216954, 0.00573956221, -0.0147693772, -0.0256419182, -0.0043150112, -0.0209179241, -0.0177103858, 0.0120673254, -0.0153391976, 0.0338032171, -0.016083641, -0.0171129946, -0.0102935303, -0.011322883, 0.00526624359, -0.00795910414, 0.00227238867, -0.00276408857, 0.0141444132, 0.000679533812, 0.002032283, -0.0127106719, 0.0185007825, 0.0151645755, -0.0296490435, -0.00704463478, -0.0181239657, 0.0140065532, 0.00439542904, -0.00305589172, 0.0136297364, 0.00496754749, 0.0161755476, -0.00177839107, -0.0066907946, 0.0198334269, 0.0167177953, 0.000187115933, 0.0265426021, -0.00023522324, -0.0260095447, -0.0193371307, 0.00385777606, -0.0406226814, 0.0108541595, -0.00966856536, -0.00838646945, -0.00110517594, 0.0227376726, 0.0113320732, 0.0090390062, -0.0032810627, -0.00605204422, -0.00725601939, 0.0133999707, 0.00524786208, -0.00223447732, 0.0213406943, 0.0170210879, -0.017508192, 0.00701246737, -0.0115158865, 0.0017898794, -0.0145120388, 0.00568441814, -0.00618990418, -0.00478833, 0.0104865339, -0.00646102801, -0.0111666424, 0.0254948679, 0.00958585, -0.00233902084, -0.000916767516, -0.004533289, 0.00165431737, 0.029593898, -0.0325716697, 0.00898386259, 0.00193922757, -0.00835889764, -0.0159641616, -0.0159549713, -0.0200723838, 0.00547762867, 0.0163042154, -0.0161295943, 0.0139697911, -6.42986633e-05, -0.0176552422, -0.00818887074, -0.0156792514, 0.0146958521, -0.029667424, -0.0196863767, -0.00673674792, -0.00859325938, -0.00550060533, 0.00341432705, -0.0162490718, 0.00302372454, 0.012434952, -0.0011890406, 0.00166350801, 0.00431960635, 0.0156700611, -0.000414728158, -0.0101648606, 0.00715032732, 0.0218737517, -0.000712275505, -0.00435177376, 0.00594635168, 0.00430582045, 0.0383066386, 0.00591878, 0.00786260236, -0.00030501475, 0.00623585703, 0.0121776136, 0.00401861267, -0.00432649953, 0.0162490718, -0.0169199891, 0.0213223118, -0.00730656832, -0.00953070633, -0.030641634, 0.0130874878, -0.0147142336, -0.00353150791, 0.00664024614, -0.00383020425, -0.00103509717, -0.00786260236, -0.0018082608, -0.00886897929, 0.00117180811, 0.0108449692, -0.00300534326, 0.00691596558, 0.017508192, -0.00957666, -0.011635365, -0.000223734925, 0.00713654095, -0.000369062123, -7.41355325e-06, 0.0211017374, -0.0108357789, 0.0161939282, -0.00884600263, -0.0106243938, 0.013547021, -0.0155505827, 0.0257889684, -0.00443448965, 0.0144385137, -0.0163042154, 0.0109920194, -0.00537193613, -0.00872192811, -0.00433798786, -0.0107990159, -0.0169291813, 0.00210121274, -0.0016474243, 0.0276454799, -0.00525245769, 0.0148061402, -0.00779826799, 0.0169107988, 0.00430582045, -0.0143374167, 0.00119248708, -0.0131334411, 0.0147693772, 0.0206054412, -0.0039910404, -0.00442300132, 0.00426905788, -0.0109920194, -0.00227009109, 0.00706761144, -0.00125797046, 0.0218002256, -0.0133540174, 0.00755931111, -0.0214326, 0.000401516591, -0.0196312331, 0.0185926892, 0.0103119109, -0.000649089809, 0.00467114896, 0.0153575791, 0.0076695988, -0.00351082906, -0.00314320298, 0.0151829571, -0.0112769296, -0.0031248217, 0.0143833701, -0.00250215502, 0.00816589408, -0.00250675017, -0.000557757681, 0.0556585863, -0.000989718363, 0.00112068513, -0.000901258318, 0.00499511929, 0.00962261204, -0.00621747598, 0.0118099879, 0.0113136927, 0.00617611781, -0.0135837831, 0.0146407085, -0.00443219161, 0.0158263016, 0.0163869318, -0.0101556703, 0.0149256187, 0.0251456238, 0.00411281688, -0.0103946272, 0.0116077932, 0.0157435872, -0.00683784485, 0.0170210879, -0.00241714134, 0.0353656299, -0.00819346588, -0.00498592854, -0.0019645018, 0.000777184498, 0.00128669129, -0.00177954, 1.15780676e-05, 0.000179217706, -0.0371486135, 0.00721006654, -0.0299982876, 0.0190062672, 0.00463898154, 0.014833712, 0.00592337502, -0.00692056073, 0.0196128506, -0.00725601939, -0.00137285364, 0.0209546853, 0.00886438321, -0.0190981738, -0.0042345929, -0.0144201331, -0.029005697, -0.0177195761, 0.0151186222, -0.0202010535, -0.00662646, 0.00849216245, -0.0231972057, -0.0137492148, -0.013859503, 0.0221862327, 0.00768798031, 0.00245160633, 0.0265058391, -0.000103825645, -0.00011416513, 0.0244471338, -0.0363214575, 0.0277741496, -0.0126187652, -0.00884600263, -0.0192084629, -0.00428973651, -0.00891952775, -0.0175541453, 0.0184088759, -0.0151645755, -0.00860245, 0.0127658155, 0.00307886838, -0.0043150112, -0.00743064191, 0.0182985887]
|
17 Nov, 2023
|
Python | Calendar Module
17 Nov, 2023
Python defines an inbuilt module calendar that handles operations related to the calendar. In this article, we will see the Python Program to Display Calendar.
Calendar Module in Python
The calendar module allows us to output calendars like the program and provides additional useful functions related to the calendar. Functions and classes defined in the calendar module use an idealized calendar, the current Gregorian calendar is extended indefinitely in both directions. By default, these calendars have Monday as the first day of the week, and Sunday as the last (the European convention).
Display the Python Calendar of a given Month
The code uses Python’s calendar module to print a calendar for the specified year (yy) and month (mm). In this case, it prints the calendar for November 2017. Python Program to Display Calendar
Python3
import calendar
yy = 2017
mm = 11
print(calendar.month(yy, mm))
Output:
Display the Python calendar of the given Year
The code you provided uses Python’s calendar module to print a calendar for the year 2018.
Python3
import calendar
print ("The calendar of year 2018 is : ")
print (calendar.calendar(2018))
Output:
class calendar.calendar
The calendar class creates a calendar object. A calendar object provides several methods that can be used for preparing the calendar data for formatting. This class doesn’t do any formatting itself. This is the job of subclasses. The calendar class allows the calculations for various tasks based on date, month, and year and provides the following methods:
Function
Description
iterweekdays()
Returns an iterator for the weekday numbers that will be used for one week
itermonthdates()
Returns an iterator for the month (1–12) in the year
itermonthdays()
Returns an iterator of a specified month and a year
itermonthdays2()
This method is used to get an iterator for the month in the year similar to itermonthdates(). Days returned will be tuples consisting of a day of the month number and a week day number.
itermonthdays3()
Returns an iterator for the month in the year similar to itermonthdates(), but not restricted by the datetime.date range. Days returned will be tuples consisting of a year, a month and a day of the month numbers.
itermonthdays4()
Returns an iterator for the month in the year similar to itermonthdates(), but not restricted by the datetime.date range. Days returned will be tuples consisting of a year, a month, a day of the month, and a day of the week numbers.
monthdatescalendar()
Used to get a list of the weeks in the month of the year as full weeks
monthdays2calendar()
Used to get a list of the weeks in the month of the year as full weeks
monthdayscalendar
Used to get a list of the weeks in the month of the year as full weeks
yeardatescalendar()
Used to get a list of the weeks in the month of the year as full weeks
yeardays2calendar()
Used to get the data for specified year. Entries in the week lists are tuples of day numbers and weekday numbers
yeardayscalendar()
Used to get the data for specified year. Entries in the week lists are day numbers
class calendar.TextCalendar
TextCalendar class can be used to generate plain text calendars. TextCalendar class in Python allows you to edit the calendar and use it as per your requirement.
Function
Description
formatmonth()
This method is used to get the month’s calendar in a multi-line string
prmonth()
This method is used to print a month’s calendar as returned by formatmonth()
formatyear()
This method is used to get m-column calendar for an entire year as a multi-line string
pryear()
This method is used to print the calendar for an entire year as returned by formatmonth()
class calendar.HTMLCalendar :
HTMLCalendar class can be used to generate HTML calendars. HTMLCalendar class in Python allows you to edit the calendar and use as per your requirement.
Function
Description
formatmonth()
This method is used to get the month’s calendar as an HTML table
formatyear()
This method is used to get a year’s calendar as an HTML table.
formatyearpage()
This method is used to get the year’s calendar as a complete HTML page
Simple TextCalendar class
For simple text calendars calendar module provides the following functions:
Function
Description
setfirstweekday()
This method sets the day start number of the week
firstweekday()
This method returns the first weekday number. By default 0 (Monday)
isleap()
This method checks if the year mentioned in the argument is leap or not
leapdays()
This method returns the number of leap days between the specified years in arguments
weekday()
This method returns the weekday number(0 is Monday) of the date specified in its arguments
weekheader()
Returns a header containing abbreviated weekday names
monthrange()
The function returns two integers, first, the starting day number of the week(0 as monday), second, the number of days in the month
monthcalendar()
Returns a matrix representing a month’s calendar. Each row represents a week; days outside of the month are represented by zeros
prmonth()
The function also prints the month of a specific year but there is no need of “print” operation to execute this
month()
The function prints the month of a specific year mentioned in arguments
prcal()
The function also prints the calendar of a specific year but there is no need of “print” operation to execute this
calendar()
The function displays the calendar for the given year.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module
|
https://www.geeksforgeeks.org/python-calendar-module/?ref=lbp
|
Pandas
|
Python | Calendar Module
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00189007632, 0.0154637881, -0.000844294729, 0.0574042425, -0.0128951557, -0.00849624351, 0.0144862514, 0.0170132872, -0.00171848747, -0.0173356645, -0.01099208, 0.00411293097, 0.00687395, -0.00104318175, -0.010305725, 0.0327162594, -0.0102537284, 0.0296380594, 0.0136023099, 0.0120216133, 0.0200394876, -0.0129679507, -0.0147150364, 0.00622919202, 6.99923e-05, -0.0163061321, 0.0413476937, -0.0141326748, 0.0152142039, 0.00168598967, 0.00665036449, 0.0138622923, 0.0128223607, -0.00838185102, -0.0309275761, -0.0297004562, -0.00277661835, 0.0163893271, 0.00715993112, 0.00279481709, 0.0435939468, 0.0179284271, 0.0500415228, -0.00309899705, -0.0277869813, -0.0029378077, 0.00561043294, -0.00208766339, 0.0171588771, -0.00880822353, 0.0182716046, -0.0162853338, 0.0373127572, 0.0237728432, 0.00373075576, -0.000777999056, 0.00266222563, 0.0116576366, -0.0374375507, -0.0205178577, 0.0591513291, -0.0328202508, 0.00921379682, -0.0250623599, 0.0299084429, 0.0181260128, -0.0429699868, 0.0249167681, 0.0504990928, 0.019373931, 0.0280781612, 0.0153701939, -0.00231644837, -0.0307195894, -0.0086366348, -0.017845232, 0.00253483397, 0.0422004387, -0.049750343, 0.0106801009, -0.0262478814, -0.0236480515, -0.00826225895, -0.0150166173, 0.0283277463, 0.0226497166, 0.046672143, -0.0272046197, -0.0091306027, 0.0198003035, 0.0359192491, 0.0270174313, -0.0116472375, -0.0246047899, 0.00317959185, -0.0188851636, 0.015453388, 0.0258735064, -0.0267886464, -0.0100769401, -0.00360076432, 0.00880822353, -0.0190411527, -0.0528285429, 0.00564683042, 0.000338302867, -0.0088134231, -0.0300748311, 0.0133423265, -0.00249713659, -0.00750310905, -0.0171276797, -0.0153701939, -0.0346921273, -0.0735855848, -0.00426632073, -0.0217969734, -0.0327162594, 0.000326278649, -0.0252911448, 0.0350873023, -0.00233334722, 0.0353992842, 0.0680531487, -0.0377287306, 0.0238560382, 0.0134671181, -0.0182092078, 0.0281613562, -0.0371671654, -0.0349833108, -0.0169404913, 0.016066948, -0.0149230231, -0.00399333844, -0.000554088736, 0.014070279, 0.0313851461, -0.00958817266, -0.00601600623, 0.00283641438, -0.003499371, 0.00902660936, -0.0356072709, -0.0285773296, -0.0654325187, 0.032924246, 0.0147358356, -0.0196443144, 0.0032757856, -0.0283693429, -0.0379575156, -0.00884982105, 0.0182820037, 0.0184379928, -0.0249999631, 0.0233152732, 0.0119904149, -0.0363352224, -0.0223169383, -0.0278077796, -0.0350249074, 0.0371047705, 0.00604720414, 0.0378743224, -0.0148502281, 0.00293260813, -0.00288581103, 0.0212354101, 0.0340889692, -0.0106281042, -0.0366887972, -0.0207362417, 0.00140000833, 0.00451850425, 0.0108776875, 0.04367714, 0.00879782438, 0.00896941312, 0.007804689, -0.0491679795, -0.0122711966, 0.037229564, 0.0522045828, 0.00792948063, 0.042762, 0.0316763259, 0.00741991447, -0.0400789753, 0.00697794324, 0.0346505307, 0.00516586192, 0.0130927432, -0.00736271823, -0.0170964804, -0.022067355, -0.000815696607, 0.0188643653, -0.0240016282, 0.022836905, -0.0193323344, -0.0346297324, -0.0136439065, -0.00625519035, -0.00487728091, 0.0223169383, 0.00177438383, -0.000186537785, 0.0475456864, -0.028223753, 0.00711313449, 0.021225011, -0.0343593508, -0.037915919, 0.0184379928, 0.0140078831, -0.0101965321, 0.0132799307, 0.0368551873, -0.0229616966, -0.0368135907, 0.0472961031, 0.00549604, -0.0323210843, 0.00482008466, -0.0258111097, 0.0179804228, 0.0329866409, -0.0370631739, -0.00233594701, -0.00874582771, -0.00479148654, -0.00373595534, -0.0126663707, 0.051455833, 0.0245007966, 0.0421380401, 0.0306987911, 0.0371671654, 0.0313227512, 0.0364392139, -0.0214433968, -0.00668676244, -0.0193115361, 0.00821026228, 0.0251455531, -0.0069519449, 0.059442509, -0.000548239099, 0.0270590279, 0.0249167681, -0.00619279454, 0.0026804246, 0.0152142039, -0.0511230528, -0.0114496509, -0.0136335073, -0.0257487148, 0.0120424116, 0.0204762593, 0.0235440582, 0.0290764961, 0.00447950698, 0.0114704492, -0.0165973138, -0.0177412387, -0.0159005597, -0.00541804545, 0.00196937099, -0.0197275095, 0.0284733362, -0.0373959504, 0.0250831582, 0.00433131633, -0.00940098427, 0.00136231084, -0.0110544767, 0.00395434117, -0.0041597276, 0.0222753417, 0.00135061156, -0.0136647057, 0.0330490358, 0.0021916565, 0.0197275095, 0.0606904253, -0.0272670146, -0.00995214842, -0.0142158698, 0.00478108693, 0.031447541, -0.00360336411, -0.0147774322, 0.0210170243, 0.0223377384, 0.0140078831, -0.0239808299, 0.0110544767, -0.018531587, 0.0073679178, -0.018334, 0.00111467706, -0.0173772629, -0.0103005255, -0.0253327414, -0.0358776525, 0.0397462, 0.011231265, 0.0102589289, 0.020538656, -0.0230448917, -0.0181780104, -0.048668813, 0.00756550487, 0.0320923, 0.0127079682, 0.0374999456, 0.00620319415, -0.00566242915, -0.00423252303, -0.00272982125, 0.040453352, 0.0192387402, -2.08392612e-05, 0.00839225, -0.0289517045, -0.0440931134, -0.0207986385, 0.0163165312, 0.00587041583, -0.0448834635, -0.0203098711, 0.00432611676, 0.00896941312, -0.0202578735, -0.0345257409, -0.0440099202, 0.00144420541, 0.0283277463, 0.0258943047, 0.00246983836, 0.0223377384, 0.0145486472, -0.00270122313, -0.038976647, -0.0465889499, 0.0110128792, 0.0208922327, -0.00596400956, -0.000260145462, 0.000613559852, 0.0301788244, 0.0507486761, 0.00649437495, 0.0220465567, -0.0154013922, -0.00531925168, -0.0195299219, -0.0101809334, 0.022379335, 0.0159629546, 0.00766949775, 0.0134047223, -0.0209338292, -0.0273918062, -0.0390390456, 0.0072223274, -0.00506706815, -0.0130615449, -6.576757e-05, -0.0180636179, 0.0241888165, -0.04521624, 0.00770069612, 0.00676475698, 0.0121256066, -0.000536539883, 0.0128743574, 0.00905260723, -0.026455868, -0.0470049232, 0.0226705167, -0.00672316, 0.0146318423, 0.0157965664, 0.0105605088, -0.0208090376, -0.0195611194, -0.0086366348, -0.0140286814, -0.0155157847, 0.0119384183, 0.00748231029, -0.0351289, -0.00996254757, -0.0416804701, -0.00101588352, -0.0072431257, 0.0287645161, 0.00968176592, -0.0172940679, -0.0124791833, 0.0153597947, -0.0285149328, -0.0547420159, -0.0345881358, -0.0161605421, -0.0016703906, 0.0426372103, 0.0371047705, 0.00655157119, 0.0569050759, -0.0249791648, -0.0119072208, 0.0266638547, -0.00620839372, -0.0113456575, 0.0560315326, -0.0204762593, 0.0275165979, 0.0463809632, -0.00715473155, -0.0176060479, 0.0386854671, -0.00352276932, 0.000920339779, -0.0186979752, 0.0125311799, -0.0258111097, 0.0404325537, 0.0176372454, 0.00759150321, -0.00654637162, 0.0653909221, 0.0361688323, 0.0126039749, 0.000329203438, 0.0159941521, 0.0312395543, -0.0336521976, -0.0532029159, 0.0272670146, 0.0307403877, -0.00162619352, -0.042845197, 0.0134671181, -0.0458402, 0.0353576839, -0.0093489876, -0.0170652829, -0.00495267566, -0.0110960733, 0.0136959031, 0.0119696166, 0.0342969559, 0.022691315, 0.0222753417, -0.00570922624, -0.00341877621, 0.0228785016, 0.0601080656, -0.0376455374, -0.0229824949, -0.000657756929, -0.0155677805, -0.0379367173, 0.00713913282, -0.0299084429, -0.0266430564, 0.0179700237, -0.0223169383, -0.00972856302, -0.0542844459, 0.00564163085, 0.04783687, -0.00844944734, -0.00670236116, 0.0245007966, 0.0253951382, -0.0265182648, 0.0449666567, -0.0114912475, -0.00706633739, 0.00157549686, 0.0205802526, 0.00399333844, -0.0350457057, -0.0264350697, -0.0162749346, -0.0152973989, 0.0115952408, 0.0303036161, 0.0464641601, -0.00543884374, 0.026601458, 0.00754470611, -0.011075275, -0.00228395057, 0.0194883235, -0.00686875032, 0.00229175, 0.0396422036, -0.0301996227, 0.0228785016, 0.00437551364, -0.0028598127, 0.00333558163, -0.0021266609, -0.00252313493, -0.0174188595, -0.0187083762, 0.0251871515, -0.00933858845, 0.0337769873, 0.0124167874, -0.00413892884, 0.00814786647, -0.0128951557, 0.00210846192, -0.0289101079, -0.00730032194, -0.0165453162, -0.0136959031, -0.00961417053, -0.00823626108, 0.0121776024, 0.0152142039, -0.0270798281, 0.00470049214, 0.00604200456, 0.0231904816, 0.0139454873, 0.020143481, 0.0221713483, 0.0237104483, -0.0391846336, -0.0209234301, -0.0209754277, -0.0137790982, -0.0153909922, -0.0297420528, 0.0371255688, 0.00951017719, -0.0387062654, 0.0131759373, -0.032757856, 0.00136491063, 0.00557923457, 0.00772149442, -0.0189371612, -0.0350249074, -0.00143640593, -0.0218801685, 0.0125311799, -0.0094685806, -0.0142886648, 0.00186797767, 0.00102823274, 0.000702604, 0.00827785768, -0.00835065357, 0.000810496917, 0.00408693263, 0.0334650092, -0.0107216984, 0.0214225985, -0.0205698535, 0.00440151198, 0.0204138644, 0.0266222581, 0.0182612054, -0.0192491394, 0.0280365646, 0.034213759, -0.027225418, -0.00769549608, 0.00414932845, -0.0135711115, 0.00956217386, 0.0101029389, -0.00678035617, 0.0552411824, 0.0214225985, -0.0136231082, 0.00919299852, -0.012458384, -0.0086366348, -0.013071944, -0.0388102606, 0.0179076269, -0.00663476577, 0.041534882, -0.0193635318, -0.0205490552, 0.0013727101, 0.0213186052, -0.00402193656, -0.0128847566, 0.0226705167, -0.0105397096, -0.00986375473, -0.00754990568, 0.00168728956, 0.0119488174, -0.00568322791, 0.00512946444, 0.0110648759, 0.00932299, 0.00135971094, -0.0254575331, -0.0251871515, 0.0085898377, -0.0122399991, -0.00231514848, 0.0107944934, -0.0271838196, -0.0213394035, -0.00785668567, -0.0076123015, -0.0194467269, -0.0113976542, 0.00500727212, -0.000390624424, -0.00495267566, 0.00260502938, 0.0100197438, -0.0315723345, -0.0305947978, -0.0106801009, -0.0420132503, 0.0040271366, -0.0330906324, -0.0201954786, 0.0170444846, 0.010763295, -0.0286397245, 0.0195611194, -0.00431051804, -0.0306363944, 0.0129471524, 0.0329866409, -0.015380593, -0.00690514781, 0.100415826, 0.00256733201, 0.0518718027, 0.00505926879, 0.0105449101, -0.00377755263, -0.00306519936, -0.0241888165, -0.0331114307, 0.00162359374, 0.0050436696, -0.0104201175, 0.0061096, 0.0099105509, -0.00589641416, -0.00124271866, -0.0244384, 0.0189267602, -0.0167013071, 0.00333298184, -0.0108568892, 0.0198731, 0.0214225985, 0.039371822, -0.00529845292, 0.0227745082, 0.026684653, -0.0149438214, -0.0115224458, -0.00678555574, 0.0380199105, -0.000545964285, 0.00262322836, -0.0153701939, 0.014070279, 0.00118227256, -0.0145382481, 0.0173564646, -0.0176892411, -0.0304700062, 0.00760190235, 0.00148450281, -0.00298460457, 0.00433131633, -0.0200914852, -0.00321858935, -0.000218060726, -0.0168572962, 0.0229616966, 0.0104461163, 0.00400633784, -0.00238144421, 0.00147280353, 0.0238352399, 0.0141638732, 0.0076590986, 0.026372673, -0.00289101084, 0.0331322327, -0.0315723345, 0.00877702516, -0.0063123866, 0.0403909571, -0.0120944083, -0.00963496882, 0.0148814255, 0.0138310948, -0.0110336775, 0.00173928612, 0.00114652491, -0.013529514, -0.00595361041, -0.0113560567, 0.00743031362, 0.0109296842, 0.0103213247, -0.0303868111, -0.0111896675, -0.0208194368, -0.0278285779, -0.00135581126, -0.0253327414, 0.0252703466, -0.0202058777, -0.0379783139, -0.0172628704, 0.00682195323, -0.00659316825, -0.0126767699, 0.0507070795, 8.77442581e-05, -0.00491627818, -0.00581321958, -0.0107528958, 0.00617719581, 0.00439891219, 0.00196157163, 0.0249167681, -0.00449510571, 0.00759150321, -0.0130095482, 0.0236688498, -0.0254575331, 0.0189267602, -0.0187083762, -0.00977016054, 0.00218125712, -0.0204970576, -0.00409733178, 0.0594009124, 0.0144134564, 0.0298876427, 0.0086366348, -0.00895381346, -0.0235232599, 0.0108880876, 0.0591097288, -0.0151934056, 0.0103889201, 0.0205594543, -0.00871982891, -0.0371879637, 0.0269758347, 0.00483568339, 0.0213186052, 0.00304700062, 0.00109127851, 0.0052828542, -0.00773709361, 0.0246255882, 0.0328202508, 0.0217345767, -0.0334650092, -0.0371255688, -0.0214017984, 0.0110544767, 0.0152038047, -0.0150686139, -0.0145798456, 0.0211522151, -0.00973376259, 0.0128223607, -0.0395382121, 0.0153909922, 0.0128327599, -0.00249063689, -0.0127287665, 0.0277037863, -0.0192491394, 0.0191555452, 0.0178140346, 0.0104773138, -0.0322586894, -0.0178036354, -0.0258527081, 0.00250883587, -0.0278285779, 0.00364236161, 0.0157237705, 0.0137894973, -0.0222337451, 0.0465057567, -0.0180116203, -0.0152973989, 0.0105657084, 0.00737311738, 0.00325758685, 0.00787228439, 0.0143406615, -0.0145278489, 0.00695714448, -0.0111584691, -0.00964016933, 0.0218801685, 0.0116992341, -0.00535564963, -0.0132903298, 0.011075275, -0.00412593, 0.000833895407, 0.0257487148, 0.00695714448, -0.000380225101, 0.0204762593, 0.0155157847, 0.0194155294, 0.00156769739, 0.0246671848, 0.00470309192, -0.0158797596, 0.0276413914, -0.0117096333, 0.0224833284, 0.0221297517, 0.00347597245, 0.00568322791, 0.030906776, 0.00650477409, -0.00605240371, -0.000285168819, -0.00605240371, 0.0299916361, 0.000864443427, -0.0145798456, 0.00705073867, 0.000652232324, -0.00189657579, 0.0294924695, 0.0103733214, -0.00130511459, 0.0104097184, -0.0200082902, -0.0111376708, 0.0045757005, -0.00474988902, 0.0229201, 0.0154325897, 0.00643197913, 0.00370475743, 0.0118968207, -0.0206946451, -0.00180038216, 0.00534525, 0.0181572121, 0.00397254, -0.0159109589, 0.000174188594, 0.0171276797, 0.0321338959, 0.0223169383, 0.0229824949, -0.0119592175, -0.0141742723, 0.0344217457, -0.000880692329, 0.0218801685, -0.0153493956, 0.026684653, -0.0393510237, -0.00696234405, -0.0285773296, -0.0045757005, 0.00375155453, -0.014995818, -0.0290141013, -0.0199250951, -0.0138934907, 0.0206322502, -0.0075603053, -0.00745631196, -0.0445922799, -0.00727432361, 0.000892391603, 0.0127911624, -0.00740951486, 0.00771629484, 0.0186043829, -0.00118292251, 0.0129055548, 0.0194987245, -0.00345517392, -0.0111064734, -0.00308079831, 0.0231904816, 0.00647357618, -0.00463029696, 0.00231254869, 0.00782028772, -0.00359296473, -0.0201330818, 0.0114704492, 0.0118968207, -0.0198627, -0.00588081498, 0.0392886288, 0.0277245846, 0.00624999078, -0.00148710259, -0.0127599649, 0.0157965664, 0.0110128792, -0.0168780945, -0.00555843627, -0.0256655198, -0.0254991315, -0.000804647338, -0.00588081498, -0.0400789753, 0.00408173259, -0.00125571783, -0.0244591981, -0.0552411824, -0.0185419861, -0.0480448566, 0.0044171107, -0.0612727888, -0.00515026273, 0.0187499728, 0.0148814255, 0.0232736766, 0.0118968207, -0.00165869144, -0.0412645, 0.01053451, 0.00232034805, 0.0120528108, -0.0113872541, 0.0288269129, 0.00425332179, -0.00598480832, 0.0439267233, -0.0157341696, -0.0123335924, -0.0228161067, -0.0209650267, -0.00710273487, -0.00323678809, -0.00029849296, -0.000107892934, -0.0279741678, -0.00241264212, -0.016066948, 0.00838705059, -0.0344009474, -0.0223585367, -0.0076383, -0.00842344854, 0.0240224283, -0.0412437, 0.050374303, -0.000358126563, -0.0132071357, 0.04521624, -0.0238976348, 0.0111792684, -0.019457126, -0.0238352399, 0.0192387402, -0.00388414576, -0.00466929423, 0.0026011297, 0.030906776, 0.0101965321, -0.0111376708, -0.0219841599, 0.0222545434, 0.0151310097, 0.00830905605, -0.0189579595, -0.00303140166, -0.0388726555, -0.0158069655, -0.00400893763, 0.0452994332, -0.00506706815, -0.0290972944, 0.00705593824, -0.0417844653, -0.00879782438, -0.0283485446, 0.00133501261, 0.0144134564, 0.0154325897, 0.00815306604, 0.0356696658, 0.0194259286, 0.00743031362, 0.00788788404, -0.0102433292, -0.00387374638, -0.0293884762, 0.0245631915, 0.0364808105, 0.0143510606, 0.0326122642, -0.0169300921, 0.00291440915, -0.0118136266, 0.00228785025, -0.0117512308, -0.020226676, 0.000999634503, -0.0237728432, 0.00127521658, -0.00886022, 0.0276205912, 0.00615119748, -0.00426632073, -0.0130199473, 0.0068531516, 0.0231072865, -0.00441971049, 0.0129887499, -0.00354356808, -0.033569, 0.0116472375, -0.012843159, -0.0467969365, 0.00435991446, -0.00523865689, -0.00930739101, 0.00735231861, 0.00180688174, -0.00576642249, -0.0162229389, -0.0222545434, 0.0232112799, -0.0238560382, -0.0353576839, 0.00960897096, 0.0395174138, 0.0100457426, 0.0122815957, -0.00748751, -0.0102589289, -0.00497087464, -0.00748231029, -0.0013376124, 0.00769549608, -0.0178036354, 0.0289517045, 0.000376000389, -0.00556883542, 0.00783588737, 0.0186459795, -0.0193531327, 0.030220421, -0.0431363769, -0.0272046197, 0.0198003035, -0.0189683586, -0.0190203544, 0.00479148654, 0.00189657579, -0.013841494, 0.00262972782, -0.0313227512, 0.00656717, -0.0100925397, -0.0180532187, 0.0214641951, -0.00524385693, 0.00099833461, -0.0118344249, 0.00245163962, -0.0243968032, -0.0108880876, -0.00978056, 0.00551163917, -0.0195715185, 0.00558963418, 0.00650997367, 0.0187083762, 0.00468229363, 0.04475867, -0.0403077602, 0.0136647057, -0.0168572962, 0.00887061935, 0.0103837205, 0.0026089293, -0.00795547944, 0.0139454873, 0.00780988857, 0.003863347, -0.00726912403, -0.00762790069, 0.0139454873, 0.00504627, -0.0346921273, -0.00157419697, 0.0114496509, -0.00426372094, -0.00666596368, -0.020996226, -0.0154845864, -0.00306519936, 0.0238560382, -0.0288477112, 0.0137790982, 0.00192647392, 0.0136231082, -0.013383924, -0.00832985435, 0.0246463865, -0.00399073865, 0.00142210687, -0.00591721246, -0.00140520802, -0.0140286814, -0.00504886964, -0.0136751048, -0.0324042775, 0.0180220194, -0.0093749864, 0.00372815598, -0.0223585367, 0.02306569, 0.0273918062, 0.0161917396, -0.0052698548, -0.0166805089, -0.00285721291, -0.00780988857, -0.0223169383, -0.00733152, 0.000307917333, 0.0168260988, 0.0103577217, -0.000570337637, 0.00149100239, -0.0139766848, -0.0353160873, 0.00920859724, 0.012302395, -0.000782548799, 0.0230448917, -0.0292012878, -0.0156197771, 0.0392678306, 0.0102537284, -0.00547524169, -0.011376855, 0.0126559716, -0.0134359207, -0.0262270831, 0.0109296842, 0.0075135082, -0.00424292218, 0.000606410322, 0.00319259102, 0.0319259092, 0.002152659, -0.0268718414, -0.00699354196, 0.00909940433, -0.00403233618, 0.0232944749, -0.0248335749, -0.0131759373, -0.000962587, -0.00704033906, -0.0118552241, 0.00992615055, -0.0284317397, -0.00278961728, 0.00660876743, 0.0229616966, -0.0107944934, -0.0441763066, 0.0262062848, 0.0288685095, -0.0105917063, 0.0190099552, 0.00503587024, -0.00112767622, 0.0224417318, 0.00535564963, -0.00906300638, -0.00315879332, -0.0045757005, -0.0155781806, -0.012614374, -0.0296172611, 0.0355864689, -0.0190515537, -0.04413471, -0.0204242636, 0.0111584691, -0.00875102729, 0.00944778137, 0.01114807, 0.0244799983, 0.0193531327, -0.00902660936, -0.013997484, 0.000952187693, 0.0235440582, 0.0152558014, -0.00252703461, 0.0099833468, 0.0168572962, -0.00565722957, -0.00374895451, 0.0025686319, -0.010040543, -0.0094685806, -0.00471349154, -0.00190957496, 0.0302620195, -0.000776049215, 0.00184457924, -0.0200290885, -0.017845232, -0.00484348275, -0.000954137533, 0.00199276954, 0.0125311799, -0.0133943232, 0.0288685095, 0.0229408983, 0.0126559716, 0.0370007791, 0.00134671188, -0.0160565488, 0.011688835, -0.0130407466, 0.0280573629, -0.000753300672, -0.00748231029, 0.0324458778, -0.0198731, 0.0013200636, -0.00997814722, -0.00479668612, 0.0241680183, -0.00671276078, 0.00245813909, 0.0328826457, -0.0342761576, -0.0106125055, -0.0034525739, -0.0280365646, -0.0294716712, -0.0231696833, 0.0118760224, -0.00862623565, 0.0268094447, -0.00928139221, -0.00388674554, 0.00570922624, -0.00243084086, 0.000255108287, 0.0211730134, -0.00381655013, 0.0281197596, -0.0259775, 0.0151206106, 0.00199016975, 0.026143888, -0.00540244626, 0.0100769401, 0.00235674577, 0.017845232, 0.00497347442, 0.0101185376, 0.00013608484, 0.0261646863, 0.0181884095, 0.00968176592, 0.000189625091, -0.0134047223, 0.00399073865, -0.0198938977, -0.0123647908, -0.0204762593, 0.00389714492, -0.0172004737, -0.00964016933, -0.0243968032, 0.00286761229, -0.00414412888, 0.0352328941, 0.00637998246, -0.013071944, 0.0112104658, 0.0265598614, 0.0114912475, -0.016066948, 0.00226055202, 0.0134047223, 0.0107216984, 0.00734191947, -0.0376455374, -0.0275997929, 0.015692573, -0.00570402667, -0.0224833284, 0.00687914947, 0.0219425634, -0.000701954064, -0.0454658233, -0.00168598967, 0.0125831766, 0.000850794313, 0.00373595534, 0.00732632028, -0.00387894618, -0.010305725, 0.0268094447, -0.0300748311, -0.00757070445, -0.0386438705, 0.0140806781, 0.00318479142, 0.00959337223, -0.0260814931, -0.00300540333, -0.0169404913, -4.5212666e-05, 0.0159109589, 0.00136621052, 0.000576837221, 0.00308599789, -0.00480968505, 0.0037177566, -0.0197899044, -0.00600040704, -0.00842864811, 0.0167221054, -0.0182300061, 0.0107424967, 0.0185523853, -0.00862103608, -0.00493967673, 0.00824666, 0.0232944749, -0.000692854635, -0.0169508904, -0.0125935758, -0.0299500395, 0.000164033016, -0.00819466356, 0.00139480864, -0.0280365646, 0.0075135082, 0.00192257413, -0.0248543732, -0.000650282425, -0.00441191113, 0.0249167681, -0.000438071322, -0.00393094262, -0.0088134231, -0.0113976542, -0.00139220885, -0.00666076411, 0.0367927924, -0.0270382296, 0.00366576, 0.00870943, 0.0214225985, -0.0013402123, -0.00255173305, 0.0435523503, 0.00959857181, -0.00868863147, -0.0141222756, 0.00188357674, 0.0453826301, -0.00323418831, -0.00459129922, -0.0155989788, 0.00233464711, -0.0271630213, 0.0139454873, -0.0224001333, -0.00302880164, -0.014611044, -0.00981695764, 0.0187083762, -0.0140598798, -0.00974416174, -0.00805947278, -0.00433911616, -0.0147982314, 0.0101965321, -0.00970256515, -0.02106902, 0.000666856358, -0.0332154259, -0.0106593026, 0.0063903816, -0.002826015, -0.00351756974, 0.0132487323, 0.0420340486, -0.00922419596, -0.00934378803, -0.0253535397, -0.0118760224, -0.00412073033, -0.0219425634, -0.00102433295, -0.00433911616, 0.01130406, -0.00595881, 0.010040543, -0.0325914659, 0.0311563611, -0.00559483375, -0.018531587, -0.000157939663, 0.00923979469, -0.0206426494, 0.0252911448, 0.000406223407, -0.00167819019, 0.00740951486, 0.00134411198, 0.0199666936, 0.0127599649, -0.00659316825, 0.027142223, 0.00983255636, -0.0153285963, -0.00547004212, 0.0217137784, -0.00105228112, 0.00257773115, -0.0150062181, 0.0280573629, 0.0112936608, 0.0400165804, -0.0326330625, 0.000948287896, -0.0135919098, 0.00322118914, 0.00660876743, -0.00702994, -0.0265806597, -0.00919299852, 0.000995734823, -0.00588601455, -0.0266638547, -0.00333298184, 0.0534109026, 0.0419300534, 0.00122646976, 0.00905260723, 0.000138359697, 0.0314891376, 0.00117642304, -0.0509566627, -0.0122192, -0.0112520633, -0.0185419861, 0.0201018844, -0.0184587911, -0.0120944083, -0.00801787525, -0.0145486472, 0.0124479849, 0.0334026143, 0.0434275568, -0.038747862, 0.0217761751, 0.00539204711, -0.00323418831, -0.00384514825, 0.00907340646, -0.0263102781, -0.00822066143, 0.00440931134, 0.0111272717, 0.0129783507, 0.0028598127, -0.00634878455, -0.0135607123, 0.00667636283, 0.00965576805, -0.00778389024, -0.0253535397, -0.0134775173, -0.0313227512, 0.027225418, -0.0263310764, 0.00864183437, 0.00372555619, -0.0212458093, -0.00623959163, 0.0274334047, -0.00982735679, -0.00184457924, 0.00412333, 0.0211002193, -0.00745631196, 0.027994968, 0.0158173647, -0.00222025462, -0.00618759496, 0.0113456575, 0.00941138435, -0.0136751048, -0.009957348, 0.0225457232, -0.00490847882, 0.0126975691, 0.0194051303, -0.00909420475, -0.0181884095, 0.00712353364, -0.00944778137, 0.0197067093, -0.00612519914, -0.0164101254, 0.0157445688, -0.0067283595, -0.00249063689, 0.0055532367, -0.0101185376, 0.00875102729, -0.00450550485, 0.0166389104, 0.00735751819, 0.012843159, 0.00817386527, -0.00309899705, -0.00407393323, 0.0045809, 0.00665556453, 0.0048330836, 0.00449510571, -0.00147800322, -0.0181572121, -0.00601600623, 0.0163373314, -0.0157029722, -0.00274542021, 0.0111168725, 0.0123959882, 0.00166389113, 0.00463549653, -0.0121880025, -0.00141560729, -0.0271630213, 0.00930739101, 0.0122711966, -0.0101549355, -0.0128847566, 0.00682195323, 0.0185211878, -0.0146214431, 0.00923459511, 0.00213706, 0.0110336775, -0.00451590447, -0.000449120591, -0.00543364417, 0.0312603526, -0.00691554742, 0.0227953084, -0.00498907361, 0.00841824897, 0.0263518747, 0.0135607123, 0.00195637182, -0.00593281165, 0.0123439915, 0.00148450281, 0.00137141021, -0.0108880876, -0.022067355, -0.0155677805, -0.0172628704, -0.0102173313, 0.00771109527, -0.00135841104, 0.0264142714, 0.00122192, 0.00991575047, -0.00302360207, 0.0367927924, -0.0117096333, -0.0154221905, -0.0310523678, -0.00744591234, 0.0247919764, 0.0218177717, -0.0343593508, 0.0107736951, -0.000465044548, -0.00987415388, 0.0215057917, 0.0323834792, -0.0141742723, 0.0365224108, 0.0152869988, 0.0162229389, -0.00304180081, 0.0299084429, 0.0227953084, -0.0219633617, 0.0123855891, -0.0106801009, 0.00906300638, -0.00201226817, 0.0125207808, -0.00945298094, 0.00403753575, 0.000792298117, -0.0157029722, 0.0256863181, 0.00202526734, -0.0242304131, 0.00804387312, -0.00027265714, 0.000524840667, 0.00961417053, -0.00651517371, 0.0245215949, -0.00470569218, -0.0222753417, 0.0219841599, 0.000512166473, -0.00846504606, 0.00478108693, 0.0382694937, 0.0163685288, -0.0067283595, 0.0116992341, 0.00827785768, 0.000156720984, -0.00494747609, 0.000552138838, -0.0166701078, 0.00409473199, 0.0140806781, -0.00045919494, -0.00484348275, -0.00408173259, -0.000105455598, 0.00927099306, 0.020226676, -0.00315879332, 0.0185835827, 0.0125415791, 0.013685504, 0.0224001333, 0.00564163085, 0.0131343398, 0.0125311799, -0.0232112799, 0.00358516537, 0.0303452127, -0.00392834283, 0.00721712736, -0.00474468945, -0.0175228529, 0.0453826301, 0.00532185147, 0.00956217386, -0.00245813909, 0.00854824, -0.00897461269, 0.000652557297, -0.0141950706, -0.00157939666, -0.0216513835, -0.00914620142, -0.00326278643, -0.0246255882, -0.0218177717, -0.0216305833, 0.0186355803, -0.00733672, -0.00843904726, -0.000412723, -0.00914100185, -0.0212666076, -0.0121984016, 0.014070279, -0.0292220879, -0.0168364979, 0.00120177132, -0.0260190964, 0.0124687841, -0.0234816633, 0.00468229363, -0.00020278673, -0.00532185147, -0.0173876621, -0.0245839898, 0.00332778227, -0.00685835117, -0.00229304982, 0.000326928595, -0.0155781806, 0.00459389947, -0.00495787524, 0.00822586194, 0.00715993112, 0.00496567506, 0.00117512303, -0.00676475698, 0.0086366348, -0.0140910773, 0.0244176015, -0.0166285113, -0.00117382314, -0.013539914, -0.00119982148, -0.00163529289, 0.00583401788, -0.0111376708, -0.00696754409, 0.00909420475, 0.003499371, -0.0188123677, 0.0121152066, 0.000510541606, -0.0128119616, -0.00427412, -0.0110544767, 0.0336521976, 0.0253327414, 0.00593281165, -0.0104305176, -0.0115744425, -0.0158485621, 0.0214017984, 0.012843159, -0.0118864216, 0.00319779059, 0.0196651127, -0.0206530485, -0.00465889508, -0.00893821474, 0.027454203, 0.0229824949, 0.0134671181, 0.0250207614, 0.000116261137, 0.0108776875, -0.00803347398, -0.0107008992, -0.00182378059, -0.0219633617, 0.0102485288, 0.0207258426, 0.00350457057, 0.00573522458, -0.00328098517, -0.0106905, 0.0017132879, -0.00345517392, 0.013300729, 0.00147670333, -0.000161108197, -0.0412437, 0.019602716, -0.00304180081, 0.00395694096, -0.0108048925, 0.000268757401, -0.0260814931, 0.00264272699, -0.00463549653, -0.00388934533, 0.000446520775, -0.01099208, 0.0185939819, 0.000737701717, 0.0257695131, 0.00933338888, -0.00611999957, -0.012687169, 0.0198003035, 0.00588601455, -0.0124167874, -0.0160565488, 0.0107216984, 0.0112000667, 0.00323418831, -0.00120892085, 0.00784628652, -0.00460169883, -0.00175878487, -0.0315515362, 0.00735751819, 0.0159941521, 0.0203098711, 0.0147982314, 0.0199250951, 0.0113352584, 0.00918779895, -0.00785148609, 0.0326122642, 0.00224365317, 0.000500467257, -0.00473689, -0.0148294289, -0.00608360162, -0.0129159549, 0.011844825, 0.0148294289, 0.0447170734, 0.0124271866, -1.02926851e-05, 0.0105085121, 0.000803347386, -0.00530105317, 0.025374338, 0.0210066251, 0.00607320247, -0.0150894122, -0.00987935346, -0.00427412, 0.00970256515, -0.00681675365, -0.00269342377, 0.00931259058, -0.00143640593, 0.0200498868, -0.00577682164, -0.0286605246, -0.00728472322, -0.0197275095, 0.016992487, 0.0162853338, 0.00792428106, 0.00930739101, 0.0154013922, -0.0217345767, 0.0272878129, 0.000372425624, -0.0120632099, 0.010919285, 0.0316555277, 0.0147046372, 0.0131031424, -0.0150894122, -0.00910980348, -0.00901101, -0.0157653671, -0.00748751, -0.0343593508, 0.0121776024, 0.0131863365, 0.0474624932, -0.0410565138, 0.0208402351, 0.00570922624, -0.0067283595, 0.0170340855, -0.0363976173, -0.00349157141, 0.0126247732, 0.0021994561, -0.00919299852, 0.0138518931, -0.00428971928, -0.0465473533, 0.0138206957, -0.00152999989, 0.013071944, 0.0122399991, 0.0116576366, 0.019373931, -0.0185731836, -0.00263622752, 0.0212042127, 0.027682988, -0.00933338888, -0.00979095884, 0.00940098427, -0.0128743574, -0.0224209316, 0.0140806781, 0.016150143, -0.0241264198, 0.0096869655, 0.0163269304, -0.00185497862, -0.0177516378, 0.0284941345, 0.00698314281, -0.0143510606, -0.00386594702, 0.00176918413, 0.0134047223, -0.012999149, 0.00686355075, -0.00727952365, -0.00611479953, -0.0235856567, 0.0121776024, -0.00467709405, 0.0165973138, -0.0201122835, 0.0120944083, -0.00570922624, -0.0170964804, -0.0052022594, 0.0020408663, 0.00482008466, -0.0105397096, -0.0245007966, -0.0176060479, -0.016919693, 0.0111896675, 0.0242512133, -0.0123231933, 0.00623959163, -0.0326122642, -0.0134463198, -0.00845984649, 0.00737311738, 0.00627598912, -0.0136543065, 0.000460169889, 0.0118136266, 0.014070279, 0.0107008992, -0.00264662667, -0.0192595385, 0.0112416642, -0.033569, 0.0280781612, -0.00371255702, -0.0159005597, -0.0297004562, -0.0133631248, -0.00658796867, -0.00460429862, -0.0258319099, 0.0146422414, 0.00532965129, 0.00612519914, 0.00546484208, -0.0111064734, -0.013300729, -0.0179180279, 0.0181884095, 0.00717553031, 0.0176996421, 0.0181364119, -0.00184067956, 0.0121256066, 0.00646317704, -0.000215298409, 0.0266638547, -0.0205906518, -0.0150894122, 0.0154429888, 3.10151554e-05, -0.0194155294, -0.0121152066, -0.0252287481, 0.0280781612, -0.00508006755, -0.0235024616, -0.028452538, 0.0181884095, 0.027225418, 0.0131863365, 0.0249791648, -0.00787228439, -0.0129887499, 0.0188019685, 0.0323210843, -0.0123439915, -0.00267522479, 0.0162749346, 0.0199770927, 0.0216513835, -0.00682715327, 0.00523345731, 0.00373075576, 0.000129585271, 0.00463029696, 0.00743551319, -0.021609785, 0.0117824282, 0.0156197771, 0.000722102704, 0.0028598127, 0.00645277742, 0.00617719581, -0.013529514, -0.00487208087, -0.0254367348, -0.0127703641, -0.0129679507, 0.00449510571, 0.0274750013, 0.0119384183, 0.000212211104, 0.00580282, 0.013768699, -0.0246255882, 0.0228785016, -0.00260502938, 0.0179596245, 0.0136023099, 0.00689994823, 0.00103473221, 0.000809197, 0.00708193658, 0.00267522479, 0.0109088859, -0.0111688692, -0.0146526406, -0.00647357618, -0.0135607123, -0.0206114501, -0.0130511457, 0.022836905, -0.00332518225, -0.013914289, -0.00380355096, -0.0143198622, 0.00498907361, -0.00443530967, -0.0527037494, 0.0194883235, 0.0430115834, 0.00842344854, -0.0041597276, -0.0180220194, 0.00684795156, 0.0185523853, -0.0252079498, 0.0111688692, 0.000336028, 0.0023372469, 0.00673355907, 0.0245839898, 0.0170340855, 0.00999374595, 0.00222025462, 0.0117512308, -0.00490067899, 0.0019680711, -0.0146422414, 0.00495787524, -0.00119917153, 0.0192803387, 0.00120242126, 0.016462123, 0.000594711048, -0.00590681331, 0.0127703641, -0.00267002522, 0.00811666902, 0.0145590473, 0.00719632907, -0.00718592945, -0.00132396328, 0.00705073867, 0.0104669146, -0.00155209843, -0.0194987245, -0.00398553908, 0.00103863201, 0.00482268445, 0.0211626142, 0.0286397245, -0.00383994868, 0.0327994525, -0.000566762872, -0.0054596425, -0.00809067, -0.00129276537, 0.00878222473, 0.00256603211, -0.00348377205, -0.00990535133, 0.00837145187, 0.00666596368, 0.00267262501, -0.00904220808, 0.0133215282, -0.0136751048, 0.00802307483, 0.0144654531, 0.00980135798, -0.0124999816, -0.012687169, -0.0179076269, 0.0201954786, 0.00852744188, 0.0125207808, 0.0259567015, -0.0177516378, -0.020455461, 0.00941658393, 0.0112104658, -0.0017470856, 0.00447430694, -0.00428971928, -0.0130095482, 0.00549084041, -0.000719502917, 0.00259982981, -0.0139766848, 0.00445090886, -0.00130251469, -0.00744591234, -0.0147566339, 0.00418052636, 0.0107008992, -0.0126767699, 0.022379335, -0.0127079682, -0.00945298094, 0.0123855891, -0.0310731661, -0.0159421563, -0.00552203832, -0.0100873392, -0.0244799983, 0.0108776875, -0.00430271821, 0.0010600806, 0.0171380788, -0.02106902, 0.0016378928, 0.0143614598, 0.0238560382, 0.0252495464, -0.00371515681, -0.00314319413, -0.0227953084, 0.000382174971, -0.0136335073, 0.00975456182, -0.00880822353, 0.0175540503, 0.00328358496, -0.0226497166, -0.026913438, -0.0227329116, 0.0198627, 0.000553113816, 0.012302395, 0.00169118925, 0.0038685468, 0.00105813076, 0.0130823432, -0.00342397578, -0.00419872534, -0.00890181772, -0.00360336411, 0.00972336344, 0.0121152066, -0.00109192857, -0.0143302623, -0.0305947978, -0.0132799307, 0.00212276098, 0.00708193658, -0.00948417932, 0.00300540333, 0.00740431529, -0.00712873321, -0.0273502097, 0.0173356645, 0.00287281186, -0.00798147731, -0.0112936608, -0.0183547977, 0.0225041267, -0.00161319436, 0.0108048925, 0.00420392491, 0.0183963962, 0.0152454022, 0.00702994, 0.00646837661, -0.0173252653, -0.0046874932, 0.0108776875, -0.0123543916, -0.00892261602, 0.004978674, 0.00428192, 0.0062135933, 0.000497217465, 0.0175852496, 0.0101757338, 0.00380875077, -0.0151414089, 0.016690908, -0.00564683042, -0.0280781612, 0.000867693219, 0.00136101095, 0.0174812563, 0.000900841, 0.00516066235, -0.021297805, 0.000696754374, 0.00221895473, -0.0126039749, -0.00471089175, -0.0109088859, 0.0164413229, -0.00556363584, -0.00317439227, 0.0053140521, -0.0258735064, 0.00965576805, 0.00660876743, -0.00659836829, -0.00637998246, -0.0160565488, -0.00515286252, 0.00955697428, 0.00180948153, -0.00844424684, 0.0107112993, 0.0299084429, -0.0094217835, -0.000711703382, 0.0267886464, -0.0241264198, -0.0193219353, 0.00743031362, -0.00799187645, 0.00841304939, -0.00808027107, 0.0121568041, -0.00145980448, -0.0135191148, 0.0184067953, -0.0117720291, 0.0090578068, -0.0242720116, 0.00971816387, -0.00314839394, -0.00489028, -0.0257487148, -1.74371398e-05, 0.00382174971, 0.00511906482, -0.00442231027, -0.0159109589, 0.00845464692, -0.0376455374, 0.00645797746, 0.00945298094, -0.0248543732, 0.0116784358, -0.00396474032, 0.0123855891, -0.00118877215, 0.0112936608, 0.0267678481, -0.0150478147, -0.00457310071, -0.00541284587, -0.00450030528, 0.00628638826, -0.00849104393, -0.0104045188, -0.0170444846, -0.011844825, 0.0329658426, 0.0045757005, 0.0160773471, -0.00574042415, -0.00979615841, 0.00136491063, 0.00194337277, 0.00885502063, -0.02337767, 0.00785148609, 0.00593281165, 0.00269862334, 0.00370995724, 0.0149022248, 0.00986895431, -0.00487728091, -0.01191762, 0.0167221054, 0.0153597947, 0.00396994, -8.65255861e-05, 0.00480448548, 0.015692573, -0.0102121318, -0.013768699, 0.0221921466, -0.0157757681, 0.00903700851, 0.000195474699, -0.00636438327, 0.0256239232, 0.0205074567, -0.00764869945, -0.0226705167, -0.00986375473, 0.0317803212, 0.00988455303, 0.0137167023, 0.0106905, 0.0143926581, -0.0156509746, 0.000735101872, -0.0212666076, -0.013456719, 0.00554283708, -0.0332154259, -0.00194857246, 0.0224209316, -0.0201642793, 0.00104643148, -0.0147878323, 0.0221921466, 0.00370475743, -0.0131135415, 0.0239392333, -0.0150790131, -0.0162021387, -0.0201954786, -0.0048668813, -0.00612519914, 0.0017132879, -0.00113417581, 0.0501663163, -1.40147076e-05, 0.0247295815, -0.00176658435, -0.0238976348, 0.0257071164, -0.0117928283, -0.0276205912, 0.00764869945, -0.00447170716, -0.00388154597, -0.0058756154, 0.0166701078, -0.00813746732, -0.00622399244, -0.0166597087, 0.0116264392, -0.000212536092, -0.00355916703, 0.00243864045, -0.0175124537, -0.0062915883, 0.00762790069, 0.00862103608, -0.00503067067, -0.0162645355, 0.0304908045, 0.0332362242, 0.0225457232, 0.00398293929, 0.013300729, -0.00934378803, 0.0115120467, -0.0260606948, 0.00866783224, 0.0157341696, 0.0120112142, 0.0126455724, 0.00243214075, -0.00875102729, -0.000268757401, -0.00884982105, -0.00172758696, -0.0132695315, -0.00608880119, -0.0234400649, 0.000458869967, 0.0042065247, -0.0152350031, -0.00685835117, -0.00445870822, 0.00133241282, -0.00717553031, -0.00504627, 0.00254133367, -0.00775269233, -0.00144160562, -0.0121256066, 0.0238768365, 7.19015443e-05, -0.000861843582, 0.0102953259, 0.0251663532, -0.0144862514, 0.000529065379, 0.00350457057, 0.0116264392, 0.00300540333, -0.0173772629, -0.00636958284, -0.00922939554, 0.00466149487, -0.0140078831, 0.0163685288, 0.0208298359, -0.00253743399, 0.0188851636, -0.0240016282, 0.00719632907, 0.0119488174, 0.0214433968, 0.0143302623, -0.0216305833, -0.0120320125, 0.0100249434, -0.00481748441, -0.0132591324, -0.0229408983, 0.0118656233, -0.00250233617, -0.00180818164, 0.0106281042, 0.0240016282, -0.008610636, 0.0231072865, 0.0233984683, 0.00244254014, -0.0216513835, 0.0068531516, 0.0150166173, -0.0157965664, -0.0178764295, 0.00646837661, 0.00154039916, -0.0344217457, -0.0050904667, 0.0137894973, -0.00439111236, 0.022379335, -0.0199042968, -0.0114808483, -0.0215681884, 0.00623439206, 0.0139558865, 0.021755375, -0.00450550485, -0.0065827691, 0.000857293897, -0.00238534389, -0.0160877462, 0.0142470673, -0.00921899639, 0.00409993157, -0.0150998114, 0.0141118765, 0.00959857181, -0.0039803395, 0.0123959882, -0.0151726063, 0.0080750715, -0.0167221054, -0.00431311782, -0.00591201289, -0.0150894122, -0.00158069655, -0.00167169061, 0.0170756821, -0.00364236161, -0.0119904149, -0.0190203544, -0.00575082377, 0.0167949013, -0.00627078954, 0.00102043315, -0.0031951908, 0.00436771428, -0.0146526406, -0.00384514825, -0.0298044495, -0.0017093881, 0.0238144416, -0.00356436661, -0.0280989613, -0.0307403877, -0.0159109589, 0.00494747609, -0.0173252653, 0.0306363944, -0.0308443811, -0.00325238705, -0.00221505505, 0.0267678481, 0.00194337277, 0.0053608492, -0.00591721246, -0.0129055548, 0.0195715185, 0.0158797596, -0.0106593026, 0.0102121318, 0.0153077981, -0.0198731, -0.02260812, -0.0152558014, -0.00608360162, 0.00249063689, 0.0136231082, -0.0082986569, -0.00808027107, 0.00329918414, -0.0133943232, 0.00296120625, -0.00514766295, -0.00346817286, 0.00551683875, -0.0173980612, -0.0162541363, -8.77442581e-05, 0.00981175806, 0.00723792613, 0.00489547942, 0.00977016054, 0.0147046372, -0.0149230231, -0.00735231861, -0.00705073867, -0.0108568892, 0.000392899266, -0.021609785, 0.0180012211, 0.0215057917, -0.0270590279, 0.0024503395, 0.0145694464, 0.018385997, -0.0349417143, -0.00708713615, -0.00797107816, -0.00510606589, 0.0146422414, 0.000772799423, -0.00288841082, -0.00108737883, -0.0208298359, 0.00201486819, -0.00814786647, 0.0068063545, 0.0106697017, -6.90986e-05, 0.0227953084, -0.0241056215, -0.0264142714, -0.00845464692, 0.00921379682, 0.00870943, 0.0340057723, 0.00257383147, 0.00194337277, 0.00403233618, 0.00376455346, 0.00580802, -0.0065827691, -0.00785668567, 0.00351497, 0.0483776331, 0.00264402688, 0.0118552241, 0.00225145253, -0.00918259844, 0.0266638547, -0.00377755263, -0.00228005066, -0.00795547944, 0.00485388236, -0.00457050093, 0.00813746732, 0.0086366348, -0.00902660936, 0.0106073059, 0.0243136082, -0.00135451136, 0.00021594837, -0.00188227673, -0.0110336775, 0.00943218265, -0.00959857181, -0.0178244337, -0.00384514825, -0.00118682231, -0.00839225, -0.0140598798, 0.00585481664, 0.00166389113, -0.0094425818, -0.00714953197, -0.023148885, -0.00322378892, 0.0100613413, -0.00293000811, 0.00231514848, -0.042221237, -0.0191139486, -0.00575082377, 0.0260190964, 0.00324458769, -0.0153701939, 0.00866263267, 0.0179180279, 0.017221272, -0.0268718414, 0.00196157163, -0.0014091077, -0.0113248583, 0.0179388262, -0.00659836829, -0.0296172611, -0.0254367348, 0.00211496162, 0.0114184525, 0.0189683586, 0.0123127941, 0.00350457057, -0.0337769873, -0.00930739101, -0.0267470498, -0.0134879174, 0.0217345767, -0.00844944734, -0.00473689, -0.0181676112, 0.015921358, 0.00902141, -0.00755510526, -0.0116680358, 0.00307559874, 0.0248127766, -0.00488508027, 0.000666856358, -0.0101445355, -0.00710793491, -0.00862623565, 0.00869383104, 0.0164309237, -0.0231904816, 0.0153701939, 0.0184587911, 0.0246671848, 2.90652843e-05, 0.0163893271, 0.00226575159, -0.0167013071, 0.0181156136, 0.00439371215, -0.0119072208, 0.0203306694, 0.014611044, -0.00911500305, -0.0239808299, 0.0149854189, -0.00840785, -0.00262712804, -0.0128327599, 0.0114184525, -0.013529514, -0.00152999989, -0.0142886648, -0.0292428862, 0.0013038147, -0.00601600623, -0.021609785, 0.010763295, -0.0274334047, 0.0122711966, -0.00999374595, -0.014611044, -0.0227537099, 0.00175488507, -0.0134879174, -0.0107528958, 0.00575082377, -0.0160877462, 0.00400633784, -0.00505406922, 0.00690514781, -0.0106905, -0.0150998114, -0.00387114659, -0.00652037328, -0.000283868925, 0.0379991122, -0.000435146503, 0.00374115515, -0.00866783224, -0.00467189401, -0.0362312272, -0.00876662601, -0.00326018664, -0.00143380614, 0.0320923, 0.000901491, 0.00451070489, 0.00902141, 0.0150790131, -0.0213394035, 0.0040609343, 0.0104773138, 0.00143250625, 0.00706633739, -0.00737311738, -0.0070975353, 0.0134671181, 0.0147150364, 0.00730032194, -0.0220465567, -0.0147982314, -0.0188227687, 0.0195611194, -0.0186667778, 0.000558638421, -0.00374115515, -0.0289725028, 0.0156509746, 0.00525685586, 0.00162489363, 0.0174292587, 0.0033069835, -0.0070975353, -0.00788788404, -0.0163165312, -0.0219841599, -0.013997484, 0.00883942097, -0.0231696833, -0.00762270112, 0.01176163, 0.00786188524, -0.00491367839, 0.015536583, 0.000112767615, -0.00437291386, -0.0134671181, -0.00480968505, -0.0145694464, -0.0039491416, 0.00958297309, -0.0119384183, 0.00722752698, 0.0094217835, 0.00596920913, 0.0319259092, 0.0165557154, -0.0144862514, -0.00285461312, -0.0209234301, 0.014995818, 0.00575602334, 0.00686355075, 0.0171172787, 0.0103837205, -0.0455490164, -0.0241680183, 0.00496047549, -0.0218593683, -0.0300748311, 0.0109504834, -0.014767033, -0.0146318423, -0.00518146064, -0.00312759518, 0.0362312272, -0.00478888629, -0.0134359207, -0.0170444846, -0.0129887499, -0.00408173259, -0.0156821739, 0.00643197913, 0.0197067093, 0.0116784358, 0.00799187645, -0.0102225309, -0.0150374155, 0.00385554763, 0.0166597087, -0.0265182648, -0.0155261839, -0.0191867445, 0.0392054319, 0.00900061056, 0.000314579403, 0.0108048925, 0.00197587069, 0.0153389955, 0.00862623565, -0.0149438214, 0.0198731, 0.000802697439, -0.0201954786, 0.0165973138, -0.00638518203, -0.0179492254, -0.0203618668, 0.017304467, -0.0322794877, -0.0083194552, -0.0113560567, -0.0111688692, -0.00853264146, 0.0222129468, 0.0216305833, 0.00700394157, 0.00672316, -0.0184795894, -0.00343177537, 0.0131447399, -0.00358256558, -0.0110544767, 0.0116680358, 0.0148814255, -0.0201850794, 0.00680115493, -0.0254367348, 0.00446910737, -0.0191867445, 0.0105605088, -0.00484868279, 0.00760190235, 0.016066948, -0.000407848303, -0.0196755119, 0.0371671654, 0.00788788404, 0.000643132895, 0.000389324501, -0.00508266734, 0.00259333034, 0.0360440388, -0.0157861672, 0.00979095884, 0.00145720458, -0.00366316014, -0.0146838389, -0.00374895451, -0.0296380594, 0.00812706817, 0.0256447215, -0.0105657084, 0.00102628279, -0.00459649926, -0.0172108728, -0.0213602018, 0.00161319436, 0.0119800158, -0.0303244144, -0.0124479849, -0.00200836849, -0.0180532187, -0.0269550346, 0.00447950698, -0.00925539434, -0.000458545, 0.000117723546, 0.0225873217, 0.000404273538, 0.0096869655, 0.00345517392, -0.0168364979, -0.0157653671, 0.00571962539, 0.018385997, -0.00757070445, -0.00277921814, 0.00159499561, 0.00103148248, 0.0245839898, 0.0094685806, 0.022691315, -0.00356956641, -0.000665556407, 0.0152142039, 0.00101393368, 0.0102745276, 0.00216825795, -0.0114288516, 0.0129575515, -0.021609785, 0.00429491885, -0.02260812, 0.0155885797, -0.0132175349, 0.00268562417, 0.0144238556, 0.00999374595, -0.00814266689, -0.0162853338, -0.0113872541, -0.0046224976, 0.00455490174, 0.00835065357, 0.0118864216, 0.00977536, 0.0059744087, -0.0167741012, 0.000232359787, 0.00374895451, -0.000639558129, -0.00607840205, 0.0116784358, 0.00985855423, -0.0107736951, -0.0127807632, -0.0151622072, 0.000401023746, 0.0200186893, -0.0236688498, 0.0281613562, -0.0148086306, 0.0170340855, -0.0277037863, 0.00396994, 0.00307559874, -0.0119904149, 0.00848064478, -0.0242928099, -0.0164517239, 0.00520745898, -0.000320591527, 0.0176892411, -0.0072899228, 0.0238352399, 0.0047992859, 0.0255199298, 0.000722752709, -0.0104045188, -0.00352276932, -0.0264974646, 0.0110336775, 0.0328202508, -0.0144342547, 0.00094178837, -0.00459129922, -0.0164309237, -0.00522825774, 0.0156717747, -0.0158901606, 0.00775789237, -0.0055532367, -0.0126975691, -0.0162021387, 0.00753430696, -0.00516586192, 0.0109712817, 0.0188227687, 0.00947898, 0.000992485, 0.0173460636, -0.00726392446, -0.00788268354, -0.00576122291, 0.00787228439, -0.0114184525, 0.00145070499, 0.0150894122, -0.000187837708, -0.0108776875, -0.00192517403, 0.00326278643, 0.0392054319, 0.00686355075, -0.0160461497, 0.0109296842, -0.00355396746, 0.0172628704, -0.00467969384, 0.0103889201, 0.00583401788, -0.0109608825, -0.00697274366, 0.00576122291, -0.00920859724, 0.00940098427, 0.0075603053, -0.0283069462, 0.00101848331, 0.0224833284, -0.00958817266, 0.0161605421, 0.0170444846, 0.0129367532, -0.00303140166, 0.00623959163, -0.011376855, 0.0360648409, -0.000250721088, 0.00405833451, -0.0069519449, 0.0126663707, 0.00972856302, -0.00165089197, -0.00442231027, 0.0181364119, -0.031842716, 0.00985335466, -0.0101705343, 0.0169404913, -0.00592761207, 0.0144238556, 0.00454970216, -0.0108360909, 0.0209338292, -0.0118760224, 0.00392574305, 0.00708193658, 0.00836105272, -0.0118656233, -0.00328358496, -0.0115640434, -0.0198938977, -0.0227121133, 0.028452538, -0.0136439065, -0.00211236184, 0.00141560729, -0.0118240258, -0.00979615841, 0.0064371787, 0.0293884762, -0.00309379748, 0.0191555452, 0.0435107499, 0.0127495658, -0.00465889508, 0.0101029389, -0.0257903114, 0.0289725028, -0.0246255882, -0.0122192, -0.015536583, 0.0168988947, -0.0096869655, -0.0112624625, 0.00853784103, -0.0250207614, -0.00149490219, -0.00275062, 0.00490067899, -0.000119185948, -0.00664516492, 0.0060680029]
|
22 Oct, 2018
|
Python calendar module | setfirstweekday() method
22 Oct, 2018
Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions.
In Python, calendar.setfirstweekday(weekday) is a function provided in calendar module for simple text calendars.
setfirstweekday() method sets the weekday (0 is Monday, 6 is Sunday) to start each week. The values MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY are provided for convenience.
For example, to set the first weekday to Sunday.
Syntax: setfirstweekday()
Parameter: no parameter
Returns: None
Code #1:
# Python program to explain working of setfirstweekday() method
# importing calendar module
import calendar
# calling setfirstweekday() function
val = calendar.setfirstweekday(calendar.SUNDAY)
# returns None
print(val)
Output:
None
Code #2: Explaining working of setfirstweekday() method with prmonth() method
# Python code to demonstrate the working of
# setfirstweekday() with prmonth() method
# importing calendar module for calendar operations
import calendar
# using prmonth() to print calendar of 1997
print ("The 4th month of 1997 is : ")
calendar.prmonth(1997, 4, 2, 1)
# using setfirstweekday() to set first week day number
calendar.setfirstweekday(4)
print ("\r")
# using firstweekday() to check the changed day
print ("The new week day number is : ", end ="")
print (calendar.firstweekday())
Output:
The 4th month of 1997 is :
April 1997
Mo Tu We Th Fr Sa Su
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
The new week day number is : 4
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method
|
https://www.geeksforgeeks.org/python-calendar-module-setfirstweekday-method/
|
Pandas
|
Python calendar module | setfirstweekday() method
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0129104163, 0.00250431616, -0.00749935303, 0.0556442216, -0.0111157922, 0.0101804128, 0.0246244166, 0.0276480857, -0.0105828429, -0.00715674274, -0.00525879208, 0.0102076037, -0.0324772559, -0.00668905303, -0.00637907255, 0.0316941477, -0.0182834119, 0.0347830765, 0.0482481942, -0.000237583736, 0.0202520601, 0.00198632246, 0.0013031417, 0.0258860905, 0.00927222427, 0.00286867935, 0.0270172488, -0.0102565484, 0.00932660606, 0.00656397315, 0.0184356831, 0.0171413776, 0.00770600652, 0.0317594074, -0.0417005345, -0.0211765636, -0.00445121108, 0.0313243456, -0.0227101501, 0.0274958145, -0.0413742401, -0.014802929, 0.0465949662, 0.0276263319, -0.0376544744, 0.0401560701, -0.0094788773, 0.0127255153, -0.0215681177, -0.0318029113, 0.0120946784, -0.0133346, 0.0439846031, 0.0216986351, -0.00195097376, 0.000427922641, -0.00721656391, 0.00349679752, -0.0237760488, -0.0416135229, 0.0445936881, -0.0094081806, -0.0273652971, -0.0254292786, 0.00803230144, 0.0278438628, -0.00576998806, 0.0368278585, 0.0323467366, -0.0205783546, 0.0252552535, 0.010147783, -0.0026593064, -0.0393947139, -0.00588419149, -0.0405693799, 0.0262123868, 0.000827294483, -0.047465086, -0.0127363922, -0.00735252025, -0.0448112153, -0.00793985184, -0.0243633799, 0.038328819, -0.0149225704, 0.036088258, -0.0235367659, 0.0281701591, 0.020502219, 0.00116718537, -0.0114420876, 0.0154555188, 0.00759724155, -0.0143569922, -0.00661835587, 0.00821176451, 0.0292143039, -0.0262341388, 0.00357021415, -0.00477478746, -0.00413307361, -0.0149008175, -0.0499884337, 0.0221663248, 0.0240805913, -0.00374967651, -0.00808124617, -0.00179326441, -0.0165649224, 0.0108547555, 0.0107351141, 0.0105937198, 0.00548176048, -0.0215463638, -0.00235748338, -0.0242546145, -0.00704797776, 0.034456782, -0.0149987061, 0.0443544053, -0.0226448923, 0.0178265981, 0.0133563532, -0.0284094419, -0.00952238403, 0.015020459, 0.0197843704, 0.0291490443, -0.0211983155, 0.00471496675, -0.0041004438, 0.0139545612, -0.0194254443, -0.00824983232, 0.00301823113, -0.00740146451, 0.0390684195, -0.0110940393, -0.0370236374, 0.00773319788, 0.00776582723, 0.0124100968, 0.00790178403, 0.000527850585, -0.0321292058, 0.0242328625, 0.00232213456, 0.00218074, -0.00437507592, -0.0327600464, -0.0486397482, -0.0090275025, 0.00381221646, 0.017261019, -0.0159123335, -0.00139083364, -0.0057427967, -0.00183541083, -0.00918521173, -0.0198605061, 0.0185662, 0.0182834119, -0.0279091224, 0.0386116058, 0.039372962, 0.0288662557, -0.0125623681, -0.00737427315, 0.0235150121, -0.00240778713, -0.0385898538, -0.0233409889, -0.00266202562, 0.0352398902, 0.00220657187, 0.0431362353, -0.00226503308, 0.01358476, -0.0139871901, -0.0224926211, 0.00553342374, 0.00527782599, 0.0285617132, -0.0165758, 0.0455943272, 0.00289315148, 0.00100743666, -0.0188924968, 0.0123230843, 0.0347613208, 0.0132258348, -0.0236890372, 0.0522072427, -0.00286596012, -0.0229059272, -0.0320857, 0.0326512791, 0.00355389924, 0.0115726059, -0.0538169667, 0.00805405527, -0.0293230675, -0.00315962592, -0.00722200191, 0.0162930097, -0.003804059, 0.0512936153, 0.013998067, 0.023950072, 0.0474215783, -0.031259086, 0.0138131659, -0.0215572417, 0.0146506578, 0.0180006232, -0.0154990256, 0.03611001, 0.0187728554, -0.00772232143, 0.0286704767, 0.0177178327, -0.0167389475, -0.0211983155, -0.0194254443, -0.0328253023, 0.0352181345, -0.0109743979, -0.00560140191, -0.031280838, -0.0364145525, -0.00748847658, -0.0298451409, -0.00840754155, 0.0540344976, -0.00578086451, 0.0105393371, 0.0147050405, 0.00842385646, 0.0186205842, 0.0322162211, -0.0041194777, -0.0199583936, -0.0116813704, -0.0117901359, 0.0430492237, -0.0462034084, 0.0519897118, -0.00260220468, 0.00631925184, -0.0122795785, 0.0175438095, -0.0338476971, 0.00901118759, -0.00739602605, -0.0142373499, 0.00189115305, -0.0212853272, 0.0262341388, 0.00876646582, 0.000438119372, 0.0310198031, 0.0125623681, -0.0126602566, 0.0104251336, -0.0371324, -0.00469321385, 0.00345873, -0.0196212213, 0.00538659096, 0.0067760651, -0.0485527366, 0.023754295, -0.00805405527, -0.0126167508, -0.00936467387, -0.0458118543, -0.0107024852, -0.013399859, 0.0336736701, -0.0330863409, -0.00732532889, 0.0357837155, -0.011768383, 0.0468124934, 0.00420649, -0.0145092625, -0.0063681961, -0.0318681709, -0.015640419, 0.024559157, -0.00537299551, 0.0132367117, 0.0363492928, 0.0220684372, 0.0349788517, -0.0205783546, 0.0125732441, 0.0199366417, -0.0209699087, -0.00672168238, 0.00527238753, 0.026190633, 0.0063464432, -0.00357021415, -0.00963114854, 0.0483787134, -0.0258860905, -0.0175655615, 0.0309327915, 0.00363003486, -0.0278656166, -0.041983325, 0.0102511095, 0.0395904928, -0.037763238, 0.0190012604, -0.0276480857, -0.0368278585, 0.0127037624, -0.0164670348, 0.00250023743, 0.010740553, -0.00910907611, -0.00205294113, -0.0157926902, -0.0380025208, 0.0368496142, -0.00269329548, -0.0437018126, -0.0158579499, -0.0103707509, 0.0289967731, 0.0358489752, -0.0311503224, -0.0226231385, -0.0179136097, -0.00746672321, 0.00254782219, 0.0217421409, 0.000981604913, 0.0279308744, 0.0236890372, -0.00848911516, -0.0304107182, -0.00391282421, 0.012170814, -0.0010448246, -0.0192840509, 0.0082172025, 0.000558780623, 0.00476391101, 0.0233192351, -0.0117248762, 0.00241050636, -0.0142264739, -0.0438540839, -0.00755373528, -0.00769513, -0.014204721, 0.00140714832, -0.0169456, 0.00727638463, 0.00385572249, -0.0244068857, -0.0221445728, 0.0470300242, -0.0148573108, 0.00368169835, -0.0176090673, -0.0141720911, 0.00734708179, 0.000997919706, -0.0303019546, 0.0221663248, 0.0211765636, 0.025559796, 0.0207958855, -0.00236020237, -0.0144875096, -0.035522677, -0.00639538746, -0.0135195, 0.00165594846, -0.00556877255, -0.0389379039, -0.0114420876, -0.0182181522, -0.0122360727, -0.0065966025, -0.00693377433, -0.0197952464, -0.00194689515, -0.0529468469, -0.0181746464, -0.00626486912, -0.022318596, -0.0136065129, 0.00948975421, 0.0160972327, -0.0298668928, -0.016630182, 0.0311938282, -0.00664554676, -0.0156621728, -0.0278438628, -0.0224491153, 0.00835315883, 0.0365885757, 0.000412287656, -0.018055005, 0.0140959555, -0.0261036213, -0.00503038522, 0.0150313349, 0.0394599736, -0.0302584488, 0.0133781061, -0.0149660762, 0.028800996, 0.0613435097, 0.00222696527, 0.0037823061, 0.0344350263, 0.00942449458, 0.0130844405, -0.000354506221, 0.00462795468, -0.0264951754, 0.0763095841, 0.0191426557, -0.0142917326, 0.00852174498, 0.0226448923, 0.0335649066, 0.0244503915, 0.0441368744, 0.00879909564, 0.0325207636, -0.0296928696, -0.0345437936, 0.00628662203, 0.027039, -0.00824983232, -0.014813805, 0.0115834819, -0.0429839641, 0.0519027, 0.0166628119, -0.00477478746, -0.0342174955, -0.0430927277, 0.0283659361, 0.00971272215, 0.00663467031, -0.019479828, -0.00127731008, -0.0217638947, -0.00390738575, 0.0259513501, 0.0371324, 0.00673255883, 0.0456813388, -0.0200236533, 0.00527782599, -0.0187511016, 0.00748847658, -0.037741486, -0.00625943113, 0.0120185427, 0.0170326121, -0.0208285153, -0.0163256396, -0.011561729, 0.0311503224, -0.00582437078, -0.0227101501, 0.0167933293, 0.0444196612, 0.0114855934, 0.0247984398, -0.010550214, -0.00457901042, 0.000284828566, 0.0292143039, 0.00679238, -0.0624311604, -0.0262558926, -0.0222315844, 0.0101640979, 0.0104414485, 0.0257773269, 0.0439193435, 0.0119532831, 0.00113387604, 0.0240805913, 0.0388073847, 0.0217203889, 0.046899505, -0.0197517406, 0.00661835587, 0.0159667153, -0.0112354336, -0.0104849543, -0.0291490443, -0.00184356829, 0.000357905112, -0.0217530187, 0.00662923232, 0.00370345125, 0.0130409347, 0.0285182074, -0.0338476971, 0.0292578097, 0.000446616643, 0.00679238, 0.0178048443, -0.00597664155, -0.00328198657, 0.00662379386, 0.00587875303, -0.00278438628, -0.0132802175, -0.00610172143, 0.00485092308, -0.00378774432, -0.0216986351, -0.0163147636, -0.0294970926, -0.00259812619, 0.00804861635, 0.0114312107, 0.00953869801, 0.024733182, 0.0138131659, -0.0255162902, -0.0334126353, 0.00625943113, -0.0301931892, 0.00654765824, -0.0212418213, 0.0411784612, 0.0311068147, -0.0389596559, -0.000455793692, -0.029605858, -0.0394817293, 0.0148899406, -0.00880997255, 0.00965290144, 0.0122469487, 0.00132489472, -0.0378937572, -0.00416570297, 0.00152271125, -0.0314113572, -0.00622136332, 0.0248419456, 0.0155751612, -0.0107242381, -0.00382309291, 0.00249887793, 0.00883716345, -0.00503310468, 0.00826614723, 0.0165540464, -0.0154555188, 0.0177395865, 0.0153576303, 0.019871382, 0.0187075958, -0.0172718968, 0.0399167873, 0.0188163612, -0.00344513427, 0.00436691847, -0.0352833942, 0.0028795558, -0.000648511865, 0.00011369351, -0.0193058029, 0.00364363054, 0.0112571865, -0.0340217203, 0.00891329907, 0.0258425847, -0.0230364464, -0.0234062467, -0.0242328625, 0.023123458, 0.031824667, 0.0363057852, 0.0149116935, -0.000122020836, 0.0226231385, 0.0380242765, -0.0199040119, 0.040982686, 0.0133237233, -0.0131496992, -3.93636146e-05, -0.0326730311, -0.0340434723, -0.02716952, -0.0203608256, -0.00563403172, -0.0145745222, -0.0130083049, -0.00220657187, -0.019871382, 0.00228134776, 0.00711323693, -0.00832596794, -0.019871382, -0.00174975838, -0.00382309291, -0.0128016509, 0.00751022948, -0.0102456715, 0.00784196332, 0.00229086471, 0.0283876881, -0.00188435521, 0.01542289, 0.0071839341, 1.58261701e-05, -0.0110179037, -0.0300844237, -0.00573192025, -0.0502059646, -0.00376327219, -0.0467254817, 0.00946256239, 0.0220031776, -0.0214702282, 0.00561771682, -0.0232974831, 0.0112789394, -0.0291925501, 0.0136826485, 0.00314603024, -0.0166084301, 0.00398896, 0.0494663641, -0.00465242658, 0.0350006074, -0.022927681, 0.0205239728, 0.0114094578, 0.00692833634, -0.0684785, -0.000319157552, 0.0117575061, 0.00628662203, 0.0126493797, 0.00523160072, 0.0281484053, 0.00457357196, -0.0393077023, -0.0193058029, 0.0277568512, 0.00674887374, 0.0219161659, -0.00131401827, 0.013595636, -0.00167770148, 0.0210242923, -0.0154011371, 0.0146289049, 0.0013588838, -0.0230581984, -0.0111810509, 0.00501679, 0.0172718968, -0.00805405527, -0.0238195546, -0.0255380422, 0.0353921615, 0.0238848142, -0.0108166877, 0.031824667, 0.00855981279, -0.0160319749, -0.0204043314, -0.00687395362, 0.00992481411, -0.0207306258, -0.027191272, 0.0386333615, -0.00078990648, 0.00427446794, 0.0315636285, 0.0245156512, -0.00398352137, 0.0205783546, 0.0111157922, 0.0278656166, 0.00986499339, 0.0143787451, 0.0126058739, -0.0272565316, -0.000589370844, -0.00426359149, 0.00530229835, 0.0219814237, 0.0162495039, -0.0166954417, -0.0113877049, -0.00549535593, 0.00543009723, -0.00495696906, 0.0110668475, -0.0314983688, 0.0225578789, -0.0185226947, 0.017228391, -0.00273952074, 0.00392098166, 0.030432472, -0.0267127063, -0.0222424604, -0.0295405984, -0.015009582, -0.024733182, -0.010751429, 0.0122687025, -0.0187075958, -0.0295623522, -0.00161380204, 0.00784740131, -0.000760675874, 0.00157845335, 0.0201432947, -0.00554430066, 0.00808668416, -0.0234497525, -0.0400908105, -0.0141612142, -0.0394599736, 0.00742321741, -0.00796160474, 0.0126928864, 0.0470300242, -0.0183051638, 0.000938778685, -0.035522677, 0.012779898, 0.0108710704, -0.0246896762, 0.0156730488, 0.0053349277, 0.00379046332, 0.0518156886, 0.0259731039, -0.00478566391, -0.0182181522, 0.0249507111, 0.0195015799, 0.0338041894, 0.0456378311, -0.0061887335, 0.0337171778, 0.000737563241, -0.0136608956, -0.0086196335, 0.0176416971, -0.0168259591, 0.0264734235, 0.0226448923, 0.00946800131, 0.0184248071, -0.0332386121, 0.0220793132, -0.00538115297, 0.0101097152, 0.00911995303, -0.0356531963, -0.0139871901, 0.0121381842, 0.0233844947, -0.0283006765, -4.2571337e-05, 0.0362187736, 0.00905469339, 0.00970184617, -0.0306064971, 0.00179870264, 0.027387049, 0.0199148878, -0.0294970926, -0.0118010119, 0.00136432215, 0.0354139134, -0.00941361859, 0.0367626, -0.000148107458, -0.00578086451, 0.012366591, -0.0286487248, -0.0059657651, -0.00917433575, 0.0489877947, 0.00453822315, -0.0183377936, 0.0411784612, -0.017250143, -0.0073633967, -0.0138240429, -0.00561227882, 0.0122904554, 0.00331733515, 0.00101831311, -0.0102239186, 0.0118118888, -0.020697996, 0.00355661847, 0.0295405984, 0.00975079, 0.0132475877, -0.0126058739, 0.0229494348, -0.0303237066, -5.48923817e-05, 0.021317957, -0.0026565874, 0.0192079153, 0.0389814079, 0.0169020947, 0.00651502889, 0.0347178169, -0.00567209953, -0.00289043225, -0.0574714728, 0.0240153316, -0.0092831, 0.00973991398, 0.0101042772, -0.0276263319, -0.0176525749, 0.0238630604, 0.00701534841, -0.0129430452, 0.00652590534, -0.0311503224, 0.0194580741, 0.0192949269, -0.0258425847, 0.0421355963, 0.00573192025, 0.0182942878, 0.0443979092, 0.0320857, 0.000729405903, 0.00565034663, -0.0199583936, 0.019817, -0.025364019, -0.023123458, 0.00387747539, -0.0172175132, -0.00728726108, -0.0026579469, 0.0167715773, -0.00144657574, -0.0218182765, 0.00458716787, 0.0195777155, 0.014400498, 0.00152135175, -0.00424183859, 0.00137044012, 0.0131605761, 0.0428534448, 0.0179462396, -0.00265114917, -0.0438540839, 0.0226666443, -0.00970728416, 0.0208828971, 0.00363547308, 0.0209916625, -0.0318899229, 0.00324935699, -0.0212527, -0.0116378646, -0.00949519221, 0.0138457958, -0.0510325804, 0.00871208403, -0.017239267, 0.0251247361, 0.00532133179, 0.000238093577, -0.0461163968, -0.0101695359, -0.0074286554, 0.00984867848, 0.0111701749, -0.011714, -0.0340217203, -0.00118417991, -0.00177287101, 0.0121381842, -0.0376762263, 0.00450831279, -0.0161733683, 0.0295623522, 0.00198904169, -0.0065748496, 0.00131537777, -0.00203118799, -0.0251247361, -0.0537299551, 0.0143026095, -0.018055005, -0.0254510306, -0.0090710083, 0.0319116786, 0.0281266514, 0.0131605761, 0.0200997889, -0.000770192768, 0.0049732835, 0.0172718968, -0.0227971636, -0.0214593522, 0.00906013232, 0.000546204683, -0.0110505335, 0.00835315883, -0.0380460285, 0.0031759406, 0.0104523255, -0.0246026628, -0.0542520285, -0.00894592889, -0.0482916981, -0.000925183063, -0.0546870865, -0.00245265267, 0.0332168601, 0.00535124261, 0.00401343172, 0.0246679224, -0.0041004438, -0.0395904928, 0.0164887868, 0.019882258, -0.00292306184, -0.0294753388, 0.0255162902, -0.0124644795, -0.0155099016, 0.0120294187, -0.00257909228, -0.0205239728, -0.0157383084, -0.0195124578, 0.00827702321, 0.00927766226, -0.0200236533, -0.0251682419, -0.00800511055, -0.00948431622, -0.0211765636, 0.00685763871, -0.0295405984, -0.0147702992, 0.000123295424, -0.0114094578, 0.0410914496, -0.026973743, 0.0137696601, 0.000941497798, 0.000816418, 0.0309110377, -0.0197408646, 0.00808668416, 0.00190338911, -0.0383505709, 0.016238628, 0.00713499, 0.0128560336, 0.0125514911, 0.0184683129, -0.00570472889, 0.00994656701, -0.0369583778, -0.00600383291, 0.0125079853, 0.0288662557, -0.0370671414, 0.0167933293, -0.031041557, 0.0086196335, -0.0156730488, 0.0105937198, 0.0269084834, -0.0140415728, -0.00394001557, -0.0273000374, 0.0316071361, -0.00291762361, -0.0428751968, 0.0232757293, 0.014400498, -0.00155534083, 0.0374804512, 0.0226448923, -0.0234497525, 0.00398896, -0.0423313715, 0.00463883113, 0.00228814548, 0.0221880786, 0.0104414485, 0.0092831, -0.00140171009, -0.0216551293, -0.00426631048, -0.0104632014, -0.0415482633, -0.0171740074, -0.031237334, -0.000872160075, -0.00832596794, 0.00710779848, -0.00696640415, 0.0274740625, 0.0187728554, -0.0110287797, -0.00806493126, 0.00971816108, 0.0152706187, -0.00270009344, -0.00472312421, -0.0454203, -0.012779898, 0.00693377433, -0.0155425314, -0.00109920721, -0.00138675491, -0.0125732441, -0.0232974831, -0.019697357, -0.00704254, 0.0138675487, -0.0181420166, -0.0313678533, 0.0146397809, 0.0112245576, 0.0012283657, -0.0185009409, 0.0140742026, 0.0297798812, 0.00906013232, -0.0280613936, -0.0318681709, 0.00204478367, -0.0051092403, 0.0112571865, 0.0244503915, 0.0275175683, 0.00329014403, 0.00806493126, -0.000258826913, -0.0264299177, 0.0325642675, -0.00286596012, 0.0133672291, 0.00348048285, -0.00842929445, 0.0280613936, 0.0077875806, 0.0160863567, -0.0124427266, -0.010745991, 0.0226883981, 0.019479828, -0.0262123868, 0.0302584488, -0.0110233417, 0.00507661048, 0.0281701591, 0.0118771475, 0.0170869958, 0.00673255883, -0.00654765824, -0.0176852029, -0.0119859129, -0.00968553126, 0.00764074735, -0.00307805208, 0.00171712891, 0.00774407433, 0.00387203717, -0.00895136688, 0.0178374741, -0.0391989388, -0.00555245765, 0.00460892078, 0.0223621018, -0.0220358074, 0.00754829729, 0.00972903706, 0.0116487416, 0.0176308211, 0.00642257836, 0.0263429042, 0.0086685773, 0.0216007475, 0.0171848834, -0.0616480522, 0.000528530334, 0.00953869801, -0.0189795084, -0.00858700369, -0.0242981203, -0.00665098522, -0.0059657651, 0.0142482268, 0.00180414098, 0.0329993293, 0.0247766878, -0.0108547555, -0.00715674274, 0.0038965093, -0.00067672279, -0.0147920521, 0.00552254729, -0.0100390175, -0.000504738, 0.000542805763, -0.0145201394, -0.0226666443, -0.00135072647, 0.0119532831, 0.00700447196, -0.00529414089, -0.00180278136, 0.0247766878, 0.0157709382, 0.02716952, -0.0121599371, 0.000913626747, 0.0047258432, -0.00673255883, -0.0407216512, -0.018055005, -0.000987043139, 0.0482046865, 0.0113877049, -0.00557964901, -0.00181909616, -0.0129647991, -0.0374804512, 0.0351746306, -0.000425883307, -0.0129430452, 0.00726550817, -0.0165214166, -0.0177722163, 0.014400498, -0.0121381842, 0.0275828261, 0.00963114854, 0.0182725359, -0.0107894968, 0.00416298397, 9.38417543e-06, 0.0254292786, 0.00255190092, 0.000913626747, 0.00109988695, 0.00919608865, 0.0182942878, 0.011975036, -0.0101967268, 0.0150857177, 0.000374899682, 0.0193493087, -0.00157437462, -0.0026769808, -0.023123458, -0.000625059358, 0.0102402335, 0.00731445244, -0.0120402956, 0.0041412306, -0.00804861635, 0.0170652419, 0.00262939604, -0.0274088029, 0.0160863567, 0.0321944654, 0.00604733918, 0.00560140191, 0.0128234038, -0.0115726059, 0.00668361457, -0.0104740784, -0.00553070474, -0.00982692558, -0.00622136332, -0.0160537269, 0.000300293614, -0.00432613166, 0.0199801475, -0.00481829327, -0.0387856327, -0.000674683426, -0.00696640415, 0.00303998427, 0.013193205, 0.00137655821, 0.0279091224, 0.0106045967, -0.0202085543, -0.00456813397, 0.00433156965, 0.0536864474, 0.000368441746, 0.00842385646, -0.0165866762, 0.00539746741, 0.00213723397, -0.00186124258, -0.0127037624, -0.00801598746, 0.005857, -0.0312155802, 0.0107840588, 0.0112789394, -0.0209264029, 0.0423531272, -0.0338259414, -0.00709692203, 0.00684132427, -0.0105447751, -0.0208176374, 0.0153141245, -0.0347395688, 0.0411349572, 0.017261019, -0.00359468628, 0.0106426636, 0.00836403575, -0.0115834819, 0.0102619864, -0.0200454053, 0.00879365765, 0.00466058403, -0.0149116935, 0.0138457958, -0.0125188623, -0.0275610741, -0.025559796, -0.0294970926, 0.0303454604, -0.00259404746, 0.0104360105, 0.0299104, -0.00115291, -0.00458444841, -0.01704349, -0.0220793132, -0.0181964, -0.00605821563, 0.0148355579, 3.03352626e-05, 0.0217965245, -0.0255380422, 0.00768969161, 0.0178701039, -0.0358272195, -0.00386116072, 0.013595636, 0.00885891635, 0.00347504462, -0.0368278585, -0.0172827728, -0.00508476794, 0.0301714353, 0.0134542417, -0.0110396566, 0.0101369061, 0.0131496992, 0.0163147636, -0.000190168968, -0.0299974121, 0.0164996646, -0.00716218119, 0.0100390175, 0.00606365362, -0.00149008178, -0.00911995303, -0.00182861311, -0.0210025385, -0.0193601865, 0.0357619599, 0.0120620485, 0.0100988382, -0.0274305549, -0.00310252421, 0.00679238, 0.0206653662, -0.00823351741, 0.0176634509, 0.0187837314, 0.015009582, 0.0205239728, -0.0239935797, -0.0141829681, -0.000704933715, 0.00503854267, -0.000536347856, -0.0167063177, -0.00451918971, 0.00115426956, 0.00213859347, -0.0057427967, -0.00283604977, -0.0178918578, 0.00355118024, -0.00915802084, -0.00630837539, 0.00519897137, -0.00361643918, 0.011561729, -0.00484276563, -0.00863050949, 0.00450831279, 0.0228841752, -0.00372520438, -0.0130953165, -0.0487267599, 0.00517449901, -0.0268214718, 0.00263483427, -0.00985411741, -0.0169129707, -0.031824667, -9.13456824e-05, 0.029431833, 0.00798335765, 0.00472312421, 0.00211140234, 0.00343153859, 0.000593109638, -0.0147159165, -0.0176634509, -0.0108275646, 0.0100770853, -0.0224926211, -0.0117466301, 0.0121381842, 0.0067543122, 0.00206109835, 0.0319334306, 0.010142345, 0.0041167587, -0.0465514585, 0.00354302279, -0.0266256947, 0.028605219, -0.0257990789, 0.00108697114, -0.00923959445, 0.00406509545, 0.00667817658, 0.0131061934, -0.00266746385, -0.0135195, -0.00141530577, 0.0129647991, -0.01582532, -0.00327382912, -0.0252117477, 0.0152597418, -0.0218182765, -0.00273272279, 0.000209882637, -0.0356749482, 7.01449826e-05, 0.0365233161, 0.0105393371, 0.00100607704, 0.0229711868, 0.00691202143, 0.00564490817, 0.0086250715, -0.0100063886, 0.0419615731, 0.0267344583, -0.00149823911, 0.0324990079, -0.0262558926, -0.034456782, 0.0100770853, 0.000408548862, 0.002231044, 0.00151591341, -0.0105828429, 0.0257555731, -0.00715130474, 0.00767337717, -0.0133563532, -0.00547632249, -0.00858700369, 0.000862643123, -0.00840754155, 0.017848352, 0.0235367659, -0.0271477662, -0.00643889327, 0.0151401, -0.0232322235, 0.0031949745, -0.00543553522, 0.0321509615, -0.00361372018, -0.00709148403, -0.00875559, -0.01744592, 0.015020459, -0.00825527, 0.00391010474, 0.00846736226, 0.0448982306, -0.0145853981, 0.0302802, -0.0214702282, 0.0288445018, -0.00435060356, 0.0122795785, 0.019479828, 0.00299919746, -0.0164887868, 0.0186967198, -0.0157274324, 0.00874471292, -0.000427582767, -0.00454094261, 0.0144440038, 0.0085978806, -0.00612347433, 0.0202520601, 0.0393077023, -0.00347504462, -0.0280396398, 0.0386551134, -0.0211765636, 0.021491982, -0.0475085899, 0.0150965946, -0.0120511716, 0.00975622889, -0.0314113572, 0.0239935797, -0.0111919278, 0.0049297777, 0.00672168238, 0.0113441991, -0.000406169624, 0.00788003113, 0.00996832084, -0.00126779312, -0.00566666108, 0.00809756108, 0.00550079439, 0.00551439, 0.000976846437, -0.0170761198, -0.0119097773, -0.00955501292, 0.0174350441, -0.0726550817, 0.0045219087, -0.0194254443, 0.00528598344, 0.00824983232, -0.037110649, -0.0252770074, 0.00298832078, -0.00491890125, -0.00482917, 0.00911451411, 0.00270145293, -0.00873927493, 0.00710236048, 0.00449743634, 0.022927681, 0.00604733918, 0.0202411823, -0.0175438095, -0.00354030356, 0.0268649776, 0.0019020295, 0.0307370145, -0.0173915382, 0.00971816108, -0.0156948026, 0.0214375984, 0.0244068857, -0.0282354169, -0.00863594841, -0.0176852029, -0.0213940926, 0.0112245576, -0.0187184718, 0.0251247361, 0.0170543659, -0.0113224462, -0.0280396398, 0.0192840509, 0.00638994901, -0.0533384, 0.0186858419, 0.00245265267, -0.0160319749, 0.0063464432, -0.00190338911, -0.00886979327, -0.00247032708, 0.0127581451, 0.0134542417, -0.00218481873, -0.00138199644, 0.0417440422, -0.00339075178, 0.00993025303, 0.00882628746, -0.024341628, -0.00850543, -0.00534852315, -0.00399167882, 0.017456796, -0.00953326, 0.0231669638, 0.00105094269, 0.000155839982, 0.014813805, 7.46060541e-05, -0.0098813083, 0.00295297219, 0.0128342807, -0.00261172163, -0.00793985184, 0.0110994773, 0.0158144441, 0.0238413084, -0.0152379889, 0.0099030612, -0.00606909208, 0.00154854299, 0.000345329172, 0.00994112901, -0.0114094578, 0.00729269907, -0.00609628344, -0.0324119963, 0.00327382912, 0.0149225704, 0.00832596794, 0.000677402597, -0.0159884673, -0.0184900649, 0.00289043225, -0.0345872976, 0.00761899445, 0.0376544744, 0.0164126512, -0.00730901398, -0.00846192427, -0.000632536947, -0.0212527, -0.000145898171, -0.00200807536, -0.000558780623, 0.00472040474, 0.00910363812, -0.0212091934, -0.0176090673, 0.00482645072, 0.0229059272, 0.00305629894, 0.0153576303, -0.00176063494, 0.0185444485, 0.0177722163, 0.00329286302, 0.0230146926, 0.0159449615, -0.00675975, -0.030432472, 0.00682500936, 0.00309708598, 0.00332549261, -0.00504941912, 0.012366591, -0.0266256947, 0.0209481567, 0.01034356, -0.00125215808, -0.00852174498, 0.00139627187, 0.00133441167, -0.0139871901, -0.0169891063, -0.0180767588, 0.00451103225, 0.0240370855, -0.019697357, -0.0112463105, -0.00867401622, -0.00599839492, 0.00935923588, 0.00647152262, -0.0275828261, 0.0276698396, -0.00494609261, 0.0175438095, -0.0193710625, -0.00226503308, 0.00476119202, 0.000950334943, -0.0120729245, -0.018250782, -0.00745584676, 0.000967329543, 0.0200454053, 0.00424999604, 0.00384212681, -0.0133237233, 0.00481557427, 0.0313025936, -0.00746128522, -0.00917977374, -0.00139219314, -0.00589506794, 0.00333908829, 0.0029747251, -0.0151509773, 0.013193205, 1.75787336e-05, 0.00095101475, 0.00595488865, 0.0108384416, -0.00784740131, -0.00852718297, 0.0378502496, 0.00820088759, 0.00910907611, -0.00266202562, -0.00290674693, -0.0162821338, 0.000900031126, 0.00937555078, 0.00846192427, -0.00415210752, 0.00791809894, -0.00641170191, -0.000172154745, -0.0073851496, -0.0124209728, 0.0110722864, 0.00407053344, -0.00388563285, 0.00145201397, 0.0149008175, -0.000200535636, 0.00768969161, -0.0027680716, 0.0183704235, 0.00451647025, -0.0200236533, 0.00312971557, 0.0189577546, 0.00197544601, -1.87258647e-05, -0.000681481266, -0.0187511016, 0.0122251958, -0.00994656701, 0.00716218119, 0.0130409347, 0.012997428, 0.00398896, 0.00140578882, -0.0208176374, -0.00766250072, -0.0199910235, -0.011779259, -0.00560140191, -0.036719095, -0.018881619, -0.0116269877, -0.0016423529, 0.00403246563, 0.000948295637, 0.010963521, -0.0274740625, -0.026995495, 0.00442673918, 0.0245809108, -0.00773863634, -0.00177151139, -0.000413987116, -0.0173045266, 0.00844017137, -0.01034356, -0.0172936488, 0.0114529636, 0.0139871901, 0.0090982, -0.0170869958, 0.0101858508, 0.00401343172, -0.0133019704, -0.0136717716, 0.00163555506, 0.000201555304, 0.000434720481, 0.0169673543, 0.00591682084, 0.0181746464, -0.000557081192, -0.0277350973, 0.0224708673, -0.0197408646, -0.0100825243, -0.00270009344, 0.00503854267, -0.00419289432, 0.0118336417, 0.00576998806, -0.00185580435, -0.0197299868, -0.00730357599, 0.0176743269, 0.00333365, 0.019479828, 0.00498144096, -0.00136840076, 0.0208067615, -0.00311612, -0.00539474841, -0.0252335016, 0.0165105406, 0.00907644629, -0.00822807942, -0.0218835361, -0.0217312649, 0.00435604202, 0.00557421101, -0.0231669638, -0.00737971114, 0.0113224462, 0.0104360105, 0.0183486715, -0.00739058806, 0.00662379386, 0.0233409889, 0.00266882335, 0.0153685072, -0.00750479102, -0.00631381338, -0.0139871901, 0.00758092664, -0.00931029208, -0.00178238796, 0.0212853272, 0.0217965245, 0.00803774, -0.00915258192, -0.00691746, -0.0181964, -0.00592769729, 0.0120620485, 0.0136935245, -0.0021413127, 0.0010448246, -0.0215463638, 0.0116269877, -0.0164996646, -0.0106644174, -0.00923415646, -0.0120838014, -0.023732543, 0.012986552, 0.0226666443, -0.0140742026, 0.031259086, 0.0142264739, 0.0262123868, -0.00968009327, 0.0390901715, 0.00435876101, -0.00686851563, -0.000283129135, 0.00927222427, 0.00295297219, -0.0169673543, 0.00122904556, 0.0163473934, 0.00897312, -0.00731445244, -0.0226013865, -0.0166084301, -0.00768425362, 0.00534852315, -0.00589506794, 0.0203825776, 0.0113441991, 0.0022731903, 0.00594945, -0.0028605219, -0.0100498945, 0.0100498945, -0.00346144894, 0.0141720911, -0.00850543, -0.0132258348, 0.000509156554, -0.0120729245, -0.00532405125, -0.0100879623, 0.000930621289, -0.0145092625, 0.0335866585, 0.00122428709, -1.14075883e-05, 0.00650415244, -0.0233409889, -0.0287139844, 0.023428, 0.00802142546, 0.00753198238, -0.0179244876, -0.0160319749, -0.00236971932, 0.0194363222, -0.00723287836, -0.0122578256, 0.0108873853, 7.57531889e-05, 0.00351855066, 0.00427718693, -0.00878822, -0.0170761198, -0.0162603818, -0.00249479921, 0.01866409, -0.00289315148, 0.0128560336, 0.0323467366, -0.0118118888, 0.0210351683, -0.00729269907, -0.00511467829, -0.000339381077, 0.0144222509, 0.00037388, 0.0197408646, 0.000109954708, 0.0034886403, -0.00234116847, 0.0148246819, 0.0189142488, -0.0103925047, 0.0181964, 0.00946800131, 0.0213723406, -0.0319986902, -0.00870120712, 0.00342066213, -0.000301143329, 0.00994656701, -0.0302802, 0.00588419149, -0.0141720911, -0.0175438095, -0.00225687562, 0.00737971114, 0.00553070474, -0.0139654372, -0.00617785705, -0.0049515306, 0.016641058, -0.00390466675, -0.0138893016, 0.0102728624, 0.00447568344, -0.00898943469, 0.0388073847, 0.0317376517, 0.0145745222, -0.000973447575, -0.00339347078, 0.00749935303, 0.0015879703, 0.016641058, 0.0121925669, -0.0330863409, 0.0174785499, 0.00809756108, 0.00123856252, -0.0190447681, -0.00321400841, 0.0124971084, -0.00103734701, 0.0367408469, 0.00766250072, -0.00870120712, 0.014802929, 0.00934292097, 9.95030641e-05, -0.0112245576, -0.0193601865, 0.0239718258, -0.00078990648, 0.00624311622, -0.0183051638, 0.000101117541, -0.00404606154, -0.0304977316, -0.0252770074, 0.00718937255, -0.0181528926, -0.000272252626, -0.00592769729, -0.0167171936, -0.0078310864, 0.00794529, 0.0137805371, -0.00291218539, -0.0327382907, -0.014204721, -0.0284094419, 0.00243905722, 0.0206001084, -0.0185444485, 0.0244503915, -0.023732543, 0.0175111797, 0.0102021657, -0.00982148759, 4.66075398e-05, -0.013388983, 0.0115726059, -0.0241676029, 0.0171413776, 0.00890242215, -0.0204043314, -0.0272782836, 0.00200399687, 0.0238630604, 0.00257773255, 0.00932116807, 0.0170217361, 0.00246896758, 0.00429350184, -0.000396312797, -0.0111212302, -0.00660747942, -0.0120729245, -0.0128777865, 0.00266746385, 0.0189903844, 0.0447242036, -0.0175873153, -6.9635149e-05, 0.00634100474, 0.00649327599, 0.0123230843, -0.0167607, -0.00309436675, 0.0147485463, 0.00224599917, -0.00671624439, -0.0173480324, -0.00273136329, 0.0143461153, -0.0239935797, -0.014607152, 0.00183269172, 0.0313896053, 0.0173262786, 0.0200019, 0.0135521302, -0.012997428, 0.00148872216, 0.0267997179, 0.0184356831, -0.0166736878, 0.000732125, -0.0166954417, 0.011365952, 0.00501950877, -0.0195342097, -0.0101858508, 0.0266474467, 0.00319769373, 0.0125623681, -0.00304814172, 0.000448656, 0.0205348488, 0.00377414864, -0.0108221266, -0.000600247353, 0.00388291362, 0.0140415728, -0.000342779967, -0.00478022592, -0.0381330401, 0.00791266, -0.0222533382, 0.00372520438, 0.00835859682, -0.0138349198, -0.011148422, -0.00892961398, -0.0202629361, -0.024733182, 0.0218944121, 0.00443489663, 0.0231887177, 0.0246679224, 0.010751429, 0.0108547555, 0.0104849543, 0.0110722864, 0.0156839266, -0.00691202143, -0.00798335765, -0.0136826485, -0.0151509773, 0.00485908054, -0.0360447504, 0.00646608463, 0.0234932601, 0.0206544902, 0.0168912187, 0.00484548463, -0.0219161659, 0.00458988687, 0.0031949745, -0.0413089804, 0.0140198199, 0.0240153316, 0.0251247361, -0.0013398499, -0.0267562121, -0.01218169, 0.00488083344, -0.0141177084, 0.00244857417, -0.00368985557, 0.00311340066, -0.00327926734, 0.0149987061, -0.00448927889, -0.0256033018, 0.00798335765, 0.0106644174, 0.00461707823, 0.0124427266, -0.00281973486, -0.018055005, -0.00482373172, -0.00703166286, -0.01744592, -0.0132584646, 0.0149334464, 0.00542194, 0.0115182232, -0.010963521, 0.00963658653, -0.00556333456, 0.00283061154, -0.012377467, -0.00996288192, -0.00748303812, 0.0242111087, 0.00855981279, -0.00649327599, -0.0104577634, 0.000874879188, -0.000600587227, 0.0145745222, 0.0333691277, 0.0030644564, 0.0236455314, 0.0102565484, 0.00379590155, 0.00739602605, -0.0309980512, 0.00565578463, 0.017239267, -0.0153358774, -0.00849999208, 0.0197952464, -0.00357021415, -0.00229494344, -0.00203254772, 0.0154011371, 0.00927766226, 0.00364634953, 0.014411374, 0.0084728, -0.0207197499, -0.0223621018, -0.0279308744, 0.0122795785, 0.000994520844, -0.0166519359, -0.0257338211, -0.00761899445, 0.0115399761, -0.00536483806, -0.0119097773, -0.0129539222, -0.0145962751, -0.000969368848, -0.00277486932, -0.00541106332, -0.00254238397, 0.0126167508, 0.00350223598, -0.00213723397, 0.000493181695, 0.0105882818, -0.00816282, 0.00719481055, 0.0192731731, 0.0159884673, 0.0129104163, -0.0313460976, -0.00605277717, 0.0153250014, -0.0210351683, 0.0187619776, -0.00678150356, -0.0104632014, -0.0172936488, 0.0135630071, -0.0167063177, -0.000917025667, 0.00295297219, 0.0100770853, 0.0189686324, 0.00751566747, 0.00584612368, 0.0118553946, -0.00687395362, 0.00380949723, -0.0139654372, -0.00280885841, -0.000228916528, 0.00120593293, 0.00222968427, 0.0110070268, 0.00599295646, -0.00130586082, -0.013182329, -0.0173589084, 0.015020459, 7.12071414e-05, 0.00522616273, -0.023428, -0.0119315302, -0.0295841042, 0.0114747174, -0.0175873153, -0.0188272372, -0.0114855934, 0.00283333054, 0.0315418765, 0.00709148403, 0.0113985818, -0.0189142488, -0.0237760488, -0.0189468786, 0.0205783546, 0.00260900264, -0.00679238, -0.0065748496, -0.00587331504, -0.00409228634, -0.0205348488, 0.0128342807, -0.00611259788, -0.0157709382, -0.0172066372, -0.0167933293, -0.0053349277, 0.0368496142, -0.00338531332, 0.0100444565, -0.00960939564, 0.00789090712, -0.0185118187, 0.0113441991, -0.00642801682, 0.00491890125, -0.00654765824, 0.00543009723, -0.0226231385, 0.0157056786, 0.00273544202, 0.00754285883, -0.0202520601, -0.00607453, 0.00325207622, -0.00329558225, -0.0363492928, 0.0111375451, 0.00123380404, -0.0204587132, -0.00363819231, -0.00819545, 0.0108819474, 0.00298832078, -0.00118417991, -0.00102647056, 0.0186097063, 0.0121164313, 0.0136391418, 0.00390738575, -0.00597120356, 0.00142210349, 0.00559596391, 0.0119532831, 0.0171957612, -0.00561227882, 0.0111212302, -0.00875015184, -0.00526694953, 0.000781069277, -0.0136500187, -0.0197191108, 0.0104523255, -0.0104360105, -0.016238628, 0.00584612368, 0.0365450718, -0.00111348263, 0.0160428509, 0.00404062308, -0.00795072783, -0.0485962406, 0.0226448923, -0.00437235646, 0.00343425781, -0.0287574902, 0.00503310468, -0.00497872196, 0.0212744512, 0.00493793515, -0.0203934535, -0.00257501355, -0.0292795617, 0.00159612764, 0.0143026095, -0.0106807314, 0.0122904554, -1.37762036e-05, 0.0161733683, -0.00655853469, -0.00848911516, -0.00318681705, 0.00745584676, -0.0257555731, 0.0201324187, 0.0145418923, 0.0167607, 0.00950063, 0.0192296673, -0.000357225334, 0.00916345883, 0.0259513501, 0.0366538353, -0.0267344583, -0.000517993758, -0.00404878054, -0.00529414089, -0.000272932404, -0.0153032485, -0.00914714392, 0.00300463568, -0.00514458865, 0.018065881, 0.00672712084, 0.00887523126, -0.00632469, 0.0207197499, 0.0163147636, -0.00879365765, 0.00405149953, -0.0134107359, 0.00152679, -0.00262667681, -0.0131061934, 0.0210351683, -9.21423e-06, 0.0182072762, -0.0197843704, -0.0147267934, 0.00710779848, -0.00017725311, 0.0135303773, 0.0177287105, -0.0170217361, -0.00421736622, -0.00552254729, 0.00439139036, 0.0333691277, 0.0135412533, 0.0123992199, 0.00812475197, 0.0135303773, 0.010550214, 0.0148681877, 0.00529686, -0.0116052348, -0.0107677439, 0.00711867493, 0.0159449615, 0.0305629894, 0.00303182681, 0.0143896211, -0.0078093335, 0.00697184214, -0.0201541707, 0.006797818, -0.00722744036, -0.0248854533, 0.0297363754, 0.0238630604, -0.010968959, -0.00281973486, -0.00299104, 0.0129212923, 0.0146506578, -0.0158144441, 0.0205892306, -0.0157926902, -0.0106100347, -0.0267779659, -0.0143896211, -0.00292306184, 0.00516906101, -0.00774951279, 0.00984867848, 0.0181093868, 0.0304542258, 0.00187755737, -0.0187293477, 0.0104196956, 0.0112463105, -0.0223403499, 0.0281484053, -0.0149225704, -0.0228841752, -0.00261036213, 0.0174350441, 0.00150775607, 0.016238628, 0.0122578256, 0.00456813397, -0.0065530967, 0.0203064419, 0.0142591037, 0.00501407078, -0.00824983232, -0.00710779848, 0.00690114498, -0.0171740074, 0.0094353715, -0.00484548463, 0.0134651177, 0.0149660762, 0.0019387377, -0.00216714432, 0.00674887374, 0.0161733683, -0.02028469, -0.0078310864, 0.00991937611, -0.00509292539, 0.00233980897, 0.00993569102, -0.00655853469, 0.00861419551, -0.00624855421, 0.0103163691, -0.0068195709, -0.0217421409, -0.0284964535, -0.00097956555, -0.0120076658, -0.0173045266, -0.0216768831, -0.00139015377, 0.0115290992, -0.0134324888, -0.0215681177, 0.0104523255, 0.00317050237, -0.00462795468, -0.0039372961, 0.0349353477, -0.012997428, -0.00734164333, 0.0157056786, 0.010147783, -0.0254292786, -0.00734708179, -0.00175927533, 0.00693377433, 0.0119206542, -0.023428, 0.00671080593, 0.0038965093, -0.000388495304, -0.0119097773, 0.0298016351, -0.000658368692, -0.0165540464, 0.00599295646, -0.0106644174, 0.00779301859, 0.0296711158, 0.0175438095, -0.000643073581, -0.0124100968, -0.0185662, 0.0242981203, -0.0458988696, -0.0129321693, -0.017848352, 0.000823215756, -0.00519897137, 0.00764074735, 0.0363057852, 0.0167171936, -0.000844968774, 0.0102728624, 0.00751566747, 0.0282571707, -0.0244286396, -0.0165322945, 0.0085761277, -0.00291762361, -0.00980517268, 0.00550351338, 0.00731445244, -0.00566666108, 0.00431525474, -0.00603646226, -0.00774951279, 0.00693377433, -0.0220684372, 0.0118771475, -0.00836947374, -0.0128669105, 0.00458172942, 0.0331298448, 0.0133346, -0.0230581984, 0.00808124617, -0.00839666463, -0.00170625234, 0.0254292786, -0.0225796327, -0.0227319039, -0.00309436675, -0.00106045965, -0.0130518107, 0.00638451055, 0.00377414864, -0.0261036213, -0.00678150356, -0.00426631048, -0.00234932592, -0.0223403499, 0.0160972327, 0.0126167508, -0.00599839492, 0.0144766336, 0.00400527427, -0.0263429042, -0.0179353636, -0.00975079, 0.0128669105, -0.0396122448, 0.013791413, -0.00932116807, 0.0350223593, 0.0147050405, -0.0116487416, -0.0439193435, 0.00358924805, 0.0125732441, 0.00633012829, -0.0287574902, -0.00145201397, -0.00600383291, 0.00408684835, 0.00323304231, 0.0168477129, -0.00421736622, -0.000787187309, -0.0085761277, -0.00662923232, -0.0104251336, 0.00638994901, -0.00272456557, 0.0102076037, 0.00199040119, -0.00647696108, 0.00385572249, 0.00181501743, 0.025559796, -0.0201976765, -0.0182725359, -0.0141612142, -0.0118445186, -0.0061452277, -0.012170814, 0.000559800304, -0.0145092625, 0.00518265646, 0.00205566012, -0.0049080248, -0.0053158938, -0.0122251958, 0.00654765824, -0.0191535316, -0.0152923716, 0.00123584329, 0.0159775913, -0.0275828261, -0.00843473244, 0.00504398113, 0.0142373499, -0.00648783753, 0.000887115253, 0.00541106332, -0.0224273615, 0.0188924968, -0.0268432237, 0.0196429752, 0.0236672834, -0.0146615338, 0.0115834819, 0.0276698396, 0.0110124657, -0.0259731039, -0.00429078285, -0.0235802718, 0.0053784335, 0.0140198199, -0.0288445018, 0.000968009292, -0.00290946616, -0.0178701039, -0.00661835587, 0.00763530936, 0.0147050405, 0.0164887868, 0.0303454604, 0.0145853981, -0.0237760488, -0.0116161117, -0.00625943113, 0.00474487711, 0.00295569142, 0.0145853981, 0.00199991814, 0.00998463482, 0.0227101501, 0.00462523522, 0.0053376467, -0.00922328, -0.0206762441, -0.00554973865, 0.0331733525, 0.00758092664, 0.0136065129, 0.0426794216, -0.00213043625, -0.00223648222, 0.0216551293, 0.00122360722, -0.0154555188, 0.0113985818, 0.00293121906, 0.00959308073, 0.014813805, -0.0222533382, 0.00680869445, 0.0073851496, 0.00049284182, -0.00386931817, -0.00260220468, -0.0122904554, -0.00899487268, -0.0138131659, -0.00846192427, -0.00925047, 0.0125514911, -0.00122904556, -0.0119967898, 0.00637907255, 0.0233192351, 0.011975036, 0.0106372256, -0.0192187913, 0.000480605726, 0.0129539222, 0.00538115297, 0.0237978, -0.00584612368, -2.67664091e-05, -0.0333256237, 0.0184465591, -0.0155207785, -0.0144548807, 0.00103666726, -0.00157165551, -0.00330102048, -0.0124753555, 0.00460348232, 0.00217258255, 0.012997428, 0.00641170191, 0.0251029823, -0.0413524881, 0.000248630211, -0.00395633, 0.000395633018, 0.0107949348, -0.0019591311, -0.00918521173, -0.024559157, -0.0154663958, -0.0167498235, -0.00545456912, 0.00772232143, 0.019675605, 0.0114638405, 0.000328164664, 0.0127363922, 0.012366591, -0.0175873153, 0.0136500187, 0.000565578463, 0.0263211522, -0.0267562121, 0.0218400303, -0.0123122083, -0.00428262539, 0.0075863651, 0.0217095111, 0.00757005, -0.0264734235, 0.0102184806, 0.0206001084, 0.00679238, -0.00982692558, 0.0097942967, -0.0101260301, 0.00192922074, 0.0122687025, 0.0207632557, 0.0246026628, -0.00911451411, 0.00587875303, -0.0106154727, -0.0294535868, 0.0137370313, -0.00259540696, -0.0115073463, 0.00157709385, 0.00586243812, -0.0155642843, -0.0162168741, -0.00876646582, -0.0131388232, 0.0181093868, 0.00212635752, 0.000574755541, 0.00953869801, -0.0318029113, -0.000805541466, 0.00841298, -0.00873383693, -0.0230581984, -0.00730901398, -0.00583524723, -0.00361643918, 0.0105719669, 0.000273272279, 0.0115399761, 0.0113550751, 0.00782564841, 0.00458172942, 0.00242546154, -0.00274631847, -0.00288499403, 0.016445281, 0.0343480147, -0.0037388, -0.00150775607, -0.000408888765, -0.0315853804, -0.0117466301, 0.0182725359, 0.00401071273, -0.000356885459, 0.0285617132, -0.000486723788, -0.00875559, 0.0107840588, 0.0154772727, -0.0156730488, 0.00404062308, 0.0221445728, -0.0214702282, -0.00390194752, 0.00765706226, -0.0185335707, 0.0230146926, 0.00422552368, 0.000193058033, 0.00910907611, 0.0168585889, -0.00964746345, 0.00772775942, -0.018859867, 0.0115726059, 0.00200671586, -0.0237760488, -0.0235585179, 0.0118010119, -0.00398896, 0.0218617823, 0.0164887868, -0.0143243624, -0.00361372018, -0.00278302678, -0.00173344358, -0.010153221, -0.00691746, -0.0404823646, -0.00953326, -0.00475303456, -0.0104523255, -0.00192378252, 0.00882084854, 0.0259731039, -0.0109200152, -0.0155969141, -0.00209100894, -0.0217203889, 0.00466058403, 0.00250703539, -0.0208828971, 0.000517313951, 0.00972359907, 0.0377849936, 0.0350223593, 0.0124209728, -0.0138131659, -0.00522888172, -0.0188054834, 0.00641170191, -0.0189686324, 0.0284311939, 0.00730901398, 0.00784740131, -0.0195015799, -0.0219814237, 0.00989218522, -0.016630182, -0.0122578256, 0.0108384416, -0.00115426956, -0.0209807865, 0.00342338113, -0.00291218539, 0.051728677, -0.00318953628, 0.00880997255, 0.019675605, 0.0015512621, 0.00895136688, -0.0167171936, -0.0121273072, 0.0165649224, 0.00379590155, 0.0138784256, -0.00971816108, 0.00229086471, -0.000538047287, 0.00391010474, -0.00342610036, -0.0169673543, -0.0201650485, 0.013193205, 0.00239555119, 0.0229929406, 0.000685899868, -0.0145962751, 0.00130586082, 0.0185335707, -0.010740553, -0.000495900807, -0.0141938441, 0.0055578961, 0.017261019, -0.0267344583, -0.0110124657, -0.0301714353, 0.011714, -0.0122687025, -0.00434788456, -0.000426903, -0.0134324888, -0.00167090364, -0.00337443687, -0.00493793515, -0.00183133222, -6.096793e-05, 0.00807580817, -0.00571560534, 0.00891329907, -0.00371704693, -0.0123883439, 0.0131279463, 0.00415210752, -0.0189686324, 0.00643889327, -0.0449417345, -0.00853806, 0.00882628746, -0.00693377433, -0.0213505868, -0.00718937255, 0.0169782303, -0.00518537546, -0.00523703918, 0.0276698396, 0.00816825777, -0.00233437074, 0.0143134855, -0.00275583542, 0.000446956547, 0.0262776464, -0.0185879543, 0.00638994901, 0.00230174116, 0.00208013225, 0.00625943113, -0.00567209953, -0.0177395865, 0.0406563915, 0.0256685615, -0.0148464348, 0.00613978924, -0.000696096569, -0.0105991578, -0.031280838, 0.0143787451, 0.00643889327, -0.0142699797, -0.00656941161, 0.00731445244, 0.00853262097, -0.00714042829, -0.010958083, -0.00183813006, -0.012377467, -0.00908732321, 0.0186858419, -0.0249724649, 0.0168368351, 0.00630293693, -0.00491890125, -0.0144548807, 0.0237107892, 0.0213940926, -0.00551167084, -0.00169537589, -0.00433156965, 0.0101151532, -0.0147267934, 0.00818457268, 0.0199475177, 0.000870800519, 0.00485364208, 0.00561227882, 0.00877190474, -0.00169673539, 0.00479654036, 0.00622680131, -0.0120294187, -0.0225143731, 0.00812475197, -0.0250377245, 0.0117575061, -0.0260818694, -0.00872839801, 0.00605277717, 0.00160972332, 0.00625399267, 0.0117901359, -0.00754829729, -0.00771144498, -0.0187184718, -0.00975622889, 0.022111943, 0.0119532831, 0.0121381842, -0.0085978806, -0.00787459221, 0.0104196956, -0.00743953232, 0.00211684057, 0.0102674244, 0.0101097152, -0.00814106688, -0.00585156167, 0.00970728416, -0.00143298006, -0.0179571155, -0.0327818, 0.0124644795, -0.0152053591, 0.00287411758, -0.00639538746, 0.000754557783, -0.00408141, -0.0117575061, -0.00122496684, -0.0250377245, -0.00764618581, 0.00560140191, -0.00461164, 0.00514186965, 0.00729269907, 0.0309110377, 0.0140306968, 0.0196321, 0.0296711158, -0.0115399761, -0.00124536024, -0.0200236533, -0.00326023367, 0.0217747707, -0.0174785499, 0.00448384089, -0.00520712882, 0.000318477774, -0.0108275646, 0.00996832084, -0.0131496992, 0.00732532889, -0.00157981296, -0.00537299551, -0.0147702992, 1.06215907e-07, -0.00774951279, 0.0155316545, 5.43400602e-05, 0.0113115693, 0.0101912888, 0.0162059981, 0.00298560178, 0.00352670811, -0.0157491844, 0.00960395765, -0.0316941477, 0.0161081105, 0.00560140191, 0.0140306968, -0.00607453, 0.0272782836, -0.0104849543, 0.0268214718, 0.0158579499, -0.0113115693, 0.0326730311, 0.00526151108, 0.00679238, -0.0218944121, -0.0063464432, 0.00324119977, -0.00437779492, -0.00755917374, -0.00631381338, -0.0103598749, 0.00437779492, -0.02638641, -0.0208828971, 0.0270607546, 0.0031949745, -0.00509292539, -0.00243497849, -0.000110124653, -0.00639538746, 0.0235585179, -0.0148573108, -0.0144222509, 0.0586896427, 0.00978342, 0.0195777155, -0.000852446363, -0.00788003113, 0.0194254443, -0.00586787658, -0.0183813, 0.0308457799, -0.0257120673, 0.00710779848, -0.0170543659, 0.0160537269, 0.00811931398, 0.00663467031, -0.00652590534, 0.00856525078, 0.0336954258, -0.0145092625, 0.0122251958, 0.0235585179, -0.00350223598, -0.0274740625, -0.00377958687, 0.00581349386, -0.0319769345, -0.0345655456, 0.0275393203, 0.00367897912, 0.000719209143, 0.00951694511, -0.00440226682, -0.0207632557, -0.00646608463, 0.0161407385, -0.0134759946, 0.00334996474, -0.000666865963, 0.0124971084, -0.0199257638, 0.0131605761, -0.0011726236, 0.0309980512, -0.00811931398, -0.00709148403, -0.010745991, 0.0169891063, -0.000206483732, 0.00132217561, -0.0101205911, 0.0111701749, -0.0122143198, -0.00191698468, 0.0187837314, -0.00619417196, 0.000117602256, 0.00207197503]
|
21 Aug, 2019
|
Is sizeof for a struct equal to the sum of sizeof of each member?
21 Aug, 2019
Prerequisite : sizeof operator in C
The sizeof for a struct is not always equal to the sum of sizeof of each individual member. This is because of the padding added by the compiler to avoid alignment issues. Padding is only added when a structure member is followed by a member with a larger size or at the end of the structure.
Different compilers might have different alignment constraints as C standards state that alignment of structure totally depends on the implementation.
Let’s take a look at the following examples for better understanding:
Case 1:
// C program to illustrate
// size of struct
#include <stdio.h>
int main()
{
struct A {
// sizeof(int) = 4
int x;
// Padding of 4 bytes
// sizeof(double) = 8
double z;
// sizeof(short int) = 2
short int y;
// Padding of 6 bytes
};
printf("Size of struct: %ld", sizeof(struct A));
return 0;
}
Output:
Size of struct: 24
The red portion represents the padding added for data alignment and the green portion represents the struct members. In this case, x (int) is followed by z (double), which is larger in size as compared to x. Hence padding is added after x. Also, padding is needed at the end for data alignment.
Case 2:
// C program to illustrate
// size of struct
#include <stdio.h>
int main()
{
struct B {
// sizeof(double) = 8
double z;
// sizeof(int) = 4
int x;
// sizeof(short int) = 2
short int y;
// Padding of 2 bytes
};
printf("Size of struct: %ld", sizeof(struct B));
return 0;
}
Output:
Size of struct: 16
In this case, the members of the structure are sorted in decreasing order of their sizes. Hence padding is required only at the end.
Case 3:
// C program to illustrate
// size of struct
#include <stdio.h>
int main()
{
struct C {
// sizeof(double) = 8
double z;
// sizeof(short int) = 2
short int y;
// Padding of 2 bytes
// sizeof(int) = 4
int x;
};
printf("Size of struct: %ld", sizeof(struct C));
return 0;
}
Output:
Size of struct: 16
In this case, y (short int) is followed by x (int) and hence padding is required after y. No padding is needed at the end in this case for data alignment.
C language doesn’t allow the compilers to reorder the struct members to reduce the amount of padding. In order to minimize the amount of padding, the struct members must be sorted in a descending order (similar to the case 2).
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?
|
https://www.geeksforgeeks.org/is-sizeof-for-a-struct-equal-to-the-sum-of-sizeof-of-each-member/?ref=next_article
|
Pandas
|
Is sizeof for a struct equal to the sum of sizeof of each member?
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0155476388, -0.00484748511, -0.0239578765, 0.0556717291, 0.0270745419, -0.00939163, -0.0137870796, -0.00993883144, -0.048201248, -0.00438058, -0.0125261387, -0.00744074071, 0.0123477038, -0.062809132, -0.0179624595, 0.0182479564, -0.0176531728, -0.00945705641, -0.0123239132, -0.00406831875, 0.0444184281, -0.0264083836, -0.0191163402, 0.0282403175, -0.0092012994, 0.0186643042, 0.0205200277, -0.0134421056, 0.00348245702, 0.0498666428, 0.000507424644, 0.0102897538, -0.0290492233, -0.0243623294, 0.00865409896, -0.0159283, -0.0196516439, -0.0188903213, 0.00495752, 0.0285733957, 0.0171178672, 0.0362579972, -0.0144770285, -0.00804147217, 0.00116726244, 0.0153335165, -0.0232560318, 0.0309287384, -0.00769055, -0.0302149989, -0.0433954, -0.0275027864, 0.00973660499, 0.0260753054, -0.000764296739, 0.00499023311, 0.0501045547, 0.0118599813, -0.00114421465, 0.00958196074, 0.0310001131, 0.00302596064, -0.0351160131, -0.00036820813, -0.00921914354, 0.0157498661, -0.0518175326, 0.038327843, 0.0497714765, -0.0184620786, -0.0106763626, -0.000242931856, -0.000132711051, -0.0073277317, 0.00161483698, -0.00416348409, 0.034045402, -0.0230894927, 0.00348543096, 0.0201869495, 0.00840429, 0.033926446, -0.0106585193, 0.0263845939, 0.0372096524, 0.0266462974, -0.0154286819, -0.0121216867, 0.0468689352, 0.0262656361, -0.0228515789, -0.00393449236, 0.0419203378, 0.00175312418, -0.00328320451, 0.0193185657, -0.0152740385, 0.0172368232, 0.016213797, 0.00370252691, -0.00967117865, 0.0149766468, 0.00268990803, 0.0124071827, 0.0207936279, -0.0300246682, 0.044894252, -0.0154048912, 0.0044579017, 0.0402073599, 0.0122525385, 0.0107061015, -0.0494384, 0.00612032134, -0.0317376442, 0.0213170387, -0.0126569914, -0.0698989481, -0.00289362133, 0.031523522, 0.0388750434, 0.0111700324, -0.0150599163, 0.00353301363, -0.00484748511, 0.0727063268, 0.012847322, -0.0158331357, -0.0396601595, -0.0125261387, -0.0241838936, 0.0131090265, 0.00469284132, -0.0281689428, -0.00973065663, -0.0159164052, 0.0298343375, 0.00264381245, 0.0203891769, 0.0383040532, -0.0208293162, 0.00535305077, 0.0285258126, 0.0236010067, -0.00491588516, 0.0359249189, -0.0267176721, 0.07013686, -0.0133826276, -0.0104800845, -0.0464168973, 0.000840131601, 0.0242790598, 0.00296202139, 0.0118659297, -0.0191401318, -0.0160234664, 0.0415634662, 0.0281927343, 0.0129305916, 0.0268604197, -0.0200917851, -0.0230538063, -0.00373523985, -0.0247192, 0.00949274376, -0.0170821808, 0.0255994797, -0.0159758832, 0.023410676, -0.00147580635, 0.041634839, 0.018676199, -0.00892175175, -0.0138346627, -0.0415872559, -0.0139179323, 0.0223519616, -0.00896338653, -0.0133350445, -0.0249809045, -0.0248619467, -0.00101038837, -0.042301, -0.0335933678, 0.0104265539, -0.0041664578, -0.00896338653, 0.0230538063, -0.0205438193, 0.000678053126, 0.0231013894, -0.000392557064, 0.00929646473, -0.00622143457, -0.0238983985, -0.0275265779, -0.0473685525, -0.0266462974, 0.0410876386, -0.0211623944, -0.00319993496, -0.023470154, -0.0123001216, 0.0224828143, -0.014905273, -0.0239459816, -0.00572181679, 0.0340929851, -0.00313153467, -0.014048785, 0.0224947091, 0.0088860644, 0.00239995122, 3.3201e-05, 0.00728014903, -0.0372334421, 0.0546249114, -0.00194940274, -0.0222330056, -0.0125142438, -0.036947947, 0.00740505382, -0.0126332, -0.0192590877, 0.00158063695, 0.0340929851, 0.00579913845, -0.0103730233, 0.0261942632, 0.0228158925, 0.0324513838, -0.00468986714, 0.0174390506, -0.00726825371, -0.0298819188, 0.00328617846, -0.0185096599, 0.031523522, 0.0156309083, -0.0231608674, 0.0372096524, -0.0144651327, -0.0341881514, -0.0100399442, 0.0454414561, -0.0278596561, 0.00385122281, 0.0220188834, 0.0305480771, -0.00267503853, 0.00480287615, -0.000288655836, 0.0140606808, -0.000656492193, -0.0386609249, 0.0391843319, 0.00262745586, -0.034545023, 0.0110034933, 0.00258136, -0.0209125858, -0.0538160056, -0.0361628309, 0.0145959854, -0.0276693255, 0.0398029089, -0.00188546348, 0.00190330704, -0.00729799271, 0.0343309, -0.0427530333, -0.0191639215, -0.00740505382, -0.00871357694, 0.0580984466, 0.0273838285, -0.01147932, 0.00448169326, 0.0602396652, -0.00990314409, -0.00341405696, -0.000247392745, -0.00130554964, 0.0547676571, 0.00227802061, -0.0155119523, -0.0308811553, -0.04591728, -0.0191520266, -0.0234344676, -0.00688164448, -0.0308811553, 0.035568051, 0.00921914354, -0.0445135906, -0.036210414, 0.0120384162, -0.0255994797, 0.0011828756, -0.0116874948, -0.0118540339, 0.00210255943, -0.0298343375, -0.00816042908, -0.00337836985, -0.0324989669, -0.0100280484, -0.0169513281, -0.0162613783, 0.0188665297, -0.0285733957, 0.00867194217, 0.038089931, -0.0410400555, 0.035568051, 0.0511989594, -0.00368468347, -0.027693117, -0.00327725662, 0.0165587701, -0.0112592503, 0.0343784839, 0.0348067284, 0.0290968064, -0.0247905739, 0.0153454123, 0.00594783435, -0.0256470609, -0.0144056547, -0.02232817, 0.0177840255, -0.0117945559, -0.0129424874, 0.0134064183, -0.000523409399, 0.0048772241, -0.0300484598, -0.0723256618, -0.0157855526, 0.0143818632, -0.00918940362, -0.0276217423, 0.00640581734, -0.00303042168, -0.000174067085, -0.00519245956, -0.0090050213, -0.0233987812, 0.019984724, 0.000657607452, -0.00480287615, 0.0169870146, 0.0377330594, 0.0297153797, 0.00880874228, -0.00347948307, 0.0288351011, 0.0415634662, -0.049057737, 0.0226731449, -0.0129305916, -0.00306908251, -0.0132398792, -0.0376141034, -0.013418314, -0.0112473546, -0.0358535461, 0.0119254077, 0.00856488105, 0.00768460194, -0.0159996748, 0.030381538, -0.0118480856, -0.0212813504, 0.034949474, 0.0156190125, 0.038208887, 0.00635228725, 0.0106049888, -0.0242195819, 0.0734200701, -0.0133469403, -0.0011412407, -0.0275027864, -0.0153097259, 0.0243385378, 0.0272172894, 0.0437046848, 0.0348543078, -0.000234753592, 0.0507707149, 0.00858272519, 0.0160115696, 0.00155089784, -0.0176293813, 0.000429731037, 0.00273897778, -0.00651882635, 0.0281689428, -0.00907044765, 0.027241081, -0.0381375141, -0.0202702191, 0.0463693179, 0.0110808155, -0.051960282, -0.00303339562, -0.00728609692, 0.0107417889, 0.00409805775, 0.0144294463, 0.00120964076, 0.00653072214, -0.0239697732, -0.0400170311, -0.031071486, 0.00269288197, -0.016844267, 0.0103730233, -0.00629875669, -0.0462265685, -0.00694112247, 0.000791061961, 0.0193423573, 0.00226761191, -0.0247667823, 0.0354728848, -0.0246002432, -0.0137751848, -0.0494384, 0.0500093922, -0.000685859646, 0.0122287478, -0.0282165259, -0.0425389111, -0.00914182141, -0.0354490913, -0.0188189484, -0.0120681562, 0.00732178427, 0.0426340774, -0.0328082554, -0.0248143654, 0.00418727519, 0.0114138937, -0.068233557, 0.00451738, 0.044370845, -0.00122525392, -0.020615194, -0.00390475313, -0.0220188834, -0.0040088403, 0.0617623106, -0.00413671881, 0.00034534614, -0.0298581291, -0.00981987454, 0.0198776629, 0.000670990034, -0.0220664646, 0.0187951569, 0.0234344676, 0.0881231129, 0.00293971715, 0.0103611276, -0.0196635406, -0.0157855526, 0.00320588262, -0.0359725021, 0.0221259445, -0.00426757103, -0.00314343045, -0.0115328506, -0.013132818, -0.00769055, 0.0136443321, -0.0378044359, -0.0543869957, -0.0221616309, 0.0250284877, -0.0321658887, -0.00778571516, -0.0269555859, 0.0240649376, 0.0126332, 0.0323562175, 0.0218880307, 0.00336350035, 0.0109856501, 0.0438236445, 0.0138584543, -0.0378996022, 0.0305718686, 0.0403739, -0.0294536762, -0.0225185, 0.0062928088, 0.0750854611, -0.0332365, -0.0121216867, -0.0245288685, 0.0198419746, -0.00713740103, -0.0318566, -0.0233036149, 0.0234820507, 0.0157855526, -0.000771731487, 0.0349970572, 0.0112711461, 0.00362817897, 0.0156784914, -0.0145127159, 0.00162970659, -0.0228634756, 0.00206241151, -0.00885632541, 0.024386121, -0.00864815153, 0.00740505382, 0.0122049563, 0.034663979, 0.00209958549, 0.0236723814, 0.0262894277, -0.0226374567, 0.0107358405, 0.0126807829, -0.0575750358, -0.0100399442, 0.00518353749, 0.0146554634, -0.00819016807, 0.00215311605, -0.0106644668, 0.00345866568, 0.0144175505, 0.00925483, -0.0178435035, 0.0119194603, 0.00717308838, -0.00167877623, -0.0275979508, 0.0273838285, 0.0113246767, -0.00762512349, -0.00305718696, -0.00574263418, 0.0146673592, 0.00791061949, 0.024671616, -0.0058645648, 0.00794630684, 0.00659020059, 0.00074199232, 0.0183193292, -0.00049478549, -0.0256232694, 0.0172963031, 0.00391664868, 0.00835670717, 0.00790467206, -0.000858718588, -0.0118361907, -0.0184382871, 0.00702439249, 0.0329747945, 0.00942731742, -0.00669726124, -0.0352587625, 0.0260515139, 0.00595080806, 0.0145246116, 0.0328082554, 0.00356275286, -0.000544226845, -0.0129424874, 0.0321420953, -0.00264232536, -0.0230538063, -0.015761761, 0.00313450862, -0.0214716811, -0.00530249439, -0.0327368788, -0.0052965465, -0.0342833176, -0.00016793338, 0.00681027025, 0.0121692689, -0.00322670024, 0.0151074994, 0.00290551712, 0.00974255241, -0.0332365, 0.00993883144, -0.0211505, -0.0241957903, 0.0190211739, 0.03095253, 0.00603705179, -0.00597459963, 0.011705338, 0.0212218724, 0.0280261952, 0.0210910197, 0.000199624192, 0.0135729583, -0.0283116922, -0.023470154, 0.00454414543, -0.0281689428, -0.0287399348, 0.000433820154, -0.00166539359, 0.0142629063, 0.000483633281, -0.00525788544, 0.0384468026, 0.00761322817, 0.0275265779, 0.00399397081, 0.00127134961, -0.0081663765, -0.0192828793, 0.000353524403, -0.00818422, -0.0445849672, -0.0145246116, -0.0222924836, 0.0244574957, -0.0143223852, -0.00184680254, 0.0230657011, -0.0123477038, 0.00644150469, -0.0119016161, 0.0364721194, -0.0112889893, 0.0300246682, -0.0275503695, 0.0364721194, -0.00770244561, -0.0146316728, -0.015190769, -0.000592553, -0.000897379534, -0.00527275493, -0.00322075235, -0.0284544397, -0.00570694683, 0.00597757334, 0.0163446479, -0.00426757103, 0.0096057523, 0.0101589011, 0.00149588031, 0.00802362897, -0.0676625669, -0.0339978226, -0.0288113095, 0.0179029815, -0.0180219375, -0.0149885425, -0.0251474436, -0.011931356, 0.0305480771, 0.0348305181, -0.0239102934, -0.00914182141, 0.0285496041, 0.0113365725, 0.00874331687, -0.0266225059, -0.0302387904, 0.0109618586, 0.0145602981, 0.0347591452, 0.0168680586, 0.013132818, -0.0259087663, 0.00234790752, 0.014964751, -0.00385122281, -0.0186880957, -0.00527275493, 0.0206508804, -0.00881469063, 0.00998046622, -0.0323324278, 0.0249095298, 0.042372372, -0.00664373115, -0.0116101727, -0.00812474173, 0.0261942632, 0.000755746674, 0.0261704717, 0.0127759483, 0.037066903, 0.00836265553, -0.0393032879, -0.0244337041, 0.0100339968, -0.0110094417, -0.0215668473, 0.0201155748, 0.0193185657, -0.0188784264, 0.0213527251, 0.0127164694, 0.00405344926, 0.0310952775, 0.01164586, 0.00859462097, -0.00656046113, -0.0370431133, -0.00306610856, -0.0216858033, -0.0255994797, 0.0155833261, -0.00255162083, 0.01947321, -0.0238032322, -0.021816656, -0.0318328105, -0.0309287384, -0.00143788895, -0.0132874623, -0.00638202624, -0.00793441106, -0.0109797018, 0.0110689197, -0.00581995584, 0.00568910362, 0.00437760586, -0.0101410579, -0.0324513838, 0.00852919463, 0.0196278542, 0.0197706018, 0.0165468752, -0.0250760689, -0.0181171037, 0.0349732675, -0.0203415938, -0.00190628087, 0.024041146, -0.0184382871, -0.00873142108, 0.0250760689, 0.0268366281, -0.00121484511, -0.0275503695, 0.0223400649, -0.0353063457, 0.0189260095, -0.019187713, -0.00326833501, 0.00367873558, 0.0138108712, 0.0222805869, 0.00805336796, -0.00138584536, -0.0655213445, 0.0103194928, 0.012561826, -0.0135491667, 0.0119432509, -0.000940501282, 0.0237318594, -0.0132398792, 0.00111967977, 0.00268396013, -0.0307859909, 0.0103789708, 0.00449953647, 0.00780950626, -0.00410698, 0.000211333987, -0.0228753705, -0.00259176875, 0.00329212635, 0.00254716, 0.0223400649, -0.00797604583, 0.0354015082, -0.00875521172, 0.0184382871, -0.00236277725, 0.050199721, 0.01884274, -0.0251712352, -0.0342595242, -0.0233274065, -0.0296915881, -0.00601326069, -0.057622619, 0.0111165028, 0.0177007541, -0.0169275366, -0.0225066058, -0.0199014544, -0.0153097259, 0.00764891505, -0.0087195253, -0.00348543096, -0.00883253384, 0.0115685379, -0.0168561619, -0.0067270007, 0.0139060365, -0.0110213375, 0.0153454123, 0.0210196469, 0.00803552382, 0.00720282737, 0.0460124463, -0.00458875438, 0.00135536271, 0.0110867629, -0.016784789, 0.00210553338, -0.0171059724, 0.0422772057, 0.0291681793, 0.018557243, -0.00175609812, -0.0160948392, -0.0344260633, 0.0118361907, 0.0260277223, 0.0147863161, 0.00221259426, 0.0280261952, 0.0171059724, 0.00605786918, 0.0223400649, -0.0270983335, -0.0170464925, -0.0442994684, -0.0230419096, -0.0122882258, -0.0249095298, 0.0116280159, 0.013192297, 0.0175936949, -0.0346877687, 0.00511513744, -0.000148974665, 0.0184858683, 0.00099254481, -0.00376497908, 0.00711361, -0.00186761993, -0.0503900535, -0.0259325579, -0.0106466236, 0.0159758832, 0.0108072152, 0.00907044765, -0.0313569829, 0.0277882814, 0.0111283977, -0.016451709, 0.0277169086, -0.0245050769, -0.00394341396, 0.0415396765, -0.0214241, 0.0367576145, 0.0103313886, 0.0154524734, -0.0386847146, -0.0210434385, -0.0187951569, 0.0186405126, 0.0180933122, -0.0160353612, -0.00976039656, -0.0351635963, -0.00438652793, 0.0216501169, 0.00951653533, 0.00667941803, -0.0102302749, -0.024957113, -0.0201869495, 0.0125499303, -0.0332602896, -0.0353063457, 0.017760234, 0.0269317944, 0.0147149423, 0.00689354, -0.00361628318, 0.0130257569, 0.00642960891, 0.00785708893, -0.0269317944, -0.0290492233, -0.0201274715, 0.0119729908, -0.00934999529, 0.0140844714, 0.0176531728, -0.0257660188, 0.0369241573, 0.0171059724, -0.00211445522, -0.0412779711, 0.000756490161, -0.00678647915, 0.0245526601, 0.027241081, 0.0308097824, 0.035568051, 0.00422891043, 0.00488912, -0.0243147463, -0.00303785643, 0.0165349785, -0.00191520271, -0.0106049888, -0.03380749, 0.000221370952, 0.00337836985, -0.000435307127, 0.0105990404, 0.0228039976, 0.0108607458, -0.0116874948, 0.00634633936, 0.0187594686, -0.00720282737, 0.00246240338, -0.0575750358, -0.00371144852, -0.00779761095, 0.000113287657, 0.0374713577, 0.0245288685, -0.0134896878, -0.00518353749, -0.0124309734, -0.00314045651, -0.00482072, 0.0242314767, 0.0110391807, 0.0123120174, -0.0146316728, -0.0192234013, 0.0234225709, -0.0182836428, -0.00708981836, 0.025409149, 0.010533615, -0.0033605264, -0.00306908251, 0.0241719987, 0.0269793756, -0.00941542163, 0.00750021916, 0.0166777279, 0.00294269109, -0.0219594035, 0.0152740385, 0.00993288308, -0.00787493307, -0.0372334421, 0.0252901912, -0.0129900705, -0.00369955297, -0.0196516439, -0.0125499303, -0.0393984541, 0.0291681793, 0.00476421509, 0.00835670717, 0.0209839586, -0.00605192129, -0.00407426665, 0.00485938042, 0.011931356, 0.0279310308, -0.00469878921, -0.0410638489, 0.00728609692, -0.0176412761, -0.0215311609, 0.0405404381, -0.0294060931, -0.0055879904, -0.0125142438, 0.0455366187, -0.014393759, 0.0118302424, -0.0285020228, -0.0098734051, -0.000680655299, 0.00974850077, -0.00208025496, 0.00939757843, 0.00705413148, -0.00259622978, 0.0185929295, -0.0522457771, 0.0245050769, 0.011509059, -0.061667148, 0.00741694961, -0.00675673969, -0.0142866978, 0.00152859348, -0.0489625707, 0.0296915881, 0.00368765718, -0.00455009332, -0.0237437543, -0.0170464925, -0.00983177, 0.0458459072, 0.0204367582, 0.00415158831, 0.0161900055, 0.00405939715, 0.0114019988, 0.00459470181, 0.0154286819, -0.0065842527, 0.000428615807, 0.0313094, -0.0152621428, -0.0171416588, 0.00193453312, -0.0364959128, 0.0327606723, -0.00639987, 0.0146673592, 0.0132874623, -0.0434429832, 0.0142866978, 0.0298343375, -0.00178435026, -0.00977824, -0.030381538, -0.0307146162, -0.0139417239, -3.62446144e-06, 0.0334268287, 0.00219177688, 0.00919535197, 0.00634039147, 0.00475232, 0.00868383795, 0.00574858207, 0.0101291621, -0.00998641364, -0.0172249284, -0.00990314409, 0.00895149074, -0.011675599, -0.03380749, -0.0131447138, 0.0230300147, 0.00790467206, 0.00402965769, 0.0135372709, 0.00237616, -0.00324454368, -0.0202940106, 0.00801173318, 0.0171535537, -0.029810546, 0.0277644899, 0.021638222, -0.0362342075, -0.0132041918, -0.00552851195, -0.00787493307, 0.00369657902, 0.0119848866, -0.0285020228, -0.0135967489, 0.013132818, -0.028668562, -0.00758348871, -0.0240173545, -0.0115447463, -0.0366386585, 0.0228634756, -0.0184263904, 0.00923698675, 0.028264109, 0.0171416588, 0.0851729885, 0.00570397312, 0.0084340293, -0.00232114224, 0.0226493534, -0.00099254481, 0.00959980488, 0.00696491404, -0.0013969976, 0.028383065, 0.00798794162, -0.00436273636, 0.0172844063, 0.0416110493, -0.00958790909, 0.0236247983, -4.02175829e-05, 0.00488912, 0.0068697487, -0.0356632136, -0.00139997154, 0.019532688, 0.00104756234, 0.0121395299, 0.0143699674, -0.00831507239, -0.0281927343, -0.0144294463, -0.0285496041, 0.0228039976, 0.000902583881, -0.0118123991, 0.0147863161, -0.00593296485, -0.0148338992, 0.0186286177, 0.0157498661, 0.00204010727, -0.0161424223, 0.035568051, -0.0203178022, -0.000306313479, 0.0052965465, -0.0231965538, 0.0192352962, -0.00159104564, 0.0126569914, -0.0143104894, -0.0197468102, -0.00885037705, -0.00666157436, -0.0193185657, 0.0430385284, 0.0297153797, -0.0321896784, 0.0186524093, -0.0148576899, -0.0187832601, -0.00699465303, -0.0341405682, -0.0050348416, 0.00498725893, 0.0153454123, 0.0164992921, 0.0390653759, -0.0143580725, -0.0359011292, -0.0010698667, -0.0161543172, -0.00607571285, 0.000264864502, -0.00997451786, 0.00907044765, 0.0128354263, -0.0177126508, 0.0329747945, -0.0123120174, -0.00253972528, 0.00290254317, -0.00803552382, -0.00391664868, 0.00533818128, 0.00556419883, 0.0359487124, 0.0127402609, 0.0149528552, 0.00157617615, -0.00156725431, 0.00925483, 0.00123789301, -0.0129424874, -0.00458875438, -0.00746453227, 0.0204605497, 0.0117469728, 0.00780950626, 0.00386906625, 0.0064593479, 0.00866004638, -0.0129543832, -0.0200204104, -0.00910018664, 0.0373761915, 0.0221854225, -0.00650693057, -0.0228277873, 0.00360438763, -0.00839239452, -0.00613221712, 0.00666157436, -0.00714334892, 0.0264083836, -0.0070362878, 0.00745263649, -0.0188308433, -0.0131804012, 0.00239251647, -0.00158212392, -0.0213765167, 0.022613667, -0.000130015935, 0.0044192411, 0.0251236521, -0.040992476, 0.0249095298, -0.0241125207, 0.00249511655, 0.00977824, 0.00263340375, 0.0275265779, 0.00136502797, -0.00084236206, 0.0208293162, 0.0138108712, -0.00250849919, 0.00452332804, 0.0339978226, 0.0110570239, -0.00346163963, -0.0148576899, 0.019187713, 0.0482964143, 0.0264559668, -0.0101886401, -0.00665562646, 0.0183907039, 0.0225066058, 0.0153811, 0.0184858683, 0.0077381325, -0.0234344676, -0.0245764516, -0.00413671881, 0.00514190271, 0.016903745, 0.00035203743, -0.0136800194, -0.00842213351, 0.0195564795, -0.00662588747, -0.0130852358, 0.0114436336, 0.0142985936, 0.000595155172, -0.00890390761, -0.0160234664, -0.0273362473, -0.0197349135, 0.00493372837, 0.0172725115, 0.0111224502, -0.0444660112, 0.00526680751, -0.0161543172, 0.0130138611, -0.00199847226, 0.0246002432, -0.00580806, 0.00521625066, 0.00113975373, -0.00720282737, 0.0152264563, 0.0250522774, -0.00632254779, -0.00259474269, -0.0216263253, -0.00720877526, -0.00852919463, 0.013477793, 0.0042764931, 0.00794035848, 0.0273600388, -0.0129186958, -0.000216166605, 0.0114257894, 0.00666157436, 0.00775597617, -0.00739315804, -0.0231727622, -0.00391664868, 0.00262596877, -0.0231965538, 0.0100875273, -5.48316e-05, 0.0293109268, -0.0202107411, -0.00660209591, -0.00623333035, 0.00884443, 0.0012587104, 0.00915966462, 0.0013152149, 0.00163119356, -0.0136443321, -0.0129186958, 0.0191163402, -0.0209006891, -0.00392557075, 0.00634633936, 0.000872101227, -0.00373226614, -0.00314045651, 0.0242195819, 0.0128235305, -0.00640581734, 0.00167431531, -0.0108072152, 0.0161543172, -0.00961764809, -0.00726230582, 0.0108072152, 0.0119432509, 0.0159639865, -0.00317019573, -0.0184382871, -0.010111318, 0.0411828049, -0.0167372059, 0.0173914675, -0.0055582514, -0.00660209591, -0.00554040773, 0.00115090597, 0.00148621516, 0.00261853402, -8.35484825e-05, 0.0182360597, -0.00435678847, 0.00126242789, 0.0243504345, -0.0122406427, -0.00238508149, -0.0301912073, 0.00313748256, 0.00728609692, 0.0227564145, -0.0106942058, 0.0219950918, 0.0185096599, -0.000807418488, 0.00295607373, -0.0131685054, 0.0112651978, 0.0173914675, 0.011990834, -0.0148933772, -0.0295726322, -0.00187951559, 0.0110629722, -0.0148457941, -0.0359962918, 0.0238627121, 0.00771434093, 0.00177096762, -0.00476124138, 0.00245496863, 0.00408021454, -0.00175015023, -0.0216144305, -0.00463038916, -0.0172368232, 0.0196754355, 0.00238656858, -0.00396125764, -0.0118956687, -0.00568315573, 0.0126688872, 0.00787493307, -0.00641176524, -0.016963223, 0.0297153797, -0.0167609975, 0.0232917201, 0.00269436906, 0.014334281, -0.00977824, 0.0274314117, -0.0110153891, 0.00572776468, 0.00852919463, -0.0183074344, 0.0184977651, 0.0207698382, 0.00438355375, -2.94603669e-05, -0.0222805869, -0.023815129, 0.0166777279, 0.0087195253, 0.00537981605, 0.00771434093, -0.0267176721, 0.0065783048, -0.0169156417, 0.00384230097, 0.00171446323, 0.00831507239, -0.00555230351, 0.00332781323, -0.0115625896, -0.00739910593, -0.00783329736, 0.00989719667, -0.00864220317, -0.00256500347, -0.013763289, -0.0208650026, -0.0135848541, 0.0176531728, 0.009706866, -0.00432704948, 0.000452778884, 0.00167134148, -0.010938067, -0.00804742, -0.0181884766, 0.00525788544, 0.0152621428, -0.0236723814, -0.000663927, -0.0337361172, 0.0341643617, -0.0160948392, 0.0175223202, 0.0106704151, 0.00649503525, 0.0130376527, 0.00132264965, 0.00150108465, 0.0235058405, -0.017534215, -0.00638202624, 0.009706866, 0.000834183767, -0.0153811, -0.0118480856, 0.0271934979, 0.0279310308, -0.00362817897, -0.0208887942, -0.00830317661, -0.0154881608, -0.00320885656, 0.00509729423, 0.00164755015, -0.00413374463, -0.00272559514, -0.00407724036, 0.0243147463, 0.0120146256, 0.00357167446, -0.00669131381, 0.00760728028, 0.000131595836, 0.0274076201, 0.0174985286, -0.00024348947, -0.00754780183, 0.0145602981, 0.00135684968, -0.018616721, 0.00694707036, -0.0165468752, 0.00939757843, -0.023018118, 0.011419842, -0.0141915325, 0.0327606723, 0.0227445178, -0.0109321196, 0.0518651158, 0.0244099125, 0.0291681793, 0.00470176293, -0.0136086447, -0.00203267229, 0.00720282737, 0.00325941318, -0.0082853334, 0.00309882173, -0.0162256919, -0.0121395299, 0.00516272, 0.00440437114, -0.0177007541, -0.0130614443, -0.010652571, -0.018045729, 0.000655005279, -0.0216144305, -0.0067270007, -0.00859462097, -0.0085529862, 0.00676863547, -0.0180814154, -0.00619169557, -0.0221259445, 0.0238627121, -0.0260039326, -0.0329985842, 0.00494562415, -0.0124904523, -0.00678053126, -0.0277882814, 0.0047047371, -0.0342595242, 0.0204248633, -0.00955817, 0.0313094, -0.00945705641, -0.0155238472, -0.0325941332, -0.0166063532, 0.0172606148, -0.00125499303, 0.00727420161, 0.0345926061, 0.00117767125, -0.0115863811, 0.0228634756, -0.0128830094, -0.0202821158, 0.0180814154, -0.00185721123, -0.0169275366, -0.00974850077, -0.00742884493, 0.00076206628, -0.0240530428, 9.96262243e-05, 0.028383065, -0.0127402609, -0.0263370108, 0.0280261952, 0.0266462974, -0.00267206458, 0.00829128083, -0.00897528231, 0.0205914024, 0.0041575362, 0.0087195253, -0.0291205961, -0.00282522128, 0.00200442015, -0.000819314155, -0.00239995122, 0.00562665146, -0.00375903118, -0.0137157058, 0.00616790401, -0.00142450631, 0.00523409434, 0.00750616705, -0.00688164448, -0.0144889243, 0.00231965538, 0.0153692039, -0.0123952869, -0.00785708893, 0.000570248638, -0.00476124138, 0.0189379044, 0.00100295362, -0.00990314409, 0.000845335948, 0.0428957827, -0.0118123991, -0.00216352474, 0.0223757531, 0.00448764116, -0.0203178022, -0.00217542052, -0.00526680751, -0.00385122281, -0.0077083935, -0.0050199721, -0.00236723805, -0.00121781905, 0.00516272, 0.00402668398, 0.0129543832, -0.00379174436, -0.00750021916, -0.00201631594, -0.00132264965, 0.00369955297, 0.0208293162, 0.00794630684, -0.0160948392, 0.00644745259, -0.0322848447, -0.0300484598, 0.0181289986, 0.0352111794, 0.00148324121, -0.00252336869, -0.0143461768, 0.0215430558, 0.0042854147, 0.000827492448, 0.0333792455, 0.0126569914, 0.0213646218, -0.0272172894, -0.0259325579, 0.0168918502, 0.0409211, -0.00697086193, -0.0125380345, 0.00260366453, -0.00100221008, -0.0204248633, -0.0121335825, -0.0115506947, 0.00768460194, 0.00339026563, 0.00517461589, -0.00273005594, 0.0168561619, -0.00281629944, 0.00160591525, 0.00672105281, -0.0241957903, 0.00874926429, 0.0128711136, 0.0156547, 0.0230300147, 0.000660209625, -0.0015732022, 0.0176888593, 0.0141796367, -0.0144889243, -0.018045729, -0.010652571, 0.00841618516, 0.00620359136, 0.00889796, 0.0155119523, 0.015535743, 0.0132755665, -0.00976634398, 0.00032973307, 0.00286388234, -0.00319993496, -0.00945110898, 0.0314997323, 0.00720282737, -0.00786303729, -0.00485045882, -0.0103789708, 0.00903476, 0.0312380251, -0.00283860392, -0.00496941572, 0.00507350266, -0.00447277119, -0.00793441106, -0.00559988618, 0.00193750707, -0.00663778326, -0.00508539844, -9.04721383e-05, 0.000168026323, -0.00807715859, -0.0221973173, -0.0171059724, 0.0195683744, -0.00076206628, 0.004996181, 0.0184263904, 0.00616195658, -0.023755651, 0.00125499303, -0.0128116347, -0.0156784914, -0.000723777106, -0.0327130891, -0.0081663765, 0.0142510114, -0.0168561619, 0.0187713653, 0.00323859579, 0.00656640902, 0.0176174846, -0.00893364754, -0.00101336231, -0.00317316968, 0.0155476388, -0.00620359136, -0.0133469403, -0.0115744853, -0.00829128083, -0.0156309083, 0.0209720638, 0.00313748256, 0.00477313716, 0.0400170311, 0.000112822985, 0.00469581503, -0.0168323703, -0.0149171688, 0.0132993571, 0.0132160876, 0.00098585349, 0.00436868425, 0.00601920811, 0.0220902562, -0.0262418445, 0.000740505347, 0.0130971316, -0.0123596, 0.0275027864, -0.00237169885, 0.00399099663, -0.0158450305, -0.000693666167, -0.000770244573, -0.0038660923, -0.00726230582, 0.00829722919, 0.00940352585, -0.00462444127, -0.00948084798, -0.0237437543, -0.0165468752, 0.0284306481, 0.0280499868, -0.00507052895, 0.00866599474, 0.00224233349, 0.00681027025, 0.0425151214, -0.00961764809, -0.00495752, 0.0118659297, 0.00119997561, -0.0144532379, -0.00288767368, 0.0033040219, -0.0234463625, 0.0210553333, 0.0308811553, -0.00230627274, 0.00961764809, 0.00645340048, 0.00424378, 0.0107179973, 0.00342595251, 0.000565044233, 0.00633444358, -0.00234493357, 0.00827938505, -0.0140249934, 0.0110510765, 0.0105693014, 0.0175104234, 0.0168085806, 0.00178137643, -0.0202107411, -0.0274076201, 0.00652477425, -0.00328617846, 0.0184144955, 0.00151298032, 0.00450548436, -0.00317316968, -0.0162256919, 0.00990314409, -0.00785708893, -0.00174717628, -0.0136681236, 0.004853433, 0.00893364754, -0.0086005684, 0.00637013046, -0.0260277223, -0.0113544157, 0.000863179448, -0.000225831842, -0.0136681236, 0.00971876085, -0.010593093, 0.000704074861, -0.00243712519, 0.00905855186, -0.0320469327, 0.00977824, -0.0166420396, -0.0117588686, 0.00168769795, -0.0169870146, -0.0112295114, -0.0194494184, 0.0041664578, -0.0171059724, 0.00248768181, -0.00230627274, -0.0115209548, 0.0256708525, -0.0106644668, -0.00267652539, -0.000232337276, 0.00601326069, -0.0168204755, -0.00644745259, -0.0121097909, -0.0237794425, -0.0107298931, -0.00515677221, 0.0189141128, -0.000751285814, 0.0308573637, 0.00670320913, -0.0137038101, -1.86334491e-05, 0.0120741036, 0.0134540014, 0.023470154, 0.00375308353, -0.0130257569, 0.0154048912, -0.00245645549, -0.0221735258, -0.00929051731, -0.00748832338, -0.00971876085, 0.00141781499, -0.0226374567, -0.0312380251, 0.0280737784, 0.00169810676, -0.00710171415, 0.00417538, -0.00600433862, 0.0109856501, 0.02073415, -0.00459172809, 0.00429433631, -0.00946895219, 0.000514487678, 0.0106466236, -0.00128547568, -0.0150242299, -0.0263370108, 0.0248143654, 0.0132279834, 0.00857082941, 0.0152145606, -0.000702216174, 0.00212932471, -0.00904070772, -0.0169513281, 0.000863922935, 0.00351517019, -0.0100994231, 0.0305004939, 0.00311071728, -0.00973660499, 0.00589133, 0.00313450862, -0.0169394314, 0.00181557646, -0.0164992921, 0.0188308433, -0.00895743817, -0.0273838285, 0.017355781, 0.00863625575, 0.0265035499, 0.00320885656, 0.000258916669, 0.0295726322, 0.0175817981, -0.00595378224, -0.00145275856, 0.0164160226, -0.00482964143, 0.024838157, -0.00829722919, -0.00911208242, 0.00374118774, -0.0220664646, 0.0141915325, 0.00865409896, -0.00572181679, 0.00962359551, -0.0220545698, 0.018961696, 0.00216203788, -0.0203653853, -0.00466310233, -0.0027835865, 0.0136919143, -0.00838644616, -0.0268128365, -0.00508837216, 0.00846971571, -0.000594411686, -0.00325049157, -0.0114555294, 0.0297867544, 0.0124190785, -0.000956857868, 0.0161186308, 0.0025739253, -0.0183074344, 0.0129424874, 0.00249511655, 0.00572776468, -0.024041146, -0.0116637032, -0.00359546579, -0.0193899404, -0.0492480695, -0.0222449, -0.021245664, -0.00848756, 0.000913736061, -0.0162256919, 0.00945110898, 0.000238842724, -0.0235891119, 0.00145052804, 0.0134421056, 0.0127640525, 0.00890390761, -0.00483261561, 0.00209958549, 0.0119194603, -0.00762512349, 0.0138108712, 0.00754780183, -0.00023289489, 0.0010319493, 0.0392081253, 0.0130614443, -0.0112770936, -0.0418965444, -0.0077619236, -0.0113246767, -0.00495454622, -0.00904070772, 0.03894642, 0.0116696507, 0.0127164694, -0.00367278769, 0.00182747212, 0.0108904848, 0.00199103751, -0.00216947263, 0.0150242299, -0.00302001298, 0.00378579646, 0.00423485786, 0.0246478263, 0.0222567953, -0.0303339548, -0.0302387904, -0.00393151864, -0.000224344883, 0.0231013894, 2.14621559e-06, 0.0133469403, -0.00694112247, -0.0119551467, -0.00376497908, 0.0227802061, -0.00106317538, -0.00957601331, -0.0104919793, -0.00827938505, -0.0296202153, 0.000110592548, 0.00369360507, -0.0199133493, -0.0141558461, 0.0173200928, 0.0233630929, -0.0188546348, -0.0045619891, -0.0217452832, -0.0088384822, 0.0064355568, 0.0248143654, -0.00779761095, 0.00499915471, -0.00338134379, 0.00610247813, -0.00757159293, 0.00579616474, 0.000912992575, 0.0173200928, 0.0222330056, 0.00278507336, 0.0138941407, -0.0272172894, -0.00401181448, 0.00526383333, -0.000466904981, -0.0161305275, -0.0107417889, 0.00710766204, 0.0123239132, -0.00741100172, 0.0164160226, -0.00074422278, -0.00233749882, -0.00179178512, -0.000814109808, 0.00448764116, -0.0172368232, 0.000625637826, -0.00196427223, -0.0020787681, 0.00414861459, 0.0105395624, -0.00454414543, -0.0257422272, -0.00218434213, -0.0194970015, -0.00896933395, 0.0148576899, 0.00676268758, -8.42455e-05, -0.0114971641, -0.015250247, 0.0100161526, -0.0016445762, -0.0123120174, 0.0109142764, 0.0261704717, 0.0035181439, 0.0255518965, -0.0220783614, -0.000666529173, -0.0235177372, -0.0027939952, -0.0151431859, 0.0192828793, 0.0126094092, 0.0100458926, 0.0262656361, 0.00810689852, 0.0162256919, -0.00732178427, 0.0229705367, -0.0132160876, -0.0145721938, -0.0144413421, -0.00470176293, 0.0127045745, 0.0312142354, 0.0179029815, -0.00815448072, 0.00528465072, -0.0203772802, -0.00898717809, 0.0100399442, 0.00142524985, 0.0144889243, -0.0211148113, -0.0159045085, -0.000946449116, 0.0111581376, 0.00808905438, -0.0105990404, 0.00737531437, 0.0101351095, 0.0175699033, -0.0353539288, -0.00858867262, 0.00737531437, 0.0364245363, 0.00445195381, -0.0115685379, -4.50501975e-05, 0.00440437114, -0.000695524854, 0.0184144955, 0.00382743147, 0.0262894277, -0.000165517078, -0.0140130976, -0.00578724267, -0.0181289986, -0.019984724, -0.0197824966, -0.00581400795, -0.00568910362, 0.00719687948, 0.00346461358, -0.0188665297, 0.00305421301, 0.00239995122, 0.0130733401, -0.0312618166, 0.00641771313, -0.0180933122, 0.017986251, 0.0173319895, 0.00421998836, -0.00538279, 0.000486607198, -0.00586753851, 0.000926375214, 0.00132116268, -0.00402073609, -0.0209601689, 0.00415158831, 0.000526383345, 0.000286239519, 0.01227633, -0.0217214916, -0.0304291211, -0.0100102052, 0.00426757103, -0.000995518756, -0.00348245702, -0.0065842527, 0.0161781088, 0.021757178, -0.00169513281, -0.019532688, 0.00835076, -0.011419842, 0.0110629722, 0.00984961353, -0.00238805544, 0.0307622, -0.0110808155, 0.00276574306, -0.0155238472, 0.0100102052, -0.0196516439, -0.0130614443, 0.0256232694, 0.0153573081, 0.0374713577, 0.00248768181, 0.011931356, -0.023018118, 0.00790467206, -0.021757178, -0.0116815465, -0.00895149074, -0.00958790909, -0.0290730149, -0.00942731742, -0.0120741036, 0.00268247328, -0.0173081979, -0.00965928286, -0.00467202393, 0.00687569659, 0.00901096873, 0.0146554634, -0.0243385378, 0.0033605264, 0.00676863547, -0.0140725756, -0.00774408039, -0.00330699584, 0.0111581376, 0.000145907805, -0.0138584543, 0.00809500273, 0.00838049874, 0.0133469403, -0.00987935252, -0.00139328022, -0.00444898, 0.0229943283, 0.0201512631, -0.0129662789, -0.00971281342, -0.00525788544, -0.0166539364, 0.0149409594, 0.000890688214, 0.0135372709, -0.0166301448, -0.00295012584, 0.00745858438, 0.00234493357, -0.0197230186, -0.00657235691, -0.0160472579, 0.018331226, -0.0327130891, -0.00859462097, -0.000327130896, 0.0195564795, 0.00647719158, 0.0175817981, 0.0344260633, 0.0163684394, 0.0159283, -0.0104027623, -0.00175609812, -0.0308811553, -0.00422296254, 0.00391664868, 0.0211742911, -0.00898123, 0.00565936416, 0.0121216867, -0.0018586982, -0.000327316753, -0.0221259445, 0.01884274, 0.0120265214, -0.0132636707, -0.00262894272, 0.0137157058, 0.0121930605, -0.011509059, 0.00286239525, 0.00188100256, -0.00875521172, -0.016273275, 0.00764891505, -0.0173200928, 0.0155595345, -0.0153335165, -0.00952843, 0.0169394314, -0.00265422114, -0.0136205405, 0.00973065663, 0.0077083935, -0.0201869495, 0.0249095298, 0.00623927824, -0.0312142354, -0.00406534458, -0.0054303729, -0.0187832601, -0.00178583723, 0.0353301354, 0.00525193755, 0.0101707969, 0.0175699033, 0.0197824966, 0.00242820336, -0.0302149989, 0.00338729168, 0.00195981143, 0.00271964725, -0.00572776468, -9.60714624e-06, -0.0348067284, 0.00123640604, -0.0257422272, 0.00723256636, 0.0125142438, 0.00198806357, -0.0213170387, 0.0114079462, -0.0181765817, 0.00591809535, -0.0153573081, 0.0104741361, 0.0239578765, -0.0184263904, 0.0219118223, 0.00754780183, 0.00480882404, -0.0038095878, 0.0078511415, -0.000176483401, 0.0082853334, -0.00728609692, -0.0213646218, 0.0298343375, 0.00641771313, -0.0185810346, 0.011134346, 0.000329918927, 0.0130733401, -0.0135372709, -0.0121335825, -0.0132160876, 0.0185453482, 0.0166301448, 0.00950464, 0.0284306481, -0.0103254402, -0.00751806237, -0.000397761411, -0.00376497908, 0.000249251432, -0.00101261877, -0.00727420161, 0.0070124967, 0.00752995815, 0.00372631825, -0.0151431859, -0.0108131627, 0.00402668398, 0.0116280159, -0.0204367582, -0.00637607835, 0.0121633215, -0.016963223, -0.00576345157, 0.0126807829, -0.0155476388, 0.00838049874, -0.00676863547, 0.0270031672, -0.0096354913, -0.0146435685, 0.00389285758, 0.0126688872, 0.00219921186, 0.00538279, 0.00303042168, 0.0157379694, 0.0182360597, -0.0238983985, 0.0105276667, 0.00595080806, -0.00338431774, 0.0161662139, -0.0228277873, -0.00358951814, 0.0311904438, -0.00402371, 0.00924293417, 0.0123001216, -0.00574560789, 0.0114555294, 0.00262299483, -0.0215549525, 0.0135491667, -0.00395530974, 0.0125380345, 0.0202345327, 0.0102421707, 0.00611437391, -0.00344677, -0.00270329067, -0.0171059724, 0.00131967571, -0.0132517749, -0.00149439333, -0.00511811161, -0.00660209591, -0.0224590227, -0.0155595345, -0.00197914196, -0.0063166, 0.00554635562, -0.00125945394, -0.00247727311, -0.00418727519, -0.0183788072, -0.00177394156, 0.00466012815, -0.00220515952, -0.0209482722, 0.00641176524, -0.0190687571, -0.0082853334, 0.00309882173, 0.00807121117, -0.0190211739, 0.00723256636, -0.0079998374, -0.0302387904, -0.0150837079, 0.0176412761, -0.00493670255, -0.0223043784, -0.0141201587, -0.0130971316, 0.00462146709, -0.0156784914, -0.00758348871, -0.000832696795, -0.034545023, 0.0115209548, 0.00158658484, -0.0296202153, -0.0176888593, 0.00439247582, -0.00918345619, 0.0211029164, -0.0161067359, 0.0132160876, 0.017022701, 0.00163119356, 0.0102362232, -0.00130183226, -0.0047433977, -0.0077083935, -0.0226017702, -0.0019969854, 0.00286685606, -0.0341643617, -0.00997451786, 0.0164279193, 0.00424675364, -0.00350327441, -0.020044202, -0.011193824, -0.0038660923, 0.0254805218, -0.0020743073, -0.0141558461, 0.00958790909, 0.00626306934, -0.00264678639, 0.0104562929, 0.0319517665, 0.00893959496, -0.0109975459, 0.0156309083, 0.0306908246, 0.0133112529, 0.00541252922, -0.00896338653, 0.011193824, -0.0183788072, 0.00129588437, -0.00353003968, -0.00521327695, 0.00786898471, 0.0158926137, 0.00496941572, -0.00639392203, 0.0225185, 0.00452630175, -0.00184382859, -0.0203059055, -0.00736936694, 0.00902881287, -0.0237675458, -0.00496049365, -0.0147863161, 0.0237199627, -0.00937378686, -0.00104607537, 0.00978418719, -0.0263845939, -0.0056117815, -0.0245050769, -0.0068697487, -0.00324156974, -0.0111997724, -0.0171535537, -0.00938568264, 0.000751285814, -0.00195088971, -0.00704223569, 0.0250760689, 0.0199252442, -0.0246954076, -0.0161186308, 0.00441329321, -0.0020638986, 0.00421404047, 0.0136205405, 0.0110689197, -0.0175699033, -0.0245288685, 0.000955370895, 0.011223563, -0.00314343045, -0.0148220034, -0.00389285758, -0.0173438843, 0.00893364754, 0.0286923535, 0.00967712607, -0.00680432236, 0.00253675133, 0.00557609461, 0.00535899866, 0.000683629187, 0.012847322, 0.0103492318, -0.00998641364, -0.00462741498, -0.00108547974, 0.00245942944, -0.0396125764, -0.0119075645, 0.00361925713, -0.0220545698, 0.00324454368, 0.0258849747, -0.0319517665, 0.00650098315, 0.00222746399, 0.00637013046, -0.00226017693, 0.0285971873, 0.0175817981, -0.0396363698, 0.0155833261, -0.0063166, 0.0300246682, 0.000544226845, -0.00372631825, -0.00417538, -0.0166420396, 0.0025174208, -0.034949474, 0.00619169557, 0.00603705179, 0.0252664, 0.0180933122, 0.0183074344, -0.0183074344, -0.00374713563, 0.015250247, -0.00959385652, -0.00435678847, -0.00241184677, 0.0193899404, 0.00331591768, 0.0239697732, 0.0215192642, -0.0231489707, -0.0195564795, 0.00956411753, 0.0285496041, 0.0169513281, 0.0180576257, 0.00191668957, 0.018045729, -0.00627496513, -0.0299532935, -0.000546457304, 0.00702439249, 0.0024311773, -0.0139655154, -0.00442221481, 0.0188665297, -0.00368170952, -0.0170464925, 0.00576939946, 0.00723851426, 0.0193899404, -0.00369955297, -0.00526680751, 0.00149959768, 0.0111165028, -0.0145127159, 0.00711955782, 0.0119967815, -0.0100934748, 0.0105574057, 0.00392854447, 0.00871357694, 0.0143223852, -0.00694707036, -0.00130034529, -0.0186286177, -0.0174628422, -0.00998046622, 0.00966523122, 0.0204605497, 0.00844592508, 0.0134302098, 0.00704818359, -0.0115625896, -0.0110689197, 0.0151788732, 0.00455604121, 0.00074422278, -0.00587051269, 0.0335219949, -0.00993883144, 0.00226612482, -0.0129424874, -0.00914776884, -0.00603407808, 0.0126926787, -0.000799240253, 0.00789872371, 0.0187118873, -0.00411590142, -0.00381256174, 0.0019360201, 0.00684595713, -0.016963223, -0.0127521567, -0.0106942058, -0.00304231723, 0.0136443321, -0.00852324627, -0.0107061015, -0.0130376527, 0.00877305586, -0.0104265539, -0.00410995353, -0.0236247983, 0.0130138611, -0.00383635308, 0.0403263159, 0.0129186958, -0.0111997724, -0.00982582197, -0.00437463215, -0.0379471816, -0.00811284594, -0.0137870796, -0.0220307782, -0.00846376829, 0.000759835821, -0.0175580066, -0.00814853329, 0.0248857383, -0.0265987143, 0.00107507105, -0.0368765742, 0.0159758832, -0.00287875184, -0.0125380345, 0.00199401146, 0.00512108533, 0.0226017702, 0.0139298281, -0.0317614339, -0.0100280484, 0.00632254779, -0.0200679936, 0.000774705433, -0.0154881608, 0.0228515789, -0.00614411291, 0.00263489061, 0.0154405776, -0.0100399442, -0.0235177372, 0.00750021916, -0.0222567953, 0.00628091302, 0.00695896614, -0.00185572426, 0.00807715859, 0.00361330947, 0.0127878441, -0.00271072541, 0.00525491172, 0.0203415938, -0.0126926787, -0.0157974474, 0.0199252442, 0.0195564795, 0.00294269109, -0.0100934748, -0.0159877781, -0.0306908246, -0.00722661894, -0.00248768181, -0.011223563, 0.00517461589, 0.0156784914, 0.0214003082, 0.00939757843, -0.00171446323, 0.00760728028, -0.0185096599, -0.0140606808, -0.000269511249, -0.00345866568, -0.0264559668, -0.00148398464, 0.00739910593, -0.0211742911, -0.00439544953, 0.00226315088, -0.00634039147, 0.0135253752, 0.0137038101, 0.0145008201, -0.0132755665, -0.0170108061, 0.00563259888, 0.00742289703, 0.000843105488, -0.015190769, -0.0131685054, -0.00447574537, -0.0117112854, 0.0111759808, 0.00920724776, 0.0270983335, 0.00241036, 0.0101589011, 0.0161543172, -0.00560880778, 0.0330223776, -0.00142450631, -0.00477611087, 0.00254418608, -0.00914776884, -0.00548985088, 0.000561698631, -0.0160353612, 0.00763107138, -0.00620359136, 0.00604894757, -0.0142153241, -0.00974850077, 0.022209214, -0.0097544482, 0.00328023056, 0.0117231812, -0.00492183305, -0.00272856909, -0.00432704948, -0.00368468347, 0.0190925486, 0.00184234174, -0.00816042908, -0.00647719158, 0.00360141369, -0.0166301448, -0.0119373035, -0.0203891769, -0.00077321846, 0.00782140251, -0.0230657011, -0.00355383102, -0.0132041918, 0.00145944988, -0.00874331687, 0.00750616705, -0.00382445753, 0.0104087098, 0.0159283, 0.0144651327, -0.00409508403, -0.0128949052, -0.00688759238, 0.00234939461, -0.00720282737, -0.00269585592, -0.0161781088, -0.0309287384, 0.00432110159, -0.00311963912, 0.00475529348, 0.00821990706, -0.00151967164, 0.0105990404, -0.00180814159, -0.0195445828, 0.0196873322, -0.03095253, 0.0178672951, -0.0059924433, 0.0140249934, -0.0241125207, -0.00734557537, 0.0106287804, 0.0200204104, 0.0108012669, 0.0166063532, -0.00296648243, -0.00689948769, -0.0398267, 0.0073039406, -0.00739910593, -0.00952843, 0.0192709826, 0.00167282845, -0.0279072393, 0.00795225427, 0.0182241648, 0.0115685379, 0.0064652958, -0.00632254779, -0.0018289591, -0.00243266416, -0.00282968208, 0.00474042399, -0.0165825617, 0.00562962517, -0.00637013046, -0.0043002842, 0.000576568185, 0.0343784839, -0.0396839492, 0.0194613133, -0.000505565898, -0.00846971571, -0.00810689852, 0.00930836052, 0.011223563, -0.0173200928, -0.00330104795, -0.016273275, 0.0168204755, 0.0295488406, 0.00887416862, 0.000217839435, -0.00836265553, -0.00455604121, -0.0108310059, 0.00231965538, 0.00855893362, 0.0127878441, 0.00818422, -0.011449581, -0.00673889648, 0.0308573637, -0.00035092223, 0.0148695856, -0.034045402, 0.0190330707, -0.0236961711, -0.0147744203, 0.0139179323, 0.0106406752, 0.00980797876, 0.000642366125, -0.0285258126, -0.00737531437, -0.0137394974, -3.57102399e-05, 0.00741694961, 0.00270775147, -0.00591512118, 0.00268396013, -0.00708387047, 0.00503186788, -0.0161186308, -0.0112295114, -0.000677681353, -0.0146911507, -0.0179029815, 0.000826005475, 0.0207698382, 0.027241081, -0.00492480677, 0.0154048912, -0.0269317944, -0.0122406427, 0.00965333544, 0.00279696914, 0.0181171037, 0.0203415938, 0.00690543558, 0.0044341106, 0.0231727622, -0.00772623671, 0.0293109268, -0.00598649541, 0.00297689112, -0.0316186883, -0.0151193952, -0.00274195173, 0.00334268296, -0.010367075, 0.0116220685, 0.000886970782, -0.00345569174, 0.00383040542, -0.00676863547, 0.00245348178, 0.0190092791, -0.0108607458, -0.00513298111, -0.0113306241, 0.0211029164, -0.0104622403, -0.00813663751, -0.00921319518, 0.00419024937, 0.00623333035, 0.00384230097, 0.011764816, 0.00696491404, -0.0152026648, -0.0184382871, -0.00687569659, 0.0189854875, -0.013132818, 0.0130376527, -0.0108429017, -0.00511811161, -0.0078808805, 0.000388096203, 0.00780355884, 0.0249333214, -0.0402311496, -0.00996857, 0.00282224733, 0.00160294131, -0.00181111554, -0.00496941572, -0.00613816502, -0.0215787422, 0.025409149, 0.00729204481, 0.0273838285, -0.0273838285, 0.0298343375, -0.00979608297, 0.0212337691, -0.00346758752, 0.0136562278, -0.000338840677, -0.00345866568, -0.00692922715, -0.00520435488, 0.00484153721, 0.00490993727, 0.00710171415, -0.00768460194, 0.0130852358, -0.00505565898, -0.00729204481, -0.00194345484, -0.0156309083, 0.00245794258, -0.00861841161, -0.00119477126, -0.013132818, -0.00119625824, 0.00726825371, -0.00383040542, -0.00928456895, -0.00521922484, 0.00693517504, -0.0176174846, -0.0229110587, -0.00208025496, -0.0234344676, 0.00299176062, 0.0297391713, -0.000889201241, 0.00537089445, 0.00324156974, 0.0143818632, -0.00100518402, 0.0190211739, 0.0211386029, 0.00661993958, 0.00477611087, 0.00490696356, 0.0125380345, 0.00530249439, -0.0216739085, -0.0103849191, 0.00146911503, 0.000416348397, 0.0157260746, -0.0151074994, 0.0123001216, -0.000308543909, 0.00257095136, 0.0205081329, -0.0112533029, -0.0139298281, -0.0067270007, 0.00575750368, -0.00655451324, -0.0280737784, 0.0274314117, 0.00829128083, 0.0104741361, 0.00996857, 0.00468391972, -0.00592404278, -0.00710766204, -0.00357762235, 0.00454414543, 0.000559096399, 0.0120027298, -0.00817827228, 0.0158688221, 0.00772623671, -0.021245664, 0.00475826766, -0.0245764516, -0.00261704717, -0.0197824966, 0.0249095298, 0.00796415, 0.0130257569, 0.00570099941, -0.0066080438, -0.0211148113, 0.00890390761, -0.0203653853, 0.0112116681, 0.0281451512, -0.00157617615, 0.00735747116, 0.020044202, 0.0169989113, 0.00678053126, -0.00191520271, -0.012335808, -0.0145365074, -0.00332781323, -0.00419322308, 0.00264232536, 0.0202583242, -0.00281183864, -0.00120889733, 0.0173438843, 0.00590322539, 0.000641994353, 0.00981392711, -0.011675599, 0.00700654881, -0.00302893459, -0.00754780183, 0.0185691379, 0.00818422, -0.0144175505, 0.000742364093, 0.00965333544, -0.0179267731, 0.00113306241, -0.00971281342, -0.00653667, 0.0199133493, -0.0186286177, -0.00155684561, -0.00122228, -0.00376200513, -0.0185810346, -0.0130138611, 0.010367075, 0.0197349135, 0.00676863547, 0.00902881287, -0.0169275366, 0.00421701465, 0.00689354, 0.0164755, 0.00137692364, 0.0172606148, -0.0105752498, -0.0122049563, 0.00685785292, -0.0111283977, 0.00421106676, 0.0293109268, 0.0104562929, 0.00417240569, 0.021816656, 0.0233036149, -0.0160353612, 0.00728014903, 0.0202107411, 0.0129186958]
|
08 Feb, 2024
|
Array of Structures vs Array within a Structure in C++
08 Feb, 2024
In C++, an array of structure and an array within structure are used frequently used for data storage. Although they sound similar, they work pretty differently from each other. In this article, we will discuss the key differences between an array of structures and an array within structures and clarify the confusion.
Array of Structures in C++An array of structures combines both an array and a structure to handle complex data neatly. Instead of creating many separate variables of structure, we use an array of structures. Each element in this array is a structure on its own and since the array elements are stored continuously in memory, it allows for quick access and makes our program more efficient and straightforward.
SyntaxstructName charArrayName[size];We can also create a multidimensional array to store more structures.
ExampleThe below example demonstrates the use of an array of structures in C++.
C++
// C++ program to demonstrate the use of array of structure.
#include <cstring>
#include <iostream>
using namespace std;
// defining struct coordinates
struct Coordinates {
int x;
int y;
};
int main()
{
// Declare an array of structures
int size = 3;
Coordinates vertices[size];
// Assign values to elements in the array
vertices[0].x = 2;
vertices[0].y = 4;
vertices[1].x = 3;
vertices[1].y = 6;
vertices[2].x = 4;
vertices[2].y = 8;
// Displaying the values stored in the array of
// structures
for (int i = 0; i < size; ++i) {
cout << "Coordinates of ( x , y ) " << i + 1
<< ": (" << vertices[i].x << ", "
<< vertices[i].y << ")" << endl;
}
return 0;
}
OutputCoordinates of ( x , y ) 1: (2, 4)
Coordinates of ( x , y ) 2: (3, 6)
Coordinates of ( x , y ) 3: (4, 8)
Array Within a Structure in C++An array within a structure simply means that we can create one or more arrays inside a structure as structure member which can be useful when we want to associate a collection of items within a single structure.
Syntax structName myVar; // Creates a single variable of structNameExampleThe below example demonstrates the use of an array within the structure.
C++
// C++ program to demonstrate the use of array within
// structure
#include <iostream>
#include <string>
using namespace std;
// Definingstructure
struct Student {
string name;
int grades[5]; // Array to store grades for 5 subjects
};
int main()
{
// Creating an instance of Student
Student student1;
// Initializing the student's name
student1.name = "Jack";
// Initializing the student's grades
student1.grades[0] = 85;
student1.grades[1] = 92;
student1.grades[2] = 76;
student1.grades[3] = 81;
student1.grades[4] = 90;
// Output the student's information
cout << "Student Name: " << student1.name << endl;
cout << "Grades: ";
for (int grade : student1.grades) {
cout << grade << " ";
}
cout << endl;
return 0;
}
OutputStudent Name: Jack
Grades: 85 92 76 81 90
Difference Between Array of Structures and Array Within a Structure in C++The below table demonstrates the key differences between an array of structures and an array within structures:
Feature
Array of Structures
Array of Structures
Definition
It is declared as an array where each element is a structure.
A structure contains an array as one of its members.
Syntax
struct Point { int x; int y; };
Point points[3];
struct Person { char name[50];int grades[5]; };
Person person1;
Memory Allocation
Memory is allocated for every structure element separately.
Memory is allocated for the entire structure, including the array within it.
Memory Efficiency
It can be a memory-saver if structures have a fixed size and minimal unused space.
It may have higher memory overhead, especially if arrays within structures vary in size.
Code Readability
Enhances code readability by providing a clear structure for related data.
Improves code readability by encapsulating arrays within the context of a single structure.
Accessing Data
Enhances code readability by providing a clear structure for related data.
Accessing data involves indexing the structure and then the array within it.
ConclusionIn conclusion, if you're dealing with many items that are alike and you want to work with them individually, go for an array of structures. But if you need to store multiple details about a single item, having an array within a structure will serve you better. Both ways help make your code more readable and organized, saving you time and effort when working with complex data.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++
|
https://www.geeksforgeeks.org/array-of-structures-vs-array-within-structure-in-cpp/?ref=ml_lbp
|
Pandas
|
Array of Structures vs Array within a Structure in C++
|
Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0349154845, 0.00575726246, -0.0193974897, 0.019091215, 0.0289503895, -0.0180119555, -0.0302775875, -0.0197475199, -0.0411285125, -0.0115728639, 0.0131917521, 0.000648102257, 0.0539046042, -0.0466414839, -0.0125354463, -0.00593227753, -0.00869970117, 0.0385616273, -0.0100268982, -0.00205824873, 0.0432578623, 0.00200720271, -0.0310943238, 0.000947997672, 0.0138188889, 0.00864136312, -0.0115364026, -0.00880908594, -0.0479832664, 0.0258730445, 0.0198350288, -0.00349482987, -0.0157950986, -0.0619552918, -0.00255412445, -0.00544369407, -0.00487124966, -0.00290962355, 0.00783921126, -0.0153429778, 0.051746089, 0.0139282737, 0.0099831447, 0.00334898406, 0.0128635988, 0.0364322774, -0.00108472805, -0.0185078308, 0.000740167394, -0.0133157205, -0.0257709511, 0.0131407063, 0.0306276157, 0.0319110602, 0.00776628871, 0.0146866711, -0.0195870902, 0.00183856848, 0.00145936944, 0.001939749, 0.0273606703, -0.00974979158, -0.0139574427, -0.0428203233, 0.00809444115, 0.0183911547, -0.0655139312, 0.0389699973, 0.0293441731, -0.021016378, -0.00731052039, 0.0319402292, 0.00503532588, 0.000539173663, -0.0151971318, -0.0214685015, 0.0210017934, 0.0330486558, 0.0260188896, 0.0688975528, 0.0241374783, 0.0286732838, -0.0306859557, 0.00286222366, -0.012236462, 0.00777358096, -0.0123020923, -0.0262376592, 0.0420619287, 0.00112483569, -0.0476040654, -0.00414931262, 0.0543713123, 0.0182890631, -0.00073834433, 0.0124698151, 0.005888524, 0.00717196707, 0.0190474615, 0.0326694585, -0.0149346096, 0.0236561876, -0.00918099284, -0.00215304852, 0.00382845197, -0.0178952795, 0.0438412465, 0.0151242092, 0.0125646153, 0.0158242695, 0.00899868552, -0.00468529621, -0.0319402292, 0.0115874484, -0.0198204424, 0.00346383755, 0.0339529, -0.0515710711, -0.00702247489, -0.00615469227, 0.0078829648, 0.0404284522, -0.00140832341, -0.00599426217, -0.0599717908, 0.0441621058, 0.0453580432, -0.0209872089, -0.0103331748, 0.0311234929, 0.0009516438, -0.0087653324, 0.0188724454, -0.002922385, -0.00789754931, 0.0124989841, 0.0331361629, 0.0203309041, -0.0027455471, -0.0095529, -0.0369573236, -0.0459705926, -0.0135782436, -0.00229342515, 0.0262376592, 0.00417119, 0.00791942701, 0.0607301891, -0.0262814127, -0.0278857164, -0.019091215, -0.010165452, 0.0252021533, -0.00259240903, 0.0432286933, -0.0319110602, -0.0316193663, 0.0218622852, 0.000478556496, -0.0402826071, -0.000992663, -0.0425869711, -0.0392908566, 0.0036971909, -0.017793186, 0.00378469843, 0.0278565474, 0.0122437542, -0.0717561319, 0.0248521231, -0.0196600128, 0.0535837449, 0.0296212807, 0.0297233723, -0.0113540953, -0.0439870916, -0.00982271414, 0.00575726246, 0.00549474033, -0.00677089114, -0.0172535572, -0.0189016145, 0.00440454297, 0.00191604916, 0.00950185303, 0.0397283956, 0.0149783632, -0.0144387335, 0.0244145859, 0.0164368208, 0.0149273174, 0.0060526, 0.0569673665, 0.0295775272, -0.005888524, -0.00542910956, -0.0366072953, -0.0174285732, -0.0396700576, 0.029198328, 0.00500980299, 0.0206809342, -0.00527232559, 0.0118499706, 0.0309193078, 0.0237436946, 0.00349118374, 5.05902608e-05, 0.0182161387, 0.0153867314, -0.00275101629, 0.0441037677, -0.0105738202, -0.00801422633, 0.0187411848, 0.0129729835, -0.0147595946, 0.00950914528, -0.00417119, -0.0342154242, 0.00612552324, -0.0207684413, 0.0459997617, -0.00941434596, -0.0218185298, -0.00108655111, 0.00708445953, 0.0210893024, -0.028935805, -0.006996952, 0.00260699354, 0.0230144653, -0.0181432161, -0.00147121947, -0.00275466242, -0.0561506301, 0.0185078308, -0.0126302456, -0.0292420816, 0.0546046644, -0.0163201448, 0.0198933668, -0.0492667072, 0.00364796794, 0.00520669483, 0.0169472806, -0.00188870297, -0.0158534385, 0.00101362821, 0.0300734024, 0.0365781263, 0.0214101616, 0.00350576825, -0.00268173963, -0.0099175144, 0.0187995229, 0.00175288413, -0.0295191891, 0.00413108198, -0.0158096831, 0.00416025147, 0.0122875078, -0.0110040652, 0.0111061567, 0.00334898406, 7.66829835e-05, 0.0376573838, -0.00445558876, -0.01171871, -0.0324361026, 0.0273752548, -0.0419744179, -0.00291691581, -0.00138918112, 0.0227227751, 0.0326402895, 0.0321735814, -0.00271273172, 0.018945368, 0.0387074724, 0.0256396905, -0.0290524829, -0.00990292896, 0.0133303059, -0.0091007771, -0.000613008102, -0.0113103408, 0.00293696974, -0.0381532609, -0.0422952808, -0.0297379568, -0.0422952808, 0.00330158416, 0.00766419666, 0.0460872725, -0.0146429176, -0.0244729239, -0.0341570862, -0.0567048453, -0.00859761, 0.0224164985, -0.0443371199, 0.0298400484, -0.0239624642, -0.0384157822, -0.0118135093, -0.0118645551, -0.00896951649, 0.00535254041, -0.0323194265, -0.00295702345, -0.00963311456, -0.0220227148, -0.000165443824, 0.0104498509, 0.0334570259, 0.0265876874, 0.0146720866, 0.00253954, -0.0111353267, -0.0180119555, -0.0056004785, -0.0263543352, 0.00836425647, -0.00395242078, -0.0020600718, 0.00150950393, 0.00210929476, 0.00456497353, -0.0570548736, -0.051366888, 0.0264418423, -0.0192516446, -0.00552390935, 0.00814548787, -0.0142418416, -0.0254938453, 0.00285310834, -0.0299858954, -0.00528326398, 0.000545098679, 0.0374823697, -0.0193391517, 0.00233353279, 0.0159117766, -0.0113978488, -0.0428494923, -0.0137022119, -0.0120906159, -0.00228613289, 0.00127706223, -0.0117843403, -0.0127542149, -0.00557130948, 0.0329319797, -0.0106102815, 0.00196344894, 0.0106977886, 0.049383387, -0.00686569093, 0.00314115384, 0.0101508675, -0.0378032289, -0.0165097434, -0.0399909168, -0.0274773482, -0.0102967126, 0.00168725348, 0.0430536792, -0.00716102868, -0.0068438137, 0.015517992, -0.0106321583, -0.0317943841, -0.0450955182, 0.00809444115, 0.0451538563, -0.00500251073, 0.0181286316, -0.00657764543, -0.0208851174, 0.0415952206, 0.00778816547, 0.00256506284, -0.0130021526, -0.00285310834, -0.0176473409, 0.0295046046, 0.025741782, 0.0161888823, -0.0042295279, 0.0294025112, 0.0453288741, -0.00325965346, 0.0159847, 0.0016398537, 0.0399034098, -0.0123750158, -0.00892576296, -0.0163784828, 0.0232040659, 0.0012734161, -0.00346930674, -0.0159409456, -0.00194157218, 0.0268502105, -0.0255667679, 0.00882367, -0.0002602436, 0.0703560114, 0.000650381087, 0.00383574446, -0.012695876, 0.0224748366, 0.00977896061, 0.02337908, -0.0206225943, 0.0418869108, -0.000446424849, 0.000710542488, -0.020301735, -0.0257563666, -0.0267627034, 0.0322610885, 0.0104060974, -0.00974979158, -0.0406326391, -0.023612434, -0.00038649136, -0.00529784849, -0.0411576815, 0.00948726851, 0.0222998224, 0.00945080724, -0.0191641375, -0.0509585217, 0.0170785431, -0.0352363437, -0.0157367606, -0.0299858954, -0.00262887054, 0.0778233185, 0.0258438755, -0.042878665, -0.0123750158, 0.0281044841, -0.0506959967, 0.0258001201, -0.0229415428, -0.0278711319, -0.026835626, -0.0238895416, -0.0534379, -0.00987376, 0.0397867337, 0.0156784225, 0.0350029916, -0.0446871519, -0.000973520684, 0.0293295886, 0.0346821286, -0.0024101017, 0.011777048, 0.00820382591, 0.00652659917, -0.0139866117, -0.00289503904, -0.00526867947, -0.0262959972, 0.00103185896, -0.0141907958, -0.0205059182, 0.0198204424, 0.0128781833, -0.0169181116, -0.00654847594, 0.0261647347, -0.0212643165, -0.0311526619, -0.0385324582, 0.00126885844, 0.0244437549, -0.0475748964, -0.00634064572, -0.00811631884, 0.010048775, 0.0181869697, 0.0140959956, -0.00241739396, 0.00646096887, 0.0310359839, 0.0381240919, -0.0187411848, -0.0465539768, -0.0240645558, 0.0326402895, -0.018916199, -0.00412378972, -0.0186682623, 0.0771815926, -0.0138480579, -0.0251438152, -0.0173264798, 0.0135199055, -0.00488583418, -0.0282065757, -0.0373365246, 0.0603801571, 0.0323485956, -0.0326402895, 0.0163201448, 0.0128563065, 0.0269814711, 0.0172098037, 0.000813546067, -0.0272002406, -0.0349738225, 0.0144679025, -0.0485083126, 0.017968202, 0.017968202, 0.0279440545, 0.0128271375, 0.0283232536, 0.0101508675, -0.00402899, 0.0148252249, -0.0271710716, -0.0137751354, -0.0297671258, -0.0220518839, -0.00924662314, 0.000296705024, -0.00683652144, -0.0281482376, -0.00286586978, 0.0142053803, 0.0279732235, 0.0131917521, 0.0279003, -0.00622032303, 0.013417813, 0.00645367615, 0.015868023, -0.00872887112, 0.0408368222, 0.0175598338, 0.00333439955, -0.000164190453, -0.00607812358, 0.0157367606, 0.0133157205, -0.0088309627, -0.0387074724, -0.018945368, 0.013388644, -0.0368989855, 0.028935805, -0.00705893617, -0.00115582789, 0.0253917519, 0.0344779454, 0.0318818912, 0.0237582792, -0.00257782429, -0.0308026318, 0.00847364, 0.0178077705, 0.0296066962, 0.0281044841, 0.006420861, -0.0259605516, 0.0327277966, -0.000212957646, 0.00459049642, -0.00428057415, 0.0181140471, 0.0076131504, 0.0197912734, 0.00545098633, 0.00272731623, -0.0382116, -0.00432068156, -0.0167139284, -0.0175598338, -0.0102092056, 0.000391504815, -0.00528691, -0.0425869711, -0.0116676632, -0.0309193078, 0.0127687994, -0.00953831524, 0.0253625829, -0.005888524, 0.0145262415, -0.0230873898, -0.0285711903, 0.00518117193, 0.000273005106, 0.00601978507, 0.00195251056, 0.0172681417, 0.00591404689, -0.00478738826, -0.00315026916, 0.0100414827, -0.0046962346, -0.00867053214, 0.0110332342, -0.0445413068, -0.0315318592, 0.00456861965, -0.00345472223, -0.00310469232, -0.00252313213, -0.00393054402, 0.0212643165, -0.00683287531, -0.00059204275, 0.0082548717, -0.00345289917, 0.0067927679, -0.00405451283, 0.00801422633, 0.00658129156, -0.0345071144, -0.0157513451, -0.010595697, -0.00671255263, 0.000569710159, -0.0333986878, 0.0160722062, -0.0267335344, 0.0068182908, 0.00251037069, 0.00106467435, 0.0225185901, -0.00615104614, 0.0257855356, -0.0139866117, -0.00485666469, -0.00485301856, 0.0751980916, -0.00262340112, 0.00544369407, -0.0429078341, 0.00487124966, -0.000607994676, -0.0298108794, 0.0120322779, 0.00995397568, -0.00400346704, 0.0089184707, 0.0102456668, -0.0176327564, 0.0184203237, 0.0171806347, -0.0132355057, 0.0131115364, -0.0409826674, -0.00764231943, -0.00305000017, 0.0137459664, -0.0108873881, 0.00168816501, -0.0211184714, 0.0258292891, 0.0267772879, 0.0250417236, -0.0131552909, -0.0401951, 0.00512647955, 0.00966957584, 0.00365890632, -0.0238457881, -0.000780730741, 0.0276086088, 0.0171952192, 0.00893305521, -0.00980083738, 0.0147887636, 0.0282065757, -0.0242979098, -0.00317761512, -0.00697507523, -0.0179244485, -0.0356447101, 0.00768607343, -0.0510168597, -0.0148981474, 0.00874345563, -0.00272549316, 0.00630418444, -0.0166555904, -0.018537, 0.0162180513, 0.0181578, -0.0190766305, 0.00786108803, 0.0366364643, 0.0120031089, -0.00972062256, -0.00450663501, -0.00464154221, 0.0155325774, -0.00126430078, -0.00886013173, -0.0148106404, -0.0234811734, -0.010136283, 0.00323413056, 0.0140303653, -0.00250490149, 0.0372490138, -0.00473269587, -0.0320860744, -0.0148616862, -0.0496167392, -0.0253334139, 0.00872157887, -0.00620938465, 0.0145554105, -0.00875074789, 0.012236462, 0.0104644354, -0.0285711903, -0.00782462675, -0.0184057392, 0.00779545773, -0.017939033, 0.0236999411, 0.0113613876, 0.00279294699, -0.0240353867, -0.00571715506, 0.0327861346, 0.0111863725, -0.021191394, -0.00415295875, 0.0173994023, 0.00631876895, 0.00247208611, -0.00354952202, -0.0122000007, 0.0124771073, -0.000322683831, -0.0132282134, -0.0193099827, 0.0210601334, -0.0150367012, 0.00698965974, 0.000294654077, -0.00669796811, 0.0244583394, -0.0340987481, 0.0162180513, 0.0126667069, -0.0104498509, 0.0120906159, 0.0248229541, 0.000232783554, -0.00646096887, 0.0367531404, -0.0205350872, -0.0343612693, -0.0258438755, -0.0168014355, 0.0220227148, -0.00346019142, 0.0404284522, 0.046728991, 0.0218185298, 0.00330705335, 0.000960759178, 0.0162034668, -0.0240645558, -0.00896222424, 0.00859761, 0.00832779519, 0.00284763915, 0.00771524245, -0.0174431577, -0.00570621667, 0.0341862552, -0.0424119569, 0.0257709511, -0.0100633595, -0.00451392727, 0.0131917521, 0.0029916619, 0.0141907958, 0.0152263008, 0.0139501505, 0.0109967729, -0.0206809342, -0.0404284522, -0.0271856561, -0.017939033, -0.0366072953, 0.00742719695, -0.0443662889, 0.0253771674, 0.00869970117, 0.0119666476, -0.0212059785, -0.00789754931, -0.0203163195, 0.0206371807, 0.0218622852, -0.0211768094, -0.0186536778, -0.00799235, 0.0275502708, -0.0109967729, 0.0333111808, -0.0194995832, 0.00133995828, 0.00768607343, 0.0477499142, 0.0116968323, 0.0315026902, 0.0184494928, -0.0176910944, -0.0532337129, 0.0275794398, 0.0281482376, 0.0146210408, 0.0475457273, 0.00781004224, -0.0160430372, -0.0154304849, -0.0197329354, 0.0362280942, -0.0215851776, -0.00239916332, 0.0146137485, 0.0140668266, 0.00705893617, 0.00153320387, 0.00368260639, -0.00831321068, -0.0254355054, 0.0143803954, 0.000130691507, 0.00724853575, -1.5154289e-05, 0.00106923201, -0.00237910962, -0.0167139284, 0.00542546343, 0.0050499104, -0.0190328769, 0.0364614502, 0.0180702936, 0.0235978495, -0.0398159027, -0.0190766305, -0.0242979098, -0.0311526619, 0.0469040088, 0.0143585186, -0.00712456694, 0.00407639, 0.0151387937, 0.0241812319, 0.00832050294, 0.000912447751, 0.00904243905, -0.0300442334, -0.00254865526, -0.0106029892, -0.00429515867, 0.0170202032, 0.0166847594, -0.0184203237, 2.67478899e-05, 0.0193974897, 0.00647919951, 0.00565517042, 0.0233061574, -0.0145335337, -0.037832398, -0.00441912748, 0.00493688, 0.0293150041, -0.0114780637, -0.0282065757, 0.00280570844, -0.033573702, 0.0238312017, -0.00242104, -0.023495758, -0.0107269585, 0.0197475199, 0.0024793786, 0.00129073532, -0.0129656913, 0.00334533793, 0.0069276751, 0.00748188933, -0.0104717277, -0.00877991691, 0.00394512853, 0.0321152434, 0.0115436949, 0.012958399, 0.0150075322, -0.0218185298, 0.037919905, 0.021220563, 0.0143731032, -0.0142637184, -0.0066833836, 0.00209471025, 0.0320569053, -0.00938517693, -0.0140595343, 0.00207465631, 0.0108873881, -0.00822570268, -0.0147960559, -0.00523586385, 0.0415952206, 0.000608906208, -0.00167631509, -0.0243416633, -0.00375552918, -0.00211841, -0.0171222966, 0.0121052, -0.00177931867, 0.00205824873, -0.0130750751, -0.00583383162, 0.0243124943, -0.0204913337, -0.0153867314, -0.0421202667, -0.0184640773, -0.00342008378, 0.0396992266, 0.0435495526, -0.0120322779, -0.0499667674, 0.00756939687, -0.00546192518, -0.000314024219, -0.00135636586, 0.00853197929, -0.0308609698, 0.0300734024, -0.0220664684, -0.0338362232, 0.0273898393, 0.010654035, -0.0192516446, -0.000661775295, -0.0119593553, -0.0031630306, 0.0065739993, -0.00477280375, 0.0204184111, 0.00405815942, 0.0124406461, 0.00841530226, -0.00467800396, -0.00744178146, -0.00756210461, -0.00748188933, 0.0314151831, -0.0260626432, 0.0276815314, 0.00894034747, -0.00115673942, 0.00117679324, 0.00175744179, -0.0314735211, 0.0258438755, 0.0210017934, -0.00553849386, 0.0217164382, -0.010508189, 0.00705164392, 0.0413327, -0.00611093873, 0.0149127319, -0.0176473409, -0.0349154845, 0.00635523, -0.0168306045, -0.00346019142, 0.031211, -0.00542910956, -0.0180119555, 0.00707352115, -0.00765690394, -0.0110332342, -0.00233170972, -0.0123604313, 0.00555307837, -0.00966228358, 0.00133084285, 0.0138553502, 0.0114999404, 0.0161742978, 0.0209288709, 0.0175744183, -0.0383574441, 0.0123385545, -0.0122510465, -0.0250708926, -0.00945080724, -0.008984101, 0.00314115384, 0.0284836832, -0.0152846389, 0.0340404063, 0.0406618081, -0.0357613899, -8.86469e-05, -0.0200100429, -0.00453945, 0.037919905, 0.0156055, 0.0160430372, 0.00496604946, 0.00670526037, -0.00611093873, -0.00942163821, 0.0224164985, 0.00914453156, -0.00046123733, 0.00782462675, -0.0095529, -0.00204366422, -0.0297817104, -0.0677891225, 0.0332528427, -0.00988834444, 0.00759127364, 0.0131698754, -0.00804339536, 0.0191349685, 0.018916199, -0.00229889434, -0.020272566, -0.014540826, -0.0105227744, 0.0319402292, -0.0129219377, 0.000545554445, 0.00982271414, 0.00576820131, 0.00806527212, -0.00348571455, -0.00764961168, -0.00950914528, -0.00756210461, 0.0273315012, 0.00148945011, -0.00732145878, 0.0188724454, -0.024502093, -0.00134086981, 0.00760585815, 0.0262376592, 0.014023073, 0.00305182324, 0.00929766893, 0.00447017374, -0.00272913952, -0.0254063364, 0.00252677826, -0.0143803954, -0.0109821884, 0.0101216985, 0.0129438145, -0.0096768681, -0.0227811132, -0.0361697562, -0.0149054397, 0.0237728637, 0.010683204, 0.0241374783, 0.00287316204, 0.0218185298, -0.0227665287, -0.00190693373, -0.0420035869, -0.00209471025, -0.00301353866, 0.0126156611, 0.0105738202, 0.00546192518, 0.0303650945, 0.00929766893, 0.0918828472, 0.0115728639, 0.0138043044, -0.00167722662, 0.0276669469, 0.00694225961, 0.0100123137, -0.00432797382, 0.00672713714, 0.033661209, -0.00124060083, -0.00770795, -0.0175014958, 0.0222998224, -0.0138991037, -0.00476915762, -0.00745272, 0.0187120158, 0.0149054397, -0.0305984467, -0.0251000617, 0.00439360458, -0.00349300681, -0.00433526607, 0.0170347895, 0.00408003619, -0.00728135137, -0.0179244485, -0.0266460273, -0.00248302473, 0.00975708384, -0.00484937243, 0.00713185919, -0.0150221167, -0.00273643178, 0.0265439339, 0.0226644371, 0.00677089114, 0.00396700576, 0.0217164382, -0.0240645558, -0.010566528, -0.0227665287, 0.015663838, 0.00169181125, -0.000736977032, 0.00481291115, 0.00621303078, -0.012411477, -0.00236270181, -0.00934871566, -0.0138991037, 0.0254938453, 0.00103094743, -0.0099175144, 0.015634669, -0.00645367615, -0.0113686798, 0.0187120158, -0.0147304256, -0.0114416024, -0.000865959388, 0.0338070542, -0.0234374199, 0.0138699347, -0.0221831445, -0.0162763912, -0.00767878117, -0.00482749566, -0.0126375379, -0.0242541563, -0.00324324588, 0.0136219971, 0.0113905566, 0.00182671857, 0.042878665, 0.0109019727, 0.0124333538, 0.01290006, -0.0262668282, 0.026893964, 0.0246916935, 0.0233353265, 0.00912994705, 0.00746365869, -0.00194157218, -0.0202579815, 0.0129802758, -0.0117405867, -0.00794859603, -0.0179244485, -0.0062422, -0.00782462675, 0.0058192471, 0.0159847, 0.00255047833, 0.0212059785, 0.0301609095, 0.00880908594, 0.0119958166, -0.0168306045, -0.000541908259, 0.0004926853, -0.00611093873, 0.017997371, -0.0410701744, 4.02785045e-05, 0.00977166835, -0.0126812914, 0.00305729243, 0.0253771674, 0.00691309059, 0.0173556488, -0.022372745, -0.00315391528, -0.0106686195, 0.0150512857, -0.00531607913, -0.000762955809, -0.0197183508, -0.0168889426, 0.0167722665, 0.0243854169, -0.035586372, 0.0197037663, -0.0163784828, -0.00508272601, 0.000348206842, 0.00935600791, 0.0076131504, 0.000119867014, -0.0290962365, 0.020301735, 0.00798505731, -0.0288482979, -0.00656670704, 0.00960394554, 0.00591404689, -0.00347112981, -0.00768607343, 0.0050936644, 0.0275356863, 0.0129073523, -0.0161305442, -0.00410555908, -0.0199371204, 0.017822355, -0.0160430372, -0.00136639283, -0.0224164985, -0.0275648553, -0.0301317405, 0.0045175734, -0.0125719076, 0.00560777076, -0.0145043638, 0.0115509871, 0.011171788, 0.017764017, -0.00296066958, -0.00950185303, 0.00237728632, 0.0569090284, 0.0165389124, 0.00333622261, 0.014482487, -0.0148908552, -0.0170347895, -0.0110988645, 0.00970603712, -0.00474363426, -0.0247937851, 0.03363204, -0.0111790802, 0.00325600733, 0.00680006, 0.0226936061, -0.00971332937, -0.0124333538, 0.0148543939, -0.0194412451, 0.01047902, 0.0216143467, 0.0146137485, -0.00621667691, -0.0115072327, -0.0143512264, -0.00502803363, 0.0261355657, -0.00323777669, 0.00162526907, 0.00130349677, -0.00130349677, -0.0108290501, 0.0246625245, 0.00425869739, 0.00463060383, 0.0113540953, -0.0433745384, 0.00745636597, -0.00769336568, -0.00152317702, 0.00201814109, -0.00132172753, 0.0132938437, -0.0134834433, -0.0384157822, 0.03322367, 0.020272566, -0.0137167964, 0.00318308454, 0.00356775266, -0.00743813533, -0.00612552324, 0.0439287536, -0.00594686205, 0.00577549357, -0.0180265401, 0.0214685015, 0.0122583387, 0.00229889434, -0.0107488353, 0.00865594763, -0.00502074137, -0.0250854772, 0.00622032303, 0.00778816547, 0.00292603113, -0.0138334734, 0.00969874486, -0.0249979682, -0.00281664683, 0.0396408848, 0.0186390933, 0.00287863123, -0.0178515259, 0.0307151247, -0.0447163209, -0.0350029916, 0.00748918159, 0.00154596544, -0.0180265401, 6.31808507e-05, -0.00272549316, 0.0200537965, -8.08988407e-05, 0.0251875687, -0.00999772921, -0.0065739993, 0.0205642562, -0.00888930075, 0.00540723279, 0.00219862536, -0.0196454283, 0.00972062256, -0.00367896, -0.00461237319, 0.0277252849, 0.00401805155, -0.0321152434, -0.00376646756, 0.00505355652, 0.00491864933, 0.0340404063, 0.000870972872, -0.00345289917, -0.0243854169, -0.0112884641, 0.00621303078, 0.0186099224, -0.0159847, 0.0370156616, -0.01168954, 0.00766419666, -0.0149054397, -0.00016783661, 0.0292129125, -0.00258329371, -0.00964040682, -0.0102237901, -0.0169472806, 0.0132865515, -0.00129529298, 0.0124698151, 0.0127687994, 0.00700059813, -0.0137240896, -0.00422223564, 0.0122437542, -0.00829133298, 0.0243416633, 0.0023007174, 0.0201558881, -0.00647919951, 0.01171871, 0.0175306648, -0.00711727468, 0.0044081891, 0.00153411541, 0.0197912734, -0.0190328769, 0.0317360461, 0.00178114173, -0.000760221214, -0.0114634791, -0.0249250457, -0.00151315, 0.0135199055, 0.0114999404, 0.0187557694, -0.00740896631, -0.0308609698, -0.0186974313, -0.000624858076, 0.00678182952, 0.00418942049, -0.0059541543, -0.00746730482, 0.00108381652, -0.0208851174, 0.00638075359, -0.00786108803, 0.0194995832, 0.0375990458, 0.00662869122, -5.33248676e-05, -0.00786108803, 0.00473998813, -0.00527232559, -0.0125135686, 0.0141543346, 0.0107634198, 0.0207246877, -0.0129073523, 0.000239734029, -0.00730322814, 0.00156510773, 0.0187703539, 0.0073688589, 0.00957477652, -0.0159992836, 0.0217747763, 0.000602525426, 0.0106321583, 0.0223144069, 0.0228540357, 0.00907160807, 0.00283670076, -0.00704435166, 0.0300734024, -0.0254792608, -0.026806457, -0.0309484769, 0.00393054402, 0.000791669183, -0.00255777058, 0.00518117193, 0.0068620448, -0.00108199345, 0.00568069378, 0.0180557091, -0.0062422, -0.0149346096, -0.00896951649, 0.0302484185, -0.000899230479, 0.0233061574, -0.00758398138, 0.0208267793, 0.0328153037, -0.0128198452, -0.00401440542, 0.00682922918, 0.00135271973, 0.0100341905, -0.00971332937, 0.00734698167, 0.0322902575, 0.00354222977, -0.0561214611, -0.0206955187, -0.000612552336, -0.000242468624, -0.0137897199, -0.00245203241, 0.00426234351, -0.0335153639, 0.0473415442, 0.0128344297, -0.00775170373, 0.0211622249, -0.00589946238, 0.0389116593, 0.022460252, 0.0031684998, 0.00216216384, -0.016845189, -0.0196454283, -0.00863407087, -0.000906522735, 0.00639169198, 0.00922474638, 0.00666150684, 0.0110186497, 0.00681099854, 0.00269085495, -0.0205059182, -0.0282357447, 0.0151825473, -0.00443371199, 0.0044920505, -0.0271564871, -0.0115728639, -0.00754022738, -0.0329903178, 0.0019707412, -0.00848822482, 0.0310068149, -0.00662504509, -0.026893964, 0.00899868552, -0.0105884047, 0.0080361031, -0.0225623436, -0.0126229534, -0.00689121382, 0.00315573835, -0.0075037661, -0.00542546343, -0.021483086, -0.00469258847, -0.0234665889, -0.0132209212, 0.00335809938, -0.012207293, 0.0177494325, 0.037919905, 0.00126521231, 0.00668702973, 0.0184203237, -0.00319219986, -0.00295337732, -0.00851739477, 0.0124698151, -0.00182124937, -0.00294243894, 0.00711362856, 0.00593957, -0.00168360735, 0.0194995832, 0.0023262403, -0.00572080119, -0.0160138682, 0.00740896631, 0.0203163195, 0.0017018381, -0.0191058, -0.0353821889, 0.00558224786, 0.00451392727, -0.00427692803, -0.0469623469, -0.0196745973, -0.00641356874, 0.0205350872, -0.0127979685, 0.0226936061, 0.0332820117, -0.00428057415, -0.00387949799, -0.0148543939, -0.0065302453, 0.0100123137, -0.00249760924, 0.000915182347, 0.00658858381, -0.0115291104, -0.00372271379, 0.0211622249, -0.0250417236, -0.00480926502, 0.0261501502, 0.00307734613, 0.0212643165, -0.00032952035, 0.033544533, 0.000804430689, 0.0227811132, 0.0182015542, 0.0119958166, 0.000864136324, -0.00887471624, 0.00954560749, -0.0302775875, -0.00152955775, -0.0140303653, -0.01232397, -0.00434620446, -0.00480197277, 0.00577549357, -2.40417667e-05, 0.00514106406, 0.00880908594, 0.00987376, -0.0220227148, 0.00819653366, -0.00359327579, 0.0107561275, 0.0108436346, -0.00742719695, -0.0065302453, -0.0164222363, -0.0188141074, 0.00135818892, 0.00459414255, -0.00142381957, -0.000327697257, -0.008896593, 0.0227956977, 0.00867053214, 0.0298400484, 0.00543640181, 0.00870699342, -0.0232769884, -0.00136365811, 0.0164368208, 0.0203163195, -0.0127542149, 0.0050936644, 0.0129146446, -0.00682558306, -0.00588123174, -0.00887471624, 0.00746730482, -0.00880179368, -0.018537, 0.0316193663, -0.00386126735, 0.00601249281, -0.00853927154, 0.015663838, 0.0383282751, -0.00390866725, 0.0114780637, -0.00595780043, 0.00957477652, -0.00620209239, -0.000422497047, 0.00307187694, 0.00591404689, 0.00170001504, -0.0106394505, -0.00957477652, -0.00303723873, 0.0148106404, 0.0262376592, 0.0203454886, 0.00798505731, 0.0108728036, -0.00242286315, -0.00850280933, -0.0132136289, 0.00214211014, 0.0017018381, 0.0122000007, 0.00441183522, -0.00227154815, 0.0160867907, -0.00344196078, -0.00864865538, -0.0164659899, 0.0188724454, 0.00760585815, -0.00789754931, 0.00370448316, 0.00584112387, -0.0157805141, -0.00297707715, -0.00148580398, -0.00175288413, 0.0163347293, 0.0072849975, -0.0225040056, 0.00397794414, -0.0175452493, -0.011230126, 0.0282795, 0.00534889428, 0.0118864318, 0.0318235531, -0.0163055602, 0.00819653366, -0.00670161424, -0.0130240293, -0.0339529, -0.00311016152, 0.00198167982, 0.00822570268, 0.00150676933, 0.0141689191, 0.00923203863, -0.0211184714, 0.00514835631, 0.00988105219, -0.00103550509, -0.0267772879, -0.0254209209, 0.000515473715, -0.031327676, -0.0213809926, 0.00514471, -0.016611835, 0.00421858951, 0.00799964182, 0.0307734627, -0.000997220632, 0.0140084885, -0.00354952202, 0.00475457264, -0.0175452493, -0.0144679025, -0.0106029892, -0.00933413114, -0.0129948603, 0.00885283947, -0.0112155415, 0.0180994626, -0.0127979685, -0.0210893024, -0.000774805783, 0.0147595946, 0.00339456089, -0.0118937241, 0.0346529596, -0.0142637184, -0.00421494339, -0.0196162593, -0.0173556488, -0.0199079514, -0.00264892424, -0.000381022139, -0.00481291115, 0.000885557442, -0.0343029313, -0.0270106401, -0.000699604047, -0.000236771535, -0.0180848781, 0.00515929516, 0.0199662894, 0.0170347895, 0.0151533782, -0.0104352664, -0.000186978868, 0.00385762122, -0.0170639586, -0.0131479986, 0.0154013159, 0.0112374183, -0.0195287522, -0.0020345489, 0.00540723279, 0.0058630011, 0.0204038266, 0.0138918115, 0.0109092649, -0.0016708459, 0.00270908559, 0.0171660502, 0.0159847, -0.00157422305, -0.0107780043, -0.0311234929, 0.00739073567, 0.00672713714, 0.0072412435, 0.0201704726, -0.000743357756, -0.0147814713, -0.00657035317, 0.0119156009, -0.00810902566, 0.0440746, -0.00657035317, 0.0123093845, -0.0315026902, -0.00921016186, -0.00191969529, 0.00124607, 0.0214101616, -0.0110696955, -0.00807985663, -0.00253224769, 0.0140959956, -0.00775899598, -0.0280023925, -0.00487854192, 0.00727770524, -0.00596509315, -0.0112811718, 0.0168014355, 0.00958936103, 0.0128198452, -0.0261793192, 0.00727041299, -0.0142199649, 0.0020345489, -0.000972609152, -0.00536712538, -0.00133266591, -0.00480926502, 0.00960394554, -0.0206809342, 0.0133303059, -0.0106977886, 0.0167430975, 0.00943622272, -0.00779545773, 0.0226644371, -0.00222050212, 0.0232186504, -0.00611093873, 0.0165097434, -0.0090789, 0.00388679048, -0.00116950099, 0.000432296045, -0.0214685015, 0.00313933077, -0.0115728639, -0.0155909155, 0.0276961159, 0.00635523, -0.0147085479, -1.45418508e-05, 0.00863407087, 0.00783921126, 0.00353858364, -0.0121489549, 0.0044920505, 0.0222706534, -0.00387220574, -0.00339638395, -0.00456861965, 0.00667973747, -0.0009516438, 0.00776628871, -0.0202579815, -0.00946539175, 0.0331361629, -0.000837246, -0.0234374199, 0.00647190725, -0.0272439942, 0.0096768681, 2.42126807e-05, -0.00789025705, -0.00245203241, -0.00574267795, -0.0119447708, 0.00519940257, 0.0130969519, -0.00558224786, -0.0198058579, -0.00282940851, 0.00946539175, 0.00366619858, 0.0255813524, -0.00100998208, -0.0149637787, 0.0238749571, -0.0078829648, 0.00744907372, 0.003498476, 0.00171733426, 0.00676359888, 0.00309375394, -0.0276377779, 0.0202288125, -0.00649378402, 0.00689850608, 0.00250307843, -0.018537, 0.0144751947, -0.0202579815, 0.00230436353, -0.00379928295, 0.0166847594, 0.0070808134, 0.0171514656, -0.00977896061, 0.00536347926, 0.0224164985, 0.0146429176, 0.0108290501, -0.000639442645, -0.00403263606, 0.0131698754, -0.0136001203, 0.00352217583, -0.00253771688, -0.0114926482, 0.0145189483, 0.00453580404, -0.00673807552, -0.000382161554, -0.00686569093, -0.00537806377, 0.00456861965, 0.00423682, -0.008984101, 0.00384668284, -0.000417939358, -0.00690944446, -0.0192516446, 0.00175561872, 0.0013180814, -0.0132865515, 0.0104279742, -0.00743448921, 0.0138115967, 0.00767878117, 0.0196891818, 0.018974537, 0.0133959362, -0.00969874486, 0.00210017944, -0.00641356874, -0.000107276421, 0.00193792593, -0.0236270186, -0.0260626432, -0.00872887112, -0.0196308438, -0.0530295298, -0.00236270181, 0.0163055602, 0.0127469227, -0.021016378, 0.00321954582, 0.0350029916, 0.023495758, 0.00658129156, -0.0150367012, 0.0094070537, 0.0109311426, 0.00199444126, 0.0143001797, 0.00492229545, -0.00572080119, 0.0019342798, 0.0171806347, -0.033602871, -0.0196016748, 0.0139574427, 0.009560192, -0.00328517659, -0.0396700576, 0.00670161424, -0.00431703543, -0.00799235, -0.0124625228, 0.00643544551, 0.00753293512, 0.0126594147, 0.000664965657, 0.0159701146, -0.0089184707, -0.00339273782, 0.00177202641, 0.0227519441, -0.012783384, 0.0161888823, 0.0106613273, -0.00228248676, 0.0431411862, -0.0104644354, -0.00455403468, -0.0325527824, -0.00535618654, 0.0201558881, 0.0114634791, 0.0199808739, 0.00411285134, 0.00421858951, 0.00627501542, 0.00767148891, -0.00233353279, 0.00317579205, -0.000428422, 0.0117624635, -0.0121635394, -0.00441548135, 0.00371542154, -0.00449934276, -0.00336539163, 0.00643179938, 0.00890388526, -0.00268720882, 0.00385762122, -0.0136584584, -0.0216581, -0.0117989248, 0.0107925888, -0.0152117163, 0.00203272584, -0.00440454297, 0.00631512282, 0.00050043338, -0.0035878066, 0.00199444126, 0.0242541563, 0.0324944444, -0.00200720271, 0.00911536254, 0.0041201436, -0.0046269577, -0.0287024528, 0.0180702936, -0.0215268396, 0.0086778244, 0.00290597742, 0.0253771674, -0.00297890021, 0.00758398138, -0.00893305521, -0.00202907971, 0.0103696361, 0.0212934855, -0.00268356269, -0.00630418444, -0.00350576825, -0.00677453727, -0.0100414827, 0.0061948, 0.0142126726, 0.00888200849, 0.00268538576, -0.00324506895, 0.00631512282, -0.00442641973, 0.000278702209, 0.00301536173, -0.00407639, 0.0154450694, -0.0135490745, 0.0141251655, -0.0265147649, -0.021278901, -0.000551479403, 0.0102821281, -0.00389408274, 0.0387366414, -0.0145043638, -0.00271637784, 0.0117916325, -0.00334716099, 0.0159992836, 0.0120906159, -0.0048457263, -0.00706258276, 0.0299858954, 0.00596873928, 0.0141543346, 0.0166264214, 0.0154596539, 0.0106029892, -0.0136001203, 0.00417483598, 0.0176035874, -0.0114999404, -0.0127687994, -0.0378032289, -0.0139574427, 0.00419306662, -0.0152554698, 0.00455768127, -0.0138626425, 0.0125864921, -0.00758398138, -0.0193829052, 0.00715373596, 0.00902785454, -0.0080361031, -0.0109019727, -0.00963311456, 0.0102602514, -0.00233900198, 0.0163638983, -0.031298507, 0.00732145878, 0.00112118956, 0.00103915134, 0.00987376, -0.013446982, -0.0146647943, -0.00697872136, -0.0155325774, 0.025916798, -0.000505902572, 0.015868023, -0.000510916056, 0.00390502112, -0.000357322191, 0.00515929516, -0.00947997626, -0.0321152434, -0.0085465638, -0.00529784849, -0.0100560673, 0.0126010766, -0.0251438152, 0.00351123745, 0.00182124937, -0.00780275, -0.0102456668, 0.00373729854, 0.0177202635, 0.023583265, 0.0227373596, 0.00723395124, 0.00117314712, 0.0383866131, -0.0119812321, -0.0105446512, -0.0116384942, -0.00143931562, 0.0013828004, 0.00521398708, 0.00573903183, -0.0142272571, 0.00492229545, -0.0237145256, 0.0045613274, -0.000781186507, -0.00226243283, 0.00464883447, 0.00505720312, 0.00453215791, 0.00599426217, 0.00932683889, 0.00643179938, -0.0183619857, -0.0140303653, -0.0277107, 0.0132719669, 0.0135417823, -0.00807985663, 0.0370448306, -0.0119958166, -0.00897680875, 0.000556037063, -0.0113832643, -0.00408368232, -0.00618021563, 0.0229123738, 0.0123750158, 0.0240791403, -0.0183765702, 0.00952373073, -0.0276961159, -0.00625313818, -0.014628333, 0.0184932463, -0.00252313213, -0.0152263008, -0.00848822482, 0.0144460257, -0.0128635988, 0.00744542759, 0.00218221778, 0.00802881084, -0.00360968336, 0.000759309682, -0.00132719672, 0.0141543346, -0.0142564261, -0.00366437552, 0.00426234351, -0.00914453156, -0.00843717903, -0.00732145878, 0.0109530194, -0.0163055602, 0.000378059631, 0.0112957563, 0.010770712, -0.0120760314, 0.0220373, 0.0305984467, 0.00965499133, 0.00363156036, 0.00822570268, -0.0339237303, -0.0216289312, -0.00944351498, 0.00391960563, 0.0366364643, 0.0144387335, -0.00706987502, -0.00432797382, 0.00207465631, -0.0144095644, -0.0084590558, -0.0171222966, -0.0175890028, -0.0191058, 0.0375698768, -0.0119010163, 0.0148325171, 0.000437081617, 0.0183182321, -0.0132865515, 0.0345946215, -0.0192224756, 0.022401914, 0.0372781865, -0.000777996145, -0.0189016145, -0.00472904975, -0.000855932478, -0.0161742978, 0.00587758562, -0.00735427393, 0.0162763912, 0.00533431, -0.00675630616, -0.0136147048, -0.00534889428, 0.0209434554, 0.0016261806, 0.00412743585, -0.0130240293, 0.0265439339, -0.0028130007, -0.0242395718, -0.00082767487, -0.0243270788, -0.013906396, 0.0146866711, 0.00100451289, 0.00332346093, 0.0218768697, -0.0027455471, 0.00921016186, 0.00775170373, 0.0121489549, 0.0182307251, 0.0330194868, 0.00239187106, -0.00469988072, 0.0203454886, 0.00292785419, -0.0174869113, -0.014453318, -0.00400346704, -0.0270835645, 0.00400711317, 0.00306093856, 0.0054218173, 0.001108428, 0.0087653324, 0.0030536463, 0.00253954, -0.019120384, -0.0113905566, 0.00137824274, 0.021278901, -0.0220227148, -1.69346331e-05, -0.00730687426, 0.00470717298, 0.0276815314, 0.0056697554, -0.00601978507, -0.00704799779, -0.0337487161, 0.0154159, 0.0161159597, 0.00834238, 0.00484208, 0.0107780043, -0.00308828475, -0.0136949196, 0.0135126123, -0.028016977, 0.00110113574, 0.00578643195, -0.00385762122, -0.0189599525, -0.0187411848, -0.0116530787, -0.0170202032, 0.0038065752, -6.1471721e-05, -0.00579737034, -0.0184640773, -0.00413108198, 0.00728864362, -0.0110113574, -0.000877353596, -0.000115822069, 0.00305182324, 0.0181578, 0.0200829655, 0.012382308, -0.0110769877, -0.00253407075, 0.00823299494, 0.0134688588, 0.0184494928, 0.0106977886, -0.00114762411, 0.0229269583, 0.0173118953, 0.00404722057, -0.0228394512, 0.0207101032, 0.0224456675, 0.0139720272, -0.00880179368, -0.0194266587, 0.0150804548, -0.0175598338, -0.0140084885, -0.00730322814, -0.0218185298, 0.0030536463, -0.0143876877, 0.0103040049, 0.00872887112, -0.00961123779, -0.0024775553, -0.00995397568, -0.00693132123, 0.0156492535, 0.0169181116, 0.0199808739, 0.0240353867, -0.022460252, 0.00297160796, 0.00435349671, 0.00790484156, 0.00575726246, -0.0113322185, -0.00611458486, -0.00266715488, -0.019091215, 0.00382480584, -0.00126521231, 0.00191422598, -0.0201413035, 0.000614831166, -0.0105008967, 0.0387658104, -0.0104279742, 0.0240645558, 0.0252604913, 0.0203892421, 0.0425869711, -0.00732875103, 0.023612434, 0.0220518839, -0.0228394512, -0.000511371822, -0.0135928281, 0.00118590856, 0.00637710746, 0.000434574875, -0.00693861349, -0.0133667672, -0.00472540362, 0.0219935458, 0.00531972526, 0.0188724454, -0.00343284546, 0.0107925888, -0.0132427979, -0.0134907356, 0.00369901396, 0.00892576296, 0.0124479383, -0.0125500308, -0.00554943224, -0.00138826959, 0.00354222977, -0.0128344297, -0.00620938465, 0.00432797382, -0.027987808, -0.00992480665, 0.0197475199, -0.0151533782, -0.0400200859, 0.00229160208, -0.00953102298, 0.00953102298, -0.00579372421, -0.0123896, 0.0155325774, -0.0147085479, 0.01353449, 0.00503897201, 0.00805798, -0.0219352078, -0.0256251059, 0.0069714291, 0.0105811125, 0.00707352115, 0.015663838, 0.0178515259, 0.0137459664, -0.00131443527, -0.000659952231, -0.0280607305, -0.0224456675, -0.0044482965, -0.00552390935, 0.00665056799, -0.00145298871, -0.00551297097, -0.00393783627, -0.0092539154, -0.000129324195, 0.00660316832, -0.0192516446, -0.0114634791, 0.00145936944, -0.0229561273, -0.0107050808, 0.00502803363, -0.017997371, 0.00461601932, 0.00252313213, 0.0061072926, 0.0171514656, 0.000622579246, 0.0259459671, 0.0327277966, 0.0114780637, 0.00732875103, 0.00738708954, 0.016582666, 0.00931225345, -0.0137751354, -0.00829133298, -0.00791942701, -0.00652659917, -0.00527597172, 0.0252167378, -0.00611823099, 0.0093414234, 0.012870891, 0.0119374786, 0.00656670704, -0.00360056804, 0.001749238, -0.0120395701, -0.0251729842, -0.0200246274, -0.0030536463, 0.00321589969, -0.00270179333, 0.00642815325, 0.00728864362, -0.0124260616, -0.000795315369, 0.00315209222, 0.00914453156, -0.0148762707, -0.00874345563, 0.000886013207, -0.0164514054, -0.00929766893, 0.00340549927, 0.00923203863, 0.00902056228, -0.0197766889, 0.00530514074, 0.0118864318, -0.00180210709, -0.0113613876, 0.0110988645, 0.00220227148, 0.00314662303, 0.0220810529, 0.000662231061, 0.00428057415, -0.0167285129, -0.00786838, -0.0205205027, -0.0693642572, 0.00213664095, 0.0230728053, 0.00191422598, -0.00241921702, 0.00510095665, 0.00287316204, 0.00116038555, 0.00542910956, 0.0191058, 0.0124625228, 0.00723030511, 0.0124333538, 0.0211184714, -0.0106759118, -0.022372745, 0.0181432161, 0.0135199055, -0.0164076518, -0.0149273174, 0.0296796188, -0.0370156616, 0.0252167378, -0.0136292893, 0.0308318, 0.0170056187, 0.00806527212, 0.00474728039, -0.0162909757, 0.00581560098, 0.020126719, 0.024560431, 0.0103550516, 0.00494781835, -0.0040508667, -0.0244583394, -0.0119666476, -0.0236707721, -0.00814548787, 0.00177931867, 0.00533431, 0.0108217578, 0.00779545773, -0.0110113574, -0.0108436346, 0.017764017, 0.0127177527, -0.00945809949, 0.0104498509, 0.00877991691, -0.0111280344, 0.0187995229, -0.0139428582, -0.0203600731, -0.00578278583, 0.0128052607, 0.0122729233, 0.00712092081, 0.0251438152, 0.019149553, 7.33786655e-05, -0.0235686805, -0.0134688588, 0.0209872089, -0.0228102822, 0.017968202, -0.0305109397, -0.00977166835, -0.004780096, 0.00728135137, -0.014569995, 0.00349118374, -0.0227081906, 0.0172973108, -0.00163894205, 0.0228832047, 0.0048894803, 0.00902785454, -0.00615104614, -0.0144387335, 0.00549474033, -0.000201221614, 0.0171222966, 0.000359828904, -0.017764017, -0.00511189504, -0.0223873295, -0.0113322185, 0.010566528, -0.00762773491, 0.0157805141, 0.0101873288, 0.0173410643, -0.00594321592, -0.00318308454, 0.011631202, -0.0249979682, 0.0156492535, -0.00587758562, -0.00384668284, -0.00269450108, -0.00142108498, 0.0104060974, -0.0125937844, 0.0277252849, -0.0177056789, -0.00202907971, 0.0103331748, -0.00688027544, 0.02585846, 0.00659223, 0.00704435166, -0.00153229234, -0.0107123731, 0.00335445325, 0.0173556488, -0.00424411241, -0.0148252249, -0.0246187691, -0.0241812319, -0.00418577436, -0.0323194265, -0.00354952202, -0.023495758, 0.0171952192, 0.00252677826, -0.00140558882, -0.011171788, 0.00981542189, -0.0274919327, 0.0157805141, 0.00250307843, -0.00846634805, 0.00475457264, 0.0128344297, -0.0279440545, 0.00995397568, -0.00667609135, -0.00498792622, -0.00963311456, 0.0138407657, -0.0134251053, 0.00381386746, -0.00359327579, -0.00906431582, -0.00694590574, -0.0226498526, 0.0104352664, 0.00568434, -0.0288920514, -0.00592863141, -0.0118280938, 0.0146502098, -0.0180119555, -0.0279294699, -0.00480926502, 0.0415077135, -0.00463425, 0.00878720917, -0.0114270179, 0.0176035874, 0.00251948601, -0.00787567254, -0.00103550509, -0.00124698156, -0.00414566649, 0.00882367, -0.0101727443, 0.0133157205, 0.0128271375, -0.00279659312, 0.00720478222, 0.00439725071, 0.0130167371, -0.0125864921, 0.0127542149, -0.00344378385, -0.00317943818, 0.00499521848, 0.0237728637, 0.0163930673, 0.00997585244, -0.0116457865, -0.0199225359, -0.00547650969, -0.00785379577, 0.00796318054, -0.0265147649, 0.00364432181, 0.00921745412, 0.019149553, 0.0221102219, 0.00108381652, 0.0102821281, -0.0213226546, 0.000639442645, -0.00489312643, 0.00167722662, -0.00267080101, 0.0116093252, -0.00296796183, -0.00511189504, 0.0108436346, 0.00985188317, -0.00339820702, -0.00118590856, 0.000331115531, 0.00892576296, -0.0143293496, -0.0253042448, 0.0121052, -0.00211841, -0.00912994705, -0.00685475208, -0.0111863725, -0.00222232519, -0.0192224756, 0.0152263008, 0.000963493774, 0.0183474012, 0.00518481806, 0.00402899, 0.00791213475, 0.00680370629, 0.026893964, -0.00946539175, 0.00341096846, 0.018974537, -0.0145262415, -0.00673442939, 0.00137186202, -0.000659040699, 0.00883825496, -0.0116676632, 0.000265940675, 0.00433162, 0.000877809362, 0.00420035888, -0.0153138079, 0.0165680815, 0.0155763309, 0.0230144653, -0.0158534385, -0.00378469843, 0.000357094308, 0.00168543041, 0.0121635394, -0.0129219377, -0.0127687994, 0.0144314412, -0.0175452493, 0.000311289623, 0.00490406482, -0.012265631, 0.00518481806, -0.0127250459, -0.0159409456, -0.00839342549, 0.0105811125, 0.0176473409, -0.0156200845, 0.00387585186, 0.0180557091, 0.00836425647, 0.0164805744, -0.00670526037, 0.00292785419, -0.00538171, -0.00938517693, -0.00238275575, 0.00145572331, -0.0106613273, -0.000827219104, -0.00815278, -0.0187703539, 0.0168889426, -0.0283815917, 0.0163493138, -0.0125427386, -0.0101800365, -0.0178806949, -0.0154159, -0.00140376575, 0.011055111, -0.00821841, -0.0276961159, -0.0239041261, 0.00215487159, -0.00629324606, 0.00959665328, 0.0138699347, -0.00547650969, 0.0148398094, -0.00040267111, -0.0251729842, -0.0145627027, 0.0138480579, -0.0162909757, 0.0199225359, -0.0162326377, 0.00416025147, -0.00330705335, -0.00510460278, 0.00128253142, 0.0033416918, -0.0428494923, 0.0133740595, -0.0364322774, 0.00413837424, -0.00667609135, -0.0237874482, 0.0135490745, 0.00118864316, -0.000953466864, 0.012841722, 0.00762773491, -0.0294900201, 0.00607447745, 0.00544734, -0.021191394, -0.00717561319, -0.00259058597, -0.0243854169, 0.00929037668, 0.00430609705, -0.000788023055, 0.0165389124, 0.0125646153, 0.0252459068, 0.00139009277, 0.00465977332, -0.00842259452, 0.00383209833, -0.00681464467, 0.00840071775, 0.037074, -0.00192516448, -0.0341570862, 0.00099175144, 0.0179244485, -0.0172389727, 0.0088309627, -0.00418212824, 0.0171952192, 0.00348206842, -0.0185661688, 0.00457955804, -0.00526138721, 0.0256688595, -0.0209726244, -0.0317943841, 0.0225331746, -0.000477644964, -0.0114999404, 0.0143731032, -0.0209726244, -0.00622761529, -0.000600702362, -0.00824757945, 0.00179663789, -0.00580466259, -0.000446196966, -0.0145845795, -0.0399034098, -0.00159336533, 0.0111280344, 0.0181869697, 0.000392188464, -0.0204184111, -0.00494781835, 0.000816280663, 0.00507178763, -0.0125937844, 0.0679641366, 0.0188286919, 0.0151096238, -0.028016977, -0.00692038285, -0.0290962365, -0.00513741793, 0.0343321, 0.0253042448, 0.011200957, -0.0211184714, -0.0103769284, -0.012695876, 0.0195870902, -0.00767148891, -0.00166173046, -0.00619115401, 0.00265439344, 0.00919557735, -0.00436808169, -0.00634429185, 0.00439725071, -0.0117041245, -0.0169035271, -0.0031448, 0.00286951591, 0.00528691, -0.0261063967, -0.0218768697, 0.00511189504, -0.00400711317, 0.0119156009, 0.00821841, 0.00440089684, -0.0165972505, -0.0305401087, 0.00364432181, -0.00377740595, -0.00513012568, -0.00616198499, 0.010654035, -0.00417483598, 0.00105282431, -0.00176655722, 0.00116676639, 0.017822355, -0.0119958166, -0.0100998208, -0.00773711922, -0.0123385545, -0.0050681415, -0.00118317397, -0.00773711922, -0.0288920514, 0.00935600791, 0.000742902, 0.046787329, -0.00450663501, 0.024502093, 0.0372490138, 0.0067089065, -0.00361150643, 0.00934871566, 0.00778087322, 0.00888930075, -0.00149036176, -0.0141835036, 0.00840801, 0.0130604906, -0.00615833839, 0.000719657808, 0.0102456668, -0.0023481173, -0.0180557091, -0.00285310834, 0.000116334806, -0.0116239097, 0.00857573282, 0.0105519434, -0.0073251049, -0.0128052607, 0.0115072327, -0.00602707732, -0.00299895415, -0.00433162, 0.00719019771, -0.0199954584, -0.0267481189, -0.0176619254, -0.0031630306, 0.0119447708, 0.00951643847, -0.00455038855, 0.00142837723, 9.34324635e-05, -0.0215997621, -0.00759856589, 0.000676815631, 0.0360239111, -0.00116858946, 0.0242687408, 0.0276086088, -0.0210309643, 0.0103040049, -0.00422588177, 0.0274627637, 0.00778816547, 0.000362563529, -0.00344378385, -0.040136762, 0.0109821884, -0.00660681445, 0.00206189486, 0.0270543955, 0.00248667086, 0.00691673672, -0.026893964, 0.00146848487, 0.000839524844, -0.0229269583, 0.00810902566, 0.00600155443, 0.00853197929, 0.0099175144, 0.00404357444, -0.00479832664, -0.0131990444, 0.00227154815, -0.00990292896, -0.0193829052, -0.0160138682, -0.0250854772, 0.00307005388, 0.00124515849, -0.00723030511, 0.0300442334, -0.0284107607, 0.0148762707, -0.0184640773, 0.0380949229, -0.0093633, 0.00510460278, -0.0148908552, 0.0182015542, -0.0226206817, -0.00946539175, 0.00957477652, -0.0106613273, 0.0112738796, -0.0165243279, -0.00374459079, 0.022197729, -0.00200902577, -0.00958936103, -0.0211038869, -0.00409097457, 0.008896593, -0.0258292891, 0.0127323382, 0.00258147065, -0.0181286316, 0.00358962966, 0.00366619858, 0.000875986298, 0.0118135093, -0.00880908594, 0.00543275569, 0.000301946362, 0.0190474615, 0.0134980278, 0.0102529591, 0.0220227148, -0.00415295875, 0.00642450713, 0.00591769302, 0.0106175737, 0.000717834744, -0.0130677829, -0.0118791396, -0.0126667069, -0.00155690382, 0.0122000007, 0.0239332952, 0.0495584, 0.00146028097, -0.00906431582, -0.00683287531, 0.0287316218, 0.0140741188, 0.00597967766, -0.000604804256, 0.00352946809, -0.00336356857, -0.00479103439, 0.00615469227, 0.0106029892, 0.0352655128, -0.00688027544, -0.0330194868, 0.0287607908, 0.00484937243, 0.00529055623, 0.00384303671, 0.00981542189, 0.00500251073, 0.0231894813, 0.0171222966, 0.00719749, 0.0189891215, -0.00489312643, -0.00356228347]
|
30 Jun, 2022
|
array::fill() and array::swap() in C++ STL
30 Jun, 2022
Array classes are generally more efficient, light-weight and reliable than C-style arrays. The introduction of array class from C++11 has offered a better alternative for C-style arrays.
array::fill()
This function is used to set a common value for all the elements of the array container. Syntax :
arrayname.fill(value)
Parameters :
The value to be set for all the elements of
the container is passed as parameter.
Result :
All the elements of the container are
set to be equal to the parameter passed.
Examples:
Input : myarray = {1, 2, 3, 4}
myarray.fill(5);
Output : myarray = {5, 5, 5, 5}
Input : myarray = {1, 2, 3, 4, 5, 6, 7}
myarray.fill(2);
Output : myarray = {2, 2, 2, 2, 2, 2, 2}
Errors and Exceptions 1. It throws an error if the assignment operation throws some error. 2. It has a basic no exception throw guarantee otherwise.
CPP
// CPP program to illustrate
// Implementation of fill() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
// array container declaration
array<int, 4> myarray{ 1, 2, 3, 4 };
// Using fill() function to
myarray.fill(5);
// printing the array
for(auto it=myarray.begin(); it<myarray.end(); ++it)
cout<<*it<<" ";
return 0;
}
Output:
5 5 5 5
array::swap()
This function is used to swap the contents of one array with another array of same type and size. Syntax :
arrayname1.swap(arrayname2)
Parameters :
The name of the array with which
the contents have to be swapped.
Result :
All the elements of the 2 array are swapped.
Examples:
Input : myarray1 = {1, 2, 3, 4}
myarray2 = {3, 5, 7, 9}
myarray1.swap(myarray2);
Output : myarray1 = {3, 5, 7, 9}
myarray2 = {1, 2, 3, 4}
Input : myarray1 = {1, 3, 5, 7}
myarray2 = {2, 4, 6, 8}
myarray1.swap(myarray2);
Output : myarray1 = {2, 4, 6, 8}
myarray2 = {1, 3, 5, 7}
Errors and Exceptions 1. It throws an error if the array are not of the same type. 2. It throws error if the array are not of the same size. 2. It has a basic no exception throw guarantee otherwise.
CPP
// CPP program to illustrate
// Implementation of swap() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
// array container declaration
array<int, 4> myarray1{ 1, 2, 3, 4 };
array<int, 4> myarray2{ 3, 5, 7, 9 };
// using swap() function to swap elements of arrays
myarray1.swap(myarray2);
// printing the first array
cout<<"myarray1 = ";
for(auto it=myarray1.begin(); it<myarray1.end(); ++it)
cout<<*it<<" ";
// printing the second array
cout<<endl<<"myarray2 = ";
for(auto it=myarray2.begin(); it<myarray2.end(); ++it)
cout<<*it<<" ";
return 0;
}
Output:
myarray1 = 3 5 7 9
myarray2 = 1 2 3 4
Let us see the differences in a tabular form -:
array::fill()
array::swap()
1.
It is used to fill all elements of an array with a single value.
It is used to swap the content of one array with another array.
2.
Its syntax is -:fill (const value_type& val);
Its syntax is -:swap (array& x)
3.
It only takes one parameter that is the value that we want to fill in the array.
It takes only one parameter that is the array that we want to swap.
4.
It does not have any return value.
It does not have any return value.
5.
Its complexity is linear.
Its complexity is Linear.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL
|
https://www.geeksforgeeks.org/arrayfill-arrayswap-c-stl/?ref=ml_lbp
|
Pandas
|
array::fill() and array::swap() in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0632262677, 0.000775357243, -0.0137808425, 0.0455122665, 0.0304006562, 0.00179930928, -0.0346591137, 0.00588125549, -0.0154221235, -0.00555595662, -0.0250184387, 0.0220759641, 0.0245748498, -0.0267927963, -0.00222903653, -0.0159544311, -0.00935234223, 0.0319384336, -0.0284488648, -0.0277834795, 0.0153038325, -0.00794764236, -0.0437379107, 0.0216915198, -0.0188673344, 0.0309921093, -0.00483512413, 0.00664644735, -0.011762511, 0.00538221747, 0.0306963827, 0.0111858444, -0.00515302969, 0.0101508033, -0.00234178221, -0.0130119547, 0.00454309443, 0.00986986328, -0.00983289722, 0.00521217473, 0.019961521, 0.00592191797, 0.000146938968, 0.00720832683, -0.00595149072, 0.0285227951, 0.00200169696, -0.0293064695, -0.00491275219, 0.00243419665, 0.0284636505, 0.00314393966, 0.0467247441, 0.0287889484, 0.0288480949, 0.0428803042, -0.0256690364, 0.0206121188, -0.0102690933, -0.0461628661, -0.00419561611, -0.0249297209, 0.0186898988, -0.0360786021, -0.0385035574, -0.0117181521, -0.0700871199, 0.0332396291, -0.00837644562, -0.00290366192, -0.0312286913, 0.0254916, 0.0148232775, -0.00862781331, -0.0374980867, -0.0324115939, 0.034363389, -0.00611783657, -0.038444411, 0.0655920804, -0.0127014415, 0.0333579183, -0.0192961376, 0.00827294122, 0.00809550565, 0.00692369044, 0.00770366844, -0.0263048485, 0.0283305738, 0.00130581611, -0.0145571241, -0.0154664824, 0.0418156907, 0.0189264789, -0.0128345182, 0.0417861156, 0.0383261219, -0.00243974151, -0.0215880144, 0.0426141508, -0.0166789591, 0.0184681043, 0.00684606237, -0.000291336561, -0.0084947357, 0.0170486178, 0.0380008221, 0.00480555138, -0.00669819908, 0.00275949552, 0.00632114848, -0.0281087793, -0.0158213545, 0.019961521, 0.00315133273, -0.0081324717, 0.0521365367, -0.039124582, 0.0242199786, 0.00918969233, 0.011562896, 0.0452756882, 0.0135664409, 0.0179949421, -0.038207829, -0.000646901142, 0.0439449176, -0.021883741, 0.0221646819, 0.0128862709, -0.0349252671, -0.0188673344, 0.0119473403, -0.00248964527, -0.012442681, -0.0159396436, 0.00247301068, 0.0615110584, -0.0228596386, -0.00815465115, -0.0377346687, -0.0214253664, 0.0216323733, -0.00177712983, 0.00365221896, -0.0369066335, 0.00265968777, 0.0342451, -0.0279609151, 0.00144721032, -0.0133816125, -0.00878306944, 0.0436491929, -2.9745901e-05, 0.0337127894, -0.0223569032, 0.0205973331, 0.025447242, 0.0089900773, -0.0615702, 0.0211148541, -0.0257133953, -0.00256172847, 0.00776281347, -0.0160431489, -0.000576666149, 0.0593522564, 0.0107718278, -0.0497411527, 0.047286626, 0.0106535377, 0.0327368937, -0.00362634286, 0.0124278953, -0.0122208865, -0.0500368774, -0.00517890556, 0.000616866455, 0.0226526298, -0.0341563821, 0.00314393966, -0.0319975801, -0.00177158497, 0.0252698064, 0.00611783657, 0.0145423375, 0.00579993101, -0.0160283614, 0.0186603256, -0.01656067, -0.0259204041, 0.00952238496, 0.0356941558, 0.0349548422, 0.00873871055, 0.00912315398, -0.0462811552, -0.0209669899, 0.00470944028, 0.0667158365, 0.00173277094, 0.00774802733, -0.0268371552, 0.00275210221, 0.0231257919, -0.0092562316, 0.00968503393, -0.00391097926, 0.0270145908, 0.0230370741, -0.00117736007, 0.0445955172, 0.0430577397, 0.0134259714, 0.0112375971, 0.0042251884, -0.0162649434, 0.0294839051, 0.00107940077, -0.0232884418, -0.00782195851, -0.0186307523, 0.0213070754, -0.0176696423, -0.0281827096, -0.0456009842, 0.00127254694, -0.00794764236, -0.0153186191, -0.0140987486, 0.0255211741, 0.0116220415, -0.0180688724, -0.0280200616, 0.0066168746, -0.0339789428, -0.0311991181, -0.0151559692, -0.0116590066, 0.0313765518, 0.0197693, 0.0492679924, -0.0167528912, -0.013241142, 0.00971460715, -0.00494602136, -0.00989204273, -0.0129380226, 0.0191334877, -0.00978114549, 0.0135664409, 0.00122264319, 0.00647270819, 0.0130267404, -0.0347182602, 0.0534968749, -0.00123188458, -0.0105722127, -0.00151005213, -0.0107052894, 0.014564517, 0.0532011501, 0.0141283209, -0.00429172721, 0.0134037919, 0.0276504029, 0.0238798931, -0.0213810075, -0.0395977423, -0.0422592796, 0.00638768682, -0.0070456774, -0.0127531942, -0.00721202372, 0.0296761282, 0.0270589497, -0.0372910798, 0.0148750292, 0.0202572476, -0.00313469814, 0.0343929604, -0.0141578931, 0.00372060575, 0.0248557907, -0.000659377081, -0.0314948447, -0.0223716889, 0.0161910113, -0.000785060751, 0.00154886616, -0.0361968912, -0.00530089298, 0.0194883589, 0.0180540867, 0.0456305593, -0.00844298396, -0.00822858233, -0.0128862709, -0.0255951062, -0.00165883941, -0.0253733117, -0.0557739697, 0.0305780936, -0.0216619466, -0.0267336518, -0.0252254475, 0.027606044, -0.0150228925, 0.0314061269, -0.0250627976, 0.00648010103, -0.026925873, -0.0138991335, -0.0119251609, -0.015880499, -0.0118955877, 0.0155108413, -0.000445899728, -0.0108975116, -0.0368770622, -0.0196953677, 0.0173147712, 0.0014370447, 0.014002637, 0.0118142627, -0.0053045894, 0.0290107429, 0.0216915198, -0.0117107593, -0.0595592633, -0.057932768, 0.0475823507, -0.0238946807, -0.00789589062, -0.00453570113, -0.0185124632, -0.0315539911, 0.000548479729, -0.0171669088, -0.0314357, -0.0342155248, -0.0120508438, 0.0114963576, 0.0204642564, 0.0147419525, -0.0250332262, 0.00654663937, -0.000446361781, 0.000658453, 0.00407732558, 0.00130489201, -0.0106313583, 0.00893832557, -0.0253437385, 0.0307851, -0.0241756197, 0.0042251884, 0.00214771181, 0.00924144499, -0.0123909293, 0.0152299013, 0.0238798931, -0.0137143042, -0.0101286238, 0.000433885842, -0.0287298039, -0.0182315223, -0.00389619311, -0.0117033655, -0.0395681709, -0.0074486048, -0.00546354242, 0.0271476693, 0.0371727869, -0.0440336354, 0.00552268745, 0.034599971, 0.0140765691, -0.0119916992, 0.0112597765, -0.0190595556, 0.0144462269, -0.00605129823, -0.02232733, -0.0255359598, -0.0242791232, -0.0255951062, 0.0111045204, -0.0173295569, 0.00956674386, -0.0493567102, 0.0175957102, 0.0235989541, -0.00409580814, -0.0163980201, 0.0196066499, -0.0185568221, -0.00176234357, 0.011082341, -0.0438857749, 0.031287834, -0.0316427089, -0.00220870529, -0.0114002461, 0.00548572186, 0.0248410031, -0.0178322922, -0.00486469641, 0.00932277, 0.00370397116, 0.00551159773, 0.0330917649, 0.0175957102, 0.00356904604, 0.01656067, 0.0149859274, -0.0376459509, 0.0732809603, 0.00204975251, 0.00327701634, 0.0070456774, -0.022682203, -0.0180688724, 0.0148898158, 0.0364334732, 0.0125461854, -0.0319088623, 0.0199171621, -0.0112154176, -0.0215288699, -0.024367841, 0.0246783551, 0.0238207486, 0.0118068699, -0.0155108413, -0.0155108413, 0.0396568887, -0.00539330719, -0.0108901188, -0.0602690056, 0.0353097133, 0.0539700389, 0.0170042589, -0.0520478189, -0.0158065669, 0.00946323946, -0.0186603256, 0.0187194701, -0.0180688724, 0.00841341168, -0.0206121188, 0.00737467315, -0.0514859371, 0.018601181, 0.0265710019, 0.00541918306, 0.0512789302, -0.0191334877, 0.0252550207, 0.014882423, 0.0168859679, -0.00457266672, -0.00491275219, 0.00323450565, 0.0464290194, -0.00706785684, 0.0222681854, 0.00714548538, -0.0194735732, 0.00103411765, -0.0222238265, -0.0192961376, 0.047286626, -0.00335279619, 0.0226230565, -0.0155995591, 0.0205677599, -0.0209965631, 0.00811768509, -0.0333579183, 0.00256912177, -0.0211739987, -0.0242199786, -0.0309921093, 0.00896050502, -0.0101729827, 0.026526643, -0.00950759836, -0.00232884404, 0.0110971266, 0.027044164, 0.021040922, -0.00888657384, -0.0303415116, 0.00172352942, 0.00615849905, -0.0469317548, 0.000986062223, -0.0207304098, 0.00531937554, 0.0536151677, 0.0125683649, -0.0208634865, 0.0535264499, -0.0231257919, -0.0484695286, -0.0467543192, 0.00565576414, 0.0197693, -0.027724335, -0.0224604085, 0.033890225, 0.0311695449, 0.00183997164, -0.00846516341, -0.0397160351, -0.0222681854, -0.029646555, -0.0466951728, 0.0012244914, 0.00108679396, -0.000677397882, 0.0258908328, 0.0082359761, 0.0113484943, 0.00924144499, 0.00640247297, -0.0328551866, 0.0138104148, -0.0332396291, -0.00697544264, 0.00593670411, -0.0240573287, 0.0069089043, -0.00206823531, -0.00770366844, 0.0244417731, 0.00255988026, -0.0213514343, 0.0353097133, -0.0123761427, 0.0235102363, 0.00235656835, -0.00791067723, 0.0113337077, 0.0181575902, 0.0237468164, 0.00674625486, 0.0393907353, 0.0166493878, 0.025003653, 0.0427915864, -0.0023140579, -0.0108161867, -0.0332396291, 0.00725268573, -0.0153186191, -0.0126792621, -0.0222386122, -0.0315244161, -0.0055448669, 0.0163832325, 0.0394794531, 0.0275173262, -0.00770366844, -0.0547093526, 0.00152114185, 0.0194144268, -0.00617698161, -0.00238244445, 0.0103873843, -0.0133446464, 0.0414903909, 0.0167824645, -0.0336536467, 0.022002032, -0.0132633215, 0.0224160496, -0.043767482, 0.0169599, -0.0077776, -0.0461628661, 0.0167381056, -0.0112375971, -0.00819901, -0.0153925503, -0.0103578111, 0.0168563947, -0.0149859274, -0.0124278953, 0.0160431489, 0.0136773381, 0.0177731477, 0.0199023765, -0.00270774332, 0.0123835364, 0.0171964802, -0.00343596912, -0.0126718692, 0.0204790421, 0.00825076178, 0.02080434, 0.0269702319, -0.025565533, -0.00240647234, -0.00662796432, 0.0273990352, 0.019444, 0.0110453749, -0.00151652109, -0.0295874104, -0.0181132313, 0.000304967689, -0.0102469139, 0.00840601791, 0.0220759641, 0.0135516552, 0.0230370741, -0.0293508284, 0.00543027278, -0.0255951062, -0.0312582627, 0.00398121448, -0.00967024826, 0.0164719522, 0.0209374167, -0.0282122828, -0.0110305883, -0.0160135757, -0.0183054544, 0.0166493878, -0.0215732288, -0.013839988, -0.0387401357, -0.00271328818, -0.0209965631, 0.0135442615, 0.0376755223, -0.00762234395, 0.0233475864, -0.0139434924, -0.0179801546, 0.0253585242, 0.0637585744, -0.013359433, 0.0192074198, -0.0357828736, 0.0255803186, -0.00990682933, -0.00244898279, -0.0330917649, 0.0180836599, 0.0145793036, 0.0229927152, -0.0115185371, -0.0154664824, 0.00808071904, 0.0220907498, -0.0108679393, 0.00321232621, -0.0254620295, -0.00503843557, -0.00448394893, 0.0032825612, -0.00258575636, -0.00191852392, -0.0524618328, -0.00884221401, 0.00587016577, -0.0193996411, -0.0102469139, -0.0130193476, -0.00010835594, 0.0118734082, 0.015082038, -0.0252254475, 0.013004561, 0.03312134, 0.0123835364, -0.00301825581, -0.0203311779, 0.0100325122, 0.0125757586, -0.0284340773, 0.00839123223, -0.0122282803, -0.0158065669, -0.0138695603, 0.01040217, -0.00960371, 0.00774802733, -0.00646161847, -0.0135960141, 0.0136181936, 0.00309218746, -0.000315133278, 0.00808811281, 0.0150598586, -0.0333579183, -0.00964067504, 0.0214253664, -0.0250332262, -0.0256394651, -0.0092118727, -0.00242865179, 0.0184385311, -0.0055374736, -0.0111193061, -0.0114593916, -0.0351914205, 0.0190891288, -0.00810289849, -0.00413647061, 0.0237911753, 0.0406327844, -0.0154664824, -0.0171669088, -0.00356165296, -0.0287741628, -0.0338015072, -0.0125535792, -0.00100916578, 0.00659839157, -0.0129454164, 0.0262752753, 0.0174478479, -0.0314948447, -0.0452165417, -0.0311695449, 0.00293323467, -0.0259499773, 0.0205677599, 0.00879046228, -9.21256506e-05, -0.0335057825, 0.0313469805, 0.0223864764, -0.0114667844, -0.0438266285, -0.0174478479, -0.00313100149, 0.0214697253, -0.0445659421, -0.00564097799, 0.0121321687, -0.0163388737, 0.0472274795, 0.000945399806, -0.0327073224, 0.0300162137, 0.0170190446, 0.038680993, 0.0262752753, -0.0146975936, 0.02232733, -0.00116534624, 0.00511976052, -0.00450612837, 0.0128345182, 0.00962588936, 0.0179949421, -0.00414756034, -0.00687933154, 0.0425845794, -0.0142687913, -0.0268667284, -0.00138806505, 0.0112893488, 0.00892353896, -0.0126201175, 0.0400117598, 0.0138178086, 0.0102838799, 0.00592191797, 0.00389619311, -0.00446546637, 0.0273842495, -0.0231110062, 0.0339789428, 0.0127162281, 0.000657066703, 0.0233919453, 0.00100454502, -0.00319569162, 0.0252698064, -0.01068311, 0.0480555147, 0.0138547737, 0.0129454164, 0.0119695198, 0.0156882759, 0.0125018265, -0.0125018265, -0.00612153299, 0.0174330622, -0.0217210911, -0.0307851, -0.0581397787, -0.0198875889, -0.0432647467, 0.00683866907, -0.0316722803, 0.0184385311, 0.00420300895, 0.00692738686, -0.0437379107, -4.56007547e-05, 0.0158952847, 0.00978853833, 0.0264970716, -0.0488244034, 0.0066168746, 0.00388510339, 0.0159840025, -0.0198284443, 0.000523527851, -0.0133298598, 0.000156758, 0.00242495514, 0.0111414855, -0.021159213, 0.00886439439, -0.00605129823, -0.0280496329, -0.040130049, 0.0127975531, 0.0130858859, 0.023525022, 0.0360786021, 0.00263196346, -0.0222090408, -0.0272955317, -0.00863520615, 0.0284045041, 0.000190835839, 0.00477967551, -0.0123243909, 0.0128197325, 0.00277613, 0.0301492903, -0.00144998275, 0.0091527272, -0.0310808271, 0.0169451125, 0.00178544712, 0.00648010103, -0.00747448066, 0.0400117598, 0.0226082709, 0.00388140674, 0.0334466361, 0.0065651224, -0.00828772783, 0.00598476, 0.0254324563, 0.0413721, -0.0205381867, -0.0279017705, -0.0196657944, 0.00322711258, -0.00950020552, 0.019444, 0.00175125385, 0.025447242, 0.0330621935, 0.0170929767, -0.0193700679, -0.0224751942, 0.0282566417, -0.0267927963, -0.00354317, -0.0296021961, -0.000205044562, 0.00600693934, -0.0268963017, -0.0137512702, -0.0183793847, 0.00219207071, -0.0178914368, 0.0264379252, 0.0117920833, -0.0119695198, -0.036049027, -0.00889396667, -0.0126866559, 0.0148084909, 0.000941703212, -0.0188081879, -0.0162649434, -0.0339198, 0.0199171621, 0.00678322045, -0.0414903909, -0.0354575776, 0.0285080094, -0.0287002306, 0.00546354242, 0.00714178849, 0.00570751633, -0.0115037505, 0.000875164813, -0.00380747532, -0.0136181936, 0.0133963982, 0.0172408391, -0.00762973679, -0.0202720333, 0.00629157573, 0.0119177671, 0.0433534645, 0.0014194859, 0.0121321687, -0.00120878103, -0.0135442615, 0.0127458, 0.0534673035, -0.00689781457, 0.00186954427, 0.0183202401, -0.000373585412, -0.000689873879, 0.0208339132, 0.0085538812, 0.00279646111, 0.00275949552, 0.00234732707, -0.0478780791, -0.0127753736, -0.000693108363, -0.0267336518, -0.0229335688, 0.00622873381, 0.0142909708, -0.000673239236, -0.00853909552, -0.00325114024, -0.038444411, -0.0119399466, -0.0760607868, -0.0155256269, -0.0105056744, 0.00863520615, 0.0252845939, -0.0399821885, 0.00998815335, 0.0186603256, -0.0498003, -0.0187786166, -0.00223827804, 0.0166493878, -0.0201241709, 0.0245157052, 0.0159100723, -0.0522843972, 0.00772584789, -0.0100251194, -0.022682203, -0.0272659585, 0.00651706709, -0.012080417, 0.0200650245, -0.00348032825, 0.02040511, 0.00112283556, 0.0115924682, -0.011880802, 0.00604020851, -0.0299570672, -0.0141578931, 0.0120212715, 0.0244713463, -0.024722714, 0.0232588686, 0.00167454977, -0.0210704952, 0.0221646819, -0.0458967127, -0.0277539063, 0.00940409396, 0.0218689553, 0.0154369092, 0.0366109088, -0.0477302149, 0.00879785512, 0.0134555437, -0.00509388419, 0.00426954776, -0.035368856, -0.00548572186, 0.0145127652, -0.0438857749, -0.00655033626, 0.0108901188, -0.031287834, 0.00418822281, 0.0315244161, -0.0106461449, -0.0276504029, -0.00853170175, -0.00500886329, -0.0250627976, -0.0125683649, -0.0272216, 0.0213810075, 0.0273398906, -0.0146754142, 0.0273103174, 0.0294247605, -0.0322637334, 0.0142244324, -0.0239833985, -0.012043451, -0.0300753582, 0.0100472989, 0.0292916838, 0.0437083393, -0.0220611766, -0.0275764707, 0.0386514179, 0.00866477843, -0.0117181521, -0.0358715914, -0.00788849778, 0.00752623286, 0.0134703303, 0.00105814543, 0.0208191276, 0.0139287058, 0.0208782721, -0.00825076178, -0.0185568221, 0.0126127237, 0.0168268234, 0.0111267, -0.00853170175, 0.00205714558, -0.00748557039, -0.0432943217, 0.00528241, -0.0114667844, -0.0203755368, 0.0137069114, 0.0114150327, -0.0094706323, -0.000493031112, -0.00954456441, -0.012243066, -0.00848734286, -0.00971460715, 0.014002637, -0.000654756383, 0.0173591301, 0.00231036125, 0.00845777057, -0.00896050502, -0.00680909678, -0.00628787931, -0.0216767322, 0.00723789958, 0.00763713, -0.0195327178, 0.00550050801, 0.0220907498, 0.000639970065, 0.0212183576, 0.0235989541, 0.00592561439, 0.0247966442, 0.0223421175, -0.00115610473, 0.0145497313, -0.0129602021, -0.018763829, -0.00391467614, -0.0335945, 0.00718614738, 0.00513085024, 0.0013843684, -0.0107866144, -0.037527658, 0.0011182148, -0.0035487148, 0.0100916578, 0.00600324245, 0.0186751112, -0.0280496329, -0.00268741208, -0.0141357137, -0.00720832683, -0.0217802376, -0.00733770709, -0.00348217646, 0.00613262272, 0.0217063054, 0.00092830311, 0.00108956639, 0.0026264186, 0.0808515549, 0.00316242245, 0.00465029525, -0.024160834, 0.0200945977, 0.0152594736, 0.0162501559, 0.0171816945, 0.0167972501, -0.00295171747, -0.000193030675, -0.0052454439, 0.00971460715, 0.0318792872, 0.0134111848, -0.00106831104, 0.0209374167, -0.000300578, -0.0190595556, -0.0152594736, -0.0317905694, 0.0122578526, 0.00406993227, -2.48363831e-05, 0.0063322382, -0.00803636, 0.0259351917, -0.0293360427, -0.0232884418, -0.00156180421, 0.0242791232, -0.0122726392, 0.0154369092, -0.022002032, -0.00411059475, 0.0394794531, 0.0169894714, -0.000457220478, 0.00348032825, 0.0216323733, -0.0015072797, 0.0259795506, -0.0105574271, 0.0103578111, 0.00967024826, 0.011599862, 0.0184385311, 0.0187046845, -0.00199430389, 0.0184089579, -0.00839862507, -0.0302527938, 0.00888657384, 0.0103060594, -0.0030422837, -0.00287778582, 0.00230851304, -0.0314061269, 0.0172260534, -0.0238798931, -0.00685345568, -0.00706785684, 0.00269295694, -0.0193109233, 0.0128714843, -0.011962126, -0.0231849365, -0.0129749887, -0.00828772783, -0.00747817708, 0.00853909552, 0.0271772407, 0.0295578372, 0.00665014377, -0.012080417, 0.0325890295, 0.0189708378, 0.00995118823, -0.0168120358, -0.0152151147, 0.0274581816, 0.00283897179, 0.0397456065, 0.0236137398, -0.00635072077, -0.0151190041, -0.000454217021, 0.0095297778, -0.00279091625, -0.00795503613, -0.0336240716, -0.033890225, -0.0149341747, 0.0398934707, -0.000247208663, 0.0120730232, 0.00705676712, 0.0284340773, 0.0116516137, -0.00429172721, -0.0200354531, -0.0138695603, 0.00356350117, -0.00974417944, -0.00297204871, -0.0329734758, 0.00893832557, -0.00214956, 0.00498298695, 0.00971460715, -0.0123687498, 0.012560972, 0.0124722542, -0.00784413796, 0.0218393821, 0.0236137398, 0.0110527677, 0.000614094, -0.0102543077, -0.0178322922, -0.0382374041, 0.00570012303, 0.00291105523, 0.00466508139, -0.0102986665, -0.0206712633, -0.01096405, 0.0226674154, 0.0121987071, 0.0273103174, -0.0326777473, -0.0139065264, 0.0141726797, -0.00832469389, -0.0323524512, 0.00977375172, -0.0113115283, 0.0175069924, -0.00788849778, -0.00928580388, 0.0235841665, 0.0233475864, -0.0095741367, -0.0228152797, 0.00446176948, -0.00565206772, -0.00558183249, 0.00466138497, 0.0187194701, -0.00651337, -0.000351405935, -0.0154516958, -0.0189708378, -0.0287002306, 0.011799477, -0.0204346832, 0.00694217347, 0.00273916428, -0.0048166411, 0.0028666961, -0.00924883783, -0.0110305883, 0.0488244034, 0.00665384, -0.00184089586, -0.0062730927, -0.021602802, -0.0289515983, -0.0063248449, -0.00418452639, 0.00674995128, -0.00625830656, 0.0199763067, -0.0147937052, 0.0167528912, 0.0107348626, 0.0359603092, -0.0328256115, 0.0083173, 0.0103873843, -0.0110749472, 0.00599215273, 0.0158657134, 0.0110601615, -0.00232699583, -0.00827294122, -0.0165754557, 0.0184681043, 0.0219281, 0.0170634035, -0.00389249669, -0.0307555292, -0.000263150141, -0.0297057, 0.018763829, 0.0231701508, 0.000277474377, -0.0207599811, -0.0171225499, 0.00223088474, -0.0146754142, 0.00776281347, -0.0201685298, -0.0086721722, 0.0128345182, -0.0109714437, -0.0313765518, 0.0156587046, -0.000300809043, -0.00657990854, 0.0158657134, -0.00958892331, -0.00875349622, -0.00115518062, -0.0271033105, -0.00335834105, 0.0124352882, 0.0102173416, 0.0129232369, 0.0159544311, 0.0210557077, 0.0175365657, 0.000478244765, -0.0109492643, -0.0127827665, 0.00233993377, 0.0225343388, 0.0043286928, -0.00721572, 0.0198136587, -0.0336832181, 0.007541019, 0.0149489613, -0.000421640929, 0.00650967378, -0.0118216565, 0.00733031426, -0.0281827096, -0.0198728032, 0.00503843557, -0.00508649135, -0.0262752753, -0.00930798333, 0.00920447893, 0.0375572331, -0.000176165049, 0.0303119384, -0.0148898158, -0.022963142, 0.00442850031, -0.000351405935, 8.8486835e-05, -0.00576296495, 0.0112597765, 0.00629157573, 0.0124205016, 0.00978853833, 0.00991422217, -0.0131819965, -0.0249888673, -0.00842080452, 0.0163832325, -0.0220316052, 0.014283577, -0.0107940072, -0.0011440909, -0.0216915198, -0.0330030471, 0.00247116247, -0.00629527215, 0.00714548538, 0.0310216825, -0.00599584961, 0.0189856235, -0.000806778145, -0.0013039679, 0.0313469805, -0.0103060594, -0.0068645454, -0.00650597736, 0.00444328692, 0.0332396291, -0.0358715914, 0.00639138324, -0.00495711109, -0.00476119248, -0.00869435165, 0.0132781081, 0.00795503613, -0.00674995128, -0.0121765276, 0.0111858444, 0.00451352168, -0.00642095599, 0.0215584431, 0.021484511, 0.00599215273, -0.00309033925, -0.0024305, 0.0237320308, -0.0213218611, -0.0036466741, 0.0288480949, 0.00497929053, -0.00565946102, -0.0234658774, 0.0383556932, 0.0220168177, -0.00788110401, -0.00896050502, -0.00168194296, -0.0144610126, -0.00979593117, 0.0234215185, 0.00971460715, -0.0321454406, -0.00418452639, -0.0101729827, 0.000902427069, -0.0212775022, 0.00179376442, 0.00873131678, -0.0245304909, 0.0120656304, 0.00699022878, 0.00982550438, 0.00349141797, 0.0086721722, -0.0220316052, -0.00602911878, 0.0169599, 0.00998815335, 0.00712330593, -0.0239094663, -0.00432499638, -0.0187934022, -0.0238651074, 0.00364112924, -0.00257281819, 0.00433978252, -0.00828033499, 0.0158361401, -0.00842080452, -0.00557074277, 0.0204790421, 0.00198136573, -0.00751144625, -0.0148454569, 0.0120212715, -0.00309218746, -0.0341859534, -0.0153186191, -0.00876828283, -0.0100916578, 0.00703828456, -0.000519369205, -0.00704937428, -0.0137586631, -0.0132707153, -0.0115333227, 0.00632854132, -0.00789589062, 0.0275025405, -0.0143279359, 0.00791807, -0.0169746857, 0.0160431489, 0.00992900878, 0.0173147712, 0.0179357957, 0.0077776, -0.00874610338, -0.014320543, 0.0114224255, 0.0266892929, -0.0383852646, 0.0203016065, 0.017403489, 0.00177158497, -0.0403962024, -0.011562896, -0.0177583601, -0.00183904753, -0.00392946228, -0.00356350117, 0.00602172548, -0.0231701508, 0.0219428875, -0.0119325537, -0.0196510088, -0.0115259299, 0.00188248232, 0.049001839, 0.0332987756, 0.0120360581, 0.0145940902, -0.00289072399, -0.020079812, -0.000358106, 0.0121173821, 0.0296613406, -0.0238207486, 0.0271476693, 0.0134999026, 0.00707155373, 0.000989758759, -0.0053563416, -0.0369953513, 0.00998076051, -0.0135886203, -0.0111414855, -0.0301049314, -0.0343338177, -0.022002032, -0.00151097623, 0.0284045041, 0.01656067, 0.0167824645, -0.00277058524, -0.0240573287, 0.0171521213, -0.0248114318, -0.011599862, 0.00219391892, -0.00976635888, -0.00677582761, 0.0115037505, 0.00459854305, -0.0166937467, -0.0190447699, 0.00597736659, 0.0202720333, 0.0102617005, -0.0165754557, 0.0170486178, 0.0126866559, 0.0158509258, 0.00148047949, 0.0371727869, 0.0147271669, -0.0154221235, -0.00011216804, 0.00417343667, -0.0159840025, -0.00687193824, -0.00623612711, 0.0375868045, 0.0206269044, 0.0140617825, 0.0118881948, -0.0192222055, -0.0206860509, -0.00295356568, 0.00207378017, 0.00674255798, 0.00146292069, -0.0324115939, -0.00543396967, 0.0119695198, 0.0161762256, 0.00870913733, -0.0223125443, 0.00361710158, -0.0135516552, 0.00642834883, -0.00455788057, -0.0152446879, 0.0249149352, -0.00207932503, -0.0124870399, -0.0213218611, -0.0126792621, 0.00385183422, 0.00437305169, 0.0243530553, 0.0214253664, 6.90798e-05, -0.00137327868, -0.014320543, -0.00956674386, 0.0135368686, 0.0105869994, -0.00587016577, 0.0267336518, 0.00690151099, 0.0361081734, -0.00570382, 0.0136625525, 0.0268519428, 0.00744490791, -0.001535004, 4.94994893e-05, -0.00708634, 0.00445067976, 0.00136126485, -0.0159544311, 0.00569273, 0.0145275509, -0.00120693271, 0.00122911215, -0.0101729827, -0.00615480216, 0.000458837749, 0.0171077624, -0.00136403728, -0.0194144268, -0.00495711109, -0.00309588411, 0.010483495, 0.00363003951, 0.0177731477, -0.025565533, -0.00332507188, -0.00159414927, -0.00934494939, 0.00212922879, 0.00959631614, -0.0149341747, -0.00737097627, 0.0257133953, 0.0191039145, 0.00302564912, 0.00669450266, 0.0103652049, -0.00876089, 0.0282714274, 0.00960371, -0.00941148773, 0.0128345182, -0.0104243495, 0.00236950652, 0.00410689833, -0.00372245396, 0.000962958555, -0.00574448192, 0.0122134937, 0.0161466524, -0.00674255798, -0.0094706323, -0.0058368966, 0.00383704784, 0.0339198, 0.005940401, 0.0239538252, -0.0158657134, -0.00292029651, -0.00574448192, -0.00244898279, 0.00195548963, 0.0036984263, 0.00274101249, 0.0147419525, -0.019444, -0.0101286238, 0.00113300118, 0.0207599811, -0.00407362869, -0.000347016263, -0.00958892331, 0.00812507793, 0.0148750292, -0.00611783657, -0.019961521, 0.0063322382, 0.0101729827, -0.00413647061, 0.00373539212, -0.00112468388, -0.00918969233, -0.00718614738, 0.00566315744, 0.0193404965, -0.011762511, 0.0231849365, 0.00145090686, 0.00557813607, -0.00842080452, 0.0157769956, -0.00347293494, -0.0220316052, 0.0154812681, 0.0137364836, -0.0104613155, 0.00359677034, -0.013359433, -0.0118734082, 0.043205604, 0.00782935228, 0.00851691514, 0.00120693271, -0.0087165311, 0.0209817756, 0.00297204871, -0.0011172907, -0.0192074198, -0.00324559538, -0.0131746037, 0.00157843879, -0.00390358642, 0.00330658909, -0.023525022, 0.0120582376, 0.0203163922, 0.00654663937, -0.0125461854, -0.0174774211, -0.00639877655, 0.00721202372, -0.032441169, -0.0138473809, -0.0080733262, -0.0251663029, 0.000747170823, -0.00280570262, -0.0139656719, 0.0197988711, 0.00206453889, -0.015880499, -2.02156607e-05, 0.00822118949, 0.00462441891, -0.00507170474, 0.000565576425, 0.00546723884, 0.000495341432, 0.00951499119, 0.00815465115, -0.00824336894, -0.025802115, -0.0105278539, 0.00862781331, 0.00558552938, -0.00211074599, 0.0128271254, -0.00161817705, 0.00959631614, -0.00698283594, -0.0239833985, -0.0101138372, 0.00707525, -0.00654294295, -0.0144462269, 0.0174330622, -0.0158657134, -0.00373724033, 0.0083173, 0.00522696134, -0.00774063403, 0.00555965304, -0.00613262272, -0.0132928947, 0.0130267404, 0.0205677599, -0.00111451827, 0.000397382129, -0.0160727203, -0.00922665838, 0.0196805801, -0.0345408246, 0.00640986627, -0.0007541019, 0.00629896903, 0.00210335292, 0.0203607511, 0.00184459239, 0.0048683933, -0.00189634447, -0.00582950329, -0.0136625525, 0.000647363195, -0.00494971778, 0.00785892457, -0.0156143457, -0.0140543897, 0.0151190041, 0.00456157699, 0.0364334732, 0.0166493878, -9.66019797e-06, 0.0042325817, 0.00317536038, -0.00281494414, 0.00596258044, 0.011599862, -0.00329180271, -0.0251367297, 0.00566685386, -0.0198728032, 0.0048683933, 0.00791067723, 0.00513454666, 0.000861302658, 0.0147789186, 0.0119769126, -0.00103226944, -0.0371432155, -0.0061289263, 0.00116257381, -0.0117255449, -0.0116737932, 0.0176400691, 0.0085538812, -0.00124020188, -0.0152742602, -0.0227561332, -0.00814725738, 0.00450612837, 0.00228448515, 0.00221240195, -0.0146310553, 0.00338236871, 0.00718984427, -0.0075336257, -0.0153038325, -0.0169155411, -0.0266301483, 0.0142761841, -0.0106387511, 0.00910097454, -0.00887178723, 0.0390950069, -0.0144610126, 0.00842080452, 0.000316057412, -0.0115702888, 0.00612523, -0.0179357957, -0.0297500584, -0.00618067849, -0.0116737932, -0.0167528912, 0.0246192086, -0.00875349622, -0.00634702435, -9.73961687e-06, 0.0166198146, -0.0275321119, -0.00580362743, -0.00724529289, 0.00894571841, 0.0180688724, -0.00494602136, -0.00214216695, 0.0131006725, -0.00791807, 0.0103504183, 0.0148380641, -0.0090344362, -0.0242791232, 0.0495637171, -0.00484251697, -0.017802719, -0.00981071778, -0.0171077624, 0.00113762182, 0.0157326367, 0.00140007888, -0.00714548538, 0.00707525, -0.00534155499, -0.0179949421, 0.0107422555, -0.0179505832, -0.017802719, -1.70966723e-05, -0.000275857135, -0.00672037853, 0.00837644562, -0.00780717283, -0.0149785336, 0.014202252, 0.00362449465, 0.00953717157, 0.00189172372, -0.0116959726, -0.011562896, -0.0219724588, -0.0118290493, 0.00557813607, 0.00415495364, 0.0318792872, 0.00636181049, -0.0123983221, 0.0163093023, -0.0090492228, 0.0135294748, 0.00676473742, 0.00832469389, -0.0184976757, 0.00847995, 0.0148306703, 0.030282367, 0.00081324717, 0.00927841105, 0.00977375172, -0.030164076, -0.0122208865, 0.0156143457, -0.000630266557, -0.017078191, 0.00191113085, -0.0222681854, 0.00680909678, -0.00693478, 0.00458745332, 0.0148084909, -0.00310882204, 0.0119916992, -0.000171428808, 0.0166937467, 0.00470204698, -0.00191482739, 0.00737467315, 0.0108235804, 0.00533416215, 0.00290551037, 0.00283897179, 0.00617698161, 0.0121913143, -0.0235693809, -0.0206564777, -0.0111045204, -0.00375387492, 0.0148084909, 0.0210261345, -0.00449134223, -0.00832469389, -0.00783674512, -0.00172630185, 0.00967024826, -0.00712700235, -0.00748187397, -0.0232292954, -0.00938930828, -0.0351618491, -0.00256542512, 0.00529349968, 0.0118364422, 0.0121247759, -0.00332692, 0.023525022, 0.00439892756, 0.0137660559, 0.0116590066, -0.00799939502, -0.00404035952, 0.0127014415, -0.000720370619, 0.00281494414, -0.0196362212, 0.00167270156, 0.0121839205, 0.0190151967, 0.00557443965, 0.032648176, 0.0106091788, 0.0179505832, 0.00180577836, -0.0139656719, -0.00372245396, 0.00746339094, -0.0133963982, 0.0124131087, 0.00774063403, 0.0183498133, -0.00199800031, 0.0133963982, -0.00605499465, -0.0154664824, -0.00725268573, 0.0226230565, -0.00137235457, 4.63805e-05, -0.00301086274, -0.00563728157, 0.0393907353, -0.00205714558, 0.00889396667, -0.0153334057, 0.00537852105, -0.00369288144, -0.00480185496, 0.00250627985, -0.0114150327, -0.0045689703, 0.00332692, 0.0142170386, -0.00825076178, -0.00200909, -0.0057851444, 0.00975896604, 0.0254324563, 0.0142318252, 0.00706785684, 0.0262309164, -0.00265599135, -0.017684428, 0.00326223, 0.00777020678, 0.00547832856, 0.00468726084, -0.0152742602, -0.0198136587, -0.000802619499, -0.0163093023, 0.0141726797, 0.00304967677, -0.000490258622, 0.0162205845, 0.0150302863, 0.00562619185, 0.0120582376, 0.0158213545, 0.0156291313, -0.00442850031, 5.53620303e-05, -0.0045689703, -0.0162945148, -0.0114372121, -0.0118142627, 0.00866477843, 0.0275469, -0.00972939283, 0.0063729, 0.0193848554, -0.00395164173, -0.00810289849, 0.0191334877, 0.0260534808, 0.00958153047, 0.0134555437, 0.00887918, 0.00300531788, -0.0116737932, -0.000345167966, 0.00286484789, 0.0225786977, -0.00693478, 0.0258464739, -0.0133372536, 0.00116349792, 0.00822118949, -0.00666123349, 0.0104982816, 0.012841912, -0.00506800832, 0.0145866964, -0.0272068139, -0.014283577, 0.00448394893, 0.0115481094, -0.0178766511, 0.022963142, -0.00261902553, -0.00641725911, -0.00531567913, 0.00353577686, 0.00501625612, 0.00550050801, -0.00974417944, -0.0015433213, 0.0481442325, 0.00888657384, 0.0235545952, 0.0274286084, -0.0048166411, 0.0120508438, -0.00447655609, 0.00659469515, 0.00896050502, -0.0339493714, -0.0204494689, -0.0151337897, -0.0102469139, -0.012723621, -0.0117477244, -0.0070456774, 0.0131376376, 0.0125018265, -0.012043451, -0.00961110275, 0.011880802, -0.023406731, -0.0119103743, 0.0129528092, -0.00388510339, -0.00469465414, -0.00515302969, 0.00745599763, -0.0199023765, 0.0124500748, 0.00916012, 0.0136255864, 0.00620655436, 0.00442480389, 0.00441001728, 0.00718984427, -0.0204494689, 0.027044164, 0.0146754142, 0.0259056184, 0.0097367866, 0.0204938278, -0.00283527537, 0.016841609, -0.00446546637, -0.0234658774, 0.0115185371, -0.00967024826, -0.0157769956, 0.017802719, 0.00742642488, -0.0121469554, 0.018364599, -0.0101434095, 0.00542657636, 0.0102321282, 0.0148454569, 0.0180984456, 0.011799477, -0.00461332919, 0.016723318, 0.0274581816, 0.00032298849, -0.013122852, 0.0178618655, 0.0114889638, -0.0095741367, 0.00978853833, -0.0190743431, 0.00932277, -2.18184741e-05, -0.0269850194, 0.00152299006, -0.00470204698, 0.0107570421, 0.0214697253, -0.0157769956, -0.000924144464, 0.0236285254, 0.00488687586, -0.0160875078, -0.022844851, -0.0143427225, 0.00459114974, -0.00377420615, 0.00950020552, -0.0186898988, 0.0055374736, -0.00428063748, -0.00467247469, 0.0056040124, 0.00368179171, -0.00372615061, -0.0057925377, 0.0186603256, 0.0144240474, 0.032204587, 0.00118660147, -0.00418452639, -0.00878306944, -0.0298092049, 0.0128566977, 0.0279904883, 0.0164275933, -0.0157030635, -0.000800309121, -0.0118955877, -0.0382965468, -0.0109344777, 0.000668618537, -0.00509388419, 0.00633593462, -0.000858530228, 0.00402187696, 0.00913054775, -0.0131080654, 0.00401448365, -0.00294247596, 0.0148084909, 0.00108679396, 0.00124389853, -0.00873871055, -0.032204587, -0.0124278953, -0.0183054544, -0.0116959726, -0.0201981012, 0.0186159667, 0.0027687368, -0.00286854454, -0.0135664409, 0.00527132, -0.0190743431, -0.0203163922, 0.00948541891, 0.0124870399, 0.013603407, 0.025240235, -0.0120878099, 0.00114686333, 0.00836165901, -0.00563358469, -0.00302934553, -0.00670928881, -0.0138843469, -0.0123687498, 0.0261865575, 0.0165458824, 0.00754471542, -0.0153334057, 0.018039301, 0.014083962, 0.011281956, -0.0140765691, 0.0359307379, 0.00545984553, -0.0191334877, -0.0365813337, 0.0149637479, -0.00794764236, -0.0178766511, 0.0338015072, -0.00815465115, 0.0280496329, 0.000347709371, 0.00882742833, -0.0124870399, 0.00800678786, 0.0127901593, 0.0140543897, 0.0174330622, -0.000113265458, 0.0340085179, 0.00552268745, -0.0262457039, 0.0134629365, -0.0086130267, -0.0186603256, 0.0178470779, -0.00388140674, 0.00944845285, 0.0076445234, -0.0167085323, -0.0174626336, 0.00879046228, -0.0116442209, 0.0407215022, 0.0136699453, 0.000673701346, 0.00842080452, 0.0197988711, -0.0137438765, -0.00584798632, -0.0295874104, -0.00959631614, -0.035368856, -0.0212775022, 0.00987725612, -0.00660948129, -0.00760755735, 0.029202966, 0.022563912, 0.0197840855, -0.0092118727, -0.0137438765, 0.00257097, 0.0106978966, -0.0295430515, -2.09520877e-05, -0.00180762657, 0.0150228925, -0.0105722127, 0.00853170175, -0.0220168177, 0.00482773082, 0.0038407445, -0.00856127497, 0.00312176, 0.0115702888, 0.0237172432, 0.0218541697, 0.00181686808, 0.00353577686, 0.00901965052, -0.0195918623, -0.00188063399, 5.27339944e-05, -0.00185383379, 0.0146754142, 0.00284266844, 0.0076888823, 0.0178322922, 0.0117477244, -0.0204938278, 0.00387771032, -0.0151411835, -0.00877567567, 0.0171816945, -0.00898268446, -0.00607347768, -0.0147493463, 0.0186898988, 0.0157917812, -0.00223273318, 0.00931537617, 0.00370397116, 0.00130766444, 0.0269554462, 0.0130784931, 0.028567154, 0.0334762111, 0.00646901131, 0.0255951062, 0.0225491263, -0.0363743268, -0.000511513965, 0.00533046527, 0.0150746452, 0.0195327178, 0.00371321244, -0.0142761841, 0.0118438359, -0.00779238623, -0.0358124487, -0.0163388737, -0.00975896604, 0.000240508598, 0.00354686659, 0.020922631, -0.013359433, 0.0258169, 0.018039301, 0.0114667844, -0.011762511, 0.0179062244, 0.0139878513, 0.0102321282, 0.014682808, 0.00497929053, 0.00897529162, 0.0116146477, -0.00873871055, -0.0136329792, -0.0114667844, -0.0161614381, 0.000993455295, -0.0155552, -0.000618714723, 0.0023066646, -0.0105796065, 0.00656142598, 0.00174016412, -0.00045652737, 0.00775542064, -0.0123022115, 0.0227265619, 0.0192813501, -0.00430281693, 0.0163093023, -0.00141209282, 0.00884960778, 0.0317609981, 0.00619916106, 0.0245157052, -0.00582950329, -0.0261274129, -0.00168009463, 0.0149711408, -0.0266301483, -0.0361968912, 0.0244122017, 0.0190891288, -0.0137882354, 0.0126496898, 0.00273177121, 0.0135886203, -0.00227524363, -0.0172260534, 0.0171373356, -0.00572230248, 0.0129232369, 0.00161263219, -0.00348956953, 0.0202276744, -0.000180785762, -0.0115185371, -0.00562619185, 0.00227154722, -0.0189116932, -0.0209669899, 0.00795503613, 0.0167381056, -0.0228004921, 0.0150302863, -0.0132189626, 0.0247966442, 0.0167972501, -0.0273694638, -0.00582580687, -0.00519369217, -0.00436196197, -0.00362264644, -0.00463550864, -0.0264231395, -0.0140765691, -0.00126238132, 0.0155404136, 0.0108087938, -0.000557721185, 0.00582211046, -0.00996597391, -0.00970721338, -0.0102247344, -0.0336536467, 0.00291105523, -0.00571490964, -0.0084503768, -0.00744121149, 0.012841912, -0.00479815807, -0.00235841679, 0.00699022878, 0.0309625361, 0.014764132, -0.00121709832, 0.00065660465, -0.00626939628, -0.0207451954, 0.0138252014, -0.00508279447, 0.00773324119, 0.000668156485, -0.0172408391, 0.000137004419, -0.000783212425, -0.00293323467, -0.014283577, 0.00453200471, 0.00232699583, 0.00133538875, -0.0167824645, 0.000175587455, 0.00828033499, -0.0127014415, 0.0185420346, 0.00441371417, 0.00518629886, -0.0155256269, 0.0336536467, 0.00947802607, 0.00624352, 0.00931537617, -0.0075927712, 0.0101803755, 0.020922631, 0.00699392566, 0.00680909678, -0.01792101, -0.016723318, 0.00225306419, -0.0172408391, -0.010483495, 0.00491644861, 0.00160985976, -0.00975157227, -0.00275949552, -0.00122911215, 0.0190447699, 0.0127531942, 0.0238355342, -0.00971460715, 0.00152668671, 0.000850675, 0.00474270945, -0.0249149352, -0.0100842649, -0.0115333227, -0.0123391775, 0.0160875078, 0.013359433, -0.00402927, -0.000587755872, 0.00888657384, 0.0073968526, 0.00550050801, 0.0103799906, -0.00389619311, -0.0178322922, 0.00795503613, 0.00259684608, -0.0631079823, 0.000821102352, 0.0316427089, 0.00720463041, -0.0104761021, 0.00342857605, 0.00510497438, -0.0181575902, 0.00362449465, 0.000346554181, -0.00479815807, 0.0255211741, 0.00367439841, 0.0292325392, -0.00636550738, -0.0011440909, 0.030725956, 0.0173739158, 0.00251182471, -0.00266153621, -0.0180097278, -0.00543027278, 0.00403296668, -0.0149489613, 0.0141135342, 0.017403489, 0.0155108413, -0.000414478796, 0.00876828283, -0.00254509388, 0.00424367143, -0.00620655436, 0.0154221235, 0.0030422837, 0.00305337342, -0.00669819908, -0.0146902008, -0.000570197124, 0.0103356317, -0.0242939107, -0.000560493616, -0.00582950329, -0.00606978079, -0.0152890468, -0.00630636187, 0.0242347643, 0.0151411835, -0.000313747063, -0.0167085323, 0.0187194701, -0.00541918306, 0.00268186722, -0.0188377611, -0.00762973679, -0.033890225, -0.00235472014, -0.0222090408, -0.000570659235, 0.0102617005, -0.00265414291, -0.0223421175, -0.0432647467, 0.0114372121, 0.0204642564, -0.0168268234, -0.00475379918, -0.0319088623, -0.00575187523, 0.015362978, 0.0101951621, -0.0253733117, -0.011762511, -0.017403489, 0.00907140225, 0.00525653362, -0.00237689959, -0.00518629886, -0.00147678284, 0.00316242245, 0.000552638376, 0.0104761021, -0.00901965052, -0.00305707, -0.00716396794, 0.00523065776, -0.0211000666, 0.0109566571, -9.84213912e-05, 0.00828772783, -0.00811768509, 0.026526643, -0.00108494563, 0.00714178849, 0.00893093273, 0.0252106618, -0.00169210858, -0.0102543077, 0.0119177671, -0.00820640288, 0.00875349622, -0.013603407, -0.000412861555, 0.00199800031, 0.00153592811, 0.0177287888, -0.0124722542, -0.0369066335, 0.00158490776, -0.000909358205, 0.0123835364, 0.0315539911, 0.014002637, -0.00543396967, -0.00693847658, -0.000413092581, 0.0116220415, 0.00315318094, -0.00994379446, -0.00599584961, 0.0135442615, 0.00274470914, -0.0338310823, -0.00692738686, -0.00039114416, -0.0045763636, 0.0154960547, -0.00432129949, -0.00686084852, 0.00864259899, -0.0101434095, 0.0136625525, -0.0038407445, 0.0128936637, -0.0119547332, 0.00749296369, -0.022844851, -0.00190373766, -0.0136847319, 0.00742272846, 0.00846516341, -0.0124796471, -0.00192961365, -0.01068311, -0.0127384076, -0.00355241145, -0.0137069114, -0.0119547332, 0.00692738686, 0.00768148899, 0.00248964527, -0.022445621, -0.0144092608, 0.000788295234, 0.00271513639, -0.0140913548, -0.00935973506, 0.0305780936, -0.0080141807, 0.0065651224, -0.00779977953, 0.00822118949, 0.00247670733, -0.0169007536, 0.0206860509, 1.97535883e-05, 0.0260978397, 0.00174201233, -0.0182167366, -0.000530921, -0.0219576731, 0.00596627686, 0.0177435745, 0.00406993227, -0.00766670285, -0.00137143047, 0.00321787107, 0.00362819131, 0.00450982526, 0.00770366844, 0.00488317944, 0.00700871181, -0.0178618655, 0.000526762335, 0.00193515851, 0.022120323, -0.00234547863, 0.00939670112, 0.000496265595, 0.0047131367, -0.0215436555, 0.0333283469, 0.013721697, -0.0076888823, -0.000435965165, -0.00426585088, -0.0135960141, 0.00162649434, -0.00683497265, -2.22083472e-05, -0.0115776826, -0.0207451954, -0.0068054, -0.00992900878, 0.00570012303, -0.0187194701, -0.0274433941, -0.00417343667, 0.0144979786, 0.0116885798, -0.00186030287, -0.00391837256, -0.0289368127, 0.0105722127, 0.000270774326, -0.01888212, 0.0112449899, -0.0198728032, -0.0071565751, 0.00236950652, -0.00584798632, 0.0175809246, 0.00443959, 0.0302084349, 0.00719723711, 0.0204346832, -0.00261902553, 0.00916751288, 0.0114224255, -0.00791067723, 0.0169599, 0.0070456774, -0.00727486564, 0.0202720333, -0.0086130267, 0.00332322367, -0.014083962, 0.00888657384, 0.0306668114, -0.00575557165, 0.0225343388, 0.0161022935, 0.0117920833, -0.0168711822, 0.00474270945, 0.00671298569, 0.00331398216, 0.0058368966, -0.0256986097, 0.0204790421, 0.00585168274, -0.00601433218, 0.00113947014, -0.00864999276, 0.019444, 0.00300346967, -0.00267262594, -0.00518629886, 0.00161355629, 0.0126127237, 0.00482033752, -0.00129657472, -0.000856219849, 0.00757798459, -0.00550790131, 0.0207599811, -0.0060771741, 0.012760587, -0.0120952027, -0.00577775156, 0.00388510339, 0.00219391892, -0.0153038325, -0.0187786166, 0.0013122852, 0.00352099049, -0.00511236722, -0.0213070754, -0.0105426405, -0.00853170175, -0.0268963017, -0.0155404136, -0.0108531527, -0.00361155672, 0.0125018265, -0.00191852392, -0.00216804305, -0.0083173, -0.012161741, -0.0147197731, -0.0120878099, 0.0137512702, -0.0129454164, 0.00436935527, 0.00121155346, -0.00911576115, -0.00808811281, -0.00110342854, 0.00694217347, 0.0130710993, -0.0113411015, 0.0203459654, 0.00989943556, -0.00968503393, 0.00188155822, 0.00153223157, -0.0103873843, 0.0085095223, -0.00677582761, 0.00299977302, 0.013004561, -0.0338606536, -0.00862042, 0.024486132, 0.0189708378, 8.86601119e-05, 0.0185420346, -0.0075853779, -0.0113928532, -0.00377235771, -0.0186603256, -0.0132115697, -0.0112228105, 0.00432129949, 0.0040440564, -0.00255248719, 0.00606978079, -0.0091970861, 0.02232733, 0.00419561611, 0.00480555138, 0.0182906669, -0.00199245545, 0.0050643119, -0.0135886203, -0.00592931081, -0.0133446464, -0.00453939755, -0.0262161307, -0.00338976202, 0.005940401, -0.0153334057, 0.0173147712, -0.00349511439, -0.0161614381, 0.0126496898, -0.0047648889, -0.0190595556, 0.00664275046, 0.0229187831, 0.00368548813, -0.0198875889, -0.0112523837, -0.00452091498, -0.00182888191, 0.00653185323, 0.0107126832, -0.0118512288, 0.00116072549, 0.0023066646, -0.0132781081, 0.000299191772, -0.0101434095, -0.00516411941, -0.00467247469, 0.00203126948, -0.0198136587, 0.0069089043, 0.00953717157, -0.0199171621, -0.0109566571, 0.000863150926, 0.00359492213, -0.0157326367, 0.064409174, 0.0523435436, 0.0351322778, -0.0122874249, 0.0206712633, -0.0140469959, 0.00260239094, 0.0387105644, 0.00624352, 0.0212627165, -0.0199171621, -0.00839123223, -0.00516411941, 0.00414386392, -0.0157178491, -0.0120138787, -0.0384148397, -0.00180762657, 0.0250627976, 0.0101064444, -0.0131967831, -0.0205973331, 0.0177435745, -0.0190151967, -0.00772584789, -0.0142761841, 0.0146458419, -0.0153038325, -0.0392133, -0.00344705884, 0.0134555437, 0.0151855424, 0.0212331433, 0.00238798931, -0.0412538089, -0.0110749472, -0.0301197171, 0.000744860445, 0.0086130267, -0.00270774332, 0.0193404965, 0.0127162281, -0.000417482283, 0.0137808425, 0.00672037853, 0.000921834144, 0.00574078551, 0.000212091167, -0.0110158026, -0.00256172847, -0.0192517787, -0.0180097278, -0.0241756197, -0.0176992156, 0.00209780806, 0.00900486391, 0.00617698161, 0.0195327178, -0.00181317143, 0.0216915198, -0.0268371552, 0.0129454164, 0.0122208865, -0.0172260534, -0.00834687334, -0.0235693809, -0.0104391361, 0.0129749887, -0.00488317944, 0.00540070049, -0.000711129163, -0.00697174622, -0.00299792481, 0.00136958214, 0.0172408391, -0.00474270945, -0.0060254219, 0.00937452167, 0.0117033655, -0.0021384703, 0.00295726233, 0.0105500333, -0.00206453889, -0.00520847831, 0.00669450266, 0.00146754144, -0.0277834795, -0.00167547399, -0.00157289393, 0.00350065925, 0.0076888823, 0.00742272846, 0.00669080624, 0.00652815681, 0.00497189723, -0.000872854493, -0.0226969887, 0.0129380226, 0.0179062244, -0.00373908854, 0.020523401, 0.0041401675, -0.0224308353, 0.0139065264, -0.00885700062, 0.0166641735, 0.0143722948, -0.00252291444, 0.0115407165, -0.0142244324, 0.0207451954, 0.00251367292, -0.00265414291, 0.0359011665, -0.00471683359, -0.00679431, -0.000900116749, 0.007241596, 0.00526392693, 0.00532676885, 0.00777020678, -0.0108901188, -0.003600467, -4.59761868e-05, 0.0065725157, 0.00151652109, 0.0162945148, 0.000122102589, -0.010520461, -0.00743751461, -0.000770274433, -0.00560770882, -0.00260423915, 0.00960371, 0.0194735732, -0.0134999026, -0.00523805106, 0.013921313, -0.0161022935, 0.0114963576, 0.00215140847, 0.014083962, -0.0070013185, 0.0216915198, 0.0112449899, 0.00955935102, -0.0110749472, -0.00874610338, 0.00850212947, -0.00350620411, 0.00876828283, 0.0134111848, -0.00203866279, -0.00707894657, 0.0018713926, 0.0105796065, 0.00406253897, -0.0171373356, 0.0327664651, 0.0149859274, 0.00310327718, -0.00783674512, 0.00213662209, -0.00954456441, 0.00162926677, -0.023924252, -0.0103873843, -0.01040217, 0.0149637479, 0.00970721338, 0.0325003117, 0.0151559692, 0.0112154176, 0.0306963827, -0.014202252, 0.00455048727, -0.000984213897, -0.0327073224, -0.0164719522, -0.0174626336, -0.0101581961, 0.0238651074, 0.0144905858, 0.0542361923, -0.00164590136, -0.014002637, -0.0155847725, 0.00745969452, 0.0109862294, 0.0169007536, -0.00930798333, 0.0238207486, -0.0115481094, -0.00776281347, -0.0052971961, -0.0142687913, 0.0178766511, 0.00869435165, -0.00103966251, 0.011001016, 0.00462441891, -0.00439523114, -0.00135387166, 0.0308146738, 0.0201981012, 0.00940409396, -0.00756689487, -0.00844298396, 0.0123687498, -0.00226045749, -0.0190151967]
|
30 Jan, 2018
|
array::max_size() in C++ STL
30 Jan, 2018
Array classes are generally more efficient, light-weight and reliable than C-style arrays. The introduction of array class from C++11 has offered a better alternative for C-style arrays.
array::max_size()
This function returns the maximum number of elements that the array container can contain.
In case of an array, size() and max_size() function always return the same value
Syntax :
arrayname.max_size()
Parameters :
No parameter is passed.
Returns :
It returns the maximum number of
elements that the array can contain.
Examples:
Input : myarray = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0};
myarray.max_size();
Output : 10
Input : myarray = {1, 2, 3, 4, 5};
myarray.max_size();
Output : 5
Errors and Exceptions
1. It throws an error if a parameter is passed.
2. It has a no exception throw guarantee otherwise.
// CPP program to illustrate
// Implementation of max_size() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
array<int, 5> myarray{ 1, 2, 3, 4, 5 };
cout << myarray.max_size();
return 0;
}
Output:
5
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/array::max_size() in C++ STL
|
https://www.geeksforgeeks.org/arraymax_size-c-stl/?ref=lbp
|
Pandas
|
array::max_size() in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, array::max_size() in C++ STL, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0496336, 0.0340748802, -0.00127298606, 0.0386267714, 0.0758134, -0.0248553753, -0.0562685579, 0.0195962712, -0.00134451117, -0.00859587081, -0.0358750634, 0.0177060794, 0.0321975462, -0.0324547179, 0.0357721969, -0.0208178237, -0.0422785692, 0.0182718504, 0.000800840033, -0.032429, -0.00231130561, -0.0172046, -0.0180403981, 0.0196477044, 0.00420792634, 0.0337148458, -0.0107625192, -0.00894304924, -0.0560113899, -0.0176289286, 0.0295229908, 0.00323872105, -0.0160987731, -0.00275974395, 0.0151986824, 0.0112704271, 0.0341520309, 0.0230166167, -0.0321718305, -0.00595024554, 0.0353350081, 0.00211039232, 0.0169731472, -0.00503086671, 0.0261669364, 0.0302944984, -0.018477587, -0.0312203057, -0.0177832302, 0.00679568853, -0.00352642871, -0.009772419, -0.00979813561, -0.00282082148, -0.00846728589, -0.0108075235, 0.0166259706, 0.0260897856, 0.000800840033, -0.0510737449, 0.0345892198, -0.0272856206, 0.00680211745, -0.012093368, -0.0249968171, -0.024366755, -0.0283914469, 0.0159187559, 0.0620291419, 0.00896876585, -0.00420149695, 0.0363894, -0.00600810861, -0.00174553401, -0.0272084698, -0.0334062427, -0.0104603451, 0.0105374958, -0.0249196682, 0.0493764319, -0.00702714035, 0.0330719203, -0.0112447105, 0.00113154319, -0.0197505727, 0.00849300344, -0.013282774, -0.0200334582, -0.0171145909, -0.00565771619, -0.0175903533, 0.0679440275, -0.0119262086, 0.0119004911, 0.010209606, 0.0393725596, -0.00660281163, 0.0309117027, -0.0117526194, 0.0337405615, 0.00792080257, -0.0049312138, 0.0452360101, -0.0181046911, 0.00923236366, -0.00809439179, 0.0212550107, -0.0187990479, 0.00750933215, 0.00238845614, 0.033329092, 0.00916807167, -0.0178989563, 0.0282371454, -0.0229780413, 0.00722001726, 0.00406326866, 0.00462261122, -0.0184518695, 0.0184647273, -0.00785651058, 0.0406841226, -0.00216664816, -0.0238009822, -0.0414041951, 0.00609811768, 0.0411213078, -0.00121994503, 0.0319146626, -0.000382739672, -0.0149029382, 0.000916967867, 0.0166902617, -0.057142932, -0.0421242677, -7.41872063e-05, 0.00907163322, 0.0317346416, 0.0209721252, -0.00792723149, -0.0254211463, -0.0108589577, 0.020612089, -0.00948953256, -0.0284943152, -0.0202006176, 0.0130063174, 0.0525910407, -0.032429, 0.00616883906, -0.00415327772, 0.0112897148, 0.0177060794, -0.00252829189, 0.0264883973, -0.0215121787, -0.0202263352, 0.00200270279, 0.0301401969, -0.00642922288, 0.0280828457, -0.0133213494, -0.00403755205, -0.0116690397, -0.0285971835, 0.0167674124, 0.040786989, -0.0127877239, -0.039089676, 0.0169860069, 0.0286743343, 0.0418928154, -0.00316157029, 0.00909735, 0.00397325959, -0.0172046, 0.0365951359, 0.0304745156, 0.0285971835, 0.0230937675, -0.000732529559, -0.00439758832, -0.0122026652, 0.0185161624, 0.00849300344, -0.00841585267, 0.0290600862, -0.0325575843, 0.0393725596, -0.00496978918, -0.00186929654, 0.032840468, 0.00707857404, -0.0202520508, 0.0142728742, 0.0182075594, -0.0193519611, -0.00602096692, -0.0293429717, 0.0369551741, -0.0119390665, -0.000309607247, 0.0024495339, -0.0166902617, 0.034460634, 0.0112125641, 0.00290922332, -0.0055002, 0.0352321416, 0.0263340957, -0.00186447462, 0.0273113381, -0.0128520159, -0.0140028475, -0.0129998885, 0.0229266081, -0.0571943671, 0.016227359, -0.0171403084, -0.0307316855, 0.0260769278, -0.004542246, 0.0303973649, -0.0327376, -0.0547255427, -0.0403240845, -0.0209592655, -0.0161244906, 0.00777293043, -0.00188054761, -0.00444259308, -0.00303941499, -0.0160087645, 0.0180275403, 0.0527710617, -0.022116527, -0.0132313408, -0.000755031826, -0.00381574361, 0.0294972733, -0.0122926738, 0.0565257259, -0.0331233554, -0.0176932216, 0.025691174, -0.0032483649, -0.019544838, -0.0372637734, 0.00515945116, -0.0116111767, -0.0118490579, -0.0112832859, 0.0373923592, 0.0139256967, -0.0411470272, 0.00398290344, -0.0192490928, -0.0199691653, -0.00638421811, 0.000752219057, -0.0101260254, 0.0168959983, 0.00188054761, 0.0452874452, 0.0049312138, 0.0548798442, 0.0367237218, 0.00758005353, -0.0300630461, -0.0614633709, -0.00325800874, -0.0153015498, 0.0158416051, -0.0255368724, 0.00404076651, 0.0230680518, -0.0431786589, 0.0310917217, 0.0180146825, -0.0213964526, 0.032840468, -0.0134756509, 0.00720072957, 0.000852675643, 0.00887875631, -0.000791999861, -0.0355407447, -0.0128777334, 0.000782757881, 0.000426337821, -0.0402726531, -0.0180146825, 0.0197248552, 0.0074128937, 0.015983047, -0.0542112067, -0.0269255843, -0.00548091251, 0.00566736, 0.00857658312, -0.023119485, -0.0395525768, -0.0154687101, -0.0466761589, -0.0033367665, -0.0184390116, -0.011090409, -0.0278256759, 0.0244053304, -0.0162145, 0.00158641068, -0.0121898064, -0.00653209025, 0.0065095881, -0.0259354841, -0.00824869238, 0.0333548076, 0.0131156147, -0.0212678686, -0.0154944267, 0.00796580687, -0.0146972034, -0.00631349673, 0.039346844, 0.00504694, -0.0229266081, -0.0243796129, -0.00468690321, -0.0116176056, -0.0510994606, -0.0179503895, 0.0353350081, -0.0456217639, -0.0356693268, 0.00623634597, -0.0177703723, -0.019300526, -0.00758005353, -0.0208821148, 0.0360550806, 0.00969526824, 0.000815707608, -0.0165231023, 0.0328919031, -0.00399254728, -0.00579915894, 0.00958597101, -0.0343834832, -0.00340748811, -0.00526874792, 0.000748602615, -0.00387039199, 0.0312717408, 0.00200913218, -0.00116770761, -0.00744504, -0.0264626816, 0.00290922332, 0.0118490579, -0.0245982055, 0.0147100613, 0.0319146626, -0.0205863714, -0.00271956134, 0.0296515748, -0.028751485, -0.0152758332, -0.0148129296, -0.0111289844, -0.0237109736, 0.0370837562, 0.0148515049, 0.0164588094, 0.0477305502, -0.00301530538, -0.0165102445, 0.0508937277, 0.017667504, -0.0295487083, 0.019673422, -0.017358901, 0.0631606877, 0.00705285743, 0.00516266609, -0.0223865528, -0.0111739887, -0.0338691436, 0.00133084913, 0.0363122486, 0.053388264, -0.0343577676, -0.012909879, 0.028751485, -0.0245982055, -0.0194805451, -0.00190304988, -0.00275170733, -0.0232737865, -0.0296772923, -0.0509708785, 0.000417497649, 0.0258969087, 0.0289057847, -0.0253439955, 0.0185804535, 0.0207921062, 0.00938023627, -0.00491514057, 0.00817154255, -0.00968240947, 0.0110839801, 0.00513051962, -0.0213321615, -0.0140414229, 0.015417276, -0.0184390116, 0.00228880323, 0.0210621338, 0.0391153917, 0.00434936909, -0.0201877598, -0.00195769826, -0.0473190807, -0.00282242871, 0.000104977153, 0.0232995041, -0.0486563593, 0.0184647273, -0.0207663886, -0.0194548275, -0.0332262218, 0.0582230426, 0.0029638717, 0.00939309411, -0.011090409, -0.0204449277, 0.00947667472, 0.0102160349, -0.014787212, -0.0451845787, -0.0153144086, 0.0532339625, 0.0586345121, 0.00424650172, 0.000897680235, 0.0168445632, 0.0135528017, 0.0107625192, -0.00692427298, 0.0271827541, -0.0265912656, 0.00772149675, 0.00854443666, -0.00498586241, 0.0747332871, -0.0150058055, 0.0265141148, -0.00335926889, 0.0315289088, -0.00841585267, -0.00161936053, -0.0103831943, 0.0135785183, 0.0173074678, 0.0332005061, 0.0156744458, 0.00862158742, -0.0129741719, -0.0122540984, 0.0013734427, -0.0162016414, -0.00777293043, 0.0286486167, -0.0115340259, 0.00929665565, -0.0236466806, -0.0106146466, -0.011842628, -0.0198791567, -0.0315031931, -0.00476405397, 0.00673139608, -0.0692813, 0.0182461347, -0.00239488552, 0.000897680235, 0.00268420042, 0.0331233554, -0.00562235527, -0.020110609, 0.00606275722, -0.00702071143, 0.0197248552, -0.0229266081, 0.00480262935, 0.00918093, -0.00292690354, 0.0238267, -0.0404012352, 0.0259869192, 0.00666710408, -0.0141314315, -0.00712357881, 0.0514595, 0.0251125433, -0.0330719203, -0.0119712129, 0.0486306399, -0.0136685278, -0.00531053776, -0.0184390116, 0.0146843446, 0.0016306116, 0.000671853777, -0.0121255144, -0.0311688725, 0.0143628838, -0.0157515965, -0.0278771091, -0.00489585334, -0.00863444619, 0.0187733304, -0.0014441642, 0.00536840083, 0.0137071032, -0.0249839593, 0.00617526844, -0.0117333317, -0.0161887836, 0.000816511281, -0.0327118859, 0.0112511395, -0.035026405, -0.0261155032, -0.0299344603, 0.0175774954, -0.014414317, 0.00450367061, -0.00213128724, 0.0212550107, -0.00357464794, -0.00128905918, 0.0293429717, 0.00328694, 0.00134129659, 0.00409862958, 0.00654494856, -0.00233541522, 0.0247782245, 0.00231773476, 0.0118361991, -0.0193905365, -0.00577665679, -0.0242767446, -0.0155201433, -0.00842228159, -0.0124084, -0.025189694, -0.0107560894, -0.0125884181, -0.0221936777, 0.0371094719, 0.0232094936, 0.0584287755, -0.0178218056, -0.0026006205, 0.00559342373, 0.00875017233, -0.0171274487, 0.0104667749, -0.00799152348, -0.0181947, 0.0266684163, 0.0149029382, 0.0301144794, 0.0389096551, -0.00730359694, 0.0147486366, -0.016728837, 0.00990100298, -0.00594703108, -0.0268741511, 0.0297801606, -0.0278513934, -0.0199305899, -0.00644529564, -0.00776007166, -0.0177060794, -0.0541083403, -0.0112897148, 0.0021489677, 0.0311945882, -0.0211007092, 0.0157001615, -0.022309402, 0.0249839593, -0.0138614038, -0.0262440871, 0.0153915593, 0.0198148638, 0.0191205088, 0.00652887579, -0.017796088, 0.000241497677, -0.0187861882, 0.00644529564, 0.0143628838, 0.0342806168, 0.00109778973, 0.00386074837, -0.0509708785, -0.0138228294, 0.0109168198, 0.00548091251, 0.0122219529, 0.0328147523, 0.00586988032, -0.00897519477, -0.0428186245, 0.0166516863, 0.00183554308, -0.0138356872, -0.0191076491, -0.0129741719, 0.0130448928, 0.0239295661, -0.0390125252, -0.0240967274, 0.0107818069, -0.0125691304, -0.0127941528, -0.0365951359, 0.00813939609, -0.044361636, -0.0104860626, 0.00575093972, 0.000339945167, -0.00512409071, -0.0394754261, 0.0349749699, -0.0418928154, -0.0186961796, 0.0168188475, 0.0271313209, 0.00333355204, 0.0065095881, -0.0362093821, -0.00876946, 0.00237720506, -0.000483799, -0.0119647831, 0.0346406512, -0.00656423625, 0.00435901294, 0.018233275, 0.0024222096, 0.0245982055, 0.050070785, 0.0257811826, 0.0203420613, -0.0268741511, -0.0160987731, -0.00148434681, -0.00927093904, 0.021242151, -0.00532982545, -0.0174489114, -0.0216921978, 0.0140414229, -0.0133084906, -0.0055002, -0.0170760155, 0.00581844663, 0.00685998052, 0.0106853684, -0.0145557607, 0.0180146825, 0.0268998686, 0.0225408543, 0.0143628838, 0.0268227179, 0.0031021, 0.0106017888, -0.00183715043, 0.000617205398, -0.0126977153, -0.00146104093, 0.0309117027, 0.0192233752, -0.000811689359, 0.0120162172, -0.0107882358, -0.00657709502, 0.0196219869, 0.00111547019, -0.0149929477, 0.030885987, 0.0150572397, -0.0073807477, -0.0144271757, 0.00261508627, -0.00433329633, -0.0270541701, -0.0194033943, -0.0154944267, 0.0455446132, -0.00486049242, 0.0183232855, 0.00536518637, -0.000697570678, 0.0278513934, -0.0116433222, -0.00301369815, 0.0153658427, 0.0441044681, -0.0166388284, -0.0193519611, 0.0134885097, 0.0062395609, -0.00337212742, 0.0290858038, -0.0156873036, 0.00154220976, 0.0232995041, 0.0178732388, 0.00444580754, -0.0122540984, -0.0160987731, 0.00427543325, -0.00442973431, -0.0344349183, 0.0267198496, 0.0100938799, 0.00900734123, -0.0100617334, 0.0326090194, 0.0207149554, 0.0150572397, -0.0343320481, 0.0160601977, -0.0102931857, -0.00277420972, -0.00835156068, 0.00799152348, -0.0136813857, -0.0216921978, 0.0351035558, -0.0231966358, -0.0171531662, 0.0290600862, -0.0215636138, 0.0333033726, 0.0210235585, 0.016163066, 0.0194548275, -0.0188376233, 0.0322489813, -0.00569950603, -0.00479298551, 0.0460846685, 0.0148000708, -0.0165745355, -0.0156101529, 0.0283657312, -0.0151858237, -0.0142600164, -0.0126719978, 0.000173689477, 0.0201749, 0.00502443779, -0.0058763097, -0.00180821889, -0.0135142263, -0.0120097883, 0.0181046911, -0.0123891123, 0.000240493115, 0.0222708285, 0.0383181684, -0.0126077058, -0.0110132582, 0.0342291817, -0.00141684, 0.0231837779, 0.0176417865, -0.014414317, 0.0102417516, 0.0188119058, 0.0273884889, 0.0261926539, 0.0146200527, -0.0421757028, -0.00443294924, -0.0135270851, -0.0185033027, -0.0276713744, -0.0223994125, -0.00241256575, -0.0240452923, -0.0239295661, 0.0237881243, -0.000904913119, 0.00523660192, 0.00722644618, 0.00188054761, -0.0546226762, 0.0101967473, 0.0161502082, -0.00182750658, 0.0258969087, -0.00941881165, -0.0142085822, -0.0071107205, 0.0196477044, -0.0136170937, 0.0103510488, -0.0114375874, 0.00504372502, 0.0171274487, 0.0192490928, -0.00265205442, -0.000139634678, -0.0167674124, 0.0220008, -0.0351807065, -0.00720072957, 0.0198277235, 0.0215636138, 0.0291115213, 0.00316960691, -0.0139256967, -0.0302430633, -0.032017529, 0.0360293649, 0.0110711213, -0.00035059356, 0.0237624068, 0.0240195766, -0.0105696423, 0.0180146825, 0.00289957947, 0.0301401969, -0.028751485, 0.0150058055, -0.00502122287, -0.00829369761, -0.00713643711, 0.0254854392, -0.00569307664, -0.0458275, -0.000548091251, 0.0214607455, 0.00439115893, 0.016163066, 0.0340234451, 0.0222965442, -0.0449274071, -0.0271056034, 0.0104089119, 0.00127378979, -0.0194162522, -0.0046611866, 0.0108525278, -0.00625884812, 0.0273113381, 0.0132699162, -0.0348721035, -0.051433783, 0.0275942236, -0.0334319584, 0.0121448021, 0.0255497303, 0.0111997062, -0.0304487981, -0.0168702807, 0.0199048743, -0.0355664603, 0.0238524172, 0.0062845652, 0.0109361075, 0.0438215807, -0.01008745, -0.00854443666, 0.00360357924, -0.0190305, -0.0227337312, -0.026797, -0.0279799774, -0.0073807477, -0.0258326177, 0.0426386036, -0.0111675598, 0.00340105873, 0.000765077479, 0.0275170729, 0.0106982263, -0.000795214495, -0.00438794447, -0.0126141347, -0.00420471188, 0.0165873952, -0.0449016914, -0.0228237417, -0.00968883839, 0.0108975321, 0.00505336886, -0.00481548766, 0.0345377848, 0.000324073015, -0.00465475721, 0.0418413803, 0.0235438142, -0.000826155127, -0.0153015498, -0.00098768936, 0.0207663886, -0.0177060794, -0.017358901, 0.0180918332, 0.0338691436, -0.0231323428, 0.00506622763, 0.0124791218, 0.0195705537, -0.0245210547, 0.00290761609, -0.031451758, -0.0107496604, -0.00294136931, -0.0318375118, -0.0145300431, -0.00142246555, 0.0132699162, -0.0104089119, -0.00276135118, 0.0155972941, -0.0160216223, -0.0422785692, -0.0727273673, 0.00468047429, -0.00285457494, -0.0117847649, 0.0469847582, -0.0106660808, -0.0443359204, 0.0162787922, -0.0602803938, -0.0280314106, -0.00571236433, 0.0142471576, -0.00448759738, 0.0399640501, 0.0317346416, -0.0184004363, -0.0153144086, -0.0115083084, 0.00791437365, 0.00178571662, -0.00176642893, -0.000727305829, 0.0187476128, 0.0122476695, 0.0211392846, -0.00329015474, 0.0321718305, 0.0155330021, 0.0179632492, -0.0250482522, 0.000926611712, -0.0128327282, 0.00829369761, 0.00453903107, 0.0203163438, 0.0105632134, -0.0058763097, 0.0361322314, 0.00653530471, -0.0344092, 0.042098552, 0.00397968898, 0.0234023705, 0.0311688725, -0.0079529481, -0.0130256051, 0.017487485, -0.00858944189, 0.0264883973, 0.00776650105, -0.00633278443, 0.013218482, -0.0166131109, -0.0116368933, 0.0237238314, -0.0387810729, 0.00934166089, 0.0166002531, -0.015725879, -0.0327890366, -0.0004134794, -0.0215636138, -0.0170888733, 0.0209721252, -0.0116433222, -0.00276135118, 0.0226051472, -0.00259740604, 0.0316060595, 0.0674811229, -0.0460332334, -0.0205220785, 0.0116883274, -0.0402983688, 0.0131799066, 0.00469976198, 0.00464511337, 0.0342291817, -0.0120033585, -0.00937380642, 0.0357464775, 0.0183875766, 0.00971455593, -0.0433072448, -0.0202777684, 0.0163302254, 0.00154542446, -0.00442009047, 0.0194805451, 0.0180789735, 0.0356950462, -0.00319532375, 0.00698856497, -0.0207278132, -0.0012311961, 0.0431015082, 0.00218593562, -0.0219236501, -0.00867302157, -0.011842628, 0.0133856414, -0.00588273862, -0.0112639982, 0.00914878398, -0.0217564907, 0.00884018093, 0.0086601628, -0.0190305, 0.00663495809, -0.0268741511, -0.0227465909, 0.0243024621, -0.0142085822, 0.0119326375, 0.0110968389, 0.0112639982, 0.0241995938, -0.0184904449, 0.00235148822, 0.00190304988, 0.00477691228, 0.000553716789, -0.0263855308, -0.0276456587, 0.0079529481, -0.000384547893, -0.0039539719, 0.00589559739, 0.0371351913, 0.0299601778, 0.00217950647, -0.00332712266, 0.00498264749, -0.024058152, -0.0111932764, -0.0181304086, -0.00101019163, 0.00441366155, 0.00603061076, -0.0100360168, -0.00772792567, -0.026694132, 0.00820368808, -0.0302430633, -0.000807269302, 0.00193198142, 0.0272599049, -0.00604025461, 0.0100167291, 0.0057573691, -0.0276199412, -0.0170245823, -0.0205092207, 0.000487013633, 0.0165102445, 0.0154301347, 0.0337662771, 0.00453260215, 0.0237881243, 0.0457246304, 0.0141314315, 0.0257811826, -0.0330976397, 0.0131799066, -0.00505979825, 0.00288029178, 0.0207792483, 0.0130063174, 0.0227723066, -0.0106017888, 0.00240131468, 0.0053812596, 0.0181432664, 0.0184261519, 0.0086023, 0.00237559783, 0.000188657505, 0.00975313131, -0.0154044181, -0.022810882, 0.00583452, -0.0257811826, -0.00999744143, 0.028880069, -0.0128648747, 0.0185161624, -0.00993314944, -0.0364151187, -0.00898162462, -0.00332712266, -0.00749647385, 0.0162530746, -0.0291629545, -0.0133727835, 0.0196219869, 0.0189019144, 0.0344863497, 0.00298798131, 0.0190947913, -0.00808153301, 0.000726904, -0.00201073941, 0.0185418781, 0.0045872503, -0.0107882358, -0.00190626457, -0.0242253114, -0.000442812714, -0.016420234, -0.0235695299, -0.0293686893, 0.0119069209, 0.0279542599, -0.00148434681, -0.0239295661, -0.0149543723, -0.0128005827, 0.0150315231, -0.033149071, -0.00311174383, -0.00400540559, -0.0207149554, -0.0131670479, 0.0194676872, -0.0183490012, -0.021872215, -0.00716215419, 0.00842871144, -0.00373537838, 0.0108075235, 0.0121962354, 0.0349749699, -0.0045872503, -0.0142471576, 0.0223994125, -0.0110132582, -0.00364858401, -0.0231709182, -0.0191976596, 0.0238524172, -0.000757442787, -0.0135013675, 0.0420214, -0.00574129587, -0.0127941528, -0.00235791737, -0.00277581695, -0.0149415135, 0.0216921978, -0.0438987315, -0.0126912855, -0.00257811835, 0.0365694202, 0.0133727835, 0.0317346416, -0.00358750625, 0.0124148289, -0.00740003539, 0.000789990765, -0.0349235386, -0.00839013606, 0.0214221701, -0.0204192121, -0.00718787126, -0.036903739, -0.0231452025, -0.0146972034, -0.00752219046, -0.00212485809, -0.0242253114, 0.00920021813, -0.00411470234, -0.0130577516, 0.00431079371, -0.0135913771, -0.0241224431, 0.00460010907, -0.00788222719, -0.0332519412, -0.0384981856, -0.00669282069, 0.0105567835, -0.00319532375, -0.00617526844, -0.000729315, -0.019982025, 0.0282628629, 0.00799152348, -0.0140799982, -0.0194162522, -0.02067638, 0.031451758, -0.00808153301, -0.0061334786, -0.0227980241, -0.0142728742, 0.0149029382, 0.0012424473, 0.0122476695, 0.0248039421, 0.0296515748, -0.00203163433, -0.0346406512, -0.0026006205, -0.011090409, 0.0474219471, -0.0120997969, 0.011090409, 0.0140799982, -0.0278256759, -0.0392954089, -0.0025122189, -0.00085669395, 0.0169474315, -0.0389868058, 0.0233123619, -0.0256011654, -0.0116690397, 0.00375788077, -0.0124791218, -0.0183747187, 0.0241995938, 0.00434936909, -0.00125128753, -0.0226051472, -0.0202263352, -0.00989457406, -0.0121448021, 0.00666710408, 0.0230809096, 0.0042850771, -0.00700142374, -0.00673782546, -0.0124469753, 0.0212678686, 0.0090652043, -0.00366465701, -0.00484763412, 0.0541083403, -0.0283142962, -0.00618169783, 0.00751576154, -0.00752219046, -0.0162787922, -0.0297801606, -0.0230166167, 0.00608847383, -0.00174553401, -0.000680292142, -0.0101324553, 0.00226951553, 0.000795214495, -0.0179503895, 0.0268484335, 0.0208306815, -0.00301048346, -0.011778336, -0.0281599965, -0.0103189023, -0.0184390116, 0.00386396283, -0.02117786, 0.00304423692, -0.00591809954, -0.00598882092, -0.0191976596, -0.000157415503, -0.0174360517, -0.0183232855, 0.00687283929, 0.00533625484, -0.00680211745, -0.00397647405, 0.00586023647, 0.0269770194, -0.0026006205, -0.0129934596, 0.013347066, 0.00428829156, 0.00932880212, -0.000700383447, -0.00697570667, -0.0324547179, -0.0272599049, 0.00236113206, 0.00309406337, 0.0153658427, -0.0233380795, -0.00342999026, -0.0553941838, -0.0103703365, 0.00246078498, 0.0303459316, 0.00112752488, 0.0173846185, 0.021242151, -0.0144271757, -0.0166131109, -0.0225665718, 0.00575415418, -0.0361065157, 0.0091552129, 0.00792080257, 0.0287257675, -0.000264200877, 0.00111547019, 0.00863444619, -0.00869230926, -0.0129034501, 0.0263855308, -0.00823583454, -0.0217179153, -0.000736146, 0.0240838677, 0.00405683974, -0.0030828123, 0.00418863865, -0.000584255613, -0.00728430925, 0.0266426988, 0.02117786, -0.00525588961, 0.0196219869, 0.0159444716, -0.00930951443, -0.00448759738, -0.0227465909, -0.0153272673, -0.00675711315, -0.0130834682, 0.020547796, 0.000422319572, 0.0124276876, -0.00706571573, -0.00835156068, -0.005201241, 0.0243796129, -0.00517552439, -0.00634242827, 0.00328694, 0.018863339, -0.0190562159, 0.00404076651, -0.0160473399, 0.0112639982, 0.0175646357, 0.00934809, -0.00774078397, 0.0201234668, 0.00649673, 0.00592452893, 0.00519481208, -0.0024656069, 0.0223736949, 0.0110839801, -0.00945095718, 0.00572843757, 0.00261830096, 0.00349106803, -0.0135656605, 0.00966955069, 0.0180532578, 0.00200752472, -0.025189694, -0.0338691436, 0.0091552129, 0.0244439058, 0.0102546103, -0.00390575291, -0.01472292, -0.0222708285, -0.0124855507, 0.0304745156, 0.0158030298, -0.0135528017, -0.0076507749, -0.029574424, 0.00199788087, -0.0270027351, 0.0177189372, -0.0224508457, 0.00603704, 0.0209978409, -0.0192619506, -0.0117397606, -0.00587309478, -0.00720072957, -0.0208692569, 0.00828726776, -0.0195834134, 0.014594336, 0.00170213671, -0.0025122189, -0.00164588098, -0.00389932352, 0.00277420972, -0.0110068293, -0.00119583542, -0.0100295879, 0.0146457693, -0.0111804185, -0.010903962, -0.00389932352, 0.01472292, 0.00425293064, -0.00706571573, 0.00985599868, -0.00649673, 0.00635528658, -0.0158673208, -0.0179503895, -0.0113668656, -0.031708926, 0.0188890565, 0.000183835582, -0.00652244641, -0.00862801727, -0.0013613879, -0.0151086738, -0.00172624632, -0.0308602694, 0.0159959067, 0.0187090375, 0.0145429019, -0.0236466806, 0.0235823896, -0.0161759239, 0.0168317053, 0.0275685079, 0.0178218056, -0.0193519611, 0.0194291119, -0.0194676872, -0.000754228211, -0.0167802721, -0.0159444716, -0.0203034859, 0.00732931402, -0.0225151386, 0.00117654772, -0.0088080354, 0.00382538745, 0.0133727835, 0.00725216325, 0.0393725596, -0.0140671395, 0.0187604725, -0.0201749, -0.0320946798, 0.0139256967, 0.00527839176, 0.0367237218, 0.0281085614, 0.0393725596, 0.0256397408, 0.0110132582, -0.0120612215, 0.00155989022, -0.00432365248, 0.0250996854, -0.0153915593, 0.0276970919, 0.00241578044, -0.00373537838, -0.00317121414, -0.0150572397, -0.0345120691, 0.00943809934, -0.0186704621, 0.0122476695, -0.00601132307, -0.0273627713, 0.00407934189, 0.0222836863, -0.00477048336, -0.00155747926, -0.0147100613, -0.0101324553, -0.0352064222, -0.0131927654, -0.013719961, 0.00650315871, -0.00596631877, 0.00613669306, -0.0123248203, -0.00634564273, -0.0107882358, 0.00934809, -0.00168767094, 0.00769577967, 0.010273898, 0.0019544838, -0.00876303, 0.0402726531, 0.0190562159, -0.00290600862, 0.0115661714, 0.00255400874, 0.0127105732, -0.033149071, -0.0103767654, 0.000728109502, -0.00490228226, -0.00047053874, -0.00156069384, 0.0226565804, 0.0033206935, 0.00569629157, -0.0056512868, 0.0111418432, -0.000734538713, -0.000438794465, -0.00972098485, -0.00258615497, 0.000137625553, -0.0203934945, 0.00893019047, 0.0307831187, 0.0126334224, 0.0244181883, -0.0140671395, -0.00325961597, -0.00732931402, 0.0131220436, -0.0141828656, 0.0222451109, -0.0109811127, 0.00525267515, 0.011469733, -0.0270027351, 0.0096052587, 0.0209464077, -0.00604025461, 0.0119519252, 0.0158030298, -0.00968240947, -0.00794009, -0.0139771299, -0.0015550683, 0.0164459515, 0.0118169114, 0.0224894211, 0.029574424, 0.00161293126, 0.01215766, -0.0032644379, 0.0163688, 0.00987528637, -0.0148772215, -0.0115083084, -0.00937380642, -0.012530555, 0.00200270279, 0.00681497622, -0.0150186643, 0.00485084858, 0.000772310363, 0.0118169114, 0.0136685278, 0.0126334224, 0.00858944189, -0.0207535308, -0.000549296732, -0.00905877445, -0.000270429184, 0.00304262969, 0.0125176962, -0.00865373388, 0.00803009886, 0.00897519477, -0.0202134755, 0.00180661154, 0.000702392601, 0.00530089438, -0.0165745355, -0.0185675956, 0.0186318867, -0.0142471576, 0.0317860767, 0.0196091291, 0.00259579858, 0.00058345194, 0.0115340259, -0.0176032111, 0.011469733, 0.0182461347, 0.00723930495, -0.0161502082, -0.00482834643, -0.0319918133, 0.00742575247, -0.00383824599, -0.00561271142, 0.0224765632, 0.0121898064, 0.00871159695, -0.00564807234, -0.00203324179, -0.0139899887, 0.0132056233, 0.00288189901, -0.00048219171, 0.0389610901, 0.0031262096, 0.000269826443, 0.00212003617, -0.00223736954, 0.00183554308, -0.0111482721, 0.00259740604, -0.0028883284, -0.0287772, -0.00478334166, -0.00450688507, 0.0191976596, 0.0331747904, 0.0180918332, -0.0111289844, 0.0210364163, -0.00803009886, 0.00603704, 0.00663495809, 0.00259419135, 0.016664546, 0.00942524057, 0.00520767039, -0.0122991027, 0.00437508617, -0.00932880212, 0.00431722309, -0.0137971118, -0.00851872, 0.0249839593, 0.00211842894, 0.00903948676, 0.00203806371, 0.00806867424, -0.0108911032, -0.00813939609, 0.013719961, 0.0187476128, -0.0121962354, 0.00298315939, -0.0247139316, -0.00067265745, 0.0467533097, 0.00240131468, 0.0107110851, -0.00470940582, 0.0161244906, 0.0117911948, -0.00898162462, -0.00813296717, -0.0165231023, -0.000248730561, -0.0305002332, -0.00163623714, -0.0298573095, 0.00993314944, -0.0150958151, -0.00694356067, 0.0206249468, -0.00252025528, 0.00718787126, -0.0199691653, -0.00839656498, -0.00608847383, -0.0107625192, -0.0156744458, -0.0235695299, -0.00769577967, 0.00903305784, -0.00829369761, -0.0142728742, 0.018233275, 0.00875660125, -0.021743631, -0.0114568751, -0.019171942, 0.0173074678, 0.00625884812, -0.00105037424, -0.00408577127, 0.0186576042, 0.00528160669, 0.00363894016, -0.0128198704, -0.00348785333, 0.000364054751, 0.0115083084, 0.0190819334, -0.0135013675, 0.00584416371, -0.0234538037, 0.0277228076, 0.00279028271, -0.0154815679, -0.017101733, 0.00330462051, 0.00451652892, -0.00434936909, 0.00970812608, -0.0175903533, -0.0104989205, -0.00919378828, 0.0052751773, -0.0249711014, -0.020547796, 0.0122669572, 0.00228237407, 0.0267455671, 0.00282082148, -0.00171499513, 0.015983047, -0.0215893295, 0.00976598915, -0.00733574294, -0.00333033735, 0.024058152, 0.00439437386, 0.0111225555, -0.00523017254, 0.0174231939, -0.00611097645, -0.00248489459, 0.00498264749, 0.0111289844, -0.0194676872, -0.000470940577, -0.00566736, 0.011842628, -0.0079079438, 0.0101903183, 0.0178860985, -0.00287546986, 0.0262183696, 0.0117011853, 0.0080751041, 0.00216343347, -0.00344606349, -0.0073678894, 0.0260254946, 0.0144271757, 0.00930308551, -0.0124534043, -0.00176321436, -0.0110646924, -0.00327408174, -0.0294972733, -0.00720715849, 0.00552270235, 0.0040922, -0.0138871213, 0.00312138768, -0.0223736949, 0.00788865611, -0.00218915031, -0.0148257874, -4.06598119e-05, 0.0316574946, -0.00211682147, 0.0188890565, -0.0223222617, -0.0211007092, -0.00140317786, 0.0100360168, -0.00103510485, 0.0129934596, -0.0195191205, 0.00873088464, -0.00432043755, -0.00257972558, -0.00969526824, -0.0292658228, -0.0235823896, 0.00225665723, 0.0206378046, 0.0089173317, -0.0152115412, 0.00105117797, 0.000366465683, -0.0098174233, -0.00417256542, 0.0133856414, -0.00164266641, -0.0196862798, -0.00038957072, -0.0076379166, -0.0134885097, 0.0178475231, -0.00285136024, -0.00237559783, -0.0181304086, -1.12260259e-05, 0.00828726776, -0.0185161624, 0.00410184404, -0.00325318682, -0.00341070257, 0.00301852, 0.00481548766, -0.0237366911, 0.00288993563, 0.014285733, -0.0178475231, 0.0163045097, -0.0163430851, 0.00707214512, 0.0112318518, -0.00559663819, -0.0311688725, 4.41004486e-05, -0.0202134755, 0.00752862, -0.00802367, -0.00880160555, -0.00384788984, 0.0175517779, -0.00685998052, -0.00644851057, -0.0101903183, 0.00314549729, -0.0105825011, 0.0155587187, -0.00286904071, 0.0208564, -0.0102160349, -0.00544555159, -0.0132956328, 0.028571466, -0.0192362349, 0.00163302256, 0.0170245823, -0.0103317611, 0.000988493, -0.00306513184, 7.40239602e-06, -0.00844799913, -0.0117590483, -0.00226951553, 0.0235309545, -0.0295487083, 0.0236466806, -0.00751576154, -0.00122074864, -0.00285136024, -0.0234538037, 0.00384788984, 0.0188247636, -0.0093673775, 0.0129034501, 0.0140028475, 0.0117333317, 0.0207278132, -0.00566414511, 0.0100553045, 0.0164716691, -0.0100038704, -0.0138871213, 0.0138614038, -0.0122026652, 0.0145814773, -0.0189404897, -0.00287868455, 0.0150700985, 0.0202006176, 0.0013139724, -0.00453260215, 0.000247926888, -0.00531375268, -0.0219107904, 0.00439115893, 0.00634885766, 0.0202649105, -0.0202520508, -0.00830655545, -0.00580558833, 0.0223608371, 0.00584416371, -0.00385753368, 0.0228366, 0.0169088561, -0.0184261519, 0.0228751749, 0.00558699435, 0.0164973848, -0.0168317053, -0.0113668656, -0.0319660939, 0.00731645571, -0.0155844362, 0.00052237435, -0.0238909926, -0.0208564, 0.0271313209, -0.0150958151, 0.0103124734, -0.0115983179, -0.00514016347, 0.0114761628, -0.00942524057, 0.0111289844, 0.0106917974, 0.0182075594, 0.0226308648, -0.0285457484, -0.012530555, -0.0248039421, -0.024495339, -0.0055194879, 0.00933523104, -0.0189276319, 0.014787212, 0.0137713952, -0.000568182557, -0.0126141347, 0.0095924, -0.011842628, -0.0090652043, -0.0167159792, -0.0160859153, 0.00457439199, -0.0261155032, -0.00950239133, -0.00751576154, -0.0051883827, -0.00951525, -0.00824869238, 0.00873731356, -0.00905877445, 0.00951525, -0.0230037589, 0.01008745, 0.0207535308, 0.0348978229, -0.0274913572, -0.0123891123, -0.00431722309, -0.00541662, 0.0114118708, 0.00560949696, -0.00713643711, -0.0044361637, -0.0231452025, -1.16592446e-05, 0.0249711014, 0.0062524192, 0.0134370755, -0.0130770393, 0.00867302157, 0.0135528017, 0.0141957235, -0.000144456601, 0.011714044, 0.000355616387, 0.00618812675, 0.00519481208, 0.0050501544, 0.0117011853, -0.0171917416, -0.00252186251, -0.0154558513, 0.00947024487, -0.00512730516, 0.0204449277, 0.00388967968, -0.0270798858, 0.0194033943, 0.0180403981, 0.0126462812, 0.0063906475, -0.00447795354, -0.00019478536, 0.0169731472, -0.00666710408, -9.04611734e-05, -0.0178346634, 0.000604346918, -0.0181046911, 0.00718787126, 0.0101581719, -0.0182075594, 0.000783561496, 0.0408384241, 0.00586023647, -0.00871159695, 0.0122926738, 0.00547769759, 0.0146714859, 0.00361000863, -0.00649351487, -0.00686641, -0.00353285787, 0.00873731356, -0.0109746829, 0.00547126867, -0.0211135671, 0.00203967094, 0.00365501316, -0.00543269329, -0.00204931479, -0.00739360601, 0.000576620921, 0.0116047468, -0.0180146825, 0.00595024554, -0.0125369839, -0.00885304, 0.00202359795, 0.00357464794, 0.00669282069, 0.025871193, -0.00125530572, -0.00352642871, -0.00924522243, 0.0159701891, 0.0178218056, -0.00415970711, 0.0134499343, -0.0179889649, 0.0090652043, 0.00477048336, 0.00209110463, 0.0112318518, 0.0121833775, 0.00905877445, 0.0108975321, 0.00617526844, -0.00320014567, -0.0041050585, -0.0125819892, -0.0151986824, 0.0211521424, -0.0191462245, -0.00869873818, 0.0162659343, 0.012845587, 0.021615047, -0.0130384639, 0.00255240151, 0.00918735936, -0.00121190853, -0.0122283818, -0.0137585364, -0.00871802587, -0.0122733861, 0.000709625485, 0.00279028271, -0.0297801606, 0.00080365286, 0.0242253114, 0.0161887836, 0.00806224532, -0.0041661365, -0.0115854591, 0.0454417467, -0.0125176962, 0.0280314106, -0.00979170669, 0.0163045097, 0.0232352111, 0.0205992293, 0.0121833775, 0.015288692, 0.010653222, 0.00713643711, -0.00443294924, -0.0143628838, -0.0147357788, 0.00260544242, 0.000725698541, -0.012781295, 0.000779141439, 0.00248007267, 0.00586023647, 0.00175035594, 0.00138710486, 0.0423300043, -0.0141828656, -0.00703356974, -0.0344349183, 0.0112961447, -0.00024310498, -0.00801081117, 0.0109939706, 0.0129163088, -0.0274142064, 0.00918093, -0.00545519544, 0.00427864771, 0.0298315939, -0.0234280881, -0.0149543723, 0.00682140514, 0.00937380642, 0.0038350313, -0.0223865528, -0.00295744254, 0.00517873885, -3.19452e-05, -0.0243924707, -0.0201363266, 0.00882732309, 0.00285618217, 0.00624920428, 0.00669282069, -0.0128005827, 0.0283142962, 0.00878874771, 0.00300405431, -0.0109361075, 0.0127620073, -0.0132570574, -0.00405362481, 0.0195319783, 0.00283046532, 0.0199948829, -0.0102996146, -0.0112061352, -0.0236723982, -0.0280828457, 0.0105053503, 0.000549296732, -0.00467725936, -0.0138871213, -0.00484441919, -0.00571557879, -0.00558699435, 0.0143114496, -0.0108782453, 0.0151343904, -0.00554199, -0.00619134167, 0.0218336396, 0.00416292157, -0.00857658312, -0.00889161509, 0.00347820949, -0.00729716802, -0.00859587081, 0.00589238247, -0.00869230926, -0.00618491229, -0.00804938655, -0.0141571481, -0.00684712222, 0.012215523, 0.0177189372, -0.0041661365, -0.00643243734, -0.017101733, 0.00896233693, -0.0223608371, -0.00592452893, 0.0149029382, -0.00580558833, 0.0223222617, 0.032274697, -0.0154429935, -0.000233260231, -0.00142969843, 0.000253351551, 0.0110968389, 0.0121448021, 0.0164973848, -0.0128520159, 0.0509965941, -0.0153658427, 0.0130834682, -0.0132570574, 0.0280571282, 0.00541019114, -0.00859587081, 0.0151472492, 0.013848546, 0.00203967094, -0.0142600164, -0.0134370755, -0.00559985312, 0.00908449199, -0.0221936777, 0.028005695, -0.00673782546, 0.0192490928, -0.00279510464, -0.0156358704, -0.0054134056, 0.0172431748, -0.000383342413, 0.00973384362, -0.00910378, 0.0133084906, -0.00105680351, 0.022180818, -0.0469333269, 0.00951525, 0.000739762443, -0.0358750634, -0.00487978, 0.0164973848, -0.00479298551, 0.0228751749, 0.00748361507, -0.0196862798, 0.0217564907, 0.0127491485, 0.0151343904, -0.000429150619, 0.00375788077, -0.0114247287, 0.0205606539, -0.0119647831, -0.00197698595, -0.0315803438, -0.0256783161, -0.00577665679, -0.0150700985, 0.0232223533, 0.0143243084, -0.0264112465, 0.0189662073, 0.0191462245, 0.0174360517, -0.00547448313, 0.00939309411, 0.00398933282, -0.00260544242, -0.0300887618, -1.73413209e-05, 0.00404398097, -0.00472869352, -0.000564967922, -0.00725859264, -0.00600167923, 0.0078629395, -0.0179761071, 0.00475441, 0.00341391726, 0.00582166109, 0.00921307597, 0.0124598341, -0.00202199048, -0.0276713744, 0.00188376231, -0.00200752472, -0.0101774596, -0.00437830063, 0.003696803, 0.00574451033, 0.00428186217, 0.00411791727, 0.0164073762, 0.0103317611, 0.0109553952, -0.0102160349, 0.0154044181, -3.42305866e-05, 0.0260640699, -0.015983047, -0.00278706802, 0.00187894038, -0.0102224639, 0.0282114297, -0.0184261519, 0.0050501544, -0.000372894923, 0.0056834328, 0.0192490928, 0.00937380642, -0.000470940577, 0.0172431748, 0.00456153369, 0.00526553346, 0.00135817332, -0.0116111767, 0.00507265655, 0.0183747187, 0.0230809096, 0.0408127047, 0.00877588894, -0.0179246739, 0.014285733, 0.00819725916, -0.025999777, -0.0193519611, -0.0213193018, 0.00905234553, 0.00434936909, 0.0125112673, -0.00927093904, 0.00325157936, 0.0098624276, 0.0126462812, -0.0133342082, 0.00451009953, 0.0104603451, 0.0193133857, 0.0121126557, -0.0142728742, 0.0217693485, -0.00493764319, -0.0159316137, -0.00275652925, -0.00642600795, -0.0177446548, 0.00966312177, 0.00984314, 0.00675068377, 0.0147486366, -0.0254082885, 0.000186246543, 0.00252025528, -0.00546805374, 0.0086151585, -0.0142728742, 0.00633921381, 0.0189276319, 0.0117204729, -0.000851068355, -0.0149800889, 0.0114375874, 0.021306444, -0.00767006259, -0.00801724102, -0.018863339, -0.0283400137, -0.0151986824, 0.00516266609, -0.0502250865, -0.00378038292, 0.00913592521, 0.0259226263, 0.00534589868, -0.00052759808, 0.00340105873, 0.00888518617, -0.0162787922, -0.00242863898, 0.0154558513, -0.0155330021, 0.0212550107, 0.0132056233, 0.0162659343, -0.00746432738, -0.0292658228, -0.010775377, -0.0202906262, -0.00403433712, -0.0384981856, -0.0199177321, -0.00415970711, 0.00848657358, -0.0145043265, -0.025871193, -0.0108010946, 0.0301659126, -0.000746995327, -0.0365437, -0.000288310461, -0.00720715849, -0.0132441986, 0.00387360668, -0.0113090025, -0.00489263842, 0.0177575126, -0.0141185727, 0.0266169813, 0.0172946099, 0.00924522243, 0.0126205646, -0.00888518617, -0.0013613879, 0.0041661365, -0.0178732388, -0.00392825529, 0.00329015474, 0.00947024487, -0.00436865678, 0.000736547809, 6.67534114e-05, 0.00343641965, 0.0145814773, 0.00671210838, 0.000830977049, -0.0156615861, -0.0091102086, -0.00167159794, -0.0246882159, -0.00571879372, 0.0158416051, 0.000909735041, -0.0141057149, -0.0335091092, 0.0121705187, 0.00950882, -0.00943166949, 0.001088146, -0.00220683077, 0.013096327, -0.0115018794, -0.00522052869, 0.0214993209, -0.0153915593, -0.0146329114, 0.00569950603, 0.0145429019, 0.0120612215, -0.0126784276, 0.0119069209, 0.0204449277, 0.02506111, 0.0234795213, 0.000928219059, 0.00600810861, 0.00626206305, 0.0230551921, -0.00833227299, -0.016034482, -0.013719961, 0.0090652043, 0.0220265165, -0.0153272673, 0.00830655545, -0.00799795333, -0.0251768362, -0.0175903533, 0.00339462957, 0.0240452923, -0.00764434598, -0.0124212587, -0.00451652892, 0.0045551043, 0.00388325052, -0.0345377848, -0.00785008073, -0.0064774421, -0.00984956883, 0.00449724123, 0.011714044, 0.00153738784, 0.00255722343, 0.00948953256, 0.00371287623, 0.0151086738, -0.00352642871, 0.0039539719, 0.00921307597, -0.0201363266, -0.000201917777, -0.00281760679, -0.0390382409, 0.0109746829, 0.0307574011, 0.00871159695, 0.0106210755, 0.0215764716, 0.00107850216, -0.0022116527, -0.00139514136, 0.0104217697, -0.00192073034, 0.00586023647, 0.0159187559, 0.0413784795, -0.0175517779, -0.0217693485, 0.0115854591, 0.00355214556, 0.0258454755, 0.0134370755, 0.00564485742, 0.00364536932, 0.00397004513, -0.0181947, 0.00383181684, 0.0135913771, 0.0149029382, 0.0118940622, -0.0102224639, 0.0113861533, 0.00943166949, 0.0225922894, 0.0112832859, 0.00783722289, 0.000742977078, -0.00708500342, 0.00073494052, -0.00873731356, 0.00629420904, -0.0054262639, 0.00537483, -0.00897519477, -0.0169088561, -0.00920664705, 0.0012545021, 0.00545841, -0.00959883, 0.0171660241, 0.00432686694, 0.0186961796, 0.0163173676, 0.012401971, -0.0108718155, -0.00561914081, -0.0318117924, 0.0156873036, -0.00260383519, 0.00434615463, 0.0274142064, 0.00886589848, 0.00197537872, -0.0449531265, -0.00240452937, -0.000324073015, -0.0123505369, -0.0196862798, -0.00961168762, 0.00266491272, 0.0109489663, -0.00461296737, -0.0152758332, -0.0147743542, 0.00104555232, -0.00212485809, -0.00705285743, 0.0105632134, -0.0105053503, 0.00275974395, -0.00992672, -0.00568986218, -0.0164588094, 0.00131075783, -0.00218111393, -0.0141314315, -0.00182911393, 0.0122412397, 0.00639707642, 0.0052141, 0.0156744458, -0.0173846185, 0.0177832302, 0.032274697, -0.00786936842, -0.0012858446, 0.000353004521, 0.0163688, -0.0113347201, 0.0128841624, 0.00135254778, 0.00215057493, 0.00682140514, 0.00224540615, 0.0357979126, -0.00698213605, 0.0127748651, -0.00509837363, -0.0628006458, -0.00123601803, 0.0122669572, -0.00388967968, 0.0175903533, 0.0176932216, 0.00477369782, -0.0155072855, 0.00585380709, 0.036903739, -0.0122605274, -0.00983671099, 0.0085701542, 0.00175035594, -0.0120033585, -0.012093368, 0.0119004911, -0.0113925831, 0.0110711213, 0.0117526194, -0.0042111408, -0.0307059679, -0.00489263842, -0.012967742, 0.00705285743, 0.0164073762, -0.00492799934, 0.0173074678, 0.00914235506, -0.0260512102, 0.00483799027, -0.00740003539, -0.000551305828, 0.0150572397, -0.0248425175, 0.0058023734, 0.00540697621, -0.0195705537, 0.00761862891, -0.021306444, -0.014350025, 0.013719961, -0.00156471203, -0.00427864771, -0.0496850349, -0.0103960531, -0.00415006327, 0.00815868378, 0.00219236501, -0.0252154116, -0.00122878514, 0.0110711213, -0.00102224643, -0.00282725063, -0.00271634664, 0.00525910407, -0.0220265165, 0.00956668332, -0.00169249286, 0.0203934945, -0.0158416051, -0.012594847, 0.0190176405, -0.006014538, -0.0119583542, 0.00920021813, 0.0278513934, -0.0163816605, -0.00378038292, -0.0143243084, 0.00322264782, 0.0137328198, -0.0216279048, 0.0288286339, 0.019673422, -0.0117976237, -0.00645172503, -0.0108589577, 0.00851229113, -0.00916807167, 0.00569629157, -0.00401183497, 0.000703598082, 0.00417256542, 0.0359265, 0.0242253114, 0.000218593574, 0.0246110652, -0.0248296577, -0.0051562367, 0.00423364295, -0.00175678509, 0.0117976237, -0.0111804185, -0.00621384382, -0.0165102445, 0.00834513083, -0.0195834134, -0.0140799982, 0.0107882358, 0.0218207818, 0.0267198496, 0.000153799061, -0.00227433746, -0.000275251106, -0.0173331853, 0.0194162522, 0.00877588894, -0.0102674691, 0.00236113206, -0.0045229583, 0.00959883, 0.00733574294, -0.00126173499, 0.0014441642, 0.0334319584, 0.00848014466, 0.00751576154, 0.017731797, 0.0262055118, 0.000120748839, 0.0091552129, -0.0385753363, 0.0181432664, 0.0131413313, -0.0109811127, 0.0103446199, -0.00392825529, 0.0199691653, -0.0020894974, 0.00747075677, 0.021306444, -0.00707857404, -0.000667031854, 0.0133856414, 0.0359007791, -0.0133084906, 0.0117976237, 0.00718144188, -0.0029477987, 0.0250353925, 0.000297351566, -0.00420471188, -0.000787177938, -0.020239193, 0.00812653732, -0.0207535308, 0.020110609, 0.00446830969, 0.0187218972, -0.013848546, -0.0249582436, -0.00223094039, 0.00216986262, 0.00518195331, -0.00514659286, -0.0164845269, -0.0158801805, 0.0183104258, -0.00239167083, 0.0192490928, -0.0139514133, -0.00438473, 0.00244149729, -0.00191430107, 0.00595346047, 0.00142166193, -0.0155587187, -0.0225022789, -0.00627813581, -0.00160891295, 0.00174071209, -0.00700785266, -0.0363122486, -0.0071557248, -0.0115340259, 0.00325318682, 0.00882732309, -0.0103446199, 0.000825351453, -0.00442973431, -0.00974670146, 0.0138614038, 0.0177446548, 0.00974027254, 0.00349106803, -0.00826798, -0.0185804535, 0.00120708661, -0.009650263, -0.00158721441, 0.0012424473, 0.0124855507, -0.0130898971, 0.00348785333, 0.021306444, 0.0103253322, 0.0209078323, 0.00212003617, 0.00266973465, -0.0102481814, -0.0274142064, -0.00361000863, -0.00555484835, -0.0462904051, 0.00499550626, -0.0109811127, -0.000462100375, 0.00136460247, 0.0080751041, -0.00887875631, -0.00631671119, -0.0115597425, -0.00999101251, -0.0132056233, -0.00205092202, 0.00765720429, 0.0187090375, 0.00776007166, -0.0079529481, -0.0145300431, 0.0286743343, 0.00673139608, 0.0213578772, 0.00262151565, 0.00252989912, 0.00397968898, 0.00944452826, -0.00481548766, -0.00912949629, 0.00641957903, -0.0352578573, -0.00611740537, 0.00988814421, -0.00291243801, 0.0183232855, -0.0156615861, 0.0139899887, -0.00964383408, -0.0115661714, 0.000711232773, 0.0103703365, 0.0148772215, -0.00232416391, -0.018233275, 0.0211392846, 0.00244149729, -0.00283850194, 0.00733574294, 0.0080751041, -0.0117269019, 0.00287707709, 0.0066285287, -0.00513373455, 0.0115147382, -0.0172817502, -0.00523981638, -0.0153787006, -0.00808796193, -0.00788222719, -0.00920664705, 0.0164073762, 0.000122456608, -0.00114199065, 0.00460010907, -0.00749004446, -0.00873088464, 0.00514980732, 0.0333805233, 0.0152629744, 0.00937380642, 0.0147614954, -0.0124984086, -0.00335605419, 0.0270798858, 0.00270509557, 0.0050823004, -0.00900091231, 0.00907806214, 0.0126784276, -0.00931594335, -0.00565771619, -0.0121126557, -0.016420234, 0.00524946, 0.0205992293, 0.0244824793, -0.00187572569, 0.0183618609, 0.00384467514, -0.00991386175, 0.00649351487, 0.00237238314, 0.00319050183, -0.00662209932, -0.0181046911, 0.0220265165, -0.00720072957, 0.0139771299, 0.0078179352, -0.0117590483, -0.0255754478, -0.0239681415, -0.0186190289, -0.0119840708, -0.0158416051, -0.00740003539, 0.00992029067, 0.0112832859, 0.00441366155, 0.0040279082, 0.0126591399, -0.00429472094, -0.0095924, 0.00427221833, 0.0021328947, -0.0150186643, 0.000798830937, -0.00253311382, -0.0245339144, -0.0196219869, 0.02067638, 0.0173203256, 0.00956668332, -0.00243024621, 0.000579031883, 0.0216921978, -0.00898805354, 0.0318889432, -0.00483799027, -0.0150958151, -0.0146714859, 0.0189276319, -0.00342034642, 0.0102288937, -0.0152629744, -0.00564485742, -0.0204835031, -0.00898805354, -0.0212550107, 0.00750933215, -0.00235952483, -0.00424328679, -0.00252186251, -0.00559342373, 0.00242863898, 0.00923236366, 0.0046740449, -0.00903305784, -0.0128713036, -0.0218850747, 0.0119326375, 0.0119776418, -0.0200848915, 0.0115726013, -0.00810725, 0.0110582635, 0.0179503895, -0.0118104825, 0.0181432664, 0.0136685278, -0.00790151488, 0.00196573487, -0.0257426072, 0.00418220926, 0.0268998686, 0.00339141511, 0.0156230116, 0.00377716846, -0.0267198496, 0.024623923, -0.0137328198, -0.00474476628, -0.0085701542, -0.00846085697, 0.00205895863, 0.000722483906, -0.00402469328, 0.019300526, 0.0245724898, 0.00255400874, -0.000345168897, -0.00766363367, -0.00975956, -0.00235952483, -0.000200812749, -0.00540054729, 0.0188761987, -0.00280314102, 7.16757859e-05, 0.0309631359, -0.00376752461, -0.0138099706, -0.00217147, -0.00424650172, -0.0204320699, -0.00456474815, 0.00358429179, -0.00595346047, 0.0211264268, -0.00867945049, 0.00111707742, 0.0193519611, -0.0268998686, 0.0100103, -0.0263598133, 0.0302687809, 0.000501479371, 0.0259097684, 0.00613669306, 0.00589238247, -0.000896876561, -0.000803251, 0.00505658379, -0.00670567947, -0.040786989, 0.00297512277, 0.00977884792, 0.00801724102, 0.00452617276, 0.00550984405, 0.000827762415, 0.00859587081, -0.010273898, 0.00547769759, 0.00934166089, -0.0136942444, 0.0184647273, -0.0127941528, 0.0107239438, 0.0106853684, 0.0148643628, -0.0279799774, -0.0180532578, -0.0155715775, 0.0225408543, 0.018734755, -0.00697570667, 0.0298830271, -0.00330462051, -0.00109537877, 0.00330140581, 0.0220908094, -0.0260254946, -0.0156873036, -0.0122412397, -0.00566414511, -0.00240292191, 0.0123955412, -0.00570272049, 0.0099074319, 0.0115083084, -0.0119969295, 0.0035457164, -0.00361000863, -0.0111997062, 0.00696284836, -0.00882089324, 0.0281857122, 0.00476083951, -0.0127941528, -0.00673782546, 0.00302816392, 0.0242638867, -0.0101260254, 0.00164748833, -0.00909092091, 0.00607240107, -0.00540697621, 0.0273113381, 0.0150443809, -0.0229266081, 0.015288692, 0.0012625386, -0.0100553045, 0.0132956328, 0.00137826463, 0.00205574394]
|
23 Jul, 2018
|
array data() in C++ STL with Examples
23 Jul, 2018
The array::data() is a built-in function in C++ STL which returns an pointer pointing to the first element in the array object.
Syntax:
array_name.data()
Parameters: The function does not accept any parameters.
Return Value: The function returns an pointer.
Below programs illustrate the above function:
Program 1:
// CPP program to demonstrate the
// array::data() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
array<int, 5> arr = { 1, 2, 3, 4, 5 };
// prints the array elements
cout << "The array elements are: ";
for (auto it = arr.begin(); it != arr.end(); it++)
cout << *it << " ";
// Points to the first element
auto it = arr.data();
cout << "\nThe first element is:" << *it;
return 0;
}
Output:
The array elements are: 1 2 3 4 5
The first element is:1
Program 2:
// CPP program to demonstrate the
// array::data() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
array<int, 5> arr = { 1, 2, 3, 4, 5 };
// prints the array elements
cout << "The array elements are: ";
for (auto it = arr.begin(); it != arr.end(); it++)
cout << *it << " ";
// Points to the first element
auto it = arr.data();
// increment
it++;
cout << "\nThe second element is: " << *it;
// increment
it++;
cout << "\nThe third element is: " << *it;
return 0;
}
Output:
The array elements are: 1 2 3 4 5
The second element is: 2
The third element is: 3
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/array data() in C++ STL with Examples
|
https://www.geeksforgeeks.org/array-data-in-c-stl-with-examples/?ref=lbp
|
Pandas
|
array data() in C++ STL with Examples
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, array data() in C++ STL with Examples, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0448697321, 0.0300605111, -0.0068151895, 0.0100570088, 0.0123778572, -0.0200649, -0.0302078668, 0.0265976582, -0.000608608709, -0.0245838, -0.0376493149, 0.00031965386, 0.0326883495, -0.0141584026, -0.00493947743, -0.0212683026, 0.000894109835, 0.0555038825, -0.0129672792, -0.0304043405, 0.0357336961, -0.0142443599, -0.0242276918, 0.00064775, -0.000661948288, 0.005182, 0.00211055973, 0.00215814332, -0.0434452966, -0.0161477011, 0.0274326727, 0.021612132, -0.0167616811, -0.0546197519, -0.010781507, 0.0182106774, -0.0143917147, 0.00830102339, -0.0304534584, -0.00994035229, -0.00706078159, -0.0198561456, 0.0114691658, -0.0212314632, -0.0065450375, 0.042683959, 0.0101920851, 0.00633628434, -0.0146495868, 0.0139496485, 0.0117638763, 0.0135567011, 0.00379747269, 0.0106034521, 0.0167616811, 0.0248171128, -0.0109534217, 0.0260573551, -0.0479150787, -0.0356354602, 0.00673537189, -0.00544294156, 0.0377229936, -0.0240803361, 0.000772464846, 0.0194509178, -0.0328602642, 0.0523603, 0.0299868323, 0.0118682534, 0.00732479338, -0.00286729145, 0.00804929156, 0.0338180736, -0.0290535819, -0.049413193, 0.0211823452, 0.0267450139, -0.0128444834, 0.0409893729, -0.0334005691, 0.0120463073, -0.00142213353, -0.00919129606, 0.00990965404, 0.00699938368, 0.00323568, -0.0363722369, 0.0203473307, 0.00868169125, -0.0399824455, 0.060759563, -0.024154013, 0.0158161502, 0.0151530514, 0.012500654, 0.0083071636, 0.0262292698, -0.030158747, 0.0741197914, -0.0193772409, 0.0268923678, -0.00157793122, -0.0149442982, 0.0157301929, -0.043175146, 0.0276045874, 0.0197947472, -0.032442756, -0.00256490568, 0.0247311555, -0.00449127099, -0.00403692527, 0.0144531131, 0.00586965866, 0.0220050793, 0.0393439047, -0.0446241423, 0.022152435, -0.00476449262, -0.00819664635, 0.0302078668, -0.00455266936, 0.00914831739, -0.0203596111, 0.0204701275, 0.0500026159, -0.0032418198, -0.00094706571, 0.00790193584, -0.0192667246, -0.021919122, 0.000897947233, -0.0142443599, -0.0114875846, 0.0243259277, -0.0038220319, 0.0127216866, 0.0141829615, 0.00193250529, -0.0201017391, -0.0103762792, 0.0243996065, 0.00311902352, -0.00552582927, -0.00392640848, 0.0159512274, 0.0245838, -0.0135075822, -0.0236751083, -0.0147355441, 0.0247925539, 0.0199666619, -0.0420454219, 0.0423646905, -0.0203473307, 0.0427576378, 0.0160494633, -0.00249736779, -0.0721550509, 0.00695640501, 0.0043838243, -0.0303306617, -0.00490263849, 0.00476142298, 0.0413086414, 0.0547179878, -0.0266222171, -0.0326637886, 0.0155337201, -0.00685816817, 0.0447714962, 0.029544767, 0.0194018, -0.0178545676, -0.0151407719, 0.027899297, 0.0356354602, -0.0163564552, -0.0298149176, 0.00135613058, -0.00984211545, 0.0113586485, 0.0226927381, -0.0168967582, 0.0187632591, 0.02556617, -0.0111560356, 0.05113234, -0.014784663, -0.00881676748, 0.0189228952, 0.0183334723, -0.00318349153, -0.00877992902, 0.0121322647, -0.0302815437, -0.042683959, 0.0138145732, 0.0294219702, -0.0206174832, -0.00643452117, 0.015042535, -0.0287834294, 0.0100754285, 0.0101736654, -0.0319515727, -0.00104376778, 0.00822120626, 0.01647925, 0.0289062262, 0.0254433732, -0.00857731514, 0.00803087186, 0.0087860683, 0.0104806563, -0.057370387, 0.00298087788, -0.00179896434, -0.0254188143, -0.0226067808, -0.00892728381, 0.0328602642, -0.00782825798, -0.0416033529, -0.0413332023, -0.0256644059, 0.0131637529, -0.012193663, -0.020457847, -0.0239084214, 0.0225208234, -0.0010368604, -0.0204455685, 0.0148337819, -0.0413577631, -0.0122857606, 0.0063731228, -0.0151284924, 0.0529006049, -0.00425795838, -0.00328786834, -0.0136917764, -0.0296430029, 0.0265239794, 0.0609069169, -0.0167125631, -0.0456065089, -0.00335233635, 0.0122489212, 0.0468099117, -0.00173910125, 0.0384106524, 0.0131023554, -0.0110086799, -0.000219306341, -0.0189965721, -0.0224717055, 0.0160371847, -0.0101982243, -0.0118989525, 0.0225208234, -0.00707920128, 0.017608976, 0.00809227, 0.0148706203, 0.0181001611, -0.0105052153, -0.00550434, -0.0332040936, 0.00532321539, 0.0121752433, 0.0139742084, -0.0383615345, -0.00330935768, 0.0362985581, -0.0167371221, 0.0361266434, -0.014195241, 0.000154070862, 0.0125988908, -0.00250350754, 0.00455266936, -0.00679677, 0.0121322647, -0.0190948099, -0.0320006907, -0.029495649, -0.00426716823, 0.0290290229, -0.0216244124, -0.0508376285, 0.0209858716, 0.0249890275, 0.0400561206, -0.0100815687, -0.0217594877, -0.00727567496, 0.00642224168, -0.0247679949, 0.00995263271, -0.0382878557, -0.0302324258, 0.0124822343, 0.013630379, -0.0233681183, 0.0449925289, -0.0339654312, 0.0150916539, -0.00876150932, -0.0155582791, -0.0201385766, 0.0038987794, -0.00297320308, -0.0125743309, 0.0117024779, -0.00885360595, 0.0162336584, 0.00582974963, -0.0253696963, -0.0267204531, -0.00320191099, -0.0375756398, 0.00411981251, 0.0223857481, -0.00280589331, 0.00162858469, 0.0137040559, -0.00627181632, -0.0485536195, -0.0410139337, 0.0129795587, -0.0578124523, 0.0191807672, -0.00394482818, -0.0303061027, -0.0469081514, -0.0414314382, 0.0351933911, 0.00680904929, 0.00199850812, 0.0110700782, -0.0112542724, 0.00673537189, -0.00846679788, -0.00409832317, -0.00870011095, -0.0146127483, -0.000961647776, -0.00262169889, 0.000589805539, 6.59070283e-05, -0.00551047968, -0.0279975347, 0.0688641146, -0.0287588704, -0.0308709648, -0.0193158425, -0.0367651843, 0.00940618943, 0.044280313, 0.0269906055, -0.0169458762, -0.00506534334, 0.00871853065, -0.0440101586, -0.00714059919, -0.0439119227, 0.0182352364, -0.00491798809, -0.0216858089, -0.00329400809, -0.00201232289, 0.0240557771, -0.00254495139, -0.0184931085, 0.00156027928, 0.0237242263, -0.013937369, 0.00565783493, 0.0290781409, 0.00464476645, -0.031263914, -0.022459425, 0.00653275801, -0.008650993, -0.0139987674, 0.0447960533, 0.0445995815, 0.0227050185, -0.0280220937, 0.0366669446, 0.0383369736, -0.0187018625, 0.0175966956, -0.00881062727, 0.0298394784, -0.0133111086, 0.00477370247, -0.0480378754, 0.00336154597, 0.0195491556, 0.02591, -0.0566827282, 0.0209121928, 0.0379194692, -0.00499166548, -0.0167371221, 0.00267388741, 0.031263914, 0.0144408336, 0.0164178517, 0.0308709648, -0.0031497227, 0.0314112678, -0.0258363206, -0.0273589939, 0.06699761, 0.0103271604, 0.0280712117, 0.0265731, 0.0048842188, -0.0561424233, 0.0135075822, 0.00502850441, 0.0347022079, -0.0170932319, -0.0121445442, -0.0236873869, -0.029520208, -0.0331795327, 0.0333268903, 0.0320989266, 0.0430277884, -0.0103517203, -0.0406701043, 0.0654749349, -0.0193404015, -0.0664573088, -0.035168834, 0.00275677489, 0.0222261138, 0.0514270514, -0.0135444216, -0.00506534334, 0.021919122, -0.0284396, 0.0334005691, -0.0151530514, 0.00441452349, -0.0438382439, 0.0103517203, 0.012783085, 0.00409832317, 0.0323199593, 0.00196780916, -0.0342601426, -0.00565476529, 0.0144899525, 0.00396324741, 0.00492719747, 0.00201385771, -0.0175966956, 0.0298885964, 0.0130777955, 0.00696254475, 0.00857117493, -0.0191684868, -0.00733093359, 0.00457108859, -0.0237487853, -0.0469327085, 0.0208262354, 0.0129672792, 0.0287834294, 0.0107508078, -0.00101230119, -0.0103271604, -0.041456, -0.0445504636, 0.0200035013, -0.0272116382, -0.0280712117, 0.000452427252, 0.00400929619, -0.0470063873, 0.0355372205, -0.00664941454, -0.00586044881, -0.017633535, -0.00578984106, -0.00817208737, -0.00155567436, -0.019917544, -0.0368634202, 0.0118436934, -0.0259591173, 0.0260327961, -0.0226190612, 0.0453609191, 0.0268923678, -0.0513288118, 0.00487193931, 0.00902552065, -0.0240312163, -0.00427023787, -0.0495114289, 0.0267941318, -0.00315586245, 0.00898868218, -0.0233189985, -0.00322340033, 0.0381405, 0.0313375928, -0.000190717852, -0.0117270378, -0.0148337819, -0.0114937248, -0.0292500556, -0.0223489087, -0.0191930458, 0.00863871258, -0.0103333006, 0.0382878557, 0.017633535, 0.013040957, 0.0237733442, -0.00736777205, -0.0148460614, -0.00935093127, 0.00422418956, 0.0086141536, -0.00968248, -0.00735549256, -0.023540033, 0.000381627586, -0.0214033779, 0.0204210095, 0.00877992902, -0.010370139, -0.0227541365, 0.0357091352, 0.0308218468, 0.0176212545, 0.0345302932, 0.0202982128, -0.0275800265, -0.0218086056, 0.0084054, 0.0200649, 0.0239452589, 0.00234694243, -0.0063731228, -0.00676607061, -0.0192176066, 0.0189842936, -0.0302078668, -0.0119849099, -0.0187755395, 0.0168353599, -0.0178177301, 0.00145743741, 0.0290781409, 0.0239575393, -0.00701780291, -0.00305609056, 0.0326392315, 0.0445259027, -0.00422418956, 0.0223857481, 0.0180264823, -0.0349723585, 0.0227295775, 0.0487500913, 0.0274817906, 0.0283168051, -0.0172528662, -0.000645447522, -0.005891148, 0.0294219702, 0.0148460614, -0.0476694852, 0.0108736036, -0.00116426148, -0.0181124397, 0.000509988, -0.0101798056, 0.00794491451, -0.0253451373, -0.0089395633, -0.0327865854, 0.0179896448, 0.0192298852, 0.0177686103, -0.00777913956, -0.00421805, -0.0187755395, 0.00595868565, -0.0155214397, 0.0126971276, 0.00773616089, 0.0160740223, 0.0156687964, 0.00472765369, 0.0154232029, -0.0015088584, 0.0335233621, -0.0251486618, -0.021563014, 0.0206052028, -0.0445504636, -0.000455880916, 0.0247188751, 0.000581747037, -0.00583281973, 0.00566090504, 0.0162336584, 0.0436908901, -0.0397122912, 0.0207771175, 0.00470002461, -0.00808613, -0.00161784, -0.0189720131, 0.0243627671, 0.00479826145, -0.0146618672, -0.0167862419, 0.00219651707, 0.00262169889, -2.61661444e-05, -0.0322217233, 0.0210472699, 0.0106648505, -0.00617971877, 0.00783439819, -0.0170072746, 0.0230242889, -0.0356845781, 0.0419471823, -0.0172774252, 0.0187141411, 0.019328123, 0.0388772786, 0.00286115147, -0.00128015038, -0.00705464184, -0.000878760358, -0.0346776471, 0.0154477628, -0.00670467271, -0.00330321793, -0.00748442858, -0.00907463953, 0.0044789915, 0.00226098509, 0.0365441516, 0.0166020468, 0.00248355325, 0.0281203315, -0.0308709648, -0.0397122912, -0.0210841075, -0.0271625202, 0.00726953521, -0.0242522508, -0.0434944145, 0.0156442355, 0.0262783878, -0.00368081615, -0.0246206392, -0.00317121204, -0.0102043645, 0.00484124, 0.0266958941, -0.0172651466, -0.0177686103, 0.0354144238, 0.0326392315, -0.000752894208, 0.0160371847, -0.0034382937, -0.0314603858, -0.0148215014, 0.00206758105, -0.0144653926, -0.0239698198, -0.0140233263, 0.000666936859, -0.034161903, -0.0275554676, -0.0166880041, -0.00891500432, 0.0311656762, -0.00967634097, 0.00539996289, 0.0369616561, -0.0185422264, -0.0309200846, -0.0315095074, -0.00115505175, -0.0358564928, 0.00269998144, -0.0245838, -0.00434391573, 0.0461222529, -0.00821506605, 0.0167616811, -0.00984825566, 0.00114200474, 0.0317305401, -0.0182106774, -0.00632400438, 0.0239820983, -0.00177594007, 0.0357582532, 0.00693184556, 0.00538461376, 0.0257380847, -0.0146987056, -0.0211946256, 0.0400315635, 0.00186803727, 0.0233189985, 0.019942103, -0.0134216249, -0.0423401296, -0.00685202796, -0.00418735063, -0.00075212674, -0.0241908524, 0.00518506952, 0.0125743309, -0.00653275801, -0.0265239794, -0.00671081245, 0.000192732477, -0.00108828139, -0.0339408703, -0.00248662313, 0.0279975347, 0.0118498337, -0.038607128, 0.00367160654, -0.0311902352, 0.0068765874, 0.0125313522, -0.0242522508, -0.0153004071, 0.0265976582, 0.0010928862, 0.0220910367, 0.0161599796, -3.80140591e-05, 0.0330567397, -0.0171914678, 0.0186281838, -0.000342870015, 0.00638540275, 0.0174739, -0.000660413352, -0.00923427474, -0.000660797057, 0.0205438044, -0.016245937, -0.0371826887, -0.00782825798, 0.0202613734, 0.00787737686, 0.0121384049, 0.00016721389, 0.011524424, 0.018198397, 0.0116472198, 0.0107262488, 0.0108183455, 0.00113126007, -0.012525213, -0.00211055973, 0.0105727529, -0.0208876338, 0.0355126634, -0.0093079526, 0.0106648505, 0.0263275057, -0.0174370613, 0.0273344349, 0.00399394659, 0.00559950667, -0.0096149426, 0.0116472198, -0.000356684584, -0.017584417, -0.00524646789, 0.00537233381, -0.0179528054, -0.0406946614, 0.00599552458, -0.032393638, -0.0307727288, 0.0349232405, -0.0208630748, 0.0171423499, -0.0138022937, 0.00309753418, -0.0214402173, 0.00610911101, -0.000396785239, 0.0243504867, 0.0228278134, -0.00608148193, 0.0181124397, 0.00949828606, 0.0253942553, -0.0418980643, 0.00933865085, -0.00386808044, -0.00868783146, 0.00298701762, -0.000590189244, 0.0141584026, -0.0302324258, 0.00999561138, 0.0210472699, -0.0429541133, -0.00949214678, 0.0190211311, 0.00239913072, 0.0467607938, 7.9529731e-05, -0.0180142038, -0.00850363728, 0.0214893352, 0.0350951552, -0.0232698806, -0.0256152879, -0.00184347806, 0.0211946256, 0.0102043645, 0.00958424341, 0.0157301929, 0.00332777714, -0.0406455435, 0.0150793735, 0.013630379, 0.0130041176, -0.00347206276, 0.00999561138, 0.0129304407, 0.0297412407, 0.00437768456, 0.00985439494, -0.0207648389, 0.0209490322, -0.00409525353, 0.0355863385, -0.0256889667, -0.0210227109, 0.00418735063, -0.00136303785, 0.0380422622, 0.00615822943, -0.00249583274, 0.0144653926, 0.013040957, -0.00538461376, -0.0156687964, 0.00729409466, 0.0146250278, -0.0197333507, 0.00857117493, 0.0276291464, -0.01067713, 0.00671081245, -0.00454039, 0.00820892584, 0.00721427705, 0.0190456919, 0.00658187643, -0.0236382689, 0.0285132788, -0.0457784235, -0.0321971662, -0.00162551471, -0.00198469358, -0.00917901658, -0.00555345835, -0.0248907898, -0.00672923215, -0.0282431263, 0.0603666157, 0.0139005305, 0.00765634328, -0.0125436326, 0.0447223783, -0.00917901658, 0.0188860558, -0.0212683026, 0.00783439819, -0.0191562083, 0.00696868449, -0.0195000377, 0.000129319757, 0.0111744544, 0.0212683026, -0.00454959925, 0.00235615205, 0.0287097525, 0.0208999142, 0.0290290229, 0.027850179, -0.0187141411, -0.0291763786, -0.00638540275, -0.00438075466, 0.00314051285, 0.00341066462, -0.0276782643, 0.0235154722, -0.0130041176, -0.0216735303, -0.000404076272, 0.00833786186, -0.00120417029, -0.00744145, -0.0203473307, -0.00688886689, -0.02361371, -0.0112788314, -0.00459257793, 0.0182106774, -0.0105788931, 0.00624725688, 0.0203104913, 0.0140478853, 0.0403262749, -0.0436908901, -0.0295938849, -0.0384352133, -0.0116288, -0.0174370613, -0.0136180986, 0.0365441516, -0.0123962769, -0.0292500556, 0.00752740726, -0.0418243855, -0.0169581566, 0.0141829615, 0.0071099, -0.0092526935, 0.020457847, -0.0200526193, -0.0375756398, -0.00919129606, 0.00322340033, -0.00998947117, 0.002810498, -0.00176059059, -0.00804315135, 0.0206788816, 0.0177440513, 0.0185176674, 0.00470309472, 0.038115941, 0.00901324116, 0.0087860683, -0.0187878199, -0.0117638763, -0.022459425, 0.0190211311, -0.0174002219, 0.020457847, 0.0202736538, 0.00301004201, 0.00673537189, -0.0132251512, 0.00155490695, -0.0144776721, -7.12913516e-06, 0.0182843544, 0.0378703475, -0.00372379483, 0.0018173838, 0.0142198, 0.00472458405, 0.00919743534, 0.00371151534, -0.0105666136, 0.0170686729, -0.0393439047, -0.020224534, 0.00264318823, -0.00616129953, 0.00718357787, 0.0162091, -0.0214279369, -0.0138759706, -0.0195123162, -0.0244487245, -0.0287097525, 0.00986667536, -0.0228769332, 0.0256644059, 0.0262783878, 0.0154723218, 0.0264257435, 0.03917199, -0.01647925, -0.0267941318, -0.00774844037, -0.0165774878, 0.013347947, -0.0126725687, 0.0188123789, 0.019868426, -0.0277519412, -0.00493026758, 0.0175230186, 0.0224103071, -5.73688521e-05, -0.0217963271, 0.00236229203, 0.0438873619, -0.000904087035, 0.00766862277, 0.0383860916, 0.00953512546, 0.0239575393, -0.0183211938, -0.0197579097, -0.00761336461, 0.00979913678, 0.0083071636, 0.00919129606, -0.0239943787, -0.0167739615, -0.0456556268, 0.0390983112, 0.0110393791, 0.00971932, -0.000613213517, -0.0129918382, 0.00189259648, 0.0158161502, -0.017584417, 0.00879220851, -0.0135689806, -0.0260082353, 0.0225576628, 0.00992193352, -0.00962108281, -0.0134584643, 0.0168353599, 0.00308832456, 0.0181615595, 0.016221378, 0.00199236837, -0.00755810644, 0.00474300329, -0.00938777, -0.0152635677, 0.0187632591, 0.00712218, -0.00585737871, 0.00882290769, 0.00752126751, 0.0138391322, 0.00374528416, -0.0130286776, 0.0168476384, -0.0101736654, -0.0172160286, -0.00829488318, 0.0077238814, -0.00786509644, -0.00732479338, 0.0190456919, 0.00804315135, -0.011063938, -0.0180878807, -0.0143671557, -0.00335540622, 0.00174831098, 0.0472028591, -0.0192667246, 0.0322462842, -0.00940004922, -0.00281510293, -0.0372563675, -0.0140233263, 0.0112235732, 0.0207157191, 0.0212437436, -0.0158161502, -0.000805850083, 0.00313744298, 0.0406946614, 0.00478598196, 0.00493640732, -0.00958424341, 0.0231716428, -0.00984211545, 0.00539996289, 0.0217349287, 0.00078090711, 0.0298149176, -0.0105113555, 0.0228523742, 0.00477370247, 0.00899482239, 0.000244824943, 0.000930181239, 0.00419042027, -0.00570388371, 0.00468160538, 0.00295478362, -0.00819050707, 0.00769318221, -0.0264011845, -0.000142174977, 0.00848521758, -0.0138268527, 0.00851591676, -0.0512796938, -0.00130624464, -0.000854201091, 0.0040584146, -0.00388036, 0.007380052, -0.00868169125, 0.00812296849, 0.0259591173, 0.0187018625, 0.0205806438, 0.0170809515, 0.0237733442, 0.00109442114, -0.00573151279, -0.0164301321, 0.0271625202, 0.00805543084, -0.0329830609, -0.00540917274, -0.0134953028, -0.0305271354, 0.0357582532, -0.0213542599, -0.0318533368, 0.0243136492, 0.00525260763, 0.00391719909, -0.0052341884, 0.0101552457, -0.013654938, 0.0193404015, -0.00458336808, -0.00532935513, -0.00849749707, 0.00881676748, -0.0345794111, -0.00507148309, -0.00115735421, -0.0192667246, 0.00868783146, 0.0365687087, 0.0174739, -0.0199666619, 0.00363476761, 0.01586527, 0.017559858, -0.0286851935, 0.0138022937, -0.0115305632, 0.0249153506, -0.0371335708, -0.00573151279, 0.0213665403, 0.0143425968, 0.0147969425, 0.0451398827, -0.00299929734, -0.00326023926, -0.0185790658, 0.0111744544, -0.0112235732, 0.0141338427, -0.0223734677, 0.020199975, 0.00366853666, 0.0196965113, 0.00467239553, 0.0108981635, 0.0101491064, 0.0320252515, 0.00841768, 0.00575914187, 0.00513288146, -0.0127462456, 0.0160740223, -0.0240434967, 0.0168722, -0.0347022079, -0.0216489714, 0.00172528671, -0.0111990133, 0.00553810876, 0.0154968807, 0.000737928436, -0.0097009, -0.0114568854, 0.00283198734, -0.00800017267, 0.00323568, -0.00897640269, -0.0037268647, -0.00601701392, -0.00706692133, 0.0132988291, 0.00126633584, -0.00188799168, -0.0103394408, 0.00452197, -0.0132128717, 0.0271134023, 0.0203227717, 0.00769932196, -0.0071283197, -0.0100570088, 0.0251363833, -0.0104438169, -0.0175352972, -0.000334619661, 0.00124254404, 0.0113156699, -0.00906849932, 0.0109165823, 0.0279729757, 0.0289799049, 0.00644066092, -0.00995877199, 0.0176949333, 0.00622269744, 0.0234663542, 0.00836856104, -0.0194386393, 0.00385273085, 0.000115697047, -0.0253205765, -0.0265731, 0.00145129766, -0.000159443196, -0.0318533368, 0.0322217233, -0.00466318568, 0.00664941454, -0.025590729, 0.00399087649, -0.00286268652, 0.0484308228, 0.00301157683, 0.0230979659, 0.0140478853, -0.0131760323, -0.00846679788, 0.0214893352, 0.0169581566, 0.0123410188, 0.0057192333, 0.0057345829, 0.00818436686, -0.00448820135, 0.00805543084, 0.0248539522, -0.0198807046, 0.00170840218, 0.0324673168, 0.00147815933, 0.00983597618, 0.0307481699, 0.00731865363, -0.00284733693, 0.00263704848, -0.00879834779, 0.0287097525, 0.027285317, 0.00969476067, -0.0140970042, 0.00196013437, -0.0240189377, 0.000394482806, 0.021563014, -0.000189950384, 0.0118866721, 0.00614595, -0.0217717662, -0.0164669715, -0.00731865363, -0.0195737146, -0.00335540622, -0.0250013079, -0.0280957706, -0.0139864879, -0.0289553441, -0.0106955497, 0.0279729757, -0.00347513263, -0.00622883765, 0.0123839974, -0.018505387, 0.00583281973, 0.00634242408, 0.00413209246, -0.0274817906, -0.00264318823, 0.0138636911, 0.0154232029, 0.026131032, 0.000755580375, 0.0125866113, -0.0217103697, -0.00141983107, 0.0172037482, -0.00889044534, -0.00806771, -0.0188983362, 0.0221033171, -0.0509358644, -0.00533242524, 0.0148583408, 0.015914388, -0.0177686103, 0.0107385283, 0.0353898667, -0.025590729, -0.00302539137, 0.00311441883, -0.00644680066, -0.0290044639, 0.00528023671, -0.0322462842, 0.0290044639, -0.000308333605, -0.010781507, -0.000983137, -0.0143057574, 0.00156718655, 0.00857731514, -0.00631786464, -0.00373300468, -0.0163441747, -0.000781290873, 0.0190702509, 0.00817208737, -0.00227633468, -0.00579905091, -0.0156687964, 0.0313130319, 0.0241662934, 0.0191930458, 0.0169090368, 0.0239943787, -0.00105067506, -0.0325409956, -0.0151653308, -0.022201553, -0.0029056652, -0.0105420537, 0.00516665028, -0.00448820135, 0.0151407719, -0.000816594751, 0.00255416101, 0.0105788931, 0.0249767471, -0.016196819, 0.00183119834, 0.00641610147, 0.0433961786, -0.0038066823, 0.0299131554, -0.0354144238, -0.0153004071, 0.00790193584, 0.00586351892, -0.00388343, -0.0108551849, 0.0298885964, -0.0107508078, 0.0160126258, -0.00747828884, 0.0097745778, 0.0149688572, -0.00598631473, 0.0389509574, 0.00650205882, 0.0131637529, -0.0438873619, 0.0205315258, -0.00381282205, 0.0032817286, -0.0256889667, -0.0396631733, -0.0184685495, 0.0236259904, 0.015963506, -0.00987895485, -0.00224410067, 0.00685816817, 0.00979913678, 0.00860187411, 0.00293175946, -0.0292500556, 0.0151898907, -0.0222875103, 0.027285317, -0.0288325492, 0.00775458, -0.0322954021, 0.00526488712, 0.0234909132, -0.00945530739, -0.027899297, -0.0167125631, 0.0099464925, -0.0239943787, 0.0165160894, 0.00830102339, 0.0467607938, -0.0283904821, 0.00213511894, 0.00672923215, 0.0206543207, -0.00160709536, 0.00545829115, 0.0175721366, -0.00415972155, 0.0166511647, 0.0367897414, -0.00771774119, -0.00330628781, 0.035782814, 0.0345057324, 0.00825190451, 0.0177194923, -0.0141461231, 0.0131514734, 0.00917287637, -0.00315893232, -0.0171914678, 0.00720813731, -0.0175966956, -0.00853433646, 0.00395096792, -0.0117577361, 0.0302078668, -0.0120524475, 0.0234909132, -0.0192790031, 0.0326883495, -0.00589421764, 0.00867555197, -0.0188983362, -0.00364090735, -0.01196035, -0.00160556042, 0.0402280353, -0.00879834779, -0.0341864638, 0.0066248551, -0.0173511039, 0.00951670576, -0.0329585, 0.0018649674, 0.00522804819, -0.00470923446, -0.0147355441, -0.00839312095, -0.0150179761, -0.00472765369, -0.00705464184, -0.0128936013, 0.0186895821, -0.0151162129, 0.0167248435, 0.0123962769, 0.00524953753, 0.00746600935, -0.00364090735, 0.0517708808, 0.0122489212, 0.0133725069, 0.00897640269, -0.00333084702, -0.0302569848, -0.0280466527, -0.02330672, 0.0162827764, 0.0265239794, 0.021563014, 0.0133233881, -0.0192053262, 0.0281694494, 0.00691956608, -0.023896141, 0.00470002461, -0.0025771854, -0.0269660465, -0.0156073971, -0.00879834779, -0.016221378, 0.0168844778, -0.00119035575, -0.00841768, 0.0187878199, 0.00650205882, 0.00883518718, 0.011677919, -0.017940525, -0.0242399704, -0.00914217718, -0.0136917764, -0.0233926773, -0.00228400948, 0.004825891, -0.00982983597, 0.00321112084, 0.0136180986, 0.00636698306, 0.00226559, -0.00100999873, 0.017915966, 0.0209121928, 0.0202982128, 0.00419656048, -0.012783085, 0.0153986439, -0.00485045, -0.0115612624, 0.0108797438, -0.0131760323, 0.00711604, -0.00219651707, 0.016503809, -0.0114446059, 0.0136058191, 0.0115182837, -0.017584417, -0.0121813836, 0.0150916539, -0.00116426148, 0.00151116075, -0.0110086799, -0.019610554, -0.0084422389, 0.0132619897, -0.000484661257, -0.00665555429, -0.0287834294, 0.00731865363, -0.0189106148, 0.0292500556, 0.00503157452, 0.0280712117, -0.00648363959, -0.00216274825, 0.0146373073, -0.0250013079, -0.00677221082, 0.0172405876, 0.0116656395, 0.0157179143, 0.000283390604, -0.0205069669, -0.00855889544, -0.0024129455, -0.00641610147, 0.008650993, 0.0317550972, 0.0137531748, 0.028415041, 0.00345057342, 0.000251732214, -0.00909305923, 0.0167862419, -0.00613981, 0.00305762538, -0.00935093127, -0.00583895948, -0.0118866721, -0.0232330412, 0.0113893477, -0.00364704733, -0.0171300713, 0.00309599936, -0.000157044837, -0.0123532983, 0.0106832702, 0.00177901, 0.008804488, -0.000422111945, 0.00293022441, -0.00736163231, 0.00598631473, -0.00287036132, -0.0116226608, 0.0118682534, -0.0125559121, -0.0106157316, 0.000310060423, -0.00345671317, -0.00929567218, -0.0139742084, 0.00691342633, -0.00759494537, 0.00472765369, 0.0214524977, 0.0140601657, -0.0214770567, -0.00385273085, 0.0171177909, -0.0057192333, 0.00688886689, 0.00418735063, 0.0138759706, -0.00354574039, -0.00010197841, -0.0189965721, -0.00520962896, -0.00660643587, -0.0064775, 0.00494254706, 0.00478291232, -0.0215016156, -0.0114507461, -0.00889658462, -0.00952898525, 0.0217840467, 0.0376001969, 0.0145881893, 0.0338917524, -0.00703008287, -0.00157025643, -0.0240312163, 0.000453962217, 0.00946758687, -0.00804929156, 0.0271625202, -0.0259345584, -0.011935791, -0.00622269744, 0.00818436686, 0.0121813836, -0.000748289342, -0.0020368821, -0.00613674, 0.00267235236, -0.00506534334, 0.0187141411, -0.00729409466, 0.0149811367, 0.0197701883, 0.0162582174, -0.0174493399, -0.00748442858, -0.0194018, -0.0113954879, 0.0222261138, -0.0135812601, 0.0169949941, 0.0152635677, 0.0336707197, -0.00362248812, 0.00372072496, -0.00965178199, 0.0103210211, -0.00521269906, 0.0210841075, 0.00912375841, -0.0334742442, -0.00950442627, -0.0306990501, -0.0172037482, 0.0202368144, -0.0141584026, 0.0183825921, 0.00756424619, 0.0132742692, 0.0379931442, -0.00116042409, -0.00531400554, -0.0319024548, -0.00761950435, -0.00252806675, 0.0102350637, -0.0259345584, 0.0112849707, 0.00524032814, 0.00174677605, 0.0236873869, 0.0170809515, 0.00559643703, -0.0314112678, -0.0109657012, -0.00594026642, -0.0358073749, 0.0016009555, 0.0136180986, -0.0270397235, -0.00526795723, -0.0167125631, -0.0130163981, 0.0169704352, 0.000302769389, -0.0312147941, -0.0129181603, -0.00303920615, 0.00305609056, 0.00359178893, -0.00767476251, -0.0236014295, 0.00238685124, 0.00801245216, 0.00188185181, -0.0170686729, -0.0144531131, -0.0106402915, 0.0077852793, 0.0172651466, -0.00585737871, 0.0125559121, -0.0057345829, -0.00320498087, 0.00350276171, -0.00811682921, -0.018198397, 0.0127216866, -0.00263397861, -0.0057959808, -0.0109165823, -0.0160985831, -0.00178054499, -0.00115121435, 0.0306990501, 0.00360406865, -0.013630379, 0.00860187411, 0.010652571, 0.00631172489, -0.00376063376, 0.000465858087, -0.0114753051, -0.0174370613, -0.00667397352, 0.0260573551, -0.0128936013, -0.000308717339, 0.00685202796, 0.00671695219, 0.00414130185, 0.0113402298, -0.00179435953, 0.00867555197, 0.00201692758, -0.00102688326, -0.0162704978, 0.0226681791, -0.00493640732, -0.00858345442, 0.00848521758, 0.00763792405, -0.00737391226, 0.00776686, 0.024178572, 0.00708534103, -0.00156334916, 0.00557494769, 0.0201631375, -0.0175107382, 0.012525213, 0.00146434468, 0.0042303293, -0.0084054, 0.000548361801, 0.0118007148, -0.000489649887, -0.00183119834, 0.00887816586, -0.00399087649, -0.0192790031, -0.0075519667, -0.00650819903, -0.0209735911, 0.00446671201, 0.00889044534, -0.0165529288, 0.000120685647, 0.0114507461, 0.002521927, 0.0173879433, -0.0209490322, -0.00564248534, -0.0148337819, 0.0181861185, -0.0115796821, -0.0108736036, -0.0113832084, 0.0113954879, -0.0199789423, 0.0127708055, -0.0166266058, -0.0213788189, -0.0221647155, 0.0176580939, 0.00788351614, 0.0260819141, -0.00528023671, 0.0131883118, -0.0117086181, 0.0117577361, 0.0110025397, -0.0171914678, -0.00606920244, 0.0165406484, -0.0186650231, -0.00238838606, -0.00322033046, 0.0115182837, -0.0100508695, -0.00462941686, -0.0180142038, -1.09605207e-05, -0.00453424966, -0.00435926532, 0.0311902352, -0.00267081754, 0.0112972511, -0.0139864879, -0.0262538288, 0.00138836459, 0.0091176182, 0.00834400207, -0.0287097525, -0.00729409466, -0.0183211938, -0.00454039, -0.00680290954, -0.00680290954, -0.00580826029, -0.00171607698, -0.00308525469, -0.00497324625, -0.00765634328, 0.00147585687, -0.0175107382, 0.0133356676, -0.0110946372, -0.00103993039, -0.013090075, 0.0139864879, -0.0134707438, 0.015067094, 0.00339224515, 0.00520041911, -0.000742149539, -0.00918515585, -0.0358073749, 0.0226804595, 0.00749670807, 0.00563020585, -0.0225822218, -0.0125374924, -0.00086801569, -0.00860801432, 0.00725725573, -0.0054982, -0.0229751691, 0.00725111598, -0.00489342865, -0.0288816672, -0.00236229203, -0.0197456293, 0.00102688326, 0.00754582696, -0.000887970033, 0.00696868449, 0.0181001611, -0.0154477628, 0.0177686103, 0.00701166317, 0.0234172363, 0.00108751387, -0.00749670807, 0.00118037849, 0.00754582696, -0.00600166433, -0.00491491798, 0.0113156699, 0.000818897213, 0.00919743534, -0.00661871536, -0.00537847355, 0.0130777955, -0.00151269569, 0.0176703744, 0.000815827283, 0.00201232289, -0.00162244483, -0.00384352123, -0.0100999875, -0.00981141627, 0.0248662308, -0.00382817164, -0.000618969614, -0.00943688862, 0.0302078668, 0.011677919, -0.00504692411, 0.0436172113, -0.00484124, -0.0125067933, -0.00221493654, 0.00849749707, -0.016503809, -0.00381282205, -0.0129058808, -0.0118007148, -0.0048074713, -0.0143548762, -0.0132374307, -0.0167616811, -0.0335724838, 0.00139987667, 0.0107139684, 0.00570695335, -0.0261064731, 0.0087676486, 0.00803701114, 0.00675379112, 0.0251977816, 0.00912375841, 0.0179896448, 0.0297658, -0.0141338427, -0.00135613058, -0.0185913444, -0.0233312789, -0.00420884, -0.00107600179, -0.00143057574, 0.0181492791, 0.014809222, 0.00117193628, 0.00050768553, 0.00263858354, 0.00742303068, -0.0119542107, -0.021919122, 0.000388343, 0.00697482424, -0.0105788931, 0.0280220937, -0.0114875846, 0.00939391, -0.0031865614, -0.00586044881, -0.025517052, -0.0245960802, 0.00314358273, -0.00727567496, -0.0115428427, 0.00108290906, 0.0101306867, -0.0205315258, 0.000666169391, -0.0148337819, -0.0136426585, -0.00322340033, 0.00622576755, 0.0167739615, -0.0040553445, -0.00748442858, -0.00157179136, -0.0042119096, 0.0105911726, 0.00580826029, -0.0178791266, -0.00616436964, 0.0372563675, 0.00812296849, -0.0122243622, 0.00749670807, 0.0117147574, -0.00196473929, 0.0035702996, 0.000604387547, -0.00414744159, 0.00525874738, -0.0294465292, -0.0128936013, 0.0143057574, 0.0105359145, -0.00718971761, -0.0207034405, -0.00767476251, 0.0115428427, 0.0125497719, -0.0127094071, -0.00734935282, -0.012807644, -0.000763255171, 0.0199789423, -0.0184194297, 0.00842381921, -0.0116840592, 0.00657573668, -0.0137531748, 0.0299377143, 0.0100570088, 0.00703008287, -0.0224962644, 0.029544767, -0.0077054617, -0.0263520647, 0.00666783378, -0.00454345951, 0.00646522036, 0.0118989525, 0.0113340896, -0.000583665678, -0.000243481845, -0.00806157105, 0.0157056339, 0.00682746898, -0.000526105, 0.0204087291, 0.00219037733, -0.0130286776, -0.00373914442, 0.00014351806, 0.00129473244, 0.0066432748, -0.00600166433, -0.00406762445, -0.0119542107, -0.0224348661, -0.00403999491, -0.0148706203, 0.00670467271, 0.0238838624, 0.014502232, -0.0268923678, -0.00266160769, -0.00392333884, 0.0284887198, 0.00102458079, 0.0111069167, -0.0188614968, 0.00655731745, -0.0135812601, 0.0122243622, 0.0250381455, -0.00335540622, 0.0053876834, -0.00119726302, -0.000958577846, 0.0122120827, 0.00501315482, 0.000371458504, -0.0305271354, 0.00279821851, -0.0191930458, -0.00500394544, -0.00315586245, 0.010830625, -0.00668625347, 0.00308832456, -0.0135198617, -0.0139496485, 0.00211823452, -0.0193649605, -0.00786509644, -0.0217717662, 0.0104315374, 0.0153249661, -0.00814138819, -0.0332040936, 0.000309868541, 0.0217349287, 0.00941846892, 0.00473379344, 0.0158407111, -0.0158161502, 0.0240803361, -0.0247065965, 0.0306253731, 0.0124883736, -0.0111560356, 0.0174247809, 0.00690728659, -0.0210349895, 0.0113095306, 0.0195123162, -0.00424874853, -0.00820892584, 0.00327251875, -0.010781507, 0.020482406, -0.00440531364, -0.0170932319, -0.00387115031, -0.00287343119, 0.00166542351, 0.0010368604, 0.00160402537, 0.0213174205, -0.0016132351, -0.00423646905, -0.00192329555, 0.0176949333, -0.00506841345, -0.000563711335, 0.0184194297, -0.00201385771, -0.0177194923, 0.0222383924, -0.0107446676, -0.00486272946, 0.00442987308, 0.00107062946, 0.00703008287, 0.0110332388, -0.00416893093, 0.00768704247, -0.0133602265, 0.000622807, -0.00839312095, -0.00909305923, -0.0151407719, 0.00621348806, -0.011241992, -0.0104990751, 0.00236382685, 0.0236259904, -0.0141829615, 0.00125175377, 0.00428558746, -0.0114691658, -0.00904394, 0.0100815687, 0.014809222, -0.00842995942, 0.022201553, 0.021563014, 0.037501961, -0.0126480088, -0.0199789423, -0.0304289, -0.0322462842, 0.00602008402, 0.0134093454, -0.00415972155, -0.0173879433, -0.00506841345, 0.00696868449, -0.00315893232, -0.00255876593, 0.00975001883, 0.00768090272, 0.00202613743, -0.00219958695, 0.0161599796, 0.0249767471, -0.0027414253, -0.00890886504, -0.000857271, -0.00412902236, -0.00758880563, 0.0025296018, -0.00879834779, -0.000879527826, -0.00519427937, -0.00837470125, 0.0106832702, -0.0191316493, 0.0164915305, 0.0268186908, -0.0110823577, -0.0031865614, 0.00911147799, -0.0225453824, -0.0118375542, -0.00136841019, 0.00366546679, 0.0298394784, 0.000806617551, -0.027850179, 0.00532628549, -0.0114139067, -0.0101429662, -0.0119971894, 0.00426102849, -0.00915445667, -0.0180387627, 0.0452135615, -0.0157424733, 0.0173388235, -0.0308218468, 0.0264994204, 0.0158775486, 0.0197579097, -0.0157179143, 0.0214524977, 0.00966406148, 0.0038220319, -0.0132005922, -0.00606613234, -0.00137301511, -0.00967634097, 0.0021458636, -0.00642224168, 0.0166143272, 0.0213297009, -0.00369923562, 0.00041865831, 0.0204455685, 0.0155091602, -0.0194631983, 0.0148951793, 0.0118866721, 0.0128813218, 0.0136672175, -0.0197701883, 0.00444829231, 0.00382817164, -0.017559858, 0.0171914678, -0.00353960064, 0.00822120626, 0.0285132788, 0.000664634455, -0.00121721742, 0.00531707564, 0.0211700648, 0.00079664035, -0.000366469932, -0.00409832317, -0.000202997471, 0.017633535, -0.015656516, -0.00700552342, -0.0306499321, -0.00253113685, -0.0114323264, -0.0146741467, 0.0280220937, -0.0152881276, -0.0123532983, 0.00920971483, 0.0231102463, -0.000627028116, -0.0146987056, -0.00254955608, -0.00345671317, 0.00578370132, 0.00703008287, -1.8767194e-05, 0.00650819903, 0.00451583043, 0.0140478853, -0.017559858, 0.00908691902, -0.0101245474, -0.00498552574, 0.0124760941, 0.00565783493, -0.00581747, 0.0113218101, -0.0158775486, -0.0114139067, -0.00130777957, 0.00582054025, -0.00885360595, 0.0146741467, 0.00271072611, 0.0121384049, 0.00431321654, -0.017559858, -0.013065516, 0.00260481448, -0.00535084447, -0.0130163981, 0.00345671317, 0.00709148077, -0.00208907039, 0.0420454219, -0.0150302555, -0.0171669088, 0.0174616203, 0.00884746667, 0.0257626437, -0.00857731514, 0.020150857, -0.011241992, -0.00838084053, 0.00411674287, 0.0266958941, -0.00539689325, 0.0102657629, -0.00898254197, -0.00693184556, 0.0188492164, -0.0302569848, -0.00804929156, 0.00294096908, -0.0052925162, 0.039221108, 0.00327251875, 0.00175291579, 0.00457722833, 0.0225453824, -0.0226927381, -0.0186281838, -0.0284396, 0.0142566394, -0.00924655423, -0.0226927381, -0.00213204906, 0.0133233881, 0.0107692275, 0.0115060043, 0.0023730367, 0.0228278134, 0.0350460373, 0.0246329177, -0.00551968953, -0.0055442485, 0.0178300086, 0.0179896448, -0.00875536911, 0.0215507336, -0.00340452464, -0.00170379737, 0.0117577361, 0.00328786834, -0.0118621131, 0.0191930458, -0.00905008055, -0.00720199756, 0.0225331038, -0.0116349403, 0.0310183205, -0.0151530514, 0.0151284924, 0.0457293056, 0.0272116382, 0.0143794352, -0.0226804595, 0.00653889775, 0.0167002846, -0.00363169773, 0.001472787, -0.0172774252, -0.00683974847, -0.0290290229, -0.0105727529, -0.0333268903, -0.0174493399, -0.00343522383, 0.00315893232, -0.0100754285, 0.016221378, 0.0200649, 0.00490263849, -0.011217433, 0.00251118233, 0.0248293933, -0.0160249043, 0.0215261746, 0.0142689189, 0.00819050707, -0.0127708055, -0.0135812601, -0.0159021076, 0.00642838143, -0.00547671085, -0.0269169286, -0.00709148077, 0.00583588937, 0.00773616089, -0.00473993365, 0.01391281, 0.0148215014, 0.00550740957, 0.0101552457, -0.0215998515, -0.00656345719, -0.0140970042, 0.0071283197, 0.000932483701, -0.0228155348, -0.0105052153, -0.0429049954, 0.0135075822, 0.000884132693, 0.00352425105, -0.0141706821, 0.0104131177, 0.0138022937, 0.00698710419, 0.00416586129, -0.0185913444, -0.0137040559, 0.008650993, 0.00839312095, 0.00822734553, 0.00672923215, -0.00850363728, 0.00794491451, 0.0297658, -0.00613060035, 0.0066432748, -0.0111867338, 0.0144899525, -0.00539689325, -0.0114753051, 0.012783085, -0.0104008382, -0.00975615811, -0.0145267909, 0.00650819903, -0.0281694494, 0.0163810141, -0.000228132325, 0.00965178199, 0.0172651466, -0.00215967814, -0.0019969733, -0.00669853296, 0.031828776, -0.0109902602, -0.00803087186, -0.0025771854, 0.00486886967, 0.0023653619, 0.000552582904, 0.0109841209, 0.00663713459, 0.00812296849, 0.0197824687, -0.00284273201, 0.00971317943, 0.00974387862, -0.00697482424, -0.0156073971, 0.00439610425, -0.00477677211, -0.00823348574, 0.0295938849, -0.00514823105, -0.00562406611, 0.0193526819, -0.0190948099, -0.0376738757, -0.00756424619, 0.00453424966, 0.0192912836, 0.00573151279, -0.0251732226, 0.00478598196, -0.023847023, -0.00773616089, -0.00985439494, 0.00424874853, -0.0119787697, 0.0174493399, 0.0165283699, -0.0237487853, -0.00768090272, 0.000685356325, 0.0128690423, 0.0118805328, -0.00617050938, 0.00583588937, 0.00519427937, -0.00517586, 0.00518813962, -0.0129181603, -0.0389509574, -0.0161599796, 0.00668625347, 0.00273989025, 0.00188952661, -0.0167248435, -0.00341066462, -0.00883518718, -0.00344750332, -0.00446978165, -0.000486196222, -0.0248416718, 0.00820892584, 0.00849135779, 0.00423339894, -0.00705464184, 0.0135444216, 0.0141338427, -0.0125620514, -0.00241601537, -0.00116656395, 0.000571386074, 0.0220787581, -0.0147232646, 0.0146495868, 0.00331242755, 0.0240066573, -0.00106218713, 0.00393561833, 0.0097745778, 0.000906389498, 0.0130532365, 0.0182966348, 0.00233159284, -0.0112911109, -0.0106709898, 0.0025296018, -0.0249399096, -0.00873081, 0.0133111086, 0.00295631867, -0.00995877199, -0.00675993087, -0.00501008518, 0.000141887183, 0.0144408336, -0.00388343, -0.00986053515, 0.0193526819, 0.0168722, -0.00619199872, 0.0177440513, -0.0160985831, -0.0102596227, -0.0513288118, 0.0110209594, -0.00900710188, -0.012807644, 0.0427085198, 0.00120800768, -0.0104560964, -0.0231716428, -0.00641610147, 0.0182597954, 0.00715901889, 0.00566397468, -0.0250258669, 0.0111744544, 0.00729409466, 0.000678065291, -0.0343583785, -0.0153004071, 0.00983597618, 0.0149074588, -0.00696254475, 0.00401543593, 0.0118498337, 0.00515130069, -0.00547671085, -0.00153265009, -0.0160371847, -0.00172375166, -0.0140356058, -0.0204701275, 0.00807999, -0.0247925539, 0.00180970901, 0.00137531746, 0.0214156583, -0.00580519065, 0.0193772409, 0.0138022937, -0.00416279119, -0.00419042027, 0.0411858484, -0.00104376778, -0.0300850701, -0.0156687964, -0.0184562691, 0.00746600935, 0.00407683384, 0.0212683026, 0.0139864879, -0.0157301929, 0.0221155956, -0.00354574039, -0.00588193815, -0.00873695, 0.0100508695, 0.0173511039, 0.0132128717, 0.00731251389, -0.00271686609, -0.0137531748, -0.0288816672, 0.020728, -0.0143057574, 0.00139603938, -0.0130041176, -0.0165897664, -0.0317305401, 0.0015932807, -0.0092526935, -0.00426409813, 0.0040584146, -0.000292024721, 0.00635470357, -0.00560564687, -0.00993421301, -0.00507455319, 0.00469388487, 0.0055626682, 0.00742303068, -0.0018250586, 0.0356354602, -0.031263914, -0.00191562076, 0.0245101228, 0.0020292073, 0.0149320187, 0.00671695219, 0.00279668346, -0.00905008055, -0.0163932927, -0.00326944888, -0.00505613349, -0.0146987056, -0.00740461098, -0.00176366046, 0.00550434, -0.0430523492, -0.015042535, -0.00196627411, -0.00396938715, -0.00196166942, -0.000291449105, 0.00348127238, -0.00874309, -0.00635470357, 0.000316967693, 0.0122366417, -0.00231470843, 0.00423953915, 0.00717743812, 0.00490570813, 0.0202859323, -0.006044643, -0.0233803969, 0.00137224759, -0.012758526, -0.00189106155, 0.0154846013, 0.00537540391, -0.0055595981, -0.00658801617, -0.0034935521, 0.00937549, -0.00897026248, 0.0125190727, 0.0196965113, 0.0370844528, -0.0117024779, 0.00537540391, -0.00416279119, 0.0182597954, -0.0120278886, -0.00475528277, -0.0135689806, 0.0033983849, 0.00619813846, -0.0150916539, 0.0232453216, -0.00661871536, 0.0135689806, -0.0410630517, 0.0104131177, 0.0170072746, -0.00760108512, -0.00536619406, 0.00650819903, 0.0092526935, 0.000608992414, 0.00787123665, -0.000802780211, 0.010112267, -0.0010606522, 0.00672309194, 0.0145513499, -0.00432856614, -0.0153126866, -0.0127339661, -0.0336461589, 0.00822120626, 0.0170072746, -0.0137286158, 0.0161477011, -0.00356415985, -0.00155644189, -0.00427330798, 0.0244978424, 0.00588193815, 0.0225822218, 0.00879220851, 0.0146127483, 0.0263029467, 0.00683360873, -0.0250135865, 0.0133847864, -0.00931409188, 0.0116349403, 0.0187018625, -0.0190825295, 0.0012885927, -0.0216244124, 0.0154723218, 0.00560871651, 0.00971932, 0.0327374674, -0.0160003453, 0.000147451385, -0.0043838243, 0.0207893979, -0.00191101595, 8.99386287e-05, 0.00451890053, 0.00443294318, 0.00638540275, 0.00265239808, 0.012500654, 0.0135567011, -0.021305142, 0.012193663, 0.00920971483, 0.008110689, 0.00532014575, -0.0159880649, -0.0107692275, -0.0336461589, -0.00530479616, 0.0118191345, 0.003690026, -0.00367467641, 0.00516051054, -0.0168353599, 0.00392026873, -0.0037667735, 0.0198193081, -0.0407437794, 0.00521883881, -0.00510525238, -0.00494254706, -0.00131468684, 0.0241662934, -0.00947372708, 0.00353346067, 0.0107630873, -0.0266958941, -0.0140601657, -0.00388343, 0.0129058808, -0.0184439905, -0.00511139212, -0.00656959694, 0.0213419795, -0.0184071511, -0.00307451, 0.00595561601, 0.00458336808, 0.00639768224, -0.0142443599, 0.0187878199, 0.00511446176, 0.000732172339, -0.00514209084, 0.00764406379, -0.0292500556, 0.000651971088, -0.0208753552, -0.00543680182, 0.000757115369, 0.013654938, 0.0245838, -0.0030146467, 0.0046355566, 0.0199789423, -0.0103333006, -0.00279975333, -0.0367406234, 0.00029298407, -0.00364397746, -0.0232944395, 0.0166880041, -0.0163932927, 0.0102964621, -0.00736777205, -0.0117515968, -0.0264503025, 0.00143518066, -0.00720813731, 0.00497017615, -0.0180510413, -0.00536312442, 0.0205069669, 0.0137286158, -0.00168691284, -0.00388036, -0.0113402298, 0.00484738033, -0.00787123665, 0.00928339269, 0.0104069784, 0.0146618672, 0.0125743309, 0.0191439278, -0.0208262354, 0.00243596965, -0.00696868449, -0.0132497102, -0.00268463208, 0.0183825921, -0.00446978165, -0.00303153135, -0.0156933554, 0.0165406484, -0.0144285541, -0.0206420422, -0.00150118361, 0.0103026014, 0.0060477131, 0.0130532365, -0.00963336229, 0.027899297, -0.000113586488, -0.0101184072, -0.00887816586, -0.0211823452, -0.00723883603, 0.0260573551, -0.0225699414, -0.0094614476, 0.007380052, 0.00903780106, -0.0117761558, -0.0125988908, -0.0160371847, 0.00554117886, 0.0196596719, -0.00392333884, -0.0252469, 0.00471844431, 0.0106894094, 0.00079971028, -0.0127339661, -0.00452811, 0.0520655923, 0.00884132646, 0.000504231895, 0.00157639629, -0.0184685495, -0.0130532365, 0.0267695729, -0.00949828606, -0.00709762052, -0.0270397235, 0.00792649481, -0.00660029612, -0.00127094076, 0.00687044766, -0.00617971877, -0.0104131177, 0.0185790658, 0.00834400207, 0.0127216866, -0.00633014413, -0.00126326596, 0.000504231895, 0.00682132924, 0.00935707055, 0.0111744544, 0.00986053515, -0.00273528555, -0.0119480705, 0.015914388, -0.0200526193, -0.00528944656, 0.00625953637, -0.0185422264, 0.0043254965, -0.0186650231, -0.0129058808, -0.013040957, 0.00839926, -0.0151530514, 0.00115428434, 0.00573151279, -0.00425488828, 0.00709148077, 0.0152512882, -0.0028657564, 0.00631172489, 0.00459257793, 0.0141461231, -0.0226190612, -5.4682685e-05, -0.00121031, -0.0269906055, -0.00789579563, 0.0116288, -0.0054644309, 0.0147969425, 0.00150348607, 0.00802473165, 0.0292009376, -0.00434084563, 0.0040584146, 0.000577142171, 0.0117945755, 0.00246359874, 0.0173879433, 0.0107753668, -0.00951670576, -0.0160617437, -0.00237457152, 0.00495175691, -0.0157056339, -0.012783085, 0.0110762175, 0.0242768098, -0.00270458637, -0.0142075205, 0.00966406148, 0.00107062946, -0.00164546911, 0.00709148077, 0.0103762792, -0.0229874495, 0.0065450375, -0.0250995439, 0.00340452464, -0.0296430029, -0.0190825295, -0.00323261018, -0.0107385283, 0.00139680679, -0.0201017391, 0.00852205697, 0.00801859237, -0.0117147574, 0.00549513, -0.025541611, -0.00130701205, 0.0135567011, -0.0281694494, 0.0346530899, 0.00512367161, -0.0077238814, 0.0194877572, -0.0131514734, -0.00749670807, -0.00227940455, -0.0289799049, 0.00432242639, -0.00628716545, 0.00166542351, -0.0054828506, -0.000934018637, 0.00362555799, 0.00763792405, -0.00313744298, -0.026155591, 0.00940004922, -0.0285869557, -0.00299162255, -0.00410139328, -0.0258117616, 0.0211946256, 0.0192421656, -0.00841768, -0.0365687087, -0.0202490948, 0.0138759706, -0.0059678955, 0.00238838606, -0.0143548762, -0.0233312789, -0.0242890883, -0.0124822343, 0.0142934779, 0.00238838606, 0.00126787077, -0.00345364329, -0.00790807512, 0.0245715212, -0.0108920233, 0.00812296849, -0.00747828884, -0.00362248812, -0.00623804703, 0.00911147799, 0.00726953521, -0.0263029467, -0.0141338427, -0.0199789423, 0.0116288, -0.00290259533, 0.00504692411, -0.0110700782, 0.022176994, 0.00796333421, 0.0163932927, -0.0110271, 0.0140356058, -0.00242829486, 0.0107569471, 0.00583895948, 0.008650993, -0.00619199872, 0.0152635677, -0.0399087667, -0.000248278579, 0.0123655777, 0.00243903953, 0.0126357293, -0.00131698931, 0.0177686103, -0.0097745778, 0.0100263096, 0.00759494537, 0.00760722486, -0.0039755269, -0.0123410188, -0.0101061277, -0.0150793735, -0.0131391939, -0.00211669947, 0.0173142646, 0.0141829615, 0.00856503565, -0.0383615345, -0.0195245966, 0.000498859561, 0.0068765874, 0.00879834779, 0.000353039097, 0.0179282464, -0.0142689189, -0.000775151, 0.019635113, 0.0147723835, 0.0345794111, -0.0203964487, -0.0142689189, -0.0127708055, 0.00742303068, -0.0193404015, 0.0324182, 0.0158407111, 0.012500654, 0.00683974847, 0.00659415592, 0.0116656395, -0.00575300213, 0.00169919245, -0.0127339661]
|
29 Aug, 2018
|
array get() function in C++ STL
29 Aug, 2018
The array::get() is a built-in function in C++ STL which returns a reference to the i-th element of the array container.
Syntax:
get(array_name)
Parameters: The function accepts two mandatory parameters which are described below.
i – position of an element in the array, with 0 as the position of the first element.
arr_name – an array container.
Return Value: The function returns a reference to the element at the specified position in the array
Time complexity: O(1)
Below programs illustrate the above function:
Program 1:
// CPP program to demonstrate the // array::get() function #include <bits/stdc++.h> using namespace std; int main() { // array initialisation array<int, 3> arr = { 10, 20, 30 }; // function call cout << "arr[0] = " << get<0>(arr) << "\n"; cout << "arr[1] = " << get<1>(arr) << "\n"; cout << "arr[2] = " << get<2>(arr) << "\n"; return 0; }
Output:
arr[0] = 10
arr[1] = 20
arr[2] = 30
Program 2:
// CPP program to demonstrate the // array::get() function #include <bits/stdc++.h> using namespace std; int main() { // array initialisation array<char, 3> arr = { 'a', 'b', 'c' }; // function call cout << "arr[0] = " << get<0>(arr) << "\n"; cout << "arr[1] = " << get<1>(arr) << "\n"; cout << "arr[2] = " << get<2>(arr) << "\n"; return 0; }
Output:
arr[0] = a
arr[1] = b
arr[2] = c
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/array get() function in C++ STL
|
https://www.geeksforgeeks.org/array-get-function-in-c-stl/?ref=lbp
|
Pandas
|
array get() function in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, array get() function in C++ STL, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0268899128, 0.0240543373, 0.00108436763, 0.000765590579, 0.00275747781, -0.0267937928, -0.0177944414, 0.0218435489, -0.00301279966, -0.0324649438, -0.0431103706, -0.00516951969, 0.035444703, -0.0117868651, 0.0163766537, 0.00337926182, -0.0262170639, 0.0151991686, -0.0213749576, -0.0184672903, -0.0135530932, 0.0116246613, -0.0446002483, 0.00215972378, -0.0119190319, 0.0154875331, -0.00525662955, -0.00425636815, -0.0513287336, -0.0247512162, 0.0301340055, 0.0415243693, -0.00270791515, -0.041740641, -0.00363158016, -0.000284984417, -0.0179386232, -0.00129763654, -0.0286441259, -0.0281635188, 0.0389050655, -0.021771457, 0.0268658828, 0.00244958932, 0.000913151656, 0.0368144289, 0.0103270244, 0.0144542297, -0.0112642059, 0.0134689873, 0.0110899862, 0.00246911403, 0.0266255792, 0.0286200959, 0.0357811265, 0.0115766, -0.0138895176, 0.0227446854, -0.044696372, -0.0740133449, -0.00584236812, -0.0140937753, 0.0413561575, -0.0418848246, -0.0203416552, -0.0187316239, -0.0326571874, 0.0489016734, 0.0216633212, 0.00468290597, -0.0140817594, 0.0162324719, 0.00769570563, 0.0303022172, -0.0278030653, -0.0263372157, 0.0078879483, 0.0107715847, 0.00711897854, 0.0370066725, -0.0412360057, 0.0263612457, 0.0179987, 0.00478803879, 0.0184793063, -0.000468215498, -0.0152952904, -0.0296293683, 0.0051575047, 0.0320083685, -0.0345555805, 0.064016737, -0.0213989876, 0.0175781697, 0.0159921683, 0.0152352145, 0.0220117606, 0.0128321834, -0.0330416709, 0.06344001, 0.0204137452, 0.01056132, -0.0257845186, -0.00596252, 0.00939585, -0.00209664437, 0.0170615185, 0.0176262297, 0.0131565928, -0.00900535751, 0.00875303894, -0.00881311484, 0.0119731007, 0.0351323076, -0.0106754638, 0.0129523352, 0.0275387317, -0.0339307934, 0.0244027767, -0.0158119425, -0.00795403123, 0.0201133676, 0.0128922593, -0.0131085319, -0.0220838524, 0.00898733456, 0.0404430069, 0.0202815793, 0.0169293508, -0.0162565019, -0.0090774484, -0.0218315329, 0.0196207445, -0.0174940638, 0.0100506758, 0.0163285937, 0.0117087672, 0.00274095684, 0.0135170473, -0.00895129, -0.0692553446, -0.0327533074, 0.0153793963, -0.00603761477, -0.0165568814, -0.0302781872, 0.00408815593, 0.0335943699, -0.0320564285, -0.000231103972, -0.0127000175, -0.0100927288, 0.023609776, -0.0319603086, 0.0386407338, 0.00187586586, 0.0195366386, -0.0052265916, 0.00913752429, -0.0299177319, 0.00709494809, 0.0048391032, -0.0242946409, -0.0131565928, 0.00457476964, 0.0424134918, 0.0337145217, -0.0307587925, -0.0582494624, 0.0165809114, 0.0157038048, 0.0583455861, 0.0319122486, 0.00695677381, -0.0393135808, -0.0345796123, 0.0435429141, 0.0188878216, 0.00773175107, -0.000802762457, -0.00976831932, 0.00132542162, 0.0243066549, -0.00311793224, 0.00104682019, -0.0070288647, 0.0096421605, -0.0432545505, 0.0637764335, 0.00463784905, -0.00735928165, 0.0426057354, 0.0280433688, 0.0176022, 0.0151150627, 0.0144422147, -0.0258566104, -0.0393135808, 0.00188487722, 0.0387608856, 0.0106033729, -0.00374572398, 0.00296473899, -0.0270100646, 0.0383764, 0.0129162902, -0.00206660642, -0.00107986189, 0.00275147, 0.026721701, 0.0224322919, 0.0261690039, -0.0311192479, -0.0121833654, 0.0180948209, 0.0164847896, -0.0106514338, -0.00199151156, -0.000880860956, -0.0221319124, -0.0148266992, 0.0054158303, 0.035444703, -0.031671945, -0.0179746691, -0.0252558514, -0.0243427, -0.00293620303, -0.0126519566, -0.044239793, -0.0295092165, 0.00989447907, -0.0314316414, -0.00992451701, 0.0216993671, -0.0399383716, -0.0248953979, -0.0153073054, -0.00528066, 0.0239221696, 0.00470994, 0.0405151, -0.00892125163, 0.0087590469, 0.0273705199, 0.0457056426, -0.0363338254, -0.0159080625, -0.0332098827, -0.00153718865, 0.0253519733, -0.00366462185, 0.0289324895, 0.0116546992, 0.0188878216, -0.00317500439, -0.00620582653, -0.0185033362, 0.0295092165, 0.012459714, 0.0012615911, 0.0440715812, -0.00908946339, 0.0137933958, 0.0240543373, 0.0115345474, 0.0237058979, -0.029196823, -0.0415964611, -0.0424375199, -0.00995455496, -0.00984641816, 0.00384785281, -0.0333060063, 0.00934178196, 0.0347237922, -0.0329695791, 0.026096914, 0.0115105165, -0.00632597832, 0.000578229257, -0.0195726845, 0.00365260663, 0.0396980681, 0.05104037, -0.0225644577, 0.000892125128, -0.0259046704, 0.005593054, 0.0182630327, -0.00125858735, -0.019236261, 0.00340929977, 0.0165568814, 0.0274666399, 0.0309510343, -0.002171739, -0.0336424299, -0.00107760902, -0.00649419054, 0.0274906717, -0.0286921859, -0.0514248572, -0.011792873, -0.010543297, -0.0243907608, 0.0226605795, -0.0290045794, 0.0310231261, -0.0314316414, 0.0137813808, -0.0298216101, -0.0298456401, -0.00815228187, -0.00234595872, -0.00536176236, -0.0134329414, 0.0364059135, -0.0185033362, -0.0332579426, -0.0271302164, 0.00106259016, 0.0121413125, 0.00823638774, 0.0247271862, 0.0342672169, 0.0249434579, 0.00987645611, -0.00167311006, -0.0324168839, -0.014310048, 0.0317440368, -0.0534434021, 0.0110839792, -0.00352043984, -0.0100326529, -0.0501272194, -0.010579343, 0.0309510343, -0.0011181602, 0.017373912, 0.0272263382, -0.0121353045, 0.0100867208, -0.0021462068, -0.0243186709, 0.00251417095, -0.011234168, 0.0103029944, -0.0257124286, 0.000479479728, 0.00777380401, 0.0107535627, -0.0202815793, 0.0185754262, -0.0246791244, 0.00133067823, -0.0360454619, -0.00754551636, 0.0227927454, 0.0384725221, 0.052866675, -0.00958809257, -0.00263732625, 0.0115645854, -0.0491660088, -0.0206180029, -0.0199091099, 0.0312634297, -0.0345796123, -0.0216152612, 0.00745540252, 0.0108556915, -0.00296924473, -0.00991850905, -0.00205759495, 0.00848269835, 0.00111665833, -0.0151631236, 0.0174580179, -0.0111380471, 0.00881311484, -0.0363578536, -0.0182750486, -0.0153914113, 0.000776479312, -0.0260488521, 0.0233814884, 0.0295572765, 0.0316479132, -0.0531550385, 0.0088011, 0.0258806404, -0.0523860678, 0.0215551853, -0.0098884711, -0.0174940638, -0.0313355215, 0.00887919869, -0.0207261387, -0.0104832212, 0.00249464624, 0.0398182198, 0.00500130747, 0.00223932415, -0.000991250155, -0.0171095785, -0.0219757147, 0.0162084419, 0.0283557624, 0.0187196098, -0.011198123, 0.000393120805, -0.0248233061, 0.0405151, -0.0251357015, -0.0297014583, 0.0557503104, 0.0331618227, -0.00455073919, -0.0184432603, -0.00318701938, -0.044191733, 0.0317680649, 0.0319843367, 0.018082805, -0.00472796289, 0.00677654659, -0.0289565194, -0.0343873687, -0.0367663689, 0.0286441259, 0.0186835639, 0.0449126437, 0.00442157639, 0.000713399728, 0.0480606146, -0.00690270541, -0.0364059135, -0.0339067616, 0.00938984193, 0.0617098287, 0.0343152769, -0.0322246403, 0.0273705199, 0.0350361876, -0.0169413667, 0.0481807664, 0.0166890472, 0.00672848569, -0.0196087305, 0.0200653058, 0.0351323076, 0.0222520642, 0.0322967321, -0.0026989039, 0.00259527308, -0.00138024078, 0.0180707909, 0.0104712062, 0.00383884157, -0.0190920793, 0.027995307, -0.00628392538, -0.0182990786, 0.0184432603, 0.0309510343, -0.0193684269, 0.00321705732, -0.012483744, -0.0135050323, -0.0562789775, 0.022348186, 0.00398602709, 0.0308549143, -0.0182149727, -0.0191040933, -0.0415243693, -0.039794188, -0.0139736235, 0.04224528, -0.0133968964, -0.0299177319, -0.0153073054, -0.017986685, -0.0435669459, 0.0146705024, -0.0240062773, 0.00138099166, -0.011804888, -0.0144782597, -0.0167130791, -0.0102369105, -0.0139856385, -0.0112822289, -0.00208012341, -0.0119430628, 0.0118289189, -0.0446242802, 0.0363578536, 0.0156557448, -0.0291247312, 0.0102188876, 0.0376554914, -0.00361055369, -0.0229729731, -0.0273705199, 0.030470429, -0.0240903832, 0.013072487, -0.00341831124, 0.0298456401, 0.0389050655, 0.00689069042, 0.00219126348, -0.023633806, 0.00670445571, -0.0157638807, -0.0390011892, -0.0231532, -0.0121232895, 0.0120752295, -0.0246070344, 0.0493101887, -0.00755753135, 0.00312093599, -0.00530168647, -0.0263612457, -0.0263372157, 0.0041031749, 0.00692673586, 0.011822911, -0.0311913379, 0.0120451916, -0.0196087305, 0.0051514972, -0.00429241359, 0.00432245154, -0.0212067459, 0.0144542297, 0.00352043984, 0.0349160358, 0.0187917, 0.0229369272, 0.00447564479, 0.036622189, -0.00806216802, -0.0230690949, -0.00681259204, 0.0265054274, 0.0140216844, -0.00590544799, -0.0106574409, 0.00238801166, -0.0138054108, 0.0128922593, -0.0119791077, -0.0219396707, -0.0254240651, -0.00601658784, -0.00934778899, 0.00833250862, 0.0272503681, 0.0299417619, 0.00893326662, -0.0236938819, 0.0217474271, 0.0476761274, -0.0035054211, 0.0369105525, 0.0181068368, -0.0294371266, 0.0382562466, 0.0193203669, 0.0194164887, 0.0391453691, 0.0128441993, -0.0100867208, -0.00321405358, -0.00419028476, -0.00157248322, -0.0221198965, 0.0462102816, -0.00955204666, -0.01368526, -0.00306086033, -0.00981037226, -0.00571320532, -0.0351803675, -0.0120812366, -0.0237900037, 0.0160762761, -0.0202695634, 0.0238020197, -0.00462883804, -0.0277550034, -0.0119550778, -0.0379198231, -0.00897532, 0.00223782239, 0.0137333199, 0.0209183823, 0.0100146299, 0.0054638912, 0.0189238656, 0.00226185261, 0.0200292598, 0.0104471762, -0.0197168663, 0.024270609, -0.0357330665, 0.0247271862, 0.0208102465, -0.0165088214, 0.000670971232, 0.00739532709, -0.0219637, 0.0270581245, 0.00681259204, 0.0258806404, 0.0127240475, 0.00180828059, -0.0233694725, -0.00383583782, 0.0224443059, 0.0359012783, -0.0287883077, -0.00616377359, 0.00356850051, -0.00992451701, 0.0205699429, -0.0229489431, -0.00680057658, -0.0160402302, 0.00771973608, 0.0057162093, -0.0271302164, 0.018647518, -0.0335222781, 0.0763202533, -0.0442878567, 0.0118649639, 0.000350504561, 0.036670249, -0.00361355743, -0.0164367296, -0.018082805, 0.00544286426, -0.02112264, -0.00955805462, -0.0157278366, 0.0195005946, -0.0147786383, -0.00524761807, 0.0181428809, -0.0160282142, 0.00836855453, 0.0307587925, 0.0263372157, 0.0179145932, -0.0307107326, -0.00401306106, -0.011846941, -0.0166890472, 0.00908345636, -0.00384184532, -0.0439033695, -0.0223121401, -0.0207982305, -0.00655426597, -0.0381361, 0.0182510186, -0.0236578379, -0.00489917863, 0.0293169748, -0.0122254184, -0.0226605795, 0.0477241874, 0.0159080625, 0.035396643, -0.0172057, 0.0162685178, -0.0121833654, -0.0173378661, 0.00823038, -0.035396643, -0.0131806228, -0.00705289515, 0.00603761477, -0.0271302164, -0.0444320366, 0.0111140171, -0.000645814522, 0.0105252741, -0.00726316031, -0.00112116395, 0.0271302164, -0.0149468509, -0.0339307934, -0.0283557624, 0.00937182, -0.0320804603, 0.00183080905, -0.0245229285, -0.0180707909, 0.0496466123, 0.00279202126, 0.035348583, -0.0413080975, -0.014298032, 0.0179386232, -0.0425576717, -0.0196688063, 0.0334742181, 0.00292719179, 0.0170134567, -0.0042803986, -0.00168963091, 0.0312153678, -0.0148507291, 0.00322306482, 0.025496155, -0.00125257974, 0.00238651, 0.0299177319, -0.0059805424, -0.0225644577, -0.0182269868, 0.0328254, 0.00681259204, -0.0308789443, -0.0123035172, 0.0138534717, 0.00557503104, -0.0177704114, -0.0135410782, 0.00794201624, -0.0256883986, -0.0221198965, -0.0108616985, 0.0120151537, -0.00637403876, -0.0318882167, 0.0351323076, -0.0457056426, 0.00787593331, 0.0172417443, -0.00835053157, -0.00501031894, 0.0319362767, -0.0104712062, 0.0159681384, 0.0274426099, 0.000977733, 0.0259287, -0.0315277614, 0.0220598225, -0.0150189418, 0.0103991153, 0.029220853, 0.0563751, 0.00144932792, 0.00190590369, 0.0382802784, -0.0346997641, -0.0284518823, -0.00647616759, 0.000958959456, 0.0116066383, 0.00576426974, 0.000383546227, 0.0137933958, 0.0127360625, 0.00145458453, -0.00413020886, 0.00731722824, 0.0165448654, 0.00015478897, 0.00468591, 0.00827243272, -0.00546689471, 0.039746128, -0.00395298563, 0.0185874421, 0.00171366124, -0.0219516847, 0.0525783114, 0.00605864124, 0.0127961384, -0.00599255785, -0.0133488355, 0.0136612291, -0.00450568274, 0.0175180938, 0.0013975125, -0.00420530373, -0.0284038223, -0.0125438198, 0.0241985191, -0.0115645854, 0.0168933049, -0.0228408072, 0.00687266793, 0.00580932666, 0.0114624565, -0.0225884877, -0.00871699397, 0.0177343655, 0.0449366719, 0.0121172825, -0.0339548253, 0.0120932516, 6.86177882e-05, 0.0177343655, -0.0281394888, 0.0150309568, -0.0275387317, -0.0158239566, 0.0195126086, 0.0100626908, 0.0243427, -0.0120511986, 0.00483309524, 0.0162925478, -0.00815228187, 0.0238260496, 0.0352764912, 0.0169774126, 0.0314797, -0.0382562466, -0.018623488, 0.00553598208, 0.0140577294, 0.0115645854, -0.0254000351, -0.000512145925, 0.0116366763, 0.0287402477, 0.0004907439, 0.0244868826, 0.00181128434, 0.0116366763, -0.0427739471, -0.00239401939, -0.0227807313, 0.0145022897, 0.0278511252, 0.010543297, -0.00914953928, 0.0300138537, -0.0089693116, 0.0183110945, -0.0223001242, 0.0129523352, 0.0246310644, 0.0236818679, -0.0443839766, -0.0377035514, 0.000396875548, 0.00328314072, 0.0297495201, 0.0127120325, 0.00281755347, 0.0116546992, 0.0263372157, 0.00756353885, -0.0175781697, 0.00257124286, 0.012435684, -0.0194405187, -0.0045327167, 0.00978634227, -0.0213028677, -0.0197168663, 0.0132527137, 0.0165809114, 0.00385686429, 0.00710696308, 0.000518529, -0.0236578379, 0.0392174609, -0.0222881101, 0.00300378841, -0.0166890472, 0.00388990599, -0.0161363501, 0.0100086229, -0.026745731, -0.00922763813, -0.0493582487, 0.0497907959, 0.0108797215, -0.00407914445, -0.0330897309, 0.0308308844, -0.00991250109, 0.000544436625, -0.00863889512, -0.0108616985, 0.000575976388, 0.0335463099, 0.0141298203, -0.00362557243, -0.0172777902, 0.0157879107, 0.0154755171, 0.0055870465, 0.0141298203, -0.00677654659, 0.0228287913, 0.0121413125, -0.00506138336, -0.02238423, -0.0250395797, -0.0227567013, 0.00185634114, 0.00675251614, -0.0380880348, 0.0171095785, -0.00249464624, -0.0256163068, 0.00692072837, 0.00200502877, 0.00357751199, -0.00518153468, -0.0352044, -0.0049953, -0.0175781697, -0.00237449468, -0.00407614093, 0.00262080529, 0.00410617888, 0.00724513736, 0.0197168663, -0.00681259204, 0.00158149458, -0.0290526412, -0.0522418879, -0.0456816144, -0.0187917, 0.0167971849, 0.0270100646, 0.0133608505, -0.0212908518, -0.0124957599, 0.027971277, -0.032849431, -0.00673449365, 0.00630795537, -0.0141057903, 0.00298576569, 0.0241144132, 0.00542183779, -0.0252318215, 0.00582734961, 0.0317680649, -0.0105312821, -0.0209664423, 0.00823038, 0.01492282, 0.0151871536, 0.0144542297, -0.00369465956, 0.0174820479, 0.0331858546, -0.000676978787, -0.00149964134, -0.0174099579, -0.0101528047, -0.0254240651, 0.0189118516, -0.011186108, 0.0150069268, 0.0330416709, -0.000417526579, 0.0210505482, 0.0170014426, -0.0120632136, 0.00711297058, 0.00677654659, 0.0222040042, 0.0193924569, 0.00887319073, 0.0200292598, 0.0256643668, 0.0109397974, -0.0152472295, 0.0213389117, 0.00338226557, 0.0136011532, -0.0370066725, -0.00111966208, -0.00263432227, -0.0264093075, 0.0142740021, 0.0157158207, -0.0176142156, -0.0214350335, -0.035348583, -0.0293410048, -0.0340749733, 0.00596252, -0.0106153879, 0.0302541554, -0.00116471888, 0.00486313319, 0.00126684771, 0.0505597666, -0.0195967145, -0.0138294417, -0.00296023348, -0.0232252907, 0.00704087969, 0.0198009722, 0.00693875086, 0.0291247312, -0.0340269133, -0.0315277614, 0.0244268067, 0.03616561, -0.023033049, -0.0122374333, -0.0104411682, 0.00950999372, -0.0111260321, 0.0135290623, 0.0313114896, 0.0131686078, 0.0281635188, 0.00184582791, -0.02109861, -0.00750346342, 0.0197408963, 0.0262170639, -0.0182269868, -0.0251597315, -0.00555100106, -0.0349640958, 0.0334982462, 0.0112581989, 0.00176472566, -0.00092591776, -0.00399503857, 0.0017226726, -0.00104982406, -0.0285239741, -0.000738181, -0.000383546227, -0.0132166687, 0.0303502772, 0.0107355397, -0.00323508, -0.0143460929, 0.0200653058, 0.0311673079, -0.00379979215, 0.00183231093, -0.0117448121, -0.0142740021, -0.00134194246, -0.00580031518, -0.00914353132, 0.0206300188, 0.0013659728, -0.00926368311, 0.0251837615, 0.0238020197, 0.0261690039, 0.0120451916, -0.00319302711, 0.00865091, -0.0129883811, -0.0119971307, -0.00191040942, 0.000886117574, 0.00442458037, 0.000587616116, 0.0126399416, 0.00214170106, -0.0128802443, -0.019897094, -0.022960959, -0.00875303894, 0.022984989, 0.026769761, -0.0270821564, 0.027995307, 0.0131565928, -0.00616377359, -0.0171936844, -0.0127360625, 0.0239582155, 0.0190920793, 0.00886117574, 0.0144061688, 0.00394097, -0.00194044726, 0.0345796123, -0.0100266458, 0.00209514238, -0.026096914, -0.00185784313, -0.0245109126, 0.0232733525, 0.0230690949, -0.00626590243, 0.025472125, -0.00997257698, 0.00925767608, -0.00129538367, 0.0199691858, 0.00595050491, 0.0129162902, 0.0291007012, -0.00598354638, 0.00627191, -0.00489617512, -0.02734649, 0.0176142156, -0.023633806, -0.00909547135, -0.0165448654, -0.0187196098, 0.011792873, -0.0429902188, -0.00830247067, 0.018599458, 0.0118709719, 0.00511545176, 0.0140697444, -0.0122614643, 0.00113393, 0.0215551853, 0.0205939729, 0.0181188509, 0.00218675798, -0.0013517047, -0.00113693392, 0.0125678508, -0.015547608, 0.02734649, 0.000704012869, -0.0281154588, 0.00924566, -0.0164607596, -0.023621792, 0.0134209264, -0.00583636062, -0.0153433513, 0.0196928363, 0.00853075925, -0.00829646364, -0.0177463815, -0.000852324942, -0.0131926388, 0.0218315329, 0.0119430628, -0.0148747601, -0.0009169064, -0.00716703897, 0.000219464288, -0.0172417443, 0.0238861255, -0.0284759142, -0.00950999372, 0.00113242818, 0.0139856385, -0.0112882368, 0.0101407897, 0.0298696719, 0.0193203669, -0.00546088722, 0.00487514865, -0.0213989876, 0.0114504416, -0.0364539735, 0.00242856285, 0.00482708775, 0.0179506391, 0.0076416377, 0.018599458, -0.000370029185, -0.0126159107, -0.0170374867, -0.00841060746, -0.0101888496, 0.019212231, -0.0122494493, 0.00506438734, -0.0126759866, 0.030446399, -0.00318401563, 0.0157158207, -0.00960611552, 0.026697671, 0.00487514865, -0.0154635021, -0.0103090014, -0.0158119425, 0.0108917365, -0.0184672903, 0.0340028852, -0.0325130038, -0.02109861, -0.0178425033, 1.24727621e-05, 0.00103405409, 0.00642810715, 0.0061457511, -0.00015488283, 0.00350842485, 0.000582734938, 0.00250966521, 0.00887919869, -0.00535275089, -0.0140697444, -0.0160762761, -0.00855478924, 0.00628993288, -0.0105252741, 0.00824239478, -0.00375473546, -0.000224533185, -0.0144542297, 0.0492621288, 0.0240423214, 0.0136011532, -0.0324168839, -0.0133728655, 0.00675251614, -0.0176622756, -0.0193203669, 0.00908345636, 0.00485412218, 0.0108436756, -0.0421731882, 0.0186835639, 0.04229334, 0.0150549868, 0.0114083877, 0.00203506649, -0.00729319826, -0.0115766, -0.00273344736, 0.00333720888, 0.000978484, 0.00791798625, -0.0260007922, -0.00482708775, -0.0261449739, 0.00177674077, -0.0115525704, -0.0544046126, 0.0353005193, -0.00211616885, -0.00630194787, -0.0308068525, 0.00481507275, -0.00480906526, 0.0387608856, 0.0072871903, 0.0122554563, -0.00580331916, -0.0212908518, 0.0207621846, -0.00490518613, 0.011780858, 0.00495625054, 0.0125918807, 0.00353245507, -0.00286861788, -0.0192002151, -0.00669244025, 0.0311673079, -0.00810422096, -0.00774977403, 0.0165088214, -0.00165658921, 0.00302481488, 0.0370787643, 0.0133248055, -0.0239221696, 0.0269620046, -0.0167971849, 0.00956406165, 0.01060938, 0.00893927366, -0.0218315329, 0.00545788324, -0.023033049, 0.013084502, 0.0244628526, 0.0145503506, 0.020461807, -0.0181548968, -0.0278270952, -0.0123035172, -0.00264183176, -0.00737730414, -0.0213629436, -0.0173378661, -0.0218555648, -0.0311192479, -0.0315998532, -0.0121713504, 0.0187796839, -0.0102909785, 0.0140697444, 0.000412269961, -0.0263372157, -0.00294521451, -0.00675852364, 0.00478503481, -0.00771372858, 0.00828444865, 0.0334982462, 0.0168692749, 0.0261930339, 0.00061652757, 0.00225884886, -0.0325610638, -0.0328734592, 0.0121773584, 0.0069687888, -0.00284909317, -0.0116006304, 0.00154995476, -0.0379438549, -0.0162565019, 0.00814026594, 0.00872900896, 0.0158239566, -0.000617278507, 0.020509867, -0.0419569165, -0.0235737301, 0.00374272023, -0.00546989869, 8.01988062e-06, -0.00966619048, -0.0100326529, 0.0120812366, -0.000361393293, -0.00213869731, 0.000520781789, -0.00661434187, 0.00338526955, -0.0117207821, 0.0100807138, -0.00893326662, -0.0131926388, -0.0044786483, 0.00559906149, 0.00483609922, 0.0200653058, -0.0114143956, -0.0212548058, 0.0214230176, 0.0363097936, 0.00322006107, 0.0128802443, -0.000807268138, -0.0233093984, -0.0204978511, -0.00877707, -0.0165208355, 0.000171309803, 0.00143581082, -0.00766566768, -0.000917657337, 0.00178124651, -0.00624187198, 0.0193564128, 0.00314797019, 0.0162204579, 0.000809520949, -0.00943790283, 0.0137813808, 0.0247512162, 0.0129162902, 0.0488055535, -0.0203176253, -0.00902338047, -0.00519355, 0.0134089114, -0.00668042526, -0.0202215035, 0.0157158207, -0.00878908485, -0.00905341841, -0.0162565019, 0.020509867, 0.0149828959, -0.0233814884, 0.0101047438, -0.00473697437, 0.00277249655, -0.0199571699, 0.00577027723, -0.0146224415, -0.000201629286, -0.0200773217, -0.018082805, 0.0163045637, 0.0185033362, 0.0166289713, -0.0158840325, -0.0220478065, -0.000806517142, -0.000425036036, 0.0191521551, 0.0161363501, -0.0101828426, 0.000745690428, -0.027923217, 0.0314076096, -0.0350361876, 0.00406712946, -0.0327292792, 0.0164127, 0.0276588835, 0.00899334252, -0.0271302164, 0.00628993288, 0.00653023599, -0.0185874421, 0.00622985698, -0.00977432728, 0.0172177143, 0.00889722072, 0.00331017468, 0.000707392173, 0.00797205418, -0.0140937753, 0.0057883, 0.0154394722, -0.024246579, 0.00713700103, 0.0312393978, -0.00838657748, 0.0137453359, 0.0244027767, 0.0373190679, 0.0335222781, 0.0114444336, -0.013096517, 0.0237539578, 0.000378665078, -0.0168212149, -0.0216633212, -0.0110118883, -0.0114143956, -0.0142259412, -0.00630194787, 0.00047910423, 0.00685464498, -0.000593999168, -0.000955204712, -0.0231171548, 0.0218555648, -0.00244658557, -0.00215672, -0.0190680493, 0.00455975067, -0.0256163068, 0.0102489255, 0.0619020686, -0.0146825174, -0.00715502398, 0.00765365269, -0.0351803675, 0.00898132753, -0.0324409157, -0.014934836, 0.00460480759, -0.000909396913, -0.0243306849, -0.0237539578, 0.00141929, 0.00191942079, -0.0247992761, -0.0305425189, 0.0209303964, -0.0122254184, 0.0121893734, -0.001007771, -0.00716103148, 0.0244508367, 0.0109037515, 0.0413321294, 0.0226365495, 0.0188998356, 0.0150790177, -0.00250966521, -0.059114553, -0.0340269133, -0.0154635021, 0.0114504416, 0.00104456744, 0.00661434187, 0.00718506193, -0.000738931936, 0.0183471385, 0.00696278131, -0.0227807313, 0.00638605421, -0.00586639857, -0.00736528914, 0.0264093075, 0.0117628351, 0.000127567138, 0.0269139428, 0.0104892291, -0.0167130791, 0.0159200784, 0.024871368, 0.00202305149, 0.0181669127, -0.00713099353, -0.011768843, -0.00773775857, -0.00944391079, -0.0101528047, -0.0100987367, 0.0119851157, -0.00158299645, 0.0240423214, 0.0272023063, -0.0128321834, -0.000278601365, -0.0133127896, 0.0263131857, 0.0221078824, 0.00359553471, -0.0049202051, -0.0117748501, 0.0107175168, -0.0166049413, -0.0242225491, 0.00614875462, -0.024871368, -0.00764764519, 0.00762962224, 0.0151991686, 0.0102188876, 0.0234415643, 0.000535049825, -0.00362857641, -0.0221319124, 0.00648217509, 0.0197408963, -0.00652422849, -0.0109518124, -0.0391453691, 0.000133762456, 0.0162204579, -0.0087710619, 0.00212818407, -0.0120271686, 0.00773175107, 0.00542484177, 0.0395058244, 0.00670445571, 0.0303022172, 0.000240115332, 0.00214921054, 0.0232252907, 0.00274846633, 0.00246911403, 0.000311643031, 0.00386287179, 0.0252798833, 0.0191761851, -0.0111140171, 0.00146659964, -0.0134449564, -0.00711297058, 0.019284321, 0.0135651082, 0.0264093075, 0.0374151878, -0.00754551636, 0.0235376861, -0.0208823364, 0.0392895527, -0.00375773921, 0.00465587201, -0.0170615185, -0.00628993288, -0.000694250572, 0.00401005754, 0.00902338047, 0.00419028476, 0.000311079843, -0.00664438, 0.0123395622, 0.0255922768, 0.000848570198, -0.00129988941, 0.0121232895, -0.0101648197, 0.00845266, -0.0207742, -0.00264934124, 0.00778581947, -0.00871699397, 0.0117448121, -0.000455824891, -0.00866893306, -0.00967219844, -0.000614274701, 0.0125318049, 0.00449066376, -0.00407013297, -0.00904741, 0.00474898936, 0.0263852775, 0.0126639716, -0.0145143056, 0.00588442152, 0.00188788096, -0.0207621846, -0.000855328748, 0.00779182697, -0.0108797215, -0.00785791, 0.00467689848, -0.0140336994, -0.000515900669, -0.00636202376, -0.0134569714, 0.0108196456, 0.0121292975, -0.00218075025, -0.00416925829, 0.0044846558, -0.025472125, 0.00675852364, 0.0320804603, 0.0202335175, 0.0261209439, 0.00383884157, 0.00768369064, -0.0168692749, -0.00893927366, 0.00747342547, 0.00356850051, 0.0218195189, -0.0346517041, -0.00110163935, -0.000420530356, -0.00314496644, 0.00823038, 0.0282356106, 0.0111801, -0.00903539546, 0.0112041309, 0.00511845527, -0.00418127328, -0.0119971307, 0.0134209264, 0.0167130791, 0.0064641526, -0.0183952, 0.0150549868, 0.00636803126, -0.00773775857, 0.023597762, -0.00790597126, 0.0061517586, -0.000753199914, 0.0173859261, 0.0161123201, 0.00016145363, -0.00669844821, -0.00570719782, -0.0148387142, 0.012483744, -0.00168362341, -0.0230570789, -0.00725114485, -0.0173498821, -0.00662635686, 0.0241023973, -0.0148266992, 0.00606765226, 0.0106153879, 0.0181068368, 0.00583636062, -0.0142019112, 0.00440055, -0.0325610638, -0.0143460929, -0.0029842637, -0.0222881101, -0.0199932158, 0.032344792, -0.0118829869, -0.00796003919, 0.00424134918, 0.00850072131, 0.0122915022, -0.0410918258, -0.00885516778, 0.0183231086, -0.030518489, -0.0191401392, 0.00194194913, -0.0282836705, 0.000379040546, 0.0108376686, -0.0103270244, 0.0284278523, -0.00336424285, -0.00388690201, -0.00704087969, -0.0100446679, -0.00406112196, 0.012423669, -0.00180227298, -0.0191281233, 0.0181428809, 0.00674050115, 0.0235256702, -0.0187676698, -0.0123996381, -0.00537978485, -0.00245409505, 0.00884916075, -0.0240062773, 0.0260728821, -0.00285810465, 0.000730296, 0.0139495926, 0.0011497, -0.00822437275, 0.00238801166, -0.00625989493, -0.004980281, -0.0154154422, -0.0209183823, 0.000979235, 0.000868094852, 0.0222280342, -0.011816903, -0.00560206547, 0.0217233971, 0.0182149727, 0.0174099579, -0.0200412758, 0.000317650614, 0.0013532067, -0.0287883077, 0.012447699, -0.0183711704, -0.0263612457, -0.00188487722, -0.00403108401, -0.00378777715, -0.00563510694, 0.0151511086, -0.0152472295, 0.00983440317, 0.0191040933, 0.0170975626, -0.02109861, 0.000865091046, -0.00995455496, 0.00378777715, -0.00687867543, -0.0033882733, -0.00165809121, -0.0103390394, 0.0089693116, -0.00113843579, 0.00650620554, -0.0057883, 0.00395298563, 0.0113362968, -0.00272443611, 0.0116486913, -0.00838056952, -0.00233544549, 0.00107836, 0.0116967522, 0.00969622843, -0.013096517, -0.0113362968, 0.00380279613, -0.0239822455, 4.71923304e-05, -0.0076416377, -0.0117207821, 0.00460180361, 0.0103570623, -0.0123395622, 0.00969622843, 0.0205218811, -0.000419779419, 0.00704087969, -0.00103630696, 0.00248713675, -0.0119250398, -0.0019900098, 0.00372169376, -0.000512145925, 0.000527540338, -0.00475199334, -0.0201854575, 0.00305335084, -0.016809199, -0.0174580179, -0.011174093, 0.00754551636, 0.00479705, 0.00413922034, -0.00535275089, 0.00275447383, -0.0122674713, -0.00580031518, 0.00373370899, 0.00242255535, 0.00116772274, 0.00528967148, -0.0155836539, 0.00449366728, -0.0170374867, -0.0132527137, 0.00801410712, -0.0111620771, -0.0138654867, -8.89403e-06, -0.00816429686, -0.0112461839, 0.0235256702, 0.00115420565, 0.00187586586, -0.0115946233, -0.0272023063, 0.000738556439, 0.0145503506, -0.0096421605, -0.0244027767, 0.00964816846, -0.0158720184, 0.00720909191, 0.00564111443, -0.00985843316, 0.0072751753, 0.00423834519, -0.0128201684, -0.0112521909, -0.0114744715, -0.0229008831, -0.0167250931, 0.0163045637, -0.01368526, -0.00178124651, -0.0274426099, 0.018034745, -0.00443058787, 0.0141178053, -0.000466338126, -0.00622384949, 0.0103750853, -0.0155596239, -0.0445281565, 0.0245349426, 0.0190920793, 0.0225404277, -0.00595350843, -0.0101347817, -0.0148387142, -0.0277069435, -0.00189689233, 0.00665639481, -0.00638004625, 0.0064641526, 0.00792399328, -0.0122434413, 0.00477902731, -0.0143941538, 0.0105913579, -0.0109698353, -0.000426913408, 0.0157999266, 0.0196928363, 0.00658430392, 0.014910805, 0.0240663514, 0.0269620046, -0.00130364415, -0.0186835639, -0.00150414696, 0.0123635931, -0.0125558348, 0.00236998894, 0.0110299112, 0.000690871326, -0.00077948306, -0.0190800633, -0.00461982656, 0.0145263206, 0.0106934868, 0.00586639857, 0.0177343655, 0.00967820641, -0.00975029729, -0.0111500621, -0.00442157639, -0.00662635686, 0.0202815793, -0.012423669, 0.00367663684, 0.00880710781, 0.0344114, 0.0012751082, -0.0259287, 0.0393856727, 0.00572522078, 0.00227687159, 0.0106694559, -0.00618780404, -0.0126880016, -0.0176022, -0.0115585774, 0.0100686988, -0.00279352325, -0.026096914, -0.00123530801, -0.00744338753, -0.0207501706, 0.011780858, 0.0171095785, 0.0207742, -0.021735413, -0.00389891723, 0.0166049413, 0.0009491971, 0.0119971307, 0.0272023063, 0.0116126454, 0.0241023973, -0.0188517757, 0.0134329414, -0.0122013884, -0.0346276723, 0.00193143589, -0.0119791077, -0.0238380637, -0.00940185785, 0.0307828225, -0.00635601627, 0.0141778812, 0.00359853846, -0.00271842838, -0.00116021326, -0.00260278257, -0.000491119397, 0.0112581989, -0.00551795913, -0.00136221806, -0.00963014551, 0.0244268067, -0.0145743806, -0.00423834519, -0.011792873, 0.0109878574, -0.00822437275, -0.0243306849, 0.0033612391, -0.00742536457, 0.019284321, 0.00253069168, -0.0196688063, -0.0163045637, -0.00393796666, -0.00299477694, -0.00240603439, 0.0192482751, -0.00289114635, -0.0102008656, 0.00770171313, 0.0114504416, 0.0055870465, 0.0137573509, -0.00831448566, -0.000499755261, 0.0330657028, 0.0134449564, -0.00171966886, 0.0170374867, 0.019332381, 0.0121353045, -0.00493822806, 0.0126279257, 0.00379979215, 0.00169864227, -0.0286921859, -0.00325009902, 0.0158119425, 0.000850823068, 0.000538429071, -0.00571320532, -0.0119911227, 0.004667887, 0.00369766355, -0.00638004625, -0.00669844821, -0.00336424285, 0.0152111845, 0.0115045095, -0.0123395622, 0.00146434677, -0.0136131691, 0.00743137253, -0.0103090014, 0.0187316239, 0.00599255785, -0.00330416718, -0.0165688973, 0.0146224415, -0.00957007, -0.0124116531, 0.0189959574, -0.0022633546, -0.00869897101, 0.00687266793, -0.00390492473, -0.00446062582, -0.00118649635, -0.0127841234, 0.0115766, 0.0103150094, -0.00465887552, -0.00172868022, -0.00887919869, -0.00206059869, 0.0116186533, -0.00868695602, -0.00598354638, 0.0249915197, -0.000375473552, -0.00130589702, -0.0156317148, -0.0103150094, -0.0113182748, -0.0326812156, 0.00326812174, 0.0358532183, 0.0145743806, -0.00785791, 0.0159320924, -0.000340742234, 0.0153073054, 0.0157038048, -0.00253369543, -0.0258566104, -0.00370066729, -0.00834452361, -0.0113603277, 0.024847338, 0.0297735501, 0.000251379533, -0.00226635835, 0.0143941538, -0.0175060779, 0.00130514603, -0.00833250862, -0.0347237922, 0.00909547135, -0.00531970896, -0.00612172065, -0.0114204036, 0.0108977444, -0.00322006107, -0.00533773191, 0.000239176647, -0.00957007, 0.0041722618, -0.0226245336, 0.00436750846, 0.0103029944, 0.00694475882, -0.0089693116, -0.0147546083, -0.0280433688, -0.0100206379, 0.0175541397, -0.0107355397, 0.00719106942, 0.0274906717, -0.00475800084, 0.0322727, -0.00432845904, 0.0390973091, 0.0142499721, -0.00156197, 0.0281154588, 0.00832650159, 0.00465587201, -0.008723001, 0.0241744891, 0.00402207254, -0.0201734416, -0.0214830935, -0.0121052666, 0.025520185, 0.00263882801, -0.022396246, -0.0108376686, -0.0115285395, -0.00242255535, 0.000612772827, 0.0112702139, 0.0159080625, -0.00594750093, -0.0156677607, -0.00247512152, 0.0237659737, 0.00570719782, -0.00568016386, 0.0195967145, 0.00836855453, -0.0233935043, 0.0158119425, -0.00922163, 0.00173769158, 0.00643411465, -0.02119473, 0.00866893306, 0.00987645611, 0.00373370899, -0.0087590469, -0.0103570623, 0.0133368205, -0.000649569207, -0.0110359183, -0.0112642059, -0.00632597832, -0.0108436756, -0.000644312589, 0.0126279257, 0.0260728821, -0.0263131857, 0.00773775857, -0.00128336856, -0.0264573675, -0.00489617512, 0.0178665332, 0.0141057903, 0.00270340941, 0.0183831844, 0.0107896077, 0.00806817506, -0.00214170106, -0.0133127896, -0.0223121401, -0.0495024323, -0.00662635686, 0.0119610848, -0.0142019112, -0.00575225474, 0.0146104265, 0.00648818305, -0.0108196456, 0.00167461205, 0.00581233064, 0.0137813808, -0.00268088118, 0.0038238226, 0.0101047438, 0.0120812366, -0.0166169573, -0.00877707, -0.0138294417, -0.00693875086, -0.00827844068, 0.0122614643, -0.00538879633, -0.0025171747, -0.00204708171, -0.00312093599, 0.0088191228, 0.00385386054, 0.0162805319, 0.0224803519, -0.0208222605, -0.0177583974, 0.00622985698, -0.0383043103, -0.0172777902, 0.00330717093, 0.000480606133, 0.016148366, 0.00626590243, -0.0233334284, 0.00368264457, 0.0144662447, -0.023621792, 0.0256883986, -0.00851874333, 0.00456876215, -0.0119550778, 0.0298456401, -0.0133728655, 0.00822437275, -0.0149828959, 0.0236938819, 0.000291742937, 0.00590544799, -0.0067164707, 0.016761139, 0.0119310468, 0.0108016226, -0.00790597126, 0.00560807297, 0.00435849698, -0.00528066, 0.0138294417, -0.0173378661, 0.0225524437, 0.049694676, -0.0100326529, -0.00294070877, 0.0116306683, 0.012423669, -0.0173498821, 0.015523578, 0.00454773568, 0.00516951969, 0.0207621846, -0.0119971307, 0.0154755171, -0.0110719642, -0.0428700671, 0.0142139262, 0.00844665244, 0.0155596239, 0.00191040942, 0.00699882675, 0.00214770855, 0.000936431, 0.0233093984, 0.010573335, -0.00460180361, -0.00271392288, 0.0021191726, 0.0387368537, -0.0303983372, 0.0182029568, -0.00996657, -0.0139255626, -0.00272443611, -0.0042803986, 0.0216873512, -0.00653624348, -0.00488415966, 0.00524461456, 0.022997003, 0.0152712595, 0.00619381154, 0.0172898062, -0.00398602709, -0.00398903107, -0.0150069268, -1.95480916e-05, 0.0117448121, -0.00116021326, 0.0125438198, -0.0190800633, -0.0036405914, -0.0102789635, -0.0125318049, 0.0157999266, 0.01370929, -0.0122554563, 0.0058994405, 0.00609168271, -0.00956406165, -0.00425336417, 0.00181278621, -0.00832049362, -0.00105583156, 0.0119911227, -0.00721509941, 0.0054789097, -0.0194285028, -0.00501332292, 0.00255922764, -0.0142259412, -0.0338587, 0.00841060746, 0.0283077, -0.0027364511, 0.0245349426, -0.0101167588, -0.022997003, -0.00157849072, -0.00622985698, 0.0175301079, -0.000115645853, 0.0216753371, 0.00854277425, 0.00533172442, -0.0117327971, 0.0174700338, 0.00579731166, 0.0168452449, -0.0111440551, 0.00251116697, 0.0187556539, -0.0296293683, 0.00786391832, 0.0225163978, -0.00776178902, 0.0435429141, 0.0020545912, -0.0244388226, -0.0052866675, 0.0133608505, -0.0471474603, -0.0199331399, -0.0134449564, 0.0199812, -0.00862087216, -0.00895129, -0.00669244025, 0.0173859261, 0.00700483425, 0.00555400457, -0.023009019, 0.0115285395, 0.0205939729, 0.00681859953, 0.000233544546, -0.0275627617, 0.0257124286, 0.0176863056, -0.0109758424, 0.00624187198, -0.0101948576, -0.0165328514, 0.0141538503, 0.00250966521, -0.0096421605, 0.00535875838, -0.0226966254, -0.00467389449, 0.0017557143, -0.0226245336, 0.0281875506, -0.0258325804, 0.0235376861, 0.0254000351, 0.0188998356, 0.0103390394, -0.0045327167, 0.0125318049, 0.0183591545, -0.00173919345, 0.0109698353, -0.0177583974, -0.00145608641, -0.0203777, -0.0184072144, -0.0219036248, -0.0131565928, 0.00561107649, -0.00449366728, -0.00686666, -0.0106334109, 0.0181548968, 0.0119791077, -0.00147335813, -0.0177583974, 0.0134209264, 0.00642209966, 0.0241144132, 0.00490518613, 0.00241804961, -0.00455975067, -0.0216272753, -0.0067104632, -0.00887919869, 0.0172057, -0.0302060954, -0.0191521551, 0.00374872796, 0.0114083877, 0.000867343857, 0.0264093075, 0.018599458, 0.0282596406, 0.00755152386, -0.0203176253, -0.029196823, -0.00279953075, -0.00746741798, -0.00101002387, -0.0154394722, -0.00650620554, -0.0140697444, -0.0039740121, 3.41680934e-05, 0.00777380401, 0.0141178053, 0.0108616985, 0.000544061186, 0.0036616181, -0.00890322868, -0.0125197899, -0.018082805, -0.0119731007, 0.0202215035, -0.0194285028, 0.00922163, 0.0119070169, 0.00853676628, 0.024234565, 0.00911349338, 0.0113302898, -0.0188517757, -0.00426237565, 0.0107715847, -0.0115766, 0.0199812, 0.00125408161, -0.00575225474, -0.000176754169, 0.000987495412, -0.00368564832, 0.00667441776, -0.00235196622, 0.00895129, 0.00624788, -0.00876505394, 0.0135530932, -0.00495324703, 0.0341951251, -0.00839859247, 0.00592046697, 0.0119010098, 0.0124116531, 0.00684263, 0.0245469585, 0.0188157298, -0.00169113278, 0.0153193204, 0.0228167754, 0.00357150426, -0.000629669114, -0.000654825883, -0.00464385655, -0.0127000175, -0.00610970566, -0.00961212255, -0.00497727748, 0.0300138537, -0.00387188327, 0.0159441084, -0.00105883542, -0.0199691858, -0.0162204579, -0.0328254, 0.018034745, 0.00922763813, 0.000901136489, -0.00253820117, 0.00614274712, -0.0106033729, -0.00163706462, -0.0180467609, 0.0199331399, -0.00851874333, 0.00194194913, 0.0181068368, 0.00505837938, -0.0125197899, 0.0089693116, -0.00374872796, 0.0165448654, -0.00652422849, 0.0151631236, -0.0102188876, -0.00241054012, 0.00619381154, -0.00117598311, -0.0425096117, 0.000234295498, 0.0150429718, 0.00965417549, -0.00257725036, 0.00731722824, -0.0106934868, -0.0271302164, 0.0104772141, -0.00227987533, 0.0106754638, 0.00332519365, -0.0017106575, 0.00545487972, -0.0177704114, -0.0101107517, 0.0132887596, 0.00826642569, 0.00378176942, -0.00474298187, -0.0133848805, 0.0280673988, 0.00184432603, -0.0182870626, -0.00441256491, 0.0106394179, 0.0145503506, -0.0125197899, -0.00562309194, -0.0102248956, 0.00205759495, 0.0117568271, 0.0212427918, 0.00047910423, -0.00267337169, -0.00544887222, 0.00360154221, -0.0181308668, -0.00119175308, -0.0112642059, 0.00334922411, -0.00599255785, 0.000864340109, -0.00235346821, 0.0103150094, 0.00726316031, -0.00428340212, -0.0226605795, 0.0044035539, -0.00265084323, 0.00644612964, 0.0172537602, -0.00319302711, -0.00264033, -0.0483970381, 0.000384109444, -0.0109097594, 0.00181278621, 0.0215071253, 0.0248953979, -0.00498929247, -0.0461141579, 0.00104531832, 0.0252558514, 0.00123680988, -0.00888520572, -0.00674050115, 0.0149468509, 0.00966619048, -0.00619381154, -0.0163886696, -0.019332381, -0.00862688, 0.00288664061, 0.0105252741, 0.00769570563, 0.000911649782, -0.00777981197, -0.00874102395, -0.00427739462, -0.0202335175, 0.000496376, -0.00662635686, -0.0119791077, 0.0162805319, -0.0226125177, -0.0104651982, 0.00747943297, 0.0236938819, -0.0153193204, 0.030422369, 0.009948547, -0.0117327971, 0.0122975092, 0.0295813084, -0.00139525963, -0.0228528213, -0.00193744351, 8.60303771e-05, 0.0120572066, 0.00957007, 0.0156437289, 0.0116246613, -0.00565613341, 0.0188037157, -0.0172177143, -0.0219877306, -0.00519655365, -0.00405211048, 0.0245589726, 0.021759443, 0.00486012967, -0.00623586448, -0.00904741, -0.026745731, 0.0221679583, -0.0184072144, 0.0187676698, -0.00556001207, -0.0109998733, -0.0127000175, -0.000380730169, -0.00205008546, -0.000955955649, 0.016148366, -0.00494123204, -0.00556001207, 0.00311192474, -0.0210024882, -0.00708894059, 0.0124957599, 0.0102729565, 0.0127480775, -0.0154394722, 0.015523578, -0.0151030477, -0.0158600025, 0.0258566104, -0.00654225098, -0.00362857641, -0.00476701232, -0.00692673586, 0.000707392173, -0.00744338753, 0.00200202502, 0.0105192671, -0.0150429718, 0.00443359138, -0.0070288647, 0.00195997185, -0.0376074314, -0.0237179119, -0.01115607, -0.011174093, -0.0135771232, -0.0151030477, 0.0156797748, 0.00297375047, -0.00470994, 0.00511545176, 0.0201494116, -0.0106274029, 0.00314196269, 0.0153193204, -0.0221319124, 0.0348199159, -0.00694475882, -0.0120151537, 0.00512446277, -0.00607366, 0.00812224392, 0.0206420328, 0.00881311484, -0.0158720184, 0.00550894765, 1.99235656e-05, 0.00119325495, -0.00261629955, -0.00451469375, 0.010555312, 0.0216753371, -0.0151631236, 0.00222130143, -0.0112281609, 0.0137573509, -0.0263131857, 0.00212518033, 0.000379791483, -0.000395373645, -0.00722711487, 0.00717905397, 0.025496155, 0.011834926, 0.00714901602, -0.0100326529, 0.00531370146, 0.00480005378, 0.00138775026, 0.00601959182, 0.00206660642, 0.000771973631, -0.00322606857, 0.0095941, -0.00110839785, -0.00597153138, -0.0158960484, 0.0142619871, 0.0040491065, 0.00948596373, -0.00618780404, -0.0109458044, -0.0245709885, -0.000636803103, 0.0228167754, -0.0132647296, 0.00301880739, 0.0129283052, -0.00765966, -0.0049953, 0.00205308944, 0.0200893357, 0.0156437289, 0.000589868927, -0.00663236482, 0.0285480041, 0.0181428809, -0.0102128806, -0.00495925453, -0.0212187599, 0.00110013748, 0.00761760725, -0.0142379571, 0.00414222432, -0.0165448654, 0.0123876231, 0.0116967522, 0.00608567521, 0.0067224782, -0.0100086229, 0.00722110737, 0.00151541119, 0.0103090014, -0.00482708775, -0.00739532709, 0.00358351949, 0.000114237824, 0.0164727755, 0.00327412924, 0.0107595697, 0.00946794078, -0.0153673813, 0.00835053157, -0.0115705924, 0.00510944379, 0.00500431145, -0.013060472, -0.0106634488, -0.0183471385, -0.0171816684, 0.00895729661, -0.000609769, 0.0116366763, 0.00291067082, 0.00240152888, 0.0115405545, -0.0154034263, 0.0224683359, -0.0162925478, -0.00340329227, -0.01058535, -0.00234595872, -0.00827243272, 0.00545487972, -0.0137813808, 0.00196748134, 0.00925767608, -0.0190560333, -0.0212548058, -0.0192482751, -0.00752148591, -0.0152472295, -0.0145503506, -0.0184072144, 0.00300679216, -0.0166049413, -0.00946794078, 0.00587841356, -0.0064581451, 0.0157879107, -0.0133248055, 0.0163285937, -0.0211827159, -0.00149663759, 0.000922913954, 0.00572522078, -0.0114143956, 0.00087335147, -0.0107535627, -0.0225884877, -0.0278030653, 0.0262410957, 0.0107655777, 0.0125558348, -0.0088011, -0.00372169376, -0.00160402292, -0.00826642569, -0.0409236141, 0.00447264081, 0.00907144, -0.034123037, -0.000323094981, -0.00373671274, 0.00214470481, -0.0101708276, -0.00234445673, -0.0328013673, -0.000449441839, -0.0111380471, -0.00904140249, -0.0207021087, 0.0010595863, -0.00940185785, 0.00893927366, 0.00269740191, -0.00613974314, -0.0157638807, 0.0116967522, -0.00564712193, 0.00516050821, 0.0170735326, 0.0108076306, 0.00190740556, 0.00585738709, -0.0195486546, -0.00126534584, -0.00791798625, -0.0288603976, -0.0108797215, 0.00195246236, -0.00993653201, 0.0103210164, -0.00482708775, -0.00579430768, -0.0121953804, -0.0148627451, 0.00466488348, 0.0229489431, 0.00662635686, -0.00422933418, -0.0123756081, 0.00441256491, -0.0116006304, -0.00718506193, -0.00580331916, -0.0207261387, -0.0135050323, -0.00367062935, -0.013072487, -0.000952951843, 0.00674650865, -0.00905341841, -0.0127841234, -0.0108436756, -0.00578229269, 0.00122329278, 0.0126639716, -0.012483744, -0.0160282142, 0.0123395622, 0.00569518283, -0.00716103148, -0.0208342765, -0.00227086409, 0.0313355215, 0.00729920575, 0.00731122075, 0.000371906557, -0.0209424123, -0.00829646364, 0.0272984281, -0.00182480144, -0.00761760725, -0.0122734793, 0.00911950134, 0.00848870631, 0.00390792871, -0.00569518283, -0.00531370146, -0.0284518823, 0.00740133459, 0.0111440551, 0.0238380637, -0.0151631236, -0.00832049362, 0.00380579988, -0.0020215495, 0.0029196823, -0.0154514872, 0.00477602333, 0.00437952345, -0.0238380637, 0.00670445571, -0.00918558519, 0.00130814977, 0.0127600925, -0.0244628526, -0.00056846696, -0.0175541397, -0.010597365, 0.000591746299, 0.00073555269, 0.00405211048, -0.016833229, 0.00414823182, -0.00283858, 0.018623488, 0.0132406987, -0.00209664437, 0.0133848805, 0.00642209966, 0.00899334252, -0.00588442152, 0.0132647296, -0.00279051927, -0.0245469585, -0.00353545882, 0.0145984115, -0.0134810023, 0.00318701938, 0.016148366, 0.00239401939, 0.0283557624, 0.00735327369, -0.0106153879, 0.00237900042, -0.0122554563, -8.04921438e-05, 0.0141418353, -0.0144662447, -0.0167491231, -0.0161363501, -0.0162925478, 0.0268658828, -0.025520185, -0.0154995481, 0.0130124111, 0.029196823, -0.00619981904, 0.000970223628, 0.0225644577, 0.0225884877, 0.00216422952, -0.00162805326, -0.0115045095, -0.0245109126, 0.00266736397, -0.0221679583, -0.01492282, -0.00132917636, -0.00124732312, -0.0116126454, -0.00446963683, 0.0132887596, -0.0199812, 0.0214830935, 0.00353846257, -0.00132241787, -0.00624187198, -0.0196087305, -0.0162324719, 0.00261029205, -0.0362136737, 0.0240062773, -0.00109337899, 0.0105072521, 0.0197529122, -0.0189839415, -0.011168085, 2.39129713e-05, -0.0221799724, 0.00151541119, -0.00562609546, -0.000856079685, 0.00138850114, 0.0148026692, 0.0114864865, 0.0275387317, 0.0116907442, -0.0143821388, 0.00464686053, -0.0277790353, -0.00644612964, 0.0163406078, -0.0205699429, -0.0112401759, 0.0289565194, -0.0126639716, -0.0214110035, -0.00249765, 0.00824840274, 0.000677354285, -0.0138174267, -0.0245229285, -0.0171215944, -0.000879359, -0.00175721617, 0.0269620046, -0.00518153468, -0.0177944414, -0.0311673079, -0.0181068368, 0.0146104265, -0.0189719275, 0.0223361701, -0.00737129664, -0.00485412218, 0.00849471334, -0.0017557143, 0.0149949118, -0.0129643502, 0.012423669, -0.0105132591, 0.00118048885, 0.00878307689, 0.0132046537, -0.0186355021, 0.00951600168, 0.00182630331, 0.00547290221, 0.00265835272, 0.0155956689, -0.00202455325, 0.0182990786, 0.00976831932, -0.00029793827, -0.0176262297, 0.030518489, -0.0156076839, 0.0240182914, 0.0131085319, 0.0180467609, 0.0069687888, -0.0203777, 0.0119670928, -0.0099906, 0.024847338, 0.0100747058, 0.00746141, 0.0143941538, -0.00932976697, -0.0203536693, -0.0241384432, -0.00270641339, -0.00421131123, 0.017373912, 0.0133488355, -0.00169563852, -0.0228648372, -0.0165208355, 0.0057222168, 0.00405211048, 0.0168933049, -0.00301880739, 0.0169533808, -0.0155836539, -0.00626590243, 0.00275297207, -0.00830847863, 0.0204137452, -0.00526864454, -0.008723001, -0.0136492141, 0.0114864865, -0.0141778812, 0.0228047613, 0.0194525328, 0.00383884157, 0.0186114721, -0.00524761807, 0.00755152386, -0.0107715847, -0.00240903813, -0.0029196823]
|
28 Sep, 2021
|
array::operator[ ] in C++ STL
28 Sep, 2021
Array classes are generally more efficient, light-weight, and reliable than C-style arrays. The introduction of array class from C++11 has offered a better alternative for C-style arrays.
array::operator[]
This operator is used to reference the element present at position given inside the operator. It is similar to the at() function, the only difference is that the at() function throws an out-of-range exception when the position is not in the bounds of the size of array, while this operator causes undefined behavior.
Syntax :
arrayname[position]
Parameters :
Position of the element to be fetched.
Returns :
Direct reference to the element at the given position.
Examples:
Input : myarray = {1, 2, 3, 4, 5}
myarray[2]
Output : 3
Input : myarray = {1, 2, 3, 4, 5}
myarray[4]
Output : 5
Errors and Exceptions1. If the position is not present in the array, it shows undefined behavior. 2. It has a no exception throw guarantee otherwise.
C++
// CPP program to illustrate
// Implementation of [] operator
#include <iostream>
#include <array>
using namespace std;
int main()
{
array<int,5> myarray{ 1, 2, 3, 4, 5 };
cout << myarray[4];
return 0;
}
Output:
5
Application Given an array of integers, print all the integers present at even positions.
Input :1, 2, 3, 4, 5
Output :1 3 5
Explanation - 1, 3 and 5 are at position 0,2,4 which are even
Algorithm 1. Run a loop till the size of the array. 2. Check if the position is divisible by 2, if yes, print the element at that position.
C++
// CPP program to illustrate
// Application of [] operator
#include <iostream>
#include <array>
using namespace std;
int main()
{
array<int,5> myarray{ 1, 2, 3, 4, 5 };
for(int i=0; i<myarray.size(); ++i)
{
if(i%2==0){
cout<<myarray[i];
cout<<" ";
}
}
return 0;
}
Output:
1 3 5
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/array::operator[ ] in C++ STL
|
https://www.geeksforgeeks.org/arrayoperator-c-stl/?ref=lbp
|
Pandas
|
array::operator[ ] in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, array::operator[ ] in C++ STL, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0408271141, 0.0185614936, -0.0113507, 0.00900838431, 0.00825938769, -0.0204680283, -0.0314306132, 0.0138972877, -0.0119294701, -0.00412288494, -0.023205271, -0.00454845093, 0.0444767699, -0.02884317, -0.010908111, -0.0191743076, -0.02884317, 0.0303684, -0.0260106027, -0.0248803, 0.00109881174, -0.00449738279, -0.0604644381, -0.0277401041, -0.0251390431, 0.0211353172, -0.00183333899, -0.000123414182, -0.0506049208, -0.0107174581, 0.019269634, 0.020113958, 0.0121269329, -0.0490524545, 0.00610432075, 0.0199913941, 0.00257722847, -0.0208357181, -0.0284346268, -0.0373681113, 0.0410722382, -0.0380217806, 0.0321115181, 0.00202399259, 0.00411267113, 0.0317574479, -0.00380285899, -0.0150752552, -0.00368370046, 0.0101114511, 0.00906285644, 0.0246215556, 0.00959396269, 0.00313727348, 0.0246760268, 0.00302322186, 0.00539617846, 0.0302594546, -0.0419710353, -0.0786037669, -0.021816222, -0.0134887444, 0.0297964383, -0.0259152763, -0.0187657643, 0.00549491, -0.0341542363, 0.0239134133, 0.0163689759, 0.00105540408, -0.0236955229, 0.013938142, -5.51640114e-05, 0.00465058675, -0.0105336132, -0.00586940814, 0.0375315286, 0.0251254253, -0.000615368655, 0.0521573871, -0.0242947191, 0.020903809, -0.0169273186, -0.0112281367, 0.000754103181, -0.0370685123, -0.0195556153, -0.0302866902, 0.0210672263, -0.00426587509, -0.0246487912, 0.0261467844, -0.0194875244, 0.0244581364, -0.00466080057, 0.0277945753, 0.0324928276, 0.0154157076, 0.0208084825, 0.0564334765, 0.00393223111, 0.0119158523, -0.0177988783, 0.0028683159, -0.00227422547, -0.0135159809, -0.0092807468, 0.00369391404, -0.00549831474, 0.0131278643, 0.00454845093, -0.0170771182, -0.00460292352, 0.0289521161, -0.0173494797, 0.035080269, 0.0241313018, -0.0363058969, 0.00949182734, -0.00904243, -0.000134798072, 0.0359245911, 0.0123243956, -0.0179078225, -0.0275358316, 0.0105131855, 0.0473093353, -0.0212714989, 0.017145209, 0.00174652343, -0.00923308264, -0.0253705513, 0.00337559055, -0.0113166552, -0.0262557287, 0.0414535478, 0.0103633869, 0.0178261138, 0.0120316064, -0.0268957801, -0.0668377131, -0.0157970153, -0.0029874742, 0.0116639165, -0.0409088209, -0.0211897902, 0.00825938769, 0.033990819, -0.0377494209, -0.00648562796, -0.0154293263, 0.0250709523, 0.0198007412, -0.0355432853, 0.048534967, 0.0012588246, -0.023205271, 0.0132436184, 0.00729250163, -0.0139177153, 0.0227694903, -0.0183299854, -0.0207812451, 0.00391861284, -0.013570453, 0.0390839949, 0.0461654142, -0.0222383849, -0.0549899563, 0.0336367488, 0.0203999393, 0.0513130613, 0.00598175777, -0.013332136, -0.0413718373, 0.0104042413, 0.0454845093, 0.00710865669, -0.00049450784, -0.0159195773, 0.0112758009, 0.011997561, 0.0045688781, -0.0029806653, 0.00411267113, -0.0015601255, 0.00998888817, -0.0135908807, 0.0524297468, 0.0126716578, -0.0149118379, 0.0199777763, 0.0245807, -0.0207403917, 0.00591707183, 0.022115821, -0.0227014, -0.0539005063, -0.00155246526, 0.0638962, 0.00210399902, -0.0262421109, -0.000966035121, -0.0474727526, 0.0316485, 0.0117047708, -0.0018180185, -0.0349713229, 0.0046403734, 0.0306952354, 0.00738782808, 0.0454845093, -0.0015099087, 0.00123158842, -0.00300619914, 0.0138428155, -0.0143671129, 0.00349304685, -0.00946459081, -0.0376404747, 0.010908111, -0.00450078771, 0.036115244, -0.0460292324, -0.0225516018, -0.0487256199, -0.0279716104, -0.0133866081, -0.0159059595, -0.0212714989, -0.00511700707, 0.0212170258, -0.0190517455, -0.00742868241, 0.00755805476, -0.023872558, -0.00472548651, -0.022660546, 0.0229737628, 0.039683193, -0.0100365523, 0.0191879254, -0.0462471247, -0.00308450335, 0.0119907511, 0.0405819863, -0.0269093979, -0.022360947, -0.00899476558, 0.0101114511, 0.0349985585, -0.0338274, 0.00938969105, -0.0120384153, -0.00484804949, 0.00659457315, 0.00515105249, -0.0306952354, 0.0241449215, 0.0314850844, 0.000215442866, 0.0261876378, -0.0197462682, -0.00203250395, 0.029687494, -0.00667287689, 0.023205271, -0.0132640451, -0.0490524545, -0.064767763, 0.0251662787, -0.00335346116, 0.0232461244, -0.00507274829, 0.0274541229, 0.0292244777, -0.0312127229, 0.0276447758, 0.0153748533, -0.0238589402, 0.0352436863, -0.0040650079, 0.00465058675, 0.0316757374, 0.0279716104, -0.0122631136, -0.0188202374, -0.0130189192, 0.00139670807, 0.0220749676, -0.0297692027, -0.0300688017, -0.0137951523, 0.0364693142, 0.0454572737, 0.0161919408, -0.0159059595, -0.037586, -0.000498337962, -0.0331737325, -0.00371093675, -0.0384575613, -0.026664272, -0.0176763143, -0.0196645595, -0.0248122085, 0.0296057854, -0.01272613, 0.0440409891, -0.0290610604, -0.00536553795, -0.0304501094, -0.0106357494, -0.0460292324, -0.0169817917, 0.0109353475, 0.0281895, 0.0107106483, -0.00164268527, -0.0212578792, -0.0136385439, -0.0117932893, 0.00998888817, 0.0446129516, -0.00761933625, 0.00410245778, 0.00273383688, 0.0144352037, -0.0387571603, -0.0435235, -0.0296602584, 0.049624417, -0.0610636361, -0.0108808754, 0.0198552143, -0.051013466, -0.0384303257, -0.00497401692, 0.0191062167, -0.0274132676, 0.014544148, -0.00454845093, -0.0184934027, 0.0106153218, -0.00627795188, -0.0192968715, 0.0102884872, -0.0448853113, 0.0191743076, -0.00145458512, 0.000687289343, 0.00447695563, 0.00774870813, -0.0333371498, 0.0365510248, -0.0363058969, -0.0381034911, -0.00891986676, -0.00891986676, 0.00453142822, 0.0218570773, 0.0424340516, -0.0343176536, 0.00978461653, 0.0235457234, -0.0134955533, -0.023872558, -0.0257110037, 4.58015566e-05, -0.0301505104, -0.00495358976, -0.00898114778, 0.0113166552, -0.00413990719, 0.000830279547, 0.00472548651, -0.00601239828, -0.0118818069, -0.0148301292, 0.0172133, -0.0284073912, 0.0484260209, -0.0543090478, -0.0367144421, -0.02617402, -0.0230282359, -0.0100842156, 0.00941011868, 0.0355705209, 0.0188610908, -0.0213259701, -0.000633242424, 0.039192941, -0.0569782, 0.0242266301, -0.0259288941, 0.00243764278, -0.0212987345, 0.0102544418, -0.0248258263, 0.023450397, 0.00238997955, 0.0209446624, 0.0113711273, 0.00319004385, 0.018602347, -0.0231235623, 0.00254658773, 0.0221975297, 0.0174992792, -0.0138904788, 0.0149799278, -0.0118409526, 0.00650265068, 0.0172133, 0.000250871235, -0.00911052, 0.0616628304, 0.018479785, 0.00987994391, -0.00388456765, -0.01120771, -0.03478067, 0.00987313408, -0.00135585375, 0.0230418537, -0.0286525171, -0.00679544033, 0.00527361548, -0.0388116315, -0.0388116315, 0.0515581891, 0.012235878, 0.032901369, -0.00915818382, -0.0172405355, 0.0219251681, -0.0117320074, -0.0245398451, -0.0213940609, -0.00996165257, 0.0351892114, 0.0254522599, -0.00305726705, 0.0412628949, 0.0117320074, -0.0176626965, 0.0305862892, -0.00697928481, -0.00791212544, -0.00691800332, -0.00305726705, 0.0116298711, -0.0123448223, 0.0194194335, -0.00476634083, 0.0241449215, -0.0188202374, 0.00158651057, -0.00212442619, -0.00284788851, 0.00676479936, 0.0311582498, -0.00212442619, 0.000631965697, 0.00113711273, 0.00794617087, -0.00387094961, 0.00367348688, -0.0121609783, 0.00479698135, -0.0354615748, 0.0154293263, -0.0128963562, 0.0257927123, -0.00272873021, -0.0132027641, -0.0164915398, -0.0460837074, -0.0187657643, 0.0153748533, -0.0225924551, -0.0218706951, -0.0213532075, 0.00296364259, -0.0461926498, 0.0287886988, -0.0117456252, -0.0317846835, 0.0081572514, 0.00461313687, 0.00253296969, -0.0029755584, -0.0252343696, -0.000841769855, -0.00159757526, -0.0137202526, 0.0131823365, -0.0330920219, 0.0573050343, 0.0299870931, 0.00764657231, 0.0189291816, 0.0219796393, -0.00628476078, -0.0422434, -0.0394925363, 0.0430060104, -0.0115958266, 0.0141764591, -0.007694236, -0.000687714899, 0.020113958, -0.00248019956, 0.003166212, -0.045620691, -0.00679203542, -0.0291972421, -0.0198279768, -0.0178397335, -0.000481315306, -0.0138496244, -0.0105948951, 0.0340180546, 0.00705418456, 0.00507955765, -0.00677841762, -0.0248803, -0.00857260451, -0.00263510551, -0.00496039912, 0.0166413393, -0.0163825937, 0.0166685749, -0.0245807, -0.00503529841, -0.000691119407, 0.00958715379, -0.0106561761, 0.0187657643, -0.00390159036, 0.0437141545, 0.0305045806, 0.0230418537, 0.0239815023, 0.0195283797, -0.0219387859, -0.0182891302, 0.0254250243, 0.0190517455, -0.0249892436, 0.0132980905, 0.00193717703, -0.0165187754, -0.0143398764, 0.00971652567, -0.00098901568, -0.00956672709, -0.0335278027, -0.0174856614, -0.00182652986, -0.00245296326, 0.0430604853, 0.023749996, -0.0107651213, -0.0190108903, 0.0267595984, 0.0232733618, 0.000303854235, -0.00175163022, -0.00891305692, -0.0275903046, 0.0260514561, 0.0189972725, 0.0045620692, 0.0320298113, 0.00392882666, 0.0185614936, 0.00209378544, 0.00456547365, -0.000322153559, -0.035815645, 0.0315395594, -0.0183163676, -0.0153339989, 0.00150054623, 0.0118477615, -0.0119771333, -0.0399555527, 0.00115583767, -0.0114392182, 0.0252752248, -0.00262659416, 0.0166958105, -0.016300885, -0.00706780236, -0.00673075393, -0.0344266, 0.00258914451, 0.0199641585, 0.0292244777, 0.0241449215, 0.00539277401, -0.0126444213, -0.0144760581, 0.00917180162, 0.0326290056, 0.0169817917, -0.0112621821, 0.0385665074, -0.0654759, -0.0194739066, 0.00585919479, -0.0209582821, 0.00140777277, 0.010547231, -0.0221566763, 0.0346444882, -0.0386754498, -0.00403096247, 0.0100093158, -0.00787808, -0.0200867224, -0.0227422547, 0.0137679158, 0.014421585, -0.0231644157, -0.0284618642, 0.0201820489, -0.00821172446, -0.00212612841, -0.0394925363, 0.00496039912, -0.0273724142, 0.00289555197, 0.0220749676, 0.0127397478, 0.0385120325, -0.0112145189, 0.0489707477, -0.0195283797, 0.0136453528, 0.0302866902, 0.0487800948, 0.00235082745, 0.00309812161, -0.0206723, -0.0243355744, 0.0174720436, -0.00671373121, -0.0112485643, 0.0373953469, 0.00504551223, -0.00228443905, 0.00276788208, -0.0303684, 0.03260177, 0.058176592, 0.00207676273, -0.00404117629, -0.035080269, -0.00483102677, 0.0062473109, -0.011752435, 0.0069009806, 0.00611112965, -0.047145918, -0.0309403613, -0.0320298113, 0.0205225013, -0.036605496, -0.00992760714, -0.0214212965, -0.00938969105, 0.0292517152, -0.0244717561, -0.00660138205, 0.0299870931, 0.0238997936, 0.02884317, 0.00113541051, -0.0204544105, -0.00418416644, -0.0211625528, 0.0410722382, -0.0152250547, 0.00204101531, 0.00158736168, -0.00030853544, -0.0240632128, -0.0261059292, -0.00706780236, 0.00153203809, -0.00502508506, 0.00469144108, 0.00290576555, 0.0347262, -0.0105540399, -0.0243491922, -0.0207948647, 0.0126512302, -0.00709503889, -0.00244104746, -0.0389478132, 0.00595452124, 0.0397104286, 0.00534851523, 0.0252207518, -0.032002572, -0.00859984104, 0.0213123523, -0.00771466317, -0.0164506845, 0.0282984469, 0.042107217, -0.000963481725, 0.0010179542, 0.00986632518, -0.00791893434, 0.00772147207, 0.0018009959, -0.0173767172, -0.00192185666, 0.00307258754, 0.0202229023, 0.00289044529, -0.0320842825, -0.0123380134, 0.0196781792, -0.00206484692, -0.0563245304, 0.000422587182, 0.0178533513, -0.00651286403, -0.00380626367, -0.00210059457, 0.0235457234, -0.00458930526, -0.0287342258, -0.0189972725, 0.010240824, -0.00654690946, -0.0274268873, 0.00935564563, -0.0154020898, 0.0284073912, 0.0463015959, -0.0284618642, -0.0120452242, 0.0202229023, -0.00658435933, 0.0115209268, 0.0146530932, -0.0219115503, 0.04011897, -0.00338580413, 0.0196645595, 0.00734016486, 0.00302662631, 0.0225516018, 0.0445857123, 0.00239678845, -0.00194228382, 0.0101114511, 0.00191164308, -0.0270455796, -0.0111396192, 0.00783041678, 0.0148982191, 0.0149526922, -0.0177716427, 0.00295002456, 0.00659116823, -0.00171673379, 0.00371774589, -0.00126903818, -0.0054472466, -0.0144896759, 0.0203182306, 0.00128946546, 0.00744230067, 0.0426519401, 0.023450397, 0.019446671, 0.000657925266, -0.0385120325, 0.0411267132, -0.013815579, 0.0373953469, -0.0116502987, 0.00287852949, -0.000304067, 0.00951906387, 0.00819810573, 0.00155586982, -0.0209310446, -0.0162736494, -0.0378583632, -0.00218570768, -0.0308858883, 0.0161374677, -0.015388472, 0.0162191764, 0.0263510551, 0.00690438505, -0.0321115181, 0.0114255995, 0.0175401345, 0.0395470113, 0.0117456252, -0.012603567, 0.000816661399, 0.0116707254, 0.00431013387, -0.0144624393, 0.0120520331, -0.0385120325, 0.0110511016, 0.0203454662, 0.0193377249, -0.00728569226, -0.00862707663, -0.0146122389, -0.00554597797, -0.0213259701, 0.00420118915, 0.0140266605, 0.00461994624, 0.03260177, -0.0199369229, -0.0129508292, -0.020359084, 0.02350487, 0.0226333104, -0.0225924551, 0.00153203809, -0.00675458601, 0.0123720588, 0.016600484, -0.00539958337, -0.00323600485, 0.00377221825, -0.0250437167, 0.000565151859, -0.0045620692, 0.0140130417, 0.00260446477, 0.0135636441, 0.0204816479, 0.0151161095, -0.000863473688, 0.0181120951, -0.0118818069, 0.0292517152, 0.0157153066, -0.00049450784, -0.0485077314, -0.0157970153, -0.00880411267, -0.00652648229, 0.00197122246, -0.00554938242, 0.0167230479, -0.0100093158, 0.0527838208, 0.0088722026, -0.0148846013, -4.13331109e-05, 0.0120043699, -0.000486422097, -0.00589323975, 0.00418416644, -0.0146258576, 0.00527021103, -0.00498423073, 0.0282167383, -0.00873602182, 0.0364693142, -0.000274490158, -0.0101727331, 0.0314033777, -0.0109217297, -0.00280533195, -0.0176354609, 0.0229192898, 0.0126852756, -0.00957353599, -0.0230146162, -0.00859303121, -0.0406092219, 0.0500057228, -0.00455185538, -0.0233550705, -0.021026371, 0.0306407623, -0.00173801207, -0.0126988934, 0.0114936903, -0.000846025476, -0.00906966534, 0.021993259, -0.00878368504, -0.0065979776, 0.00616219779, 0.0186159648, 0.0135023622, 0.0107038394, 0.0186840557, 0.000264489354, 0.0267732162, 0.0291700065, -0.00455866428, 0.0011405173, -0.0143398764, 0.00822534226, 0.0158378687, -0.00707461173, -0.0361424796, 0.0235184878, -0.00385052245, -0.0313216671, 0.00357135106, 0.000573663157, 0.0030930147, -0.0294968411, -0.0337729305, -0.0184116941, 0.00633582892, 0.00422502076, -0.015265909, 0.00248360401, 0.00198484049, 0.00092347851, 0.0182346571, 0.00772828097, 0.0196237061, -0.0273587964, -0.0648767054, -0.0501963757, -0.0211625528, -0.0128282653, 0.0472003929, 0.0150207821, -0.0232325066, -0.0218706951, 0.0127193211, -0.05877579, -0.0145850033, -0.000711121, 0.0433873199, -0.02993262, 0.0263782926, 0.0283801556, -0.0173631, 0.0129031651, 0.00619624322, -0.0202637576, 0.0101318788, -0.0164370667, 0.0196509417, 0.0269502532, -0.0213395879, 0.00857941341, 0.0119090425, 0.0178669691, 0.0160421412, 0.0369868055, -0.0311037786, -0.0292517152, -0.0177171696, 0.020903809, -0.0165732484, 0.0157153066, 0.0335005671, -0.018901946, 0.0207948647, 0.0279716104, -0.0452393815, 0.0308858883, 0.0150616365, 0.0181120951, 0.0240904484, -0.00799383409, 0.0166141018, 0.0307497066, 0.00364284613, 0.0111940922, 0.00461994624, 0.00236274325, 0.0135840708, -0.0367689133, 0.0112553732, -0.0251254253, -0.0126852756, 0.0229192898, 0.0182755124, -0.0313216671, -0.0543362834, -0.0196781792, -0.0207540095, -0.0202501398, 0.0033841019, -0.0131551009, 0.021448534, 0.00107242668, 0.00191845221, 0.0128895473, 0.0476361699, -0.0243083388, -0.0145577667, -0.0174175706, 0.00166907045, 0.00227422547, 0.0107923569, 0.0368778594, 0.0256020594, -0.020658683, -0.00953268167, 0.016600484, 0.0263919104, -0.0195828509, -0.0288159344, -0.0109898197, 0.0218298417, 0.00427608844, 0.0194739066, 0.0306952354, 0.00960077252, 0.036169719, -0.0232461244, -0.00983228, -0.00780318072, 0.00853855908, 0.0185478739, -0.00657414552, -0.0241857748, -0.0214349162, -0.0408815853, 0.0167775191, 0.00342495623, 0.00849770475, -0.0149390735, -0.0191334542, -0.00499444408, 0.0158651061, -0.0390839949, -0.00507615274, -0.0219251681, -0.00895391125, 0.0222111475, 0.00909009296, 0.00890624803, 0.00892667565, 0.0122494958, 0.0227967277, 0.00452121487, 0.0159604326, -0.0116366809, -0.00131074374, 0.0145305302, -0.00816406123, -0.0212578792, 0.0268140715, -0.00567875477, -0.00976419, 0.0306407623, 0.00966205355, 0.00476293638, 0.0127397478, 0.0112417554, 0.00584217208, 0.00593068963, -0.0130597735, 0.0152931446, -0.00078644621, 0.0305590536, 0.00440205634, 0.00532468362, -0.0135023622, -0.0306407623, 0.000398329896, -0.0269230157, -0.0224018022, 0.0161374677, 0.0139994239, -0.026963871, 0.0269230157, 0.0104178591, -0.0123243956, -0.00802787952, -0.0168047566, 0.0196509417, 0.0115277357, 0.0123175867, 0.010118261, -0.00779637182, 0.00634263782, 0.0452666208, 0.0205633566, 0.00299939024, -0.0157289244, 0.00654010056, -0.00103242346, 0.0373681113, 0.00220783707, 0.0101114511, 0.0102067785, 0.00324111176, -0.006240502, 0.00980504416, 0.0393018834, 0.0230418537, 0.00681927195, 0.0110715283, -0.00233550696, 0.00324621843, -0.00971652567, -0.0337729305, 0.0281077921, -0.00860665, -0.0113779362, 0.0150752552, 0.00167417724, 0.0221839119, -0.04011897, 0.0108876843, -0.00618262496, -0.000517488399, 0.00014277744, 0.0175537523, -0.0224971287, 0.0023661477, 0.0146122389, 0.0170090273, 0.0230827071, 0.0147892749, 0.018479785, -0.000191611151, 0.00683969911, -0.00591707183, 0.00759890908, 0.0133797992, -0.0249075349, 0.00640051486, -0.0214349162, -0.0215166248, 0.0283256825, -0.00558342785, -0.0451576747, 0.00778956246, 0.0159876682, -0.0193785802, 0.00310493051, -0.00150480191, -0.0150071643, 0.00953949057, -0.00476634083, -0.0154701807, 0.010662985, -0.0116775353, 0.00444291066, -0.00528723374, 0.0120792696, -0.030232219, -0.00688395789, 0.00834109634, 0.0153067634, -0.00523276115, 0.00244785636, 0.0357339382, 0.0242402479, -0.0110715283, 0.0143671129, 0.00356794661, 0.0010009316, -0.0119430879, -0.0066898996, 0.0165323932, 0.0212851167, -0.00625071535, 0.0286252815, -0.00403096247, -0.00285129319, -0.00234912499, 0.0254522599, -0.00772828097, 0.0284891, -0.0524842218, 0.00166481477, 0.00739463745, 0.0136589706, 0.00040513897, 0.0204680283, -0.00600899383, 0.0368233882, -0.0171043538, -0.0237227585, -0.00466760946, -0.0143671129, 0.0310493056, 0.0102203963, 0.000388329092, -0.0272907056, -0.0192151628, -0.00599537557, -0.00968929, 0.0006545207, -0.0139177153, 0.00693502603, -0.00500125345, 0.00400713086, 0.00127754954, 0.00430672942, 0.0273179412, -0.0124333408, -0.029633021, -0.0252888426, -0.0188202374, 0.000143096622, -0.0206178278, -0.00534170633, 0.00361220539, -0.0200050138, -0.000328749855, 0.0104450956, 0.0147892749, 0.00657414552, -0.00823215116, -0.0122903502, 0.0159468148, -0.000153522982, -0.0104927588, 0.00977099873, -0.00130563695, 0.0323294103, -0.0217072777, -0.0128282653, 0.0306952354, 0.0336095132, 0.0213123523, -0.019691797, -0.00283937738, -0.0178261138, 0.0196645595, -0.00855217688, 0.00596473506, 0.0101659242, -0.0250845701, -0.0224698931, -0.0022418825, 0.00728569226, -0.00243934523, -0.0198960677, 0.0327924229, -0.0297692027, -0.00683629466, -0.0164643023, 0.00369050959, -0.00274915737, 0.03102207, 0.00675799046, -0.011391554, -0.00653329119, 0.015211436, -0.0097437622, -0.0110919559, 0.0101250699, 0.0141219869, -0.00441567414, 0.0225788374, -0.000903051347, -0.00590685802, -0.00335005671, 0.0234912504, -0.0176354609, -0.0143534951, 0.0498967804, -0.0193377249, -0.00076559349, 0.0361969545, 0.00970971677, -0.0129848737, -0.00934202783, -0.0298781469, -0.00136266276, 0.00231167534, 0.0182891302, -0.0157425422, -0.0185478739, -0.0125286672, 0.0133797992, 0.016055759, 0.00933521893, -0.00467441836, -0.0259425119, -0.0209446624, 0.00600218493, 0.00258233538, -0.00114987977, -0.00612474792, -0.0283256825, 0.00157885044, -0.00425566128, -0.0130461557, 0.00198654272, 0.0120656509, -0.0103429593, -0.00664904527, -0.0177580249, -0.0138223879, -0.0155518893, 0.00467441836, 0.00599878049, -0.017390335, -0.00403096247, 0.0232733618, 0.00891986676, 0.0224290378, 0.00786446221, 0.0133389449, -0.0180984773, -0.0263102017, 0.0248258263, 0.00773509033, -0.0185614936, -0.0282167383, 0.00122903497, -0.0378856, -0.00732654659, 0.00287342258, 0.0212851167, -0.0111736646, 0.00154906081, 0.026119547, -0.0313216671, -0.00482421787, -0.00574344071, -0.00131670164, -0.00993441604, -0.00592047628, -0.0109217297, 0.0354615748, -0.000373008719, -0.0135227898, -0.0173631, -0.0141764591, -0.00114987977, 0.000846876646, 0.011452836, -0.00795978867, -0.0109966295, -0.000333218282, -0.00793936197, -0.00255169463, 0.0124061042, -0.000439609837, -0.0273043234, 0.0151297273, 0.0285435729, -0.0162736494, -0.00759890908, -0.0053621335, -0.0124878129, -0.03478067, -0.00339091104, 0.00248190179, -0.00862707663, -0.0254386421, -0.00106221309, 0.00125797349, -0.00132946868, 0.0169545542, -0.00482762232, -0.0042182114, 0.0218706951, -0.0178397335, -0.00449397834, 0.00447355118, 0.0311582498, 0.000873261713, 0.0202092845, -0.0112826098, -0.00684650801, -0.0165187754, -0.00291087246, -0.0145169124, -0.0165051576, 0.011997561, -0.0140675148, 0.0342631824, -0.0223337114, 0.0226060729, 0.018901946, -0.0250709523, 0.00833428744, -0.00862026773, -0.00550512364, -0.0135432165, 0.0045620692, -0.00379945454, 0.0232597422, -0.0143807307, -0.0232869796, 0.0163962115, 0.024716882, 0.0210399907, -0.00236104103, -0.0249892436, 0.00484124059, -0.0227150191, 0.0131278643, 0.029687494, -0.00289725419, -0.00824577, -0.0162464138, 0.0147484206, -0.0320570469, -0.00231167534, -0.0330647863, 0.0254931133, 0.00808235258, 0.00208697631, -0.00561066391, 0.00913775619, -0.0110919559, -0.0119294701, 0.00890624803, -0.00432034768, 0.0248939171, 0.0137134437, -0.00772828097, 0.0136453528, 0.00736059202, -0.00639370549, 0.0243900474, 0.0143534951, -0.00732654659, -0.00390839949, 0.0211353172, -0.00447014673, -0.00098476, 0.0220341124, 0.00760571798, 0.00193036802, 0.0223337114, 0.00159246847, 0.0209582821, -0.0266778897, -0.00921265595, -0.0190789811, -0.0134138446, 0.0154429441, -0.0154157076, -0.0131823365, 0.00562428217, -0.00191674987, -0.0147348018, 0.00248530624, -0.000563875132, 0.0240359753, -0.00319685275, 0.0153748533, -0.0167502835, 0.00987994391, -0.0139313331, 0.021026371, 0.0419165641, -0.0208084825, 0.00165460119, 0.00644136919, -0.0140266605, 0.000367050787, -0.040418569, -0.0148573648, 0.00468122773, -0.0196509417, -0.0169681739, 0.00082261936, -0.00528382929, 0.00361220539, -0.0217889864, -0.0150480187, 0.0231507979, -0.0167775191, 0.0393835939, -0.000349602575, -0.00167332601, 0.0509862266, 0.0101318788, 0.0337456912, 0.0391112305, 0.0287069902, 0.020903809, -0.00428630225, -0.0389750488, -0.0193377249, -0.0115822079, 0.00956672709, 0.00938288216, 0.0161919408, 0.0130665824, -0.0113507, 0.00259084674, 0.00103582803, -0.0244309, 0.00413309829, 0.00286150677, -0.00862707663, 0.0127465567, -0.00825938769, 0.000909860421, 0.0201956667, 0.00902200211, 0.0133866081, 0.0274813585, 0.00209889212, -0.019691797, 0.0163553581, -1.64640896e-05, -0.0105948951, -0.0215302426, -0.00988675281, -0.0260923114, -0.0190517455, 0.00227252324, 0.00126563373, 0.0025721218, 0.0170090273, -0.00643796474, 0.00338920881, -0.0097437622, 0.0225243643, 0.00467782281, 0.0157697797, -0.00446333783, 0.00678182207, 0.00528382929, -0.00380285899, -0.0189291816, -0.00598856667, -0.0159740504, -0.00628135633, -0.00312195322, 0.00762614515, 0.00502508506, 0.0230282359, 0.00679544033, 0.00844323263, -0.0212851167, -0.00576727232, 0.0120860785, 0.00448376499, -0.0181393307, -0.0273043234, -0.0127193211, 0.00335346116, -0.00123754633, 0.0241857748, -0.0348351412, 0.0152250547, -0.00491614, 0.0311582498, 0.00847727712, 0.0324111171, 0.0164370667, -0.00124350423, 0.0177171696, -0.0240223575, -0.0215030052, 0.0164915398, -0.00949863624, 0.0372319296, 0.0185206383, -0.000888582086, 0.0058762175, -0.0144488215, 0.0063256151, 0.00214655558, 0.0181801859, 0.00687033962, 0.03369122, -0.00511360262, 0.0260378383, -0.00458930526, 0.0248122085, -0.00734016486, -0.00275426405, -0.00937607326, -0.00368710514, 0.00148437475, -0.0212578792, -0.00871559419, -0.0124537675, -0.00598175777, -0.00189802505, 0.00137457869, 0.00938969105, 0.00204782421, -0.00985270739, 0.00578769948, 0.0029755584, 0.0240904484, -0.00566173205, -0.000106019164, 0.00940331, -0.0044292924, 0.00368029601, 0.00694864383, -0.0133866081, 0.00122818386, -0.0105948951, -0.00453483267, 0.00567535, -0.00394584937, -0.00768742664, -0.0182210393, 0.0274813585, 0.0218570773, 0.0103293415, 0.0109489653, 0.0132844727, -0.0271545239, 0.0104042413, 0.0377221815, 0.00322238682, -0.0116298711, 0.0065979776, -0.0120043699, 0.00219592126, -0.0045620692, -0.00751720043, -0.017689934, 0.0174584258, 0.00200867211, -0.00983228, -0.00107498013, -0.0121269329, 0.00417054817, 0.0174311884, 0.0052361656, 0.0426791757, 0.0063188062, -0.0154701807, -0.00618602941, -0.00467101391, -0.00269808923, -0.0202773754, 0.00481059961, -0.005300852, -0.022660546, 0.00812320691, -0.00986632518, 0.00785084441, 0.0176354609, 0.0151978182, 0.000901349063, 0.0211897902, 0.00870878529, 0.0200186316, -0.00984589849, 0.00968248118, 0.019147072, 0.015088873, -0.0156744514, -0.00258744205, 0.00891986676, -0.00813001581, -0.0194875244, -0.00819129683, -0.00200016075, -0.00128946546, 0.00757167256, 0.00863388553, 0.0113234641, -0.0125286672, 2.74756148e-05, -0.0013311709, 0.024172157, 0.0109013021, -0.0149118379, -0.00548129203, -0.0253433157, -0.00491614, 0.0298236758, -0.00612815237, 0.0168183744, 0.0107719302, 0.0287069902, 0.0136521617, -0.00635966053, -0.00305896951, -0.030722471, -0.00844323263, 0.00740144635, 0.00546426931, -0.0267323628, 0.0128827384, 0.0151842, -0.0102135874, 0.00830705091, 0.0126308035, -0.00401734421, -0.0402551517, -0.0131959552, -0.0176626965, -0.0360335372, -0.0178397335, 0.00314578484, -0.0216119513, -0.00275596627, -0.00539617846, -0.0175673701, 0.00923989248, -0.00129542337, -0.0256701503, -0.000930287584, -0.0216936599, 0.00665925909, 0.00087155943, -0.00190483406, -0.00985951629, 0.0126103759, 0.0326562449, 0.0239678845, -0.0197871234, 0.00102901889, 0.0154020898, 0.00679544033, -0.0128963562, -0.0186568201, 0.0189700369, -0.0124333408, 0.0111260014, -0.00230827066, 0.00154991192, -0.019814359, 0.00289214752, -0.00317642558, -0.0238589402, -0.0231507979, -0.0223745648, -0.0040718168, -0.00805511605, 0.0213668253, -0.0150752552, 0.00383349974, 0.0072652651, 0.0171588268, 0.0133661814, -0.0157970153, 0.00198994717, 0.00628816523, -0.0263782926, 0.0118273338, 0.00907647423, -0.0227831081, 0.000306833186, 0.00481740851, -0.00301130605, -0.0172133, 0.0208221, -3.72370378e-05, -0.00263680774, -0.00600218493, 0.013209573, -0.0183980763, 0.0218298417, 0.0110238651, 0.00595452124, -0.0176354609, -0.00858622231, -0.0066047865, 0.000456206908, 0.0314306132, 0.00921265595, -0.00321557769, -0.0117728617, -0.0038539269, -0.0179214422, 0.0197190326, -5.05359785e-05, -0.0035236876, 0.00488549937, -0.012787411, 0.000202782263, -0.00106987322, -0.000107881016, 0.00953949057, 0.00157544587, -0.0207403917, -0.00761933625, -0.0202229023, -0.0338001661, -0.0109898197, 0.00446333783, -0.00515445694, -0.00335346116, 0.0201411936, 0.006332424, 0.0245398451, 0.00983228, -0.0154293263, -0.00620305212, 0.00804149825, 0.00435779709, -0.0046539912, -0.00878368504, 0.0102272052, 0.0115549723, -0.0139858052, -0.0158651061, -0.0330103152, -0.0121337418, 0.00150905759, -0.0112281367, 0.0139245242, 0.000934543263, 0.0297964383, -0.0118069071, -0.0141356047, -0.00773509033, -0.00484464504, 0.0108944932, -0.000811129052, -0.00505572557, -0.00712908385, -0.0163145028, 0.00676479936, 0.0052361656, 0.00249041314, -0.0128555018, -1.38309e-05, -0.00977780763, 0.000449397834, -0.00249722204, -0.00390839949, 0.00909009296, -0.00253296969, -0.0122835413, -0.00927393697, 0.00543022389, 0.0069009806, -0.00437482, -0.000957523822, -0.0137883434, -0.00122477941, 0.0213123523, 0.00534170633, 0.00387094961, -0.002863209, -0.0106289396, -0.00783041678, -0.019691797, -0.0135772619, -0.0174311884, 0.00523957051, -0.0241993926, -0.00121797028, -0.00730611943, 0.0120247966, -0.00452121487, 0.0167094283, 0.00667287689, -0.000184482924, -0.00140947511, 0.00377221825, -0.0319481, 0.0251390431, 0.000363859057, 0.00472548651, -0.00859303121, -0.0195692331, -0.0164643023, -0.0105744675, -0.00409224397, 0.00531447, -0.013876861, -0.00617241114, 0.00586259924, -0.0319753364, 0.00326834805, -0.0183844566, 0.0151978182, 0.0231099445, 0.00248530624, 0.0121065052, 0.0284073912, 0.0131414821, 0.0305590536, 0.0186568201, 0.0104859499, -0.006240502, -0.0101863509, 0.0174039528, 0.00751720043, 0.0074899639, -0.0224835109, 0.0132776638, -0.0291427691, 0.00034172961, -0.0171043538, 0.00124946213, 0.0134887444, 0.0115277357, 0.00459611416, 0.00908328407, 0.00337559055, -0.00183674344, -0.000199164948, 0.0161647052, 0.00607368, 0.00751720043, -0.0147484206, -0.0155655071, -0.00178567553, 0.0244853739, 0.00140351709, -0.0208765734, 0.029687494, 0.0121337418, -0.00036045452, 0.00829343311, -0.00550171919, -0.0114664538, 0.00464377785, 0.0106697939, 0.00106476643, -0.00988675281, -0.0205633566, -0.00230486621, 0.00100263383, -0.0250028614, 0.00813001581, 0.0192287806, 0.0297692027, -0.0246079359, 0.0018180185, 0.00523276115, -0.000849004427, 0.00536553795, 0.0203727018, 0.0177035518, 0.0152795268, -0.0276039224, -0.00137798314, -0.0120111788, -0.0238997936, 0.00527021103, -0.0169545542, -0.0163553581, 0.00808916148, 0.0158923417, 0.01496631, 0.0191334542, 0.00597494841, 0.00684991246, -0.0245670825, 0.00800745282, -0.0221430566, 0.00102476322, -0.014544148, 0.00981866196, -0.00646860525, 0.0070337574, -0.00732654659, 0.00629156968, 0.000994122471, 0.0110102473, -0.0117728617, -0.0039935126, -0.00314408261, -0.00288193393, 0.0261467844, -0.0110987648, -0.0054472466, -0.012964447, -0.0163281225, 0.00202909927, -0.00237976597, 0.0321115181, -4.67324826e-05, -0.0114051728, 0.0102680596, 0.00185376615, 0.000483443146, 0.00263680774, -0.0214212965, 0.00634604227, 0.029633021, 0.0157016888, 0.00102220988, 0.00834109634, 0.00392882666, 0.00260106032, 0.00708822953, -0.0081572514, 0.00994803384, -0.00469484553, -0.0284891, 0.00506593939, 0.0214621518, 0.00821853336, -0.00837514177, -0.00922627375, -0.00891305692, 0.0108672567, 0.00641413266, -0.0176354609, 0.0107583124, -0.012120124, 0.00592047628, 0.00896753, -0.0245807, -0.0138291977, -0.00671713613, -0.00228443905, -0.00702694803, 0.0270319618, 0.0194330513, 0.00618602941, -0.00852494128, 0.0266915075, 0.00961439, -0.0105608497, 0.0233959239, 0.00636306498, 0.00491273543, 0.00816406123, 0.0015209734, -0.00281043886, -0.00211080816, -0.025874421, 0.00237125461, 0.0224835109, -0.0177716427, -0.00242232252, 0.00873602182, 0.00229975954, 0.0141764591, -0.00673415884, -0.000294279, -0.00600218493, -0.0181120951, 0.00476974528, -0.000766444602, -0.00987994391, -0.00625752471, -0.00904923864, 0.000173311812, 0.021448534, 0.0050829621, 0.006240502, -0.00330069102, 0.00233720918, 0.00410586223, 0.00175673701, -0.00172609626, -0.0281350296, 0.0190653633, 0.0284618642, -0.00753762759, 0.026963871, 0.0133661814, 0.0189428, 0.000428545114, 0.00400713086, -0.0141900778, -0.0106561761, -0.0172133, -0.0288704075, 0.017512897, -0.0245534647, -0.00954629947, -0.00364625081, 0.0129508292, -0.00767380884, 0.00250743562, -0.0140266605, 0.000537490065, -0.00846365932, -0.0188338552, 0.0106289396, -0.00383690442, 0.00393904, -0.000415139773, -0.00390159036, -0.0324928276, 0.0157153066, 0.0118341437, 0.0179214422, 0.0201411936, 0.0138087701, 0.0046471823, 0.0223881844, -0.00555959623, 0.027386032, 0.0103906225, 0.00865431316, 0.00780318072, 0.0181257129, 0.00638349215, 0.000725164718, 0.00732654659, 0.00235082745, -0.00549831474, -0.00358496909, -0.00103582803, 0.01575616, 0.00550512364, -0.0161919408, -0.00170992478, -0.00035215597, -0.00175503478, 0.0216255691, 0.0143262586, 0.0163417403, 0.00674437219, -0.0189700369, -0.00343516981, 0.0219115503, -0.00638349215, 0.000313855038, 0.0289521161, 0.0100025069, -0.0374225825, 0.00483783567, -0.00323940953, 0.0046403734, 0.0135976896, -0.0300960373, 0.0126988934, -0.00567535, 0.00347432191, -0.00192526123, 5.40269502e-06, 0.00276958453, 0.00188270456, -0.00581834046, -0.00836152397, -0.026473619, 0.00378243183, 0.00275426405, 0.0202092845, 0.00402074913, -0.0213804431, 0.0205088835, -0.00200696988, -0.0177716427, 0.00706099346, 0.013754298, -0.0020631447, -0.00715632038, 0.0292789508, 0.00549491, 0.0093147913, -0.00898795668, -0.00426587509, -0.0177988783, -0.0349713229, 0.00335516338, 0.0281895, -0.000823470473, -0.010601704, 0.0109149208, 0.0128010297, -0.0138223879, -0.013509172, 0.00467782281, 0.0143671129, -0.00487528555, -0.000772402564, 0.0189836547, 0.0240768306, 0.00206825137, 0.0028291638, -0.00201037456, 0.00883815717, -0.0128623107, 0.010547231, -0.0119226612, -0.0151161095, -0.00949182734, -0.000711546571, 0.0151842, 0.00977780763, 0.0280805565, 0.0112485643, -0.0045688781, -0.0149254557, 0.0128555018, -0.0191062167, 0.00376540911, 0.000255765248, 0.0028683159, 0.0217889864, 0.00706099346, -0.0342087075, 0.00753081823, 0.0237908494, 0.0221294388, 0.0272907056, 0.00535532413, -0.00592728518, -0.0185887292, 0.0420255065, -0.0161919408, 0.00614517508, -0.0069009806, 0.0242402479, 0.000373008719, 0.0169681739, 0.00344027672, 0.0142581677, 0.00672394503, 0.00064090261, 0.000837088621, -0.0140947504, -0.000966886291, -0.0197598878, -0.016055759, -0.0187521465, 0.0202637576, 0.0253977869, 0.00921265595, -0.00651626894, 0.00571960909, 0.00980504416, -0.0238861758, 0.0153476177, 0.00381307257, -0.00201377901, 0.0183436032, -0.0178805869, 0.0205905922, -0.00137372746, -0.0339635834, -0.00273043243, 0.00137798314, 0.00963481702, 0.0207948647, 0.000468548329, -0.00252956524, 0.00271340972, 0.00525999768, 0.00526680658, -0.000578769948, -0.0128350751, 0.00342836091, 0.0222111475, -0.0274541229, -0.00891986676, -0.00547788758, -0.00830024201, -0.0143943494, -0.0107174581, 0.0314033777, -0.00982547086, -0.00491954479, 0.018901946, 0.0264327638, 0.0219660215, -0.0104450956, 0.00311854878, 0.00696566654, -0.010424668, -0.00311854878, -1.70891399e-05, 0.00854536798, -0.0024716882, 0.0037415775, -0.0314306132, -0.00997527, -0.0154974163, -0.0232188888, -0.00190994085, 0.0142717864, 0.0112758009, -0.00115924212, 0.00264702132, -0.0167230479, -0.029088296, 0.00936926436, -0.000333005504, -0.0107923569, 0.00418076199, -0.00472548651, 0.010302105, -0.00157374365, -0.00154906081, 0.00213634199, 0.00128180522, -0.0258471854, 0.00808916148, 0.0023201867, -0.00795978867, 0.017444808, 0.00506253494, -0.00848408695, -0.000301513617, -0.0117728617, 0.0203727018, -0.0152931446, 0.0255612042, 0.00860665, 0.00126648485, 0.00154991192, 0.00474931812, 0.0123992953, 0.00855217688, 0.0124333408, 0.0180167686, 0.00413990719, -0.0331737325, -0.00193547481, 0.0147756562, 0.0193649624, 0.0368778594, -0.0025448855, -0.0263919104, -0.00938288216, 0.00921265595, -0.0231235623, -0.0115481624, -0.0261467844, 0.00543022389, 0.00603963481, 0.0127942208, -0.0166413393, 0.0236546677, 0.0105336132, 0.0106493672, -0.0109149208, 0.0270455796, 0.0120860785, 0.00959396269, 0.0103429593, -0.0180712398, 0.0119226612, 0.00872240402, 0.000494082284, -0.00376540911, -0.00266404403, -0.00124775991, -0.00259765564, 0.00553576415, 0.00183504121, -0.00457228255, -0.0230690893, 0.014721184, 0.0156472158, -0.00580131775, 0.0132844727, -0.00248700846, 0.0166141018, 0.0123788677, 0.0369323306, 0.0164643023, -0.0127193211, 0.00821853336, 0.0271953791, 0.00148948154, 0.0286252815, -0.0174039528, -0.00993441604, -0.0196645595, -0.0123720588, -0.0216255691, -0.0120384153, -0.0128827384, 0.00740144635, -0.00618943386, -0.00429992052, 0.00163842959, 0.00440546079, 3.87531181e-05, -0.0143262586, 0.00672394503, -0.0111464281, 0.0191606898, -0.0108332112, -0.0135636441, -0.01084683, -0.0146667119, -0.0107446937, -0.0122835413, -0.00477314973, -0.0254931133, -0.0169409364, 0.00518169347, 0.0178397335, -0.011752435, -0.000915818324, -0.00374838663, 0.0152795268, 0.00966205355, -0.0256565306, -0.0264055282, -0.00983228, -0.00128265633, -0.00411948, -0.0244853739, -0.0160149056, -0.0137338703, -7.73466454e-05, 0.000281299232, 0.0135568352, -0.0211625528, 0.015688071, -0.000684735947, 0.00214655558, 0.00791893434, -0.00625071535, -0.0154701807, 0.00289214752, 0.0122018326, -0.015211436, 0.00922627375, 0.000549405871, -0.00613496127, 0.0231371801, -0.00306748063, 0.0079734074, -0.00966205355, 0.000352794334, 0.0023269956, -0.0226196907, -0.000642604893, -0.016546011, -0.00423523411, -0.0151024908, -0.00813001581, -0.00584898097, 0.0165868662, -0.00866793096, 0.0283256825, 0.0275358316, 0.00461313687, 0.00731292879, -0.00540639227, 0.0140538961, -0.0119090425, -0.0154565619, -0.00431013387, 0.00923989248, 0.00295172678, 0.00883815717, 0.0148028927, 0.00123073731, -0.00123329065, -0.00380285899, -0.0131142465, 0.010908111, 0.00798702519, -0.00537575129, 0.00169545552, -0.00165119662, -0.00710184779, -0.0100297425, 0.0183436032, -0.0156472158, 0.0267732162, -0.0125218583, -0.0189564191, -0.0244989917, -0.0282712094, 0.0300143287, -0.000299598556, 0.000164268524, -0.00943054538, 0.00881092157, -0.00914456509, -0.0165187754, -0.00914456509, 0.01084683, -0.00757848192, -0.00516467076, 0.00777594466, -0.00783041678, 0.00358496909, -0.00917180162, 0.00514083914, 0.0239678845, 0.00990037061, 0.0193104893, 0.00777594466, -0.00788489, 0.0103089139, -0.0064720097, -0.0413446, -0.0102340141, 0.018357221, 0.00108944927, 0.00263680774, 0.00896072108, -0.000347900321, -0.0277537219, -0.00434077485, 0.0070405663, -0.000697077368, 0.000789850776, 0.0125218583, 0.026664272, -0.019269634, -0.0311310142, 0.0341814719, 0.00678522652, -0.00943735521, 0.00585919479, 0.00264531909, 0.00200186321, 0.0010571063, -0.00571960909, -0.00895391125, 0.0110647194, 0.0210399907, -0.000145969185, 0.00485485839, 0.00279852306, 0.000877517392, 0.0147075662, 0.0363603719, -0.00435439264, 0.0139994239, -0.0139585696, -0.00853175, -0.0220204946, -0.0129440194, -0.00755805476, 0.00374498195, 0.00132351066, -0.00853855908, -0.0133934179, -0.00486166775, 0.0140538961, 0.000192462292, -0.00321387546, 0.0124878129, -0.00400713086, 0.00959396269, 0.0114255995, -0.0223200936, -0.0142854042, -0.0382669084, -0.00338239968, 0.00228273682, -0.00351347402, 0.0336095132, 0.0177852605, 0.00179248455, -0.0522663295, -0.00384371332, 0.0132163819, -0.010356578, 0.00361560984, -0.0307497066, 0.000218741, 0.0198279768, -0.00775551749, -0.0230827071, 0.00436801091, 0.0014767145, 0.014299022, -0.000826875039, 0.0084296139, -0.0177988783, 0.0107038394, 0.00295683346, -0.00559023675, -0.00576386787, 0.0127125122, -0.00672394503, -0.00430672942, 0.00603963481, -0.0236138143, -0.0017839733, 0.00383690442, 0.0234367792, -0.0214621518, 0.0242811013, 0.0066115954, -0.00795978867, -0.00702013914, 0.0227694903, 0.00471186824, -0.0251526609, 0.0142717864, -0.0103838136, 0.0140811326, 0.00288533838, -0.000967737404, 0.0250981878, -0.0045688781, 0.0192832537, -0.0118000982, -0.0152250547, -0.00459270971, -0.00101965643, 0.010240824, 0.0208629537, 0.00716312928, 0.00302151963, -0.00876325835, -0.00408883952, 0.0330920219, -0.0167230479, -0.00733335596, -0.0106425583, 0.00367689156, -0.00406160345, -0.0123312045, -0.00522595225, -0.00695885764, 0.0191062167, 0.00373476837, -0.00305216038, 0.00400372641, -0.0111191925, -0.0266915075, 0.00705418456, 0.00847727712, 0.0207948647, 0.00554257352, 0.00860665, -0.0257927123, -0.00855217688, 0.0309675969, -0.00500806235, 0.0258199498, -0.00720398361, 0.0100365523, -0.00990717951, -0.0285163354, -0.000605155074, -0.00898795668, -0.0252207518, 0.0212578792, 0.00307258754, 0.0128146475, -0.040418569, -0.0204271749, -0.0153067634, -0.00989356171, -0.00350666512, -0.0215574782, 0.0296057854, 0.0014145819, 0.00340282684, 0.00188610912, 0.00977099873, -0.00108859816, 0.00256190822, 0.00767380884, -0.0147892749, 0.0201003402, 7.4048512e-05, -0.0212306436, -0.00631540176, 0.00269468478, -0.00555959623, 0.0255339686, 0.0281350296, -0.0148709835, 0.0116775353, -0.00369050959, -0.00548810093, 0.000597069273, 0.00860665, 0.00274575269, 0.0269366354, -0.00230146176, -0.0194194335, -0.0134342723, 0.00549831474, -0.0125490939, -0.00289214752, -0.0147075662, 0.012303968, 0.000949012523, 0.0242402479, 0.0267595984, 0.0019576042, 0.00432715658, -0.0226333104, 0.00909690186, 0.00945778191, 0.00847046822, 0.00977099873, -0.0201003402, 0.00996846147, 0.00146054302, 7.68013888e-06, -0.0184389297, 0.00478336355, -0.010547231, 0.0121745961, 0.0122222593, -0.000535362225, -0.0329830796, 0.0124605764, -0.0322749354, 0.00175673701, 0.0101863509, -0.00697928481, 0.0156744514, 0.0204407927, 0.00017916334, 0.00578769948, 3.76892021e-05, 0.00451781, 0.0230554715, 0.0112213278, 0.0218706951, 0.0217617508, 0.0129304016, -0.00773509033, -0.00292959739, -0.0244445186, 0.0102340141, -0.00494678086, -0.0118886158, 0.0189291816, -0.00634604227, 0.0223881844, 0.00609410694, 0.003377293, 0.0252888426, -0.011391554, 0.00683969911, 0.021748133, 0.0195556153, -0.0107310759, -0.0016103423, 0.0109830108, 0.0135840708, 0.0258063301, 0.00213974644, 0.0159059595, -0.00821853336, -0.000630689, 0.0140130417, -0.0110647194, 0.0241449215, 0.00546086486, -0.00809597, -0.00879049394, -0.0209174268, -0.0167502835, 0.00716993818, 0.0100229336, -0.00921265595, -0.00777594466, -0.0202092845, 0.0169137, 0.000674522307, 0.0124537675, -0.0271681417, -0.00492294924, -0.00731973769, 0.000661329774, -0.00613155682, 0.00617241114, -0.0296602584, -0.00898795668, 0.0100774067, -0.0382669084, -0.00554597797, -0.0138019612, -0.00454504648, -0.00882453937, -0.00531447, -0.0173631, 0.0107583124, -0.0231780335, 0.00609070249, -0.00601239828, -0.00557661895, 0.00461654132, -0.0182755124, 0.0159604326, -0.0142854042, 0.00134989584, -0.0196781792, 0.0143398764, -0.00646179635, 0.0022878435, -0.0178261138, -0.00552895525, -0.0182482768, 0.00145203166, 0.0391112305, -0.00115839101, 0.0050046579, 0.000412160822, -0.0131687187, 0.00481400406, -0.0455934554, 0.00246828352, 0.00819129683, -0.033990819, 0.010302105, 0.00708142063, 0.0240359753, 0.0122426869, 0.00104008371, -0.0318119191, -0.0180167686, -0.00476634083, -0.00698609371, -0.0198415965, -0.00657074107, 0.0064720097, 0.0101591153, 0.00425566128, 0.00037811551, -0.0101454966, 0.0224971287, 0.00605665753, 0.00763295451, 0.0127465567, 0.0119635155, 0.0265280902, 0.00983909, -0.0204952657, 0.0021022968, 0.0155246528, -0.0259288941, -0.00196611555, 0.00857260451, -0.0170362629, 0.0127057023, -0.00521914335, 0.00104433927, 0.00185206381, -0.0190789811, -0.0119703244, 0.015088873, 0.00610432075, 0.000373647083, -0.0136998249, 0.0176626965, 0.00617581606, 0.00914456509, -0.00352028315, -0.0159604326, -0.0145986211, 0.0157425422, 0.00233040028, -0.0137747247, 0.0138972877, -0.000621326559, -0.0123720588, 0.00334665203, 0.0037143412, 0.0012026499, 0.0110442927, 0.00630518794, -0.00405138964, 0.00793936197, 0.00592047628, -0.0044292924, -0.025506733, 0.0027508596, 0.0198960677, 0.0247849729, 0.00551533699, 0.00281384331, -0.000638349215, 0.00166566588, 0.0385392681, 0.0104655223, 0.00937607326, -0.0228103455, 0.00497061247, 0.00138819672, 0.00566854095, 0.01496631, -0.0107787391, -0.0354343392, -0.00175503478, 0.0100501701, 0.0277128667, -0.00784403551, -0.0142173134, 0.00701333024, 0.00470505934, 0.00827300549, -0.00904243, 0.0095599182, 0.00615198398, -0.0135023622, -0.00331601128, -0.00593068963, 0.000200441646, 0.0277264845, -0.0345083065, -0.0163962115, -0.029687494, -0.0233550705, -0.0128350751, -0.00806192495, 0.0138223879, 0.0141764591, 0.0147484206, -0.00921265595, 0.0236138143, 0.0166685749, -0.00943735521, -0.00244785636, 0.00519871619, 0.00917180162, -0.00667287689, -0.000430672924, -0.00335856806, -0.037803892, 0.00392201776, 0.0192832537, -0.0144352037, 0.00612474792, -0.0026844712, -0.0031542962, 0.0181938037, -0.00448376499, 0.00750358216, -0.00010335938, -0.00650945958, -0.00430332497, 0.00405479409, -0.0237091407, -0.00457909191, -0.0147620384, -0.00832747854, 0.0249075349, -0.0159468148, -0.0274677407, 0.00332452264, 0.0336639844, -0.0237227585, -0.00989356171, 0.0106902216, 0.0302866902, -0.0122426869, 0.000826449424, -0.0123175867, -0.0151297273, -0.00195249741, -0.0283256825, -0.00253637414, -0.00607708469, -0.00590004912, -0.00677841762, -0.00220953929, 0.0164234489, -0.00867474, 0.00669670897, -0.00315770088, -0.0084159961, -0.0119771333, -0.0118818069, -0.0053621335, 0.00497061247, -0.0235184878, 0.027086433, 0.00594090344, -0.011085147, 0.0179214422, 0.00145373389, -0.0103497682, 0.00645498745, -0.0129848737, 0.000218528206, -0.0194330513, 0.0021022968, 0.0151842, 0.0154701807, 0.0172950085, 0.00859303121, -0.0118681882, 0.000893688877, -0.00533830188, -0.0197598878, -0.00423523411, 0.0133117093, -0.0138360066, 0.0148028927, 0.000173418201, -0.0127737932, -0.0276856311, 0.0102135874, 0.00565151824, -0.00309131248, -0.000989866792, -0.0133797992, -0.0183708388, 0.00131244597, -0.000190228064, 0.00194568839, 0.00561747327, -0.0244581364, 0.00370072317, -0.0231099445, 0.0329286046, -0.0245262273, 0.00867474, -0.0148709835, 0.00543703325, 0.00407522125, -0.00790531654, 0.0146258576, -0.00785084441, 0.0169681739, -0.00243083388, 0.0141492235, 0.0149118379, 0.0181529485, -0.00586940814, -0.00787808, 0.00455526, -0.0017618438, -0.0113507, 0.0296602584, 0.0149390735, 0.00893348455, 0.00324962311, -0.00209548767, 0.0133729903, 0.0123516321, -0.0222792383, 0.00691800332, 0.0015660834, 0.0246760268, 0.00722441077, 0.00130393461, 0.0135364076, -0.00247679488, 0.0131074367, -0.000634944707, 0.0131755276, 0.0024597724, -0.0311037786, -0.0160966143, -0.00617241114, -0.0134819355, 0.00389137678, 0.0178124961, 0.00318153249, -0.00101880531, -0.0260242205, -0.0208357181, 0.00449738279, 0.015633598, 0.0175537523, -0.0126580391, 0.0124741951, -0.0252343696, -0.0081368247, -0.00652307784, -0.0103974324, 0.0294696037, -0.00461654132, -0.00961439, 5.87813229e-05, 0.00746272784, 0.007483155, 0.0257518589, 0.0325745344, -0.0032598367, 0.0245262273, 0.00917180162, 0.00524637941, 0.00182482763, -0.00958034489, 0.0186568201]
|
19 Jan, 2018
|
array::at() in C++ STL
19 Jan, 2018
Array classes are generally more efficient, light-weight and reliable than C-style arrays. The introduction of array class from C++11 has offered a better alternative for C-style arrays.
array::at()
This function is used to return the reference to the element present at the position given as the parameter to the function.
Syntax:
array_name.at(position)
Parameters:
Position of the element to be fetched.
Return: It return the reference to the element at the given position.
Examples:
Input: array_name1 = [1, 2, 3]
array_name1.at(2);
Output: 3
Input: array_name2 = ['a', 'b', 'c', 'd', 'e']
array_name2.at(4);
Output: e
// CPP program to illustrate
// Implementation of at() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Take any two array
array<int, 3> array_name1;
array<char, 5> array_name2;
// Inserting values
for (int i = 0; i < 3; i++)
array_name1[i] = i+1;
for (int i = 0; i < 5; i++)
array_name2[i] = 97+i;
// Printing the element
cout << "Element present at position 2: "
<< array_name1.at(2) << endl;
cout << "Element present at position 4: "
<< array_name2.at(4);
return 0;
}
Output:
Element present at position 2: 3
Element present at position 4: e
Time Complexity: Constant i.e. O(1).
Application:
Given an array of integers, print integers in alternate fashion starting from 1st position.
Input: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Output: 2 4 6 8 10
// CPP program to illustrate
// application of at() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Declare array
array<int, 10> a;
// Inserting values
for (int i = 0; i < 10; i++)
a[i] = i+1;
for (int i = 0; i < a.size(); ++i) {
if (i % 2 != 0) {
cout << a.at(i);
cout << " ";
}
}
return 0;
}
Output:
2 4 6 8 10
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/array::at() in C++ STL
|
https://www.geeksforgeeks.org/arrayat-c-stl/?ref=lbp
|
Pandas
|
array::at() in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, array::at() in C++ STL, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0615617223, 0.0310964137, -0.00771673024, 0.00434603961, 0.0128086247, -0.0126365041, -0.0294899587, 0.0286867302, -0.00631108042, -0.0165379, -0.0294612702, 0.00182967552, 0.0316127762, -0.0212998968, -0.0139130633, -0.04194, -0.0182160735, 0.0289305672, -0.0359731577, -0.0305226799, 0.000445092533, 0.00190587458, -0.0718315691, -0.00545406435, 0.01458003, 0.0228059497, 0.00839086808, 0.00326490845, -0.0221461542, -0.0277113803, 0.0273241103, 0.0280986521, 0.0156486109, -0.0433169603, -0.0113456016, 0.0258897729, 0.0317562111, -0.00299955625, -0.033649534, -0.022289589, 0.0256889667, -0.0232505947, -0.00758046843, 0.00817571767, -0.00495204655, 0.0243693758, 0.00701031927, -0.0242689736, 0.010628433, 0.0370345674, 0.0305226799, 0.0211421195, -0.00184491533, 0.00171313563, 0.0240825098, 0.0130166039, 0.0117257, 0.0301497523, -0.022189185, -0.0616190955, -0.0174415316, 0.00600269809, 0.0327315591, -0.0241972562, -0.0144509403, -0.00652981689, -0.0542466044, 0.0294325836, -0.0105710598, 0.00322367111, -0.0288875364, 0.0110802492, 0.00296907639, 0.0187467784, -0.035743665, -0.011603782, 0.0478207767, 0.0178288016, -0.0071931975, 0.0523532815, -0.0300636925, 0.0208839383, -0.0231788773, 0.0114675201, 0.0106571196, -0.0192918256, -0.0100260116, -0.036432147, 0.0201524273, -0.00532138813, -0.0328749903, 0.0472757295, -0.00328642339, 0.0162366889, 0.010190961, 0.0345101357, 0.0257319957, 0.00631108042, 0.023408372, 0.0569718443, 0.00528194383, -0.00180367811, 0.00781713333, -0.0181587, 0.00955268089, -0.0115320655, 0.00332048885, 0.0217158534, -0.00290094549, 0.00905066356, 0.00775976, 0.00618916191, -0.0030085207, 0.0284142047, -0.0134755913, 0.00895743165, 0.0250148289, -0.037206687, 0.00269296672, -0.00851278659, -0.0257463399, 0.042083431, 0.00483371411, 0.0109941894, -0.0242116, -0.00700314762, 0.0490256213, -0.000364411098, 0.00959571078, 0.0209126249, 0.00943076238, -0.0113958037, 0.0154621471, -0.0353994258, -0.0260332078, 0.031555403, 0.0220600944, -0.00687405746, 0.00948096439, -0.0292461198, -0.058033254, -0.0122492332, 0.00451098802, 0.0147880092, -0.0485953204, -0.0482510775, 0.0228920095, 0.0352559909, -0.0174845625, 0.00441775611, -0.009753488, -0.00362887117, 0.0054719937, -0.0311824754, 0.0260762367, -0.0124572124, 0.00419543404, 0.0129448865, -0.00490184501, -0.028672386, -0.0107073216, -0.00923712645, -0.017455874, -0.0176853687, -0.00482654199, 0.0149601297, 0.0379812308, -0.0125719588, -0.0573734604, 0.0264635086, 0.0232075639, 0.0767656863, 0.0138054881, -0.0117543871, -0.0345961973, 0.00889288634, 0.041108083, 0.0060529, 0.0152326534, 0.00494128931, -0.000267593394, -0.00450740242, 0.00156253029, -0.0116468119, 0.0121703446, 0.00211385335, 0.0293034948, -0.00459346268, 0.0706841, 0.010485, -0.000758853625, 0.0249000806, 0.0306948014, -0.0136907417, 0.00850561541, 0.00643658498, -0.0416818187, -0.0563407354, -0.00224652956, 0.0738396421, -0.0112021677, -0.0149027556, -0.021457674, -0.0166669898, 0.0316988342, 0.0278835017, 0.000324966852, 0.00232003932, 0.0209269691, 0.00820440426, 0.00738683296, 0.0395876877, 0.0124715557, -0.0127153927, 0.0318709575, 0.0192487948, -0.00678082556, 0.0236091781, -0.00187180913, -0.0228059497, 0.00911520794, 0.00755178137, 0.0351699293, -0.0537302457, -0.0429440327, -0.05393105, -0.0210417155, -0.0127655948, 0.000417078147, -0.0160502251, -0.0104061114, 0.0147880092, -0.00993995182, -0.0208695959, 0.030723488, -0.0280843079, -0.00496639, -0.0033796553, 0.00323801464, 0.0432882756, -0.0116611551, 0.029748138, -0.0399032421, -0.026721688, 0.0316127762, 0.0495706685, -0.0353420489, -0.00368983066, -0.0201380849, 0.0202528313, 0.0236665513, -0.0110157039, 0.0306087397, -0.0048372997, -0.0135257933, 0.00467952294, -0.0049735615, -0.0540457964, 0.0354568, 0.0253160391, -0.00447871583, 0.0300350059, -0.00894308742, 0.0483945124, 0.0317562111, 0.00281667826, 0.0223899931, -0.0320430771, -0.0347109437, -0.029059656, 0.0215867646, -0.016337093, 0.0252730083, -0.0171976946, 0.0402187929, 0.0166956764, -0.0282277409, 0.0148310391, 0.0125432722, -0.0241972562, 0.0128014525, 0.0018933242, -0.00549350865, 0.0245128106, 0.01999465, -0.0212998968, -0.0241542254, 0.00167817366, -0.0144150816, 0.0238243286, -0.025846744, -0.0281560253, -0.0124070104, -0.0035894271, 0.0295760185, 0.00414523249, -0.0202958602, -0.0378091075, -0.0306948014, -0.0409072749, 0.00677724, -0.0458700806, -0.0380099155, -0.0262196697, -0.0323012583, -0.019306168, 0.0440054424, -0.0374074951, 0.035743665, -0.0224043354, 0.021601107, -0.0489108749, -0.0102124754, -0.0222465582, -0.00718961144, -0.0213429257, -0.019306168, 0.019650409, 0.0067485529, -0.0155625511, -0.0316988342, -0.0262053274, 0.0213285834, 0.0229924135, 0.0201237407, 0.0121488301, 0.0137983169, -0.00374003244, -0.0282564294, -0.0407351553, -0.0284572355, 0.034911748, -0.0765935704, 0.00179381703, 0.00649037259, -0.0299202595, -0.0321865119, 0.0160215385, 0.0195500068, 0.00590588059, -0.00877096783, 0.0244410932, -0.00580547703, 0.0129664019, -0.0254307855, -0.0109439874, 0.0111519657, -0.0408785902, 0.00705334963, 0.00261945697, 0.000722098746, 0.00788885076, 0.0108794421, -0.0356289186, 0.0233223103, -0.0144652836, -0.014630232, -0.0233223103, 0.000503810705, -0.000491708459, 0.0406777821, 0.0344527625, -0.0279695615, 0.0167673938, 0.0101192435, -0.0328749903, -0.00758764, -0.0331905447, 0.0282707717, -0.00849127211, -0.0160358809, 0.0285002664, 0.00745137781, 0.0206831321, -0.0284142047, 0.0141066993, -0.00148274528, 0.00215150462, -0.00298342, 0.00295652612, -0.0230784733, 0.029260464, -0.0226481725, -0.0118261045, -0.0102053043, -0.00238817022, -0.00594532443, 0.0108005535, 0.0072685, 0.0296333916, -0.017455874, -0.00812551565, 0.0261622965, -0.0512058102, 0.00233079679, -0.00601704139, 0.0150748761, -0.0141712446, 0.000229717945, -0.0662089735, 0.0210560597, -0.0106499484, 0.0223182756, -0.00211385335, 0.0110300472, 0.0330471136, -0.0134397326, 0.00661229109, 0.0142429611, 0.0166526455, -0.0162940621, -0.00504886452, -0.00851278659, 0.0128157968, 0.0294899587, -0.0115248933, -0.0181730427, 0.0530704483, 0.0160071943, 0.0189762712, -0.00785299204, -0.0113814594, -0.0384689048, 0.0143075064, 0.0198655594, -0.000196436857, -0.0187467784, 0.00434245355, -0.0176423378, -0.0407351553, -0.0162940621, 0.0310390405, 0.0129162, 0.0330471136, -0.0220027212, -0.0234514, 0.0361452773, -0.0139919519, -0.0131385224, -0.0401327349, -0.00598835479, 0.0513779335, 0.0310964137, 0.00461856322, 0.0205827281, 0.010434798, -0.038038604, 0.0388992056, -0.0282564294, -0.00571224513, 0.00379382, 0.0085916752, 0.0137839736, -0.0133034708, 0.0335634723, 0.00669835135, 0.00410937378, 5.60287699e-05, 0.0210847463, -0.036231339, 0.0188184939, 0.00292425347, 0.0350838713, -0.0364895202, 0.00467952294, -0.00645092828, 0.0122133754, -0.00311788893, 0.00247064466, -0.00441775611, -0.0066373921, -0.0496567301, -0.00348185189, -0.0111734811, 0.00695653167, -0.0158350747, -0.0197221264, -0.0429727212, -0.0432022139, -0.0576316379, 0.0224760529, -0.0218736306, -0.0296047051, -0.012536101, 0.00802511256, -0.0504886433, 0.00821157638, -0.018918898, -0.0396450609, -0.000372703362, 0.0168821402, 0.00565487146, 0.0155625511, -0.0138198314, -0.0205110107, -0.000244285417, -0.0201093964, 0.0174845625, -0.0486526936, 0.0343953893, 0.0300350059, -0.0118404478, -0.00781713333, 0.0417391919, -0.0148884123, -0.0483945124, -0.0339650884, 0.00936621707, -0.00065038196, 0.0255168453, -0.0242976602, 0.00995429512, 0.0404196, 0.0096602561, 0.0108005535, -0.0478207767, -0.0146876052, -0.0291026868, -0.0238386728, -0.0289018806, 0.0096172262, 0.000859257183, -0.00799642596, 0.0271950196, 0.0041846768, 0.0290883444, 0.00134200102, -0.00576603273, 0.0146230599, 0.00834783819, 0.00177588779, 0.00765935658, -0.0207548495, 0.0143075064, -0.021801915, 0.00256746239, 0.00673062401, -0.0016692091, -0.0133536728, 0.0160789117, 0.00166114094, 0.00623219181, 0.0239534192, 0.0167960804, 0.00959571078, 0.0265925974, -0.0328176171, -0.0175849646, 0.0084841, 0.0189475846, -0.0156772975, 0.0129018566, -0.0121775167, -0.00940207578, -0.0229493827, 0.0127512515, -0.013411046, -0.0118619623, -0.0294612702, 0.0175132491, -0.0162080023, -5.55525221e-05, 0.0507181361, 0.0153760873, -0.0162366889, -0.0146589186, 0.00535366079, 0.0423416123, -0.00677006831, 0.00636128243, 0.00638638297, -0.0265065376, 0.0282420851, 0.00518512633, 0.00753743807, 0.029403897, -0.0212998968, 0.00679158326, -0.0330758, 0.00974631589, 0.00912238, -0.0466446206, 0.0352273025, -0.033362668, -0.0131887235, -0.00360556319, -0.0066911797, -0.0281990543, -0.051836919, -0.00865622051, -0.00106768426, 0.00906500686, 0.00256746239, 0.0186894033, -0.0217158534, -0.0191053618, -0.00460780598, -0.0205110107, 0.00282205711, 0.00735097425, 0.0394442528, 0.00531421648, 0.0110372193, 0.00831197947, -0.0137481149, 0.000972659444, 0.029059656, 0.00537876179, -0.00709279394, 0.0194496028, -0.0660942271, -0.0259328038, 0.0229637269, 0.000369565765, -0.00569072971, 0.0311537888, -0.0200950541, 0.0343380161, -0.0297768246, -0.00231286767, 0.0138341757, -0.0302071255, -0.00576603273, 0.0013518621, 0.00755895302, 0.0366903283, -0.0195930358, -0.0216728244, 0.0222465582, -0.00941641908, 0.0297194514, -0.0396450609, 0.00758764, -0.0289018806, 0.017800115, 0.0342806429, -0.013604681, 0.0224903952, -0.0104491413, 0.0483084507, 0.00198476319, -0.00833349489, 0.0256315935, 0.0337069072, -0.00695294607, -0.00804662798, -0.00813268777, -0.0122492332, 0.0218879748, -0.0151752802, -0.0121488301, 0.0355141722, -0.00963874068, -0.00677724, -0.011998225, -0.0168964844, 0.0206114147, 0.0430874676, 0.0239677615, -0.0192918256, -0.0317275226, -0.011266713, 0.00738683296, -0.0125934742, 0.0178431459, -0.0173985, -0.0478207767, -0.0142142745, -0.0253447257, 0.0108866142, -0.0124500403, -0.0244267508, -0.011166309, -0.0179292057, 0.0123352939, -0.0239821058, -0.0259758327, 0.0289879404, 0.0215150472, 0.0298915729, 0.0235661473, -0.0110013606, -0.019406572, -0.0382967852, 0.0210130289, -0.0125647876, -0.00663380604, -0.00257821986, 0.00223397906, -0.0292030908, -0.0219310038, -0.00421694899, 0.0104921712, 0.00928015728, 0.00182250375, -0.000726581085, 0.0327602439, -0.0229780711, -0.0156772975, -0.0362600274, 0.0157490149, -0.010097729, -0.0171259772, -0.0287154168, -0.004851643, 0.0488248132, -0.00390856666, 0.0219023172, -0.0265925974, -0.0190766752, 0.0149314422, -0.0157920439, -0.0175849646, 0.0199372768, 0.0201667715, 0.0120771127, -0.0201524273, 0.001127747, 0.00824026298, 0.00264276494, -0.0108937854, -0.000242044276, -0.00800359715, 0.00443568546, 0.0153474007, 0.00360018457, -0.026334418, -0.0203532353, 0.01526134, -0.00276647648, -0.0444931164, 0.00607800065, 0.0234800875, -0.00394801097, -0.0188041516, 0.0085629886, 0.0178861748, -0.00432811026, -0.029748138, -0.0227198899, 0.0142931631, -0.00177678431, -0.0420547463, 0.0319283307, -0.0211994927, 0.0214433298, 0.021701511, -0.0118189324, -0.0281990543, 0.0231932215, -0.00155266922, 0.000932318682, 0.00962439738, -0.0256889667, 0.0396163724, -0.0135903377, 0.00973197259, -0.000870911172, -0.00677724, 0.0124572124, 0.0188328382, 0.00481219869, -0.00635411078, 0.0189762712, -0.0265925974, -0.021801915, 0.00328283757, -0.00513851037, 0.0226338301, 0.00492694555, -0.0122492332, 0.0121703446, -0.00398386968, 0.0113097429, 0.0095741963, 0.000340206694, 0.00782430544, -0.012242062, 0.027065929, 0.0223469622, -0.00066651823, 0.0290309694, 0.0216871668, 0.022433022, 0.0192918256, -0.0348256901, 0.0407351553, -0.00638279738, 0.0207261611, -0.0250722021, -0.000963694823, 0.00713582383, 0.0171259772, 0.00660511944, -0.00212281803, -0.0250291713, -0.0125934742, -0.0247423034, 0.000893770892, -0.0320717618, 0.0396737456, -0.0271089599, 0.00768087199, 0.00678441161, 0.0253590681, -0.0240968522, -0.0122635765, 0.0129162, 0.0325307511, 0.0113384295, -0.0258897729, -0.0204536375, 0.0118261045, 0.0211564638, -0.0230928175, 0.00971762929, -0.0339650884, 0.000390632573, 0.019506976, 0.00889288634, -0.0133034708, -0.00746572111, -0.024182912, 0.00206903042, -0.0214003, 0.0121631734, 0.0294325836, 0.000969073561, 0.0384115316, -0.0192487948, -0.0244267508, -2.17811839e-06, -0.00347468, 0.0300063193, -0.00913672335, 0.000654416042, 0.00991126522, 0.0136692263, 0.0134253893, 0.0314406566, -0.00895743165, 0.029360868, -0.0349404365, 0.00433169631, 0.00366831548, 0.0230928175, 0.00925147068, 0.0152900266, 0.00704617798, 0.00689198682, 0.0103487372, 0.0119193364, -0.00762349833, 0.0303218737, 0.0164088085, 0.0195786934, -0.0572013371, -0.021844944, 0.0034208924, 0.00117525947, 0.0252299793, 0.0287871324, 0.0162223447, 0.00546482205, 0.0358584113, 0.0145441722, -0.0138126602, -0.0113384295, 0.0281990543, -0.00275392598, -0.0127727659, 0.00927298516, -0.0293465238, 0.0017095498, 0.00185746572, 0.017312441, -0.00768087199, 0.0435751416, 0.00653698854, -0.00189511711, 0.0298055112, -0.0246705879, -0.0174415316, -0.0194352586, 0.000966384192, 0.00560467, 0.00839086808, -0.0210130289, -0.00512775267, -0.0398171805, 0.0632255524, 0.0107001504, 0.00727208611, -0.00528553, 0.0365755782, -0.00417391909, -0.0188041516, -0.0061246166, -0.0172694102, -0.0185029414, 0.0201667715, -0.00404124288, -0.00833349489, 0.00641865563, 0.0333339795, -0.00704617798, 0.00967459939, 0.02877279, 0.0124930702, 0.0129807452, 0.0193491988, -0.0192918256, -0.0179722365, -0.0156199243, -0.00185925863, 0.00161273207, -0.00884985644, -0.0318996422, 0.0278117843, 0.00408785883, -0.0144796269, 0.0129090287, 0.00792470854, -0.0018825666, -0.0205827281, -0.0401614197, -0.0150461895, -0.0101120723, 0.00707845064, 0.00324160047, 0.00198834902, 0.00749440817, 0.0160215385, 0.00654057413, 0.0135831665, 0.0199372768, -0.0237812977, -0.0597257689, -0.059840519, 0.00773824519, -0.00791036524, 0.0488535, 0.0145226568, -0.00114298682, -0.0128659979, 0.0125432722, -0.0446078628, -0.029016627, 0.00873510912, 0.0304653067, -0.00961005408, 0.00879965443, 0.00958136749, -0.0386697128, 0.0140851839, 0.0184312239, -0.0186176877, -0.0163657796, -0.000164276353, 0.0135831665, 0.0304653067, -0.00114836567, 0.00720036915, 0.0121488301, 0.0143218497, 0.0084841, 0.013755287, -0.00335814035, -0.0249431115, -0.00787450746, 0.01151055, -0.0197221264, 0.00775258848, 0.0463577546, -0.00756612467, 0.0263200738, 0.0103128795, -0.0159785077, 0.00961005408, 0.0153904306, 0.027309766, 0.0200950541, -0.00279874913, 0.00469028, 0.0246849302, 0.00235051895, 0.0306087397, 0.0113025717, -0.00170058513, 0.00688122911, -0.00245630112, -0.0121846879, -0.0248857383, -0.0334487259, -0.000956523116, 0.0236665513, -0.00912955124, -0.0389852636, -0.0263200738, -0.0175132491, -0.0326168127, 0.026477851, 0.00526042888, 0.0429727212, 0.0103343939, 0.0113599449, 0.029748138, 0.0423989855, -0.0407064706, -0.0304079335, -0.00282743573, -0.00636128243, 0.00780996215, 0.0317275226, 0.0216297936, 0.0232362505, -0.026578255, -0.0102196475, 0.0249144249, 0.0197651573, -0.00858450402, -0.0238530152, -0.0106571196, 0.0215150472, -0.0060134558, 0.0204392951, 0.0194639452, 0.0142142745, 0.0139560942, -0.0140564973, -0.0133895306, 0.00179650646, -0.000336844969, 0.0196217224, -0.00794622395, -0.02438372, -0.0199516211, -0.0353420489, 0.0306948014, 0.00284177903, 0.0147880092, 0.00330076669, -0.0219310038, 0.000625281071, 0.0185890011, -0.00478351209, -0.00770955859, -0.0126149897, -0.00953833759, 0.0348256901, 0.012435697, 0.00874945242, 0.0144796269, 0.00787450746, 0.0216441378, 0.0107718669, 0.0027431685, -0.0162510313, -0.0183308199, 0.00746572111, -0.021457674, -0.00541462, 0.00959571078, -0.0067485529, -0.0130094318, 0.0364608318, 0.0245558396, 0.0220027212, 0.0156342667, 0.00743703451, 0.0158494171, -0.0255455319, -0.0164231528, 0.00477634044, 0.00514568202, 0.0254881587, -0.00972480141, 0.00103451521, 0.00221605, -0.0228633229, -0.0300923791, -0.021945348, -0.0130596338, 0.0146732619, 0.0167530496, -0.0138126602, 0.00457553333, 0.0152183101, -0.0107503515, -0.014092356, -0.0183595065, 0.0268938094, 0.0101837888, 0.0141569013, -0.00473689614, 0.00789602194, -0.00133662228, 0.0537876189, -0.00634335307, 0.00249753846, -0.0112738842, 0.0029798341, 0.000569700496, 0.00260152784, 0.0257319957, -0.00390498107, 0.0125863021, -0.0117543871, 0.0149601297, 0.00152846484, 0.0439193845, 0.00123084, 0.0199085902, 0.0122348899, 0.0086203618, -0.0120269116, -0.0198655594, -0.0273527969, 0.0298341978, -0.0235374607, -0.00520664128, 0.00812551565, -0.0176136512, 0.0230211, -0.0348543748, -0.0215867646, -0.0136190243, 0.00475841109, -0.00368265877, 0.0219596922, -0.00654774578, -0.00253698253, 0.00525325723, 0.0287154168, 0.0143075064, 0.00348185189, 0.0145872021, 0.00562618487, 0.00576244667, -0.00807531457, 0.00282205711, -0.00126221613, -0.0198655594, 0.0147880092, -0.0140349828, -0.00676289666, 0.039788492, 0.0054755793, -0.0404482894, 0.00340475608, 0.00546482205, -0.0053644185, -0.00251726061, -0.00620709127, -0.008340667, 0.0216584802, 0.000887047441, -0.0114173181, 0.00458987663, 0.000311968179, -0.00140027096, -0.00416674744, 0.0211277753, -0.0340224616, -0.00695653167, 0.00798208266, 0.0238673594, -0.00441775611, 0.00565845752, 0.0355715454, 0.012536101, -0.0171546638, 0.0210273731, -0.0174415316, -1.25924653e-05, -0.0123352939, -0.0135257933, 0.0127942814, 0.0235948358, -0.00493411766, 0.0337355919, -0.00926581398, 0.0143433651, -0.0235518049, 0.00593815278, -0.0142357899, 0.0267647188, -0.0340798348, -0.00497714756, -0.00890005752, 0.0183595065, 0.00262842164, 0.0166956764, 0.00107754522, 0.0481937043, 0.00266965874, -0.0105567165, -0.0108292401, -0.014436597, 0.0224903952, -0.0138341757, 0.0285432953, -0.0374648683, -0.0242689736, 0.00232003932, 0.00961005408, -0.000462125288, -0.0177714285, -0.0111017646, 0.00748723652, -0.0169968866, 0.00458270498, 0.00714299548, 0.00915823877, 0.016681334, -0.00374720409, -0.0205540415, -0.00993995182, 0.0033939986, 0.0021748126, -0.00319139869, -0.00578037603, -0.0078027905, -0.0121058, 0.0159785077, 0.0119408509, -0.000454281253, -0.0107862102, -0.0133967027, 0.0175132491, -0.0192344524, -0.00881399773, 0.00930884387, 0.00648320094, 0.048566632, -0.0332479179, 0.0129305432, 0.0538449921, 0.0416818187, 0.000704169564, -0.0195930358, -0.00382609246, -0.00668400805, 0.00561184157, 0.0106642917, 0.00945227686, -0.00207620207, -0.0233509969, -0.0309816673, -0.000840879744, 0.0227629188, -0.00549350865, -0.0292030908, 0.0215007029, -0.0195643492, -0.00641865563, -0.0169395134, -0.00343523594, -0.0131743802, 0.0446078628, -0.00476199714, 0.0125934742, -0.0113527728, -0.00391932437, -0.0117974179, -0.00502734911, 0.0060277991, 0.0149457864, -0.00171851437, 0.014537, -0.00361452787, -0.00890005752, 0.00391215272, 0.0232219081, -0.0179722365, 0.000627970439, 0.0350551829, 9.46886212e-05, 0.00349260936, 0.00237741275, 0.0085916752, -0.00854147412, -0.00233976147, -0.0231358465, 0.0141784158, 0.0223182756, 0.0233223103, -0.0012729736, -0.00531421648, -0.0172407236, 0.0216297936, 0.0205683857, 0.0160358809, 0.0169682, -0.021601107, -0.017169008, -0.00163514353, 0.00310892425, 0.00507037947, -0.00383326411, -0.0141999312, -0.00603855634, -0.0127010494, -0.0265495684, -0.0113527728, 0.00114388333, -0.0125719588, -0.00362349255, -0.00900046155, -0.0246992745, -0.00455043232, -0.014285991, 0.00834783819, -0.0131026637, -0.00404124288, 0.0235518049, 0.00117257, 0.0314693414, 0.00835501, 0.00471896678, -0.0135903377, -0.0158637613, 0.00134289754, 0.0105495444, -0.00518154027, -0.0332192332, 0.00720395474, -0.0351699293, -0.00791036524, 0.00699956203, 0.0282707717, 0.0188041516, 0.00876379572, 0.0272237062, -0.0451816, -0.0102124754, 0.00380816334, -0.0010461692, -0.0139345787, -0.0159498211, 0.00164948695, 0.0289592538, -0.000363290543, -0.0115320655, 0.00526760053, -0.0166096166, 0.00594891049, 0.00711072283, 0.0055688112, -0.000679516874, -0.00526401494, 0.0110300472, -0.00803228468, 0.000648140791, -0.00339041278, -0.00659436174, -0.0222609024, 0.018775465, 0.0100188404, -0.0073581459, 0.00877096783, -0.00326311542, -0.0164518394, -0.0305226799, -0.0106714629, -0.00398386968, -0.0111376224, -0.0245414972, -0.000918871781, -0.00642224168, 0.00671628071, 0.0123568084, -0.00839804, 0.0161506291, 0.0225334261, -0.0102770207, -0.00772390189, -0.00517795468, 0.033850342, 0.00661946274, 0.0173554718, -0.0242689736, -0.0126149897, -0.00683461316, 0.0351699293, -0.000667414686, -0.00341730658, 0.00431376696, -0.0125217577, 0.0179578923, -0.00907935, 0.0178431459, 0.0170829482, -0.0221604984, 0.0234370586, 0.00304258615, 0.00324160047, -0.0178861748, 0.000483640324, 0.000385702035, 0.0159354787, -0.0182017293, -0.0112236831, 0.0230928175, 0.0111806532, 0.0119623663, -0.00113222934, -0.0227916073, -0.00399104133, -0.00521739898, -0.00472972449, 0.0180152655, -0.00727925776, -0.0171976946, -0.0150748761, 0.0257463399, -0.0287010726, -0.00687047187, -0.0253590681, 0.011410147, 0.00197759131, 0.00394801097, -0.0230928175, 0.00755895302, 0.000268938078, -0.0086347051, 0.00908652134, 0.0173985, 0.0149888163, 0.00844107, -0.00884268433, 0.00236127642, 0.00408785883, 0.00425639329, 0.00986106321, 0.0276683513, -0.00414164644, 0.00267683039, 0.0298341978, -0.00226087286, 0.00195069762, 0.00752309477, 0.00440699887, 0.012485899, 0.0126365041, 0.0158781055, 0.0293178372, -0.0085629886, -0.0265925974, -0.0177714285, -0.017212037, 0.00897894613, -0.014974473, -0.0188758671, -0.00139309932, -0.0172550678, 0.00453250343, 0.0100403549, -0.015605581, 0.0225334261, 0.00148812414, -0.00168893114, -0.0206544455, -0.00914389454, -0.0154191172, 0.0256029051, 0.0592094101, -0.00109188864, 0.00704259193, -0.00088480633, -0.00877096783, -0.00036620404, -0.0234370586, -0.0296907648, 0.00749440817, 0.00253160391, -0.0114746913, -0.00826895, -0.0029672836, -0.00567280082, -0.0254881587, -0.0136907417, 0.0332766064, -0.0149027556, 0.0348543748, 0.00129807449, -0.00621426292, 0.0361739658, 0.010779039, 0.0400466733, 0.0391573869, 0.028815819, 0.0283424892, 0.0123568084, -0.0461282618, -0.0316988342, -0.0188041516, 0.0096602561, 0.00811834447, 0.008534302, 0.0120484261, -0.011266713, -0.0053644185, -0.00972480141, -0.0319857039, 0.00801794, 0.00685612811, 0.00762349833, 2.37141758e-05, -0.019306168, -0.00488033, 0.0198368728, 0.0240681656, 0.00252981088, 0.0299202595, 0.0114388335, -0.00840521138, 0.011216511, -0.00220708526, -0.0144222528, -0.00814703107, -0.0126149897, -0.0213429257, 0.0129735731, 0.0120340828, -0.00399104133, -0.00163245422, 0.0189475846, -0.00742986286, 0.00405917224, -0.000507396529, 0.0168964844, 0.0161936581, 0.00434245355, -0.00448947307, 0.00104885851, -0.0102841929, -0.0216441378, -0.0155338636, -0.0015374294, -0.0171403214, -0.0134540759, -0.0135544799, 0.0068633, 0.00136799843, 0.0309816673, 0.00866339263, -0.00996863842, -0.00783864874, -0.00498073362, 0.0116898427, -0.00603138469, -0.0097965179, -0.011460348, 0.0055831545, 0.0114890356, 0.00467593689, 0.0191483926, -0.0214146432, 0.0157059841, -0.000216943386, 0.03316186, 0.00760198338, 0.0250578579, -0.00570507348, -0.0056477, 0.010922472, -0.016093256, -0.0119767096, 0.0147019485, -0.00882116891, 0.021558078, 0.0242976602, -0.00246168, 0.00160735333, -0.0068023405, 0.0105280299, 0.0189332422, 0.0128946844, 0.0231788773, 0.0329610519, -0.0133393295, 0.0314406566, -0.000935904565, 0.0181013271, -0.0139991241, 0.00483371411, -0.0129305432, 0.00773107354, -0.00431735255, -0.00808248576, 0.00909369346, -0.00481937034, -0.00538234739, -0.000398252479, 0.00631108042, 0.00184850115, 0.0205683857, -0.0128157968, 0.000142313074, 0.00881399773, 0.0192057658, -0.0105567165, 0.00486957235, -0.00273241103, 0.00565128587, -0.00188077369, -0.00381892081, -0.0086347051, -0.00703542028, -0.00163335062, 0.00196683384, -0.00228238781, -0.00882116891, 0.00884985644, -0.000541910238, 0.0255598761, 0.0128946844, 0.0148310391, 0.00313761109, 0.0230497867, -0.0112093398, 0.0120125683, 0.0141999312, 0.0121129714, 0.00514568202, 0.00322008529, -0.0218592882, 0.000846706738, -0.00183595065, -0.00516361138, 0.000874048797, 0.00626805052, 0.00194531889, -0.000800090784, -0.000583147397, -0.0107933823, 0.0163084064, 0.0251008887, 0.000702376652, 0.0195786934, 0.00953833759, -0.0113671161, -0.00646885764, 0.000718064723, -0.00162797188, -0.0225047395, 0.00949530769, -0.0147880092, -0.0109941894, 0.0156486109, -0.000444196077, 0.0148884123, 0.0154764904, 0.0128946844, -0.00070058374, 0.017556278, 0.00503810681, 0.0181300137, -0.0149170989, 0.00403048564, 0.0206831321, 0.0160071943, -0.00899328943, -0.00505245, 0.0139560942, -0.0139417509, 0.0147306351, -0.010728837, 0.0112810563, 0.0060672434, 0.00335993315, 0.00407710159, 0.00325952959, -0.0011411939, -0.00241506402, -0.000134132875, 0.0175849646, 0.0108937854, -0.0213859566, -0.00510265213, -0.0201667715, -0.00415598974, 0.0382967852, -0.0166383032, 0.00961005408, 0.0101192435, 0.02097, -0.00268758787, -0.0232362505, 0.00410220213, -0.0358297266, -0.0159641653, -0.00828329287, 0.0083693536, -0.0281273387, 0.0261479542, -0.01087227, -0.00361990673, 0.014680434, 0.00902914815, -0.013360844, -0.0342519544, -0.0131958956, -0.00946662109, -0.0310964137, -0.0230354443, 0.0116970139, -0.0353707373, 0.00908652134, -0.0109583307, -0.0232649371, 0.017455874, -0.00342268543, -0.022045752, 0.0033796553, -0.0107144937, -0.00635052472, 0.0182017293, -0.00683461316, -0.0205683857, 0.0141640725, 0.0290453136, 0.00910086464, -0.0154334605, 0.00146660907, -0.0056477, -0.00104347977, 0.00900763273, -0.0249287672, 0.0150175029, -0.00738683296, 0.00260332064, 0.0105423732, 0.00120036036, -0.0130166039, 0.00509189442, -0.000428283907, -0.0145011414, 0.01151055, -0.0142071024, 9.57391603e-06, -0.00864904933, 0.0205683857, -0.0111447945, -0.00963874068, 0.0111161079, 0.00949530769, -0.00380816334, -0.00963874068, 0.00945944898, 0.0162080023, -0.0271519888, 0.0067342096, 0.00624294952, -0.0223899931, -0.00260869949, 0.00232721097, -0.00191125332, -0.0119193364, 0.024283316, 0.00503810681, 0.00684178481, -0.00457194727, 0.0200807098, -0.0283281449, 0.0234800875, -0.00393366767, 0.00884985644, -0.0143935662, 0.0108866142, -0.0168391094, 0.000843569112, 0.0303792469, 0.0103702527, -0.0012460798, -0.0132460976, 0.000740476185, -0.00713223824, 0.0160502251, 0.00235410477, 0.00664097769, -0.0086203618, 0.00162707549, 0.0199085902, -0.00626446446, 0.000945765583, -0.0121631734, 0.00244733668, -0.0225477684, 0.00874945242, -0.0293465238, -0.0215007029, -0.00986823533, 0.00373644661, -0.00597042544, -0.00912238, 0.0174845625, -0.00110354263, 0.0148884123, 0.00593098113, -0.014436597, -0.00665890705, 0.0118619623, -0.00246347277, -0.00223935791, -0.0157633573, 0.00769521529, 0.00316450489, -0.0109941894, -0.00519588403, -0.0474478491, -0.0124643836, 0.0106212618, 0.000188256658, 0.00891440082, -0.00112864352, 0.0253590681, -0.0114460047, -0.0124572124, -0.00371134561, 0.00526042888, 0.00716451043, -0.00259614899, -0.0152469967, -0.00514568202, -0.00857016072, -0.00202420726, 0.0145441722, 0.00249036681, -0.0279265307, -1.91198178e-05, -0.0123137785, -0.0159641653, 0.0134397326, -0.0049197739, 0.0097821746, 0.00382967829, -0.0176566821, 0.00225190818, 0.00696370378, 0.0102841929, -0.0095741963, 0.000234648483, -0.00773824519, 0.00485881465, 0.00532497419, -0.00826895, 0.00483012805, -0.00347468, -0.00635411078, 0.0113312583, -0.0147019485, -0.0121129714, -0.009559853, 0.0126078175, -0.0201811139, 0.0116826706, -0.0169682, 0.0114746913, 0.010922472, 0.00362887117, 0.00185925863, -0.00349978101, -0.0042133634, -0.0085199587, -0.04194, 0.0278978441, -0.00148274528, 0.0162223447, 0.00372210308, -0.0264635086, -0.00399821298, -0.00107575231, -0.00737248966, -0.00609951606, -0.0060134558, -0.00535366079, 0.0149601297, -0.0127799381, 0.00580547703, -0.0158350747, 0.0229637269, 0.000426715094, -0.00149977813, 0.00116360548, 0.0149170989, 0.0127225649, 0.0499435961, 0.0202958602, 0.0176136512, -0.0065692612, -0.0102841929, 0.0174845625, 0.0332766064, -0.00123711524, -0.017169008, 0.011166309, 0.00405558618, 0.011998225, -0.019650409, -0.00828329287, 0.0172407236, 0.0197795, 0.00100044964, 0.00578037603, 0.0110945925, -0.000137830764, -0.00128910993, 0.00951682217, 0.013167209, 0.0139345787, -0.0138198314, -0.00513133872, 0.0103917681, 0.0294899587, -0.00930167176, -0.026822092, 0.0276826937, 0.0182591025, -0.0128875133, 0.0187324341, -0.00918692537, -0.0060529, -0.00571224513, 0.014042154, 0.00394801097, -0.0136118531, -0.017312441, -0.00619633356, -0.0124213537, -0.0272523928, 0.000229381782, 0.0233940277, 0.0265925974, -0.0259758327, -0.0125145856, 0.00435679685, 0.00410937378, -0.00442134216, 0.0180152655, 0.0132819554, 0.0220600944, -0.0190479886, -0.000773197, -0.0154478038, -0.0265925974, 0.00708562229, -0.00972480141, -0.0170829482, -0.0159067921, 0.019306168, -0.00552578131, 0.0375509299, -0.00392291043, 0.00377589068, -0.00479785539, 0.00758046843, -0.0150031596, 0.00535724685, -0.006705523, 0.0236235224, -0.00437831227, 0.0134755913, -0.000817571767, 0.00283460738, -0.0109655019, 0.0122707486, 0.00273420382, 0.00693860278, -0.0104634846, 0.00526401494, 0.0225764569, -0.0126221608, -0.0134827625, -0.0182591025, -0.00276289065, 0.0118332757, 0.0102124754, 0.0168534536, -0.00878531113, -0.0197221264, 0.017068604, 0.00298342, 0.00519229798, 0.00912955124, -0.0157346707, 0.000110376677, 0.0404196, 0.00154101523, 0.00163872936, 0.0278117843, -0.0126938773, -0.00692425948, -0.00407351553, -0.0042384644, 0.00417391909, -0.00536083244, -0.0284572355, -0.00940924697, 0.0248857383, 0.0169825442, 0.00640072627, -0.0159067921, -0.0104993433, 0.0170972906, 0.0208122227, -0.00413447479, 0.00229673134, -0.00905066356, 0.0107073216, 0.00473331055, -0.0213429257, 0.00292246067, -0.00824026298, -0.000733304536, -0.0147736659, 0.0209269691, 0.015605581, 0.00673062401, -0.00266069407, 0.0183595065, 0.00803228468, -0.0106356051, 0.0221318118, -0.00245988695, 0.0153187132, 0.0179722365, -0.00398028363, 0.00319677731, 0.003365312, -0.00104885851, 0.0116754984, 0.00748006487, -0.0154908337, 0.00355177559, -0.00564052816, 0.00297804107, -0.00249215961, -0.00297266222, 0.00716809649, 0.0135329645, -0.0157059841, -0.0073043583, -0.00427790871, -0.0147880092, -0.00081802, -0.0273814835, -0.00321470667, 0.0193205122, 0.00226087286, -0.00691708783, 0.00211743917, -0.00210488867, 0.00879965443, 0.00541103445, -0.0125934742, -0.0353707373, 0.00963874068, 0.013360844, -0.0153904306, 0.0235661473, 0.00852713, 0.0151609369, 0.0095741963, 0.000469745195, -0.0167960804, -0.015117906, -0.0172407236, -0.0249861404, 0.0192487948, -0.0175706223, -0.0174989048, -0.00318601984, 0.0113312583, -0.00635769637, -0.0169825442, -0.00261049229, -0.0086060185, -0.0267503746, -0.0162223447, -0.011948023, -0.0225334261, 0.00742986286, -0.00965308398, 0.000500224822, -0.029748138, 0.0104634846, 0.0216584802, 0.0135688232, 0.0100044971, 0.0119767096, 0.00159838866, 0.0301497523, -0.0183451641, 0.0347396284, 0.00273420382, 0.0146158887, 0.000258180575, 0.0132460976, -0.00877813902, 0.00574451778, 0.0176710244, 0.00297086942, 0.00117167365, -0.00905066356, -0.00182250375, 0.0101766177, 8.94779441e-05, -0.0261909831, 0.00583416363, 0.00496639, -0.0100546982, 0.0189762712, 0.0149457864, 0.0143720517, -0.000992381596, -0.0130237751, 0.00259794202, 0.0171259772, 0.00710713724, 0.00237741275, 0.0134827625, -0.00240430655, -0.0208982825, 0.0134827625, -0.00458987663, 0.00607800065, 0.0154621471, -0.00833349489, 0.00777410343, -0.00295652612, 0.000237337867, 0.000319139857, -0.00723981345, 0.0114962067, 0.0033939986, -0.0129090287, -0.0297194514, -0.0132389255, -0.00652981689, -0.00438906951, 0.00456477562, 0.00882116891, -0.0228633229, 0.0156772975, 0.0135831665, -0.0218306016, 0.00321829249, 0.0097678313, -0.00415957579, 0.00242044288, 0.016925171, 0.0298341978, 0.0318135843, -0.00349798799, -0.0185603146, -0.019894246, -0.0336208455, -0.0026750376, 0.0268938094, 0.0096315695, -0.0129735731, 0.0104276258, 0.015505177, -0.0211994927, -0.00467952294, -0.00201524282, 0.0152326534, -0.00827612169, -0.0135042779, 0.0274675433, 0.0230211, -0.00968177151, 0.0010596161, -0.00313581806, -0.00717168255, -0.00910086464, 0.01658093, -0.00978934672, -0.0130452905, -0.0177427419, 0.00321829249, 0.0116611551, -0.00226087286, 0.026334418, 0.0107718669, -0.00758764, -2.10247945e-05, 0.0186320301, -0.022332618, -0.017312441, -0.00370775978, 0.000417078147, 0.026090581, 0.00846975669, -0.0247136168, -0.0108937854, 0.0159067921, 0.00577320438, 0.0210990887, 0.0110443905, -0.00167458784, -0.0200376809, 0.0374935567, -0.0106858071, -0.00241864985, -0.010678635, 0.0174845625, -3.9640352e-05, 0.0120412549, -0.00745854946, 0.0209413134, 0.00535366079, 0.00912955124, -0.00349978101, -0.00271089585, 0.00293680397, -0.00925147068, -0.0142214457, -0.00449305912, 0.0196934398, 0.0133249862, -0.010190961, 0.00182519318, 0.0163944662, 0.00282743573, -0.00995429512, 0.00460780598, -0.00805379916, 0.0131241791, 0.0326454975, -0.0149314422, 0.0181013271, -0.00768087199, -0.0298341978, 0.00822592, 0.00699597597, 0.0073007727, 0.0129520586, 0.00648320094, 0.00079605676, 0.00609951606, 0.0142214457, 0.00882116891, -0.010097729, -0.0042133634, -0.0114531768, 0.0167530496, -0.0205253549, -0.0125719588, -0.00988975, -0.00041416465, -0.0244124066, -0.0296620782, 0.0352273025, -0.019363543, -0.013848519, 0.0191770792, 0.0259758327, 0.00993995182, -0.000651278417, 0.0111519657, 0.00788885076, -0.0164661836, -0.00633976702, -1.37620664e-05, 0.00562259881, -0.0190910175, -0.0105782319, -0.0220600944, -0.00309099513, -0.0231358465, -0.0097678313, -0.00449664472, 0.0191914216, 0.000269162207, 0.019363543, 0.00407710159, -0.0166096166, -0.0257750265, 0.021844944, -0.0121560013, -0.00597759709, -0.00171403203, 0.000587181479, 0.0171546638, -0.0096315695, -0.00953116547, -0.00385477929, 0.00289377384, -0.0179722365, 0.000313312863, 0.00695294607, -0.00740117626, 0.0135114491, -0.00442134216, -0.00916541, -0.00116808771, 0.00790319405, 0.0279695615, 5.35074723e-05, 0.0234944317, -0.00159659574, -0.00794622395, 0.0148597257, 0.00511340937, 0.0277400669, 0.0115177222, 0.002413271, 0.0151896235, -0.00329359504, -0.0265639108, -0.000692963833, 0.0226338301, 0.0105854031, 0.0496567301, 0.000542806694, -0.0174845625, 0.000644106709, 0.00654774578, -0.0228633229, -0.0144652836, -0.0255168453, 0.00804662798, 0.00755178137, -0.00644375663, -0.00619633356, 0.0307521746, 0.00282743573, 0.00234155427, -0.0107216649, 0.0205970723, 0.0199516211, 0.0153904306, 0.00849127211, -0.0258754306, 0.0183451641, 0.00444285711, -0.0119193364, 0.00639355462, -0.0139919519, -0.0073294593, -0.0113742882, 0.00613896, -0.019406572, -0.00125863031, -0.0122277187, 0.00834783819, 0.00459704828, 0.000211676685, 0.0243693758, -0.0132747842, 0.0312398486, 0.0394729413, 0.0214003, 0.0146374041, -0.0156629551, 0.0147880092, 0.026922496, -0.00585926464, 0.0150605328, -0.0130022597, -0.0205827281, -0.0188902114, -0.0153760873, -0.0259901769, -0.00866339263, -0.0048910873, 0.0105495444, 0.0010739594, -0.00768804364, 0.00337786227, 0.00407710159, -0.00465442194, -0.0127727659, 0.0228059497, 0.00334738265, 0.0255742185, 0.005486337, -0.00321112084, -0.0038942236, -0.0166526455, 0.00186463736, -0.00790319405, 0.00385477929, -0.0361739658, -0.00968177151, 0.00624294952, 0.0138413468, -0.00750875147, 0.00306768715, 0.00424205, 0.0233796854, 0.00682744151, -0.0212281793, -0.00999732502, -0.0119551942, -0.00174361526, 0.0163801219, -0.00949530769, -0.00928732846, -0.0236952379, 0.00164679752, -0.00568355806, 0.00346212974, 0.0117543871, 0.00895026, 0.00365038635, 0.00361990673, 0.00456836168, -0.0101694455, -0.0135688232, 0.000463918201, -0.00190766749, -0.00811117236, 0.00295473309, 0.00783147756, -0.00684895646, 0.0361452773, -0.00493411766, 0.00221784273, -0.00113133295, -0.00768804364, 0.00324339326, -0.0377230495, 0.00439982722, -0.0155768944, -0.0072685, -0.0161936581, -0.0121775167, -0.00401972793, 0.00746572111, 0.00476558274, 0.0293752104, 0.0241111964, 0.0134182181, 0.010678635, -0.00500583416, 0.0221174676, -0.0204106085, -2.90229018e-05, 0.00233796844, -0.000102308528, 0.0044321, 0.0144796269, 0.00641148398, 0.00968177151, 0.0143720517, 0.00315554021, 0.00225728704, 0.0191053618, 0.0171403214, 0.00841955468, 0.00159032061, -0.0115822665, -0.0274101701, -0.00632542372, 0.0197077822, -0.00977500342, 0.00779561885, -0.00412730314, -0.0283281449, -0.0257033091, -0.0234944317, 0.0261622965, -0.00945944898, -0.00311430311, 0.00846258551, 0.00292783929, -0.00971045811, -0.00753026642, -0.0125217577, 0.0187037475, -0.00647961488, 0.00722547, 0.00733663095, -0.00197938434, 0.00232721097, 0.0134827625, -0.00391215272, 0.0182877891, -0.00781713333, -0.00370058813, -0.00503810681, 0.000463021745, 0.0029529403, -0.0103917681, -0.0389565788, -0.0137266, 0.0287584458, 0.017312441, 0.00683819922, 0.00327387289, 0.00323801464, -0.0204106085, -0.0259041172, 0.0105423732, 0.00437831227, -0.00736531755, 0.00613537431, 0.0203245468, -0.0184455663, -0.0129377153, 0.0215867646, 0.00737966131, -0.0102124754, 0.00246347277, -0.00479427, 0.0184599105, 0.00169431, -0.00442492822, -0.00172927196, 0.00720036915, 0.0134325614, 0.00405917224, -0.0119336797, 0.00301031373, -0.00131958956, 0.00370417396, 0.0222752448, 5.6392957e-05, 0.021213837, -0.0114244903, -0.00270013837, -0.0230928175, 0.00779561885, -0.013066805, 0.00593456719, -4.28059793e-05, 0.000558494765, -0.0179005191, -0.00242044288, 0.0230497867, 0.00758046843, -0.00821874756, -0.00196324801, 0.019851217, 0.00199372764, 0.0119193364, -0.00631825207, -0.00512058102, -0.0412802026, 0.00168982765, -0.0122707486, 0.00247064466, 0.0296047051, 0.00911520794, 0.00107216649, -0.047792092, -0.0072075408, 0.0103917681, -0.00892157294, 0.000579113374, -0.0114244903, 0.0101551022, -0.00311430311, -0.00219274196, -0.0193491988, 0.000435455586, -1.79572198e-05, 0.0150175029, 0.00827612169, 0.00693501672, -0.00690991571, 0.00188435952, -0.00203675777, -0.0127010494, -0.00897177495, -0.000900942599, -0.0211134329, -0.00022411508, -0.00711789494, -0.0188615248, 7.49664905e-05, 0.00557598285, 0.0264491644, -0.0158207305, 0.0227055456, 0.00335814035, 0.00711430889, 0.00148902053, 0.0149601297, -0.0026893809, -0.0376943611, -0.00813986, -0.00291349599, 0.000684895669, 0.00447154371, -0.0068633, 0.0237095822, -0.0135401366, 0.0189762712, -0.0105495444, -0.00994712301, 0.00472255284, 0.00745137781, 0.017068604, 0.0257893689, 0.0113527728, 0.00783864874, -0.0185459703, -0.0119838808, 0.0433456488, -0.0165952723, 0.0112093398, 0.000801435497, -0.00457194727, -0.0183595065, -0.0127727659, 0.00189870293, -0.00169520639, 0.0149170989, 0.00303720753, 0.00466517918, 0.00202420726, -0.0151322493, -0.0119695375, 0.00292246067, -0.00166472676, 0.0132102389, 0.0066768364, 0.00808248576, -0.0255598761, -0.000550874858, 0.011704186, -0.00562977046, 0.0159067921, 0.0005230846, -0.00527477218, -0.00583416363, -0.0323012583, -0.00221246411, 0.00380457751, -0.0241685696, 0.00662663439, -0.00326670124, 0.0147162918, -0.0413662642, -0.0254881587, -0.00895743165, 0.00404482894, -0.00040026952, -0.0048910873, 0.0369198211, -0.00440341281, 0.0001240477, -0.00177230197, 0.0104921712, 0.00646168599, -0.00746572111, 0.0132604409, -0.00614971761, 0.0253447257, 0.00820440426, -0.00772390189, 0.00704976358, -0.000318243401, -0.00630749483, 0.0132030668, 0.0161506291, -0.0234514, 0.0072075408, -0.00204930827, 0.00687764352, 0.00308740931, 0.00140296039, 0.000238682551, 0.0278117843, -0.0100188404, -0.0144724548, -0.0125145856, 0.00106499484, 0.00129628158, -0.00128910993, -0.0236808956, 0.00862753391, -0.00171851437, 0.0122994352, 0.0380099155, -0.00379740587, 0.00600986974, -0.0171976946, 0.00793188065, 0.0129305432, 0.00522098457, -0.000397580152, -0.0104276258, 0.0055831545, 0.00155266922, -0.0130954916, -0.00573734567, 0.00503810681, -0.00648678653, 0.00266069407, 0.0135401366, 0.011998225, -0.0143648796, 0.00407710159, -0.0317275226, 0.013310642, 0.0204823241, 0.00616047531, 0.0129018566, 0.00380457751, -0.00382967829, 0.0143720517, 0.0104276258, -0.00339041278, 0.0238243286, 0.0138054881, 0.00955268089, 0.0198655594, 0.0158924479, 0.00126849127, -0.00704617798, -0.0101694455, 0.00868490711, 0.0208552517, -0.011216511, 0.00232362514, -0.00630749483, 0.0217301976, 0.0111447945, -0.00291708182, 0.022189185, -0.012822968, 0.00981803332, 0.00633976702, 0.0139919519, -0.0125432722, -0.00134200102, 0.00509548048, 0.0124643836, 0.0277974401, -0.00752309477, 0.019162735, -0.00260152784, -0.0159785077, 0.0192774814, 0.00534648914, 0.0183021333, 0.00604572799, 0.00180636754, -0.00651905918, -0.0273384526, -0.0141282147, 0.0182447601, -0.00516361138, -0.00372927473, -0.000943076215, -0.0111519657, 0.00280950661, 0.0192918256, 0.0176710244, -0.0176710244, -0.00560467, -0.000988795655, 0.00481219869, -0.0066087055, 0.0160789117, 3.10119249e-05, 0.00134648336, -0.00301389955, -0.0393581912, 0.00315195438, -0.00658719, -0.00919409655, -0.00584850693, -0.00862753391, -0.00207440904, 0.0267647188, -0.0173698142, 0.00451098802, -0.00738683296, -0.0170112308, -0.0010327223, -0.0264204778, 0.00468310853, -0.0168534536, -0.0110730771, -0.0263917912, 0.00775976, -0.00763067, -0.00953833759, -0.00254594721, -0.0121990321, -0.0208122227, 0.00929450057, 0.0138772056, -0.00262483582, 0.000863739464, -0.00758046843, -0.0134755913, -0.0031160959, -0.0409072749, 0.00166383025, 0.00651188754, -0.0303792469, 0.0208409093, 0.0033258677, 0.0219883788, 0.00147736655, -0.00160556042, -0.0335061, -0.00692425948, -0.00225549401, 0.000153294706, -0.015361744, 0.0073007727, -0.00212461082, 0.012485899, -0.0126508474, -0.00614613155, -0.00394442538, 0.0336782187, -0.000198790076, 0.00893591624, 0.0116754984, 0.0121846879, 0.00585567858, -0.00188435952, -0.0236235224, 0.00718602585, 0.0134253893, -0.0244984664, -0.0106858071, 0.0142286178, -0.00885702763, 0.00968177151, -0.00240251352, -0.00829046499, -0.010678635, -0.0107001504, -0.00377589068, 0.0161793157, 0.0127512515, -0.00649754424, -0.0187898073, 0.0115320655, -0.00415240414, -0.00657284679, -0.00146302325, -0.0171259772, -0.0137481149, -0.00751592312, -0.013755287, -0.00624294952, 0.00322367111, -0.0109511586, -0.00404482894, -0.00953116547, -0.0138628623, -0.0132676121, 0.00436755456, 0.019506976, -0.00149260636, -0.00391573878, 0.0159641653, -0.00438548392, -0.00546840765, 0.000685792125, 0.0366042666, 0.0271950196, 0.00394083932, 0.00448588748, -0.00963874068, -0.00644734222, 0.0404769741, 0.0181730427, 0.0130309472, -0.0174845625, 0.00655491743, -0.00702824863, 0.0136190243, -0.00548275094, -0.0182017293, -0.0357149765, 0.0100403549, 0.0169968866, 0.0323873162, -0.0136190243, -0.028672386, 0.00328104477, -0.00644734222, 0.00981803332, 0.00524967164, 0.00760915503, -0.00434603961, -0.0167387072, -0.00902197603, 0.00203317194, 0.0109655019, 0.0118691344, -0.0175275914, -0.0181156695, -0.022088781, -0.0230784733, -0.0161075983, 0.00731870206, 0.0166383032, 0.00627163611, 0.0073581459, -0.00355894747, 0.00737248966, 0.0132819554, -0.0112021677, 0.000747199636, 0.00506679341, -0.00740117626, -0.00727925776, -9.7153883e-05, -0.00441058446, -0.0351699293, 0.00222860021, -0.0020385508, -0.00389063777, 0.0102555053, 0.0133967027, 0.00140923553, 0.038727086, -0.00608875835, 0.00631466648, 0.00788885076, -0.0196217224, 0.016480526, 0.0163084064, -0.0223039314, -0.0102339908, -0.0113814594, -0.00544330711, 0.0169968866, -0.0135616511, -0.0181587, 0.00310713146, 0.00520664128, -0.00297624827, -0.0131887235, 0.00396594033, 0.0104276258, -0.0118261045, -0.0015105356, -0.00555805396, -0.0170542598, -0.00155715155, -0.0233079679, 0.00146391965, -0.013848519, 0.00845541339, 0.00410578819, -0.00481937034, 0.00915823877, -0.0151752802, 0.00345137203, -0.00579113327, -0.00655850349, -0.00527477218, 0.000146235092, -0.00948096439, 0.00581982033, -0.033850342, 0.0305513665, 0.00740834791, -0.00375079, 0.0187180918, -0.0172694102, -0.0236808956, -0.00147736655, -0.00271986052, 0.00164052239, -0.0188471805, -0.0133034708, -0.00187718787, -0.000980727607, 0.0215437338, 0.00455760397, 0.000731063366, -0.0083693536, -0.00144599041, -0.0267503746, -0.00638996903, 0.0128301401, -0.0165379, 0.0127584226, 0.0134397326, -0.0127225649, -0.0178718325, -0.00392649602, 0.00684895646, 0.00961005408, -0.005486337, -0.0182160735, -0.009753488, -0.000524429255, -0.00642224168, 0.00797491055, -0.00577320438, -0.021457674, -0.00948096439, -0.0336782187, 0.0445218049, -0.0214863606, 0.0169682, -0.00693501672, 0.000595249643, 0.0161793157, 0.0104061114, 0.00451098802, -0.007315116, 0.0184742529, -0.00193814712, 0.00448588748, 0.00228597363, 0.0106858071, -0.0142501332, 0.00393008208, -0.00284357206, -0.00282564294, -0.00579830538, 0.0297768246, 0.00943793356, -0.00196683384, -0.00271089585, 0.00392291043, -0.0133895306, 0.0200376809, -0.0230354443, 0.011216511, 0.00590588059, 0.0253877547, 0.0116970139, 0.00538593344, 0.0215150472, -0.00401255628, 0.0144509403, -0.00553295296, -0.00242761453, 0.0167817362, -0.0220314078, -0.0226625167, -0.0120771127, -0.000342447835, -0.000648140791, 0.00516002532, 0.0104276258, 0.00486957235, -0.0328463055, -0.0108937854, 0.00455401838, 0.0237812977, 0.00826177839, -0.0102841929, -0.00210847449, -0.00882116891, -0.00657284679, -0.00506320782, -0.00298879854, 0.0255742185, -0.0126221608, 0.00513492478, -0.0154908337, -0.0035894271, 0.00292963232, 0.0162223447, 0.0246992745, -0.00386553677, 0.023408372, 0.00351591734, 0.00640789839, 0.00157956302, -0.0109296441, 0.00375437574]
|
28 Sep, 2021
|
array::front() and array::back() in C++ STL
28 Sep, 2021
Array classes are generally more efficient, light-weight, and reliable than C-style arrays. The introduction of array class from C++11 has offered a better alternative for C-style arrays.
array::front()
This function is used to reference the first element of the array container. This function can be used to fetch the first element of an array.
Syntax :
arrayname.front()
Parameters :
No parameters are passed.
Returns :
Direct reference to the first element of the array container.
Examples:
Input : myarray = {1, 2, 3, 4}
myarray.front()
Output : 1
Input : myarray = {3, 6, 2, 8}
myarray.front()
Output : 3
Errors and Exceptions1. If the array container is empty, it causes undefined behavior. 2. It has a no exception throw guarantee if the array is not empty.
C++
// CPP program to illustrate
// Implementation of front() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
array<int, 5> myarray{ 1, 2, 3, 4, 5 };
cout << myarray.front();
return 0;
}
Output:
1
array::back()
This function is used to reference the last element of the array container. This function can be used to fetch the last element from the end of a array.
Syntax :
arrayname.back()
Parameters :
No parameters are passed.
Returns :
Direct reference to the last element of the array container.
Examples:
Input : myarray = {1, 2, 3, 4}
myarray.back()
Output : 4
Input : myarray = {4, 5, 6, 7}
myarray.back()
Output : 7
Errors and Exceptions1. If the array container is empty, it causes undefined behavior. 2. It has a no exception throw guarantee if the array is not empty.
C++
// CPP program to illustrate
// Implementation of back() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
array<int, 5> myarray{ 1, 2, 3, 4, 5 };
cout << myarray.back();
return 0;
}
Output:
5
Difference between front(), back() and begin, end() function
begin() and end() function return an iterator(like a pointer) initialized to the first or the last element of the container that can be used to iterate through the collection, while front() and back() function just return a reference to the first or the last element of the container.
Application Given an array of integers, print the difference between the first and the last element.
Input: 1, 2, 3, 4, 5, 6, 7, 8
Output:7
Explanation: Last element = 8, First element = 1, Difference = 7
Algorithm 1. Compare the first and the last element. 2. If first element is larger, subtract last element from it and print it. 3. Else subtract first element from the last element and print it.
C++
// CPP program to illustrate
// application Of front() and back() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
array<int, 8> myarray{ 1, 2, 3, 4, 5, 6, 7, 8 };
// Array becomes 1, 2, 3, 4, 5, 6, 7, 8
if (myarray.front() > myarray.back()) {
cout << myarray.front() - myarray.back();
}
else if (myarray.front() < myarray.back()) {
cout << myarray.back() - myarray.front();
}
else
cout << "0";
}
Output:
7
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/array::front() and array::back() in C++ STL
|
https://www.geeksforgeeks.org/arrayfront-arrayback-c-stl/?ref=lbp
|
Pandas
|
array::front() and array::back() in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, array::front() and array::back() in C++ STL, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0269132722, 0.02033264, -0.00809184089, 0.0339884795, 0.013470374, -0.0415994823, -0.0326146521, 0.0110249622, -0.0127834603, -0.021637775, -0.024687672, 0.0136627099, 0.013889391, -0.0101525821, -0.00671457965, -0.00399783673, 0.00157818384, 0.0434678867, -0.0186016187, -0.0178734902, -0.0133467298, -0.0114508485, -0.0391265936, -0.00428977469, -0.0190000273, 0.0392365, 0.0128040677, 0.00163657148, -0.0209646, -0.0307737254, 0.0367636122, 0.00435503153, -0.00577350799, -0.0173514355, -0.014205371, 0.0309111085, 0.00732249813, 0.00524801947, 0.000926474575, -0.0148922848, 0.0262675732, 0.0128521519, -0.00335728982, 0.0127559835, -0.00299150846, 0.0109906159, -0.0340983868, -0.0246052425, 0.0269819628, 0.00173445663, 0.0232726298, 0.0307737254, 0.0286030788, 0.0240694489, 0.016142467, 0.00328688114, 0.0189588126, 0.025347108, -0.0147274258, -0.0689661205, -0.0038261083, -0.017104147, 0.0327795111, -0.0287129842, -0.0118286507, 0.0281085018, -0.0481663756, 0.0403905138, 0.0222010445, -0.000878819963, -0.029372422, 0.0286855083, -0.0102762263, 0.0172277912, -0.0367910862, -0.00218438497, 0.0389892124, 0.0128452824, -0.0339884795, 0.0601736233, -0.00450271787, 0.0337686688, -0.0157715343, 0.0073156287, 0.00684509333, -0.0167744271, -0.0210745074, -0.0353073552, 0.0223384276, 0.0149747143, -0.0224208571, 0.0139168678, -0.0170079786, -0.0182306841, -0.00844903663, 0.0426435918, 0.0283557903, 0.0290152263, 0.00798880402, 0.032752037, 0.0218850654, 0.0253745858, 0.00284553925, -0.0190000273, 0.0306912959, 0.0117462212, 0.0103105716, 0.0240144972, -0.00559834531, 0.00556056481, -0.00585250324, -0.00886805356, -0.0413521938, 0.0478641354, -0.00688287336, 0.0105029074, 0.0423138738, -0.0456660092, 0.0190961957, 0.0157852732, 0.0101388432, 0.0464078784, 0.0147823785, 0.0089916978, -0.0331367068, 0.0170079786, 0.0348952077, -0.00299322559, 0.00272532948, 0.00894361362, -0.00581128849, -0.0289602745, -0.0119797718, -0.0204562843, -0.0248387922, 0.00145453936, 0.042918358, 0.0437151752, -0.0149884531, 0.0040184441, -0.0176811535, -0.0359118395, 0.00941071473, 0.027284205, -0.0375604294, -0.0107089821, -0.00428290572, 0.0623717457, -0.0323673636, -0.0011179517, -0.0415720046, -0.00360286143, 0.0263637397, -0.0253608469, 0.0454462, -0.033576332, 0.00743927341, -0.00387762673, 0.0171316229, -0.0544585027, 0.0375329554, -0.0374505259, 0.000462378666, -0.00209852075, -0.0105235148, 0.0354447365, 0.0800116882, -0.0236160867, -0.0375604294, 0.0349226817, 0.00592806377, 0.050859075, 0.00505224895, 0.0208821706, -0.0317628793, -0.0118011739, 0.0426985435, -0.0037127675, -0.0181894694, -0.0281359777, 0.0104685621, -0.0104754306, 0.0209096465, 0.00161510543, -0.0108807096, -0.00773464609, 0.0370109, -0.030031858, 0.0539089739, 0.00330577139, -0.00652911281, 0.00466757733, 0.0239458047, -0.0105441222, 0.0152220037, 0.0174750797, -0.0315430686, -0.00756978709, -0.00658406597, 0.0496501103, -0.00657376228, 0.00765221659, 0.00881996937, -0.0270369165, 0.035527166, -0.0226544086, 0.00218438497, -0.0133055151, 0.0133329909, 0.0293174684, -0.00946566835, 0.0158402249, -0.00242995657, -0.00612039957, -0.0159913469, 0.0118973423, -0.0346753933, 0.0132024782, 0.000447352417, -0.0196182504, 0.00365781435, -0.0119454265, 0.0246189795, -0.0339335278, -0.0345929638, -0.0307187717, -0.0172964819, 0.000117526608, 0.0120759392, -0.033713717, -0.0257867333, 0.0276276618, -0.0306912959, 0.00256562186, 0.0109494012, 0.00366124907, -0.0110524381, 0.00713703129, 0.0184642356, 0.0531671047, 0.01453509, 0.0538540184, -0.0313507318, 0.00457484415, 0.0247563627, 0.0189450756, -0.0284656957, -0.0164996628, -0.0137520088, -0.00148802635, 0.0428908803, -0.0260477606, 0.0442921817, 0.00478091789, -0.011368419, 0.000476975576, -0.0012441721, -0.0254707523, 0.00229257392, 0.00077020179, -0.00183749362, 0.0347303487, -0.00224105525, 0.018409282, 0.0190961957, 0.0214179642, 0.0141229415, 0.0110730454, -0.0305264369, -0.0689661205, 0.0172140524, 0.00669740699, 0.00798880402, -0.0328069888, 0.00241450104, 0.0283557903, -0.0364888459, 0.0430282615, 0.0204013307, -0.00181688624, 0.0151945269, -0.0265698154, 0.00721259182, -0.00611353, 0.0259515923, -0.0212393664, -0.0194121767, -0.0246189795, 0.00738432026, -0.00480152527, -0.0281359777, -0.0203738548, 0.00510376738, -0.00250379974, 0.033741191, -0.000475687615, -0.0127697224, -0.0340159573, -0.0295098051, -0.021788897, 0.0321750306, -0.0607781075, -0.0148098553, -0.0446493775, -0.0207173117, -0.0361316502, 0.0098640779, -0.0265972912, 0.0380550101, -0.0105990758, -0.00974043366, -0.0656139776, -0.0104754306, -0.0145900426, 0.00324738375, -0.0276688766, 0.0319277383, 0.00331607508, -0.0217476822, -0.0269132722, -0.0223246887, -0.021788897, 0.000418802578, 0.0124949571, 0.00235783053, -0.0344555825, -0.00147772266, -0.0177223682, -0.0131269172, -0.0553652309, -0.0512437485, 0.0351424962, -0.051326178, -0.0206898358, 0.00263259606, -0.0207860023, -0.0546233617, 0.00639173, 0.00358568854, -0.0173789114, 0.0182581618, 0.0026549208, -0.0195907727, 0.0268171038, 0.0101182358, -0.0323673636, -0.0260752365, -0.024852531, 0.0121446308, 0.00612726854, 0.000764191267, -0.0107021127, 0.00778273027, -0.0481388979, 0.04162696, -0.0170217175, -0.0259515923, -0.0271742977, 0.00193709612, 0.0309385844, 0.0361866057, 0.0372856669, -0.0101457126, 0.0155654605, 0.0136764478, -0.0249899141, -0.0169255491, -0.0191786252, 0.0231352467, -0.00845590513, -0.0062406091, 0.00937636942, 0.00167950359, -0.000697646523, 0.0099259, -0.00868258718, 0.0101594506, -0.00405622413, 0.0230116025, 0.00697560655, -0.0463254489, 0.0760550648, -0.0260477606, -0.023080295, 0.00576663902, -0.0112035591, -0.0120553318, 0.013559673, 0.0213904865, 0.0176262, -0.0157165807, -0.00482213264, 0.0208409559, -0.00989155471, -0.0267346743, -0.0219400171, -0.0197556335, -0.0174750797, -0.0174201261, -0.0533869192, 0.0285481252, 0.0407202318, 0.0492929146, -0.00480152527, -0.0209920779, 0.0280947629, 0.00491143158, 7.73314387e-05, 0.00928020198, 0.0153044332, -0.000470965082, 0.00420047622, -0.00296403188, 0.0107433274, 0.0209920779, -0.0206348822, -0.0341258645, 0.0375054777, 0.00970608834, 0.00174991216, -0.0324497931, 0.00939010736, -0.0281909313, 0.0202502105, 0.0233687982, -0.000227754761, -0.0166095681, 0.00458858209, -0.00623030541, -0.0103380485, -0.0341533385, 0.0267209355, 0.0441273227, 0.032916896, 0.000484274031, -0.023258891, 0.0657788366, -0.0221323539, -0.0379725806, -0.0211981516, -0.00151378568, 0.0572061576, 0.0763847828, -0.00507972529, 0.0165134016, 0.0199754443, -0.0254570153, 0.0173651744, -0.000173874985, -0.0031391948, -0.00594523642, 0.0155791985, -0.00968548097, -0.0163485408, 0.0310210139, -0.00908099674, 0.0223796424, -0.0368460417, 0.0355821215, -0.000768913829, -2.79595261e-05, -0.0172140524, 0.0344555825, 0.0137520088, 0.0124812182, -0.0154006006, 0.0138138309, -0.0211294591, -0.0158814397, -0.0102693569, 0.0123644434, -0.026308788, 0.00763160922, 0.00858641881, 0.0517932773, -0.0116294455, -0.0146587342, -0.0519031845, -0.0308012012, -0.0601736233, 0.0131200477, -0.00908099674, -0.00324394903, -0.0241244026, -0.00629556226, -0.0241518784, 0.0163760185, -0.0203738548, -0.0351424962, -0.00221701339, 0.0189038608, -0.0105029074, 0.000647416, -0.0407751873, 0.00534075266, 0.0324223191, -0.0131956087, 0.023080295, -0.0082841767, 0.0176948924, 0.0254432764, 0.00280088978, 0.0125705171, 0.0248937458, 0.0152906952, -0.00680387858, -0.0657238886, 0.0217339434, -0.0213767476, -0.0119454265, -0.0268995333, 0.0114714559, 0.00933515467, -0.000999459182, -0.00159535662, -0.0266522449, 0.017104147, -0.0178734902, -0.0357469805, -0.0287404619, 0.0100289369, 0.00149918871, 0.0119248182, 0.032752037, 0.0236985162, 0.00209336891, -0.00270987372, -0.0255394448, 0.0167057365, -0.0152357416, -0.0228604823, 0.00409057, -0.0171453618, 0.00711642392, 0.0114371097, -0.00207619602, 0.00366468355, 0.0243167393, 0.00224964181, 0.00740492763, -0.0292350389, 0.00837347563, 0.0250448659, 0.0243442152, -0.00881996937, 0.0153456479, 0.0220911391, -0.0226269308, 0.0196045116, 0.0204562843, -0.00500759948, 0.0245915037, -0.0165820923, 0.00240076263, -0.0217614193, -0.00131887395, -0.0380824842, 0.00513124373, 0.00329203298, -0.00197487627, -0.000312116317, 0.0407477096, 0.0302791484, 0.0312133506, -0.0119591644, -0.025182249, 0.0207447875, 0.0228467435, -0.00430351309, 0.00721946126, 0.00557430321, -0.0235336572, 0.0193022694, 0.00222216523, 0.0193434842, 0.0347303487, 0.0178460125, -0.00330577139, -0.0200990885, 0.016307326, 0.00304817874, -0.0273528956, 0.0206898358, -0.0541837364, -0.0295647569, -0.0150434058, -0.0233001057, -0.0247975774, -0.0419841558, -0.0160050858, 0.00290907873, 0.0120759392, 0.0105235148, 0.0282184072, -0.0325322226, 0.0126392087, -0.012584256, -0.0493478663, -0.0180658251, 0.0172140524, 0.0113752875, 0.00734997448, 0.0117805665, -0.0225582402, -0.0161836818, -0.0248800069, 0.0447592847, 0.032916896, 0.0092389863, 0.0109906159, -0.0455835797, -0.0050934637, 0.0179696567, -0.012117154, 0.0112379054, 0.0199891832, -0.022448333, 0.00405279, -0.034235768, 0.0137588773, -0.018409282, -0.0329993255, -0.0315705463, 0.00912221149, -0.00646042172, 0.042286396, -0.0253608469, -0.0332191363, -0.0114439791, -0.0308561549, 0.0157990102, -0.00482213264, 0.00369902933, -0.044731807, 0.00657032756, -0.00217579864, 0.00664932281, 0.0397310778, -0.0291800853, 0.0065531549, -0.0472321734, 0.0133742057, 0.00901917461, 0.0439624637, -0.00301555032, -0.00947253779, -0.00400127145, -0.0170079786, -0.00996711478, 0.0197144169, -0.0353073552, 0.0307737254, -0.0205249749, 6.07757465e-06, -0.0164721869, -0.00749422656, 0.0266110301, 0.0336312838, 0.00656002387, 0.0112997275, -0.00805062614, -0.0356095955, -0.0144938752, -0.0239595436, -0.00965800416, 0.00754917972, -0.052617576, -0.00959618203, 0.0148373321, -0.00778273027, -0.00936263148, -0.019838063, -0.00349638984, 0.0116912676, 0.0255669206, -0.0190275051, -0.0139718205, 0.0411873348, 0.0233550593, -0.000351613853, -0.0142878015, -0.0192473158, 0.000494577747, -0.0215278696, -0.0189450756, -0.00141847646, -0.00975417159, -0.00840782095, 0.0385495871, -0.0273941103, 0.00380550092, -0.0187527388, 0.0159501322, 0.0161562059, 0.00869632512, 0.00304646138, 0.0131406551, -0.00375398225, 0.00699277967, -0.0114714559, 0.0373680964, -0.0188076925, -0.0185191892, -0.0292899925, -0.00456110574, 0.0387693979, -0.0014167591, 0.0181070399, -0.00487365155, 0.00466070836, 0.0217614193, -0.0203051642, -0.0333290435, 0.0101388432, 0.0118973423, 0.0118355202, 0.00144251843, -0.00265148608, 0.00963052735, -0.0141916331, 0.00256733922, -0.00310484902, 0.0131612625, 7.46481819e-05, 0.0136627099, 0.024371691, -0.0256768279, -0.0202776864, -0.00184264546, -0.00578381168, -0.0134909814, 0.0190824568, 0.00681418227, -0.00308767613, -0.0254020616, -0.00772777712, 0.0229154341, 0.00565329799, -0.017598724, -0.00946566835, -0.000772348372, 0.0401981771, -0.0176536776, 0.0077621229, -0.00860702619, -0.0115401475, 0.036021743, 0.00934889261, -0.0212393664, 0.0345929638, -0.0106815053, -0.00537166372, 0.0177361071, -0.00106128142, 0.036159128, -0.0166782606, 0.00970608834, 0.00567390583, 0.0135047194, 0.0217202045, 0.0320376456, -0.000529782032, -0.000560263812, 0.0222972129, -0.00759039447, -0.0105097769, 0.0052720611, -0.00486334786, 0.026954487, 0.0107158506, 0.000328430528, -2.02049177e-05, 0.0181070399, -0.0176124629, 0.0172277912, 0.00305161322, 0.0245777648, -0.0123713128, 0.0238771141, -0.00272189477, -0.00667679915, 0.0614375435, -0.0159089174, 0.00735684391, 0.013875653, -0.0323124118, 0.0230528172, -0.00917029567, 0.0149747143, -0.00772777712, -0.00385701936, 0.0195220821, 0.0155654605, -0.00254158, 0.0161974207, -0.020167781, -0.0229016971, -0.0208546948, -0.0386045389, -0.0173376966, 0.0364064164, -0.0202914253, 0.00720572285, -0.000947940629, 0.0232176762, -0.0258554239, 0.0253745858, -0.00579755, 0.022434596, 0.0236710403, -0.00624404382, 0.00855894201, -0.000899856677, 0.0450340509, -0.0201128274, -0.000179885479, 0.000609206443, 0.00272876397, 0.02033264, -0.0211706739, -0.0012742246, 0.00798880402, 0.00344143668, -0.00997398421, -0.0412697643, -0.00156101095, 0.0170904081, 0.0258554239, 0.0482213274, 0.00643637963, -0.017763583, -0.00816740189, -0.0286580324, 0.0268171038, -0.0152494796, 0.00404592045, -0.00544722425, 0.00165460294, -0.000692494679, 0.00736371288, -0.0145900426, 0.00589371799, -0.033246614, -0.00169152452, -0.0112104286, 0.0111692138, 0.00587997958, 0.0344555825, 0.00230974657, -0.0103243105, 0.00675235968, -0.00194224797, 0.00411804672, 0.0179833956, 0.0277650449, 0.0194946062, -0.0453362912, -0.0106402906, -0.0109631401, 0.00239389366, 0.00052892341, 0.0108738411, 0.00339507, -0.0153181711, 0.0292350389, 0.00349123799, 0.00277684792, -0.0208409559, 0.0131200477, -0.04162696, 0.00663901912, -0.0125155644, 0.0105647296, 0.000184178687, 0.000507886696, 0.00124674803, 0.00636768807, 0.0409125686, 0.0111623444, -0.0255806595, 0.0247563627, 0.0064432486, -0.0252372026, -0.0224895477, 0.0144389225, 0.00320101692, -0.00339507, -0.00115315604, -0.0210195538, -0.0325871781, 0.0467101187, 0.00694469549, -0.0260340218, -0.0245915037, 0.043110691, -0.00146656041, -0.0146037815, -0.00283523556, -0.00343456748, -0.0107914116, 0.019838063, -0.00821548607, -0.018725263, 0.0213630106, 0.0279299039, 0.016953025, 0.00542318216, 0.00985034, -0.00694126124, 0.0338236205, 0.00885431562, 0.00826356933, -0.0249624364, -0.000736285408, 0.00300524663, 0.0243854299, -0.00897796, -0.0315155908, 0.0380275324, 0.0176399387, 0.00245056394, 0.00787889771, -0.0174201261, 0.0236710403, -0.0261301901, 0.0141504183, -0.00651537487, -0.00552965375, -0.012268275, -0.0241381414, -0.0050110342, 0.00649820175, 0.0195632968, -0.0192473158, 0.00908099674, 0.0191374104, -0.045226384, -0.0496226326, -0.0572611094, -0.0196045116, 0.00725380657, 0.0204013307, 0.0275727082, -0.00901230518, 0.0038020662, -0.00710955495, -0.0387419239, -0.0282184072, -0.00133518816, 0.00373680959, 0.0123644434, 0.0107639348, 0.011952295, -0.0373406187, 0.0142740626, 0.0151395742, -0.0200303979, -0.000748306396, -0.000260168483, -0.00393944886, 0.0364888459, 0.0131131792, 0.0242205709, -0.00375741697, 0.0304714832, 0.00556743424, 0.0317903571, -0.0461331122, 0.00420734519, -0.0122614065, 0.0285481252, -0.00342426379, 0.0200441368, 0.0251272973, 0.00844216719, 0.00999459159, 0.0041833031, -0.0436327457, 0.00291938242, 0.00770030031, 0.0232451539, 0.0543760732, -0.0194533914, 0.025827948, 0.0287129842, -0.0192885306, 0.020827217, 0.0103105716, -0.0193709619, 0.00379176252, -0.0449790955, -0.0205387138, -0.00539227109, -0.0240694489, 0.0132505614, 0.00484960945, -0.0108807096, -0.0120828087, -0.0142603246, -0.00405965885, -0.0203875937, 0.0120484633, -0.00303787505, 0.00802315, -0.00749422656, 0.0345929638, 0.020662358, 0.0382198691, -0.020648621, 0.0123781813, -0.0124193961, -0.0459132977, 0.00808497239, -0.00315980217, -0.00225135894, 0.014686211, -0.0105647296, -0.0237809457, 0.00269441819, 0.0156204132, -0.0159913469, -0.034538012, 0.00456110574, 0.0356095955, -0.00109219248, 0.00955496728, 0.0121308928, -0.00573572796, 0.0124949571, -0.0130650951, -0.00120553316, 0.00747361919, -0.000616504869, 0.0263774786, -0.00799567346, -0.00500759948, -0.00239045895, -0.0340983868, 0.0123026213, -0.00845590513, 0.000895563513, -0.0057632043, -0.0114714559, -0.0102418801, -0.00629899697, -0.0320651233, 0.0119797718, -0.0190000273, -0.012357574, 0.021637775, -0.000620368752, 0.00782394502, 0.00743240444, -0.00478778733, 0.0258554239, -0.0067557944, 0.00991903152, -1.66764348e-05, 0.00798193458, 0.00397036, -0.0341808163, 0.00869632512, -7.37895389e-05, -0.0107570654, -0.0158814397, 0.0418467708, 0.00983660109, 0.0322299823, 0.0187802147, 0.00269785291, 0.0218850654, -0.0172003135, -0.0202364717, -0.0147686405, -0.0397860296, 0.0287129842, -2.91401593e-05, -0.00820861664, -0.00317525771, -0.0118973423, -0.0104616927, -0.0324772708, 0.0172964819, 0.0101525821, 0.024701409, 0.000270042889, 0.0227093603, 0.00268239737, -0.0333015658, -0.0316529758, -0.0157440584, 0.00210539, 0.0116569223, 0.034043435, 0.0204562843, 0.0141092036, 0.0131681319, 0.0579205491, -0.00290564424, 0.0144663984, -0.0277650449, 0.0271605607, 0.00546439691, 0.0152769564, 0.0218713265, 0.0177223682, 0.00974730309, -0.0110524381, -0.000931626477, -0.00568420952, 0.0202227347, -0.00107501959, 0.00198518, 0.00379176252, 0.00122528197, -0.0111142611, 0.0118149128, -0.0130994404, 0.0192335788, -0.0161836818, 0.00477404892, 0.00669053756, -0.006456987, 0.0170491934, -0.0173239596, 0.00624404382, 0.00326627376, 0.0202502105, -0.0137451394, 0.0172003135, -0.0111142611, -0.00810558, 0.0177086312, 0.0254570153, 0.00709581655, 0.0202776864, 0.0183818061, 0.00525488844, -0.000699793163, -0.00301039848, -0.0135665415, 0.0019611381, -0.0227231, 0.0106471591, 0.00401157513, -0.0187664777, 0.00431381678, 0.00477404892, -0.0296197105, 0.00887492299, 0.0199754443, 0.0139786899, -0.0126254708, -0.00139099988, -0.0201952569, 0.022118615, -0.000917029567, -0.0107914116, -0.00867571775, 0.00762474, -0.0191923641, 0.00168723136, -0.00204013311, -0.0343181975, 0.0153868627, 0.0152220037, 0.00789950509, -0.0130032729, 0.010736458, 0.0245090742, -0.000667164742, -0.0153593859, -0.00344143668, -0.00631616963, 0.012913974, -0.0252784174, -0.00286958111, 0.0444295667, 0.0207722653, -0.00110507209, 0.0105784684, -0.00848338194, 0.00660123909, -0.00944506098, 0.027778782, 0.00744614238, 0.0131750014, -0.0187527388, 0.000274121412, -0.0162661113, 0.0104204779, 0.00157646649, -0.00174905348, -0.0057494659, 0.0300868116, -0.00930080935, -0.00682105124, -0.0152494796, -0.00903978199, 0.00379176252, -0.0184504967, 0.023258891, -0.0408576168, -0.0170629323, -0.0133329909, -0.00480496, -0.0100289369, 0.00265320344, -0.0149334995, 0.0120622013, -0.0104548233, -0.0109356632, 0.0039360146, -0.00510376738, -0.0160463, -0.0109287938, -0.0294823274, -0.0391540714, 0.00789950509, -0.00442028837, -0.021308057, -0.0114302412, 0.00842156, -0.0117599592, 0.00179284427, 0.0291800853, 0.0202502105, -0.00188557757, -0.0206211433, 0.0417368636, -0.0152082648, -0.0126186013, 0.0248113163, -0.0275864471, 0.0157028437, 0.00118234986, 0.00447867624, 0.00260683685, 0.0317903571, -0.0153731247, -0.0251959879, -0.00248147501, -0.00570138218, 0.0106059443, 0.0046297973, 0.010255619, 0.00748048816, -0.026308788, -0.0225719772, -0.0168156419, 0.00443402678, 0.00589371799, -0.0260615, 0.0170904081, 0.0186840482, -0.029207563, -0.0145076131, -0.0112310359, -0.0218301117, 0.0313782096, 0.0116088381, 0.0010818888, 0.00539570581, 0.00194396521, -0.0249487, -0.0112791201, -0.0152906952, 0.00544035481, -0.0104204779, 0.00536479475, -0.0188763831, -0.00704086339, 0.00415239204, 0.0111829517, -0.0111005222, -0.00693782652, 0.0461056344, -0.018244423, -0.00320960348, 0.0307462495, -0.00369216013, -0.00402874779, -0.00635395, -0.0193572231, -0.000534933875, -0.00130513567, 0.0209508613, -0.00578037743, -0.0169255491, -0.0122339297, -0.0168019049, 0.0137039246, 0.0283557903, -0.00270128739, -0.00951375253, -0.0138275689, 0.00412835041, 0.000185144658, -0.0138275689, -0.0138550457, -0.0145488279, -0.0117462212, -0.0282184072, -0.0145488279, 0.00372994039, 0.00434129359, -0.0122339297, 0.00710955495, 0.0206760969, -0.00529953791, -0.0029537282, -0.00965113472, -0.00785829, 0.0136558404, 0.0171865765, 0.02342375, 0.00354447379, 0.0370109, 0.012913974, 0.00945193, -0.0291526094, -0.0109837474, 0.0296746641, 0.0170904081, 0.0046297973, -0.00377458986, 0.00752857234, -0.0454187207, -0.0109219253, 0.0147549026, 0.00504881423, 0.0127559835, -0.00281806267, 0.0340159573, -0.034538012, -0.0163485408, 0.00743927341, 0.000738432049, -0.0440174192, 1.57775448e-05, -0.0112516433, 0.0186840482, -0.000287430361, 0.00445119943, -0.0118286507, -0.0031683885, 0.00397036, 0.00643981434, -0.00224792445, 0.0105853369, 0.00739118923, 0.0232314151, 0.0139031298, -0.00330405403, 0.0055021774, -0.00421421463, -0.00871006306, 0.00106900919, 0.0103105716, 0.00719885342, 0.0183405913, 0.00314091216, -0.0122407991, -0.0242755227, -0.0186703093, 0.000365566782, -0.012749115, -0.000200278228, 0.0214179642, -0.00414208835, 0.00646042172, 0.000709238229, -0.0233001057, 0.00910160411, 0.00585250324, -0.0170766693, -0.00586624164, 0.0190687198, 0.0178597514, -0.00737058185, 0.0103586558, -0.0064947675, 0.0105097769, -0.00380550092, 0.0138344383, -0.00835286826, 0.00334526878, 0.012178977, 0.012192715, 0.0216515139, 0.00182718993, -0.00669053756, 0.0280947629, 0.00671457965, 0.000871092197, 0.00621656748, 0.0265423376, -0.0271880366, 0.0155379837, 0.0146724731, 0.000355907076, -0.0131063098, -0.0317903571, -0.00595210539, 0.0419292, 0.0131269172, 0.00817427, -0.00135150237, -0.0143977068, -0.0218988024, 0.00341911195, 0.0117324833, -0.0116157075, 0.0233687982, -0.0169667639, 0.0252646785, -0.0176674165, 0.0147686405, -0.0120484633, 5.05257085e-05, 0.0229154341, -0.0105029074, -0.0290152263, -0.0103998706, 0.0123369666, -0.0274765398, 0.0193709619, 0.000371577276, 0.029042704, -0.00467788102, -0.00165632018, 0.0282458831, -9.32163093e-05, -0.000111408786, 0.0134222899, 0.018739, 0.00212943181, 0.00864137243, 0.030031858, -0.0101525821, -0.00139443448, 0.0138138309, 0.00604140433, 0.0176399387, 0.00126134499, 0.0135115888, -0.00175248808, -0.0126048634, -0.0226544086, -0.0102418801, 0.00465040468, -0.0219400171, -0.0132505614, -0.0109287938, 0.00454736734, 0.00256047, -0.0112310359, 0.0056807748, -0.0199342296, 0.0322574601, -0.0141916331, 0.014521352, -0.0113409422, 0.0299494285, 0.00577694271, 0.0302516706, 0.0471222661, 0.0092595946, -0.0189862903, 0.000974558527, -0.00247975788, 0.00717137707, -0.035994269, -0.0155379837, 0.00693095755, 0.00189072941, -0.0129071046, 0.00282493187, -0.013710794, 0.00183921098, -0.00668366859, -0.0137657467, 0.0272979438, -0.0413796715, 0.00778959924, -0.00462292787, -0.0151807889, -0.0029829219, 0.0212668423, 0.0326696075, 0.0506392643, 0.0096717421, 0.0320651233, -0.0136970552, -0.0385770611, -0.0187527388, 0.0117668286, 0.00609292276, 0.000100675759, 0.0401707031, 0.00546439691, -0.00246430212, 0.00551935, 0.0047122268, -0.025347108, 0.0128864972, -0.0092595946, 0.0106883738, -0.0119110802, -0.016307326, -0.00359942671, 0.024687672, 0.0243854299, 0.0204425454, 0.0128933666, 0.00272189477, -0.0192335788, 0.00849712, 0.00440998469, 0.0002335506, -0.011773698, -0.0129551888, -0.0231489856, -0.0148235932, -0.00968548097, -0.0257592574, -0.0183405913, 0.0133329909, -0.000490713865, 0.00485647842, -0.0312408265, 0.00317697506, 0.0237809457, 0.02970214, -0.00325081823, -0.0145900426, 0.0099259, -0.0118423887, -0.0300868116, -0.00913594943, -0.00897796, -0.00798880402, -0.00697904127, 0.00980912521, 0.0198655389, 0.0175575092, -0.00171127333, 0.0036165996, -0.0147411637, -0.0105372537, 0.00667679915, 0.00526862685, -0.00767282397, -0.0217202045, 0.0091496883, 0.0234512277, -0.0128315445, 0.0189450756, -0.0241518784, 0.00425886363, -0.00718511548, 0.0381649137, 0.000164966579, 0.0293998979, 0.00552278478, 0.00205387152, 0.0149197616, -0.0217202045, -0.0183543283, 0.0142740626, -0.00834599882, 0.0155242458, 0.0126872929, -0.0121446308, -0.00615131063, -0.00277169608, 0.0194671284, 0.018739, 0.034043435, 0.00634708069, 0.0256081354, 0.00320445164, 0.0292350389, -0.00103122892, 0.0182718989, -0.00952749047, -0.00103723945, -0.0246327184, -0.00687943865, -0.0236023478, -0.0165271387, -0.00593836745, -0.0110799149, -0.0163760185, -0.000911877665, 0.00772777712, 0.00339507, -0.013875653, 0.0113203349, 0.00774838449, 0.0029966603, 0.0139992973, -0.0110455696, 0.00763847819, 0.0044958489, 0.0149747143, 0.00530297216, 0.00635395, -0.0250860807, 0.00338820089, -0.0118836034, -0.00131028751, -0.0146037815, 0.0192198399, 0.0085520735, 0.00233550603, 0.0176674165, 0.0193984378, -0.00872380193, 0.0152494796, 0.0195358209, -0.0180246104, 0.00620626379, 0.0261714049, 0.0134497667, -0.0129208434, -0.00978851784, -0.0183543283, -0.000548242824, -0.00473970314, -0.0127559835, 0.00641920697, 0.0151670501, 0.0118149128, -0.00901230518, 0.0055708685, -0.0153593859, 4.19929565e-05, 0.0415994823, 0.00884744618, 0.0106334211, 0.000210259939, -0.00805062614, -0.016458448, 0.0147411637, 0.0124606108, -0.0141916331, 0.0162798502, 0.00202296022, -0.0210470296, -0.00891613774, 0.00351356273, 0.0155654605, 0.00301726768, 0.00190618495, -0.0153593859, 0.0183955431, -0.00540944375, 0.00189931586, -0.000416226656, 0.0119110802, 0.0167744271, 0.0227368381, 0.00143479055, 0.0088131, 0.00327142561, 0.00381237, 0.00542661687, -0.00500073051, -0.0019044677, 0.0090672588, 0.0153181711, 0.0157440584, -0.00140645541, -0.0140817268, -0.00149403687, 0.0032216243, 0.00652911281, 0.0059658438, -0.017749846, 0.00441685412, -0.0182306841, -0.000656002434, 0.037478, -0.0115951, 0.0148373321, -0.00970608834, -0.00178940967, 0.0222559981, -0.0106608979, -0.015812749, -0.0289053209, -0.01016632, -0.00318727875, 0.0105029074, -0.0318178348, 0.011368419, -0.0019044677, 0.0139855593, 0.0181345176, 0.00728815235, -0.00408026623, -0.0333015658, -0.0134016825, -0.00748735713, -0.0265972912, 0.00431381678, -0.00691721914, -0.0259653311, 0.00295716268, -0.0145900426, -0.0141641563, 0.0267071966, -0.00161682267, -0.0361866057, -0.0150571447, -0.0179421809, 0.00657376228, -0.000154340887, -0.0104754306, 0.000499729591, 0.00318040955, 0.00354447379, 0.00285756029, -0.0211294591, -0.000476116926, 1.85413e-05, -0.00476031052, 0.013964952, 0.002826649, 0.0155654605, -0.0159913469, 0.018560404, -0.0093420241, -0.00876501668, -0.0122133223, 0.0147823785, 0.0106128138, 0.0037127675, 0.0209371243, -0.00646042172, -0.0118973423, -0.00701338705, 0.0107914116, -0.00612726854, -0.0122888824, -0.0111760832, 0.0111692138, 0.0184504967, 0.00255703554, -0.00133948133, -0.00374367856, -0.0111623444, 0.0181757323, 0.0095893126, -0.0205387138, 0.00881996937, 0.00763847819, 0.0121240234, -0.0141504183, 0.0235473961, 0.00130513567, 0.0121377613, -0.00221873075, 0.00597614748, -0.0118698655, 0.0225032866, -0.0131818699, -0.017914705, -0.0183405913, -0.00320273428, -0.00673862174, 0.00309111085, 0.0189725515, 0.00362690329, -0.00757665606, 0.00577007374, -0.00131801527, 0.00413521938, 0.0247151479, 0.00114285236, -0.00520337, -0.0187115241, -0.010331179, -0.0218988024, 0.00454736734, -0.000925615954, -0.00580441905, -0.00758352503, -0.0112035591, 0.00440998469, -0.00627152, -0.0251547731, 0.000314477598, 0.00484960945, -0.00338304904, -0.00318556139, 0.00678327074, -0.00197487627, 0.0241106637, -0.0210195538, -0.0191236716, -0.00398066361, 0.0113890264, 0.00275624054, 0.00421078, -0.0132711688, -0.00454393309, -0.00290736137, 0.0139374752, -0.0150434058, -0.029372422, 0.00393258, 0.0152220037, 0.00800941139, 0.020002922, -0.00333496509, 0.0144938752, -0.00174132572, 0.00798193458, -0.0140336435, -0.00263087871, -0.0123919202, -0.0148648089, -0.00633677701, 0.00389136514, -0.0218163729, 0.00212428, -0.00197144179, -0.006292128, -0.0139786899, -1.80180632e-05, 0.00866884831, -0.0136558404, -0.00253127632, 0.0045920168, -0.00753544131, -0.00351012801, -0.0124125276, -0.0179559197, 0.0217064675, 0.00556399953, -0.0157852732, 0.0066733649, -0.0214866549, 0.000578724663, 0.0161974207, 0.00423825625, -0.00365781435, 0.00406996254, -0.0206898358, 0.007425535, -0.0116912676, -0.0054060095, 0.0152082648, 0.0190824568, -0.00521023897, -0.00948627573, -0.0136695793, -0.0112104286, -0.0111898212, 0.022929173, 0.00368872564, 0.00748735713, 0.0149472384, 0.00543348584, -0.030828679, 0.0154555542, 0.00234409235, 0.0142465867, 0.0147549026, -0.00775525346, -0.00358568854, -0.0181757323, 0.00216721208, 0.00631273538, -0.0121583696, 0.00754917972, -0.00145110476, -0.0201540422, 0.0168980733, -0.014205371, 0.0264873859, 0.00588684902, -0.00165546162, 0.00597271323, 0.001815169, 0.00853833463, 0.034538012, 0.0240969267, 0.0082841767, 0.0111486064, -0.00017280168, -0.00727441395, -0.000632819079, 0.00661497703, -0.00707520917, 0.023258891, -0.0096717421, 0.00695499917, -0.02970214, -0.0135253267, 0.0141641563, -0.000468818471, 0.000605771842, 0.000945364707, 0.0159363933, -0.00288160215, -0.00363720697, -0.00185123191, -0.00281291083, 0.0138481762, -0.00239217631, -0.0120415939, -0.00397379464, 0.0235061813, 0.0105578611, -0.00628525857, 0.0293449461, -0.000192121122, 0.00485647842, 0.0103586558, -0.00688630808, -0.00646385597, -0.0107295895, 0.0170354545, -0.000179563489, -0.0050934637, -0.0193297472, 0.00790637452, -0.0134085519, -0.0285756029, 0.00825670082, 0.00997398421, 0.0395936966, -0.0101388432, -0.00967861153, 0.0172140524, 0.00830478407, 0.0218163729, 0.0104342159, 0.0079269819, 0.0100220684, -0.0117187444, -0.00571512058, -0.0055468264, -0.0159089174, -0.00527549582, -0.000650850532, -0.00819487777, 0.00585250324, 0.0315980203, 0.00812618714, 0.00968548097, -0.00396692567, -0.00923211779, -0.00288847135, -0.0127559835, -0.0239045899, 0.00858641881, 0.00670771068, 0.000203712785, -0.00592806377, 0.0115401475, -0.0116843991, -0.0162523743, -0.00623030541, 0.00904665142, 0.00392914517, -0.00924585573, -0.00367155275, -0.00321647245, 0.00710955495, 0.00040721093, -0.018409282, -0.0246189795, 0.00125619303, 0.00518619688, -0.00415582675, -5.40407746e-05, -0.0180933028, -0.0019079023, 0.0066733649, 0.0114233717, -0.00311000086, 0.00966487359, -0.012357574, 0.0183955431, 0.0266797207, 0.0128521519, 0.0109562706, 0.0256081354, -0.00132831896, -0.00885431562, 0.00290736137, 0.0023629826, 0.0104823, -0.00654285122, -0.0190824568, -0.00892300624, 0.00888866093, 0.0184230208, 0.0171865765, 0.00831852295, -0.0254570153, 0.0171590988, 0.0196594652, -0.0200716127, -0.00258622947, 0.00894361362, -0.0114302412, 0.0223384276, -0.0106059443, -0.00692065386, 0.00419017253, -7.8404737e-05, 0.00245399843, 0.0147136878, 0.0293174684, 0.00603110064, -0.0191236716, 0.0182032082, -0.004234822, -0.0102418801, 0.0284931734, 0.0132093467, 0.0146449963, 0.0184367578, 0.00517932791, -0.000470106432, 0.00635051541, 0.00406652782, -0.000522912887, 0.0107570654, 0.0104891695, -0.00301726768, 0.0018117344, -0.0116912676, -0.00840782095, 0.00432068622, 0.00108274748, 0.00650850544, 0.000971124, 0.00901230518, -0.0141504183, -0.0274078492, 0.00060319592, -0.0122957518, 0.00862076506, 0.0203601159, 0.0167606901, -0.021472916, -0.00351699721, 0.0201952569, 0.0157990102, 0.0243167393, -0.00453019468, -0.0292350389, 0.0114989318, 0.00631273538, 0.00404248619, 0.0174201261, -0.0141916331, 0.00488395523, -0.00535105634, 0.00594867114, 0.00353760459, -0.0113203349, -0.0215828232, -0.0187802147, -0.000692494679, -0.0188214295, -0.0232039392, -0.0134016825, 0.00195942074, 0.0116019696, -0.00339850457, -0.0141778952, 0.006292128, -0.000984862214, -0.0125155644, 0.000797248969, -0.00513467845, -0.00104067393, 0.00674892543, 0.0114302412, -0.0331367068, 0.00939697679, 0.0198105853, -0.0103380485, 0.0147823785, 0.0178185366, 0.00119437091, 0.0178460125, -0.0155517217, 0.0406652801, 0.0267758891, 0.0131681319, 0.0245090742, 0.0145763047, 0.0168156419, 0.00193537888, 0.00203669863, -0.00484274048, -0.000393472641, 0.00342082931, 0.00206417521, 0.00490799686, 0.00914281886, 0.00631273538, -0.00268926634, -0.0114439791, 0.00513811316, 0.0142878015, 0.0169667639, 0.0273528956, -0.0130719645, 0.00244197762, 0.0146037815, 0.0206760969, 0.0137657467, 0.00507285632, 0.0211294591, -0.00227711839, -0.00414895779, 0.00862076506, 0.00548500428, 0.000975417206, 0.0120896781, -0.0266659819, 0.0109837474, -0.00759726344, -0.00669740699, -0.00918403361, 0.00857954938, 0.000535792555, 0.0029897911, -0.00437563891, -0.0195770357, -0.0137657467, -0.0271056071, 0.0115058012, 0.0121995844, 0.0120141171, -0.0215278696, 0.0129002361, -0.00477061421, -0.00664245384, 0.00242137024, 0.0203601159, -0.00279058609, -0.0148648089, 0.0427534953, 0.00391884148, 0.0309660621, 0.0183268525, -0.00669053756, -0.0143152773, -0.0310484916, 0.00688974233, 0.00371620222, -0.00820861664, -0.0235061813, 0.0106815053, -0.00211397628, -0.0228330046, 0.00754231028, -0.000186969279, 0.0174750797, 0.00308939349, -0.00976104103, 0.0114371097, -0.0107433274, -0.00538540212, -0.0113615496, -0.00319071324, -0.00359255774, 0.00345174037, 0.0102418801, 0.0038020662, -0.011382157, -0.0118561275, 0.008469644, -0.0123369666, 0.00466070836, 0.0142878015, 0.0192885306, 0.000921322731, -0.0140061667, 0.0071645081, -0.0248800069, -0.0352798775, 0.00840095244, -0.00194224797, 0.0130032729, 0.0226681456, -0.0160463, -0.0189175978, 0.00627152, 0.00494234264, 0.0120003792, -0.00334698614, 0.00930080935, -0.022283474, 0.0465452597, -0.00761787081, 0.0019010331, -0.0197693706, 0.0149197616, 0.00543348584, 0.00608948851, -0.0118011739, 0.00575290062, -0.0119935097, -0.00718511548, -0.0129620582, -0.0139924278, 0.00234752684, -0.0115951, 0.0172415301, -0.00486334786, 0.0243854299, 0.00785142183, -0.00301211583, -0.00998772215, 0.0114165023, 0.00393944886, 0.0014201937, -0.00246430212, -0.00872380193, 0.0273666345, 0.00993276946, -0.0322025046, 0.00900543574, 0.0134909814, -0.0320651233, 0.00517245894, -0.00230974657, 0.00531671057, 0.0215828232, -0.00965800416, -0.00379176252, 0.021624038, -0.000383598264, 0.0192061011, 0.0171728376, -0.00980912521, 0.00646042172, 0.0273941103, -0.0168980733, 0.00577694271, -0.0286030788, -0.0115813622, -0.0213217959, -0.0116294455, 0.0333839953, 0.000582159206, 0.00582846114, 0.0137451394, 0.0382198691, 0.0184504967, -0.00141504186, 0.0182032082, 0.0205112379, -0.0132368235, -0.012357574, -1.45432468e-05, 0.00860702619, 0.00614787592, 0.00363720697, -0.0037196367, 0.00407683151, -0.00346891326, -0.0231077708, -0.00367842196, 0.0174750797, 0.00525832316, 0.00946566835, 0.0112791201, -0.00875814725, -0.00771403871, 0.00567047112, -0.0119110802, -0.0100770211, 0.00807810295, -0.00517245894, 2.95426471e-05, 0.000378875731, 0.0030790898, 0.0103930011, -0.00522741163, -0.00592119433, 0.00843529776, 0.00676266337, -0.00453706365, 0.0169667639, -0.00816740189, -0.0170354545, -0.00816053245, -0.00746674975, 0.0237534698, -0.00602766592, 0.0206211433, 0.00135236094, -0.0127147688, 0.0119179497, -0.00663215, 0.00620282907, 0.0292350389, 0.00417986885, 0.0113203349, 0.0126392087, -0.0213630106, -0.00474313786, 0.0215553455, 0.0325322226, 0.0192335788, -0.00313060824, -0.0117599592, 0.0109562706, 0.000625949935, -0.0233550593, -0.0172552671, -0.0112653812, 0.0171865765, -0.00127851777, -0.00357538485, -0.0122339297, 0.021472916, 0.00470535737, 0.000615646248, -0.0216515139, -0.00465383893, 0.0250586048, 0.0117187444, 0.0118286507, -0.0193022694, 0.0156341512, 0.00699277967, -0.0172827449, -0.0143152773, -0.0152494796, -0.0182856377, 0.00735684391, 0.000465813238, -0.00639859959, -0.00838034507, -0.0270369165, 0.0326146521, -0.00616848329, -0.00579411536, -0.00169581769, 0.00835286826, 0.0140679888, 0.03582941, 0.0232863687, 0.00108446472, -0.00384328119, 0.0196594652, 0.0193709619, 0.00906038936, -6.43981402e-05, -0.0237809457, -0.0273666345, -0.0329443738, -0.00128538697, -0.0354447365, -0.0024162184, -0.00215519127, 0.00800941139, -0.00126306224, 0.0232451539, -0.00331092323, 0.0117668286, 0.00106042274, -0.0211844128, 0.007665955, -0.0176262, 0.00476374524, 0.00725380657, 0.00145453936, 0.0147274258, -0.0114989318, -0.0128246751, -0.0180520862, 0.0030189848, -0.0212668423, -0.00936263148, -0.0044821105, 0.00980912521, -0.007665955, 0.00901230518, -0.0148235932, 0.0296471864, 0.00120553316, -0.0215278696, -0.00748735713, -0.0199342296, -0.0126529466, 0.00339335273, -0.00896422099, -0.0235748719, -0.0211569369, -0.00879249256, 0.0133467298, -0.00116861158, -0.0196594652, 0.00421764888, -0.0116500529, -0.0185191892, 0.00890239887, -0.0284656957, -0.00451989099, -0.0116363149, 0.00404592045, -5.97292783e-05, 0.0164859239, -0.0198930148, -0.0138275689, 0.0160188228, 0.0145900426, 0.00805749558, -0.0141778952, 0.0100426758, 0.025347108, -0.0206074063, 0.0230253413, 0.00497668842, -0.021624038, -0.0114165023, -0.00642951066, 0.00300352927, 0.0241656173, 0.0024385429, 0.00505568366, 0.0171590988, -0.00972669572, 0.00542661687, -0.000975417206, 0.00908099674, -0.0125155644, -0.00339678722, -0.000309969735, -0.00257077394, 0.0170217175, -0.0249074847, 0.0143427541, 0.00941071473, 0.00413521938, 0.0143839689, -0.00734310551, -0.00605170801, 0.00652224384, 0.0144801373, 0.00610666117, -0.00669053756, -0.0138619151, 0.00135665422, 0.0249212217, -0.011217298, 0.0157165807, -0.00281806267, -0.0420665853, -0.0211157221, 0.00703399442, 0.0202914253, 0.00134978502, -0.0052857995, -0.0154418154, -0.0200166591, -0.00770030031, -0.0129964035, -0.00859328825, 0.00756291766, -0.0254570153, 0.0163622797, 0.0231077708, 0.00889553, -0.0100770211, 0.0100426758, 0.0132711688, 0.0133261224, 0.00394288357, -0.00698247598, -0.00554339215, -0.00921837892, 0.00247632316, 0.00247632316, -0.017433865, -0.0089916978, 0.022929173, 0.0120759392, 0.0175300334, 3.0428122e-05, -0.0125155644, -0.0183543283, -0.00171041465, 0.0147549026, 0.00391540723, -0.00850398932, 0.00671114493, 0.0325597, -0.0111348685, -0.0124125276, 0.0285481252, -0.00557773793, -0.0160737764, 0.00605514273, -0.0171865765, 0.0117805665, 0.00198174547, -0.00830478407, -0.00214488734, 0.0109837474, 0.00635395, 0.00593493273, -0.00245056394, -0.00145368068, -0.00078522804, -0.00108618196, 0.0046984884, -0.00796819665, 0.0102075348, -0.00627495488, -0.0137520088, -0.0133535983, 0.00473970314, -0.00787889771, 0.00919777155, -0.0040871352, -0.00284897373, -0.00901917461, -0.00295888, 0.0283557903, -0.00332981325, -0.0205799285, -0.00247975788, 0.0132643, -0.00240591448, 0.00256218738, -0.0108257569, -0.00484617474, -0.0195770357, 0.00161167083, -0.0179009661, -0.0058834143, 0.0285206493, 0.0256768279, 0.00532701425, -0.0326696075, 0.0183680672, 0.00974730309, -0.00492517, -0.00656002387, -0.00551935, 0.0112379054, 0.0221048761, 0.000505740056, -0.0141229415, -0.0207035728, 0.0113615496, 0.0109219253, 0.00522397738, 0.00293827266, -0.0114714559, 0.00478435261, -0.00547813531, -0.00143479055, -0.0104136085, 0.000805835414, -0.00229429104, -0.00774838449, -0.00743927341, 0.00568420952, -0.00601392798, 0.00602079695, 0.0308836307, -0.00719198445, 0.0289602745, 0.00460232049, 0.0021466047, 0.0118011739, 0.0257867333, 0.0288503673, -0.0235886108, 0.000736714748, 0.00443402678, 0.0172552671, 0.010331179, 0.0041970415, 0.0304440074, -0.0102418801, 0.0225582402, 0.00364751066, -0.0130925719, 0.0108944485, -0.00217236392, 0.0291800853, 0.00365094538, -0.000923040032, 0.000133411479, -0.0107914116, -0.000856495288, 0.0174750797, -0.0194259137, -0.014370231, -0.00365437986, -0.0159638692, -0.0168019049, -0.0231077708, -0.00803001877, -0.000178490183, 0.0111211296, 0.0142465867, -0.00231489865, -0.00903291255, -0.0153181711, -0.00402874779, 0.00797506608, -0.0037127675, 0.0234374888, -0.00342254667, 0.00369902933, -0.0108532337, -0.00553652272, 0.0202502105, -0.00118320854, 0.00206932705, -0.0139512131, 0.0036234688, -0.0101731895, -0.00378145883, 0.00709581655, -0.0075079645, -0.0231902, 0.0212668423, -0.00824296195, 0.0124125276, -0.045226384, -0.0165958311, -0.00709581655, -0.00840095244, -0.0109494012, -0.0184779726, 0.0142878015, -0.0107501969, -0.0142465867, -0.0055468264, 0.00154469674, -0.0048324368, -0.00194568257, 0.0246739332, 0.00645011803, 0.0184642356, -0.00983660109, -0.0213904865, -0.000894704834, -0.0168431196, -0.00171384925, 0.0106540285, 0.0209920779, -0.00650850544, 0.00953436, -0.00212771469, 0.000526776828, 0.00391540723, 0.000155414178, 0.00991216209, 0.0375054777, -0.0204013307, -0.0179696567, -0.0322025046, 0.0127559835, -0.0140542509, 0.0134428972, -0.00658406597, 0.00455767103, 0.00476718, 0.0251272973, 0.0322574601, -0.0219674949, 0.0158677027, -0.013889391, 0.0103105716, 0.00687256968, -0.0134497667, -0.00848338194, -0.00950001366, -0.0130925719, -0.00212428, 0.0127010308, -0.00424169097, -0.00349295512, -0.00321990717, 0.00459888577, 0.0154418154, -0.00918403361, -0.0116843991, 0.00513811316, -0.0405279, 0.0108669717, 0.00466414262, -0.00678327074, 0.00794072, -0.0169255491, -0.0112447739, 0.0218988024, -0.00492173526, -0.0011248209, 0.0142191099, 0.0205799285, 0.0030790898, 0.0213492718, 0.0136008877, -0.000540944398, -0.00841469, -0.0228192676, 0.0130925719, 0.00422451831, -0.0143564921, 0.0189038608, -0.00719885342, 0.0010818888, 0.0249212217, 0.0150846206, 0.0299219526, -0.00498699211, 0.0148235932, 0.00269957, 0.0125430403, -0.0112516433, 0.011787436, -0.00470535737, 0.000688630797, 0.0333839953, -0.0058456338, 0.0071507697, -0.00103122892, -0.0188763831, -0.0109219253, -0.0174201261, 0.0272704661, -0.00807123352, 0.000781793438, -0.0284931734, -0.0183268525, -0.0153456479, 0.0167194754, 0.0097816484, -0.0082841767, -0.0041008736, -0.0182032082, 0.02597907, -0.000573572761, 0.0269819628, -0.0193022694, 0.00302585401, -0.00697560655, 0.00060362526, 0.0155929364, 0.00694469549, -0.0220636614, -0.0109494012, -0.0192061011, -0.0252646785, -0.00543348584, -0.0105235148, -0.00715763867, -0.00444433047, -0.0136008877, -0.0190824568, 0.0160188228, -0.0191648863, -0.00355134276, -0.0141092036, -0.0191099346, 0.00258622947, 0.0022599455, 0.0244678594, -0.00988468528, -0.000786945282, -0.0117668286, -0.00979538634, -0.0214042254, -0.0143290162, -0.00316151953, -0.00625434751, -0.0175025556, -0.00269785291, 0.00965113472, 0.00500759948, 0.00950001366, -0.00471909577, 0.000734138826, 0.0021397355, -0.030993538, -0.00661497703, 0.00367842196, -0.068471536, -0.00800941139, 0.0131131792, -0.00293998979, -0.00868258718, 0.00959618203, -0.0324223191, -0.00560521428, 0.00382267381, -0.00900543574, -0.0144801373, 0.0116843991, -0.00207447889, 0.00951375253, 0.000934202399, -0.014370231, -0.013724532, 0.0191648863, 0.0342632458, 0.0168568585, 0.017749846, 0.00840782095, -0.0101182358, 0.0136627099, -0.0193434842, 0.0104891695, 0.00787202921, -0.0291800853, 0.0067695328, -0.00754917972, -0.00796819665, 0.0190000273, 0.00800254289, -0.00168207951, -0.00126821408, -0.0172003135, -0.0136489719, 0.0187664777, 0.0105303843, -0.0163485408, -0.00941758417, 0.0220636614, -0.0102968337, -0.00920464098, 0.00783081446, -0.0106815053, -0.00687256968, 0.0187664777, 0.0180108715, -0.0138481762, 0.00140302081, 0.00666993, 0.00251753815, -0.0119660338, -0.00754917972, -0.0141504183, 0.0100083295, 0.0155517217, -0.0219812319, -0.0072469376, 0.0150571447, -0.0157303195, -0.0188763831, 0.00397036, 0.0508316, 0.0302241948, -0.00248319237, 0.0214866549, -0.0301967189, -0.000986579573, 0.043083217, 0.00431038253, -0.00426229835, -0.00391197251, -0.00430694781, 0.00179627887, -0.00996024627, -0.0162661113, -0.0176674165, -0.025182249, 0.0047946563, 0.0184367578, 0.00587311061, -0.00849025138, 0.00445463415, 0.00320101692, -0.0082841767, 0.0126529466, 0.0112241665, 0.0239320677, -0.00739118923, -0.0219812319, 0.0108051496, -0.0222972129, 0.0124056581, 0.0196045116, -0.0165958311, -0.0263637397, -0.0227231, -0.0499523506, -0.0255531836, -0.00832539145, 0.00222388259, -0.00135665422, -0.00168637268, 0.0155242458, 0.0164721869, 0.0114920633, 0.00321303797, 0.00110678945, -0.00897109, 0.00802315, -0.0202776864, -0.0127903298, -0.00628182432, -0.0273941103, -0.0248250552, -0.00123730302, 0.0104204779, 0.0115401475, -0.00232176762, 0.000103949336, 0.0336587615, 0.00377458986, 0.0179421809, -0.00470535737, -0.0225445013, 0.00448898, 0.0100564137, 0.00743927341, -0.016623307, -0.0210058149, -0.00342426379, 0.000616934209, -0.0144663984, -0.00293827266, 0.00767969294, 0.0190824568, 0.00817427, -0.0105029074, 0.011952295, 0.000870662858, 0.00698591024, -0.00425542938, -0.00207791338, -0.0121721076, -0.00379863172, -0.0133810751, -0.000793814426, -0.0159913469, -0.00730189076, -0.00985720847, 0.0110524381, 0.0202914253, 0.00277513056, 0.00395662198, 0.00281806267, 0.00198002812, -0.0182032082, -0.016623307, 0.0015395449, 0.0228055287, -0.0100083295, 0.020662358, 0.0181482546, -0.00623374, 0.0115882307, -0.0202089958, -0.0136146257, -0.00560864899, -0.00336759351, 0.0105853369, -0.0280123334, 0.00215862575, -0.00268068, 0.0063608191, 0.00981599372, -0.00930080935, -0.0100495443, 0.00273391581, 0.0124056581, -0.00609635748, 0.0041386541, 0.00722633, -0.0165683534, 0.00943819154, -0.000333582371, 0.00260511949, -0.0101869274, -0.00619596, -0.0189725515, 0.00253642816, -0.000615216908, -0.0176674165, -0.0275727082, -0.00481869839, -0.00681074755, 0.00691035, -0.0155105069, -0.0262675732, 0.00804375764, -0.0330268033, 0.0298395231, -0.0196869411, 0.0159501322, 0.0111692138, 0.00445463415, 0.0048324368, -0.00665619178, 0.0048770858, -0.020827217, -0.00965113472, -0.00229429104, 0.00813305564, 0.0249761753, 0.0119797718, -0.00798193458, 0.00554339215, 0.000315550889, 0.00544722425, -0.0197006799, 0.0254570153, -0.000564127695, 0.0148373321, -0.0066355844, -0.00852459669, -0.00752170291, 0.0181482546, -0.0150296679, -0.00481869839, -0.00149060227, 0.0155929364, 0.0170491934, 0.00780333765, 0.0155242458, 0.00725380657, 0.0118492581, 0.0157440584, 0.0187115241, -0.0111554759, -0.00507629104, -0.0164034944, -0.00789263658, -0.00325081823, 0.0032817293, 0.00594523642, 0.00298463926, 0.0235199183, -0.0291251335, -0.00930080935, 0.00201265654, 0.0139306057, 0.00810558, 0.00196285546, 0.00423825625, -0.012673554, -0.0105166463, -0.00622687116, -0.0109013179, 0.0252646785, 0.00364064169, -0.026803365, -0.00193366152, 0.00914281886, 0.0075079645, 0.0395112671, 0.020978339, -0.00668710284, 0.00976791, -0.00763847819, 0.00219125417, 0.00160480174, -0.0123507045, -0.00487365155]
|
26 Mar, 2018
|
array::empty() in C++ STL
26 Mar, 2018
Array classes are generally more efficient, light-weight and reliable than C-style arrays. The introduction of array class from C++11 has offered a better alternative for C-style arrays.
array::empty()
empty() function is used to check if the array container is empty or not.
Syntax :
arrayname.empty()
Parameters :
No parameters are passed.
Returns :
True, if array is empty
False, Otherwise
Examples:
Input : myarray{1, 2, 3, 4, 5};
myarray.empty();
Output : False
Input : myarray{};
myarray.empty();
Output : True
Errors and Exceptions
1. It has a no exception throw guarantee.
2. Shows error when a parameter is passed.
// Non Empty array example
// CPP program to illustrate
// Implementation of empty() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
array<int, 5> myarray{ 1, 2, 3, 4 };
if (myarray.empty()) {
cout << "True";
}
else {
cout << "False";
}
return 0;
}
Output :
False
// Empty array example
// CPP program to illustrate
// Implementation of empty() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
array<int, 0> myarray;
if (myarray.empty()) {
cout << "True";
}
else {
cout << "False";
}
return 0;
}
Output :
True
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/array::empty() in C++ STL
|
https://www.geeksforgeeks.org/arrayempty-c-stl/?ref=lbp
|
Pandas
|
array::empty() in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, array::empty() in C++ STL, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0533535928, 0.01748446, -0.00940788165, 0.028249003, 0.0329149067, -0.0292126145, -0.0344110392, 0.0113794794, -0.000225846219, -0.0241283011, -0.0291618984, -0.00449156621, 0.022277154, -0.0263471399, -0.0223912653, -0.0322302356, 0.00292728399, 0.0302776564, 0.00216812361, -0.0490934215, 0.00819069, -0.00481171301, -0.00916064, -0.0144034419, 0.0269050207, 0.021072641, 0.00600988651, -0.0074553024, -0.0484848246, -0.015024717, 0.0356535912, -0.00225846213, 0.00852668565, -0.0214910507, -0.000479031703, -0.0149613209, 0.034309607, 0.000746481179, -0.00911626313, -0.0303030144, 0.0252440609, -0.0292379726, -0.0125142578, -0.00118628703, 0.00566755142, 0.00866615493, -0.0130594587, -0.029440837, -0.00683402736, 0.0358310975, 0.0196652617, 0.00885634124, 0.0395080298, -0.00954101235, 0.0120261125, 0.0254976414, 0.0249397624, 0.0154050896, -0.0112907263, -0.0509192087, -0.0146443443, -0.00519842515, 0.0412323885, -0.0308355372, -0.0563965738, -0.00203816313, -0.00645365473, 0.0211360361, 0.00895777438, -0.00665652, -0.0361353941, 0.016850505, -0.0442246534, 0.0182452053, -0.0352478586, -0.00780397747, -0.0250665527, 0.0101305898, -0.0118232472, 0.0461011566, -0.0107391858, 0.0219094604, -0.015645992, -0.000776197761, -0.021072641, 0.0221250057, -0.0291111805, -0.0273868255, 0.010517302, 0.0502091795, -0.0116203818, 0.0185621809, -0.0152529404, 0.0202358216, 0.000990553643, 0.0419170596, 0.0243058074, 0.016254589, 0.0207176264, 0.0452389792, 0.00836185738, -0.00362621853, 0.00811461452, 0.00246132747, -0.0323316678, -0.0215671249, 0.0207176264, 0.00875490904, -0.0197666958, 0.0118422667, 0.00348040904, 0.00814631302, -0.0251299478, 0.0129073095, 0.000582445529, 0.0225307364, 0.000744896301, -0.0259667672, 0.0306073129, 0.0265753642, 0.00280366279, 0.0305058807, -0.00936350506, 0.0065043713, -0.027691124, 0.0255990736, 0.0190439876, -0.00568023045, -0.00300494325, 0.0233041607, -0.00633003376, -0.0450614728, -0.00784835406, -0.0430835336, -0.0241790172, -0.00870419201, 0.00231076335, 0.0395080298, -0.00308577251, -0.0124381837, -0.0548750833, 0.00564219337, 0.0122923739, 0.00724609755, -0.0123811271, -0.0251933429, 0.0216812361, 0.0158868954, -0.0175732132, -0.0206542313, -0.00803220086, 0.0219728556, 0.0350703523, -0.0141118225, 0.0332192034, -0.0268543046, 0.0227716379, -0.0137441289, -0.0091035841, -0.0254976414, 0.0129326675, -0.0199568812, -0.0142512927, -0.0350957103, -0.0492455699, 0.00495435297, 0.0419424176, 0.00407949602, -0.0407759398, 0.0235323831, 0.00042712671, 0.0424749367, -0.00889437832, 0.0200075973, -0.0121909408, -0.0129326675, 0.0323316678, 0.0195131134, 0.0239507928, -0.0205020811, -0.0153543726, -0.00286230375, -0.0180803761, 0.0160136856, 0.0161531549, -0.00989602692, 0.0315709226, -0.0374033041, 0.0395841077, -0.0128312353, -0.0253201351, 0.0253328141, 0.0347153358, 0.00802586135, 0.00486876909, 0.0187904052, -0.0304551646, -0.01027006, -0.0206288733, 0.0514517315, 0.00777861942, 0.00184163719, -0.0103714922, -0.0381386913, 0.0265246481, -0.00611765916, -0.00200646534, -0.0171674825, 0.0260428432, 0.0211994313, -0.00181469414, 0.0296437033, -0.00504944613, 0.0125079183, 0.00959172845, -0.00584505871, -0.0330924131, 0.014466837, 0.00491314568, 0.0115823448, 0.0171040874, 0.00516989734, 0.0301508661, -0.0548243672, -0.0549258, -0.049296286, 0.00755039556, -0.000589577481, -0.00664384104, -0.015645992, -0.00300969812, 0.0127424812, -0.00344554149, -0.02523138, 0.0190186296, -0.0303790905, -0.0107708834, -0.0402941331, 0.00826042425, 0.0216685571, 0.030632671, 0.0215544458, -0.0309876855, -0.0291365385, 0.0121085271, 0.0116584199, -0.00058165309, -0.0291111805, -0.00154447113, 0.0126093505, 0.0153416935, 0.0136046596, 0.0175732132, -0.00503993686, 0.00219189702, 0.00529985782, -0.000482597708, -0.0250538737, -0.000102126076, -0.00181152439, -0.0187016521, 0.0125649739, 0.0112273302, 0.0158361774, -0.0262710657, -0.00020187482, 0.00871687196, -0.00242646015, -0.0364143364, -0.0589323901, 0.0321288034, 0.00614301721, 0.0313427, -0.00524597196, 0.00224419823, 0.0200456344, -0.0452136211, 0.0118486062, -0.0232661217, -0.0243311655, 0.00348674855, -0.0136046596, -0.0211613942, -0.0220108926, 0.0249524415, -0.014454158, -0.0315962806, 0.00156903686, -0.0107201673, 0.00688474346, -0.0516292378, -0.0233929139, 0.0141878976, 0.0341321, 0.00833016, -0.0126220305, -0.0187650472, 0.00369595364, -0.0309876855, -0.00171326147, -0.0248510092, -0.0442500114, -0.0279193465, -0.0230886154, -0.0219094604, -0.0375300944, 0.00439647306, -0.0570558868, 0.0286547337, -0.055889409, 0.0116774384, -0.0303537324, -0.0151134701, -0.00409217505, -0.0186002199, 0.00699885562, 0.0212628264, -0.00204133289, 0.00448205695, -0.0368200652, 0.0110244649, 0.0175098181, 0.0102954181, 0.01984277, 0.000878026709, -0.0337770842, 0.0146189863, 0.0186382569, -0.0106250737, -0.0458729342, -0.00723341852, 0.0736401305, -0.0466336794, -0.0212247893, 0.0074045863, -0.00871687196, -0.0299480017, -0.0333967134, 0.0293394048, 0.0172942728, -0.00150484906, 0.00133447384, -0.00246608211, 0.0293901209, 0.0107391858, -0.0316216387, -0.00541079976, -0.0279700626, -0.0316723548, 0.00614301721, 0.000542427122, 0.000691802648, 0.0170280132, -0.03732723, 0.027691124, -0.0131608909, -0.043869637, -0.000495673041, -0.00872321147, 0.00208254, 0.012330411, 0.057765916, 0.0269557368, 0.00550589291, 0.0114682335, 0.00511601102, -0.0123557691, -0.0236972123, 0.00543298852, -0.0311905518, 0.0145555902, 0.00761379115, -0.0176366083, 0.0149106048, -0.0406745076, -0.00919867679, 0.000611765892, 0.0158361774, -0.01984277, 0.0106567713, -0.0125142578, 0.0389247946, 0.0107582044, -0.0190313086, -0.00537276268, -0.0298719257, -0.023456309, 0.0444528759, -0.0176619664, 0.0327374, -0.0311651938, 0.0344617553, 0.0290351063, -0.0342588909, -0.0056834, 0.00808925647, -0.0152782984, -0.00242804503, -0.0177000035, -0.0421959981, 0.0363382585, 0.00623811036, 0.0404462852, -0.0410041623, -0.00301762251, 0.0206288733, -0.0105236415, 0.00226955628, 0.0110942, -0.0045993384, 0.013236966, 0.0353746489, 0.0139343152, 0.0315709226, 0.0329656228, -0.0237986445, -0.0257892609, 0.0513503, 0.0395587496, 0.0170280132, 0.000862970308, -0.00958538894, -0.0337770842, 0.00746164192, 0.0150754331, -0.00321256346, -0.0382147655, -0.000815423729, -0.0116267214, -0.0452136211, 0.00966146309, 0.0566501543, 0.0283757951, 0.00335678807, -0.00905920658, -0.0180803761, 0.00810827501, -0.00890705828, -0.0232661217, -0.0181564502, 0.0147330975, 0.0481044501, 0.0380119, -0.0145809492, -0.00142005761, 0.00543932803, -0.00161896076, 0.0392290913, -0.00334410882, 0.00408900529, -0.00851400662, 0.0356789492, -0.0303283744, 0.0284265112, 0.0267528705, 0.00521110417, 0.0250792317, -0.0133130401, -0.00504944613, -0.0338278, -0.00458348962, -0.0104348874, -0.00340750441, 0.0215798039, 0.0265500061, -1.54031077e-05, 0.0205147602, -0.00394636532, -0.0087866066, -0.0216051619, -0.0116457408, -0.0272346772, 0.0265246481, -0.0159249324, 0.0221757218, -0.0279193465, -0.0151895452, -0.0145302322, -0.0599974357, -0.0313173421, -0.0223532282, -0.0191454198, -0.0289590321, -0.0146697024, 0.00317769591, -0.0200075973, 0.0509445667, -0.0161151178, -0.0029795852, -0.00079204666, 0.00110545778, -0.0139343152, 0.0070876088, -0.0556865446, -0.00918599777, 0.0375808105, -0.0272853933, -0.00596234, -0.0196525827, 0.015050075, 0.0325852521, -0.00583237968, 0.00296690618, 0.0405984335, -0.00674527371, -0.0341321, -0.0271839593, 0.0185748599, 0.00652339, 0.000868517382, -0.0428806692, -0.000423560705, 0.00722707901, -0.00642829668, 0.000221091555, -0.0139216362, 0.000219506677, -0.00172118586, -0.0279700626, 0.00602890551, -0.0232027266, 0.0113858189, 0.029542271, 0.0135412635, 0.0245086737, 0.0118612852, -0.00774058187, -0.0022679714, 0.0127298022, -0.010827939, 0.00696715759, 0.00644731522, -0.0175351761, 0.00632369425, -0.00835551787, -0.0104095293, -0.0113604609, -0.012032453, -0.0202104636, -0.00785469357, -0.0235957783, 0.00914162118, 0.0434639081, 0.00739824679, 0.00678331079, 0.00345188123, 0.0124762207, -0.0232154056, 0.0207683425, 0.00619373331, 0.00997210108, -0.00246766699, -0.000957270968, -0.0285025854, -0.00382591411, 0.00148662284, -0.0346899778, -0.0124445232, 0.00333142979, -0.0267782286, -0.0211106781, -0.00207461533, 0.0224166233, 0.00100085535, 0.00453277305, -0.020451365, 0.0372004397, 0.0106123947, -0.0141118225, 0.0139469942, 0.000340156112, -0.0412577465, 0.0129833836, 0.00786103308, 6.53270108e-05, 0.0442246534, -0.00145730248, 0.0122353183, -0.0281475708, 0.0113224238, 0.0250792317, -0.00178458134, 0.0250411946, -0.010206664, -0.0118042286, -0.0117154755, -0.00802586135, -0.0160517227, -0.0573601834, 0.0127488207, 0.00918599777, 0.0482819602, 0.00732217217, 0.0230759364, -0.00596867967, -0.0233675558, -0.0027497767, -0.0322809517, -0.000703689293, 0.00489412714, -0.00147473614, 0.00374667, 0.0088373227, 0.0142386137, 0.024673501, 0.0197793748, -0.00248985551, 0.00817167107, -0.00182420353, 0.0212628264, -0.0766323954, -0.0241916962, 0.0103334552, -0.00818435, 0.0214530136, 0.0101052318, 0.0130594587, 0.00827310327, -0.0544693545, 0.0177633986, -0.00339165539, -0.0267275125, 0.0112083117, -0.0250158366, 0.0125586344, 0.000999270473, -0.0440725, -0.0113731399, 0.00825408474, 0.00198269216, 0.0181184132, -0.0208317377, -0.00214910507, -0.0242804494, -0.0149866799, 0.00963610504, 0.0191200618, 0.0275643319, -0.0158868954, 0.022822354, -0.00264675915, 0.00616837526, 0.0145048741, 0.020413328, -0.00345822074, -0.00499872956, -0.0304805227, -0.000534502731, 0.0152149033, -0.01262837, 0.00559781631, 0.0345378295, -0.00557562802, -0.00963610504, 0.0115506472, -0.0131355328, 0.00666285958, 0.0474958569, -0.00460884767, -0.0101749664, -0.0253201351, -0.0276404079, -0.00744896289, -0.0356028751, -0.00709394878, 0.0107011488, -0.0521364026, -0.0544693545, -0.0120007545, -0.0116964569, -0.00505261589, -0.00611765916, -0.0117535125, -0.00603524502, 0.00493216421, -0.0341067426, 0.013224287, 0.0198300909, 0.0233041607, 0.00492265495, 0.0112717077, -0.000309845171, 0.00104285486, -0.027031811, -0.0107265068, -0.0110181253, -0.00725243706, 0.0136934128, -0.0132750031, -0.0244199187, -0.0264232159, -0.0122860344, -0.006022566, 0.00937618408, -0.0172942728, 0.010232022, 0.00847596861, 0.0232661217, -0.030734105, -0.011411177, 0.00157220662, -0.00527766952, -0.0291618984, -0.0046278662, -0.0341321, 0.0418917, -0.00115934387, -0.00170058245, -0.00914796069, 0.00462152669, 0.0345124714, -0.0159249324, -0.0182452053, 0.0205274392, 0.0392037332, -0.00819069, -0.0177507196, 0.0239254348, -0.00588309579, -0.032407742, -0.0171167664, -0.0115633262, -0.00621909183, 0.019234173, 0.01621655, 0.000606218819, -0.0116647594, -0.0218207072, 0.00983897, -0.00260555209, -0.0491187796, 0.0152149033, 0.00807657745, 0.013249645, -0.0016118288, -0.001053949, 0.0219982136, 0.0151515072, -0.0215290878, 0.0151388282, 0.0124064852, 0.0157220662, -0.0471154824, 0.00744896289, -0.00202865363, 0.00793710817, 0.0315709226, -0.0121655827, -0.0259540882, 0.0222010799, -0.00504944613, 0.0167617518, 0.0258272979, 0.000765103614, 0.03732723, 0.0179789439, 0.0208317377, -0.00606060307, 0.00229491456, 0.0387472883, 0.027691124, -0.0344617553, 0.0072144, 0.0443768, 0.0110308044, -0.0227462798, -0.00663116202, 0.0208697747, 0.016191192, -0.00166413, 0.0142005766, -0.0115633262, 0.00671357615, 0.00628882647, 0.00972485915, -0.018055018, 0.0217953492, -0.00585456798, 0.0330924131, 0.00838087592, 0.00194782461, 0.0200202763, 0.0199061651, -0.00677063176, 0.03732723, -0.0206795894, 0.0471662, 0.00637758, 0.0226321686, 0.00439964281, 0.012317732, -0.0064124479, 0.014454158, 0.0021617841, -0.00383542338, -0.0285279434, -0.017459102, -0.0234943461, -0.0169012211, -0.0257258657, 0.0183086, -0.00734119071, 0.0096678026, 0.00327120419, -0.0196906198, -0.0251933429, 0.0359325297, 0.0171928406, 0.0334981456, 0.0396348238, -0.00954101235, -0.013820204, 0.0180930551, 0.0080512194, -0.020413328, 0.0207937, -0.0207176264, -0.00638075, -0.0126854256, 0.022264475, 0.00170216733, -0.0243565235, 0.00223944359, -0.0142259346, -0.0431088917, -0.0187904052, 0.0279447045, 0.00982629135, 0.0290097483, -0.0113287633, -0.0124064852, -0.0338024423, 0.00705591124, 0.0419424176, 0.00187333499, -0.0167997889, -0.0135666216, 0.000350259739, 0.00850132667, 0.0232534427, 0.00656142691, 0.0175985713, -0.0511981472, -0.0150754331, -0.00372448144, -0.00528400904, -0.00347089977, 0.0415620431, -0.00074568874, 0.00117123057, 0.0155825969, 0.00284962449, -0.0138075249, 0.0173323099, 0.0413845368, 0.0224419814, -0.0191707779, -0.0355775133, -0.0124064852, 0.0238873977, -0.0277925562, 0.0018036, 0.00960440747, 0.0145175532, 0.0214783717, 0.000394438452, -0.0124128247, -0.0227209218, 0.0301255081, -0.0158615373, -0.0181944892, 0.00250253454, -0.0134144733, -0.016825147, -0.0166729987, 0.0226321686, -0.00618105428, 0.0116520803, -0.00518891588, -0.0116077028, 0.0362114683, -0.0237098914, -0.0136046596, 0.00493850373, -0.0101432689, -0.0157474242, 0.00239793211, -0.0176492874, -0.01748446, -0.0290351063, 0.0522378348, 0.00711296732, -0.027691124, 0.0081019355, 0.0396855399, -0.00736654876, 0.00257385452, 0.00411119359, -0.0134398313, -0.0236084573, 0.0191454198, -0.0247495752, -0.0192088149, 0.0106250737, -0.00269906037, 0.0101622874, 0.000746877398, 0.0142386137, 0.0158108193, 0.0159376115, -0.0059591704, -0.00890705828, -0.00868517347, -0.0105046229, -0.0118803037, 0.0242297333, 0.011747173, -0.00290192571, 0.0470901243, -0.0121846013, -0.035450723, 0.0146443443, -0.00717002293, -0.0082857823, -0.0231646895, -0.00197159778, 0.000256949599, -0.00176714757, -0.0095156543, -0.0367947072, -0.0144795161, 0.0137314498, 0.0233929139, 0.00183688255, 0.0207683425, 0.00762013067, -0.0278179143, -0.048662331, -0.071662195, -0.0231520105, 0.00202548387, 0.0134398313, 0.0249017254, -0.0127361417, -0.0332952812, 0.0200329553, -0.0371497199, -0.0411309563, 0.00897679292, 0.0121529037, -0.0229237881, 0.0279447045, 0.030632671, -0.0291618984, 0.000846328971, -0.000229610319, -0.0101686269, -0.00717636244, -0.00773424236, -0.00311905518, 0.0355521552, 0.00136220932, 0.0212881844, 0.00455179205, 0.035425365, 9.9402052e-05, 0.015620634, -0.0349689201, -0.00385444215, 0.00441866135, 0.0265753642, -0.0187904052, -0.00127424812, 0.0208697747, -0.00522695296, 0.0374540202, -0.017408384, -0.0359578878, 0.00541396951, 0.0236211363, -0.00276087085, 0.0458475761, -0.0245467108, -0.00881830417, 0.0250919107, 0.000916856399, -0.0038512724, -0.00288449205, -0.00742360484, 0.0192595311, -0.0328134745, -0.0203118958, -0.0226955637, -0.0179155488, 0.0117915496, 0.0222898331, -0.0200329553, -0.0380879752, -0.015024717, -0.013249645, -0.0496005826, 0.00790541, -0.0157854613, 0.0110498229, 0.0033377693, -0.0174337439, 0.0166096017, 0.0634461492, -0.0262203496, 0.0176492874, 0.0194877554, -0.0281729288, -0.00789273065, -0.00374667, -0.00352478586, 0.00753137702, -0.0206542313, 0.0035216161, 0.0419931337, 0.0315709226, -5.78978579e-05, -0.0441739336, -0.0114809126, 0.00490363641, 0.00368010462, 0.0132116079, 0.0206035152, 0.0250665527, 0.0180676971, -0.0152149033, 0.0143654039, -0.00165937538, 0.0145555902, 0.000923988409, -0.00101670425, -0.0219348185, -0.016292626, -0.0298465677, 0.021059962, -0.00318720518, -0.0176112503, 0.000445352896, -0.0215164088, 0.00401610043, 0.00435843598, 0.00171801611, -0.0174971391, -0.0147584556, -0.000633161864, 0.0309369694, -0.00919867679, -0.00581336068, -0.00852034613, -0.00216336898, 0.0256624706, -0.000573728641, 0.0233168397, 0.00372131169, 0.0072904746, -0.0135666216, -0.0184480697, -0.0155825969, 0.0104982834, -0.0047419779, 0.00628248695, 0.00917331874, 0.00676429225, 0.0102573801, 0.0306833871, -0.00568657, 0.0380626172, -0.00598452846, -0.0133257192, -0.0320020132, -0.0049258247, 0.00643463619, 0.00971218, 0.00789907, 0.0144034419, -0.0338785164, -0.000476654386, -0.0444528759, -0.0112083117, 0.00711296732, 0.0183339585, -0.0189805925, 0.00234721578, 0.0026118916, -0.0178775117, -0.0122479973, -0.0185114648, 0.0112146512, -0.00833016, 0.0247495752, 0.0206922684, -0.00855838321, 0.00499872956, 0.04579686, 0.000284288893, 0.0203245748, -0.0262203496, 0.0263217818, 0.0113160843, 0.00275453134, 0.0177000035, 0.00949029624, 0.0140864644, 0.000419598509, -0.0118993223, -0.0201977845, 0.0280714966, 0.00531253684, 0.00335361832, 0.00201914436, 0.00950931478, -0.0143020088, -0.0290604644, -0.028908316, 0.00874223, -0.0268289465, -0.00817801058, 0.0219348185, -0.0186382569, 0.0193990022, -0.0464815274, -0.0269303787, 0.0111766141, -0.00327120419, 0.0104665859, 0.00907188561, -0.0291618984, -0.00997210108, 0.000422768266, 0.0392290913, 0.0116330609, 0.0136173386, 0.0255990736, -0.00699251564, -0.0184861068, -0.0149486419, 0.020438686, -0.0022774809, 0.0030017735, 0.0294154789, -0.00360086048, -0.00589894457, 0.00748700043, -0.021719275, -0.0437682047, 0.0204894021, 0.0155572388, -0.00869785249, -0.0195131134, -0.00467541302, -0.00599403773, 0.0137568079, -0.0086534759, -0.0279700626, -0.0153290145, -0.0245847479, -0.0234055929, 0.0242170542, -0.00534423487, -0.0206795894, -0.00208412483, 0.0171421245, -0.0136173386, 0.024077585, 0.0194243602, 0.0267021544, 0.00668187812, -0.0133383982, 0.029440837, 0.0161785129, 0.000266855146, -0.0226448476, 0.00964244455, 0.0157854613, 0.0188918374, 0.0188284423, 0.0181691293, 0.00922403485, -0.0116901174, -0.0153543726, 0.0107011488, -0.0244325977, 0.0146823814, -0.0267275125, -0.0320527293, -0.0122670159, 0.0225560945, 0.00360403024, 0.00961074699, -0.0155699179, 0.0341067426, 0.0133257192, 0.00464371499, -0.0211867522, -0.0112083117, 0.0225053784, -0.0159122534, -0.011747173, -0.0303283744, -0.0278179143, -0.00884366222, -0.0177000035, 0.00597184943, -0.00822238717, -0.0178521536, 0.00983897, -0.0119500384, -0.000238129083, -0.00396221457, 0.0118042286, -0.00523646269, 0.00098738377, -0.0345124714, -0.0336502939, 0.0112400092, -0.0298465677, -0.0129009699, 0.0249904785, 0.00699251564, -0.00230917847, 0.00834917836, 0.0165462065, -0.00549321389, -0.0263471399, -0.00444084965, 0.0252440609, 0.00101828913, -0.0045993384, 0.012045132, -0.016863184, -0.00592430308, -0.0116457408, 0.0243058074, 0.027691124, 0.0135159055, 0.00393685605, -0.0187396891, -0.0154431267, -0.00630150549, 0.0215290878, -0.0160644017, -0.00805755891, -0.0133257192, -0.0193609633, -0.0358310975, -0.0100101382, -0.00794978719, 0.00664384104, -0.0206415523, 0.00953467283, 0.0102003245, -0.00111258985, -0.00880562514, -0.00831114, -0.0173323099, 0.0341828167, 0.00389247946, -0.0103905108, 0.00467541302, -0.0123557691, 0.00598452846, 0.000931120361, 0.0173069518, 0.0125396159, -0.0159376115, -0.00703055318, -0.0184607487, 0.00864713639, 0.0265753642, 0.00660580397, -0.00936350506, -0.00796880573, 0.0129833836, -0.00048101283, -0.00143035932, 0.00734119071, -0.0109483907, -0.0152275823, -0.0160263646, -0.0184100326, 0.0102130035, 0.0115886843, -0.00695447857, -0.00149771699, -0.0273614675, -0.000461597985, -0.0196272247, 0.0321034454, 0.00914162118, -0.0105743576, 0.00522061344, -0.00995942205, -0.0194623973, -0.0123684481, -0.00534423487, -0.012939007, -0.0315962806, -0.0034011649, -0.0142639717, -0.0127171231, 0.010865977, -0.00593698211, -0.00657410594, 0.00957271, 0.00350259757, 0.00568657, -0.00244864845, -0.00521110417, 0.0225180574, 0.0139977112, -0.00909090415, 0.0187143311, 0.0178141166, 0.0220996458, 0.0133383982, -0.00746798143, -0.0272093192, -0.0113287633, 0.024026867, 0.00881830417, -0.00710028829, -0.0311651938, -0.00852668565, -0.045670066, -0.0145429112, 0.0170533713, 0.0115823448, -0.00465005497, 0.0106440922, 0.0223532282, -0.0292379726, -0.00666285958, -0.011113219, -0.0105489995, -0.040344853, 0.00208412483, -0.00398123311, 0.0364904106, -0.000368684035, 0.0104602454, 0.00318086566, 0.0101622874, -0.0177380405, -0.00940154213, 0.000578483276, 0.000513106759, -0.00689742295, 0.00457081059, -0.00812095497, -0.01207049, 0.0124255046, 0.00535057439, -0.0195511505, 0.0318498649, 0.0393051654, -0.00444084965, -0.00802586135, 0.00997844059, -0.00663116202, -0.0220489297, -0.0262964237, -0.00577849336, -0.0237479284, 0.00959806796, 0.0297958516, 0.0147838145, 0.0149613209, -0.0116140423, 0.00701787416, 0.015050075, 0.017408384, 0.0160897598, -0.000473088381, 0.0077532609, 0.0293901209, -0.0230759364, -0.00835551787, -0.0268035885, -0.0100418357, 0.00753771653, 0.00717002293, -0.00121323008, -0.00516038807, -0.00394002581, 0.00416508, 0.000917648838, -0.00809559599, 0.0302776564, 0.0376315266, -0.00179250573, -0.0092493929, 0.0026578533, 0.00165620563, -0.00306516909, 0.0358564556, 0.0149613209, 0.000703689293, -0.0098833479, -0.0142386137, 0.0109927673, 0.0335488617, 0.00712564634, -0.0232534427, -0.00460250815, -0.0275643319, -0.0244199187, 0.0237479284, 0.010529981, 0.00922403485, -0.00722707901, -0.0259540882, 0.00973119866, -0.0266260803, 0.0161404759, -0.0157347452, -0.000213959574, 0.0125713134, 0.00343603222, -0.0327120423, 0.0176746454, 0.00521110417, -0.0250285156, 0.0124762207, 0.0277925562, 0.025206022, 0.000811065256, -0.0230252203, 0.00737288827, -0.0278179143, -0.0140611064, -0.00383859314, 0.00154764089, -0.00132496445, -0.00622860109, 0.0115886843, -0.012653728, -0.00701153465, 0.0153797315, -0.0180803761, 0.00428236136, -0.00158726308, -0.00556928851, 0.00478952471, -0.0343856812, -0.0148598887, 0.0137060918, -0.0169012211, 0.0155065218, 0.0166603196, -0.00535057439, 0.00192722108, -0.00278781401, -0.0128946304, 0.0124381837, -0.0158488583, 0.0139089571, 0.0122289788, 0.0071066278, -0.00879294612, 0.0187396891, -0.00596551, 0.0187904052, 0.0155318798, 0.00675795274, 0.00401293067, 0.00560098607, 0.00490997592, 0.0268289465, -0.0303537324, 0.00648535229, 0.00648218254, -0.0069734971, -0.017395705, 0.0139089571, 0.00805755891, -0.0134017942, 0.000137488838, -0.0136807337, 0.0235831, -0.00694179954, 0.0157347452, 0.01748446, -0.0218460653, 0.0101305898, 0.00723975804, 0.0450868309, 0.0220108926, 0.00893241633, 0.0311905518, -0.000639105157, -0.0241536591, -0.0166222807, 0.00940788165, 0.022251796, -0.0187396891, 0.0223532282, 0.00338531588, 0.000524597184, 0.00215385971, -0.0103714922, -0.0382654816, 0.0170280132, -0.00268796622, 0.00503359688, -0.0368200652, -0.0199822392, 0.00374033023, 0.00385444215, 0.0221630428, -0.0130214216, 0.0124572022, 9.34587297e-05, -0.00378153729, -0.0117408335, -0.000585219066, -0.0217446331, -0.0074553024, -0.0130467797, -0.0183339585, -0.00741092581, -0.00328071346, -0.0311398357, 0.0126473885, 0.0232154056, 0.00845061056, 0.0201217085, -0.0134905474, 0.0408012979, 0.0250665527, 0.00612082891, 0.0225687735, 0.0146823814, -0.00372448144, 0.00458032, -0.00725877658, -0.00446937792, -0.0102447011, 0.00365474657, -0.0238113236, 0.0318245068, 0.0161024388, 0.013858241, -0.00306833885, 0.00335678807, -0.0188030843, -0.0247115381, 0.015050075, 0.0197793748, -0.00464688521, -0.0098833479, 0.00583554944, 0.012939007, -0.0055407607, 0.025294777, -0.0165842436, 0.0135793006, 0.00278781401, 0.0239507928, -0.00679599, 0.0125015788, 0.000324109133, 0.0070368927, -0.00298592472, -0.0202485, -0.00965512358, 0.00976923574, -0.00879928563, 0.0338531584, 0.023468988, -0.00921769533, -0.00328705297, -0.0178901907, -0.018042339, 0.00786103308, 0.0168885421, 0.017408384, 0.0120958481, -0.0119563779, 0.0121402247, -0.00943957921, 0.0241536591, 0.0177253615, -0.0100862132, -0.0270825271, -0.016292626, -0.00266419281, 0.00133130397, -0.00713832537, -0.0290858224, 0.00952833332, -0.00255959039, -0.00454545207, 0.00637758, 0.00409217505, 0.00711930683, -0.0138709201, -0.00481805252, 0.0101496084, 0.00281475717, -0.0016276777, 0.0224293023, -0.00809559599, -0.000964403, 0.0129960626, -0.0183593165, 0.00804488, -0.0190947037, 0.0034613905, -0.0063490523, -0.00257226964, 0.00888803881, 0.00177982671, 0.0314187743, 0.0201090295, 0.00359769072, 0.0171928406, 0.0216051619, -0.00846329, 0.000946176762, 0.0245213527, -0.0122987134, -0.00409217505, -0.00712564634, -0.00881830417, -0.00579434214, -0.00271173939, -0.00516038807, 0.00671991566, -0.00919867679, 0.00984531, -0.00521427393, 0.00790541, 0.00337580661, 0.0208824538, 0.0429313853, -0.00389881898, 0.0170914084, -0.00597501919, -0.0326866843, 0.00695447857, 0.0130214216, 0.00813997351, 0.0125966715, -0.00337580661, 0.00861543883, -0.0297197774, 0.00246925186, -0.00203974801, 0.00728413463, 0.0208697747, -8.76639897e-05, -0.00607011234, 0.0140230693, -0.0041872682, -0.0052015949, -0.0155572388, 0.0256751496, -0.00171960099, -0.00274026743, -6.11666837e-05, 0.0142386137, -0.000331439223, -0.00694813905, -0.0071066278, 0.000592747238, -0.00941422116, 0.0109991068, -0.0108786561, 0.00480220374, 0.016267268, -0.00511918077, -0.0128058763, 0.00110942, 0.0230759364, 0.0166222807, 0.00834917836, 0.0182832424, -0.044503592, -0.00545200706, 0.0257131867, -0.0160897598, 0.0180930551, -0.0110244649, 0.00448839646, 0.0149866799, -0.012951686, -0.0106123947, -0.0298465677, -0.00996576156, 0.00225212262, -0.00893241633, -0.00556928851, -0.00114032533, -0.00722707901, -0.00287973741, 0.0131228538, 0.0104729254, -0.00652972935, -0.0229745042, 0.0158361774, -0.0166856777, -0.0257639028, -0.00499872956, 0.000501220115, -0.0105046229, 0.00719538145, -0.000750443374, -0.0220235717, 0.0217319541, 0.00225687725, -0.0274882577, -0.0165081695, -0.0065550874, -0.00735386973, 0.00317135639, -0.0256244317, -0.00346773, 0.00521427393, 0.00872955099, 0.00488144811, -0.00768986577, -0.0114935916, -0.00669455715, 0.0150120379, -0.00445035938, -0.00591479335, 0.0229998622, -0.0172942728, 0.016229229, 0.0012457202, -0.0316216387, -0.0200709924, 0.00551857194, -0.00531253684, -0.0209204908, 0.0031998842, -0.0194497183, 0.000258534477, 0.016837826, 0.00962976553, -0.0175858922, 0.00976289622, -0.00891339779, 0.0109927673, 0.0330924131, -0.00244072406, -0.0155192008, -0.00516038807, -0.0183846746, -0.00247876137, -0.00611765916, -0.0220362507, -0.0143400459, -0.00891339779, 0.0152022243, 0.00250094966, 0.00835551787, -0.00591479335, -0.0126473885, 0.00153179211, 0.0148345307, -0.00356282317, 0.0255610365, 0.0103651527, 0.0136426967, -0.0134398313, 0.00558830705, 0.0185114648, -0.00063712406, 0.0243184865, 0.0214022975, 0.00833016, -0.00658678496, 0.00286864326, -0.0114301955, 0.0135285845, 0.00308894226, -0.00535374414, -0.00271490938, -0.0143907629, 0.00133605872, -0.00128534238, -0.0128312353, -0.000596313272, 0.00995308254, 0.0101115713, 0.0122923739, 0.00560732558, -0.0393051654, 0.00773424236, -0.0139469942, -0.00670723664, -0.00532521587, -0.00711296732, 0.00947127678, 0.000269034354, -0.00241378089, -0.0395587496, 0.0136046596, 0.0271839593, -0.00696081808, 0.0155192008, -0.0190313086, -0.00479903398, 0.0087358905, -0.0166222807, -0.0148725677, -0.0122353183, -0.0232027266, 0.0241790172, -0.00184322207, 0.0223025121, -0.0148218516, 0.0200963505, -0.00999745913, -0.0052935183, -0.00114428753, -0.0222137589, 0.0166856777, -0.014454158, -0.00861543883, -0.00423481455, -0.0131608909, 0.0107518649, 0.00945225824, -0.00319037493, -0.014466837, -1.06174966e-05, 0.0124255046, -0.0181818083, -0.0195638295, -0.0104665859, 0.0175732132, 0.0037276512, 0.016229229, -0.0175224971, 0.0200583134, 0.00900215097, -0.0230759364, 0.00624128, -0.0166856777, -0.00521427393, 0.0135032265, 0.00826042425, -0.0172181986, -0.0135412635, -0.00194465485, -0.00533789536, -0.0151515072, 0.00212374679, 0.0118739642, 0.0230632573, -0.00990870595, -0.0203245748, -0.0195511505, -0.0108469576, -0.0087358905, -0.000143729325, 0.00108168449, 0.0121782618, 0.00407949602, -0.00470077107, -0.0106884697, 0.020413328, -0.00956637, 0.0124001456, -0.00480220374, -0.0175098181, 0.00860909931, -0.00768986577, -0.0147077395, 0.00382908387, -0.00694813905, -0.00237098895, 0.00630150549, -0.0352732167, 0.00204608752, -0.0109166931, 1.74337438e-05, 0.0144921951, -0.00286864326, -0.00156507466, 0.049930241, 0.0258146189, 0.0319512971, 0.011125898, 0.0309876855, 0.0107074883, -0.0152909774, 0.00887536, 0.0200456344, -0.0232407637, -0.0267782286, 0.00801318232, -0.0231012944, 0.0158615373, -0.0342588909, -0.0172562357, 0.0299733598, -0.00465639448, 0.0189679116, 0.0112336697, 0.00962976553, 0.00734119071, -0.00186699536, 0.022822354, -0.00837453641, 0.0197666958, 0.00389247946, -0.00509382272, -0.0104285479, 0.0181564502, 0.00138043542, -0.0140103903, 0.0196272247, 0.0157347452, -0.00170533708, 0.011709136, -0.00336629734, -0.0180803761, -0.0198174119, 0.00196050364, -0.00719538145, -0.0134271523, -0.0245086737, -0.00800050329, -0.00748700043, -0.0321288034, 0.0113034053, -0.00259128818, 0.0190947037, -0.0203626119, -0.00658678496, 0.00508431345, 0.00619690306, 0.0183086, 0.0178267956, 0.0140103903, 0.0318498649, -0.0250538737, -0.011138577, -0.0149613209, -0.0131101748, 0.00197318266, -0.00216653873, -0.0059813587, 0.00799416378, 0.0171040874, -0.00473246863, -0.0101115713, 0.00969316158, 0.00853936467, -0.00826042425, 0.0102890786, -0.0238747187, 0.00275136158, -0.000448126433, 0.0337770842, -0.0191961359, 0.0116013633, -0.0160897598, -0.0138962781, -0.0134271523, 0.00831114, 0.00226163189, -0.00672625517, 0.0125713134, 0.00499872956, 0.0261442754, -0.0281729288, -0.0114682335, -0.00164035673, -0.00803854, 0.00421262626, 0.00454545207, 0.0154304476, -0.0061873938, -0.0253328141, 0.0148472097, 0.0209712088, 0.00510650175, -0.00680233, -0.0299480017, 0.00125998422, 0.0241916962, 0.00671357615, 0.00412070286, -0.00572777726, 0.00799416378, -0.00253740209, 0.0120768296, -0.0214276556, 0.00843793154, -0.00162609282, -0.0131482119, -0.0333713554, 0.0209458508, 0.00635222206, 0.00252472307, 0.00258336379, -0.00153179211, -0.00443451, 0.0288322419, -0.0199949183, 0.00460567791, 0.0183593165, 0.00146522687, 0.00628248695, -0.0137821659, 0.0138962781, -0.00166254514, 0.0135539426, -0.00715100439, -0.00332826, 0.0159376115, -0.0119500384, -0.00584188895, 0.0299733598, 0.01027006, -0.021617841, 0.0269810949, 0.0137187708, 0.00324901566, 0.00142639712, -0.00511601102, 0.0086534759, 0.00355014415, -0.0136046596, -0.00687840395, 0.0134398313, -0.0193229262, -0.00871053245, 0.00286705839, -0.00609864, 0.004967032, -0.000336392, 0.00115300436, -0.000118965487, -0.0229491461, -9.86591403e-05, -0.00996576156, -0.0159249324, 0.000226044329, 0.0169265792, -0.00419043796, 0.0227336, 0.0119817359, -0.00661214348, -0.00867249444, -0.0110181253, -0.00174654403, -0.000616520527, -0.0130594587, -0.0145175532, 0.0223659072, 0.0133637562, 0.0032093937, 0.0213262234, 6.60699225e-05, 0.00853302516, -0.00204608752, -0.00913528167, 0.0115506472, -0.0124635417, -0.0237859655, -0.0420692079, -0.00944591872, -0.0490934215, -0.00624445, 0.000545200717, 0.0268035885, 0.00416824967, -0.00581019092, -0.0272093192, 0.00569607923, 0.00508748321, -0.0132750031, 0.00104523217, -0.00396538433, -0.00908456463, 0.0114301955, -0.00682134833, -0.0261949915, 0.022822354, 0.0306833871, 0.00596867967, 0.0172689147, -0.000859008054, -0.00430771941, 0.00253581721, -0.0199315231, 0.0453404114, 0.0107074883, 0.0262457076, -0.00405413751, 0.0267021544, -0.00476416666, -0.00174337428, 0.00661848299, -0.00268796622, 0.000541238463, -0.019234173, -0.0137694869, 0.00880562514, 0.00704957172, -0.0189679116, 0.0253835302, 0.00347089977, 0.0133510772, 0.00880562514, -0.0221630428, 0.0473690666, -0.00865981542, 0.00329656224, -0.00971218, 0.013198928, -0.00264992891, -0.000406523206, 0.004066817, 0.00389881898, -0.00472612912, 0.0309369694, -0.00634271279, 0.00894509535, 0.0194370393, -0.00959806796, 0.00771522382, -0.00731583266, 0.0020476724, 0.00039008, -0.00226004701, 0.00398440287, -0.00494484371, -0.00373716047, -0.0357296653, -0.0111766141, 7.44153385e-06, -0.00120055093, -0.00505578564, -0.0104856044, -0.0135793006, 0.00786103308, -0.00164035673, -0.00876124855, 0.00212850166, 0.00522061344, -0.0147584556, 0.00298117, 0.0512488633, 0.0151641872, 0.0134651894, -0.00374350022, -0.0125649739, -0.0178901907, -0.0121402247, 0.00964244455, 0.00714466488, -0.00290509546, -0.0145302322, 0.0155699179, -0.0086534759, -0.0340306647, -0.00437111501, -0.0140230693, 0.00371814193, -0.00157854625, 0.00503676664, 0.0239507928, -0.0206288733, -0.0197286569, 0.00296849106, -0.00768352626, 0.00134477555, -0.0160770807, 0.00413972139, -0.000946176762, -0.0204894021, -0.0209712088, -0.0197793748, 0.0126220305, 0.00100402511, 0.0304044485, 0.0236845333, -0.00305248983, -0.0226575267, 0.00659312448, -0.0244833156, -0.0154558057, 0.01027006, -0.0109864278, 0.0217953492, 0.0214022975, -0.0186382569, -0.00156507466, 0.00538227195, -0.0186382569, 0.0133891143, 0.00827944279, 0.00512869, -0.0131735699, 0.0473183468, 0.0185495019, 0.021047283, -0.00310320617, 0.0375300944, -0.00246449723, 0.000656935154, -0.00965512358, 0.015658671, 0.0199188441, -0.0264485739, -0.0105933761, -0.018650936, -0.00912894215, -0.0317484327, -0.0030715086, -0.0137060918, 0.0145682693, 0.013845562, 0.00322207273, 0.00582604, 0.00656142691, -0.00854570419, 0.010865977, -0.00800684281, 0.00239000772, 0.0112970658, 0.0270825271, -0.0259160511, -0.00456764083, -0.00175288366, -0.0276150499, 0.0116647594, 0.0140991434, -0.00216495385, 0.0241790172, -0.000907347072, -0.0152782984, 0.0268796626, -0.00266419281, 0.0335235037, 0.00427919161, 0.000467145059, 0.0267528705, 0.0190439876, -0.0329402648, 0.00148583041, -0.00916697923, -0.0201851055, -0.00443134038, -0.0197540149, 0.0260682013, 0.00935716555, -0.0105489995, 0.0278179143, 0.0082350662, 0.0245467108, -0.00153496186, 0.00710028829, 0.000502012554, -0.00559781631, -0.0280207805, -1.78052014e-05, 0.00656142691, 0.00299067935, 0.00926207192, -0.0091543, 0.00129405921, 0.0236845333, -0.0127361417, -0.0049892203, -0.00959806796, 0.00428236136, 0.0109610697, 0.0086534759, 0.00852034613, -0.0192595311, 0.00462152669, -0.019246852, -0.0134525103, 0.000169582767, -0.0125522949, 0.0326359682, 0.0170406923, -0.0149740009, 0.0130214216, -0.00210948288, -0.0200836714, -0.0023139331, 0.0161404759, -0.0123240715, 0.0167490728, 0.0158615373, -0.00479903398, -0.000921611034, -0.013820204, 0.0167871099, -0.0161531549, 0.000813046412, 0.00942056067, -0.0111449165, 0.0208697747, 0.00174812891, 0.00038037257, 0.024660822, 0.00199537119, 0.0116584199, 0.0096995011, -0.0225941315, -0.01054266, 0.000285477552, 0.018016981, 0.0418917, -0.00908456463, -0.00211106776, 0.00702421367, 0.00893875584, -0.0324331, -0.0225434154, -0.007518698, 0.00725877658, 0.00584505871, 0.0015199054, -0.0131482119, 0.01027006, 0.0212501474, 0.0149359629, -0.0200709924, 0.0081019355, 0.0219348185, 0.00384810264, 0.00175605342, -0.0158615373, 0.0322302356, -0.00661214348, -0.0171928406, -0.00587041676, -0.0328134745, -0.00876124855, 0.0126917651, 0.00950297527, -0.00365474657, -0.0020334085, -0.0110244649, 0.00943957921, -0.00446937792, -0.00814631302, 0.0335995778, -0.00968682207, 0.0157727823, 0.0197540149, 0.0133130401, 0.00753771653, 0.0111322375, 0.0151641872, 0.0272346772, 0.00827310327, 0.0242424123, -0.0176239293, -0.0155065218, -0.0058387192, 0.00215702946, -0.0241536591, -0.0260935593, -0.00720172096, 0.0059591704, -0.00428553112, -0.000962025661, -0.00163718697, 0.0089704534, -0.0179155488, -0.0153163355, 0.00593381235, -0.0205401201, 0.0140991434, -0.00308577251, 0.00845061056, 0.00378787681, -0.0249144044, 0.00174020452, -0.0337770842, -0.000252591155, -0.0178141166, -0.0357296653, 0.00765182823, 0.0147838145, -0.00228699017, -0.0199188441, -0.0079180887, 0.00783567503, -0.00773424236, -0.0331684873, -0.0056326841, 0.00146443443, 0.00680866931, 0.000277751213, -0.0328134745, -0.00927475095, 0.00594966114, 0.00404462824, 0.0169012211, 0.0288322419, 0.00540129049, 0.0141498595, -0.000114706105, -0.00744896289, 0.00473880814, -0.0325091779, 0.00500189932, -0.00651705032, -0.0164447743, -0.0143654039, 0.0273107514, -0.00755673507, 0.00358818122, 0.0136934128, 0.00288607692, -0.00522695296, -0.0118042286, -0.00428870087, -0.0026435894, -0.0242550913, 0.00676429225, -0.0101369293, 0.0182071682, -0.0280461386, -0.0209712088, -0.00876124855, 0.0105489995, 0.00106266583, -0.00513186, 0.0220235717, 0.0220869668, -0.0107328463, -0.00305248983, 0.0187904052, 0.00157775381, -0.0142639717, -0.00534423487, -0.0159756485, 0.0026118916, -0.0109230326, 0.0126093505, -0.000473088381, 0.011138577, 0.020426007, -0.00660580397, 0.0169646163, 0.0159122534, 0.000973119866, -0.00571826752, -0.0198300909, -0.0166096017, 0.0129580256, 0.0222010799, -0.00742360484, -0.00543932803, -0.00263408013, -0.0215037297, -0.0369722135, -0.0136300176, 0.0267782286, -0.00814631302, -0.00157062174, 0.00445669889, 0.00725877658, -0.0147964936, -0.00713198585, -0.0236845333, -0.0101622874, -1.72356322e-05, 0.012666407, 0.006922781, 0.0103207761, -0.00377836754, 0.0053347256, 0.0117408335, 0.00404779799, -0.000889913354, 0.0101369293, -0.0129009699, -0.0139850313, 0.00878026709, -0.0071066278, -0.0307848211, 0.00425383309, 0.0072144, 0.00350259757, -0.00321097858, 0.0100228172, -0.0148979258, -0.0290351063, 0.00578800263, -0.00675795274, 0.00404462824, 0.0152022243, 0.00666285958, 0.0474197827, -0.0412070304, -0.0109864278, 0.00698617613, -0.0154811637, -0.00124334288, 0.00789907, 0.00421579601, -0.00459299888, -0.0086534759, -0.011423856, 0.00970584061, 0.0173323099, 0.0391530171, 0.00136141689, -0.00533155585, 0.0143654039, -0.00126553129, 0.0186002199, 0.0312412679, -0.00396855408, 0.00569290947, -0.0242677703, -0.0167997889, -0.0140484273, -0.00770888431, -0.0111195585, -0.0125966715, -0.0158615373, -0.0166222807, -0.0100291567, -3.14005483e-05, 0.00524597196, -0.00347406953, -0.00271490938, 0.0194877554, 0.00574045628, 0.00254057185, 0.00867249444, -0.00902116951, -0.00293996301, -0.0303537324, 0.00321573322, 9.10814051e-05, 0.0136300176, 0.0217573121, 0.00781031698, -0.00471345, -0.0156713501, -0.0106504317, 0.0128122158, -0.0114682335, 0.00182261865, -0.01261569, 0.00777227944, 0.0202485, 0.00904652756, -0.0100418357, -0.0202611797, -0.000568577787, 0.00615252648, 0.01984277, 0.0275643319, -0.0171294454, 0.00921135582, 0.00237574382, 0.00157537637, -0.0173069518, 0.00849498715, -0.0101052318, -0.0111639351, -0.00578800263, -0.00153337698, 0.0159883276, 0.00122115447, 0.0147711355, 0.000879611587, 0.0111829536, 0.0118486062, 0.00190344779, -0.0241536591, 0.0103968503, -0.0125396159, -0.00992138498, 0.00417775894, 0.0023915926, 0.0111068795, 0.00503993686, -0.00812095497, 0.0199315231, -0.00889437832, 0.00742994435, 0.00216495385, -0.02523138, 0.0130848167, 0.011461894, 0.0104665859, 0.0281222127, 0.00163084746, -0.00968048163, 0.000603445224, -0.0108976746, 0.0124952393, -0.015633313, -0.00780397747, -0.00728413463, -0.0016577905, -0.0144795161, -0.0242297333, -0.0050177481, -0.00197952217, 0.0030017735, 0.0213389024, 0.00806389842, -0.0121529037, 0.00874856953, -0.0144034419, -0.0196399037, 0.00617471477, 0.0105997156, 0.00445035938, 0.00837453641, -0.0202358216, -0.00432990771, 0.0134271523, -0.0014137181, 0.0132750031, -0.0224800184, 0.0072714556, -0.00712564634, -0.0127171231, -0.0065550874, -0.015037396, -0.0118042286, 0.0251172688, -0.0079180887, 0.00831114, -0.0466336794, -0.0193356052, 2.8045049e-06, 0.00127266324, 2.88746378e-05, -0.0122987134, -0.00116726838, 0.00242487527, -0.00613033818, 0.00606060307, 0.000102522295, 0.012939007, -0.0135285845, 0.0153290145, 0.00781665649, 0.0212628264, -0.0107645439, -0.031900581, 0.00113715557, -0.00523646269, -0.0067896503, 0.00620641233, 0.0291365385, -0.00671991566, 0.001089609, 0.000778971356, 0.00603207527, 0.00253106258, -0.00443451, 0.0176873244, -0.000651784241, -0.00138994481, -0.01984277, -0.0015096037, 0.0223278701, -0.0100101382, 0.00107138278, -0.0219982136, 0.00336629734, 0.00453277305, 0.0305565968, 0.0315962806, -0.0135666216, 0.0125522949, 0.00475782715, 0.00908456463, 0.0100925528, -0.0152402613, 0.00514136953, -0.0176873244, 6.63175597e-05, -0.0140737854, 0.0181184132, -0.0227843169, 0.00250094966, 0.0138709201, 0.000208808691, 0.0297958516, 0.00692912051, -0.0120387925, -0.0127298022, -0.0163306631, 0.0256117526, 0.00511284126, -0.0052649905, 0.0150754331, 0.00537593244, -0.000418409822, 0.0108406181, -0.0097502172, 0.0120958481, 0.0302522983, 0.00261506136, 0.0117535125, 0.0215164088, 0.0202231426, -0.0167363938, 0.0116457408, -0.0379104652, 0.016837826, 0.00418409845, -0.00343603222, 0.021059962, -0.0107138278, 0.0255990736, -0.0065550874, -0.00163560209, 0.0326613262, -0.0172815938, 0.0148472097, 0.00376885827, 0.022264475, -0.0186255779, 0.00166729977, 0.0117281545, -0.00762013067, 0.0173196308, -0.0316723548, 0.0100291567, -0.00410485407, -0.0155445589, 0.00719538145, -0.0324331, 0.0151768662, 0.00169424282, -0.00314124348, -0.0202611797, -0.0186255779, -0.0077025448, -0.00606377283, 0.00894509535, -0.0133130401, -0.015633313, -0.0179028697, 0.00401610043, -0.0094269, 0.0177253615, -0.0130214216, -0.0189425536, -0.015037396, 0.00359452097, -0.0142386137, -0.0116330609, -0.00566755142, -0.00557245826, 0.0101242503, -0.0174210649, -0.0039336863, -0.0193356052, -0.00762647, -0.0130341006, -0.0136680547, -0.00774058187, 0.0130974958, -0.00853302516, 0.0132116079, -0.0104665859, 0.00663116202, -0.0047609969, -0.0123938061, -0.00560415583, -0.0140611064, -0.00343920197, -0.001615791, 0.0103397947, 0.00268796622, -0.0113097448, -0.00679599, 0.00922403485, -0.0055407607, 0.00755673507, 0.03479141, -0.010232022, 0.0114175165, 0.0122860344, 0.0115379682, -0.00297483057, -0.00922403485, 0.00658044545, 0.00412704237, -0.0231773686, 0.000976289622, -0.00449156621, 0.0199442022, 0.00553759094, -0.00299860374, -0.00211106776, 0.0107138278, -0.00265468354, -0.0138835991, -0.00155952759, -0.00890071876, -0.0006668407, 0.00500506908, 0.00927475095, 0.00666285958, -0.00907188561, 0.0301762242, 0.0179409068, 0.00992772449, 0.00818435, 0.00706225075, -0.00154526357, 0.00260713696, -0.0103905108, -0.0068530459, 0.0122289788, -0.0142766507, -0.00737288827, 0.00956637, -0.00950931478, 0.0174337439, -0.0145555902, 0.00709394878, -0.0109927673, 0.00372131169, -0.0158868954, 0.011747173, 0.0127678392, 0.0046912618, -0.0130848167, -0.0102510406, 0.0104919439, -0.0145429112, -0.00150009431, -0.00806389842, 0.00730315363, 0.0031856203, -0.00489095738, -0.0151261492, 0.00359135098, -0.00282109668, 0.00529985782, -0.00254849624, -0.0100735333, -0.00576898409, 0.00753137702, 0.0238747187, -0.00929377, -0.0223912653, 0.00472612912, -0.0141878976, -0.0133257192, 1.32981822e-05, 0.0492202118, 0.0230125412, 0.000775009103, 0.0247749332, -0.00107930717, 0.00423481455, 0.0296437033, -0.0147457765, 0.028274361, -0.000152743363, -0.0117535125, 0.00270223012, 0.000741726544, 0.00014759248, -0.0193482842, -0.0226702057, -0.0140864644, 0.00343603222, 0.026473932, -0.00160786661, 0.00475782715, 0.00979459379, -0.0138709201, -0.00981361233, -0.00594966114, 0.0113097448, 0.00496069249, -0.0269050207, 0.0130467797, 0.002176048, 0.00139311457, 0.00984531, -0.0248763673, -0.0202865377, -0.0101369293, -0.0544693545, -0.0231773686, -0.00732217217, -0.00310479105, 0.00818435, 0.00921135582, -0.011994415, 0.0111575956, 0.0163179841, 0.00900849048, -0.00646633375, 0.00774058187, 0.0140737854, -0.0196525827, 0.00538861146, -0.0137187708, -0.0359325297, -0.00114666484, 0.00715734391, 0.0291365385, -0.00671357615, 0.0126473885, -0.0160644017, 0.0218967814, 0.00319195981, 0.0254976414, -0.00749334, -0.0139977112, -0.00309211202, -0.00100085535, -0.00669455715, 0.00846329, -0.0241916962, 0.000368882145, 0.00646950351, -0.0161404759, -0.0250285156, -0.00432990771, 0.00765816774, 0.0120387925, -0.0236464944, -0.00227272604, 0.0130594587, -0.0134651894, 0.00905920658, 0.00185114658, -0.00845061056, -0.00394636532, 0.00145413261, 0.00636807084, -0.0169265792, 0.00601939624, 0.00637758, 0.00155794271, 0.0209458508, -0.0115696657, 0.00127424812, 0.0199568812, -0.000506370969, 0.0187650472, -0.0201977845, 0.00626346841, 0.0287561677, -0.00753137702, 0.0356789492, 0.0165081695, -0.0116584199, 0.0361353941, 0.00441866135, -0.00874856953, 0.00671357615, -0.00143194431, 0.021072641, -0.0284518693, -0.00122828642, -0.00179409061, 0.0208697747, 0.0103841713, -0.0171674825, -0.0169519372, -0.0237859655, 0.00316026225, -0.00569290947, -0.00261030672, -0.00542981876, -0.0218841024, 0.00736020925, 0.00328071346, -0.00997210108, -0.011411177, 0.0108976746, -0.0118105682, -0.025307456, 0.00556611875, -0.00849498715, -0.0083174808, 0.00257860916, 0.00991504546, -0.0177507196, 0.00250411942, -0.0182705633, 0.0156840291, -0.0262964237, 0.0216685571, 0.000518257613, 0.0259033721, 0.00610181, 0.0133130401, 0.0133130401, -0.00714466488, 0.0122987134, -0.00348040904, 0.00832382, -0.0196652617, 0.0107582044, 0.0146443443, 0.0200329553, -0.00595600065, -0.00241378089, -0.00306675397, 0.00269430573, -0.0216685571, 0.00659312448, -0.000614539429, 0.0256624706, -0.00097153493, -0.00025655338, 0.00114745728, 0.0142893298, -0.0235704202, -0.0230886154, -0.00384493289, 0.0222137589, 0.0173703469, -0.0148091726, 0.0320273712, 0.0220362507, 0.0244706366, 0.00250253454, 0.0209838878, -0.0051096715, -0.0127741788, -0.014454158, -0.0299987178, 0.00473246863, 0.0187777262, 0.0104856044, 0.00594649138, 0.00798782427, -0.0246101059, -0.0018036, 0.0100735333, -0.000685859297, 0.000931120361, -0.00519842515, 0.0115696657, -0.0125015788, -0.00204450265, -0.0160644017, -0.0114301955, 0.0269050207, 0.0174971391, -0.00742360484, 0.00972485915, -0.0072144, 0.000627614732, 0.0136046596, 0.0369468555, -0.0108342785, 0.00297007593, -0.00844427105, -0.00335678807, 0.0115252892, 0.00437111501, -0.00419360772]
|
30 Oct, 2024
|
array::size() in C++ STL
30 Oct, 2024
The array::size() method is used to find the number of elements in the array container. It is the member method std::array class defined inside <array> header file. In this article, we will learn about the array::size() method in C++.
Example:
C++
// C++ Program to illustrate the use of array::size()
#include <bits/stdc++.h>
using namespace std;
int main() {
array<int, 3> a = {1, 2, 3};
cout << a.size();
return 0;
}
Output3array::size() Syntaxa.size();
ParametersThis function does not require any parameter.Return ValueReturns the number of elements present in the array. If the array is empty, it returns 0.Note: As std::arrays are fixed size containers whose size is set at the time of declaration, the array::size() method will always return the same size for the container instance.
More Examples of array::size()The following examples demonstrates the use of array::size() function in different scenarios:
Example 1: Find the Size of Array of Strings
C++
// C++ Program to find the size of array of
// strings using array::size()
#include <bits/stdc++.h>
using namespace std;
int main() {
array<string, 3> a = {"Geeks", "For",
"Geeks"};
// Finding the size
cout << a.size();
return 0;
}
Output3Time Complexity: O(1)Auxiliary Space: O(1)
Example 2: Using array::size() on an Uninitialized Array
C++
// C++ Program to find the size of uninitialized
// array using array::size() method
#include <bits/stdc++.h>
using namespace std;
int main() {
array<int, 3> a;
// Finding the size
cout << a.size();
return 0;
}
Output3Time Complexity: O(1)Auxiliary Space: O(1)
Example 3: Using array::size() on an Array with Initial Size 0.
C++
// C++ Program to implement array::size() method
#include <bits/stdc++.h>
using namespace std;
int main() {
array<int, 0> a;
// find the size of an array using array::size()
cout << a.size();
return 0;
}
Output0Time Complexity: O(1)Auxiliary Space: O(1)
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/array::size() in C++ STL
|
https://www.geeksforgeeks.org/arraysize-c-stl/?ref=lbp
|
Pandas
|
array::size() in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, array::size() in C++ STL, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0240161885, 0.025356805, -0.0116505958, 0.0440999, 0.0392481461, -0.0281401798, 0.00348241115, 0.0308469478, -0.00547099253, 0.00145233457, -0.0297999904, 0.0279614311, 0.0336303227, -0.0188197028, 0.017657835, -0.00848418754, -0.0326855071, 0.0126847858, -0.0155000808, -0.0164831989, 0.0116314441, 0.00235725078, -0.0295191, 0.0305405222, -0.00454852032, 0.0341921076, -0.0159469526, 0.00643815147, -0.0523478836, -0.0215647742, 0.00753298821, 0.00265569752, -0.010833459, -0.0436657965, 0.00276581966, -0.00141562719, 0.0331451483, 0.0134317009, -0.0287274979, -0.0110505112, 0.033298362, 0.0230713729, 0.0188197028, -0.00578699494, 0.00693928683, 0.0380735099, -0.0124102794, -0.0139424121, -0.0274762549, 0.0186026506, -0.00556994276, 0.00811392162, 0.0227138754, 0.0182706881, 0.0222414676, 0.0140573224, 0.00594020821, 0.0270676874, -0.0284466073, -0.0655753, 0.0344219245, -0.027323043, 0.0358008444, 0.00902043469, -0.020287998, -0.0398609973, -0.0317662284, 0.0430018716, 0.0523989573, -0.0142871421, -0.00370903919, 0.0159597211, 0.00116665557, 0.00418144697, -0.0221265573, -0.0260079615, -0.00743723, 0.0124996537, -0.0131252743, 0.0554121509, -0.0265569761, 0.0409590267, -0.00614449242, 0.00511987833, -0.0366690531, 0.0047943, -0.00225670449, -0.01837283, 0.0124549661, 0.0392992161, -0.0305149872, 0.0329663977, 0.0250631459, -0.00600723876, -0.0129146064, 0.0420825928, 0.0156532936, 0.0389672555, 0.00135258632, 0.0581189208, 0.00665201154, 0.0132529521, 0.0225223582, -0.0105908709, 0.00019939676, -0.0195985381, 0.0196623765, -0.0175173897, 0.00051390304, 0.0106100226, 0.0304128435, -0.015691597, -0.0329408646, 0.035928525, -0.0242460072, 0.0326344371, 0.0076415143, -0.010514264, 0.00852887519, 0.0363881625, 0.0153085645, 0.0570975, 0.0245652031, -0.0158448108, -0.0521691367, 0.0255866237, 0.0385076143, 0.000460038951, 0.00321588386, -0.00974181388, 0.0110632787, -0.0139168762, 0.0168917682, -0.0355454907, -0.0389417186, 0.00518371724, 0.0162533801, 0.0313065872, -0.00250727218, -0.026633583, -0.037358515, -0.00939708389, -0.00786495, -0.00470173359, -0.0162533801, 0.00618598796, -0.0124549661, 0.0418783091, -0.020977458, 0.0116442125, -0.00690736715, -0.0013031112, 0.0130678192, -0.0215009358, 0.040627066, -0.0165342707, 0.00322386366, 0.00698397402, 0.0284976773, -0.00705419667, 0.0221137889, -0.0219733436, -0.0188707747, 0.00230139168, -0.0372819081, 0.0278337523, 0.0321747959, -0.0151425833, -0.0485941581, 0.0227649454, 0.00764789805, 0.0488495119, -0.00349198701, 0.0378181562, -0.00680522481, -0.0104631931, 0.0264292974, 0.00744999759, -0.0170194469, 0.00662009232, -0.000836289371, -0.00203646044, -0.0146957105, 0.0130359, 0.0133167915, 0.0159341861, 0.0177216735, -0.011203724, 0.0607235469, 0.00123448437, -0.00315842871, 0.0304894503, 0.00641580764, 0.00934601296, 0.00884168502, 0.0326599739, -0.0205944236, -0.020045409, -0.0218967367, 0.0302085597, -0.00826075114, -0.0128890704, 0.00128555554, -0.00710526761, 0.0403717086, 0.0270932224, -0.00603915844, 0.00320152, 0.031281054, 0.0428997278, -0.0045166011, 0.0281657148, -0.0171343554, -0.000667914341, 0.00289190141, 0.0314598, -0.0298255272, 0.0299021322, -0.00237959437, -0.00737339118, 0.0168917682, -0.0161767732, 0.0390438624, -0.039375823, -0.0521436, -0.0411633104, -0.0198666602, -0.00466023851, 0.028625356, -0.00609022938, -0.0184239019, 0.0107313162, -0.0153340995, 0.0106100226, 0.054748226, -0.0498709343, -0.00049355434, -0.0100610079, -0.0161767732, 0.0165981092, -0.0205561202, 0.0492325462, -0.0197517499, -0.0261994787, 0.0259185862, -0.0112484116, -0.023709761, -0.0511732474, 0.0103418995, 0.00215296634, -0.00295893219, 0.025944123, 0.0258675162, -0.00766704977, -0.0115867574, 0.000339144055, -0.00572634768, -0.0115739899, 0.023735296, 0.028625356, 0.0143509815, 0.0289573167, -0.0167385545, 0.000753697823, 0.00273709209, 0.0210796, 0.0371542312, -0.0242204722, -0.00766066601, -0.0625110343, 0.020364603, -0.0279614311, 0.00339942053, -0.0252546631, -0.0122442981, 0.0350603163, -0.020339068, 0.0211689733, 0.00810115412, 0.0043282765, 0.0247056484, -0.0174663179, -0.0084203491, 0.0158065073, -0.00239395816, -0.0127933118, -0.0386352912, -0.00884806924, -0.0211179033, 0.00406653667, -0.024986539, -0.0461682789, 0.0306171291, 0.0131763453, -0.0027562438, -0.019304879, -0.043257229, -0.0126784025, -0.0351113863, -0.0313576609, -0.01165698, -0.0471386313, -0.0132529521, -0.00180185249, 0.0116888992, -0.0252163596, 0.0245269, -0.052066993, 0.0217690598, -0.0138913412, -0.0105653349, -0.0379202962, -0.00169651827, -0.0255483203, -0.0322769396, -0.00255834335, 0.00996524934, 0.019036755, -0.0271442924, -0.0115548382, -0.0154617773, -0.00871400721, 0.00970989373, 0.0427975878, 0.0211562067, 0.0196113046, -0.0150787439, 0.00129193941, 0.016355522, -0.0668520778, -0.0137764309, 0.0707845539, -0.0335281827, -0.0120974686, 0.00477195671, -0.0325833671, -0.0149255311, -0.0153596355, -0.010488729, 0.0149382986, 0.0147340139, 0.00670308294, -0.0180664044, 0.00453575281, 0.00287913368, 0.0118804164, -0.022994766, -0.00754575618, -0.00341538037, 0.0219350401, 0.000938431593, 0.00534012262, 0.0102716759, -0.0091736475, 0.00919279922, 0.0065371017, 0.000549812394, -0.0193942524, 0.0103355153, -0.0391715392, -0.000597292557, 0.0187047925, -0.0291105304, 0.00998440105, 0.0376394056, -0.0419293791, -0.00766704977, -0.0398354642, 0.00108366506, -0.0265059043, -0.00605511805, 0.0200964808, -0.00498581678, 0.0262760837, -0.0233650319, -0.00385586848, 0.0302340947, 0.0224074479, -0.00376330223, 0.00226308848, -0.0122634498, 0.0401418917, -0.0175556932, -0.017657835, -0.0549014397, -0.0217307564, -0.0112547949, 0.0247950219, 0.025944123, 0.0686906353, -0.0445595421, 0.00310416566, 0.0404993892, -0.0323790833, 0.0323790833, 0.011152653, 0.00611576485, -0.0424911603, -0.0272464361, -0.0253057331, 0.0304128435, 0.0110568944, 0.0337835364, -0.0299276691, -0.00834374223, -0.000258148473, -0.020287998, -0.0259824265, 0.0230713729, -0.0253440365, 0.0111973397, 0.0333494321, -0.0169939101, 0.00685629621, 0.0351624563, -0.0206199586, -0.0322003327, 0.0261994787, 0.0334771089, 0.0177727453, -0.00551567972, -0.0135849146, -0.0440488309, 0.00721379369, 0.00617002789, -0.0158575792, -0.0605192631, 0.0190878268, 0.00259345467, -0.0727252588, -0.0437168665, 0.0435125828, 0.0389161818, 0.0279869661, 0.0024705648, -0.0431550853, 0.0260462649, 0.00269878889, -0.0358774513, -0.0470109545, -0.0201986227, 0.03674566, 0.0433849059, -0.0209263861, 0.00648283865, 0.0269144736, -0.00848418754, 0.00374415051, 0.00037425544, 0.0121485395, -0.0316385515, 0.0138275018, 0.0200837124, 0.006412616, 0.0421336628, -0.0153851705, 0.0351879932, -0.0173769444, 0.00616364414, -0.000250767102, -0.00555398269, -0.0146446396, 0.0105398, 0.0277060755, 0.0444829352, 0.0381245799, 0.0279358961, -0.0231352113, -0.0180919394, -0.00720102619, -0.0106419418, -0.014682943, 0.0508923568, -0.0195219312, 0.00628813, -0.0188452378, -0.00972904544, -0.0115101505, -0.0186026506, -0.0169173032, 0.0120336292, 0.0136232181, -0.0654731616, 0.00949922577, -0.00992694683, -0.0237736, 0.013993483, -0.00239715, -0.00879061408, -0.0142360711, 0.00251844386, 0.0171343554, 0.00154649699, -0.0380990468, 0.0118165771, 0.0191388968, -0.00801178, 0.00961413607, -0.0149638345, 0.0486963019, 0.011682516, -0.0102142217, -0.0239268132, 0.0737977475, -0.000701828743, -0.0456575677, -0.00247216085, 0.0371797644, -0.00815222505, 0.0107057812, -0.0255227853, 0.0288807116, 0.00361328083, 0.0131252743, -0.0227649454, -0.0403206386, -0.0125507247, -0.0076415143, -0.00948007405, -0.000387621723, 0.00888637267, 0.0279103592, 0.00321109593, -0.00309299398, 0.0219222717, -0.0108909132, -0.00280891079, 0.012212378, -0.00759044336, -0.0141083933, -0.0472152382, 0.00903958548, -0.0158320423, -0.0056848526, -0.0513264611, -0.0301830247, -0.00270198076, 0.000222438612, -0.00463789469, 0.0103993537, 0.00590190478, 0.0202752296, 0.0279614311, 0.00628813, -0.015640527, 0.0212583486, 0.00433146814, -0.00244981726, 0.0158575792, 0.0172875691, 0.0154362423, 0.00944177061, 0.0196368396, -0.0194963943, -0.00106850336, 0.030029811, -0.00518052559, -0.0159597211, -0.00610938109, 0.00478791632, -0.0218584333, 0.0145297302, 0.0251142159, 0.0276805405, 0.0016933264, -0.0238629747, 0.0172875691, 0.00847780332, 0.00199496513, 0.0249099322, 0.000142839504, -0.0257909093, 0.0211945102, 0.00863101706, 0.0195985381, 0.0169173032, 0.0181047078, 0.00780111132, -0.0112994825, 0.00549333589, 0.0104440413, -0.0282933936, 0.00962051935, -0.0144275874, -0.031281054, -0.0183345266, -0.0059848954, -0.00569442846, -0.0516073518, -0.00541992113, 0.00676692184, 0.0207987074, 0.00177791296, 0.0137891984, -0.0144914268, 0.0138147343, -0.0368733406, -0.0084331166, -0.0113569377, 0.00380798941, 0.028650891, 0.00867570471, 0.00636792881, -0.0195602346, -0.0083182063, -0.00930770952, 0.0390438624, 0.0133933974, -0.00671585044, 0.00265090959, -0.0614896119, -0.0100290887, 0.0116888992, -0.000243186252, -0.00695205433, 0.0138019668, -0.0227904823, 0.0243353825, -0.0431806222, 0.0120847, -0.0288296398, -0.00624344265, -0.00762236258, -0.016649181, 0.00694567058, 0.0249099322, -0.030004276, -0.0326599739, 0.0102397567, -0.0165342707, 0.00142520305, -0.0452234633, -0.0104312738, -0.0134189334, 0.0200326424, 0.0276805405, 0.022011647, 0.0136870565, -0.0268123318, 0.0369754806, -0.0135466112, 0.00226628035, 0.0181813147, 0.0563314296, -0.00117064547, 0.010648326, -0.0472152382, -0.0110632787, -0.0131380418, -0.0146701755, 0.00840758067, 0.0284210704, -0.0324812233, -0.00044846817, 0.0317917652, 0.00268921303, 0.0362094156, 0.0438445434, 0.0306937359, -0.00840119738, -0.0330174714, -0.0343453176, 0.00116904953, -0.00287594181, 0.00910342485, -0.0288041048, -0.0216158461, -0.0374351218, 0.000169671781, 0.00875231065, -0.0137891984, -0.00585721759, 0.00364839216, -0.0206710305, 0.00298287184, -0.0142488386, -0.00578699494, 0.0270421505, 0.0180919394, 0.00350156287, 0.00396120269, 0.00272911228, 0.00944177061, -0.0183855984, -0.0135083077, -0.0198155902, -0.0140573224, 0.0284976773, 0.00477834046, -0.0230713729, -0.0187941678, 0.00158719427, 0.00294935633, 0.0289828535, 0.0205816552, -0.010699397, 0.0197134465, 0.0258292127, -0.00414952729, -0.0126528665, -0.00737339118, 0.0149382986, -0.0176961385, -0.0124868853, -0.0190239865, 0.03664352, 0.00169651827, 0.0122506814, 0.0110696619, -0.00669031497, 0.0235054772, -0.00521244481, 0.00418783072, 0.0192410387, 0.0247694869, -0.0024705648, -0.0121676913, -0.00948645826, -0.0138019668, -0.0108143073, 0.00737977494, -0.0288041048, -0.00882891752, -0.000148325649, 0.0181302428, 0.0142105352, -0.0318173, -0.0228032488, 0.000912098039, 0.00507838326, -0.0323790833, 0.0130550517, 0.00872039143, -0.000880178588, -0.0013853038, 0.0159597211, -0.00752022024, -0.00488367444, -0.0379969031, 0.00426443759, -0.0144658908, -0.0103099793, -0.0141083933, -0.00809477083, -0.0218839701, -0.00852249097, 0.0342687108, -0.0146957105, -0.034626212, 0.0245396663, -0.0142999096, 0.0164959673, 0.0122762173, 0.00510391872, 0.0234416388, -0.0303617734, 0.0416995585, 0.0151681183, 0.0171854272, 0.0322514027, 0.030080881, 0.00421336619, -0.0219350401, 0.01768337, -0.00622748304, -0.0216669179, -0.034626212, 0.0139041087, 0.010514264, 0.00235884683, 0.0228032488, 0.0112292599, 0.00745638181, -0.00342814811, 0.00175876124, -0.0144403558, 0.0164831989, 0.000900128274, 0.0346006751, 0.000179546856, 0.0135976821, 0.0203773715, -0.011203724, 0.00949922577, 0.0302340947, -0.034013357, 0.0295446347, 0.00967797451, -0.00206518779, 0.0017236498, 0.0240544919, -0.0285998192, -0.00376011012, 0.0268889386, -0.0214881673, -0.000589711708, -0.0346006751, -0.0305405222, -0.00873315893, -0.0265059043, 0.0311789103, -0.0161384698, 0.00966520701, 0.011178188, -0.00444957, -0.0324812233, -0.00501773646, 0.00915449578, 0.0198028218, 0.0129592931, -0.00269719283, -0.0169300716, -0.00694567058, 0.00994609762, 0.00364839216, 0.00927578937, -0.000351911847, -0.00115867576, 0.0239395816, 0.0113824727, 0.00441126665, 0.00141403126, 0.00757129164, -0.014363749, -0.0449681096, -0.0104185054, 0.0581189208, 0.0329919346, 0.0141339283, -0.00746276556, -0.0113888569, -0.0172237307, -0.00986949168, 0.0459639952, -0.00633281702, 0.02538234, 0.00631047366, 0.0231990498, -0.00263175787, 0.0108717615, 0.00861825, 0.0205944236, -0.019355949, -0.0145808011, -0.00123448437, -0.0138785737, -0.0180919394, 0.0167896263, -0.00697759, -0.0166364126, -0.0148872277, -0.00306905434, -0.00656902092, 0.0245524347, 0.0392226093, 0.0258036759, -0.0364647694, -0.0322003327, -0.0120080942, -0.0060615018, 0.00222797692, 0.00993971433, 0.0319705121, -0.0152957961, 0.0390438624, 0.0159214176, -0.0225989651, -0.0164193604, 0.00383671699, 0.000974340946, 0.0144914268, 0.00476557249, 0.0123911276, -0.0234927088, -0.00767981773, 0.0100865439, -0.0297489204, 0.0185388122, -0.00490921, -0.00688821543, 0.0401674248, -0.00323822745, -0.0375372618, -0.0232245866, -0.00632004952, 0.00317438855, 0.000482382573, -0.0302851666, 0.0165981092, -0.0479302332, 0.0364647694, -0.0148233883, 0.0202241577, -0.0299021322, 0.0311533753, 0.0132401846, 0.00613491656, 0.0115803732, -0.00824159943, -0.00300521543, 0.0182196181, -0.025969658, -0.00373138278, -0.0114463121, 0.0128124636, 0.0059242486, -0.00663286, 0.0277826823, 0.000322984852, 0.0261228718, 0.0336558595, -0.0135976821, -0.0370776244, -0.0224202164, -0.00728401681, 0.0215137042, -0.0135338437, 0.0146446396, 0.0310001615, 0.00161193183, -0.00796709303, -0.0073925429, 0.0130869709, 0.0169939101, -0.00849057175, -0.00796070881, -0.0326089, -0.0316896215, -0.0162661467, -0.00949922577, -0.00127757562, 0.00993333, 0.0251397528, -0.0191644337, 0.00229341188, 0.00870762393, -0.0226628035, -0.0389417186, -0.057965707, 0.00829905458, -0.0145680336, 0.0240672585, 0.0229436941, -0.00979288481, -0.0421336628, 0.0112356432, -0.0401674248, -0.0212328117, 0.0151808867, 0.0155000808, -0.0041527194, 0.0490538, 0.0127039375, -0.0200326424, -0.00777557585, 0.0113505535, -0.0113505535, -0.00215456239, 0.0192410387, 0.00870124, 0.0112484116, 0.0141211608, 0.0139424121, -0.000491160434, 0.0147340139, 0.0145424977, 0.0128443837, -0.0245524347, -0.00518052559, 0.00185771147, -0.00306267035, -0.0354688838, 0.0180919394, -0.00749468477, -0.00896298, 0.0336558595, -0.0144403558, -0.051403068, 0.0119059514, -0.002966912, -0.000393806113, 0.0325578302, -0.0154745458, 0.00555079104, 0.0135210752, -0.00577103486, 0.00837566145, -0.00957583264, -0.0129592931, 0.0264292974, -0.000880976615, -0.0103802029, 0.00312331738, -0.0479302332, 0.000598090526, 0.0055092955, -0.00781387929, -0.023735296, -0.00763513055, -0.0115101505, -0.0206710305, 0.01906229, -0.00803731568, -0.0024482212, 0.0350858495, 0.00200294494, 0.0375628, 0.0164448973, -0.0303362366, -0.0152319577, 0.0038143734, -0.0361583419, -0.00438253954, 0.019355949, 0.0106291743, 0.035928525, -0.0174024794, -0.00774365664, 0.0330174714, 0.00594659196, -0.00634558499, -0.0351879932, -0.0102333734, 0.0545439422, -0.00235725078, 0.0150149055, 0.0221648607, 0.0219222717, 0.0233650319, -0.00503369607, 0.0178110488, -0.000736142101, 0.00140126352, 0.0192410387, -0.00371223106, -0.0145935686, -0.00215456239, -0.0366690531, 0.0225861967, -0.00105174561, -0.00202688458, -0.0015241534, -0.0096524395, 0.00670308294, 0.0066137081, -0.000728561252, 0.00236363476, -0.00442722673, -0.0177089069, 0.0415974148, -0.0238374397, 0.00665839575, -0.00269878889, 0.026659118, 0.014363749, -0.0196113046, 0.0145297302, -0.00751383649, 0.00462193508, -0.00732232, -0.0216413811, -0.0076415143, 0.0205944236, -0.00745638181, -0.00129193941, 0.0058731772, 0.0342431776, 0.0218456667, 0.0161257014, 0.0105334157, 0.0175046213, -0.0234671738, -0.0111271171, 0.00341857225, -0.000900128274, 0.00920556672, 0.00439530704, 0.0021322188, 0.00490282616, -0.027323043, -0.009186415, -0.0371031575, -0.0106036384, 0.0168534648, 0.0234671738, -0.00624663476, 0.0319194421, -0.00617960375, -0.0167130195, -0.0106802452, -0.00468896609, -0.00814584177, 0.0178621188, 0.0127103217, -0.00139966747, 0.00563378166, 0.0160235595, 0.054748226, 0.00571358, 0.0281146448, -0.0304383803, 0.026710188, -0.0110568944, 0.00074492, 0.0101631498, 0.0125124212, 0.0298510622, -0.0220754854, 0.00758405915, -0.00698397402, 0.0106036384, 0.00669669872, 0.00545822456, -0.00681160903, -0.000199895498, 0.0189729165, 0.00837566145, -0.02400342, 0.00664562779, -0.00712441932, -0.00948645826, 0.0303617734, -0.0119634066, 0.0261994787, -0.0251652878, -0.0282423217, -0.00474961288, 0.00214817841, -0.00110760459, 0.0028121029, -0.0184494369, -0.0063008978, 0.0133167915, 0.0142743746, 0.0247439519, -0.00128715148, 0.0306171291, 0.0042165583, 0.00626897858, -0.00111478649, -0.00324780331, -0.00824159943, -0.0120272459, 0.00498581678, -0.00790325366, -0.0170960538, 0.00791602116, -0.0290849954, -0.0272209, -0.00322226761, 0.00978011731, 0.00490282616, -0.00680522481, -0.00139966747, -0.00789048616, 0.0127039375, -0.0372563712, 0.00831182301, -0.00573911564, -0.00832459051, -0.012480502, 0.0167768579, -0.00690736715, -0.0247439519, -0.0191005934, 0.000712601526, -0.0105398, 0.015640527, 0.013699824, 0.0486452281, 0.00332281389, -0.0118484972, 0.0168917682, -0.000806364871, 0.00923748687, -0.019304879, -0.00718187448, 0.0222031642, 0.00697120605, 0.00780111132, 0.0155128483, -0.00110760459, -0.00849057175, -0.00373138278, 0.00909704063, -0.0116314441, 0.0190878268, -0.0322769396, -0.0136487531, -0.00266527338, 0.0442786478, -0.00240672589, 0.017338641, 0.00257430295, 0.0139424121, -0.00487409858, 0.00415591151, -0.0346517451, -0.00194549, 0.0243226141, -0.0179004222, -0.00961413607, -0.0288041048, -0.0152574936, -0.0109228333, 0.000697439827, 0.0225351267, -0.0270421505, 0.0145169618, -0.00534012262, -0.0070286612, 0.00359412911, -0.0191516653, -0.0033643092, -0.00419740658, -0.0138530377, -0.0175939966, -0.0388140418, -0.0172492657, 0.00548376, -0.000669909292, -0.0062370589, -0.00445914594, -0.0165725742, 0.00288711349, 0.0134189334, -0.014338213, -0.035979595, -0.011286715, 0.0131125068, -0.00545503246, -0.00984395575, -0.0165598057, 0.00129991921, 0.0167896263, -0.00787771866, 0.00946730655, 0.035928525, 0.045249, 0.00451979274, -0.051300928, -0.00358774536, -0.0149255311, 0.0316896215, -0.0133678624, 0.0129209897, 0.0147595499, -0.025012074, -0.023977885, -0.00674138591, 0.00711165182, 0.000894542376, -0.0545950122, 0.0039165155, -0.0101950699, -0.00693928683, 0.000494352367, 0.0151553508, 0.00318875234, 0.0338346064, 0.0134827718, -0.000325378816, -0.00861186534, -0.0168151613, 0.0116059091, -0.00388140418, 0.00861186534, 0.0208497792, 0.00400908198, 0.00536885, -0.00859909784, 0.00130470714, 0.00272432435, 0.0375628, -0.00755852368, -0.000405775907, 0.0338090733, -0.0162023082, 0.0107887713, 0.0161512382, -0.0144020524, -0.0175812282, -0.0121676913, -0.0313065872, 0.00231575547, 0.0133678624, 0.0136232181, -0.0134955402, 0.000138550327, -0.00202209665, -0.0174024794, 0.031996049, 0.00635196874, 0.0164959673, -0.0145808011, -0.0280380379, -0.0069648223, -0.00667116325, -0.015691597, -0.00705419667, -0.00573592354, 0.00373457465, -0.0165598057, -0.0195857696, -0.00377287809, -0.00326057104, -0.00588913681, 0.0154617773, 0.0160490945, -0.013993483, -0.0143765165, 0.000767263584, 0.00954391342, -0.011708051, -0.000397995551, 0.0189601481, 0.0226117317, 0.0173769444, 0.00389098, -0.0058731772, -0.0102780601, -0.0202496946, 0.0157937389, 0.00217690598, 0.00881615, -0.0232501216, 0.00873315893, -0.0438700803, -0.00412079971, 0.0327365808, 0.0130869709, 0.000373058487, 0.0083182063, 0.0282423217, -0.027348578, -0.020313533, -0.0225989651, 0.011178188, -0.0154234739, -0.0101503823, 0.0123209041, 0.0277316105, -0.000232014441, 0.0076287468, 0.00300202356, 2.65829094e-05, 0.00434742775, 0.0115676057, -0.0121421553, -0.0120272459, -0.0265314393, 0.00687544793, 0.00222478504, 0.00430912478, 0.0239523482, -0.00266048545, 0.000464427867, 0.0212072767, 0.00733508775, 0.00395801058, 0.026659118, 0.0085480269, 0.0165342707, -0.0259568896, -0.02837, -0.00784579851, -0.00405696081, 0.019304879, 0.0291360673, -0.00347283529, 0.0202496946, -0.0177727453, 0.00165981101, 0.0100163212, 0.0216669179, -0.00674138591, -0.00634239288, -0.000723374367, 0.0377160124, -0.0195857696, 0.0172492657, -0.0282423217, -0.000216453715, -0.00729678432, 0.000789208221, 0.00799901225, 0.00435700361, -0.000188923193, -0.0218967367, 0.00563058956, 0.00670308294, 0.0282167867, 0.0230969079, 0.0124294301, 0.00863740128, 0.0029286088, 0.000964765146, -0.018615419, 0.0279103592, -0.000658338482, -0.0174024794, -0.0265825111, -0.0268123318, 0.00757129164, 0.0204029065, 0.0039165155, -0.00180664042, -0.0264548324, -0.0201858543, -0.0192410387, 0.0282423217, 0.00702227699, -0.00894382782, 0.00627217, -0.0240672585, 0.0022981998, -0.0281401798, 0.0127805443, 0.00138610171, 0.00859909784, -0.00132625282, -0.00289988122, -0.0208114758, 0.00284083025, -0.0101759182, -0.0242077038, -1.95631274e-05, -0.00700950949, 0.0182962231, -0.00897574704, -0.00318875234, -0.0124549661, -0.0109866718, -0.0123911276, -0.0159980245, 0.0131125068, -0.00978011731, -0.0156149911, 0.0193942524, -0.00781387929, 0.00165023515, 0.0189346131, 0.0159852561, 0.00155048689, 0.0179642625, 0.000391611655, 0.0182196181, -0.0181940813, -0.0204156749, -0.0114526954, -0.0124741178, 0.00755214, -0.00260143448, -0.0127230892, 0.0192538071, -0.00263016205, 0.0039165155, -0.00537523394, -0.0145680336, 0.015640527, 0.0184366703, 0.0193687174, -0.0321237259, 0.0188580062, -0.0114909988, 0.0261101034, 0.0449936464, -0.00645091897, -0.0219222717, -0.000734546164, -0.0110568944, 0.0126592508, -0.0231607463, 0.0141339283, -0.0195857696, 0.0109994393, -0.0344985314, -0.00737977494, 0.00680522481, 0.000253959064, -0.00573911564, 0.00607746188, 0.0403717086, -0.0165981092, 0.0316385515, -0.00752660446, -0.0187814, 0.0194580909, 0.0213094186, 0.032711044, 0.0258930512, 0.0406781361, 0.015691597, -0.00454213656, -0.0306937359, -0.0103865862, 0.0157043654, 0.00833735801, -0.00310735754, -0.00635196874, 0.0111590372, -0.00483898725, 0.0141977677, -0.000329967239, -0.0395290367, 0.00190559065, -0.0207476374, 0.01837283, -0.00617641211, -0.0319194421, 0.00221361336, 0.00336750108, -0.000301439228, 5.21808079e-06, 0.0103610512, 0.0132146487, -0.0416995585, 0.00274666795, -0.0186537225, 0.0029445684, -0.00429635681, -0.0104823448, -0.0345496051, 0.00425486173, 0.0084331166, 0.00642219186, 0.00427401345, 0.00725848088, 0.0120080942, 0.00274507189, -0.00507838326, 0.0345240682, 0.0256376956, -0.00221680524, 0.012557108, 0.00994609762, 0.00677330559, -0.0204412099, -0.00932686124, 0.00296531618, -0.00674138591, -0.00165023515, -0.00475280499, 0.0237480644, 0.00835651, 0.0185132753, 0.00614449242, 0.011286715, -0.00133742462, 0.00234129094, -0.00515498966, 0.0201730877, -0.000522680872, -0.00600723876, -0.0031807723, 0.017364176, 0.0143765165, 0.021717988, -0.0239906516, 0.00120575691, 0.00080835988, 0.0151170474, -0.00998440105, 0.0270932224, -0.0130550517, -0.000137852083, 0.0113888569, -0.0345496051, -0.0102461409, 0.0180408694, -0.0207476374, 0.0254717153, 0.01234644, 0.00363243255, -0.00658817263, -0.0205305852, -0.00304511469, 0.00248014065, 0.0175173897, 0.0132529521, 0.0283955354, -0.0101503823, 0.00539438566, -0.00382394902, 0.0110249752, 0.0102397567, -0.0107951555, -0.0106866295, -0.00602000672, 0.0133678624, -0.00771173695, 0.0113441693, -0.00935878, -0.00153293123, 0.00012747827, -0.00833735801, -0.00640623178, 0.0270421505, -0.00713718729, -0.0178748872, -0.00585721759, -0.0242715441, 0.0204667468, -0.00305469055, 0.0114463121, -0.011152653, 0.00778196, 0.0083182063, -0.0197900534, 0.00950561, 0.000555797305, 0.0159724895, -0.0158575792, -0.00756490789, -0.00319034816, 0.00175397331, 0.0272975061, 0.0244247559, -0.021347722, -0.00589552103, 0.00261899014, -0.0163682904, 0.0199688021, 0.0350092426, 0.000566969102, 0.0136104496, 0.00279454701, -0.0145041943, -0.00106531137, -0.00865016878, -0.0122506814, 0.0228032488, 0.017657835, 0.00969074294, -0.00755852368, -0.000498741283, -0.00324620726, 0.00930132531, 0.0222542342, -0.0125379572, 0.0291871373, -0.00135019235, -0.00985672325, 0.00306905434, -0.00134301046, 0.003664352, -0.00516775763, 0.0132784881, -0.0139041087, -0.026684653, 0.000519488938, -0.0101312306, 0.0195091628, 0.0123400558, 0.018002566, -0.0117272027, 0.0218328983, 0.00555717479, 0.0133040231, -0.0126337148, 0.0186281856, -0.00394524308, -0.0037888377, 0.00534969848, -0.00224872469, -0.00243066554, 0.00248173671, 0.000919279933, -0.000153811809, -0.0038143734, 0.01131225, 0.0126528665, -0.000282487046, -0.0105589516, -0.00392609136, 0.00225989637, -0.0242843106, 0.0193814859, 0.0147340139, 0.000452857086, 0.021717988, -0.0182706881, -0.0126528665, 0.0315364078, 0.0224329829, 0.0190878268, -0.011152653, 0.0124038951, 0.00227585621, 0.00877784658, -0.00624025101, -0.0307192709, -0.0247056484, -0.0161512382, 0.00590509688, -0.0193942524, 0.000990300672, -0.0178238153, -0.00693928683, 0.0302085597, -0.00852887519, -0.00699674152, -0.0111335013, -0.00381118129, -0.00485175522, -0.0295446347, -0.00473684538, -0.0160746314, -0.00464108679, 0.00507199951, -0.00850972347, -0.0169045366, 0.0101503823, 0.00810115412, -0.00920556672, 0.0011602717, -0.0228670873, 0.00872677565, 0.0138913412, -0.0105398, -0.0079543246, 0.0195730012, 0.00694567058, 0.0115676057, -0.0127230892, -0.00664562779, 0.000886562513, 0.0129082222, 0.0201347843, -0.0118101938, 0.0253695715, -0.0132274162, 0.00895659532, 0.00847142, -0.0170322135, -0.0190878268, 9.18182704e-05, -0.0118038096, -0.0260973349, 0.00428678095, -0.0138658052, -0.00962051935, -0.0125188055, 0.00923110265, -0.0274507198, -0.0128316153, 0.0066009406, 0.0120336292, 0.0204795133, 0.00332600577, -0.00884806924, 0.00445595384, -0.0212838836, -0.00247216085, -0.0123081366, -0.010488729, -0.00790325366, -0.00127119175, 0.0230969079, -0.00406972878, 0.021986112, -0.000971947, -0.00156564859, 0.00646368694, 0.0184239019, -0.0189729165, -0.00153053727, -0.00969074294, 0.0118548805, -0.00843950082, 0.00194708596, 0.00934601296, -0.0084331166, 0.0187686309, 0.0128188478, 0.00243704929, 0.0051326463, 0.00435700361, -0.0179514941, 0.0130039807, 0.00752660446, 0.00421975041, -0.0149382986, -0.00406334503, -0.00990779512, 0.000118999669, 0.00207157177, -0.0194197875, -0.0019183585, 0.0038143734, -0.00632643327, -0.00801178, -0.00172524585, 0.00331643, 0.00150500168, -0.0248205587, -0.0108653782, 0.00914811157, 0.00766066601, 0.0184111334, -0.013699824, -0.0187303275, -0.0090587372, 0.00600723876, -0.00749468477, 4.2143638e-05, -0.0124485819, 0.0151425833, 0.0124294301, -0.0153979389, -0.00350475474, -0.02469288, -0.0413675979, 0.0188452378, -0.0011642616, 0.0270421505, -0.0129401414, 0.00359412911, -0.00683076074, -0.00766704977, -0.0180919394, -0.00393566722, 0.0104631931, -0.0170960538, -0.021692453, 0.0137636634, -0.00762236258, 0.00606469391, 0.0271698292, 0.00391013175, -0.00318236835, -3.27298972e-06, 0.017389711, -0.0217562914, -0.00375691825, 0.00730316807, 0.00608384563, 0.00355901779, -0.0239651166, -0.0311789103, -8.79280851e-05, -0.0119314874, -0.015666062, 0.0139807155, -0.0130167482, 0.0134061659, 0.0233650319, 0.00416548736, -0.025969658, 0.000478791626, -0.00956944842, 0.0132784881, -0.00525394, -0.0034026124, 0.00114032207, 0.0158448108, -0.00891190767, -0.00975458138, -0.0134955402, -0.00643495936, -0.010807923, 0.000596494589, 0.000997482566, 0.0137636634, 0.00180664042, -0.0050815749, 0.00692651886, 0.0316896215, -0.00599447126, 0.00383990887, -0.00520286895, -0.0230075344, -0.00328770257, -0.0106930127, -0.00970989373, -0.00178110483, -0.0154745458, 0.0134189334, 0.0151681183, -0.0180919394, 0.0135976821, -0.0218328983, 0.00218009786, 0.00772450492, -0.00232213945, -0.00316640851, 0.0191899687, -0.00197581341, 0.0261739418, 0.00566889299, 0.0220754854, 0.00367711973, -0.0195857696, 0.00130231318, 0.0102142217, -0.00536565809, -0.00326376292, -0.00483579561, -0.0151042799, 0.00934601296, -0.0187558644, -0.00688183168, 0.0153851705, 0.00826713536, 0.0112228757, 0.00617002789, -0.00250727218, -0.00611895695, -0.00355582591, 0.0264292974, 0.00875869486, 0.0223180745, -0.00887360517, 0.00882891752, 0.00911619235, 0.0121740755, -0.00159517408, 0.0030562866, 0.0176067632, 0.0122059947, -0.000849855132, 0.0112292599, 0.0132146487, -0.00705419667, -0.013010364, -0.0105206482, -0.0290339235, 0.0050081606, -0.0318428352, -0.00490601826, -0.0292126723, -0.0330940783, 0.0135466112, 0.0181685463, 0.0141722318, -0.0275528617, 0.00507838326, 0.0077053532, 0.00985672325, 0.0227649454, 0.0309235547, 0.0149127636, 0.00858632941, -0.0240161885, -0.0102014532, -0.0284721423, -0.0177982803, -0.000122889847, 0.0125507247, -0.0201730877, 0.0194070209, 0.0121996105, 0.00531139504, 0.000640782819, -0.00617960375, -0.00631685741, -0.0134955402, -0.0156149911, -0.00167257874, 0.0195091628, -0.0183600634, 0.0165342707, 0.00168694253, -0.00361328083, -0.0187047925, 0.00824798364, 0.0101950699, 0.012506037, -0.0054454566, -0.00921833515, 0.00208912743, 0.00504965568, 0.0290594604, -0.0399376042, -0.0169939101, -0.0203007646, -0.00512307044, 0.0121038519, 0.00100067444, 0.00730316807, -0.0151553508, -0.0172748026, 0.0118293455, 0.0239140466, 0.00133343472, 0.0178493522, -0.00675415387, -0.0095886, 0.00934601296, 0.0223691445, -0.0119059514, 0.0131380418, 0.0133678624, 0.00456128828, 0.00293499278, 0.00813307334, 0.00747553306, -0.0167385545, -0.0179642625, -0.012665634, 0.0226628035, 0.00429635681, 0.019330414, -0.00240672589, -0.00802454725, 0.0123911276, 0.020977458, 0.00517733349, -0.00303873094, 0.00476238085, 0.00760959508, 0.0101759182, -0.0185643472, 0.0125634922, -0.0396567136, 0.0167513229, -0.0294680279, -0.00141163729, 0.0247567184, -0.00238917023, -0.0144275874, 0.037358515, 0.00336111733, -0.0139168762, 0.0257781409, 0.000313010038, 0.00534650637, -0.0124485819, 0.00780749554, 0.00546780042, -0.0010549376, 0.0128443837, -0.00679884106, 0.0122953691, -0.0184366703, 0.012480502, -0.00358455325, -0.0126592508, -0.00274507189, -0.00254557538, -0.0113505535, 0.022994766, -0.0125826439, 0.00505923154, -0.016674716, -0.000238797322, -0.000444877223, -0.000806763885, 0.00647326279, 0.0138402702, 0.00689459918, -0.0163682904, -0.00538800191, 0.00180344842, 0.00501454435, 0.00926302187, -0.00881615, -0.0277826823, 0.0211434383, 0.000300441752, 0.0142360711, 0.0174152479, 0.0168279298, 0.0176195316, -0.0103163635, 0.0128699187, -0.00364200841, -0.0260590315, 0.00607107766, -0.0197772868, -0.00364200841, -0.0166364126, -0.0162023082, 0.00741169415, 0.0134061659, 0.0193176456, -0.00369627145, -0.0221010223, 0.00928217359, 0.010724932, -0.0100418562, -0.0217690598, 8.17436958e-05, 0.0113697052, 0.00738615869, -0.000347921916, -0.0206965655, -0.0023843823, 0.00693928683, 0.0079543246, 0.00669669872, -0.0215903111, -0.0088225333, 0.0200326424, -0.00498262467, 0.03674566, 0.012212378, 0.0190495234, 0.0130997393, 0.00919918343, 0.013967948, 0.00633281702, -0.00720102619, -0.00295095239, -0.014338213, -0.0035781695, -0.00741169415, -0.00266846525, 0.00773088867, -0.00718825823, -0.0114909988, 0.0109611358, -0.0142360711, 0.00562739745, -0.00969712622, 0.0353922769, -0.0134061659, 0.00813307334, -0.00935239624, 0.0194963943, 0.00954391342, -0.0169045366, -0.00236363476, 0.0118038096, -0.0206837989, 0.0187430959, -0.014976602, -0.00445276219, 0.0233139601, -0.0106610935, 0.00436657947, 0.0116633642, 0.0117974253, 0.0202113912, -0.0371542312, 0.00570400432, 0.0229309276, 0.00321109593, -0.0248716287, -0.00690736715, 0.00697120605, -0.0129209897, 0.00398673816, 0.0105844866, -0.015372403, 0.0282678567, 0.00956944842, -0.0100673921, -0.00727124885, 0.0140956258, -0.00334515749, -0.00392928347, 0.0410356335, 0.00730316807, 0.0105334157, -0.00876507908, 0.00224712864, -0.0305405222, -0.0323280096, 0.00976096559, 0.0116697475, -0.00778834382, -0.0124358144, 0.00241630175, -0.0042165583, -0.0132529521, 0.00895021111, -0.000624025066, -0.00169173046, -0.0100035528, -0.00575188361, 0.000516296946, 0.00466023851, -0.0138530377, -0.011682516, 0.010724932, -0.00654348545, -0.0160746314, 0.00511349458, 0.00141403126, -0.0140828574, -0.0132018812, -0.0201092474, 0.00209391536, 0.00986310747, 0.0199432671, 0.00509753497, -0.0192282721, -0.00471450156, 0.0198794287, -0.0244119894, -0.00534650637, -0.0114271604, -0.0214754, 0.015666062, 0.0208625477, -0.0227649454, 0.00348241115, 0.00333558163, -0.0150149055, 0.00445595384, -0.000395601586, -0.00345368357, -0.019330414, 0.046040602, -0.0152319577, 0.0189090781, -0.0205688886, 0.0254589468, 0.00567846885, 0.00852249097, 0.00767981773, 0.0208370108, 0.0331706852, -0.00395801058, 0.00458363164, -0.01234644, 0.00457724789, -0.0146318721, 0.0127167059, -0.0114271604, 0.0318173, 0.0261101034, -0.0206071921, 0.00627536234, 0.0195602346, 0.0120208617, 0.00765428226, 0.00820329692, 0.00889914, 0.00984395575, 0.0206965655, -0.0277571473, 0.00743084587, -0.00981203653, -0.0375372618, -0.0115739899, 0.00182579202, 0.0105525674, 0.0260462649, 0.00792879, -0.0137381274, 0.0218073633, 0.00408568839, 0.00985034, 0.00718825823, -0.00900128298, -0.00399312237, 0.00442403462, -0.00693928683, -0.00672223466, -0.00263335393, -0.0105206482, -0.0150915124, -0.0301574878, 0.0221265573, -0.00254717143, -0.0239395816, 0.0265569761, 0.0343197845, 0.012212378, -0.00343453186, -0.000821127614, 0.0162278432, 0.000593302597, -0.0428997278, -2.1071819e-05, 0.01837283, 0.00349198701, 0.00492197787, -0.00141163729, -0.0155000808, -0.00914172828, -0.0158703458, 0.00627855398, 0.00510711083, 0.0170577504, 0.0128571512, 0.0119761741, -0.0025982426, -0.0108143073, 0.00477514835, -0.0147340139, -0.00937793218, 9.47608423e-05, -0.0135593787, 0.00334196561, 0.00528905168, 0.0112803308, 0.0197006799, -0.00323024741, 0.00612853281, 0.0104631931, 0.00108446309, 0.000821925642, 0.0105078798, 0.00816499349, -0.00425166963, -0.00534012262, 0.00775642414, 0.0234927088, 0.00171726593, 0.00949922577, -0.00147547619, -0.00313289324, 0.00861825, 0.0100354729, 0.00944177061, 0.0124996537, 0.00607427, 0.0158703458, 0.00745638181, -0.0384565443, -0.00290147727, -0.000452059088, 0.0124421986, 0.035979595, 0.00792240538, -0.00344729959, 0.0161640048, 0.0015584667, -0.0308469478, -0.0275273267, -0.0113888569, 0.00363562442, 0.00562420581, 0.00166300288, -0.00903958548, 0.00660732435, 0.00287434575, 0.000931249699, -0.0171726588, 0.0356731676, 0.0240800269, 0.0198028218, 0.0159980245, -0.0201475509, 0.0114016244, 0.0230841395, -0.0148361567, -0.00877146237, -0.0100418562, -0.016623646, 0.0113697052, -0.00368669559, -0.000996684539, 0.000143238489, 0.000170469764, -0.0108015388, -0.00304990262, -0.00999716949, 0.0277571473, -0.00789686944, 0.0121485395, 0.0223946795, 0.0128188478, 0.00627536234, -0.00876507908, 0.0063008978, 0.015346868, -0.0124102794, 0.0100801596, -0.0284976773, -0.0174407829, -0.00628493819, -0.00489644241, -0.0188835412, -0.0129273739, 0.00331643, 0.00945453905, 0.015002138, 0.00787771866, 0.00771812117, 0.00410803221, -0.0243864544, -0.0123528242, 0.0140317865, -0.0178365838, 0.0144914268, -0.00529224332, -2.53111193e-06, 0.00212743087, -0.0253440365, -0.0138019668, -0.0115612214, 0.000688263, -0.0294935647, -0.0163938254, 0.0150659764, 0.00487409858, -0.0182834566, -0.018640954, -0.0100546237, 0.0269400086, -0.00491878577, -0.025969658, -0.00921833515, -0.00505603943, 0.0040282337, -0.00260462635, -0.000801178, -0.00648283865, -0.000849057164, 0.00206997572, 0.014657408, 1.97626232e-05, 0.00836289395, 0.00831182301, 0.000391412148, -0.00350475474, 0.0039165155, -0.024718415, -0.015691597, -0.00898851454, -0.000314805482, -0.00860548113, 0.00924387, -0.0102972118, 0.0133167915, 0.0188580062, 0.00497304881, 0.00834374223, -0.0193814859, -0.00482302764, 0.00780111132, -0.00720102619, 0.0120847, -0.0114654638, -0.00281050685, 0.000967159111, -0.0177982803, -0.00633281702, 0.00576465111, 0.00383671699, 0.00393247511, 0.0224585198, 0.00894382782, 0.00319194421, -0.00963328779, 0.0200837124, -0.0035526338, -0.00729678432, -0.000366275606, 0.0121230036, 0.0139424121, -0.00275783986, 0.0192410387, 0.0160363279, 0.0178365838, 0.0139424121, 0.00343134, -0.00423890166, 0.00617641211, 0.00123608042, -0.0169683751, -0.0260462649, -0.017313106, 0.00610618899, 0.0120910844, -0.0265569761, 0.00109723082, -0.0126464833, -0.0236203875, -0.0194453243, -0.00685629621, 0.0122315297, -0.00743723, -0.00259345467, -0.013993483, -0.00541672949, -0.00263335393, -0.024718415, -0.0220244154, 0.0261101034, -0.0123400558, 0.0037505345, 0.0175429247, -0.00326855085, 0.00365158403, 0.0129529098, -0.00690736715, 0.0133040231, 0.00120336295, -0.00572634768, -0.00277379947, -0.00971627794, 0.0186920259, -0.0190239865, -0.0740531, 0.0192282721, 0.0243736859, 0.00288232556, 0.00925025437, 0.033962287, 0.00194868189, -0.020019874, 0.00617960375, 0.00251206, -0.00514222216, 0.00790325366, 0.000571757, 0.0265059043, -0.00886083674, -0.0205561202, 0.0046442789, 0.0232756566, 0.00698397402, 0.00538800191, 0.0144275874, -0.0235565472, 0.00800539553, -0.0165215023, 0.00383990887, 0.0129273739, 0.0213094186, 0.021296652, -0.0194836278, 0.01768337, 0.00295254844, 0.0260079615, 0.0102078374, 0.00741807837, -0.00234927097, -0.0201347843, -0.00513583794, -0.0205050502, 0.00792240538, -0.0162406117, 0.00109004893, -0.00509434287, -0.0197134465, -0.0198283568, -0.0157682039, 0.0154234739, -0.00275783986, 0.00207316782, 0.0084586516, 0.0123655917, 0.00939708389, 0.00868847221, -0.0122953691, -0.00672223466, -0.0315874778, 0.0030227711, -0.0119889425, 0.021347722, 0.0143254455, 0.0105972551, -0.00135418237, -0.02837, -0.012640099, 0.0179131906, 0.00405696081, -0.00653390959, -0.0106930127, 0.00539757777, 0.00858632941, -0.00850333925, -0.0245907381, -0.0185260437, 0.00578699494, 0.00460597547, 0.0134317009, 0.010143999, -0.0243609175, 0.0119570233, -0.0225861967, -0.00254876749, -0.0155894551, 0.0161767732, 0.00188963092, -0.017338641, -0.00789686944, 0.012135772, 0.014363749, 0.0165598057, 0.0221776273, -0.0111462688, 0.021296652, 0.00377607, -0.00686906371, -0.00716272276, 0.00730955228, -0.00785218272, -0.00943538733, -0.00643495936, -0.000559787208, 0.0279103592, 0.00700312573, 0.00898851454, 0.0256887674, -0.0114526954, 0.0147723174, -0.00819052849, -0.0285998192, -0.00937793218, 0.00483579561, 0.00178908475, 0.0199688021, 0.0194325559, -0.0117463544, -0.00155048689, 0.0100418562, 0.0200709458, -0.021347722, -0.00298925582, 0.00928855781, -0.000184833523, -0.0154617773, -0.025407875, -0.00893105939, -0.00757129164, 0.00589232892, -0.00244183722, -0.0055603669, -0.00822244864, 0.00116825162, -0.00607746188, 0.0101950699, -0.00324780331, -0.0091736475, -0.0123975109, 0.00549971964, -0.0153979389, 0.0139551796, 0.0110888137, 0.00546780042, 0.0151808867, -0.00776280835, -0.00413037557, -0.0014682943, -0.0130167482, 0.00221999711, -0.0148872277, -0.0057965708, 0.0166874845, -0.0135210752, -0.00933962874, -0.0331196114, -0.00820329692, 0.00562420581, 0.0123272883, -0.0140828574, -0.0246545766, -0.00102062419, -0.0016821546, 0.0206710305, -0.000310017582, 0.00992056262, 0.00719464198, -0.00540396152, 0.014044554, -0.00686906371, 0.0131891137, -0.0197262149, -0.00957583264, 0.0145680336, 0.00194868189, 0.0065371017, 0.0126784025, 0.0183089916, -0.0114718471, 0.0113952411, -0.021028528, 0.0035781695, -0.00482941139, -0.0138275018, 0.0127294734, 0.0154745458, 0.00446233805, -0.00693928683, -0.00149063789, 0.00568804471, 0.000620434177, 0.00118660519, -0.0117718903, -0.00699035777, -0.00810753834, 0.0410611704, 0.0366179831, -0.0137891984, 0.00989502668, -0.0112803308, -0.0033387735, 0.00530181918, 0.0135083077, 0.000559388194, -0.00519329309, 0.0120336292, -0.016381057, 0.0155256167, 0.00928855781, -0.0103227478, 0.00856079441, 0.0194197875, 0.0193431824, 0.0140062515, -0.0111973397, -0.00438573118, -0.0289828535, 0.00654348545, 0.00128715148, -0.0109994393, -0.00357178552, -0.0239268132, 0.0023205434, -0.00186728733, 0.0101120789, 0.0258675162, 0.0242715441, 0.0150659764, -0.00916088, 0.0402440317, 0.0182962231, 0.00155527482, 0.0214243289, -0.0410356335, 0.0239268132, -0.00250886823, 0.00982480403, 0.00557632651, 0.00382714113, 0.019994339, 0.00472726952, 0.00216573407, 0.025675999, -0.0131252743, 0.00368988747, 0.00654986966, 0.0188069344, -0.011682516, -0.0049570892, 0.00631685741, 0.00883530173, 0.00594020821, -0.00683076074, 0.0162916835, 0.00332600577, -0.00886083674, 8.26913e-05, -0.0162406117, 0.00786495, -0.00412079971, -0.00710526761, -0.0109611358, -0.0152574936, -0.019304879, -0.0137764309, -0.00548695214, -0.00988225918, -0.0102142217, -0.00563697331, 0.018002566, -0.00152654725, -0.00128236355, -0.0165470392, -0.00631685741, 0.000485973491, -0.0025344037, 0.00925663766, 0.000233610408, 0.00124725222, -0.0103993537, 0.0133167915, -0.00888637267, -0.0029445684, -0.0200071055, -0.0276039336, -0.0329408646, -0.011178188, -0.0172237307, 0.0213860255, 0.013329559, -0.00697759, -0.0105078798, -0.00447829766, -0.000299444277, -0.0107121645, 0.0147595499, -0.00594020821, 0.00910980906, 0.00621471507, 0.00581253041, -0.013355094, -0.00682437653, -0.00118261529, 0.0282423217, -0.0187814, -0.00541672949, 0.00899489876, -0.00927578937, 0.00091529, 0.00968435872, -0.0184366703, -0.0129912132, -0.0250376109, 0.00191995443, -0.00514222216, -0.0235182438, -0.00459959172, 0.00186888326, 0.0126081798, 0.00158400228, -0.000707015628, -0.00746914931, -0.00331643, -0.00896298, -0.00762236258, -0.000567368057, 0.0148999952, 0.00558909401, 0.00995248184, 0.00194549, -0.0126017956, -0.00637431256, 0.0402184948, -0.00214179442, -0.000609262323, 0.00449744938, 0.0091736475, -0.00755852368, 0.00540076941, 0.0129465256, 0.00757129164, 0.000667914341, -0.0349326357, 0.0120847, 0.0316896215, -0.00944815483, 0.0201475509, -0.00852249097, -0.000645171735, 0.00217531, -0.00462512719, -0.0136487531, 0.020019874, 0.00957583264, -0.000342934509, -0.0321492627, 0.0259824265, -0.014312678, 0.00300840731, 0.00324939913, 0.00858632941, -0.0225606617, -0.0111462688, -0.00866293628, -0.0150659764, 0.00728401681, -0.0210923664, 0.012984829, -0.0198411252, 0.00333558163, 0.000739334093, 0.0141211608, 0.010329131, -0.0282423217, -0.0129209897, 0.0145552652, -0.0274762549, -0.00403780956, 0.0503561124, 0.0443807915, 0.022701107, -0.0101950699, 0.0160618629, -0.0167513229, -0.013674289, 0.0175939966, -0.00196942966, 0.0232373532, -0.0156022226, 0.00847780332, 0.00922471844, -0.00333558163, -0.00190878264, -0.012850767, -0.0166108776, 0.00288711349, 0.0259058196, 0.00782664679, -0.0153085645, 0.0137508959, 0.00853525847, -0.0126528665, -0.00948645826, -0.0148872277, 0.00126241392, -0.00407292088, -0.0162916835, 0.0288041048, -0.0010892509, 0.0063008978, 0.00618279586, -0.016649181, 0.000263135909, -0.013329559, -0.0158065073, -0.0048804828, -0.00567846885, 0.00380479754, 0.019036755, 0.0201220158, 0.00618917961, 0.0274762549, -0.00192953029, -0.00546460832, -0.0034026124, 0.0123528242, -0.0101567665, -0.0102397567, 0.000360290695, 0.00282327458, -0.0105525674, -0.0122826016, 0.0145935686, 0.0190495234, 0.0382011868, 0.0139551796, 0.00214658235, 0.0161640048, -0.00490601826, 0.0171854272, -0.00821606442, -0.00567208463, -0.00654348545, 0.00177312503, -0.0172492657, 0.0135083077, -0.0108143073, -0.00504646357, 0.004341044, -0.014044554, -0.0118931839, -0.00378245395, 0.0209263861, 0.0174152479, 0.00645411108, 0.00164863921, 0.0072648651, 0.000769657549, 0.00440807501, 0.00397077855, -0.00670308294, -0.00178589276, -0.00547737628, 0.0011562818, -0.0223563761, -0.00605511805, -0.00794155709, 0.00574549939, 0.010488729, 0.0116314441, 0.00692013511, 0.00657540513, -0.00514222216, -0.0168279298, -0.0345751382, 0.0120719327, 0.0212455802, -0.0104376571, 0.0121038519, -0.00373457465, -0.00332600577, 0.0423379466, -0.00912257656, 0.0104759606, -0.00342814811, -0.00548695214, 0.000924067863, -0.0214243289, 0.00310735754, -6.70807e-06, 0.0181047078, 0.0247694869, -0.0123336725, 0.000928855734, -0.0117974253, -0.0156788304, -0.00116825162, -0.00187845912, 0.00839481317, -0.00877146237, -0.00701589324, 0.00676053762, -0.00778196, -0.0104823448, -0.00189122697, -0.00367711973, -0.00926940609, -0.000602878456, -0.0155639201, -0.0214243289, 0.010303596, -0.00990779512, -0.00277699134, 0.02837, -0.0147340139, 0.00382714113, -0.0163938254, 0.0136359856, -0.00241789781, 0.0196240731, -0.00719464198, 0.0197006799, -0.0066009406, -0.00581572205, -0.00530820293, -0.00364520028, -0.00714995479, -0.0072648651, 0.000457246, -0.0024482212, -0.00453575281, 0.0041527194, 0.00537842605, -0.00774365664, 0.000948007393, -0.00569442846, 0.0220882539, -0.0212328117, 0.0126081798, -0.00490601826, 0.0168406982, 0.00161272974, 0.0164321288, -0.043410439, -0.0104568088, -0.00428678095, 0.0312044453, -0.00803731568, 0.00614449242, 0.0444829352, 0.0116378283, 0.0199304987, 0.00415910315, 0.00834374223, -0.0136359856, -0.00639984803, -0.0051326463, -0.0132274162, 0.00480706804, 0.00886083674, 0.0155383842, 0.043410439, 0.0125890281, -0.0333749689, -0.00584444962, 0.00289030536, 0.0138147343, -0.0108909132, -0.0128188478, 0.0187047925, -0.00607427, -0.00285679, -0.00956944842, -0.0114782313, 0.0272464361, -0.0187941678, -0.00534331473, -0.0045932075, -0.00463151094, 0.00280731497, 0.016329987, 0.0221776273, -0.00923110265, 0.02837, -0.00564016541, -0.0110122077, 0.006677547, 0.0123783592, 0.00279454701]
|
13 Jun, 2022
|
array::begin() and array::end() in C++ STL
13 Jun, 2022
Array classes are generally more efficient, light-weight and reliable than C-style arrays. The introduction of array class from C++11 has offered a better alternative for C-style arrays.
array::begin()
begin() function is used to return an iterator pointing to the first element of the array container. begin() function returns a bidirectional iterator to the first element of the container.Syntax :
arrayname.begin()
Parameters :
No parameters are passed.
Returns :
This function returns a bidirectional
iterator pointing to the first element.
Examples:
Input : myarray{1, 2, 3, 4, 5};
Output : returns an iterator to the element 1
Input : myarray{8, 7};
Output : returns an iterator to the element 8
Errors and Exceptions1. It has a no exception throw guarantee. 2. Shows error when a parameter is passed.
CPP
// CPP program to illustrate
// Implementation of begin() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
// declaration of array container
array<int, 5> myarray{ 1, 2, 3, 4, 5 };
// using begin() to print array
for (auto it = myarray.begin();
it != myarray.end(); ++it)
cout << ' ' << *it;
return 0;
}
Output:
1 2 3 4 5
array::end()
end() returns an iterator pointing to the past-the-end element in the array container. Syntax :
arrayname.end()
Parameters :
No parameters are passed.
Returns :
This function returns a bidirectional
iterator pointing to the past-the-end element.
Examples:
Input : myarray{1, 2, 3, 4, 5};
Output : returns an iterator to the element next to 5 i.e,. some garbage value
Input : myarray{8, 7};
Output : returns an iterator to the element next to 7 i.e,. some garbage value
Errors and Exceptions1. It has a no exception throw guarantee. 2. Shows error when a parameter is passed.
CPP
// CPP program to illustrate
// Implementation of end() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
// declaration of array container
array<int, 5> myarray{ 1, 2, 3, 4, 5 };
// using end() to print array
for (auto it = myarray.begin();
it != myarray.end(); ++it)
cout << ' ' << *it;
auto it = myarray.end();
cout << "\n myarray.end(): " << *it << " [some garbage value]";
return 0;
}
Output:
1 2 3 4 5
myarray.end(): 0 [some garbage value]
Let us see the differences in a tabular form -:
array::begin()
array::end()
1.
It is used to return an iterator pointing to the first element in the array container.
It is used to return an iterator pointing to the past-the-end element in the array container.
2.
Its syntax is -:iterator begin(
Its syntax is -:
iterator end()
3.
It does not take any parameters.
It does not take any parameters.
4.
Its complexity is constant.
Its iterator validity does not change.
5.
Its iterator validity does not change.
Its complexity is constant.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/array::begin() and array::end() in C++ STL
|
https://www.geeksforgeeks.org/arraybegin-arrayend-c-stl/?ref=lbp
|
Pandas
|
array::begin() and array::end() in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, array::begin() and array::end() in C++ STL, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0355719663, 0.0106587019, -0.00423383713, 0.010935802, -0.0170642342, -0.0495172106, -0.0468622, 0.0106071485, -0.00181565247, -0.0177086536, -0.0386136286, 0.0114126727, 0.020595653, -0.0108520277, 0.00965985097, -0.0091443155, 0.0294370912, 0.0373505652, 0.0011962041, -0.0220520422, -0.0175539926, -0.0138034699, -0.021124078, -0.0136874737, 0.0141643444, 0.0160718262, -0.0240497421, -0.00403084513, -0.0222195908, -0.0237533096, 0.0485892445, 0.00686951401, 0.0187397245, -0.0100851683, -0.0197707955, 0.0295401979, 0.00265017594, -0.0142158987, -0.0351337604, -0.0237661973, 0.0256350152, -0.00278711505, 0.0228640102, 0.00867388863, -0.0282513592, 0.0521206632, -0.0223355871, -0.027014073, -0.00625409326, -0.00114948361, 0.0192423724, 0.015607845, 0.0436658785, 0.0225546882, 0.041500628, 0.0293082073, 0.013739028, 0.0283029135, -0.0413459688, -0.0574306808, 0.0125919608, -0.014486555, 0.0218973812, -0.0276842695, -0.016948238, 0.0343346819, -0.0414490737, 0.0489758961, 0.0164069254, 0.00136858632, -0.00848056283, -0.000276294944, 0.000155466245, 0.0239853, -0.0300557334, -0.0345151201, 0.030004181, 0.0380980931, -0.0124759655, 0.0583070926, -0.0187655017, 0.0465528779, -0.0248488225, -0.00297883, 0.0221551489, -0.0036699702, -0.0194485858, -0.0309321452, 0.0332005024, -0.0110324649, -0.0184819568, 0.0212400723, -0.0122181969, -0.00471393, 0.002453628, 0.0271171797, 0.0148216533, 0.0140741263, -0.0121602, 0.0312156901, 0.0236888677, 0.0158527251, 0.0130108334, -0.0180437509, 0.0239466354, 0.0221422613, 0.0438720919, 0.0224902462, -0.0299268495, -0.00236824225, 0.00710794935, 0.00687595829, -0.0168580189, 0.0277100466, -0.0210209694, 0.0109615792, 0.0204152148, -0.023366658, 0.0260603316, 0.0345408954, 0.00416295137, 0.0372474566, 0.0255061314, 0.048383031, -0.0527908616, 0.00867388863, 0.0525588691, -0.000576755614, -0.0237919744, 0.0234439876, 0.00929253176, -0.0381754227, 0.00304166088, -0.0283802431, -0.00304327207, 0.00256317924, 0.0142158987, 0.0142674521, -0.0106458133, -0.0112322355, -0.0369381383, -0.0405984409, -0.0162007101, 0.00389229483, -0.0564511642, -0.0354430825, 0.00595121598, 0.0532032885, -0.0291793235, -0.0325818583, -0.0178890899, 0.0204152148, 0.0403664485, -0.0225675777, 0.0253385827, -0.0349017717, 0.0201832242, -0.000979517936, 0.0151696391, -0.0306743775, 0.025016373, -0.00662463438, -0.00601888, -0.00942141563, -0.00876410771, 0.021214297, 0.0442587435, -0.0115673337, -0.0413459688, 0.03851052, -0.00105282071, 0.0347213335, 0.004813815, -0.0123728579, -0.0219747107, -0.0377372168, 0.0334324948, 0.00308677042, -0.00672774157, -0.0112064583, -0.000101546444, -0.0012010372, 0.010375157, 0.00672774157, 0.00167226908, 0.00884143822, 0.0430987887, -0.033870697, 0.0296948589, 0.00186237285, 0.00801013689, 0.00582877593, 0.0440267548, -0.00163360394, 0.0311899129, 0.00865455624, -0.0360875, -0.021214297, -0.00206375401, 0.0497749783, 0.0104395989, 0.0202992205, 0.019564582, -0.0266531985, 0.0374536738, -0.0231475551, -0.00316248951, -0.0192423724, 0.0134941479, 0.0178633146, -0.0049104779, 0.00158205035, 0.0142030101, 0.023740422, 0.00555489771, 0.0157109518, -0.0516824573, 0.0126757352, -0.017322002, -0.0471199676, -0.0173606668, -0.0126370704, 0.04910478, -0.042841021, -0.0213174038, -0.0459600128, -0.0249261539, -0.00376018882, -0.00564189442, -0.0134425946, -0.0181984119, 0.0268336367, -0.0171286762, -0.0196676888, -0.00989184249, -0.0218071621, 0.0041500628, -0.00218136073, -0.0133394878, 0.031653896, 0.0129979448, 0.0273749474, -0.0548530035, 0.00753326621, 0.0359843969, 0.0249390416, -0.0150020905, -0.0188943855, -0.0168451313, -0.00919586886, 0.0485119149, 0.00126870128, 0.0434081107, -0.000791830709, -0.0169353485, 0.0141643444, 0.00399862416, -0.00334453816, 0.0134168183, 0.0256994572, 0.00633464567, 0.0491305552, -0.000976295851, 0.0318343341, 0.00836456753, 0.00611232081, 0.0249132644, 0.00409850944, -0.0380980931, -0.0662978962, 0.0224258043, 0.00564189442, 0.0291277692, -0.0380465388, 0.00690817926, 0.0254932437, -0.020531211, 0.0489501208, 0.0421966, 0.0120635368, 0.0155434031, -0.0247328281, 0.0163424835, -0.00562256156, 0.011902432, -0.0248874892, -0.029256653, -0.004813815, 0.00911209453, -0.00438205386, -0.0416037366, -0.0126692913, 0.0255447961, 0.0240368545, 0.0508833788, 0.0357266292, -0.00835167896, -0.0256865695, -0.0227995683, -0.0271945111, 0.0182370767, -0.0348244384, -0.0124050789, -0.0521722175, -0.00515535753, -0.0458826832, 0.0109809116, -0.030751707, 0.0542859137, -0.025016373, -0.00578688877, -0.0580493249, 0.027014073, -0.0149376485, 0.0147829875, -0.0175539926, 0.028354466, 0.00383429718, -0.00524557615, -0.0150407553, 0.0154016307, -0.0162007101, 0.00961474143, 0.0144221131, 0.0175282154, -0.0385363, 0.0191650409, 0.0144478893, -0.0075397105, -0.0572244674, -0.0134941479, 0.0126821799, -0.0359328426, -0.0209307522, -0.0168322418, -0.0163424835, -0.0473004058, -0.00935697369, 0.0333293863, -0.00710150506, 0.003434757, -0.00666974392, -0.021278739, 0.0177730955, -0.0058609969, -0.023211997, 0.00157157856, -0.0156336222, -0.00907987356, 0.00336709293, 0.000697987096, -0.0154016307, -0.0146154389, -0.040160235, 0.0340253599, -0.0276069399, -0.0222195908, -0.0363452695, -0.0048234812, 0.0522753261, 0.0158656128, 0.0354430825, -0.00993050728, 0.0347986631, 0.0234955419, -0.0330458432, -0.0274007246, -0.0302877259, 0.0200156756, -0.0281224754, -0.00967274, -0.0223871395, 0.0193841439, 0.0203249976, -0.0112386793, -0.0140096843, -0.00810035504, 7.59710383e-05, 0.0165229216, 0.00314154592, -0.0375052243, 0.0338449217, -0.033870697, -0.051063817, -0.00881566107, -0.0241012964, -0.00646030717, 0.0149505371, 0.00431761192, -0.00225869101, -0.0244621709, 0.00618965132, 0.0300299581, -0.01395813, -0.0167033579, -0.00393096032, -0.0175797697, -0.0294628683, -0.0207760911, -0.0209565274, 0.0506513864, 0.0181210823, 0.0210854113, -0.00301749515, -0.0166518055, 0.0167420227, -0.00875766389, -0.0337933674, 0.027168734, 0.033896476, -0.00114223384, 0.0236888677, 0.0152083049, 0.0167033579, 0.0308805909, -0.000151136555, -0.0147185456, 0.0707830563, 0.0291277692, 0.00728194229, 0.00134200405, -0.0097436253, -0.0380980931, 0.000650863862, 0.0253128055, 0.0137648042, -0.0133910412, 0.00282416935, -0.00473970687, 0.0196934659, -0.0492594391, 0.0138421347, 0.0465786569, 0.0243719518, -0.0150020905, -0.0467075408, 0.0283286888, -0.0103107151, -0.0416552871, -0.0171286762, 0.0164327025, 0.0652668253, 0.0590288453, -0.0173864439, -0.0040630661, 0.0195903592, -0.0181726348, 0.0296433065, -0.0191392656, -0.0106973667, -0.0228124578, -0.00663752295, -0.00472037401, 0.0219231583, 0.0399540216, 0.0102849379, 0.0339222513, -0.0329685099, 0.0436401, 0.0176442116, 0.0208791979, -0.0159171671, 0.0066117458, 0.0353657529, 0.0341800191, -0.0118895434, 0.0313445739, -0.0154145192, -0.00307549303, 0.000656905293, -0.011309566, -0.042093493, 0.0482541472, 0.0114191165, 0.0369123593, -0.00425961427, -0.00124373, -0.00727549847, -0.0544405766, -0.0265500918, -0.00468493113, -0.0305454936, -0.0379434302, -0.0179535318, -0.0159042776, -0.027632717, 0.0314476825, -0.0205183234, -0.0324014202, 0.0159429424, -0.0155305145, -0.00422417093, -0.00818413, -0.0229800064, 0.00637975475, 0.0253385827, -0.0405984409, 0.0327622965, -0.0173477773, 0.0112773441, 0.014770099, 0.000267232797, -0.0117413271, 0.0236888677, -0.00512958085, -0.00995628443, -0.0583070926, 0.0180050861, -0.00303360564, -0.00386651815, -0.0590803958, 0.00543568, 0.0460888967, 0.004610823, 0.00770081533, -0.028354466, 0.0101173893, -0.0280451439, -0.0381238684, -0.00854500476, 0.0158011708, 0.000318182225, 0.0128432848, 0.036860805, 0.0198481269, 0.0204667691, 0.0113031212, -0.0108262505, -0.0224258043, -0.0128432848, 0.00569667, 0.00155707903, -0.0193583667, -0.00908631738, -0.0119088758, -0.00666329963, 0.00194453646, 0.0211885199, -0.0192681495, 0.0212400723, -0.0304423869, 0.0196805764, 0.0113160098, -0.0145896617, -0.0061284313, 0.0204538815, -0.00982740056, -0.00471070781, 0.0241528507, 0.0141256796, 0.00477514975, 0.0183788501, 0.0015796338, -0.01283684, -0.0366030373, 0.022090707, -0.0224902462, 0.00985317677, -0.000386651809, -0.0113997841, -0.0162909292, 0.0367834754, 0.0445680656, 0.00436272146, 0.0106973667, -0.0127595095, -0.00365063758, 0.0228124578, 0.00294338702, 0.0325818583, 0.00939563941, -0.0129270591, 0.0187526122, 0.012991501, 0.025299916, 0.00417906186, 0.0260861088, 0.0207632016, -0.00319793262, 0.0247714929, 0.000805121846, -0.0199254565, 0.0303908326, -0.0520175584, -0.0176184345, -0.0100207264, 0.00453993678, -0.00539701479, -0.0243075099, -0.00340253604, -0.0012727289, 0.000417664502, 0.0070821722, 0.0255705733, -0.0305454936, -0.0200543404, -0.000746721285, -0.0104138218, -0.0249390416, 0.0128239514, -0.00248584896, 0.010529818, 0.0124695208, -0.0234182123, 0.00389229483, -0.0239981897, 0.0285864566, 0.0237790868, 0.0158913899, -0.00131139404, -0.048383031, 0.0129979448, 0.00618965132, -0.00889299158, 0.011496447, 0.00434983289, -0.00328492932, -0.00609943224, -0.033587154, 0.0380465388, -0.0199512336, -0.00984673295, -0.00254223566, 0.00863522384, 0.0215236172, 0.0262407698, -0.0246683862, -0.0334840454, -0.00410495326, -0.0119797625, 0.0119797625, -0.0248746, 0.00487181265, -0.000416859, 0.00263889856, -0.00833879, -0.00956318807, 0.0321178772, -0.0135070365, 0.0136874737, -0.0206600949, 0.0118830986, 0.0217556078, 0.0294628683, -0.00164165918, 0.0294628683, 0.00946652517, 5.06221877e-05, -0.00409206515, 0.0143576702, -0.00130494987, 0.0122181969, -0.0151309744, 0.00582555402, -0.0164327025, -0.0288442262, 0.0276584923, 0.0407015458, -0.0117542148, 0.00339286961, 0.00938275084, -0.0172188934, 0.00181081938, -0.00897676591, 0.00983384438, -0.00484281406, -0.0568120405, 0.000844189781, -0.00568055967, -0.0131332735, -0.0221164841, -0.0287668947, -0.0141643444, -0.00402762322, 0.00904120784, -0.0161878224, -0.0181081928, 0.031757, 0.0221551489, -0.00579655496, 0.00502647366, -0.0150536438, -0.0047268183, -0.0313703492, -0.00629598042, -0.00338642555, -0.0119282082, -0.00987250917, 0.0229671169, -0.0378145464, 0.000844189781, -0.0146154389, 0.0115737775, 0.00347664417, 0.00040538027, 0.00479448261, 0.0176957641, -0.00684373686, -0.00527135283, -0.0221293718, 0.0266531985, -0.023740422, -0.0194485858, -0.00629275804, -0.00392451603, 0.0423254855, 0.00195581373, 0.00592221692, -0.00288377819, -0.000205509466, 0.0121150902, -0.0193970334, -0.0408304296, 0.00582877593, 0.01395813, -0.0139452424, 0.00451416, 0.00989828631, 0.0128883934, -0.0214205105, 0.00521657756, 0.000358659832, 0.0115544451, -0.00178987568, 0.030158842, 0.00516180182, -0.0347728878, -0.0198996793, -0.0205827653, -0.00879632868, -0.0468622, 0.00211530761, 0.00299977371, 0.010562039, -0.0323240906, 0.012308416, 0.0258412287, -0.00113659527, -0.00671485299, 0.0131397173, 0.00371507951, 0.0215236172, -0.0451867096, -0.0186495055, -0.000105725107, -0.0178504251, 0.0103171589, 0.000743096462, -0.0240884088, 0.0280451439, 0.013146162, 0.0174895506, 0.0256350152, -0.00577722257, 0.0426863618, -0.0063217571, 0.0138936881, 0.00337675912, -0.00102059974, 0.0224644709, 0.041191306, 0.00620253943, -0.0137261394, 0.0304423869, -0.0296175294, -0.0105040409, 0.0222067032, 0.0166131388, 0.0213174038, 0.0359843969, -0.000902993081, -0.0157496165, 0.00796502735, -0.00385362981, 0.0196934659, -0.00462693349, -0.00179793092, -0.00558711868, 0.0157496165, 0.012243974, -0.0199512336, 0.0504193977, 0.0180953052, 0.00430472335, 0.0242817346, -0.0279935915, 0.0272202883, 0.015826948, 0.028354466, -0.00969207194, -0.00907342881, -0.000498216948, 0.0194485858, 0.0133523755, -0.00470104162, -0.0217427202, -0.00871899817, -0.0453155935, -0.0492594391, -0.0209823046, 0.0238306392, -0.0254803542, 0.0138421347, -0.0110453535, 0.00576111209, -0.0532548428, -0.0101431655, 0.00448838295, 0.0130817201, 0.0309321452, -0.002453628, 0.00436594337, -0.0144478893, 0.0141901216, -0.00114465051, 0.00429827953, -0.0215236172, 0.0200156756, -0.00298366323, -0.000392491871, -0.00183659606, -0.0117542148, 0.00184142927, -0.0218458269, -0.052378431, 0.00634109, 0.00366674806, 0.00573211303, 0.049723424, 0.0208018683, -0.0394900367, -0.00774592487, 0.00376341096, 0.0451609306, -0.0246039443, 0.00433050049, -0.0238821935, 0.00998206064, 0.0102011636, 0.0141514568, -0.00702417456, 0.00736571709, -0.0295144226, 0.0103042712, 0.00162071548, 0.00607365556, -0.00638297712, 0.0349533223, -0.00944719277, -0.00746238, -0.00332198339, 0.00989184249, -0.00672774157, 0.0258798953, 0.0236115381, 0.00582233211, -0.0485376902, -0.01183799, 0.00297883, 0.0110646859, -0.00099321187, 0.0167806894, 0.00607365556, 0.00418550568, 0.0239208583, 0.00132106035, -0.00724972133, -0.00625087088, 0.0297979657, -0.0216267239, 0.00935053, 0.0107682534, -0.0221422613, 0.0078297, -0.00089252129, 0.0052842414, -0.00225063576, 0.0421708226, 0.0121859759, -0.0377887711, 0.0340511352, -0.0152727468, -0.0263438765, -0.00803591311, -0.0125597399, 0.0139194652, -0.0133652641, -0.0067921835, -0.0214076228, -0.0145638846, 0.0535641648, -0.00393096032, -0.0270656273, 6.65061234e-05, 0.0487439036, 0.00236502034, 0.0111613488, 0.000276294944, 0.00123486924, -0.0328396261, 0.00981451198, -0.00633464567, 3.14406316e-05, 0.0132363802, 0.0240626317, -0.00150310888, 0.0214205105, 0.00203153305, -0.01183799, 0.006215428, 0.0308805909, -0.0262794346, -0.0160847157, -0.00253579137, 0.0110711306, 0.00739149377, -0.00326076359, -0.0206472073, 0.0310094748, -0.0153371887, -0.00720461225, 0.0214076228, -0.0178246479, 0.00723038893, 0.0097436253, -0.014022572, 0.000745110272, -0.015672287, -0.01074892, -0.0225031357, -0.0174895506, -0.00246007205, 0.0122826388, -0.0125919608, 0.00408884278, 0.0107618086, -0.0370927975, -0.0284575727, -0.0472230762, -0.0221035946, -0.00136133656, 0.00998850539, 0.0137132509, -0.0202992205, -0.00724327751, 0.00800369214, -0.0348759927, -0.0101947198, -0.025519019, 0.0166775808, -0.0145381084, 0.0299526267, -0.00386974029, -0.0272718407, -0.00686306972, -0.00159493869, -0.0178117603, -0.0153114116, -0.0095309671, -0.000557825784, 0.0432276726, -0.00380852027, 0.0198610146, -0.00415650709, 0.0304423869, -0.00116076099, 0.0091443155, -0.0299268495, -0.0153243, -0.00570955826, 0.0284575727, -0.00809391122, 0.000756790396, 0.0212529618, -0.00255673518, 0.0218071621, -0.0193454791, -0.0231088903, 0.00245846109, 0.0137003623, 0.0284833498, 0.0406757705, -0.0241915155, 0.000997239491, 0.0177730955, 0.00983384438, -0.0030706597, -0.00490403362, -0.00456893537, 0.000920714636, -0.0452640392, -0.0162136, -0.0220391527, -0.0313961282, 0.0107038114, 0.0247714929, -0.00719816796, -0.00625409326, -0.026047444, -0.00872544292, -0.060627006, 0.00268561905, -0.014177233, 0.0232893284, 0.00113981729, 0.0250034835, 0.00117848255, 0.0432018973, -0.0366803668, -0.00889299158, 0.017102899, -0.0309579223, 0.00381496456, -0.0221035946, 0.0260345545, 0.0129206143, -0.0150278667, -0.0151567515, 0.0125404075, -0.00337998127, -0.00489114551, -0.0501616299, -0.0141514568, 0.0208018683, 0.00299171847, 0.0103816008, 0.0216782782, -0.0148474295, 0.012308416, -0.0188170541, 0.0033477603, -0.00511024799, 0.0213689562, 0.0234955419, 0.0132879335, -0.00504902843, -0.0232506618, -0.0237661973, 0.00635397807, -0.00846767426, -0.0100787235, -0.00355397468, -0.00165615859, -0.00369574688, 0.00412750803, -0.0110453535, -0.000221116512, -0.0158398356, -0.027168734, 0.0200027879, -0.00225708, 0.00499747461, 0.0061187651, 0.00902187545, 0.00603499031, -0.00813902076, 0.00150391448, -0.0163424835, -0.0201961137, 0.00537768239, -0.0135328136, -0.00164971442, 0.0105684828, 0.00103912677, -0.01171555, 0.0367834754, 0.021059636, -0.000922325708, 0.0224644709, 0.0108391391, 0.00253256946, -0.0136359204, -0.0281224754, -0.0158913899, -0.012243974, 0.000251525053, -0.00458182395, 0.00538734859, 0.0155691793, -0.0274007246, -0.0108198067, -0.0182757415, 0.00314799021, 0.00243751751, 0.038819842, -0.0160718262, 0.0143963359, -0.0108069181, -0.0218071621, -0.0190361571, -0.0233924352, 0.00591577264, -0.00190264918, 0.0155562917, -0.00748171238, -0.000950519054, 0.0201574471, 0.0486665741, -0.00316087855, -0.00110840192, -0.0303908326, 0.0370154679, 0.021059636, 0.00573533541, 0.0314219035, 0.0125597399, 0.00105523726, 0.00320598786, 0.0148860952, -0.0214849524, 0.0171931181, 0.010220496, 0.0169740152, 0.00874477532, 0.00683084875, -0.0202992205, -0.00186237285, -0.0247457158, 0.00123970234, -0.00785547588, -0.00412106374, 0.0122826388, -0.00989184249, 0.0165744741, -0.0393869318, -0.00265984237, -0.0011551223, 0.0180437509, -0.0106844781, 0.0143963359, -0.0154402955, 0.00390840555, 0.0156465098, 0.024243068, 0.0288442262, 0.00312060234, 0.00519080041, 0.000233602143, -0.000410414796, -0.00234085461, 0.0321694314, 0.00752682192, -0.0390260555, -0.00108504167, -0.00626053708, -0.0353142, 0.0155949565, -0.0132750459, -0.028354466, 0.0161362682, 0.0114706708, -0.0003717496, -0.00658596912, 0.0200156756, -0.0296433065, 0.0149634248, -0.00832590275, -0.0209951941, -0.00807457883, 0.0132492688, -0.0177859832, 0.0142158987, 0.000160299402, -0.0242172927, -0.00261151069, 0.0260345545, -0.00456893537, -0.0192681495, 0.0119797625, 0.0333293863, 0.00706284, -0.0107424762, 0.0101367217, 0.00418228377, 0.0235599838, -0.0374794491, -0.00357652921, 0.0228511225, 0.0275811628, 0.00649575051, 0.0264212079, 0.00275972742, 0.00455282489, -0.0192423724, 0.0252741408, -0.00541634765, 0.00831301417, -0.0326591916, -0.0115995547, -0.0115157794, 0.00901543163, 0.0154918497, 0.00911853835, -0.0108069181, 0.0304681621, -0.00915075932, -0.00777170155, -0.00350886513, 0.000390880828, 0.017605545, -0.0229413416, 0.00902187545, -0.0302619487, -0.00686951401, 0.00852567237, -0.00293372059, 0.00362163875, -0.00517146802, -0.00399862416, 0.0170255676, -0.0126821799, -0.000187083089, -0.00703706313, 0.00443038531, -0.0159687195, -0.00886077061, -0.0292308778, -0.0409077629, 0.0109164696, -0.0223098099, -0.0112386793, -0.0118959872, 0.00450127153, -0.0160331614, 0.023211997, 0.033587154, 0.00647641765, -0.0204925463, -0.0189717151, 0.0449289419, 0.00237951963, -0.00930542, 0.014770099, -0.012276195, 0.0158785, -0.0191392656, 0.00839034468, 0.0310352519, 0.0189330503, 0.0127208447, -0.0418615043, -0.00213302928, 0.00331231719, 0.0221035946, -0.00380852027, 0.00511024799, -0.00622831611, -0.0386651829, -0.032246761, -0.00699195359, 0.0121150902, -0.000764845638, -0.024243068, 0.0192294829, 0.0246297196, -0.000368930283, -0.0223484747, 0.00311576924, -0.0207632016, 0.0421192721, -0.000722958357, 0.0010882637, -0.00719816796, 0.00133797643, -0.0225804653, -0.00482992548, 0.0194614753, 0.0147958761, -0.00371507951, 0.0164584797, -0.0122310854, 0.00868033338, 0.0184175149, 0.0107940296, -0.00281289197, -0.0152598582, 0.0481252633, 0.00310610281, 0.00877699628, 0.014331894, 0.00872544292, -0.0168193541, 0.00594154932, -0.0142416749, 0.0134941479, 0.00132428249, 0.0157109518, -0.0043530548, 0.0149376485, -0.00347342202, -0.0235986486, 0.0105362618, 0.0129528353, 0.0138421347, -0.0118057691, -0.0236115381, -0.0190619342, -0.0160718262, 0.00962118618, -0.0240884088, -0.0219618231, 0.00270978478, -0.0279162601, -0.0124115236, 0.00837101135, 0.0183530729, -0.00702417456, -0.00895743351, 0.0125661837, -0.0105942599, 0.00822924, -0.000995628419, 0.00361519447, 0.0135328136, 0.0168709066, 0.0269109663, 0.0188041665, 0.0281740297, 0.00233602128, 0.00184787344, -0.0365257077, -0.0157238413, 0.0311641358, 0.013210604, 0.00503291795, -0.0119797625, 0.0150536438, -0.0506256111, 0.00620253943, 0.0164455902, 0.0248101577, 0.00417261757, 0.0109229134, 0.027014073, -0.0468879752, -0.0212271847, 0.0112515679, -0.0120635368, -0.0281998049, 0.00291116606, -0.0191392656, 0.033587154, -0.000243872579, 0.00949874613, -0.00832590275, -0.00945363659, -0.00666329963, 0.00558711868, -0.0133137107, 0.0222195908, -0.00160138297, 0.0194228087, 0.00605110079, 0.00548401149, -0.00251323683, 0.00429183524, -0.0174766611, 0.0221164841, 0.0077330363, 0.00800369214, 0.013584367, 0.0113353422, -0.0165486969, -0.0187655017, -0.0210854113, -0.00961474143, -0.00430150144, 0.0214591753, 0.0375825576, -0.0133781526, -0.00346053368, -0.00530679617, -0.0152340811, 0.0150149791, -0.00260023354, -0.0101109445, -0.00301749515, 0.0143447826, 0.018662395, -0.0186108407, 0.0111742374, -0.0165229216, -0.00392129365, -0.00257445662, 0.00800369214, -0.0056580049, -0.0172962248, 0.00203636615, -0.0177473184, 0.0104718199, -0.0107166991, 0.00430150144, 0.0201445594, 0.00327687408, -0.00641197572, 0.0151180858, -0.000186579637, -0.0309579223, 0.0344635658, 0.0255705733, -0.00704350742, -0.0156207336, -0.0225933548, 0.00153210782, 0.0209951941, -0.0173477773, -0.0279420372, -0.000577963889, -0.00657308102, -0.0186366178, 0.0167678, 0.0170255676, -0.00793925, 0.00609298795, 0.000258976157, 0.0210725237, -0.0164713673, 0.0216653906, -0.0188170541, 0.000308918679, 0.0255061314, -0.00188814965, -0.0278389305, 0.0110775745, 0.0106909228, -0.0366030373, 0.0157109518, 0.022090707, 0.00782325491, -0.00826790463, -0.0103880456, 0.00296271942, 0.0142674521, 0.000254747167, 0.0279420372, 0.0227995683, 0.00623798277, -0.00685018115, 0.0314476825, -0.00227319053, -0.0049942527, 0.00668263203, -0.00608332176, -0.00775236869, 0.0137132509, 0.00651186099, 0.00284672389, -0.00375374476, 0.00533579523, -0.00779103395, 0.00901543163, 0.00472037401, -0.028509127, -0.0112257907, 0.0210209694, 0.00392451603, -0.00372796785, -0.00289827748, -0.0242172927, 0.0257896762, -0.00138550228, -0.00299977371, -0.015453184, 0.0118573224, 0.00406951038, 0.0399024673, 0.0374278948, 0.0033477603, -0.00697906502, 0.00824857224, 0.00634753378, 0.0139452424, -0.0360359475, -0.00950519, 0.00393418223, -0.0130817201, -0.0206987597, 0.00449482724, -0.00463337777, -0.01492476, -0.0201703366, -0.0143190054, 0.01925526, -0.0214333981, -0.000931186427, -0.0205698758, -0.0158913899, 2.26679658e-05, 0.010968023, 0.0386909582, 0.0267305281, 0.0175926574, 0.0346182249, 0.0148087647, -0.04910478, -0.0185721759, -0.00975007, 0.0122375302, -0.018597953, 0.0295917522, 0.000697584299, 0.00930542, 0.00403728941, 0.000464787707, -0.0203378852, 0.023521319, -0.0183401834, 0.000866744493, -0.0263309889, -0.0364741534, -0.00123648031, 0.028663788, 0.0177730955, -2.02010469e-05, 0.0126886237, -0.00501036318, -0.0101431655, -0.0166260283, 0.00980162341, 0.00191553752, 0.00284189079, -0.00349597679, -0.0341800191, 0.00422094902, -0.00331231719, -0.0158785, -0.025016373, 0.0149118714, -0.00487181265, -0.0114577822, -0.0384331904, 0.0189330503, 0.0401086807, 0.00256317924, 0.00169321278, -0.0167549122, 0.0114513375, -0.00405017752, -0.0227866806, -0.00352175371, -0.00848700758, -0.0244492833, -0.00375052262, 0.0173091125, -0.00486214645, 0.0231475551, 0.00313187973, -0.00132911559, -0.00932475273, -0.0135972556, 0.00195903587, 0.0133781526, -0.0210080817, -0.0194872506, 0.00746882427, 0.0417068414, 0.00264050975, 0.00769437104, -0.0141643444, -0.00679862779, -0.00197675731, 0.0284317974, 0.0134941479, 0.0119926501, 0.00956318807, 0.00293049845, -0.0014612216, -0.0282513592, 0.0042563919, 0.00695973262, 0.00801013689, 0.0178890899, 0.0189072732, -0.000421289384, 0.00178987568, -0.00433372241, 0.00520046707, 0.0187010597, 0.0242688451, 0.00740438234, 0.0243461765, -0.00626053708, 0.0337160379, -0.00423383713, 0.0230444483, -0.0152083049, 0.00525846472, -0.0200801175, 0.00360552827, -0.0229284521, -0.0223871395, 0.00109631894, -0.00989184249, 0.00250195945, -0.01074892, 0.00921520125, -0.00575144589, -0.0193583667, -0.00683729304, 0.00607365556, -0.000334494107, 0.0145509969, -0.0119733177, 0.0111806812, 0.000741888187, 0.00948585756, 0.0212658495, -0.00981451198, -0.0184175149, 0.00456249155, 0.00398251368, -0.00436594337, -0.00345731154, 0.0118959872, 0.00645386335, 0.0182113, 0.0249132644, 0.0119926501, -0.00533901714, 0.0155305145, 0.0100078378, -0.00704350742, 0.00421772664, 0.00653119339, -0.0074559357, -0.0133265993, -0.0102011636, -0.0175153278, 0.00842900947, -0.00656663673, -0.000798677676, -0.00736571709, 0.0160202738, 0.000994017348, -0.00648286194, 0.00304166088, 7.9092446e-05, 0.00595121598, 0.0345924497, -0.000697987096, 0.0232248846, -0.0097436253, -0.000715305854, -0.00978229102, 0.0122246416, 0.00305777136, -0.0192423724, -0.00177698734, 0.00450127153, -0.0131397173, 0.00529713, 0.0033477603, 0.0154402955, -0.000810760539, 0.00817768555, -0.00542923575, 0.0160202738, 0.0106715905, 0.0103816008, -0.00288055604, 0.0290246624, 0.0156336222, 0.0206729844, -0.0143963359, 0.010156054, 0.00372796785, -0.0102591617, 0.00195903587, -0.0111162392, 0.00113820622, 0.00791991781, 0.000479287148, 0.0170384571, 0.00678573921, 0.000154761423, -0.00609943224, -0.0120764254, 0.0274522789, 0.0119797625, -0.0131912706, 0.00714017032, -0.0340253599, -0.00148135971, 0.0380980931, -0.0155434031, 0.0344893411, -0.00402117893, 0.00976940244, 0.0176184345, -0.00595121598, -0.00562256156, -0.0316796713, -0.0135457022, -0.00423383713, 0.010342936, -0.0203507729, 0.0136230318, -0.0135714784, 0.0291019939, 0.027323395, 0.0239079706, -0.0156594, -0.0337675922, -0.0230702255, -0.0139967958, -0.0230831131, -0.0229542293, -0.00954385567, -0.0108004743, -0.00118975982, -0.0152083049, -0.0073592728, 0.0179406442, -0.00703706313, -0.0371443518, -0.0279678144, -0.0159042776, 0.00240046345, 0.00341220223, 0.00962763, -0.00202186685, 0.00823568366, 0.00374730048, 0.029256653, -0.00645708526, -0.00064280862, 0.000555006438, 0.000177014037, 0.0188557208, -0.00864811242, 0.00878988486, -0.000440621952, 0.00831301417, -0.00675351825, -0.00213464024, 0.00195420277, 0.00935697369, -0.00245201681, -0.00724327751, 0.00411784183, -0.0200543404, -0.0179664213, 0.0020798645, 0.0181081928, -0.00144994434, -0.00704995124, -0.00609298795, 0.0117219938, 0.0180308633, 0.0103364922, 0.00180115306, -0.027323395, -0.0173735544, 0.00917009171, 0.00171576743, -0.0315765664, 0.000205207398, 0.00545823481, 0.0214591753, 9.66629523e-05, 0.0175668802, -0.00312865758, -0.00247296062, -0.00720461225, 0.00426928047, -0.0125919608, 0.029256653, -0.0091443155, -0.00725616561, -0.0127144009, -0.00180759723, 0.0179921985, 0.0030207173, 0.0310094748, 0.0120442044, 0.0193197019, -0.00186237285, 0.0168322418, 0.00021849855, 0.00807457883, -0.0188943855, -0.00812613219, -0.00663107866, -0.0106264809, -0.00904120784, 0.00026864247, 0.00568700396, 0.010529818, -0.00137664157, 0.00574177923, 0.0225804653, -0.00580622116, -0.02984952, -0.00143141719, 0.012869061, -0.00920231361, 0.00345731154, 0.0142803406, -0.00466559874, 0.0224129166, -0.0221551489, -0.0236630905, -0.000817204709, 0.0139967958, 0.0160331614, 0.000648044574, -0.010220496, -0.00311576924, -0.0075525986, -0.00241979584, -0.0076492615, -0.0287153404, -0.01925526, 0.0191908181, -0.00346375583, 0.024707051, -0.00973073766, 0.011528668, -0.00875766389, 0.00979518, 0.00344764534, 0.00361197232, -0.00450771581, 0.0241528507, -0.00275006099, 0.00166904693, -0.0191779304, -0.0128110638, 0.00592866121, -0.00190103811, -0.00746882427, -1.49651369e-05, 0.012308416, -0.0151567515, 0.000733027409, -0.0110517973, 0.00571922492, -0.0116188871, 0.00569344778, -0.00863522384, 0.0127917305, -0.00232474413, -0.000522382732, 0.0148860952, -0.0078941416, -0.015298523, 0.000472037413, -0.00776525727, 0.0125855161, -0.0112451231, -0.00624442659, -0.0076492615, -0.0164327025, -0.0155820679, 0.00715950271, 0.0156465098, -0.0175282154, -0.0153243, -0.00418228377, 0.00629920233, -0.00543245813, 0.0199898984, -0.000936019584, 0.019564582, 0.00937630609, 0.000807941193, -0.032530304, 0.0186752826, 0.000649655587, -0.000907020702, 0.000480092654, 0.00232796604, 0.00680507207, -0.0141643444, -0.00846123, -0.000731416338, -0.00305293826, 0.00358619564, 0.000166642902, -0.0327365212, 0.00902832, -0.00631531281, 0.0194485858, 0.00853211712, -0.0115673337, 0.00274522789, 0.016948238, 0.00751393335, 0.0185592864, 0.0143190054, 0.00888010301, 0.017760206, -0.00895099, -0.00196386897, -0.000671404763, -0.00305777136, -0.0100593911, 0.0146283265, -0.0211369656, 0.0145509969, -0.0104589313, 0.00301266205, 0.00406951038, 0.0039696251, -0.00811324362, -0.00370541331, 0.0104911523, -0.00224258052, -0.00305616041, 0.00548401149, -0.00333809387, 0.00489114551, -0.0191779304, 0.000256559579, -0.000690737332, 0.0122697512, 0.00797147118, -0.0241399612, 0.0256350152, 0.00277905981, -0.00142497302, 0.0157753937, 0.000417261734, -0.0108069181, -0.00127917307, -0.00156352331, 0.00973073766, -0.00414361851, -0.0207245369, 0.00895743351, 0.00542279147, -0.0254030246, -0.0150149791, 0.0167806894, 0.0284833498, -0.0200930052, -0.00971784908, 0.00582877593, 0.0186366178, 0.0255447961, 0.0130494991, 0.0086094467, 0.0138292462, -0.00757193146, -0.00817124173, -0.00790702924, -0.0231088903, -0.00855144951, 0.00191875966, -0.00808102265, 0.0178633146, 0.0127015123, 0.0145896617, 0.0175926574, -0.00243912847, 0.00797791593, -0.00844834186, 0.00442394102, -0.0130752753, 0.00161910441, -0.0127530657, 0.0219876, -0.0132234916, 0.00961474143, 0.00928608794, -0.0328396261, -0.0109809116, 0.00330909505, 0.0181855243, 0.011870211, -0.0030658266, 0.00213302928, 0.0191392656, -0.00646030717, -0.00719816796, -0.0169869028, -0.000481703726, 0.00322693167, 0.0034444232, 0.0219231583, -0.0163295958, -0.00864811242, 0.00394062651, -0.0115737775, -0.00141933432, 0.00885432679, -0.0188557208, -0.00820990652, 0.0240626317, 0.00702417456, -0.00733994041, 0.00871255435, -0.00207664235, -0.0129528353, 0.0219489355, -0.00410495326, -0.00489114551, 0.00437238766, -0.0286895651, -0.00685018115, 0.00842256565, 0.00337353698, 0.0197321307, -0.00982740056, -0.00790702924, 0.0159429424, 0.00289988867, -0.00567411538, 0.00365708163, 0.00947941374, -0.0147443227, 0.0047268183, -0.00986606535, -0.0173864439, -0.0138936881, 0.0177344307, -0.0145509969, 0.0166518055, 0.0265500918, 0.00696617691, -0.00777170155, 0.0194356982, -0.0166002512, -0.0162909292, 0.0241270736, 0.017760206, 0.0185077339, 0.0119217644, 0.000424511469, 0.00408239895, 0.0141385682, -0.00846123, -0.00737216137, 0.0133008221, 0.00793925, 0.0208534207, 0.0106007038, -0.0113740079, 0.00257123448, -0.00117364933, 0.0049942527, 0.0201961137, -0.00392773794, 0.0147185456, -0.0238306392, -0.0336902626, 0.0147185456, -0.0281224754, 0.00515535753, 0.0326849669, 0.0238306392, -0.0120828692, 0.000947296969, 0.00980806723, 0.014112791, 0.00321726524, -0.0225418, -0.0187783893, 0.0251581445, 0.00474292878, 0.0155434031, 0.00579011068, 0.00294822012, 0.0143061168, 0.0197450183, 0.0146669922, 0.00358941755, 0.00239563, -0.00746238, -0.0301072877, -0.00176732102, -0.0133265993, -0.0155691793, -0.00397284748, 0.0082034627, 0.0120764254, 0.00247296062, -0.000873994199, 0.00138791895, -0.00185753976, -0.0175797697, -0.00643775286, -0.0280451439, -0.00492658839, 0.0122504178, 0.0115222242, -0.0230444483, 0.0122504178, 0.0100980569, -0.0169997904, 0.0151051972, -0.0039696251, -0.0171802286, 0.0105878152, -0.0227351263, 0.0234826542, 0.017914867, 0.00808102265, 0.0186237283, 0.00949230231, 0.00328331836, 0.0110840183, 0.00806813408, 0.00719816796, -0.0113740079, -0.0160202738, 0.00227641244, 0.0109938, 0.00777170155, -0.0198867917, 0.00209597498, -0.0220778193, 0.0036796364, 0.0129528353, 0.0167162474, 0.0269367434, -0.00298688514, 0.00962118618, 0.00622187229, 0.00054614566, 0.0030110511, -0.00178504258, 0.0183144081, 0.00857722573, 0.000547756732, 0.0333293863, -0.00291438797, -0.00255673518, 0.0149763133, -0.0304423869, 0.0125017418, -0.00911209453, 0.00224902481, 0.0106844781, 0.0146412151, 0.00660530198, -0.00115109468, -0.00710150506, -0.0226320196, -0.00257445662, -0.0107102552, -0.00550656626, 0.0228897873, 0.00978873484, -0.0233795457, 0.0154402955, -0.00479448261, -0.00768792676, 0.00766859436, 0.0173091125, -0.00332198339, -0.00188170548, 0.0370927975, 0.0163811482, 0.0280966982, -0.000808343932, 0.00305454922, -0.0114448937, -0.0375825576, -0.0075397105, 0.00489114551, -0.00877055153, -0.0260989983, 0.00615098607, -0.00299332943, -0.027478056, -0.000577963889, -0.0104524875, 0.00444649579, 0.000457537972, -0.00539701479, 0.0170771219, -0.00122117531, -0.0101238331, -0.0250550378, -0.00470104162, -0.0103364922, -0.000362083316, 0.0155949565, -0.00858367048, -0.0132234916, -0.0125597399, -0.0140483491, 0.00548401149, -0.0132879335, 0.0105555942, 0.0250421483, 0.00724327751, -0.0185206216, 0.00364419329, -0.0137003623, -0.022838233, 0.0075525986, 0.00182048557, 0.0263825413, 0.0189717151, -0.0155434031, -0.00944719277, 0.00548401149, -0.00515535753, 0.00624764897, -0.00693395594, -0.00215397286, -0.0297721904, 0.0285349041, 0.00971140433, 0.0167420227, 0.00520046707, 0.0227351263, 0.0075525986, 0.00410817564, -0.00247457158, 0.00715305842, -0.00703706313, 0.00587388547, -0.00840323232, -0.00244718371, -0.0127852866, -0.0155691793, 0.00273717265, -0.00519080041, 0.012398635, 0.0169869028, -0.0135585899, -0.00831301417, -0.00157641165, 0.00391162746, -0.00253579137, 0.0126628466, 0.00350564299, 0.0320663229, 0.028354466, -0.0246297196, 0.00690817926, -0.000933603034, -0.019938346, -0.0121344225, -0.0134168183, -0.000143886835, 0.0158140585, -0.00209436403, -0.00991117489, 0.0077330363, -0.003434757, 0.0312414672, 0.0130817201, -0.0106909228, 1.79355084e-05, 0.019629024, -0.0178890899, 0.00237951963, -0.0093183089, 0.00180276413, -0.0340253599, -0.0116575519, 0.00748171238, -0.0119475406, -0.00775236869, 0.0303392783, 0.018288631, 0.017167341, -0.0123213045, -0.00182531879, 0.0108584715, -0.0151180858, -0.014486555, -1.33792601e-05, -0.000456732465, 0.00346053368, 0.0155047374, -0.0151309744, 0.0066955206, -0.00737860566, -0.00352497562, -0.00757193146, 0.013429706, 0.011528668, 0.02367598, -0.00125822949, -0.0140999025, 0.00392451603, 0.0154789612, -0.0266531985, -0.0131074963, 0.0218844935, -0.0139065767, 0.0315765664, 0.0082034627, -0.0126821799, 0.0115995547, -0.0166131388, 0.00801658072, 0.00321243214, 0.00526813092, -0.00862878, 0.0183659606, -0.00198964588, -0.0153114116, -0.00849989522, -0.0158527251, 0.0193454791, -0.000318786362, 0.0218587164, -0.000944074825, -0.0018398182, 0.0155820679, -0.000706042338, 0.0113482308, 0.0281998049, -0.0116059985, 0.0146927685, 0.0165873636, -0.00601888, 0.00189298287, 0.0160847157, 0.0118315453, 0.0391807184, -0.0142287863, -0.00199931208, 0.0190619342, -0.00529713, -0.0208663102, -0.0232635513, -0.0221809261, 0.00797791593, 0.00656019244, 0.000980323413, -0.0205441, 0.00927319936, 0.0142287863, -0.00394062651, -0.0396962538, 0.016948238, 0.0233537704, 0.00679862779, 0.012991501, -0.0213045143, 0.0148860952, 0.0211369656, -0.0151180858, -0.0105491504, -0.0190361571, -0.00469137542, -0.0109486906, 0.00833234657, -0.000303280016, -0.00406951038, -0.0280451439, 0.0143061168, 0.00511991419, -0.0213174038, 0.0245910548, -0.002033144, 0.0113997841, 0.0349791, 0.0253128055, -0.00428216904, -0.0308805909, 0.0326076373, 0.0172833353, -0.00414361851, 0.01492476, -0.00784258731, -0.0158913899, -0.00760415243, 0.00762348482, -0.0193068143, -0.00201542256, -0.017322002, 0.00947296899, 0.00802302547, -0.00678573921, 0.0113160098, 0.0113031212, -0.0246039443, -0.0232248846, 0.0142674521, -0.00940208323, 0.0227351263, 0.00287894486, 0.00553556532, -0.0118315453, -0.0194872506, -0.014705657, -0.0167806894, -0.00427894667, -0.0217942744, -0.0117671033, 0.00332842767, 0.00128239521, -0.0126177371, 0.00229091197, 0.00208147569, 0.0154660726, 0.00138147466, -0.0115415566, -0.0018092083, -0.019629024, 0.0135070365, -9.85257284e-05, -0.0118573224, -0.00522302138, -0.0270914044, -0.000467607024, 0.0121344225, 0.021562282, -0.0117542148, 0.0193454791, -0.018662395, -0.0135328136, -0.00368285854, -0.0255576856, -8.15090243e-05, -0.0078297, -0.0103880456, -0.0153114116, 0.0177344307, -0.000684293162, -0.00340898, 0.0165100321, -3.56444652e-05, -0.00221035955, -0.0150407553, 0.00150472, 0.0148732066, -0.0222840328, 0.00694684405, 0.00268723, -0.00205569877, 0.00427894667, -0.010813362, -0.0125275189, 0.0192294829, 0.011560889, 0.00427572476, 0.0150149791, -0.00155627355, 0.00872544292, 0.00444971817, 0.0158140585, -0.0104653761, 0.000660530175, 0.0035410861, 0.00261473283, 0.0148732066, -0.0118315453, 0.0309321452, 0.0154145192, 0.015981609, 0.0125404075, 0.00355075253, 0.00244557275, 0.00699195359, -0.0063120909, -0.00352175371, -0.000550978817, -0.0167162474, 0.00625087088, 0.0185335111, 0.000863522408, 0.00752682192, 0.00480092689, -0.0205569882, -0.0130623868, 0.012430856, 0.0254159123, -0.00944074802, 0.011309566, -0.00788125303, -0.019474363, -0.00700484216, 0.00350242108, -0.0105169294, 0.00925386697, -0.0213174038, 0.0117026614, 0.0112451231, 0.0200801175, -0.00751393335, 0.000749137893, 0.0142674521, 0.0148474295, -0.00387940649, 0.00717239128, -0.0121795321, -0.00989184249, 0.011683329, -0.0134425946, -0.0335356, -0.0240884088, 0.0142545635, 0.00834523514, 0.00822924, 0.000771692605, -0.0192423724, -0.0179406442, 0.00105845928, 0.0116059985, 0.0125468513, -0.00220552646, 0.00398573559, 0.0334582701, -0.0194228087, -0.00525524234, 0.0354946367, -0.00542601384, -0.0254288018, 0.000907020702, -0.00559356296, 0.000136637114, -0.00218297169, 0.000714500318, 0.00777814584, 0.00393096032, 0.021562282, -0.00559678487, 0.00641842, -0.00355397468, -0.0103558246, 0.0130043896, -0.00134039298, 0.00117445493, 0.0173348896, -0.0183530729, -0.00592221692, -0.0105878152, 0.00108584715, -0.0238048639, 0.0175668802, -0.00129447808, -0.00621220563, -0.00670196488, -0.0226062424, 0.0114320051, 0.00888010301, -0.019719243, 0.0126048494, 0.0167291351, -0.0162264872, 0.00645386335, -0.0173993316, -0.018597953, -0.0302103944, 0.00151921937, -0.0123664141, -0.000181847179, 0.0254159123, 0.0176184345, -0.00165776967, -0.0437174328, 0.00064482243, 0.0064087538, 0.00341542438, -0.00863522384, -0.0237275325, 0.00366674806, 0.00801013689, 0.00880921725, -0.018945938, -0.021214297, -0.0067921835, 0.00686951401, 0.00281450292, -0.00166904693, -0.0190232694, 0.00841612089, 0.0112580117, 0.00939563941, -0.00106732012, 0.000173187786, -0.00433050049, -0.0129786124, -0.00800369214, 0.00142013992, -0.00971140433, 0.000421289384, 0.0320405476, 0.00304327207, 0.0308290385, -0.000437802635, -0.010001394, 0.00200897828, 0.0267305281, 0.00459793443, -0.0188428313, -0.00441749673, -0.00113578967, 0.0238048639, 0.00945363659, 0.00650541671, 0.0192037076, -0.00769437104, 0.0171544515, -0.00341220223, -0.0244492833, 0.00835167896, 0.00757837575, 0.00479448261, 0.0262407698, 0.00828723703, -0.00122117531, -0.00878988486, -0.01183799, 0.0137261394, -0.0133523755, -0.0115351127, -0.000296634447, 0.00831301417, -0.0192939248, -0.0254030246, -0.0127466219, 0.00171415636, 0.0228124578, 0.0158398356, -0.00330265099, 0.00362486066, -0.00958896521, -0.0114062289, 0.0169997904, -0.00580944354, 0.0226062424, -0.00273717265, 0.00338964746, -0.00683729304, 0.00115351123, 0.0135972556, -0.00377307716, 0.00163118739, -0.00384718552, 0.0210983, -0.0106135923, -0.00710150506, -0.000333084434, -0.0176313221, -0.0215880591, 0.0279420372, -0.000888493669, 0.0101367217, -0.0413459688, -0.0304681621, -0.00702417456, -0.00980806723, -0.000582797045, -0.00923453458, 0.0269882958, -0.000861911336, -0.0137905814, -0.00885432679, 0.015298523, 0.0074559357, -9.12760079e-05, 0.00360875018, 0.012243974, 0.0343346819, -0.0139967958, -0.0225675777, 0.0160073843, -0.0103042712, -0.00501358509, 0.0145767732, 0.0185721759, -0.010375157, -0.00087560527, -0.000515535765, 0.0170642342, 0.00353142, 0.00181726355, 0.0106715905, 0.0187397245, -0.0111162392, -0.00834523514, -0.0196419116, 0.010781141, 0.00249551516, 0.00342831272, -0.0134425946, 0.0121473111, -0.0121859759, 0.0270656273, 0.0216911659, -0.0173091125, 0.0129206143, -0.0027339505, 0.00586744118, 0.0131332735, -0.0111484602, -0.00449804962, 0.00994339585, -0.0158140585, -0.0121086463, 0.00513280276, -0.00788125303, 0.00553556532, -0.00963407476, 0.00246007205, 0.0343604572, 0.000656502554, -0.00964051858, -0.00430150144, -0.0355719663, 0.00115351123, 0.0110840183, 0.00137019739, 0.0133781526, -0.0112257907, -0.014860318, 0.00798436, 0.0158527251, -0.00225224672, 0.0231346674, 0.00707572838, 0.0196161345, 0.0217298325, 0.0131912706, -0.0114642261, 0.002033144, -0.0197321307, 0.00600921363, 0.0197063535, -0.0251194797, 0.0102076074, -0.0104267104, -0.00487503503, 0.010781141, 0.00570955826, 0.0390518345, 0.00116076099, 0.000715708593, -0.0164971445, 0.00681796, -0.00667618774, 0.00301427301, 0.00120989792, 0.00710794935, 0.020904975, -0.0170771219, 0.00329620671, -0.00552589865, -0.0134168183, -0.00543568, -0.00396318128, 0.0225289129, -0.000320800173, -0.00587388547, -0.0239595249, -0.0160976034, 0.00108262512, 0.0225675777, -0.0121150902, -0.0117735481, -0.00450127153, -0.0162264872, 0.0223098099, -0.00200575637, 0.00714661414, -0.0323240906, -0.0132879335, -0.00493625458, 0.00344120106, -0.00580944354, 0.00110034656, -0.012869061, 0.00509736, 0.00891232397, -0.0193325914, -0.00709506078, -0.00942141563, -0.0083839, -0.0274522789, -0.0119604291, -0.00654086, 0.0180953052, -0.0263696536, 0.00850634, -0.00864166766, -0.0227222387, -0.0123148598, -0.0267563052, 0.0129270591, 0.00175604364, 0.000213464024, -0.0193068143, -0.00323820882, -0.0246941634, -0.00794569496, -0.00324787525, -0.00755904289, -0.00574177923, 0.00142013992, 0.0166002512, -0.0147443227, -0.000777331239, 0.00339609175, 0.00135892, -0.0169740152, -0.0213689562, 0.00654408196, -0.00540345907, -0.0426348075, -0.000275288039, 0.00593832741, 0.0138034699, 0.00958896521, -0.00768792676, -0.0260861088, 0.00311415805, 0.00897032209, -0.00403406704, -0.0103042712, -0.0121473111, 0.000733027409, 0.0107295876, -0.00826790463, -0.00535834953, -0.015607845, 0.0150923086, 0.0360617265, 0.00355719659, 0.0157238413, 0.0223226976, -0.0107940296, 0.0042467257, -0.0148474295, -0.00485570217, -0.0120248711, -0.0291019939, -0.00194936956, -0.00196386897, -0.0145123312, 0.0148345409, -0.000283746049, 0.0140096843, 0.00563222822, -0.00922809, -0.00229896721, 0.018597953, 0.000182451331, 0.00344120106, -0.0171544515, 0.00743660331, 0.00890588, -0.00271945097, -0.00269367429, 0.00735282851, -0.00665685534, 0.00540023716, -0.00477514975, -0.0178633146, 0.00073705503, 0.0179406442, -0.00663752295, -0.00100771128, -0.013210604, 0.00106490357, 0.0304423869, -0.00762348482, -0.0265500918, -0.00531001808, 0.0137003623, -0.0261892155, -0.0219489355, 0.00237468653, 0.0284575727, 0.014486555, -0.00375374476, 0.0168966837, -0.00762348482, 0.00399862416, 0.0293339845, -0.00775236869, 0.00165615859, -0.0138936881, -0.00156835641, 0.0116382195, -0.0010834306, -0.000513521954, -0.00814546458, -0.0226062424, -0.00704350742, 0.00720461225, 0.0059479936, -0.016484255, -0.0125210742, 0.00748171238, -0.00610587653, -0.00110115216, 0.0146154389, 0.00760415243, -0.00559034059, 0.0042467257, 0.0138292462, -0.00160863262, -0.00581910973, 0.00219586, -0.0132879335, -0.00884788204, -0.027014073, -0.0659370199, -0.0202090014, 0.000479287148, -0.00607365556, 0.0284317974, 0.00744949142, 0.00437883195, 0.024397729, 0.0154402955, 0.00116156647, 0.00400506845, 0.0118830986, 0.00190909335, -0.00422417093, -0.0021716943, -0.0049845865, -0.0279678144, -0.0234182123, -0.000284350186, 0.00723038893, 0.00240046345, 0.002033144, -0.00300460681, 0.0296948589, 0.00737860566, 0.00520046707, 0.00428216904, -0.0238821935, 0.00444327388, 0.00903476402, 0.00787480827, 0.0145123312, -0.0199254565, -0.00639586523, 0.0165873636, -0.00880921725, -0.0239724126, 0.00412750803, 0.00678573921, -0.002882167, -0.0142158987, 0.00115431682, -0.00271622906, 0.00818413, -0.00122198078, -0.00881566107, 0.00595766, -0.0168966837, -0.0151438629, 0.00269045215, -0.0118830986, -0.0136359204, -0.00717239128, 0.0106007038, 0.0110195763, 0.00204119948, 0.00744949142, 0.0131590497, -0.00496203173, -0.00897032209, -0.0239724126, -0.0003129463, 0.0163940378, -0.011496447, 0.0210080817, -0.00688240211, -0.0166904703, 0.00919586886, -0.00526813092, -0.0148732066, 0.0028306134, -0.0059479936, 0.0181597471, -0.0287153404, -0.00571600255, 0.00392129365, 0.00960185379, 0.00845478661, -0.0104009341, -0.0135972556, -0.00196709111, -0.0016255487, -0.00549045578, -0.00486536883, -0.000100690573, -0.0195388049, 0.0261763278, 0.0106007038, -0.00416939519, -0.00963407476, -0.0134039298, -0.0089316573, -0.016419813, -0.0114900032, -0.01813397, -0.00719172368, 0.00107779191, -0.0100529473, 0.00416939519, 0.00533579523, -0.00598343695, 0.0010375157, -0.0234311, 0.0233537704, -0.00558067439, -0.00378918787, -0.00238596392, 0.00397606939, -0.00885432679, 0.0024069075, 0.0150923086, -0.030158842, -0.0104009341, -0.0165615864, 0.0113804517, 0.0183144081, 0.0146283265, -0.00252451422, 0.00846123, 0.0194485858, 0.0122890836, -0.0131526059, 0.0322983153, 0.00426283618, 0.00940852705, -0.00246490538, -0.00335420459, -0.0133394878, 0.0203378852, -0.0199512336, 0.00133878191, -0.0051972447, 0.0190103799, 0.0174895506, -0.0017351, 0.0280193686, 0.00604787888, 0.0232506618, -0.00252129207, 0.00387296244, -0.00550012197, -0.017914867, -0.00694684405, -0.0218587164, 0.00672774157, 0.00770081533, 0.00830656942, 0.0123921903, 0.0168451313, -0.0345924497, -0.00363774924, 0.017167341, 0.0105684828, 0.00145880505, -0.0121022016, 0.0259056706, -0.0118186567, -0.00472037401, -0.0133781526, -0.00686951401, 0.0299784038, -0.0143963359, -0.0188041665, -0.010001394, 0.00966629572, 0.00452704821, 0.0240755193, 0.0111097954, -0.0149505371, 0.00174637733, 0.0140999025, 0.00453349249, -0.00663107866, -0.00795213878, -0.00556456391]
|
09 Jun, 2022
|
STD::array in C++
09 Jun, 2022
The array is a collection of homogeneous objects and this array container is defined for constant size arrays or (static size). This container wraps around fixed-size arrays and the information of its size are not lost when declared to a pointer. In order to utilize arrays, we need to include the array header:
#include <array>
Let’s see an example.
CPP
// CPP program to demonstrate working of array
#include <algorithm>
#include <array>
#include <iostream>
#include <iterator>
#include <string>
using namespace std;
int main() {
// construction uses aggregate initialization
// double-braces required
array<int, 5> ar1{{3, 4, 5, 1, 2}};
array<int, 5> ar2 = {1, 2, 3, 4, 5};
array<string, 2> ar3 = {{string("a"), "b"}};
cout << "Sizes of arrays are" << endl;
cout << ar1.size() << endl;
cout << ar2.size() << endl;
cout << ar3.size() << endl;
cout << "\nInitial ar1 : ";
for (auto i : ar1)
cout << i << ' ';
// container operations are supported
sort(ar1.begin(), ar1.end());
cout << "\nsorted ar1 : ";
for (auto i : ar1)
cout << i << ' ';
// Filling ar2 with 10
ar2.fill(10);
cout << "\nFilled ar2 : ";
for (auto i : ar2)
cout << i << ' ';
// ranged for loop is supported
cout << "\nar3 : ";
for (auto &s : ar3)
cout << s << ' ';
return 0;
}
Output:
Sizes of arrays are
5
5
2
Initial ar1 : 3 4 5 1 2
sorted ar1 : 1 2 3 4 5
Filled ar2 : 10 10 10 10 10
ar3 : a b
This C++ STL array is a kind of sequential container and is not used extremely in regular programming or in competitive programming but sometimes its member function provides an upper edge to it over the regular normal array that we use in our daily life. So, we are discussing some of the important member function that is used with such kind of array:
Member Functions for Array Template are as follows:
Syntax: array<object_type, arr_size> arr_name;
a) [ ] Operator : This is similar to the normal array, we use it to access the element store at index ‘i’ .
Ex:
C++
#include <iostream>
#include <array>
using namespace std;
int main() {
array <char , 3> arr={'G','f','G'};
cout<<arr[0] <<" "<<arr[2];
return 0;
}
Output
G G
b) front( ) and back( ) function: These methods are used to access the first and the last element of the array directly.
C++
#include <iostream>
#include <array>
using namespace std;
int main() {
array <int , 3> arr={'G','f','G'}; // ASCII val of 'G' =71
cout<<arr.front() <<" "<<arr.back();
return 0;
}
Output
71 71
c) swap( ) function: This swap function is used to swap the content of the two arrays.
Ex:
C++
#include <iostream>
#include <array>
using namespace std;
int main() {
array <int , 3> arr={'G','f','G'}; // ASCII val of 'G' =71
array <int , 3> arr1={'M','M','P'}; // ASCII val of 'M' = 77 and 'P' = 80
arr.swap(arr1); // now arr = {M,M,P}
cout<<arr.front() <<" "<<arr.back();
return 0;
}
Output
77 80
d) empty( ) function: This function is used to check whether the declared STL array is empty or not, if it is empty then it returns true else false.
Ex:
C++
#include <iostream>
#include <array>
using namespace std;
int main() {
array <int , 3> arr={'G','f','G'}; // ASCII val of 'G' =71
array <int , 3> arr1={'M','M','P'}; // ASCII val of 'M' = 77 and 'P' = 80
bool x = arr.empty(); // false ( not empty)
cout<<boolalpha<<(x);
return 0;
}
Output
false
e) at( ) function: This function is used to access the element stored at a specific location, if we try to access the element which is out of bounds of the array size then it throws an exception.
Ex:
C++
#include <iostream>
#include <array>
using namespace std;
int main() {
array <int , 3> arr={'G','f','G'}; // ASCII val of 'G' =71
array <int , 3> arr1={'M','M','P'}; // ASCII val of 'M' = 77 and 'P' = 80
cout<< arr.at(2) <<" " << arr1.at(2);
//cout<< arr.at(3); // exception{Abort signal from abort(3) (SIGABRT)}
return 0;
}
Output
71 80
f) fill( ) function: This is specially used to initialize or fill all the indexes of the array with a similar value.
Ex:
C++
#include <iostream>
#include <array>
using namespace std;
int main() {
array <int , 5> arr;
arr.fill(1);
for(int i: arr)
cout<<arr[i]<<" ";
return 0;
}
Output
1 1 1 1 1
g) size( ) or max_size( ) and sizeof( ) function: Both size( ) or max_size( ) are used to get the maximum number of indexes in the array while sizeof( ) is used to get the total size of array in bytes.
C++
#include <iostream>
#include <array>
using namespace std;
int main() {
array <int , 10> arr;
cout<<arr.size()<<'\n'; // total num of indexes
cout<<arr.max_size()<<'\n'; // total num of indexes
cout<<sizeof(arr); // total size of array
return 0;
}
Output
10
10
40
h) data( ): This function returns the pointer to the first element of the array object. Because elements in the array are stored in contiguous memory locations. This data( ) function return us the base address of the string/char type object.
Ex:
C++
#include <iostream>
#include <cstring>
#include <array>
using namespace std;
int main ()
{
const char* str = "GeeksforGeeks";
array<char,13> arr;
memcpy (arr.data(),str,13);
cout << arr.data() << '\n';
return 0;
}
Output
GeeksforGeeks
I) cbegin( ) and cend( ): go to this gfg link : Click_me
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++
|
https://www.geeksforgeeks.org/stdarray-in-cpp/?ref=lbp
|
Pandas
|
STD::array in C++
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0353512019, 0.0169231333, -0.00721114315, 0.0239904225, 0.0197854601, -0.0243150163, -0.0308363978, 0.0183985587, -0.0122681651, -0.000278025545, -0.0356167778, -0.00148556929, 0.0322823152, -0.0308954157, 5.68269461e-05, -0.00491316756, -0.00469185365, 0.0261888076, -0.00639228197, -0.00861648656, 0.00712999515, -0.00669843284, -0.0462398417, -9.35396893e-05, 0.000911536452, 0.0185608566, 0.00725171762, 0.0031334355, -0.0399840362, -0.00362585881, 0.0358823538, 0.00331786368, 0.00165800971, -0.0401610881, -0.019903494, -0.000682845479, 0.00581317768, -0.0145108122, -0.030275736, -0.0253183059, 0.0290363785, -0.00179448654, 0.0236658286, -0.00222604861, -0.00373282703, 0.0590465367, 0.000349491485, -0.0171001852, 0.00995912403, 0.0232674647, 0.0047545596, 0.00238281256, 0.0332265869, 0.0208920278, 0.0127550559, 0.0232527107, 0.00888206344, 0.0132271918, -0.0341118425, -0.052938275, -5.17551671e-05, -0.0426398031, 0.0240789484, -0.0404856838, -0.00393938692, 0.0106820827, -0.0574235693, 0.0472431332, 0.0143632693, -0.00138228945, -0.0241527203, 0.0249642041, 0.00032228831, 0.0131755518, -0.0560071617, -0.0357053019, 0.00485046208, 0.0384791046, 0.000649187306, 0.0533218868, -0.0257904418, 0.032665927, -0.00514923595, -0.0139206415, 0.00286232587, 0.0121353772, -0.0159493517, -0.0396889523, 0.0268675033, 0.017749371, -0.027664233, 0.0391873084, 0.0134042427, -0.0088746855, -0.0096640382, 0.0355577618, 0.0270445533, 0.00769434543, -0.0266609434, 0.0643285662, -0.000216818429, 0.0222199112, -0.0132124377, -0.0115230754, -0.00442258874, 0.00756155699, 0.0445283502, 0.0186493807, -0.0147468802, 0.00874927454, 0.00129560824, -0.0159050897, -0.0145403212, 0.0225592591, -0.0196821801, 0.0065619559, 0.0235773027, -0.0366495773, 0.0352921821, 0.0208035037, 0.0114714354, 0.0365315415, 0.00162942335, 0.00866812654, -0.048039861, 0.0398955122, 0.0440857224, -0.0134042427, 0.0109550366, 0.00300986855, -0.00768696796, -0.0265576635, 0.00244182954, -0.0232822187, 0.00699351821, -0.0108738877, -0.000133825728, 0.0375053212, -0.0138616245, -0.0160378776, -0.0460923, -0.0293167103, 0.0255543739, 0.0196231622, -0.0281658769, -0.0135075226, 0.00506808748, 0.067515485, -0.0244625583, -0.0267937314, -0.0298036, -0.00447422871, 0.0268232394, -0.0355872698, 0.0510202236, -0.0322233, 0.0196231622, 0.0187231526, 0.0248314161, -0.040662732, 0.000291396573, -0.0135075226, -0.0102542089, -0.012600136, -0.0176756009, 0.0298331082, 0.0467119776, -0.0260117557, -0.0336397067, 0.0469185375, 0.000188347316, 0.0664531738, 0.0127181699, 0.0113238925, -0.0289921165, -0.0240641944, 0.0280478429, 0.0132050607, 0.00356868608, -0.0117001263, 0.00277564465, 0.00478037959, 0.0058021117, 0.015167377, -0.00402791239, 0.0210838336, 0.015049343, -0.0123271821, 0.0409283116, -0.0172034651, 0.00414963486, 0.0055512893, 0.0121058682, 0.0136476886, 0.0134485057, 0.0160083696, -0.0569219254, -0.00611563958, -0.00897796545, 0.0444398224, 0.00689761527, 0.0107337227, 0.0181772448, -0.0183100328, 0.0472136252, -0.00305228704, -0.0235035326, -0.0275609531, 0.0104902769, 0.0249642041, -0.0197559502, 0.0288298186, 0.0241232105, 0.00347462762, 0.0310429577, 0.0161706656, -0.0442037545, 0.0219395813, -0.0135812936, -0.0211133417, 0.00811484177, 0.00199182471, 0.0429348908, -0.0341413505, -0.0517874435, -0.060846556, -0.0193575863, -0.0065176934, -0.0273396391, -0.0198149681, -0.0267494693, 0.0194018483, -0.0116411094, -0.0109697906, 0.035144642, -0.027693741, -0.0112206126, -0.00531522138, -0.0246986263, 0.0475677252, -0.0103574889, 0.0297298282, -0.0348200463, -0.0204936638, 0.0409283116, 0.0161264036, -0.0401905961, -0.0293462183, -0.00832140166, -0.00257461797, 0.0324888751, 0.0196969341, 0.0342593864, 0.0117886513, -0.00178710942, 0.0298921261, -0.00664310437, -0.03039377, 0.0102910949, 0.0163624715, -0.0063037565, 0.0409873277, -0.00521194143, 0.015093605, 0.0159493517, -0.00287708, 0.0366200656, -0.0127034159, -0.0384200849, -0.0715876594, 0.0350561142, -0.0157132838, 0.025170764, -0.0114345495, 0.0245510843, 0.0296265483, -0.0395709202, 0.0253920779, 0.0259084757, -0.00177143305, 0.0316331275, -0.0235330407, 0.0137362136, 0.00992223807, 0.0123419361, -0.0114345495, -0.0506366119, -0.000245289528, 0.000150539534, 0.0108812647, -0.0357348099, -0.0199772641, -0.00296745, 0.0128878439, 0.037888933, 0.0186051186, -0.0216444954, -0.0262625776, -0.0285789967, -0.0205821898, -0.00825500675, -0.0429939069, -0.00490579056, -0.0186936446, -0.0322233, -0.0326069072, 0.0153739359, -0.0307478718, 0.032400351, -0.012629644, -0.00838041864, -0.0579252131, -0.0347905383, -0.0296560582, -0.00652507041, -0.000968248118, 0.0213346556, 0.0065582674, -0.0157870557, -0.0342003703, 0.000342575426, -0.0158460718, 0.00557710929, 0.0235920586, 0.0224264711, -0.00996650103, 0.00345987338, 0.0186051186, -0.00168659608, -0.0503415279, -0.0417250395, 0.0329315029, -0.0409873277, -0.00267789769, 0.00753573701, -0.0244330503, -0.0353216939, 0.012548496, 0.00946485624, -0.00467341114, -0.01510836, -0.0122312792, -0.0363249816, 0.00281068613, -0.010025518, -0.0285199806, -0.00381397549, -0.00958289, 0.0153001649, -0.00686441828, 0.00127993186, -0.0108074937, -0.00247318251, -0.0257461797, 0.0479218289, -0.00620785402, -0.0308659058, -0.0246101022, -0.00480619958, 0.0123050511, 0.0027701119, 0.0332265869, -0.025259288, 0.000453923945, 0.00244551827, -0.0388036966, -0.0232527107, -0.0188411865, 0.019903494, -0.0210690796, -0.00159530411, -0.0105788028, -0.0042455378, 0.0259084757, -0.0116779944, -0.0264543835, 0.017867405, 0.00299327, 0.00834353268, -0.000542680034, -0.022736311, 0.0216592494, -0.0205526799, -0.0172477271, -0.0204789098, -0.0179559309, -0.0190329924, 0.022913361, 0.0220428612, 0.0214822, -0.0390397646, 0.0073181116, 0.0191657804, -0.0209953077, 0.0131460438, 0.0028992116, -0.0291691665, -0.0261740535, -0.0133378487, -0.0389512405, 0.0344954543, 0.0117296344, 0.020124808, 0.00656564441, -0.00648080744, 0.0114419265, -0.0322528072, 0.00320536247, 0.0275904611, 0.0205821898, 0.0188264325, 0.00139151094, -0.0102763399, 0.00109734794, 0.0292724464, 0.00709310919, -0.0319282115, 0.0665121898, 0.0105492938, -0.000366781605, 0.0119730802, -0.00222973712, -0.0343184024, 0.0172034651, 0.0256724078, 0.0107263448, -0.0415479876, 0.00310208253, -0.0115378294, -0.0417840555, -0.0438201465, 0.0211723596, 0.022588769, 0.0312790275, -0.0132050607, -0.0557710938, 0.0285789967, -0.0232674647, -0.0432299748, -0.0296117943, -0.00746565405, 0.0612596758, 0.037947949, -0.0257461797, -0.000510405109, 0.0219838433, -0.0246543642, 0.0153591819, -0.00469923113, -0.00420865184, -0.025377322, -0.00136292458, -0.0171444472, -0.0045443112, 0.043111939, -0.0078640189, 0.0299363881, -0.0270888172, 0.00534841837, 0.00799680781, 0.0279150549, -0.00415701186, 0.00635170797, 0.0265724175, 0.0394233763, 0.0131165348, 0.0192543063, -0.0122017711, -0.0259527396, -0.0206707139, 0.00295269582, -0.0389512405, 0.0613777116, 0.0036609, 0.0147616342, -0.00638490496, -0.000407355838, -0.0050828415, -0.03039377, -0.0523481071, 0.0157870557, -0.0196969341, -0.0357938297, -0.0187083986, -0.000730796834, -0.0420496352, 0.0209953077, -0.00414594635, -0.0235625487, 0.00793041382, 0.0217772834, 0.027797021, -0.00926567335, -0.0290953964, -0.00919190235, -0.000126563871, -0.0186788905, 0.0145772062, -0.0265281554, 0.0578957051, 0.0254658479, 0.0084910756, -0.000886177586, 0.0447349101, 0.0191657804, -0.0387741886, -0.0460332818, 0.0456201658, 0.00686441828, 0.0145845832, -0.0320462473, -0.000679156918, 0.0210248176, 0.0147985201, -0.00255801948, -0.0267347153, -0.0244920682, -0.00552546931, -0.0207297318, -0.00855009258, 0.0127624329, 0.00801156182, -0.0136624426, 0.0104312599, 0.0274576731, -0.00257277372, -0.00209510466, -0.00903698243, -0.0115083205, -0.0266019255, -0.0206559598, 0.00458488567, -0.0215559695, 0.00327360095, -0.0133599797, -0.0225149971, -7.92465e-05, 0.00855009258, -0.0184870847, 0.0159493517, -0.02494945, 0.0359413698, 0.0045406227, -0.000384763378, -0.0070230267, 0.0206264518, -0.00981158111, 0.00262072496, 0.0296560582, 0.00916977134, 0.00779024791, 0.0254068319, -0.00103095372, -0.00108997081, -0.0245215762, 0.00509390747, -0.0437316187, 0.00176128943, -0.0343774185, -0.00561030628, -0.00765745947, 0.0216149874, 0.0508431718, 0.0296413042, -0.0031537225, -0.0353807099, 0.0248461701, 0.0218805633, -0.0122755421, 0.0177788809, 0.00171241595, -0.0148575371, 0.0240937024, 0.0159050897, 0.0199477561, 0.0288150646, 0.00765745947, 0.0165395234, -0.00984109, 0.0080705788, 0.00610457407, -0.037888933, 0.0148354061, -0.0285937507, -0.0132345688, -0.00606031111, -0.0139280194, 0.00697138673, -0.0378299169, -0.0156395137, -0.0143263843, 0.0133968657, 0.00267974194, 0.00709679769, -0.0161559116, 0.0102542089, -0.0204198919, -0.0111099556, -0.0317216553, 0.0112353675, 0.0121870171, 0.0185756106, 0.022795327, -0.0268822573, -0.010136175, -0.00954600424, 0.0359413698, 0.0110066757, 0.00234223832, 0.0121722622, -0.0583973527, 0.00654720189, 0.0275019351, 0.000793963496, 0.00177419942, 0.0190920085, -0.0103869969, 0.027693741, -0.0435250588, 0.0133673577, -0.00586112868, -0.0230609048, -0.010121421, 0.00029623782, 0.0157427918, 0.0290216245, -0.0290511325, -0.0470660813, -0.0196821801, -0.0132714547, 0.0236068126, -0.0459447578, -0.00485415058, -0.0249642041, 0.0187821705, 0.017690355, 0.00762057398, 0.015152622, -0.0136181796, 0.0245953463, -0.02533306, 0.0052598929, 0.00226293434, 0.0629121512, -0.010069781, 0.017469041, -0.035498742, 0.00802631583, -0.00184336, -0.00074232358, -0.00377709, 0.00792303588, -0.00738450605, 0.00958289, 0.0122386562, -0.0128878439, 0.0246986263, 0.0395119, 0.00874927454, 0.00666154735, -0.0186788905, -0.0266166814, 0.00103003159, -0.00361110456, -0.00773123093, -0.00471398514, -0.032695435, 0.00188116787, -0.00621523103, -0.00159991474, -0.0212313756, -0.0145624522, -0.00614883658, 0.0105788028, 0.00336028216, -0.0164362434, -0.030423278, 0.0523776151, 0.0248756781, 0.00169673958, -0.0214084275, 0.00639965897, -0.00258199498, -0.0439381786, -0.00595703162, -0.010084535, -0.0198149681, -0.000728030398, 0.00513448147, -0.0353216939, -0.0270150453, 0.00462914817, -5.83830588e-05, 0.0311905, 0.00652875891, 0.00782713387, 0.0382725447, 0.0102763399, -0.0116927493, -0.0192100424, 0.0245215762, -0.017867405, -0.0242264904, -0.0183690507, -0.0199330021, 0.0347610302, -0.000703132595, 0.0159050897, -0.0138837565, 0.00471029663, 0.0170706753, 0.00237912405, -0.0190034844, 0.0232379548, 0.02494945, 0.00875665154, -0.00280515314, 0.00718163466, -0.0107779847, -0.0314855836, 0.0124378391, -0.00545538682, 0.003784467, -0.00976731814, 0.0132050607, 0.0122534111, -0.0515218675, -0.00426766882, -0.0354102179, -0.00344327488, -0.027634725, -0.00352073461, 0.0187231526, 0.00196416047, -0.0384495966, 0.00588694867, 0.0180887189, -0.00140903157, -0.0316331275, 0.0142304813, 0.0142378584, -0.00603449112, -0.0256871618, -0.015167377, 0.00348938187, -0.0122386562, 0.0147690121, 0.00574678322, -0.0200805441, 0.0267199595, -0.010062404, 0.0207149778, 0.022485489, -0.0286822766, 0.0344069302, -0.0193575863, 0.0177936349, 0.00535948388, 0.0107337227, 0.0246838722, 0.0214231815, 0.0110361846, -0.00273322617, 0.0473906733, -0.0144813033, -0.0273248851, -0.0286527686, 0.0138247395, 0.00968617, 0.00515661296, 0.0214674454, 0.00704146922, 0.00249715801, 0.00202871044, 0.00482095359, -0.0140165444, -0.000710509717, -0.0293904804, 0.0213346556, -0.0080779558, -0.00910337642, 0.0442627706, -0.0058058, -0.00565456925, 0.0196379162, -0.0263363495, 0.0310429577, 0.0133821117, 0.0153149189, -0.010003387, 0.0259970017, -6.54143805e-05, 0.00585744, 0.0342003703, -0.000977469608, -0.0209215377, -0.0257609338, -0.0283429287, -0.0279003, -0.0216002334, 0.032400351, -0.0242117364, 0.0195346363, 0.00517136743, 0.00437832577, -0.0243740343, -0.00613039406, 0.00747303152, 0.00663941586, 0.0190477464, 0.00266683195, 0.00364430156, 0.00572096324, 0.0308363978, -0.0120173423, 0.0202723499, -0.0205084179, 0.00621154252, -0.00325331371, 0.0127771869, -0.00281621888, 0.000103164537, 0.00725909462, -0.0184870847, -0.0512562916, 0.0300544221, 0.022633031, 0.0272068512, 0.0363249816, 0.0111911045, -0.00485046208, -0.0244478043, -0.0157870557, 0.0442627706, -0.0022758441, 0.0218953174, 0.0028789246, -0.000146505161, 0.00739926, 0.0241232105, -0.0122829191, 0.00646605343, -0.0321347713, 0.00699351821, 0.00563612627, 0.00037992213, -0.012474725, 0.0270888172, -0.000758461072, 0.00534841837, 0.0115747154, -0.0110435616, -0.00375495851, 0.0171296932, 0.0294052344, 0.0353807099, -0.0599022843, -0.0425807871, -0.0146657322, 0.0035262676, 0.0137140825, 0.00754680252, -0.00369040854, 0.00784926489, 0.0389217325, 0.0205674358, -0.0166870654, -0.00819599, 0.00765008247, -0.00241600955, -0.000528847915, -0.00846156664, -0.0121870171, 0.0187231526, -0.0109624136, 0.00111025793, -0.00285679311, 0.00742508, -0.0165542774, -0.00953862723, 0.0282101408, -0.000822088798, -0.0325774, -0.020154316, 0.00734024309, 0.00770909945, -0.00218178588, -0.0254510939, 0.00943534728, -0.0390692726, 0.0444693305, -0.00947223324, -0.00630006799, -0.0323413312, 0.0412233956, 0.00491316756, -0.00568407774, -0.00278302189, -0.00921403337, 0.0115747154, 0.0123935761, -0.0300544221, -0.010091912, 0.017705109, 0.0287265386, -0.00775336241, -0.00636277348, 0.0241379645, 0.00553653529, 0.0432594828, 0.0281068608, -0.0242117364, -0.0185018387, -0.0186198726, -0.00655089039, 0.027531445, -0.0135665396, -0.00797467586, 0.0422266833, 0.000910614326, -0.0133083407, 0.00118310703, -0.00473611662, 0.0193870943, -0.0119952112, -0.0073144231, -0.0349971, -0.0170411672, -0.00596809713, -0.0132198147, -0.00824763, 0.00821074471, 0.0173805151, 0.000239065077, 0.00834353268, 0.0234740227, -0.0312790275, -0.0266019255, -0.0751877, -0.0113976635, -0.0123788221, 0.0266019255, 0.0322528072, -0.0203903839, -0.0202428419, 0.00226293434, -0.0342298783, -0.0269117653, 0.0148575371, 0.010069781, -0.012607513, 0.0251560081, -0.00320167397, -0.040043056, 0.012578004, 0.00135370309, -0.0265429094, -0.025185518, 0.000854363723, 0.0124525931, 0.0330790468, 0.00116374204, 0.0136181796, -0.00529309, 0.0253183059, -0.0053004669, 0.00177419942, -0.0212018676, -0.0149755711, -0.0156395137, 0.0272953771, -0.0230018869, 0.0237691086, 0.0165100135, -0.00810008775, 0.0233854987, -0.0103353569, -0.0311314836, 0.00970092416, 0.00909599941, 0.0169231333, 0.0472136252, -0.017601829, 0.012659153, 0.0306593478, -0.0193575863, 0.0190772545, 0.00443734275, -0.0108296247, 0.00840255, -0.022795327, -0.00770172244, -0.00287339161, -0.0145772062, 0.00738450605, 0.0253183059, 0.00738819456, -0.0277527589, -0.0192985684, -0.0186788905, -0.00333446218, -0.00186549139, -0.00379184424, 0.0182952788, 0.0171887092, 0.0123861991, 0.0206116978, 0.0311905, -0.0173362531, -0.0172477271, -0.0190329924, -0.0397479683, 0.0018295279, -0.00546645233, 0.0359708779, 0.0274871811, -0.0165690314, -0.0182805248, 0.0347315222, 0.0140681844, -0.00207850593, -0.0341118425, -0.00898534246, 0.0292134304, 0.00551809231, 0.0194608662, 0.022662539, 0.00992223807, 0.0148427831, -0.0192247983, -0.01266653, 0.00570620922, 0.0065545789, 0.0119361943, -0.0078640189, 0.00178895367, -0.0205526799, -0.0417545475, 0.0215854794, -0.00877140649, 0.0105345398, -0.00587588316, -0.0104829, 0.0085722236, 0.00820336677, -0.00654720189, -0.0148354061, -0.0153444279, -0.0194756202, 0.0202723499, -0.00527095841, 0.00595703162, -0.00840255, 0.00939846225, 0.0035133576, 0.00308179553, 0.0124083301, -0.0104755228, -0.00170596107, 0.0182215087, -0.0103501119, -0.00624842802, 0.0196084082, -0.0131829288, 0.0021596544, 0.0254658479, 0.0277527589, 0.0082845157, 0.0173657611, 0.00338979065, 0.0374758132, -0.0167608373, -0.0169673953, -0.0141345784, -0.00869763456, 0.0113755325, 0.0118181603, 0.00552546931, 0.00181200728, -0.0214231815, -0.0212608855, -0.0308068898, -0.000805951306, 0.0130206319, 0.0220281072, -0.0286822766, 0.0313970596, -0.00993699208, -0.0215264615, -0.00914026238, -0.00567670073, 0.00838041864, -0.00168936246, 0.00812959578, -0.0036221703, 0.00586112868, 0.0102837179, 0.0786697045, 0.00941321626, 0.00272216043, -0.0272658672, 0.0194313563, 0.00684597529, 0.0128288269, 0.0228543449, 0.0217330214, 0.0143632693, -0.00300064706, -0.0169526413, -0.00715581467, 0.0363544896, 0.00990748405, 0.00220576138, 0.00424184883, 0.00793041382, 0.00691605825, -0.00483570807, -0.0189444665, 0.0112648755, 0.00155011914, 0.000645037682, 0.0158313178, 0.00869025756, 0.0181329828, -0.0487185568, -0.0155804958, -0.000278947671, 0.0104755228, -0.0108222477, 0.0116779944, -0.0109181507, 0.0128140729, 0.00856484659, 0.022633031, 0.0117591433, 0.00759106549, 0.020154316, 0.00452955719, -0.000440091826, -0.0274724271, 0.0194461122, -0.0027903989, -0.0256871618, -0.010217323, -0.00801156182, -0.0111911045, 0.0206854697, -0.0248166602, -0.0414889716, 0.0234887786, 0.00231457409, 0.00167368609, -0.00408324087, 0.00960502122, -0.0304822959, 0.0260855276, -0.0316331275, -0.00665417034, -0.00150401215, -0.00513079297, -0.0160378776, 0.0258642137, -0.0138837565, -0.0401020721, -0.0159641057, -0.00390987843, 0.00125042337, 0.00176958879, 0.0131681748, 0.0389217325, 0.0144886812, -0.0256871618, 0.0158165637, 0.0150419651, 0.0176460911, -0.0145108122, -0.0199625101, 0.0272068512, 0.0188264325, 9.22717445e-05, 0.019903494, -0.00417176634, -0.00839517266, -0.0134706367, 0.0143927783, -0.0165985394, 0.0155952498, -0.0242412444, -0.00739557156, -0.00179079804, 0.0218658093, -0.00725540612, 0.00333261793, 0.0128952209, 0.0303642619, -0.0131903058, -0.000676851545, -0.00728491461, -0.0217772834, 0.00338610215, -0.0223969631, 0.00355208758, -0.0339938104, -0.0106820827, -0.00607506558, -0.0018230729, 0.00289736735, 0.0202280879, -0.00863124058, 0.0022850656, -0.010106666, 0.00281437463, 0.00622629654, 0.017734617, -0.00474718213, 0.000352718955, -0.0245068222, -0.0406037159, 0.010003387, 0.00609350856, -0.0136845736, -0.0138099845, 0.00333815068, 0.0103279799, 0.0131976837, 0.0296265483, 0.0106378198, -0.0210985877, -0.0169526413, 0.0202428419, 0.0114861894, -0.0214084275, 0.00489472505, -0.0141714644, 0.0313085355, -0.0192395523, 0.00232563983, 0.0289921165, 0.0323708393, -0.00133618247, -0.0320167392, 0.00855009258, -0.00982633512, 0.0173805151, -0.0104533918, 0.0197854601, 0.00149018, -0.0157870557, -0.0304822959, -0.00720745465, -0.0135370316, 0.0145108122, -0.03021672, 0.0120247202, -0.0050422675, -0.0127771869, -0.0335806906, 0.0117370114, 3.41768537e-05, 0.0568038896, 0.0171887092, -7.31373148e-05, -0.0108370017, 0.00104939658, -0.0402496159, 0.00202317745, -0.00489103654, 0.00666154735, -0.0105861798, 0.0234002527, -0.0279003, 0.000100398109, -0.00184889289, 0.0382430367, -0.0153591819, 0.00381766423, 0.0292576924, -0.0124009531, 0.00658039888, 0.012415708, 0.0186346266, -0.0226920471, -0.0057984232, -0.0430234149, 0.0101951919, 0.00570620922, 0.020183824, -0.00776811643, -0.0104091289, -0.0138173625, 0.00287708, 0.0294052344, 0.0147763891, -0.000611840631, -0.00972305611, -0.0294199903, -0.00548858382, -0.030305244, -0.0106378198, -0.0215412155, -0.0155067248, -0.00383241847, -0.025259288, -0.0222051572, -0.00787877385, 0.00628900202, -0.0113091385, 0.00305966404, 0.00190883211, -0.00587588316, -0.00673900731, -0.0178083889, 0.00199920195, 0.0112132356, -0.00409430638, 0.0213641655, 0.0167608373, 0.0290068705, 0.00335659366, 0.00711155217, -0.0275609531, -0.00772385392, 0.0138099845, 0.00826976169, -0.00422709482, -0.00393938692, 0.0165985394, -0.0426102951, -0.0018922335, 0.0274724271, 0.0104091289, -0.00181200728, -0.00250822376, 0.0291101504, -0.0294052344, -0.0239904225, 0.00150677853, 0.00532259839, -0.0241822284, 0.00855009258, -0.00758368848, 0.0231641848, -0.000188808393, 0.00701196073, -0.00894108, -0.0189149585, 0.0199920181, -0.00503857899, -0.015182131, 0.00348384911, 0.00266314344, 0.0224559791, 0.0208625197, -0.00461439416, 0.00637015048, -0.00745827705, -0.0191952884, 0.0229428709, 0.0236068126, -0.0150419651, 0.0301724561, 0.00448898273, -0.00739557156, -0.025082238, -0.0329315029, -0.0156395137, -0.00391356694, 0.0138763795, 0.0368266255, -0.00604186859, 0.00972305611, -0.0167460814, -0.0133526027, 0.0194018483, 0.00413119188, -0.00835828669, -0.00795254484, 0.0140460534, 0.06022688, -0.0103427349, 0.0288150646, -0.0160673857, -0.00802631583, -0.00909599941, 0.00619678805, -0.0118550463, -0.00660990737, -0.00852796063, -0.012555873, 0.0138099845, -0.0144960582, 0.0219543353, 0.0218805633, 0.00427135732, -0.0104607688, 0.000126218059, 0.0079894308, -0.022603523, 0.0278560389, 0.0113534015, -0.00311868126, -0.025082238, -0.0231789388, 0.0246986263, 0.010010764, 0.0135960486, 0.0022555571, -0.0181919988, -0.0246986263, -0.0178378969, 0.0143706463, 0.0121796392, -0.0133747347, 0.00649187341, -0.0109402817, 0.00623367401, -0.0124599701, 0.0090000974, -0.0156690218, -0.0184723306, 0.0178821608, 0.0118402913, -0.0210248176, -0.00711155217, -0.00139243307, -0.0196231622, -0.00747672, 0.0105566708, 0.0143190073, -0.0057578492, -0.00936157629, -0.0073144231, -0.0122386562, -0.0112279896, 0.00897058845, 0.0101878149, -0.00100328948, -0.0198592301, 0.0308068898, -0.00859435461, 0.00466972264, 0.0138911335, 0.0070672892, 0.00548858382, 0.0168346073, -0.00540374685, 0.0254806019, -0.030305244, -0.0272511132, -0.0047914451, -0.005005382, 0.0145919602, -0.00456644269, -0.00218363013, 0.0137730995, -0.0141050704, 0.00391356694, -0.00328097795, 0.00539637, 0.035115134, -0.0132640777, 0.0237986166, -0.0216444954, 0.0163329635, -0.00272769341, 0.0344659463, 0.0498693921, -0.00303753279, -0.0254510939, -0.00511603896, -0.00248609227, 0.010114044, -0.0247576442, 0.00720745465, 0.0102837179, -0.0037807785, -0.0220428612, -0.0161264036, -0.0140091674, -0.0035465546, -0.0135075226, -0.0207297318, 0.0199625101, -0.0157870557, 0.0257756878, -0.00324409246, -0.0197116882, 0.00542956684, 0.0159198437, 0.0359118618, 0.0247871522, 0.0237248465, 0.0254953578, -0.0148501601, -0.0316331275, -0.0135075226, -0.0158608276, 0.0241674744, -0.00852796063, 0.00969354715, 0.00818123575, 0.0166723114, 0.01266653, 1.19229958e-06, -0.0248019062, 0.0272953771, -0.0209805537, 0.00894108, -0.020287104, -0.0398069881, -0.0169378873, 0.0237691086, 0.0117296344, 0.00694925524, 0.0153739359, 0.012629644, -0.00992961507, 0.0055476008, -0.0325478911, 0.00270187343, -0.0105271628, -9.93030699e-05, -0.0181772448, -0.00353917759, 0.00344880763, -0.0238871425, -0.0213936735, 0.00620047655, 0.00585744, -0.00875665154, -0.020124808, 0.0119288173, 0.025096992, 0.0117886513, 0.0155952498, 0.0103501119, 0.0116558634, 0.00385086122, -0.00653982442, -0.000299465319, -0.00549596082, -0.00306519703, 0.00466972264, 0.0190329924, 0.00661359588, 0.012673907, -0.00267052068, 0.000240217749, -0.0192838144, -0.00175114593, -0.00431930879, 0.0150345881, -0.0109992987, -0.0260265097, 0.00586481718, 0.022780573, -0.0014957129, 0.00299695856, -0.0281658769, 0.00726278313, -0.00597178563, 0.0255986359, 0.0142452354, 0.0259379838, 0.00498325052, 0.00151046715, 0.00335659366, -0.032754451, -0.0241674744, 0.0109771676, -0.0090812454, 0.0167608373, 0.0164067335, -0.00733286608, -0.00422709482, -0.00487628207, -0.00901485141, 0.00612670556, 0.0286232587, 0.00724434061, 0.032724943, -0.00443734275, 0.0254953578, -0.00779024791, 0.0204494, 0.00447054, 0.00025082237, 0.00197522622, -0.00297298282, -0.00688654976, -0.0142157273, -0.00606031111, -0.00787139591, 0.00983371306, -0.0104386369, 0.0112501215, 0.00584637467, -0.00627424801, -0.00754680252, 0.00669474434, 0.00956813619, -0.000569422147, 0.00468078814, 0.00208035042, -0.00130482961, 0.010136175, -0.00315925549, 0.00720007764, -0.0239609145, 0.00142931868, -0.0104460139, -0.00146528217, -0.0153591819, -0.000937817502, -0.0029029, 0.00191252062, 0.0274871811, 0.0223084372, -0.00616727956, 0.0119730802, -0.00182122865, -0.000670396548, 0.0119730802, 0.027531445, 0.0103722429, 0.00972305611, -0.00193465198, -0.0188854504, -0.000386607659, -0.00863124058, -0.0116042234, 0.00808533281, 0.00602342561, 0.00306888553, -0.00522669591, -0.00421971781, -0.00445947424, 0.00634801947, 0.0370036773, -0.00267974194, 0.0331675708, -0.00497218454, 0.0021227689, -0.0116853723, 0.000973781, -0.000997756608, -0.00385454972, 0.0169673953, -4.98892723e-06, -0.0194166023, -0.0018129294, 0.00604555709, 0.0173510071, 0.00464390265, -0.00010806341, -0.0136403106, 0.0187083986, 0.000251052901, -0.00147634791, -0.0193870943, 0.0179264229, 0.00871238858, 0.00843205769, -0.00458857417, 0.00251006801, 0.0188854504, -0.0146583552, 0.0105714258, 0.00202686619, 0.0119509483, 0.0102542089, 0.00620416505, 0.0160673857, -0.00288076885, 0.00368856429, 0.000373467134, -0.0157870557, 0.0161559116, 0.010128798, -0.014990326, -0.00750991702, -0.0221018773, -0.00139151094, 0.0429348908, 0.00716688065, 0.0185165927, -0.00513079297, 0.0196526702, 0.027811775, -0.00859435461, -0.0139501505, -0.0295380242, -0.0146731092, -0.0067722043, -0.00319429673, -0.0248019062, 0.00723696314, -0.0107042138, 0.00540374685, 0.0165542774, 0.0134558827, -0.00487259356, -0.0365020335, -0.0144517953, 0.00735499756, -0.0398955122, -0.0257756878, -0.0121722622, -0.015152622, 0.010114044, -0.00433775177, -0.0136329336, 0.0168493614, -0.00383610697, -0.030275736, -0.00723327463, -0.0203756299, -0.00339347916, 0.0045406227, -0.00748409703, 0.00199366896, 0.02505273, 0.00329388794, -0.00445947424, -0.0184870847, -0.00717794616, 0.00200657896, 0.0179411769, 0.0114050414, -0.00914763939, 0.0145255663, -0.00689761527, -0.00284388312, -0.0148280291, -0.0213789195, -0.0118919313, 0.00493161054, -0.000846986601, 0.00420127483, 0.00562137226, -0.0221313853, -0.0177788809, -0.0106009338, 0.0122681651, -0.0183247887, -0.00190698775, -0.000209210761, 0.0108001167, 0.0214822, 0.00334737217, -0.0101730609, 0.00307257404, -0.0080705788, 0.000820244488, 0.00510497298, -0.0161411576, -0.0104902769, -0.00321089523, 0.00990010705, -0.0040758634, 0.0281216148, 0.0111911045, -0.00160452549, 0.00746196555, 0.00167829683, -0.0189444665, 0.0117001263, 0.00164233323, -0.00644023344, -0.00888944, -0.0192985684, -0.00251744525, 0.00436357176, 0.0312495176, 0.0115452064, -0.000772293191, 0.00244367379, 0.000696677598, -0.00129376398, 0.0215854794, -0.00474718213, -0.00637383945, -0.0268822573, -0.00639597047, -0.00458488567, 0.012489479, 0.00379553274, -0.00444840873, -0.00272953766, -0.00270925043, -0.000560661778, -0.00599022862, -0.0141198244, -0.012474725, 0.0131681748, -0.0120394742, -0.00182399503, 0.0142673673, 0.0179411769, 0.0185461, -0.00654720189, -0.00992961507, -0.00832877867, 0.0124083301, -0.0147247491, -0.0060566226, -0.0106083108, -0.00670581, -0.00105124083, -0.000775520632, -0.0116263554, -0.033049535, -0.0206707139, 0.00812959578, 0.00798205286, 0.0179411769, -0.000623367378, 0.00768696796, -0.0168641154, -0.00600867113, -0.000918913574, -0.00925829634, 0.00745458854, -0.00106415083, -0.0197707042, 0.00419758633, -0.0183838047, -0.00749516301, 0.0195346363, 0.0057652262, -0.00865337159, -8.86840371e-06, 0.000285863731, -0.0165247675, 0.00542956684, -0.00717794616, 0.00810008775, 0.0167018194, -0.0112279896, -0.0168493614, -0.00352442334, 0.000595242076, -0.015093605, 0.0114640584, -0.00509759597, -0.00563981477, 0.0215412155, -0.00586112868, -0.012482102, -0.00802631583, -0.0221461412, -0.00444840873, -0.00114161067, -0.0129247298, -0.000814250612, 2.43646973e-05, -0.0171001852, 0.000972858863, -0.0223822091, -0.00261334796, -0.0080705788, 0.00788615085, 0.000263962895, 0.0011259343, 0.0077754939, -0.0109845446, -0.0249937121, 0.0173214991, -0.00482095359, 0.0122460341, -0.00596440863, -0.0115968464, -0.00631851098, -0.0261445437, -0.000567577838, 0.0106673278, -0.0105492938, 0.022588769, 0.00308732828, -0.0242855083, 0.00804107077, -0.010032895, 0.00866812654, 0.00902960543, -0.00503120199, -0.00894845743, 0.0166575573, -0.0072701606, 0.0297445823, 0.00833615568, 0.0161116496, 0.00930993631, -0.0187969245, -0.00234408258, 0.00617096806, 0.00131589535, -0.00756155699, 0.0133378487, -0.0118993083, 0.00187286851, -0.0157723017, 0.00175483455, 0.00960502122, 0.00809271, 0.0104017518, 0.00613408256, -0.000554206781, -0.0122755421, 0.00114437705, 0.00456275418, 0.00048274087, 0.0101730609, -0.00678327, 0.00584637467, 0.0198444761, 0.0246396102, -0.00826976169, -0.00768696796, 0.00561768375, 0.0156837758, 0.00129560824, 3.0373023e-05, -0.00312052551, -0.000948883186, -0.00954600424, 0.00911813136, -0.00102634309, -0.00638490496, -0.0147616342, -0.0137288366, -0.0240051765, -0.0328724869, -0.00868288055, 0.0246248562, 0.0306003299, -0.0238576345, 0.0109697906, 0.00784926489, 0.0205821898, 0.0207297318, 0.0209658, 0.00398733793, 0.00301540131, -0.00986322109, -0.00395782944, -0.00819599, -0.0240641944, -0.00431193179, -0.000350874674, -0.00347093912, 0.0278560389, 0.0182067528, 0.010158306, 0.00255064224, -0.00386192696, -0.0106525738, -0.0063111335, -0.0108222477, -0.0181477368, 0.00846894365, -0.00538161537, 0.0177788809, -0.00293794158, 0.017454287, -0.00122921413, 0.00560292928, -0.0106894597, -0.00306888553, -0.00303753279, -0.00077367638, 0.00938370731, -0.0050016935, 0.0196674261, -0.020331366, -0.0145698292, -0.0374758132, -0.00774598494, 0.0103058489, 0.00427135732, 0.00798205286, -0.01256325, -0.0118034063, 0.00661359588, 0.00712630618, -0.00916239433, 0.0169969052, -0.0185756106, 0.00215781014, 0.0380659848, 0.00710786367, 0.00794516783, 0.0233854987, 0.000297390507, -0.0135296537, -0.00176866667, -0.00273875915, 0.00963453, 0.00160729187, -0.022780573, -0.0131239118, 0.0146657322, -0.00386192696, 0.00408692937, -0.0080705788, -0.000185119818, 0.0246986263, 0.0229428709, 0.0107927397, 0.00421234034, 0.00221129437, -0.00294347433, 0.00491685653, -0.0128509579, -0.000747856451, -0.0266166814, 0.010084535, -0.0122460341, 0.0208772738, 0.0264543835, -0.000206098528, -0.0131017808, 0.0196231622, -0.00185995863, -0.0123861991, 0.0264986455, 0.0144739263, 0.0116927493, -0.00619678805, -0.000257968961, 0.00274429191, -0.00566563476, 0.00372360577, 0.0127845639, 0.0166575573, -0.00345249614, 0.00866074953, -0.00415701186, -0.0165985394, -0.00446316274, 0.00455168821, 0.00762795098, 0.0129542379, -0.0133599797, 0.00361848157, -0.017631337, -0.0153149189, -0.00383610697, -0.0110878246, -0.00635170797, 0.0249789581, 0.010143552, -0.0176460911, -0.0110140536, 0.0147247491, 0.0187379066, 0.0164362434, -0.00470660813, -0.022780573, 0.0220133513, 0.0104460139, 0.0162001755, 0.0210395716, 0.00669843284, 0.0121870171, 0.00856484659, 0.00897796545, -0.000164256388, -0.0210248176, -0.00423447182, -0.014946063, 0.00122275914, -0.0232969727, -0.0141272014, -0.00137122383, 0.0022850656, -0.00349122612, -0.00569514325, -0.010084535, 0.017734617, -0.0107927397, -0.0113386465, -0.00327360095, -0.0148944231, 0.0055070268, -0.00298404857, 0.00285863737, -0.0393053405, -0.00425660331, 0.0129247298, 0.00743245706, 0.0231346749, -0.0022850656, 0.000478130154, 0.00820336677, -0.00707097771, 0.0310724657, 0.0222641751, 0.00787139591, 0.0133747347, 0.0212608855, 0.00660253037, 0.0195789, -0.00245842827, -0.00649556192, -0.0140608074, -0.00956813619, -0.0160231236, 0.0144813033, 0.00894108, -0.0191510264, -0.00859435461, -0.0068496638, -0.0096640382, 0.00451111421, 0.00197153771, 0.0305118039, -0.00480988808, 0.00133341597, 0.00410906086, 0.0166280475, 0.00243998528, -0.0209510457, 0.00582424318, 0.00953125, -0.0160673857, 0.0285789967, -0.0114566805, -0.0050828415, 0.0209953077, -0.0158608276, 0.00714106066, 0.0083656637, -0.00223342562, 0.0160673857, -0.000980236, 0.00185165927, 0.00231457409, 0.00249715801, -0.00503120199, -0.0160821415, -0.0188264325, -0.000306381378, 0.00672794133, 0.0127993179, -0.0211133417, 0.00891894847, 0.00158977124, -0.0114861894, -0.00063766056, 0.015241148, -0.0065176934, -0.00227031135, 0.0370626934, 0.0240199305, 0.0209067836, -0.0117591433, -0.00344880763, -0.0170116592, -0.035203658, -0.0129911238, 0.020198578, 0.00413488084, -0.0262330696, 0.00224817987, -0.00798205286, -0.0448234342, -0.00317585398, 0.00552915782, 0.00294900732, -0.00104294159, 3.58194193e-05, -0.000493806554, 0.0132714547, -0.00675745, -0.0129468609, 0.00893370248, -0.0111984815, -0.00509759597, 0.00136661308, -5.772027e-05, -0.0121132452, -0.0146509772, -0.0181034748, 0.00755418, 0.00277933315, 0.0124452161, 0.012651776, -0.00149755715, -0.00432299729, -0.000454385037, -0.0279298089, -0.0214674454, -0.00324593671, -0.00172348169, 0.0331970789, 0.0194461122, -0.0201100521, -0.00854271464, 0.00343774189, -0.00254142075, 0.0118771773, -0.00489103654, -0.00549227232, -0.0245805923, 0.0289773624, -0.00188301213, 0.0055476008, -0.00962715317, 0.015093605, 0.00187010213, 0.0103648659, -0.0145919602, 0.022618277, 0.0170411672, -0.00380659848, -0.0159641057, -0.00787877385, -0.00341929914, -0.0130501408, 0.0114271725, -0.0148280291, 0.0245510843, 0.0252740439, -0.0123419361, -0.00696769822, 0.0140312985, 0.00792303588, 0.00515661296, 0.00535948388, -0.00458857417, 0.02505273, 0.00889681745, -0.0112722525, -0.000802262744, -0.0191215184, -0.0268822573, -0.00561399478, 0.00410537235, 0.00648818491, 0.0116484864, -0.00574678322, -0.00134355959, 0.0186936446, 0.00171887095, 0.0313380435, 0.00670581, -0.0112943845, -0.00129929685, 0.0268822573, -0.00843943562, -0.0200952981, -0.0174100231, 0.000849753036, -0.0423152111, -0.0291691665, 0.0172919892, 0.00112040143, -0.0220133513, 0.0308363978, 0.0218215473, 0.0123935761, -0.0136476886, -0.00389512395, 0.015211639, 0.017439533, -0.0292134304, -1.92064708e-05, 0.0113386465, 0.0169231333, 0.0155804958, 0.0105788028, -0.0110288076, -0.0107706077, -0.0120173423, -0.0108001167, 0.00764270546, 0.0180444568, 0.0185018387, 0.00419389782, -0.0020139562, -0.0122165252, 0.0114714354, -0.0303347539, -0.0131607978, -0.000952571747, 0.00402053539, 0.00450742571, -0.0133968657, 0.00367196579, 0.00568038924, -0.00973043311, -0.0087935375, 0.00135923596, -0.0059349, -0.0109992987, 0.00599760562, -0.01261489, -0.0156247588, 0.00592752313, 0.00871238858, 0.0204641558, 0.00215227739, 0.0195936542, -0.00184428215, -0.00588694867, 0.0132640777, -0.00339347916, 0.0228395909, 0.0222051572, 0.00298404857, 0.0191362724, 0.0249642041, -0.0252887979, -0.00732917758, 0.0124525931, 0.0235773027, 0.0310429577, 0.00102542085, -0.0132124377, 0.00716688065, -0.00618572254, -0.0270298, -0.0347020142, -0.0204346459, 0.0112058586, 0.0045406227, 0.0187969245, 0.00113884429, 0.00622998504, 0.00720376614, 0.001888545, -0.025067484, 0.0181477368, 0.0168641154, 0.0113976635, 0.0203756299, -0.0321642831, 0.00859435461, 0.0162887, -0.0167755913, -0.00240494404, -0.015086228, -0.0240346845, 1.85004556e-05, 0.00670949835, -0.00550333783, 0.000468217127, -0.0122386562, 0.00225924561, 0.00219469587, -0.0138468705, 0.0388036966, -0.00278671039, 0.022500243, 0.0350856259, 0.0132788317, 0.00578735769, -0.0182067528, 0.0247133821, 0.0233117267, -0.00863124058, 0.00304122129, -0.0118771773, -0.0210248176, -0.00772385392, -0.00332155218, -0.0168198533, -0.0118993083, -0.010062404, 0.00154919701, -0.00294163, 0.0240346845, -0.00235330407, 0.0105788028, -0.00748409703, -0.0103574889, 0.0132419458, -0.0115820924, 0.00413856935, 0.00205268618, -0.0174247772, 0.0081517268, -0.0300101601, -0.0161264036, -0.0130722718, 0.010055026, -0.0193133224, -0.00774598494, 0.0180887189, 0.00593121164, 0.00123935763, 0.00574309472, -0.00232932833, 0.0182805248, 0.00684597529, -0.0160968956, -0.00355208758, -0.0214526895, -0.00723327463, -0.0113902865, 0.000740940392, -0.00587588316, -0.0186493807, 0.00806320179, 0.017690355, 0.0170116592, 0.00473980512, 0.0145329433, 0.00293978583, -0.00263363495, -0.00229981984, -0.0245363303, -0.0024012553, -0.0040352894, 0.010032895, 0.00645867642, 0.0169821512, -0.0158018097, -0.00864599459, 0.0275757071, 0.00292134308, 0.00945747923, -0.0141345784, -0.00345065189, 0.0143411383, -0.0274429191, 0.00919927936, -0.0160083696, -0.0197411962, 0.00410537235, -0.0158165637, 0.00198998046, 0.00646605343, -6.39735372e-05, 0.00683122128, 0.017852651, 0.00194018485, 0.00495005352, 0.00618941104, 0.0214969534, -0.00263363495, -0.00582793169, 0.00465865666, 0.00455906568, 0.00741401454, 0.00885993149, 0.0220281072, 0.00484677358, 0.0244182963, 0.0188559406, -0.000550979283, 0.00468816515, 0.0212166216, 0.003150034, -0.0183838047, -0.0205379259, -0.0148354061, -0.00078059244, 0.0189002044, -0.00852058362, 0.00282912888, 0.00739557156, -0.0313675515, -0.0212313756, -0.00545538682, 0.0161411576, 0.00693450123, 0.00789352786, -0.0145550752, -0.0136771966, -0.0105419168, -0.00949436426, -0.00232010707, 0.0121353772, -0.0109033966, 0.00624842802, 0.0245363303, 0.00463652518, 0.00328651094, 0.00245105103, -0.00314634549, 0.0112943845, 0.0135886716, 0.00851320662, -0.00839517266, -0.00444472, 0.0127919409, -0.0108960187, -0.0846304223, -0.00965666119, 0.0385971367, 0.00684597529, 0.0109402817, 0.00981158111, -0.00191989774, -0.0172034651, 0.0108886417, 0.0116853723, 0.00646236492, 0.0107632307, 0.00260228221, 0.0219985973, -0.0106820827, -0.00746934302, 0.0264396295, 0.00899271946, -0.012555873, -0.00816648174, 0.00832140166, -0.0109255277, 0.0103058489, -0.012673907, 0.00631851098, 0.0286822766, 0.0212756395, 0.000880183652, -0.00748040853, -0.00438939175, 0.00990010705, 0.0147395032, 0.0314855836, 0.00423078332, -0.00880829152, -0.017454287, -0.0193575863, -0.0141935954, 0.00880829152, -0.00691236975, 0.0102320779, -0.010209946, -0.0036553673, -0.0196674261, -0.0143042523, 0.0264691375, -0.00672056433, -0.000818400236, -0.00276089041, 0.0173214991, -0.00146343792, 0.0202280879, -0.0110509386, -0.00942797, -0.0383610688, -0.00184428215, -0.00469185365, -0.0132714547, 0.0263511036, 0.0158165637, -0.010032895, -0.0391578, -0.00129284186, 0.0290511325, 0.00613039406, 0.00110564718, -0.0291986763, -0.0034082334, 0.017542813, -0.014997703, -0.0189887285, -0.0163772255, 0.00651031593, 0.0050828415, 0.00644023344, -0.000199182483, -0.0228248369, 0.00474718213, 0.000299004256, 0.0072775376, 0.0112870065, 0.0111615956, 0.0037807785, -0.017867405, 0.00396889541, -0.0199182481, -0.0142821213, 0.00877140649, 0.00460332818, 0.00360003882, 0.0271625873, 0.0109919216, 0.00373282703, -0.00526358141, 0.0179116689, 0.0244478043, -0.025244534, -0.00191805349, -0.00166354259, 0.0206116978, 0.0116706174, 0.0114566805, 0.0215264615, -0.0148501601, 0.0292724464, -0.00703778071, -0.00961977616, -0.00120892702, -0.000908308954, 0.020316612, 0.0281953868, 0.0045037372, -0.0111247106, -0.0118402913, 0.0050016935, 0.0174247772, -0.00798205286, -0.00276642316, 0.00437832577, 0.00358344032, -0.0178969149, -0.0280183349, 0.00557710929, 0.000192842752, 0.00173270307, 0.00379553274, 0.000239065077, -0.00266683195, -0.0145476982, -0.0198739842, 0.0160083696, 0.000831771293, 0.00800418481, -0.0172182191, 0.010106666, -0.0168493614, 0.000205983262, 0.0141124474, 0.00170780532, 0.00672794133, -2.83846548e-05, -0.00210801442, 0.000741862517, -0.0123271821, 0.00969354715, -0.00698982971, -0.0198887382, 0.0131460438, -0.00173639168, -0.01256325, -0.0259527396, -0.0266609434, -0.0108665107, 0.00165339897, -0.0208182577, -0.015012457, 0.00986322109, 0.000272031612, 0.0068127783, -0.00682384428, 0.01500508, -0.00335106067, -0.00863124058, 0.0212608855, -0.00852796063, 0.0217920374, -0.0032957322, -0.00765745947, 0.0174837951, -0.0149608171, 0.00616727956, 0.0190625, -0.00270556193, -0.00502013601, 0.000968248118, -0.00156026275, 0.00273507042, 0.00438201427, 0.00341561064, 0.0180887189, 0.0303347539, -0.00386930397, -0.00685704127, 0.00108812645, -0.00288076885, -0.0135296537, 0.00423816033, -0.00832877867, 0.00538899237, 0.000287016417, 0.0259232298, 0.0219690893, -0.0120763602, 0.00898534246, -0.0240494404, -0.00510497298, -0.00163218973, -0.00226108986, 0.00356868608, 0.00978207309, -0.00247871527, -0.00206006318, 0.00708942069, 0.00101158873, -0.00810746476, -0.0154624619, -0.00150954502, 0.0192838144, 0.00978945, -0.0206116978, 0.00542956684, -0.0240346845, 0.00724802911, 0.00810008775, -0.00391356694, 0.002502691, -0.0249789581, -0.00179633079, -0.00548489532, 0.00957551319, 0.0153591819, 0.012607513, 0.0244478043, 0.012637022, 0.0282986667, 0.00150862278, 0.00437463727, 0.0255101118, -0.0108443797, 0.00835091, -0.0035262676, -0.0112132356, 0.014946063, -0.000646420929, 0.0153296739, 0.010150929, -0.00599022862, 0.0281806309, -0.0143485153, 0.00997387804, 0.00707097771, 0.0205231719, -0.00519349845, 0.00305597554, 0.0105271628, 0.00645867642, 0.0108370017, -0.00343036489, -0.00237174681, -0.00458488567, -0.0258494597, 0.000786586374, 0.00590170315, 0.0149018, 0.00779762492, -0.0114050414, -0.0113829095, -0.0139722815, -0.00243260828, 0.014946063, -0.0153591819, -0.00155565201, -8.44335445e-05, -0.00915501639, 0.0148058971, -0.00310761551, 0.00575047173, -0.0332856067, -0.015152622, -0.00381766423, 0.00797467586, -0.0113681555, -0.000952571747, -0.00911813136, -0.003157411, 0.00153075426, -0.0168051, 0.00222236, -0.00998125505, -0.0247133821, -0.0119140632, -0.0168051, -0.00411643786, 0.0111025786, -0.0104607688, -0.012585382, -0.022662539, -0.0212313756, -0.000269495737, -0.0189739745, 0.0277527589, -0.0165690314, 0.000944272499, -0.0189444665, 0.0129689919, -0.017557567, 0.00287523586, -0.00930255931, 0.00124950113, -0.0107337227, 0.0122091481, 0.00625949353, -0.0120616052, 0.0078566419, -0.000465911784, -0.02006579, 0.000600774947, -0.0243297704, 0.00512341596, 0.00677589281, -0.0333151147, -0.000603541324, 0.00488365907, 0.000765838195, -0.00448529422, -0.000387529784, -0.0215707235, -0.0159641057, -0.00636646198, -0.00415332336, -0.0193280764, 0.00255801948, 0.00387668121, 0.0127698099, -0.0098853521, -0.00680909, -0.00375127, 0.0200805441, 0.0158755817, 0.0146657322, 0.00957551319, 0.00501275901, -0.00490947906, 0.00596809713, -0.00659146439, 0.00837304071, -0.00840255, -0.0331380628, 0.000487351557, 0.012600136, -0.010055026, 0.0182952788, -0.00194018485, 0.00276457891, -0.00274798041, -0.0212608855, -0.0085796006, 0.0153149189, 0.0189592205, -0.000793963496, -0.0178821608, 0.0164805055, -0.00508653047, -0.00357975182, 0.00779024791, -0.00176497805, -0.020198578, 0.00199182471, 0.00102081022, -0.00856484659, 0.00703409221, -0.0125189871, -0.0118624233, -0.010084535, -0.0016349561, -0.0101730609, 0.0233707447, 0.000267882, -0.0244182963, -0.00358528458, 0.0142747443, -0.0129394839, -0.00264285645, 0.0669843256, 0.045590654, 0.0241822284, -0.00565825775, 0.0180149488, -0.0237838626, -0.0115525834, 0.0431709588, 0.0119657032, 0.00266867643, -0.0204641558, 0.00117941841, 0.0108148707, 0.000675468356, -0.00350229186, -0.01256325, -0.01261489, 0.0154034449, 0.0132198147, 0.00996650103, -0.00986322109, -0.0108960187, 0.0129025979, -0.0190772545, -0.00265761069, 0.000127255465, 0.00420865184, -0.00862386357, -0.0239904225, 0.00730704609, -0.0122386562, -0.00152706564, 0.0156100048, -0.00721852062, -0.0261888076, -0.0243150163, -0.0209215377, -0.00385454972, 0.000604002387, -0.00570252072, 0.00942797, 0.0117443893, 0.00704515772, 0.0245805923, 0.00415701186, -0.00250453525, 0.000200219889, 0.00406479789, 0.00540374685, -0.0144591723, -0.006266871, 0.00183045, -0.0195641462, -0.0263658576, 0.00995174702, 0.00614514807, 0.0108443797, 0.0119657032, -0.00358344032, 0.0222051572, 0.001888545, 0.00332155218, -0.00507177599, -0.00802631583, 0.00634064199, -0.0028789246, -0.00729966909, 0.0117075033, -0.0207739938, -0.0136919506, 0.0110730706, -0.00822549872, -0.010003387, -0.00201948895, 0.0206707139, -0.0139427735, -0.000937356439, -0.000397903874, 0.00769434543, 0.00153997564, -0.00888206344, 0.00707097771, -0.00371622853, -0.0134189967, -0.00780500239, 0.00186918, -0.0264543835, -0.00685335277, 0.0104017518, 0.00788615085, 0.0085796006, 0.00883042347, 0.00119417277, 0.012622267, 0.000158377734, -0.0050496445, -0.0327839591, 0.0236510746, 0.0160378776, -0.00991486106, 0.025362568, 0.017867405, -0.0122534111, 0.0166428033, -0.00460332818, 0.00297667156, -0.00270187343, -0.0127181699, 0.0120320972, -0.0228690989, 0.0167903453, 0.00359819457, 0.0138763795, 0.0266461894, 0.00538161537, -0.00539637, -8.61049266e-05, -0.00433406327, 0.0103796199, -0.000109446621, 0.0116706174, -0.0134632597, 0.00321642822, 0.0196379162, -0.00281068613, -0.0137214595, -0.00307626277, 0.000823010923, 0.00300433557, -0.00362585881, -0.0113091385, -0.0280625969, -0.00139981019, -0.0047951336, 0.0152706569, 0.00776811643, -0.00768696796, -0.00271662767, -0.0171592012, 0.022751065, 0.00217994163, 0.00664679287, -0.00635170797, 0.0135222767, 0.00184151577, 0.00883042347, 0.0237838626, -0.0172919892, 0.0264248755, -0.00237912405, 0.00686441828, 0.0128730899, 0.00229059858, -0.0255396198, -0.00469185365, 0.00231272983, 0.00186180288, -0.00856484659, 0.0145772062, -0.00124581263, 0.003784467, -0.00147450366, 0.0194166023, -0.00362770306, 0.012474725, -0.0205969438, -0.0048320191, 0.00841730367, 0.0354102179, 0.00617465656, 0.0218510553, 0.0210100617, 0.0105197858, 0.0181919988, 0.00219838438, 0.000138205898, -0.00491685653, -0.0231199209, -0.0139280194, -0.0112648755, -0.00585375167, 0.00525251543, 0.0122165252, 0.0374463052, 0.00963453, -0.0293904804, -0.00813697278, 0.00896321144, 0.0188264325, 0.00624105101, -0.0148427831, 0.0109624136, -0.00876402855, -0.0113755325, -0.0207739938, -0.00396151794, 0.0259232298, -0.00419389782, -0.00982633512, -0.00618203403, 0.0115452064, -0.00539637, 0.0232822187, 0.0153001649, -0.00319982949, 0.0274429191, -0.0027940874, 0.0063037565, -0.00229244283, -0.00270925043, -0.0169083793]
|
20 Nov, 2020
|
set cbegin() and cend() function in C++ STL
20 Nov, 2020
The set::cbegin() is a built-in function in C++ STL which returns a constant iterator pointing to the first element in the container. The iterator cannot be used to modify the elements in the set container. The iterators can be increased or decreased to traverse the set accordingly.
Syntax:
constant_iterator set_name.cbegin()
Parameters: The function does not accept any parameters.
Return value: The function returns a constant iterator pointing to the first element in the container.
Program to demonstrate the set::cbegin() method.
C++
// C++ program to demonstrate the
// set::cbegin() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
int arr[] = { 14, 12, 15, 11, 10 };
// initializes the set from an array
set<int> s(arr, arr + 5);
// prints all elements in set
for (auto it = s.cbegin(); it != s.cend(); it++)
cout << *it << " ";
return 0;
}
Output:
10 11 12 14 15
set::cend() is a built-in function in C++ STL which returns a constant iterator pointing to the position past the last element in the container. The iterator cannot be used to modify the elements in the set container. The iterators can be increased or decreased to traverse in the set accordingly.
Syntax:
constant_iterator set_name.cend()
Parameters: The function does not accept any parameters.
Return value: The function returns a constant iterator pointing to the position past the last element in the container in the container.
Program to demonstrate the set::cend() method.
C++
// C++ program to demonstrate the
// set::cend() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
int arr[] = { 14, 12, 15, 11, 10 };
// initializes the set from an array
set<int> s(arr, arr + 5);
// prints all elements in set
for (auto it = s.cbegin(); it != s.cend(); it++)
cout << *it << " ";
return 0;
}
Output:
10 11 12 14 15
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL
|
https://www.geeksforgeeks.org/set-cbegin-and-cend-function-in-c-stl/
|
Pandas
|
set cbegin() and cend() function in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Python | Pandas Series.str.swapcase(), Pandas Tutorial, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00286249071, 0.0104031833, -0.00597375305, 0.021051906, -0.00524359196, -0.0234943926, -0.0260919575, 0.0109265726, -0.00821269862, -0.0165804774, -0.0380200781, 0.0125742815, -0.0204315931, -0.0054277475, 0.000833547, -0.0109265726, 0.0293615293, 0.0181312617, 0.02239592, -0.0127099752, -0.0103191817, -0.0205220561, 0.00156290049, -0.0106939552, 0.00387050095, 0.00497220457, -0.0369603783, -0.00549559435, -0.016955249, -0.0179115664, 0.0254328754, 0.00221633026, 0.0189583469, -0.023145467, -0.0319461711, 0.0408890322, 0.00926594064, 0.0139053725, -0.0444299914, -0.0108231874, -0.0096600987, -0.00319687882, 0.0272679701, 0.0067200684, -0.0301886145, 0.0524940714, -0.0100994874, -0.0331609547, -0.0165546294, -0.0154303107, -0.000524601492, 0.0232230052, 0.0411474966, 0.00205640565, 0.0403979495, 0.0168001708, 0.0232747, 0.0301886145, -0.0234685466, -0.0208968278, 0.00821916107, -0.030628005, 0.0257688779, -0.042801667, 0.00136501389, 0.0213103704, -0.0490048081, 0.0548460968, 0.00601575337, -0.0147324577, -0.0413542688, 0.0026815657, 0.0116308881, 0.0124902809, -0.0320237093, -0.0317910947, 0.018325109, -0.00130443636, -0.03809762, 0.0300593823, -0.0159084704, 0.0192555804, -0.0124450503, 0.0164124742, 0.0587230586, -0.0109653426, 0.00701084081, -0.0311449319, 0.0531402342, 0.0219694544, -0.0262728836, -0.0167743247, 0.00326311, -0.0334969573, -0.0106616467, 0.00898809172, 0.029258145, 0.00498835836, -0.0427241288, 0.0239337832, 0.0097957924, 0.00780561799, -0.00647775829, -0.023055004, 5.82554021e-05, 0.048875574, 0.0270353518, 0.0208580587, -0.0340397321, -0.015650006, 0.0117084272, 0.00850993302, 0.01051303, 0.0761435479, -0.0311190858, -0.00765700126, 0.00138762954, -0.00876193587, 0.048978962, 0.00269610435, -0.0124192033, -0.00652945135, 0.0199534334, 0.0446884558, -0.0438613705, 0.00682991557, 0.00686222361, 0.00840008538, -0.00876839738, 0.00746315299, 0.0115598105, -0.0402687192, 0.0243990179, -0.0205220561, 0.0230420809, 0.00548590207, 0.0181958769, 0.0324114077, -0.0146032255, -0.022434691, -0.0301886145, -0.0241664, 0.0016081318, 0.0356680565, -0.0382010043, -0.0470146313, -0.012884439, 0.0475832522, -0.0182346478, -0.00607713871, -0.0504522063, 0.0214008335, 0.0247479435, -0.0344791189, 0.015650006, -0.0472214036, 0.0419487357, -0.0164770912, 0.00753423059, -0.0176660269, 0.0225122292, 0.0269836597, 6.56761476e-05, -0.0152493864, -0.0132721355, 0.0343757346, 0.0233263914, 0.00665545231, -0.042181354, 0.0378391556, 0.00157582376, 0.0122059705, 0.00309510855, -0.0162186269, -0.00520805316, -0.0416644253, 0.0362625234, -0.0161023177, 0.0297492258, 0.0107327243, -0.00362172909, -0.00478158705, -0.00479128, -0.00479128, -0.00168970949, 0.0117019657, 0.0351769738, -0.0141250668, 0.0313258581, -0.00609329296, 0.0266993493, -0.00925947912, 0.0415093452, 0.0154432347, 0.0314033963, -0.0103773363, -0.0473247916, -0.0101770265, 0.00525974575, 0.0323597156, -0.0139053725, 0.0168906339, 0.0358489789, -0.00768930931, 0.0470663272, -0.00305149262, -0.00860685669, -0.0171361752, 0.00459420076, 0.00821269862, 0.00714007253, 0.00739853689, 0.032540638, 0.00155482348, 0.00348926638, 0.0133884437, -0.0571722761, 0.0173817147, -0.0159730855, -0.00693330122, 0.00940163434, -0.0323338695, 0.0528042316, -0.0575858168, -0.0462909341, -0.0424656644, 0.0172912534, 0.0194365066, -0.030292, -0.0096988678, -0.00693330122, 0.0159730855, -0.0248901, -0.00960840564, 0.0222925339, -0.0270870458, -0.0284052119, -0.0229774658, -0.0109911887, 0.025187334, 0.00097408687, 0.0299818441, -0.0491081923, 0.00294972234, 0.040811494, 0.0541223958, -0.00379296183, -0.00922070909, -0.0176660269, -0.0380200781, -0.0154561577, 0.0301886145, 0.0386403948, 0.00186417287, -0.0152235394, 0.0138278333, 0.0188032687, 0.0133238276, -0.00599636883, 0.00664252928, 0.00795423519, 0.0304212328, -0.000643333478, 0.0122318165, 0.00944040343, 0.00132059038, 0.0316360146, 0.00528882304, -0.0357455947, -0.0340397321, 0.0268544275, -0.000922394, 0.0273972023, -0.0225768462, -0.00374126877, 0.00761176972, -0.0111139594, 0.0117148887, 0.0115468865, -0.0256913379, -0.0209485218, -0.046239242, 0.0262082666, 0.00344726583, 0.048126027, -0.0281467475, -0.0236753188, -0.0117730433, 0.014293069, -0.0242439397, -0.0253294893, 0.00338588073, 0.00428727455, 0.016334936, 0.0397001, 0.0307313893, -0.0138407564, -0.0364434496, -0.0336778797, -0.0342465043, 0.0227965396, -0.0211940613, 0.00444881478, -0.032669872, 0.000783873373, -0.0173687916, 0.0168777108, -0.0269319676, 0.0212716013, -0.0133109046, -0.000932894123, -0.0607907735, 0.0168260168, 0.0101641035, 0.0439906, -0.0366502181, 0.0148487668, -0.0283535197, -0.0147712277, 0.003902809, 0.000999125536, -0.0249288697, 0.0134530598, 0.0332126468, 0.00862624217, -0.0370120704, 0.00882655103, 0.03946748, 0.00185448048, -0.0428275131, -0.0061772936, 0.00682345405, -0.0359523669, -0.00104516454, -0.0354095921, -0.0233263914, -0.0235977788, 0.00954379, 0.0205220561, -0.00214363728, -0.00331157213, 0.00182863406, -0.00805762, 0.0202118978, 0.00209194445, -0.012225355, 0.0173817147, -0.0300593823, 0.00494958879, 4.53321918e-05, 0.000664737541, -0.0284569059, -0.00439066, -0.0432927497, 0.0512792915, -0.0127810529, -0.0306538511, -0.0384077765, -0.0078896191, 0.0269319676, -0.00109604967, 0.0393124, 0.0180020295, 0.051692836, 0.00947917346, -0.0316360146, -0.00229386962, 0.00573790446, 0.0241922457, -0.0138795264, -0.0163737051, -0.0148099968, 0.019010039, 0.00698499428, -0.000464427809, 0.000616679376, 0.018376803, 0.0278624371, 0.0158438534, -0.0055634412, -0.0213749874, 0.0378133096, -0.0102674896, -0.00536959339, -0.00617083209, -0.0225251522, -0.000707545667, 0.0441973731, -0.008813628, -0.000302887696, -0.0143835312, 0.010842572, -0.0145903025, -0.0104161063, -0.0105711846, -0.003395573, -0.0290255267, -0.0385887, -0.0129167465, -0.0233393144, 0.026544271, 0.00246025575, 0.0148875359, -0.0255621057, -0.0189454239, 0.00834193081, -0.00675237644, -0.0336520337, 0.00136743695, 0.035383746, -0.00114370394, -0.0198500492, 0.0236623958, -0.00130928261, 0.0314809345, 0.041457653, -0.0346600451, 0.0166709386, 0.0195398908, -0.00653914362, -0.00545036327, -0.0399327129, 0.0034698816, -0.00141832209, 0.0161540098, 0.00463620108, 0.011185037, 0.0245670192, -0.000581948261, 0.0430084392, -0.0457223132, 0.0227060784, 0.00215171417, 0.0168260168, 0.0148229199, -0.0478934124, 0.0412508808, -0.0168130938, -0.0375031531, 0.00167355547, 0.0374514572, 0.0292839911, 0.0316618606, -0.0344791189, -0.00402234867, 0.0295683015, -0.0294390693, 0.00601252262, 0.0040481952, 0.000227771554, -0.0369603783, -0.00988625456, 0.0290255267, 0.0107456483, 0.0161281638, -0.0205995943, 0.0247350205, -0.0173817147, 0.0564485751, 0.0273455102, 0.00724992, -0.00323403301, -0.0090462463, -0.000365080632, 0.0529076159, -0.00330349524, 0.0168260168, -0.00119539676, 0.00206448254, -0.00634206459, -0.0106874937, -0.0404237956, 0.0266993493, 0.0308089294, 0.0290255267, 0.00157905451, -0.00851639453, -0.0148875359, -0.0484878793, -0.00752776908, 0.0174334086, -0.0283793658, -0.0682345405, 0.005440671, -0.000373359566, 0.000255233375, -0.00938225, -0.0289996807, -0.0371413, 0.0193848126, -0.0166967846, 0.0134918299, -0.0211036, -0.037373919, 0.00916255452, 0.00639375765, -0.0375031531, 0.00154270802, -0.00659083622, 0.0131687494, 0.0323080197, -0.0205737483, -0.0215946808, 0.0236365478, 0.016270319, -0.0146419955, -0.0337295756, 0.00336326496, 0.00747607602, 0.00120993541, -0.0104225678, 0.0036411141, 0.00159278547, -0.00149828452, -0.00102901051, 0.00820623711, 0.0296975337, -0.0143576851, -0.0548460968, -0.00975702237, 0.0201472826, -0.00147809193, -0.00277041295, 0.0294649154, 0.0046265088, 0.0232876223, 0.00980871543, -0.0103579517, -0.0414835, -0.00969240628, 0.0128198229, -0.00115339633, -0.00860039517, 0.00265571941, -0.00505297445, -0.015611236, -0.0138019864, 0.00431312108, -0.0388988592, 0.00774746342, -0.0365985259, 0.0264279619, 0.0132979816, -0.025781801, -0.0350994356, -0.004749279, -0.025187334, 0.0123868957, -0.00687514711, 0.02102606, 0.0161281638, 0.0338071138, -0.0146678416, -0.00929824822, -0.0100348713, 0.0069397632, -0.0124127418, 0.0116761187, -0.00201278972, -0.02239592, -0.00601575337, 0.0479451045, 0.0536571629, -0.00792838819, -0.00500451261, -0.0173300225, -0.00801239, 0.0231583901, -0.0262211896, 0.0388988592, -0.00594790652, -0.0112431915, 0.0328507945, 0.0145903025, 0.0221245326, 0.0159213934, 0.00388342422, 0.0283793658, -0.0174334086, 0.0088847056, -0.00202732836, -0.0343757346, -0.00469435565, -0.0565519594, -0.0145386094, 0.0109007265, -0.0168001708, -0.000377398072, -0.015662929, -0.0128069, -0.0140346047, 0.00987979304, 0.0294907615, 0.0223700739, 0.0176531021, -0.0193460435, -0.018325109, 0.0123933572, -0.0382268503, 0.00331803388, 0.023752857, -0.00294326083, 0.0159213934, -0.0401653312, -0.00798654277, -0.0263633449, 0.0107262628, 0.00947271194, -0.00311610871, -0.0284310598, -0.0335744955, 0.0144869164, -0.000423638936, -0.0165934, 0.00583805935, 0.0221116096, 0.0109847272, 0.00769577082, -0.0328249484, 0.0171232522, -0.0384594686, -0.000280877866, 0.00344403507, 0.0194235817, 0.00323726377, 0.0186094195, -0.0132850586, -0.0407598, -0.00198694342, -0.0257430319, 0.0111398054, -0.0127293607, 0.0185964964, 0.0211682152, -0.00167517096, 0.0173558686, -0.0186611135, 0.019061733, -0.014952152, 0.0188808069, -0.0321012512, 0.0223571509, 0.0115727335, 0.0208709817, 0.00431312108, 0.0121284313, -0.00420327345, 0.0367794521, 0.0118441209, 0.00745669147, -0.0249417927, 0.0301110763, -0.016283242, -0.00110089581, -0.00482358737, -0.0207546726, 0.0110493433, 0.0440939888, 0.0013278597, 0.00262502674, 0.0238820892, -0.0305763111, 0.00154916965, 0.000601333042, -0.00143609161, -0.00505297445, -0.0289221406, 0.00604483066, 0.00229063863, -0.0127293607, -0.0506589785, 0.000836777734, 0.00370249921, -0.0152364625, 0.0229774658, -0.0214396026, -0.0379166938, 0.02308085, 0.0208839048, -0.00523389969, 0.00595759926, -0.0246833283, -0.0120315067, -0.0415610373, -0.0120767383, -0.0014368993, -0.00412573433, -0.00489143422, 0.0196045078, -0.0470663272, -0.00429050531, 0.000635256467, 0.0169294029, -0.0138278333, -0.00612883177, 0.00363788311, -0.0022567152, -0.0178727973, 0.0150943073, -0.00958902109, -0.00132866739, -0.028534444, -0.0236107018, -0.0022567152, 0.0059188297, 0.0436804444, -0.00366049889, -0.0172395594, 0.00682345405, 0.0257301088, -0.00364757562, 0.00160974718, -0.0291289128, 0.00978933088, 0.00050077436, -0.00141509133, 0.0333160311, -0.00962132867, 0.027164584, -0.043551214, 0.00381557737, -0.00312095485, -0.0164770912, -0.000482601085, 0.0427499749, -0.00274779717, -0.0185964964, -0.0231842361, 0.00876193587, -0.00308380066, -0.0355646685, 0.0092917867, -0.0163995512, 0.00541482447, -0.0202635918, -0.0187515765, 0.0196562, -0.0110041117, 0.00151847699, -0.0039641941, -0.0171878673, 0.0105453385, -0.0270353518, -0.0026815657, -0.0158050843, -0.00552144088, 0.0308606215, 0.00180601841, -0.0181571078, 0.0322821736, 0.0323338695, 0.0266993493, 0.0159601625, 0.00170909439, 0.0109071881, -0.0268544275, 0.0144739933, -0.00222763815, 0.0109201111, 0.0109330341, 0.0404496416, 0.00542451674, 0.00512405206, 0.0499869697, -0.0338329598, 0.00624837121, -0.00624837121, 0.0221374556, 0.027164584, 0.0152106164, 0.000559736451, -0.0247220974, 0.0222149957, 0.00683637755, -0.0116050411, -0.0118182739, -0.0125290509, 0.008813628, 0.0182734169, 0.0207675956, -0.00780561799, 0.0408890322, 0.00438742945, 0.00940809585, 0.0186998826, -0.0234168544, 0.00355065148, 0.0109782657, 0.0543291681, -0.0361849852, -0.036004059, 0.00224540755, 0.0232359283, 0.043551214, -0.00646806601, -0.0284310598, -0.0275522806, -0.0276556667, -0.057637509, -0.00605129264, 0.0275005884, 0.00710130297, 0.00609975448, -0.0154044647, 0.0365209877, -0.0266218092, -0.0197854321, 0.0266735032, -0.00352157443, 0.00824500713, 0.0163995512, -0.00679114601, -0.0115921181, 0.0186352674, 0.0099702552, 0.0263504218, 0.0072111506, 0.0166063234, 0.00948563498, 0.0111333439, 0.0049980511, -0.0225122292, 0.00461035455, -0.00647775829, -0.0427241288, 0.013530599, 0.020366976, 0.0169035569, 0.030550465, 0.0136856781, -0.00512405206, 0.027888285, -0.0057346737, 0.02034113, 0.00898163, 0.017006943, 0.000201824165, -0.00511759054, 0.014241376, 0.00964717474, -0.0124062803, 0.00349895866, -0.0317910947, -0.00781207951, -0.00518543739, -0.00580575131, -0.017019866, 0.0334711112, -0.02239592, -0.00609652372, 0.00223248429, 0.000319445564, -0.0185706504, 0.0157921612, -0.00505943596, 0.023739934, -0.0492374264, -0.0118311979, -0.0127487453, 0.00492697349, -0.0119604291, 0.0163478591, 0.0167355556, 0.027888285, 0.0184155721, 0.0130589027, 0.0118311979, 0.00342788105, 0.0364434496, -0.0118376594, 0.0132204425, 0.00872962736, -0.0223571509, -0.0136469081, 0.0176014099, -0.0227836166, 0.0293098371, 0.0412767269, -0.010183488, -0.0353062041, 0.0389505513, -0.0187774226, -0.0416385792, -0.0230937731, -0.00505620521, 0.000847277872, -0.00886532106, -0.0188937318, -0.00916255452, -0.0175497178, 0.0449469201, -0.00612883177, -0.0164900143, -0.00683637755, 0.0240888614, 0.00487204967, 0.0281725954, 0.00298687653, 0.00230840803, -0.0408890322, 0.000102123638, -0.0100930259, -0.0055117486, 0.00336972671, 0.0422072, 0.0104613369, 0.0299301501, 0.0112884231, -0.0040998878, 0.00684283907, 0.00312741636, -0.0242439397, -0.0362108313, -0.00928532518, 0.0102028735, -0.000905432273, -0.00666191382, -0.0052048224, 0.024502404, -0.00727576623, 0.00342465029, 0.025859341, -0.0292839911, 0.0175109468, 0.012936132, -0.00862624217, 0.0290513728, 0.00623221742, -0.0287412163, -0.01123673, -0.0385887, 0.00630652579, 0.0201085117, -0.0140604507, -3.56145465e-05, -0.0141767599, -0.0441973731, -0.0341948085, -0.0577408969, -0.0135564459, 0.0297492258, -0.0228740796, -0.00186740363, -0.000161641074, 0.00221148413, 0.00528559228, -0.0446884558, -0.012199509, -0.0232747, -0.0131687494, 0.00768930931, -0.00473312521, -0.0255362596, -0.0250451788, -0.00101447187, 0.0139312185, -0.0218402222, 0.0022599462, -0.00618698588, 0.00253941049, 0.0168777108, 0.00794777367, -0.000162347802, -0.0113078076, 0.0425432026, -0.0277332049, 0.0181441847, -0.016257396, -0.0233134683, 0.00364434486, 0.035978213, -0.0053049773, 0.0195398908, 0.0435770601, -0.000985394698, 0.0354612842, -0.00462004729, -0.0073339208, -0.00340203475, 0.0112884231, 0.0191651192, 0.0330575667, -0.000497139699, 0.0233910084, 0.0171361752, 0.0207288265, -0.00558928773, -0.0182863399, -0.0273972023, 0.00348280463, -0.0238303971, -0.0220599174, 0.014939229, -0.0179374143, 0.0292839911, 0.0484361872, 0.00052177452, 0.00739207538, 0.0022389458, -0.0129684396, -0.0269061197, 0.0146678416, -0.0246833283, 0.0188808069, 0.00183186482, -0.0226156153, -0.0200180504, 0.031222472, -0.00916901603, -0.0252519492, 0.0192038883, -0.0151072312, -0.00347957388, -0.0117084272, -0.00076166162, 0.0110299587, -0.0110364202, -0.0101641035, 0.0173558686, 0.00935640279, -0.0030628005, -0.0569138117, -0.0300593823, -0.00410634931, -0.00630652579, 0.00793485, 0.0206642114, 0.0026460269, 0.00852931757, -0.0213620644, 0.0142284529, -0.00245217886, 0.0211940613, 0.023804551, -0.013595215, -0.0202894378, -0.00263795, -0.0258981101, 0.00447789161, -0.00389957824, 0.00412250357, 0.00483974162, -0.0205737483, 0.00334388018, -0.0116373496, 0.0107844174, 0.00837423932, -0.027216278, -0.0138278333, -0.0096988678, 0.00788315758, 0.0181441847, -0.0132204425, 0.0329024903, 0.0138924494, 0.000847277872, 0.00759238517, -0.0109394956, -0.0215946808, 0.0120379692, -0.00189325, -0.0117536578, 0.00771515537, -0.0124773579, -0.0205479022, 0.0215429887, 0.023739934, -0.00300464593, 0.012199509, 0.00663606776, 0.0126065901, 0.00663606776, 0.00322272512, -0.0206383634, -0.0201731287, 0.00774746342, -0.0086779343, 0.014254299, 0.0420004278, -0.0204315931, -0.0192426573, 0.00348926638, 0.00860685669, 0.0235331636, 0.0445592217, -0.00666837581, -0.00100801024, 0.00619667862, 0.00785084907, -0.0275522806, -0.0201472826, 0.0137115242, 0.0158826225, 0.018299263, 0.00541805523, -0.0134401368, 0.00582190556, 0.0441973731, -0.0138019864, -0.00964717474, -0.023739934, 0.0234297775, -0.00300303055, 0.0193718895, 0.0214783736, 0.00750838406, -0.00645514252, 0.00410958054, 0.0106487237, -0.0191651192, 0.0109201111, 0.000245540956, 0.00823854562, 0.0152106164, -0.00687514711, -0.0164253972, 0.00402234867, -0.0280950554, 0.00576698175, -0.003145186, 0.0218919162, 0.00252971798, 0.00883947499, 0.0048978962, -0.0277073588, 0.00320334034, 0.0092917867, 0.0153786186, -0.00589621393, 0.0364692956, -0.00211940613, 0.00504651293, -0.00675883796, -0.00286410609, 0.0284827519, -0.0105905691, 0.0198888183, -0.0107650328, -0.00869085733, 0.01051303, 0.00599636883, -0.0154432347, -0.017627256, -0.0119151985, -0.00124870508, -0.0185060352, 0.00433896715, 0.00485589541, -0.00646806601, 0.0072628432, -0.00724345818, -0.0022389458, -0.0044197375, 0.0243602488, -0.0134142907, -0.000463216245, -0.00708191842, -0.017019866, -0.00209355983, 0.00554405665, 0.0122447405, -0.0058348286, 0.00426465878, -0.0222537648, 0.000136703311, 0.0242310166, 0.00885239802, -0.0310157, -0.00918194, 0.0240630135, -0.00453927694, 0.00175755634, -0.0140862977, 0.00688807, 0.0194623526, -0.0186481904, 0.0165287834, 0.0041709654, 0.0198371243, -0.00624190969, 0.0330834128, 0.00865208823, 0.0145903025, -0.027164584, 0.0172524843, -0.000742680626, 0.0109976502, -0.00907209236, 0.0247091744, -0.0199922044, -0.00243925559, -0.0111721139, -0.00355388247, 0.00179955678, 0.0404754877, -0.0221374556, -0.000503197429, -0.00771515537, 0.0212586783, 0.0158180073, -0.0205608252, 0.0068040695, -0.0337554216, 0.00301595381, -0.00911732391, -0.0036411141, 0.00969240628, 0.00441004476, 0.00592852198, 0.000146092832, 0.00133997516, -0.0295683015, -0.0104484139, 0.00525005348, -0.00629683351, -0.0163478591, -0.0331092589, -0.0213232934, 0.00794131123, 0.0107068783, 0.0247608684, -0.02308085, 0.00902686082, -0.0241793226, 0.0137632173, 0.0477900244, 0.0139182955, -0.00738561386, -0.0148746129, 0.0264408849, -0.0185189582, -0.0118053509, 0.00498189684, -0.00976994541, 0.0204445161, -0.0174592547, -0.0158697, 0.0283793658, 0.0206512865, -0.0137890633, -0.0106034931, -0.00315326289, 0.0126776677, 0.0128392074, 0.0155466199, 0.0265959632, -0.0214912966, -0.0246704053, -0.0295941476, -0.00297556887, 0.0188032687, -0.0156758521, -0.00543744024, 0.00675237644, 0.0337037295, 0.000983779202, -0.0501420498, -0.00521774543, 0.01630909, 0.0432927497, 0.0127875153, 0.0124385878, -0.00727576623, 0.00532113109, -0.0282759797, 0.000269368116, 0.0158955473, 0.0191521943, 0.0157404672, 0.0227836166, -0.0216205288, 0.0214266796, 0.0365209877, 0.00351511268, 0.0166709386, -0.011895813, 0.0214266796, 0.013530599, 0.00959548261, -0.00380911562, 0.00630006427, -0.0304987729, 0.0105905691, 0.00586713664, -0.00747607602, -0.00837423932, 0.00391573226, -0.00350542041, 0.0162961669, 0.00607390795, -0.00602221536, 0.00121882011, 0.0193848126, 0.0147195347, -0.0127293607, -0.00897516869, -0.0171620212, -0.0137761403, -0.0151718473, -0.0166192465, 0.00856162608, 0.0151718473, -0.0275522806, -0.0130782872, -0.00969240628, 0.0256267227, -0.00490758847, 0.00346341985, -0.00658114394, 0.00321464823, 0.00899455324, -0.00619667862, -0.0164383221, 0.00174624857, 0.0416902713, 0.00822562259, -0.0100413328, 0.0406822599, -0.00609975448, 0.00137066783, -0.0267251953, 0.00807700492, 0.0232876223, 0.0275781266, 0.0287670624, -0.0186998826, 0.00701730233, -0.0425432026, 0.0130718257, -0.00525974575, 0.00817392953, -0.00422912, 0.0147970738, 0.0361332893, -0.0348409712, -0.0251356401, 0.0142155299, -0.00933055673, -0.0193201974, -0.00827731472, -0.00549559435, 0.0236107018, -0.000272397, 0.021090677, -0.01123673, -0.00580898207, 0.00299979979, 0.00588652166, -0.0175626408, 0.0043551214, -0.0135047529, 0.00416773465, 0.0047266637, 0.0231842361, 0.00206448254, -0.00341818877, -0.0293873772, 0.0120379692, 0.0192426573, 0.00365726813, 0.012593667, -0.00146436109, -0.0182734169, -0.0181441847, -0.0106551852, -0.0178081822, -0.00547297904, 0.033910498, 0.0110493433, -0.00757946167, 0.000568621152, -0.0127487453, -0.0249288697, 0.00814808346, 0.0014998999, 0.00535667, -0.00865208823, 0.00829023868, 0.0232617762, -0.0331351086, 0.0157533921, 0.00127616688, -0.0378391556, 0.00192878884, 0.0211294461, 0.00363788311, -0.0124192033, 0.011553348, 0.000681699254, -0.011895813, 0.01897127, 0.0100865643, 0.0222796109, 0.00710776495, -0.0275522806, 0.0340655781, 0.00047250482, -0.0158826225, 0.029258145, 0.0252261031, 0.0032986491, -0.00467174, 0.00977640692, -0.000999125536, 0.010881342, -0.00654560514, -0.0162057038, -0.0173171, -0.0168777108, -0.0334194191, 0.0252131801, 0.0288962945, -0.00863270368, 0.0111204209, -0.00958902109, 0.0137244472, 0.00787669607, 0.00554728741, -0.0205866713, -0.0159084704, 0.0321787894, 0.0140346047, -0.018997116, -0.00483974162, 0.015611236, -0.0374773033, 0.0185835734, 0.0143706081, 0.0072111506, -0.0221891496, 0.000928855618, -0.0134013677, 0.0243990179, 0.0022389458, 0.0310157, 0.0250710249, -0.00148455356, -0.0032598793, 0.0303953867, -0.00759884669, -0.0044908151, 0.0124450503, 0.00252002571, -0.00379619258, 0.0327732563, -0.0108490335, 0.00875547342, 2.40921927e-05, 0.00858101062, -0.0053049773, -0.0105841076, 0.0141379898, 0.00306118513, -0.0188420378, 0.0127422838, -0.00163882435, 0.017019866, -0.00954379, -0.0209614448, 0.0132979816, 0.00600283034, -0.00630329503, -0.0187257286, 0.0122899711, -0.0112819606, 0.0250581019, 0.0538122393, -0.0146290725, -0.00708191842, 0.000573467405, -0.00967302173, 0.0255104136, -0.000504408963, -0.00583159784, -0.0150296912, -0.0252002571, 0.00323241763, -0.0108619565, -0.0271128919, -0.0103385672, -0.000518947607, -0.0183380321, 0.0153010786, 0.00233425456, -0.0132592116, -0.0247867145, -0.00567005761, -0.000935317192, 0.00623544818, 0.0325923339, 0.00777331, 0.0087748589, 0.0390022434, 0.015624159, -0.0293873772, 0.00398681, -0.00066635292, 0.00270095048, 0.00178824901, 0.0215171427, 0.00724345818, 0.0120508922, 0.0114305783, 0.00966656, -0.0227965396, 0.0286895223, -0.0200826656, 0.0115016559, -0.00154997734, -0.022447614, 0.0128909005, 0.0333677232, 0.0233263914, -0.0132462885, 0.0302403085, 0.00788315758, -0.000832739228, -0.0151976934, 0.00431635184, -0.00947917346, -0.0173300225, 0.0177306421, -0.0272938162, 0.018984193, 0.00701084081, -0.021762684, -0.016955249, 0.0240759384, -0.0110751893, -0.0180537216, -0.0189583469, 0.0357714407, 0.0275522806, -0.0192038883, -0.00691391667, -0.0244636331, 0.0193460435, -0.00975702237, -0.020366976, 0.0053049773, 0.00561836502, -0.0127358222, -0.00108554948, 0.00372188399, -0.000118328127, 0.0131816724, -0.000168001716, -0.0157016981, -0.00158551615, -0.00871024281, -0.0169294029, -0.0031064162, -0.0109911887, -0.0115727335, 0.0455672331, 0.0326957181, -0.0118311979, -0.0111010363, -0.0161540098, -0.00341495778, 0.00822562259, 0.0328766443, 0.0421038121, 0.0147195347, -0.00945978891, -0.0130653642, 0.0108231874, -0.0134013677, 0.00870378129, 0.00307733915, 0.0116955042, 0.0172783304, 0.0121801244, 0.00576698175, 0.0144223012, -0.0200697426, -0.013595215, 0.0181054156, 0.0103708748, 0.005783136, 0.0294649154, 0.00288672163, 0.036004059, 0.00091754779, 0.0280692093, -0.0206642114, 0.000915124721, -0.00855516363, 0.0046135853, -0.0185189582, 0.00222279178, 0.0129555166, 0.0235848557, -0.0054277475, -0.00739853689, 0.0193977356, -0.0223054588, -0.0254587214, -0.0021597913, 0.0029529531, -0.0156758521, 0.027216278, -0.0184284952, 0.0109265726, -0.0105194915, -0.0105647231, 0.0172654074, -0.0269836597, -0.0150555382, 0.0165158603, -0.000974894559, -0.0039997329, 0.00511436, 0.000417581177, 0.000903816894, 0.013582292, 0.0155336969, 0.0114951944, -0.0175884869, 0.00850993302, 0.0112754991, 0.00464266259, -0.00210163672, 0.00384142366, -0.0122899711, -0.0240500905, -0.0180924926, -0.0146678416, 0.0106745707, -0.00115016557, -0.00568298111, 0.00372511498, -0.000786700344, -0.00601252262, -0.00629360275, 0.0182734169, -0.00508205174, -0.0108361105, 0.0242697857, 7.19863092e-05, 0.0181054156, 0.0125484355, 0.00631621806, -0.0188032687, 0.0315584764, 0.0177952591, 0.00218240684, 0.00737915188, 0.00314357039, -0.0110945748, 0.00289802952, 0.00407404173, 0.01051303, -0.0109782657, -0.00580252055, -0.0214783736, 0.0130330557, 0.00277687446, 0.0133109046, -0.0090462463, 0.017691873, 0.0136986012, 0.0121801244, -0.00642606569, 0.0121736629, -0.000595679157, 0.0078896191, 0.0141121438, -0.0232100822, 0.00616437057, -0.011566272, 0.00402557943, 0.00743730646, 0.0126001285, -0.0184284952, -0.0144739933, -0.0009167401, 0.0201472826, 0.0118311979, 5.87602153e-05, -0.00659406697, -0.00996379368, -0.0131364418, 0.0277073588, -0.0184155721, 0.0232617762, -0.0111010363, 0.00282210577, -0.00350218941, 0.000358013262, -0.0161669347, -0.0196562, -0.0158567764, -0.00493020425, -0.00384788541, -0.00891701411, 0.0102933357, -0.00762469321, 0.0178211052, 0.0256784149, 0.0281209014, -0.019061733, -0.0422072, -0.0191005021, 0.0102868741, -0.0160893947, -0.0136856781, -0.00855516363, -0.00538897794, -0.00750192255, -0.00438419869, -0.0122899711, 0.0186998826, 0.00500128185, -0.0223700739, -0.0120573537, -0.0157404672, -0.00379296183, 0.000252406404, 0.00510789827, -0.00134643679, 0.0107714944, -0.0099056391, 0.0191651192, -0.00221148413, -0.00328411045, -0.00670714537, -0.0179891065, 0.010894265, -0.00778623298, 0.0082967, 0.00023181006, 0.0029174143, 0.00616114, 0.00988625456, 0.024476558, 0.00397065561, 0.0133238276, 0.0054277475, -0.0227836166, -0.00090624, -0.00545359403, 0.0109007265, 0.0296716876, 0.0147841508, 0.00987333152, -0.0127810529, 0.000466447062, 0.000407484913, -0.00144739938, -0.0102868741, -0.00782500301, -0.0248254836, 0.0211294461, -0.00185609586, -0.0284310598, 0.0153915416, 0.0181571078, 0.0345566608, -0.00364757562, 0.0111398054, -0.0127487453, -0.0188161917, 0.0120832, 0.0118505824, -0.0143318381, 0.0121413544, -0.0100154867, -0.0195786618, -0.0162057038, 0.000145588026, 0.0243473258, 0.0049980511, 0.0110105732, 0.00392542453, 0.0304470789, 0.00206609792, 0.0157404672, 0.0139570655, 0.000748738414, -0.000590025214, 0.010894265, -0.010183488, -0.00229225401, 0.00259433407, 0.0123028941, 0.00182217243, 0.00808992889, 0.00114289625, 0.00695914775, 0.020405747, 0.00878132, -0.0120315067, 0.00697207125, 0.0250451788, 0.00364434486, 0.0120185837, 0.0191909652, 0.000593256031, 0.0189195778, -0.0209097508, -0.00283179805, -0.00209194445, 0.0138149103, 0.0107973404, 0.00412250357, -0.00182863406, -0.00883301347, -0.00933701824, -0.00135047524, -0.0129425935, -0.020366976, -0.0162057038, 0.023119621, 0.00253617973, 0.0138407564, -0.0223442279, 0.0106164161, -0.0103385672, 0.0171620212, 0.0150684612, -0.00123578182, -0.0115081174, 0.0060189846, -0.0152623095, 0.00416127313, -0.011579195, -0.0174204856, 0.01836388, 0.0123287411, 0.00641637295, -1.5182246e-05, 0.00470081717, -0.0048494339, 0.002891568, -0.00227125385, 0.00332126464, -0.0016977865, -0.00875547342, -0.00419358118, -0.000422427373, -0.0106358007, -0.0152752325, 0.0083677778, 0.012923209, -0.00947271194, -0.00448758435, -0.0131945964, 0.0212457553, 0.00834193081, 0.000807700562, 0.00761823123, 0.00775392493, -0.0227706935, 0.0228482336, 0.0275781266, -0.0103127202, -0.00193040434, -0.0152881555, 0.0215946808, -0.00677822297, 0.0202765148, 0.0103514902, 0.0251356401, 0.00711422646, -0.00201440509, -0.0315584764, 0.00187871139, 0.00403850246, 0.0155078499, -0.00368634518, -0.00727576623, 0.00369280693, -0.0157533921, -0.0071982271, 0.00288026, -0.00299333828, 0.00124062807, -0.0121672, -0.0297750719, 0.00475574099, 0.000337013043, 0.0271904301, 0.00422912, -0.018984193, 0.0318944789, 0.0107391868, 0.0145127634, 0.0206512865, 0.0136598311, 0.00116228103, 0.0127164377, 0.00513051404, -0.00728868973, 0.021051906, 0.00107666478, 0.0015992471, 0.010868418, -0.0106939552, 0.0081610065, -0.0197854321, 0.018325109, 0.010222258, -0.00579929, 0.00645191176, -0.000735815207, -0.000831123849, 0.00442943, -0.012593667, -0.00777331, 0.00595759926, -0.00778623298, -0.0117213503, 0.0212586783, -0.000798411958, 0.0234039314, 0.00883301347, -0.0103837978, 0.0298526119, 0.00232294668, -0.00472989446, 0.0148099968, 0.0150684612, -0.00634529535, -0.0192297343, -0.011185037, 0.00898163, -0.0150167681, -0.0192555804, 0.00726930471, -0.00352480519, -0.0118505824, -0.0279658232, 0.0278624371, 0.0310415477, -0.0254199505, -0.0157663152, 0.0117795048, 0.0171620212, 0.00604806142, 0.0159472395, 0.00576375099, 0.0139053725, -0.0226931535, 0.0137244472, 0.00129312859, -0.0297750719, -0.0086133182, 0.00531466957, -0.017691873, 0.0209226739, 0.00598344579, 0.0272421241, 0.00934348, 0.00993794762, 0.0107521098, -0.00355388247, 0.00195625075, 0.00382203888, -0.00827731472, -0.0113271922, 0.0193589665, -0.0221891496, 0.00497220457, 0.000562967267, -0.0246574823, -0.030550465, 0.00248125615, 0.00475897174, 0.0208580587, -0.00126728218, -0.00224056118, 0.0185964964, 0.00321949436, -0.0200955886, 0.00704314886, 0.000382042344, -0.00863270368, -0.0036055753, -0.00245540962, -0.00880716648, -0.00956963561, -0.010209335, -0.0222149957, 0.0138407564, 0.0305246189, 0.0164124742, -0.0152235394, 0.0207675956, 0.0123481257, -0.00812869798, 0.0297750719, 0.0108361105, -0.00448112236, 0.016322013, 0.00204832852, -0.00913670845, 0.00743084494, -0.0301886145, -0.0124773579, 0.00459743151, 0.001526554, -5.04055606e-05, -0.00723053515, -0.00365403714, 0.00874255, 0.00601252262, 0.0135047529, 0.011185037, -0.0127293607, -0.0200955886, -0.00207579043, -0.01836388, -0.0150426151, 0.00400942564, 0.0159213934, -0.00394480955, 0.0115145789, 0.0255362596, 0.00343111181, -0.0194494296, -0.000408696476, -0.0299043041, -0.0233651605, 0.0188678838, 0.0240630135, 0.0125096655, 0.0160118546, 0.00894932169, 0.00878132, 0.0204703622, 0.0222796109, 0.01051303, 0.00265895016, 0.0222537648, -0.00101527956, -0.00761176972, -0.0182475708, -0.00708838, 0.00493989652, -0.00524359196, 0.0185577273, -0.00377357681, 0.0124321263, -0.0172524843, -0.0257301088, 0.0216334518, -0.0220599174, 0.0068557621, 0.0270611979, 0.0249030236, -0.0100025637, -0.0112819606, 0.00797362, 0.0114305783, 0.00803823583, -0.0281984415, -0.0033341879, 0.0124321263, 0.00336326496, 0.023817474, 0.00932409521, -0.00683637755, 0.00408696476, 0.0099314861, 0.00116793497, -0.00589621393, 0.00620960165, -0.00438096793, -0.0239467062, 0.00307249278, 0.00420327345, -0.0086779343, 0.00883301347, 0.0172524843, 0.00528236153, -0.0103902593, -0.00124870508, 0.00523713045, 0.0175367948, -0.00602867687, -0.00052177452, -0.015598313, -0.00131816731, 0.0195269678, -0.00187386526, -0.0291030649, 0.00367665291, 0.00636791112, -0.00936932582, 0.000774181, 0.0143964542, -0.0111914985, 0.0163607821, -0.0171232522, -0.00141347595, 0.0133367516, -0.00571852, 0.0228999257, -0.00234071608, -0.0107262628, 0.0168130938, 0.00275102793, 0.00224056118, -0.0302144624, -0.0111656524, -0.00811577495, 0.00858101062, -0.00279302849, -0.0309898537, -0.00322757126, -0.029180605, -0.0187903456, 0.000625160232, 0.000737430586, 0.005256515, -0.00444558356, 0.0197595861, 0.0190229639, -0.0171103273, 0.0260919575, 0.00797362, 0.0195786618, -0.00159520854, 0.00442619901, 0.0264021158, -0.0117988894, 0.0147970738, 0.00626775622, -0.0168130938, 0.00766992429, -0.00328734121, -0.00666837581, 0.0076053082, -0.00113805011, 0.0104484139, -0.00630652579, -0.00146516878, -0.0143576851, -0.0119927377, -0.0194235817, 0.00374449976, 0.0190229639, 0.00871670432, -0.0216851439, 0.0193201974, -0.00209517521, -0.00127212831, -0.000396177114, 0.0225897692, 0.00777977146, 0.00533082336, 0.0231971592, 0.0163478591, 0.0430601314, 0.0163478591, 0.0069397632, -0.0137632173, -0.00709484145, -0.0140475277, 0.00325341779, -0.00608683145, -0.0191134252, 0.00987979304, -0.00805115886, -0.0277332049, 0.0106358007, -0.0159989316, -0.0030450311, 0.00770869385, -0.000877162791, 0.0106293391, -0.00704961037, -0.0162186269, -0.0235202387, -0.0207675956, -0.00283987517, -0.000166790167, -0.00278495136, -0.00646806601, -0.0108361105, -0.00814162102, -0.0133625977, 0.0175755639, -0.00715299603, 0.00287056761, 0.00475574099, -0.00314841676, -0.00585098285, -0.010894265, -0.00186255749, -0.00975056086, -0.0188161917, -0.00194655824, 0.0300593823, 0.0308347754, -0.011895813, -0.00372834573, 0.00822562259, -0.0126324361, 0.0196432769, -0.00738561386, -0.0021032521, -0.00851639453, 0.0257171858, -0.00187063438, 0.00971825328, -0.00993794762, 0.0109653426, 0.000385878928, 0.010881342, -0.00409019552, -0.00623867894, 0.00303695397, 0.00378973084, -0.0131816724, -0.00781854149, -0.0101188719, -0.0303695407, 0.0109911887, 0.0139570655, 0.00987979304, 0.00483328, -0.00907855388, -0.0020677133, 0.0220211465, 0.0027558743, 0.00571852, 0.0131170563, 0.00104516454, 0.0489272662, 0.0122705866, -0.0132979816, 0.0138795264, -0.00351188192, -0.00300626131, -0.0144869164, -0.00900747627, -0.00194494287, 0.014241376, -0.00381557737, -0.00321303285, -0.0085034715, -0.00241987081, 0.0198629722, 0.0188937318, -0.00498189684, 0.00388019346, 0.0187128056, -0.00610944675, -0.00626452547, 0.0100736413, 0.0194494296, -0.0300593823, 0.000765296281, 0.01051303, -0.0250710249, -0.00914963149, 0.0329541825, 0.020405747, -0.00328895659, -0.00433896715, -0.00234394707, 0.0197595861, -0.00584775209, -0.0290255267, -1.48288773e-05, -0.00574113522, 0.0173558686, 0.00900101475, -0.00640668068, 0.00504328217, -0.00509820599, 0.0198371243, -0.0123287411, -0.000758834649, -0.00894286, 0.0218143761, 0.00692037819, -0.0120444307, 0.0122964326, 0.0201343596, -0.00638083415, -0.016322013, 0.0287412163, -0.0206512865, 0.0381493121, 7.74256659e-06, -0.00232294668, 0.0133884437, -0.00647129677, 0.00268802745, 0.0157921612, 0.0223442279, -0.00425496651, 0.0165029373, -0.0158180073, -0.0140346047, 0.0174334086, -0.0229257718, 0.00236494723, -0.00170909439, 0.0223313048, 0.0131622879, -0.000443427591, -0.000703103316, -0.000866662653, 0.00745669147, 0.0296975337, -0.00529851532, 0.023817474, 0.0128004383, -0.0105453385, 0.00856808759, -0.00178501813, 0.00411927281, 0.0335228033, -0.0195011217, 0.0148487668, 0.0203152839, -0.0138666024, -0.0284310598, -0.0159213934, -0.0211294461, 0.00227286923, -0.000150939042, -0.00779915648, -0.00962779, 0.001780172, 0.0162315499, -0.00681699254, -0.0254716445, 0.0195398908, 0.0121090468, -0.00427758181, 0.00737915188, -0.003902809, 0.025161488, 0.0191909652, -0.00741146, -0.0140475277, -0.00302403071, 0.0133884437, 0.00293841446, -0.00317264767, 0.013621062, -0.00969240628, -0.0117988894, 0.0127810529, -0.0109653426, -0.0215946808, 0.0270611979, -0.0131752109, 0.00117358891, 0.033884652, 0.0079994658, -0.0131299803, -0.0257688779, 0.0216722209, 0.0249417927, -0.0241276305, 0.0162444729, -0.0216851439, -0.0139570655, -0.00945978891, -0.00477189478, -0.0157921612, 0.00241664, -0.0161798578, -0.000627987145, -0.00204509776, -0.00792192668, 0.00280272076, 0.0184801891, -0.00237787049, -0.0127616683, 0.0211423691, -0.012251202, 0.0221245326, 0.00610944675, 0.00825146865, -0.0102933357, -0.0143059921, -0.0239208583, -0.00503359, 0.0209614448, -0.0137632173, -0.00677822297, 0.00157743914, -0.0225509983, -0.00689453166, 0.0159730855, 0.000411927263, 0.0306021571, -0.0123093566, -0.00448435359, 0.00176240259, -0.0252519492, 0.0093887113, -0.0177177191, -0.0303178467, -0.0214396026, -0.0260014962, 0.0117730433, 0.0161798578, 0.017006943, -0.0228223857, 0.0209355988, -0.0122964326, -0.0040126564, 0.00479451055, -0.0172654074, -0.00372834573, -0.0202248208, -2.54614974e-06, 0.00752130756, 0.00917547848, -0.0135176759, -0.0051918989, 0.023067927, -0.00227448461, -0.0138407564, -0.0106293391, -0.000288752955, 0.016283242, -0.0132139809, 0.0070625334, -0.00148293818, -0.0188032687, 0.0053049773, -0.0209743679, 0.00931117218, 0.00783792604, 0.0202635918, -0.00215171417, 0.0175497178, -0.00706899492, 0.0146807646, 0.0258334931, 0.00121558935, -0.0154949268, -0.00122608943, 0.0102674896, 0.00686222361, 0.0193589665, 0.00427758181, 0.0201731287, 0.00261371885, -0.00182863406, 0.00738561386, -0.00239725527, -0.0046782014, 0.00878132, 0.0215429887, -0.0241793226, -0.00676529948, -0.0212716013, -0.00781854149, 0.0198758952, -0.00478158705, -0.00737269036, -0.00385757769, -0.0174592547, 0.00224702293, 0.000256848783, 0.00849054847, -0.0220211465, 0.0205866713, -0.00662314426, -0.0318686329, -0.0338588059, -0.00157743914, -0.0107650328, 0.028508598, -0.0136856781, -0.00630652579, -0.00269125821, 0.0232230052, 0.00179955678, 0.00188355765, 0.00455220044, -0.00517251436, -0.012910285, 0.00976348389, 0.00246510212, -0.014977999, 0.0126647446, 0.0103191817, -0.0374773033, 0.00369603769, 0.0126582831, 0.0334452651, 0.00965363719, 0.00768930931, 0.0184155721, -0.0184155721, 0.0127228992, 0.0106681082, 0.0139312185, -0.00143770699, 0.0112819606, 0.000516928325, -0.00462004729, -0.017640179, 0.0278624371, -0.0298526119, -0.0211552922, 0.00459743151, -0.0021597913, 0.00433573639, -0.00210971385, -0.00136097544, 0.0122899711, 0.00240210141, 0.0113982698, -0.0119410446, 0.00772161735, -0.0112561146, -0.00267833495, 0.0135047529, -0.00354742073, -0.000596083, 0.00179471064, -0.00692683971, -0.0177435651, -0.0136986012, -0.00137955253, -0.016968172, 0.0200309735, -0.00374773052, 0.0204832852, -0.00187386526, -0.0271904301, 0.0112625761, 0.00479451055, -0.0361849852, 0.0129490551, 0.0126582831, -0.0177564882, 0.00388019346, -0.00869085733, -0.0150555382, -0.0379425399, 0.0144869164, 0.00381880812, -0.0164900143, -0.0129167465, 0.0224863831, -0.0037865, -0.059756916, 0.00203540525, 0.0159213934, 0.0154561577, 0.0145773795, -0.0126647446, 0.00962779, 0.0145773795, -0.0094533274, -0.0106681082, -0.0227706935, -0.0155078499, 0.0153656946, 0.00447143, -0.0140862977, -0.0138666024, 0.00526297651, 0.000903009204, -0.000111967485, 0.0173687916, -0.00461681606, 0.00558605697, -0.00119782, -0.00874255, -0.000669179892, 0.00220017624, 0.0151330773, 0.0262341127, -0.00650683558, 0.019746663, 0.00275910506, -0.0162444729, 0.0106164161, 0.025122717, 0.00324372528, -0.00991856214, -0.0239079352, 0.015624159, 0.0205995943, 0.0136469081, 0.0023487932, 0.0341172703, -0.0112173455, 0.0166321695, -0.00384142366, -0.014977999, -0.00475574099, 0.00336649595, 0.00178340275, 0.0182475708, 0.00780561799, 0.000677256903, 0.00698499428, -0.00412896508, 0.0117342733, -0.0114047313, 0.00452635391, 0.00182701857, 0.0267510414, -0.00792838819, -0.0219048392, -0.019010039, 0.00808346737, 0.0141638368, -0.00326472567, 0.00236333185, 0.00763761625, 0.00214363728, 0.000480581832, 0.00926594064, -0.0073339208, 0.0249288697, -0.0247608684, 0.0107650328, -0.00530174654, -0.0199922044, 0.0028737986, 6.87050269e-05, -0.000377398072, -0.00815454498, 0.00958256, -0.0017704796, -0.0193072744, -0.00483004935, -0.0111656524, -0.0144223012, 0.0188678838, 0.00728868973, 0.017006943, -0.0334969573, -0.0178727973, -0.00337941898, -0.0174980238, 0.00199340493, -0.0161669347, 0.00333095691, -0.00655206665, -0.0113788852, -0.0200051274, -0.0114951944, 0.0100348713, 0.00878132, 0.003395573, -0.00728222821, 0.0350735895, -0.0113271922, -0.0345049687, 0.00793485, 0.00175432558, -0.00100477948, 0.00670714537, 0.0157016981, 0.00375742279, -0.00133997516, 0.00912378542, 0.0082967, -0.0029093374, -0.00367019116, 0.00763761625, 0.0268802736, -0.00138036022, -0.00949209649, -0.00140701432, 0.0128650544, -0.00293033756, 0.00280918251, -0.0070754569, 0.0268027354, -0.0144869164, 0.0260402653, 0.009156093, -0.013608139, 0.00426142802, -0.00774746342, -0.00686222361, 0.0211552922, 0.00721761212, -0.0193201974, -0.00307249278, -0.0319461711, -0.00818039104, -0.00282210577, 0.00845824, 0.00832254626, -0.0117278118, -0.0190229639, 0.0173817147, 0.0212457553, -0.0010839341, -0.00801885128, -0.0299043041, -0.0198242012, 0.0249547157, 0.00221148413, 0.0212199092, -0.0103062587, -0.00543097826, 0.00343111181, 0.0177177191, -0.0111785755, 0.0140216816, -0.0041709654, 0.00266218092, 0.0162057038, 0.0124450503, -0.0100994874, -0.00399650214, -0.0123028941, -0.00415481161, 0.0124321263, -0.0169164799, 0.00745023, -0.0130524402, -0.00346665061, 0.0113788852, -0.021698067, 0.0325147919, 0.0052759, 0.0150684612, -0.0105841076, -8.50104843e-05, -0.00471374, 0.00684283907, -0.00115581951, 0.0072628432, 0.0297233798, 0.00362172909, -0.000905432273, 0.00328734121, -0.0165934, -0.00535667, -2.10380749e-05, 0.0348926634, 0.00424204301, -0.0020854827, -0.022460537, -0.013226904, 0.0097957924, 0.0251356401, -0.00810285192, -0.00958256, -0.00770223234, 0.0046782014, 0.00801239, -0.00202732836, 0.00275910506, -0.0415868834, -0.00812869798, -0.00365080638, 0.000808912097, -0.00237948587, 0.00030591659, -0.0057475972, 0.0272679701, 0.00421296619, 0.00463620108, -0.00295618386, -0.00994440913, -0.00796715822, -0.0280433632, -0.00514020631, -0.0164641682, 0.0248254836, -0.0191005021, 0.00426465878, -0.00269448897, -0.023055004, 0.0102545656, -0.0211682152, 0.0232488532, -0.00726930471, -0.0024747944, -0.00730161276, 0.00923363212, -0.0342981964, -0.0170327891, 0.00832254626, -0.0255879536, -0.0158309303, -0.0100930259, 0.00855516363, -0.0159343164, 0.002041867, 0.00384788541, 0.00107747247, -0.0151589233, -0.00697853277, 0.00934348, -0.0134142907, -0.0402428731, 0.00657468243, 0.0012196278, 0.00151524623, 0.0104871839, -0.0218531452, -0.0152106164, 0.00156774675, 0.00106131856, 0.0108038019, -0.0199405104, -0.0168389399, 0.00980871543, -0.0110687278, -0.0114951944, -0.0153269256, -0.0212716013, 0.0281984415, 0.0216334518, -0.00136501389, 0.0182217248, 0.0297750719, -0.0141121438, 0.0418711975, -0.0217885301, -0.0105194915, -0.00967302173, -0.0245282501, -0.00998964068, 0.00259271869, -0.00257333391, -0.00351188192, -0.00754715363, 0.0104419524, 0.00247317902, -0.0096988678, -0.000749546103, 0.014977999, -0.012541974, -0.00205802103, -0.0071271495, 0.0104161063, 0.00395450182, 0.0135176759, 0.00369603769, -0.00575405871, -0.019061733, -0.000180521063, 0.0161540098, -0.0260144193, -0.00736622885, 0.00862624217, -0.00717884256, 0.00267510419, 0.00468466291, -0.0121930474, 0.0301110763, 0.00320818648, -0.0304212328, 0.00162024726, 0.0215042196, -0.0299301501, -0.00700437883, -0.000973279122, 0.00731453625, 0.00452635391, 0.00630329503, 0.0110105732, -0.0220211465, 0.00133432134, 0.0331868, -0.0168389399, -0.0114628859, -0.0115985796, 0.00114128087, 0.0110364202, 0.00315649365, 0.0187774226, 0.00264925766, -0.0134013677, 0.0154561577, 0.00142882229, -0.0109071881, 0.000312983961, -0.00353772845, -0.0108167259, -0.00200148183, 0.0126518216, 0.00640345, -0.0127810529, -0.0146290725, -0.0138149103, 0.00677176146, -0.00139570655, 0.0139958346, -0.0182088017, -0.00807700492, -0.00153301563, -0.0247220974, -0.0392865539, -0.0027381049, 0.00341818877, -0.00703022536, 0.0135176759, 0.00923363212, 0.00431312108, 0.0073468443, 0.0148875359, -0.00878778193, -0.0179503374, 0.00474281749, -0.00344403507, 0.00132382114, -0.0140992207, -0.00587359816, -0.0140733737, -0.0261436515, -0.00761176972, 0.0165934, 0.0111139594, 0.0208322126, -0.000924009422, 0.0363659076, 0.0104419524, -0.0139182955, 0.000307733892, -0.0363917537, 0.00673945341, 0.00232779304, 0.00230356189, 0.015598313, -0.0223054588, -0.00931117218, 0.0119410446, -0.0214525256, -0.0214008335, -0.0230162349, -0.01188289, -0.0122447405, -0.0225122292, -0.000531466969, -0.00379296183, -0.00956963561, 0.00567975035, -0.00968594477, 0.0139441425, -0.0154303107, -0.00450696889, 0.000884432113, -0.0153527716, -0.0276556667, -0.0100219483, -0.0106810322, 0.0036669604, 0.000205357865, 0.01836388, 0.0090462463, 0.00499158911, 0.00313064735, -0.021749761, 0.00137712946, 0.00175432558, -0.00406434899, 0.0161540098, 0.00418711966, -0.0126130516, -0.0231842361, -0.0157275442, -0.00765053928, -0.00900101475, -0.000893316814, 0.00521774543, -0.0154044647, -0.00635175686, -0.0036669604, 0.00581221329, 0.026466731, 0.010855495, -0.00882655103, 0.00355065148, 0.00245056348, -0.00480420282, -0.00543744024, -0.00985394698, -0.00454896921, 0.0140862977, 0.0159601625, 0.00821269862, -0.000524601492, 0.00603513839, 0.000771354, 0.00724992, -0.00335034193, -0.000203540534, 0.00509497477, 0.00728868973, -0.0228223857, 0.0204832852, 0.00878778193, -0.00574436644, -0.00164043973, -0.00773454038, 0.032540638, 0.0150296912, 0.00357972877, -0.0137244472, 0.00670714537, -0.0106939552, -0.00232779304, 0.0191909652, -0.0207288265, -0.00875547342, -0.0193848126, 0.00762469321, 0.0133496746, 0.00730807427, -0.0134918299, 0.0178727973, 0.0215300657, 0.0260661114, -0.014939229, 0.0289479867, -0.00683637755, 0.00416127313, 0.00287218322, -0.0177177191, -0.00730161276, 0.00242956332, -0.0061772936, -0.0051918989, -0.00521774543, 0.0153269256, 0.0186740365, 0.0014546687, 0.0289479867, -0.000538332388, 0.0253682584, 0.0121348929, -0.00676529948, 0.00766992429, -0.000673622242, 0.00715945754, -0.0290513728, 0.0142155299, -0.00241017831, -0.00770869385, 0.00838070083, 0.0158050843, -0.0352286659, 0.000654641306, 0.0138536794, 0.00576698175, -0.0152235394, -0.0041709654, -0.00229871576, -0.0136598311, -0.00372511498, -0.0190229639, -0.0219436083, 0.0322304815, -0.0175626408, -0.0100284098, -0.0179374143, 0.00220179162, -0.0181312617, 0.0178857204, 0.0182088017, -0.0283535197, -0.0102997972, 0.00412896508, 0.0199922044, -0.014977999, -0.0176660269, -0.014952152]
|
18 Nov, 2024
|
How to Delete an Element from the Set in C++?
18 Nov, 2024
In C++, the set container stores unique elements in the sorted order and the deletion operation should not disrupt this sorted order.
C++ provides a built-in function set erase(), which can be used to easily delete the given element by passing its value to the function. Let’s take a look at the simple example:
C++
#include <bits/stdc++.h>
using namespace std;
int main() {
set<int> s = {1, 5, 6, 8};
// Erase an element from set
s.erase(6);
for (auto i : s)
cout << i << " ";
return 0;
}
Output1 5 8 Explanation: The element with value 6 is removed from the set and the order is preserved.
Frequently Asked Questions – FAQsWhat happens if an element does not exist in set?If the element does not exist in the set, erase() does nothing and returns 0, indicating that no element was removed.
What is time complexity to delete an element from set by passing its value?The time complexity to delete an element from set by passing its value is O(log n), where n is the number of elements in set container.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?
|
https://www.geeksforgeeks.org/how-to-delete-an-element-from-the-set-by-passing-its-value-in-c/?ref=next_article
|
Pandas
|
How to Delete an Element from the Set in C++?
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, set vs unordered_set in C++ STL, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0255404767, -0.0125366366, -0.00975566078, 0.0209240578, 0.0218584649, 0.00521989027, -0.00167692802, 0.00909378845, -0.0109570418, -0.00337888487, -0.0246728119, -0.00963329803, -0.0476992875, -0.0424043089, 0.00792578, 0.0269643348, 0.000427574938, 0.00387946027, 0.00879344344, -0.0424488038, -0.00610702159, 0.0167748425, 0.00260994514, -0.0209463052, 0.00413809111, 0.0260299277, -0.00541455857, 0.0150061417, -0.0023485336, -0.00323149306, 0.0143943271, 0.0286774151, -0.0168860815, -0.00501966, -0.0460974462, 0.00948868692, 0.016307639, 0.0338611528, 0.00741407974, 0.0284549389, 0.0109347943, 0.0121139279, 0.0313916467, -0.0118024582, 0.00311191124, 0.0309466925, 0.0156624522, -0.0274092909, 0.027142318, 0.0103619136, 0.00909935, 0.0158293098, 0.0365976319, 0.0129482206, 0.00496404059, 0.0126145035, 0.0326820202, 0.00701361941, -0.051436916, -0.0313916467, 0.00188828213, -0.00668546418, 0.0208906848, -0.0319255963, -0.000251156831, -0.00745857554, -0.0427825227, 0.0273203, -0.00139535428, -0.00680226507, -0.0414921492, 0.0662984475, -0.000761291943, 0.00054229016, 0.00315084495, 0.00676889345, -0.0210575443, -0.00980571844, -0.0312359128, 0.0176091343, -0.0204012338, -0.00379325, -0.00216220831, -0.0147057967, 0.0577552915, -0.00426879711, -0.0114464937, -0.0272980519, 0.0509029701, 0.0274092909, -0.037042588, -0.0190107469, 0.0358189605, -0.0216916054, -0.0066910265, 0.0222144295, 0.000307471579, 0.0198672861, -0.0276095215, 0.0381772257, 0.0102117406, 0.0099392049, 0.0032481791, -0.0240498725, -0.00871001463, -0.00651860563, -0.00949981157, 0.0364863947, -0.0403575115, -0.00684119901, 0.00712485844, -1.18408707e-05, -0.00345119019, 0.0560199656, 0.00784791168, -0.0432497263, 0.0237829, -0.0240498725, 0.00748638529, -0.0131706987, 0.021969704, -0.0145945577, 0.0361749269, 0.0352182686, -0.037042588, 0.011735715, 0.0257629547, 0.00761987176, 0.0269420873, -0.0117023438, -0.0168638341, 0.000508918485, -0.00417424366, -0.0185657907, 0.0159850456, 0.0213022698, -0.00761431, 0.0522378385, 0.0133153088, -0.0440283976, -0.0242723506, -0.00978903286, -0.0165968593, 0.0154733462, -0.0335941799, -0.00573993288, -0.000648662448, 0.0130149638, -0.0229152348, 0.0175646394, -0.0318366028, -0.0252957493, 0.0118247066, -0.0198895354, 0.0046970672, 0.0105398959, 0.0236494131, -0.0150840096, -0.0107901841, 0.0039740135, 0.0222033057, -0.0236271657, 0.0120916804, -0.0457414798, -0.0426045395, 0.0417591222, 0.00272535556, 0.00201203558, -0.0555305108, 0.027142318, -0.00121250516, 0.0125032645, 0.000975427043, 0.00873226207, -0.0163632575, -0.00495847873, 0.0189551264, 0.00161018467, 0.0287886541, 0.00601803046, 0.0241833609, 0.0283437, 0.0110738436, 0.0353295095, -0.014995018, -0.0115132369, -0.0356854722, -0.0388224125, 0.045919463, -0.00341781857, -0.0192554723, 0.0279877335, 0.0134154242, 0.0437836722, -0.0039740135, -0.0201453846, -0.0155734606, -0.045696985, 0.00161991804, 0.0267863534, -0.0289221425, -0.0165189933, -0.0256739631, -0.0047387816, 0.0273870435, -0.0195558183, 0.0332159661, -0.0287441593, 0.0330379866, 0.0100504439, 0.0201787557, 0.0243168473, 0.0144388229, -0.0255627241, -0.00376822148, 0.00772554893, -0.0423153192, 0.0410471931, 0.0105398959, -0.0101338737, 0.0113241309, -0.0387334228, -0.00152536493, -0.0449405573, -0.058066763, -0.0442731231, 0.00187854876, 0.0292336103, -0.000578442821, -0.041314166, 0.00924396142, 0.0149393985, -0.0108680511, 0.00889912061, 0.0128147332, -0.00518929958, -0.0393118635, -0.0354407467, 0.0281657167, -0.00247228704, 0.00456914213, 0.0201787557, -0.00808707625, -0.0341726243, -0.00792578, 0.058778692, -0.0132930614, -0.0231154654, 0.014283088, 0.0205680933, 0.0138937524, 0.0196559317, -0.00635730941, 0.0333049595, -0.00209407439, -0.0114464937, 0.00253207795, -0.0116356006, -0.0135489106, 0.016496744, -0.0121473, 0.0173532851, -0.0225259, -0.0098669, 0.0222033057, -0.0405354947, 0.0346620753, -0.0249397848, 0.021179907, -0.043116238, 0.0199785251, 0.0209018085, 0.00551189296, -0.00397679443, 0.0100504439, 0.00372928777, -0.0172531698, 0.0119359456, -0.0133486809, -0.00420483435, -0.00175618578, -0.0314583927, 0.0131150791, 0.0383997038, 0.051436916, -0.00562035106, -0.0128703527, -0.0232267044, -0.0258074496, -0.000304342975, 0.00160740362, -0.0383107141, -0.0014182973, 0.00894917827, 0.0464979038, 0.0454745069, -0.037598785, -0.035574235, -0.0455634966, -0.0184879228, -0.0145723103, -0.0351070315, 0.035018038, 0.0520153604, -0.039133884, -0.00948312506, 0.0215247478, -0.0104898382, 0.0153287351, -0.0407802202, 0.0356854722, -0.0291223712, -0.0111628342, 0.00192443479, 0.0407134779, -0.0203456152, 0.022981979, -0.0227261297, -0.0636732057, -0.019945154, -0.00444399845, -0.00733621232, 0.00713598216, 0.0377322696, 0.00765324384, 0.000161383461, -0.0338834, 0.0312359128, 0.00655197771, -0.0233379435, -0.00725834537, 0.00655753957, -0.0138492566, 0.0528607778, 0.00526438607, -0.0487226844, -0.00843191706, -0.0178649854, 0.0176313818, -0.0243168473, -0.0172197986, 0.00794802699, 0.0138492566, 0.0243390948, -0.00730284071, -0.00127924862, -0.0281657167, -0.0432497263, -0.0121473, -0.00260438328, 0.000553414051, -0.0324150473, 0.0316363722, -0.00333717023, 0.0291223712, -0.0499240682, -0.0370203406, -0.0373318121, 0.00251956354, -0.0328155085, 0.0348400585, 0.0157736912, 0.00561200781, -0.00296730059, -0.0130817071, -0.0202677473, -0.0334829427, 0.000893388293, 0.0071526682, -0.0097667845, -0.0269643348, -0.0292336103, 0.0288331509, -0.0111239, -0.0180985872, -0.0144276991, 0.0212244019, 0.0346175805, 0.0209685527, 9.35102871e-05, 0.010083816, 0.0199674014, 0.00868220441, 0.0255849715, 0.0307019651, -0.00665209256, -0.0108680511, 0.017019568, -0.00053533772, 0.009783471, -0.00871001463, 0.0116912192, -0.0274537876, -0.0143832034, 0.0115243616, 0.0359524488, 0.00315918773, -0.00452742772, -0.00637399498, -0.0422930717, 0.0385999344, 0.0023916387, 0.0224702787, -0.0264748838, -0.0362416692, -0.00739739416, -0.00780341635, -0.0212132782, 0.0208906848, 0.00654085353, 0.0318143554, 0.034528587, 0.00390727026, -0.000136702307, 0.0286329202, 0.0147280442, -0.0410471931, 0.0172865409, 0.0344618447, 0.0122029195, -0.0183099397, -0.0205569677, 0.00683007482, 0.00368757313, 0.0157180708, 0.0301680192, 0.0244725812, 0.0299010444, -0.0213690139, -0.0130928308, -0.0533057339, 0.0278987437, -0.0216137394, 0.0355519876, 0.0262079109, -0.0204902254, 0.0391116366, -0.00636843313, 0.0216248631, -0.0281212218, 0.0200118981, 0.00266000279, 0.0280989725, -0.00863214675, 0.0249842815, 0.045430012, -0.034306109, 0.0189106315, -0.0211131629, 0.000663610175, -0.0318366028, -0.00401016604, 0.0348178074, -0.0314583927, 0.0529052727, -0.0145611856, 0.0114131225, 0.0038182789, 0.0415366441, -0.00299511035, 0.000344145665, 0.0167192221, 0.0164633729, -0.0162408948, 0.0167637188, 0.00220670388, -0.00199117814, 0.0231377129, 0.0166969746, 0.00172837602, 0.00394064188, -0.0574438237, -0.0224146601, -0.017319914, 0.0208684374, 0.0173310377, -0.00958324, 0.0169528238, -0.013682398, -0.00945531577, 0.0061626411, -0.0119470693, -0.00297008152, 0.0103174178, 0.00540343486, -0.0303904973, 0.00926620886, -0.0145611856, -0.0548185818, -0.0117579633, -0.0241166167, 0.00414365297, -0.0216248631, -0.038088236, 0.00514480425, 0.0293226019, 0.00171586173, -0.0378435105, -0.0292336103, 0.0337276682, 0.0221699346, -0.0477882773, -0.0627832934, 0.0446290895, 0.022981979, -0.0388446599, -0.00725278305, 0.0121250516, -0.0254737325, 0.00225676131, 0.031302657, 0.0162075236, -0.0357522182, 0.00746413739, 0.00771442521, -0.0168527104, 0.0013466872, -0.00761987176, -0.0216582343, 0.00864883326, 0.00852647, 0.0121695474, -0.0166302323, 0.0430939905, -0.034862306, 0.0192554723, 0.0134932911, -0.00911047496, -0.0398235656, -0.000811349484, 0.00384330773, -0.0103563517, -0.00229708548, 0.0104453424, 0.00704699103, -0.0468093753, -0.00648523401, 0.0272758044, -0.0229597315, 0.027854247, 0.00284632808, 0.012481017, 0.0264971312, -0.0099392049, -0.0249620341, -0.0150840096, 0.00667434046, -0.00280183251, -0.0292558596, 0.0284104422, 0.0219474565, 0.0272758044, -0.0205903407, -0.00721941143, -0.0216804817, 0.0205569677, -0.0087545095, -0.0116800955, 0.00616820296, 0.0228039958, -0.00739183184, 0.0126923705, 0.0286329202, 0.0157403201, -0.00968335569, -0.0142497169, 0.004385598, -0.00503912708, -0.0353295095, 0.0457414798, 0.0315473825, -0.0222366769, 0.0293670986, -0.000933017174, -0.0066020349, 0.016385505, 0.00682451297, 0.0193110909, -0.0413586646, 0.00412974833, 0.00439950265, -0.0141384779, -0.00942750555, -0.0203344896, -0.00581223797, -0.0115243616, -0.0465868972, -0.0134376716, -0.0154955937, 0.0118692024, -0.00953318272, 0.0329489931, 0.0217249785, 0.0238718912, 0.00611258345, -0.00737514626, -0.0155845853, -0.0279209912, -0.0103507899, -0.0124921408, 0.0377767682, -0.00326764584, 0.00443287427, 0.0169194527, -0.0142274695, -0.0271868128, -0.021068668, 0.0163187627, -0.0209240578, 0.0115243616, -0.032993488, -0.00249731564, 0.0186992772, -0.020657083, 0.0200675167, 0.0158404354, -0.0017395, 0.0159071777, 0.0189440027, -0.0220475718, -0.0150951333, -0.00383496471, 0.017920604, 0.0249175373, 0.00248062983, 0.00077797781, -0.0299010444, -0.0061626411, 0.0103174178, -0.0101561211, 0.0200007726, 0.0284994338, 0.00944419205, 0.00361526781, -0.0145166907, 0.0345730819, 0.0191664807, 0.0228929874, 0.00142524973, 0.0275205299, -0.0158849303, 0.0203344896, 0.0148504078, 0.029767558, -0.000816911459, -0.00271006022, 0.0027851467, 0.0359969437, 0.027142318, -0.000793273153, -0.0333494544, 0.0171196833, 0.032348305, 0.000636495708, 0.0119248219, -0.0291446205, 0.00393786095, 0.00350402878, -0.0020189879, -0.017542392, -0.0188772604, 0.00701918127, 0.00291168108, -0.00971672684, 0.0124587687, -0.018031843, -0.0318588503, -0.0450518, -0.00388502236, 0.0123364059, -0.0591346547, -0.0199562777, 0.00958324, -0.00330936047, 0.0219252091, -0.0187660214, -0.035351757, 0.0226927567, 0.019644808, 0.00753644295, -0.00491120201, -0.00891580619, -0.00453020865, -0.00971672684, -0.00450239889, -0.0088879969, -0.0139938667, 0.00267807906, 0.00764768152, -0.0234936774, -0.01345992, 0.0284994338, 0.0387779176, -0.0171864275, -0.0270310789, 0.0039517656, 0.0147836637, -0.00244725822, -0.0110070994, -0.0171641782, -0.00759762432, 0.0125032645, -0.0188995078, -0.00350680971, 0.0312136654, 0.0275427774, -0.00461641885, -0.0135822827, -0.0228039958, 0.0107623739, 0.0139493719, 0.00927733351, -0.0356187299, -0.0140383625, 0.0144165754, -0.00464144768, 0.000803701812, -0.0195891894, 0.0321480744, -0.0135934064, 0.0104842763, 0.0303237531, -0.0117802108, 0.0246950593, 0.0304349922, -0.00441340776, -0.00421873946, -0.0396678299, 0.00444121752, -0.00160601316, -0.0146501772, 0.0272090603, 0.0247618034, 0.00394898467, -0.0242056083, 0.000191018233, 0.0282547083, -0.0332604647, -0.0171864275, -0.0380659886, -0.0126367509, 0.0033343893, -0.0163298864, 0.0141051058, -0.0243168473, 0.00149755517, 0.0332382135, -0.0164077543, -0.00318699749, 0.0195891894, 0.00445512217, 0.00982240401, 0.0570433624, 0.00231377129, -0.0124921408, -0.0401795283, 0.0326375253, 0.0064741103, 0.0172086749, 0.0120471846, 0.0384219512, 0.0137268938, -0.0254514851, 0.032570783, -0.0248062983, 0.00140717346, -0.0234046876, -0.00977790914, 0.00415199576, 0.0239163861, 0.019533569, 0.0213801377, 0.0217138547, -0.000489104, -0.0379547477, -0.0212355256, 0.00401016604, -0.000911464624, -0.00270032696, 0.027142318, 0.000336845609, -0.000248549652, 0.0165523645, 0.0436501876, -0.00605140207, 0.00679114135, 0.0313694, 0.0123920254, 0.0109626045, -0.0294560883, -0.0262746532, 0.00612370716, -0.0101394355, 0.0365753844, -0.017509019, -0.0302570108, -0.0312359128, -0.0438504182, -0.0257852022, -0.00666321674, 0.0186436567, 9.00340747e-05, -0.0134376716, -0.00664096884, 0.0236494131, -0.00896030199, 0.00156707957, 0.0288998932, 0.0197671708, 0.00450518, -0.0290778764, 0.000765463396, 0.0149838943, -0.0120805558, 0.0170974359, 0.030368248, -0.00393508, -0.0163743813, 0.0151173808, 0.0239608828, 0.0236271657, -0.0269643348, 0.0476547889, 0.00404075673, -0.018410055, 0.038088236, 0.0272313096, 0.00478049647, 0.0382217243, -0.00353461946, 0.0251622628, 0.0320590809, 0.0130372113, 0.000703586731, -0.0155512132, 0.00308966334, 0.0323705524, -0.00741407974, -0.00129384873, 0.00258908793, -0.0161630269, 0.00122641, -0.0221365616, 0.0172086749, -0.00775892055, 0.0159850456, -0.0370870866, 0.0366198793, -0.0208128188, 5.52718811e-05, -0.0029839864, -0.0157180708, 0.000882264401, 0.010534334, 0.0088879969, 0.0283437, -0.0433609635, -0.0524158217, -0.00854871795, -0.0163966306, -0.0142052211, 0.0218362175, 0.000688291329, 0.0497015901, 0.0325485319, 0.025718458, 0.0176425073, 0.0217361022, 0.00723609747, 0.00160879409, -0.0185880382, -0.013760265, -0.0191664807, -0.0393563621, 0.0144833187, -0.0168304611, -0.00208295044, 0.00483611599, -0.00306185358, 0.0269420873, 0.0291001238, -0.0545961037, -0.0164744966, -0.0268086, 0.000522823306, 0.0216582343, 0.00479162, -0.0495236069, -0.023204457, -0.0332159661, 0.0171085596, 0.0270755738, -0.033816658, 0.00627944199, -0.00803145673, -0.041803617, 0.024739556, -0.00938857254, -0.0129259722, -0.0409359559, 0.00385443168, 0.00196336838, -0.0145611856, -0.0146056814, -0.0134265479, 0.0282769557, 0.00217333203, 0.00381549797, 0.0139493719, 0.0259186886, -0.00573993288, -0.0149505222, -0.0261856616, -0.00688013248, 0.0236494131, 0.00158237491, -0.00996145327, -0.0240943693, 0.017920604, 0.00698580965, -0.0331714712, 0.0337499157, -0.0218807124, 0.00179790042, -0.00182292925, -6.10076422e-05, -0.00300067221, 0.0326375253, -0.00696912361, -0.00681895111, -0.000155213173, 0.0105065238, 0.0116467243, -0.0101171881, -0.0319033489, -0.00830955338, -0.00213022693, -0.017620258, -0.0506804921, -0.00882681552, 0.00378212635, 0.0160184167, -0.016007293, 0.0188216399, -0.000146261911, -0.00474990578, -0.0218028445, -0.00709704868, 0.0186102856, -0.00732508861, -0.0155623369, 0.0290556289, 0.0198005438, -0.0336609222, -0.00735289836, -0.0223145448, -0.00922171399, -0.010083816, -0.0398680605, 0.00447180821, 0.0122696627, 0.0241388641, 0.0222922973, 0.0155623369, 0.00765324384, -0.00441896962, -0.00695243804, -0.018443428, -0.0498350747, 0.01477254, 0.0134710437, -0.00443009334, 0.0125700077, -0.00855984166, -0.0137157692, 0.022981979, -0.0198895354, 0.00723053562, 0.00465813326, 0.0153509825, -0.0340836309, -0.0142608406, 0.0144833187, 0.027854247, 0.0216582343, 0.0172976665, 0.010834679, -0.0126145035, -0.0156958234, 0.0192109756, -0.0703920424, -0.00335107511, 0.0142385932, -0.0259186886, 0.0347733125, 0.0432497263, 0.0274092909, -0.0182988159, -0.00152258389, -0.0356854722, -0.000373345916, 0.0298120547, -0.0116133522, 0.00590679143, 0.0123475296, -0.0113408165, -0.0267196093, 0.00937744789, -0.0276095215, 0.00847085, -0.0129148485, -0.0214135088, -0.00494735502, 0.00450518, -0.0108013079, 0.00851534586, -0.0119025735, -0.0113630649, 0.0194668267, 0.0131818224, -0.00923283771, -0.0485892, -0.0161519032, -0.0124921408, -0.00291168108, 0.0182988159, 0.027832, 0.0306797177, -0.0140606109, 0.029500585, 0.00341225648, -0.012781362, 0.00185212947, 0.0134376716, -0.0339723937, -0.0331047289, -0.00824281, -0.0182988159, 0.0371315815, -0.00288109039, -0.00376265938, 0.000871140452, 0.00354852434, 0.00604027789, -0.00789240748, -0.00305907265, 0.00606252579, -0.0133598046, 0.0360859334, 0.0149282748, 0.0179428514, -0.00251678261, 0.00549798785, 0.019644808, 0.0167859662, -0.000768244383, 0.0250510238, 0.000253763981, -0.000886435853, -0.0113630649, -0.0122362906, -0.00936076231, 0.00283937575, -0.00733621232, 0.00543402554, 0.0154288504, 0.0227595, 0.0284326896, 0.0104175331, -0.00553692179, 0.0160184167, -0.0200341456, 0.0230042264, 0.00950537343, 0.0115688564, 0.00813713297, -0.0343283564, -0.0141607253, 0.00546461623, -0.0133931767, 0.0315473825, -0.0100281965, 0.039067138, 0.0390448906, 0.0244948287, -0.00168944243, 0.012970468, 0.00309522543, -0.0168638341, -0.0248952899, -0.0123030338, 0.00999482442, 0.0159739219, 0.0263858922, 0.0309689399, -0.00126395316, 0.0052449191, 0.0276095215, -0.0204012338, 0.0120026888, -0.013760265, 0.0158404354, -0.00102757034, 0.0120138125, 0.0119359456, 0.012447645, -0.010233989, 0.0146835493, -0.000770330138, 0.0156290811, 0.0266306177, 0.0206793323, -0.0186770298, 0.0259854328, -0.0148504078, -0.00335107511, -0.0270533264, -0.0254292376, -0.00105120859, -0.00154483167, 0.0176091343, 0.0177871175, -0.0190329943, 0.0047610295, -0.00300901523, -0.0289443899, 0.00386277447, 0.0199562777, -0.00920502748, 0.0127034942, -0.0282324608, -0.0112407021, 0.00474712485, 0.0370648354, 0.0252735019, 0.0113296928, 0.0317031182, -0.0234269351, 0.0175535157, 0.00803145673, 0.0155623369, -0.00510587031, 0.00581223797, 3.47187379e-05, -0.003467876, 0.0218362175, -0.00980571844, 0.0181542058, 0.0131484503, -0.0209351815, -0.0157514438, 0.0116244759, 0.00663540699, 0.0110905292, -0.00972229, -0.0183878075, 0.00305351079, -0.00612926949, -0.0150283901, 0.0202121269, -0.00144610705, -0.00537284417, -0.0254069883, -0.0173421614, -0.00960548781, -0.0270088315, 0.0117690871, -0.027142318, -0.00288387132, 0.0397568196, 0.0130817071, 0.00873782393, 0.00690238038, -0.0112963207, 0.00735846, -0.027965486, 0.0076588057, -0.0030701966, 0.0224035364, -0.000125926032, 0.0261189193, 0.00783678796, -0.00850422215, -0.00256962096, -0.0059679728, 0.00157959387, 0.0166636035, -0.0143053364, 0.0237161554, -0.0152397435, -0.00798696093, 0.0119915651, 0.0271868128, 0.00392395584, 0.0365976319, -0.00669658836, -0.00338444673, -0.0175312683, -0.00940525811, -0.0040379758, -0.0193222146, 0.00406856649, -0.00936076231, -0.00849309843, -0.00481108716, 0.0124142729, 0.0173087902, 0.00204401673, 0.0167970899, -0.0122362906, 0.00580667611, -0.00812600926, -0.00942750555, 0.00721384957, 0.00533669116, 0.00559532223, -0.0289666373, -0.00379325, 0.0240721218, 0.0170863122, 0.0281212218, -0.0291446205, -0.00106928498, -0.0183766838, 0.011846954, 0.00404631905, 0.0106122009, -0.0333494544, -0.0187882688, 0.00268920301, -0.013382053, 0.00205514068, -0.0250955205, 0.00150172657, 0.0347510651, -0.00521989027, -0.0099837007, 0.034862306, 0.021702731, 0.00689125666, -0.0167080984, -0.0239386335, 0.00206348347, 0.0014141259, 0.00432163524, 0.0122919101, 0.00215664622, 0.00667434046, 0.00592903886, -0.0157736912, -0.00389892724, -0.00845416449, -0.024517078, 0.0105677061, 0.00224841852, -0.0128036095, -0.0274760351, -0.0562869385, -0.00963886, 0.0567318946, 0.00346231414, 0.00177426217, -0.00703030545, -0.0107178781, -0.0445401, 0.00809263811, 0.0127257425, 0.0451185405, -0.000708801032, 0.0141384779, 0.0118358303, 0.0358634554, 0.0365976319, 0.00696356175, -0.0204234812, -0.0092384, 0.0282769557, -0.0190663654, 0.0126256272, 0.00962773617, -0.0242278557, -0.033816658, 0.00372372568, 0.00491398294, -0.0182876922, 0.0160517879, -0.00951093528, -0.0131818224, 0.012481017, -0.00589010539, 0.00644630054, 0.006958, 0.0296340715, 0.00372094475, -0.0220475718, -0.0242278557, 0.0245838203, 0.00415755808, -0.00100393209, -0.0214691292, 0.0111517105, 0.0138047608, 0.00241944846, -0.0192332249, 0.0100170728, 0.027364796, 0.00505859405, 0.0119136972, -0.00662984466, -0.0270088315, -0.0105565814, -0.0085987756, -0.016118532, -0.0290111322, 0.0159294251, -0.00462476164, 0.0231599621, 0.0500130579, 0.0151173808, -0.00315084495, 0.00535893906, -0.00417146273, 0.0327487625, 0.00164216582, 0.0114798658, -0.0198672861, 0.00656310143, -0.0288776457, 0.00592903886, 0.0143609559, 0.00423820596, 0.0110404715, 0.00111239008, 0.0465424024, -0.0138603803, -0.0218918361, 0.00271006022, 0.00739739416, 0.0022136562, -0.00751419505, -0.0168972053, 0.0315918773, -0.000176331203, 0.0119470693, 0.00739183184, -0.00632949965, 0.00480830623, -0.00304238684, -0.00276428927, 0.00195224455, -0.0234491825, -0.00512255635, -0.00194807316, 0.000348317146, 0.0198672861, -0.0097389752, -0.023693908, 0.00799252279, 0.00733065046, 0.00523379538, 0.0121139279, -0.0100281965, -0.0118803261, -0.0242056083, -0.00866551884, -0.0269198399, 0.00802033208, 0.0141718499, -0.00975566078, -0.0061626411, 0.0284326896, 0.0191776045, 0.0118358303, 0.00814269576, 0.0231154654, 0.000293219084, -0.00447180821, 0.0158293098, 0.00610702159, -0.00395454653, 0.0316141248, 0.016530117, -0.0114576174, 0.0110182241, 0.0259186886, 0.00711373473, -0.00948312506, -0.0066465307, 0.0225259, -0.0191219859, 0.025718458, 0.00919390377, 0.0146724246, -0.00944419205, 0.0169750731, -0.00818719063, -0.00415755808, 0.0107011925, 0.00230264734, -0.00468872394, -0.0145611856, 0.0349957906, 0.0160295404, 0.0106177628, 0.0215136241, 0.0064741103, -0.00300345314, 0.0165968593, -0.0208906848, -0.00841523055, 0.0178872328, 0.00997813884, -0.0112351393, -0.00396845164, -0.0159850456, 0.0153732309, -0.0061403932, -0.0126812467, 0.00763099594, 0.0157291964, 0.00145862147, -0.0061626411, -0.0188550111, -0.0202566236, 0.0208128188, -0.0151396291, 0.00825949665, 0.023805147, 0.0106177628, -0.0150840096, 0.000451213215, 0.00964998361, 0.0175757632, -0.00890468247, 0.0138270082, 0.0342393667, 0.027854247, 0.00874338578, -0.0149616469, -0.00167553755, -0.0054173395, 0.0161630269, 0.0282547083, -0.00320646446, 0.019566942, -0.0191664807, 0.00940525811, -0.0228039958, -0.00646298612, -0.0177537464, -0.0284549389, 0.00738070812, 0.00371538289, -0.00439950265, 0.00224841852, -0.0300345328, -0.0147502925, -0.00898811221, -0.0106400112, 0.0172309224, 0.011958193, -0.00670771208, -0.0159516744, -0.00135016348, -0.0275872741, 0.00494179269, 0.0406467319, 0.00114715227, 0.0180540904, -0.0243835896, -0.0156179564, 0.0448515676, -0.000360136299, -0.00167553755, -0.00728059281, -0.025607219, -0.00349290483, -0.00277402275, -0.00719160168, -0.00388224144, -0.00449683703, -0.0199117828, 0.00602915417, -0.00178677659, 0.0307464618, 0.00922171399, -0.00810932368, 0.0160962846, 0.00543402554, 0.0561534502, 0.014694673, 0.00617376482, 0.0280767251, 0.0052449191, -0.0064296145, 0.00534503441, 0.00879344344, 0.0252957493, 0.0166302323, 0.0213801377, -0.00151006947, -0.0176425073, -0.00294505269, 0.0153843546, -0.0269865822, 0.0232489519, -0.00535615813, 0.00443843659, 0.0333939493, 0.00121876237, -0.0078590354, 0.00118678121, 0.00921058934, -0.0129927164, 0.0275650267, -0.00106650393, -0.00235687639, 0.00431051152, 0.00222617062, -0.037598785, -0.0471653379, 0.00607921183, -0.0225259, 0.00544793, 0.0211131629, -0.00555916922, -0.0178427361, 0.00068203418, -0.014283088, -0.0204902254, -0.00214830344, 0.0379102528, 0.0209463052, -0.0188772604, 0.0052032047, 0.0174200293, 0.00909935, -0.0107401265, -0.0125255119, -0.00182988169, 0.0140272388, -0.0115688564, -0.00433832128, 0.0209796764, 0.0203344896, -0.00544793, -0.00849866, -0.0133931767, -0.0022136562, 0.00233045709, 0.00170473778, -0.00730284071, -0.0014919932, 0.0035540862, 0.0196670573, 0.0264081396, 0.00310078729, 0.0120805558, -0.0226705093, 0.0162853915, 0.0149393985, 0.0408024676, 0.00706923893, 0.021780597, 0.00938301068, -0.00545905437, 0.00818162877, -0.0162631422, 0.025718458, -0.00502522197, 0.0136267785, 0.00769217731, 0.00688569434, 0.00207599788, -0.00327598886, -0.0138492566, -0.0175757632, 0.00369591592, 0.00349290483, 0.0222033057, 0.0219808277, 0.0120360609, 0.0513479263, -0.0148504078, 0.0300345328, 0.0217472259, 0.0182209499, -0.0048472397, 0.0198672861, 0.00965554547, 0.0179984719, 0.0133264335, 0.015784815, -0.0018896726, 0.0191108622, -0.0057955524, -0.0323260538, -0.000373345916, 0.00344284717, -0.0138492566, -0.0193444639, 0.0257852022, -0.0216137394, -0.00144054519, 0.00477771554, -0.0112184538, 0.0102840466, -0.0118247066, -0.0134932911, 0.0118135829, 0.00592903886, 0.00914384611, -0.00606808765, -0.025829697, -0.0022359041, -0.01120733, 0.0252957493, -8.89477524e-05, -0.00766992941, 0.0087990053, 0.0111683961, 0.00501409825, 0.0157625675, -0.00068481511, -0.0265861228, -0.0152286198, -0.0113018835, -0.0084263552, 0.0177203733, 0.00381271704, 0.00748638529, 0.00721941143, 0.0120249363, 0.0125366366, -0.000538466324, -0.00573993288, -0.0015003361, 0.00404075673, 0.0105677061, 0.0116689717, 0.0132819377, 0.0230487231, -0.0103563517, 0.009783471, -0.00140230672, 0.000710539171, 0.00113185693, 0.00171586173, -0.0150728859, -0.0237161554, -0.0138381328, -0.0118692024, -0.00344840926, 0.00474990578, 0.0118024582, 0.0129259722, -0.00852647, 0.0080982, 0.0267196093, 0.00845972635, 0.0287219118, 0.00897698756, -0.00554526458, -0.00220531342, 0.0115577327, -0.00105051335, 0.0100003863, 0.0168304611, 0.011468742, 0.0188550111, -0.00393786095, 0.00777004473, -0.00321758818, 0.0144276991, -0.00490564, -0.0184990466, 0.00575661846, -0.00883237738, -0.0179873481, 0.00891024433, -0.00625719409, 0.00594016304, -0.0174645241, 0.0168415848, 0.0114909895, -0.0175757632, 0.0141496016, -0.00451630354, 0.0108847367, 0.0099837007, 0.00142107834, -0.0139048761, -0.00586785749, -0.00493901176, 0.00523657631, 0.00654085353, 0.0175312683, -0.0114019979, -0.00119234307, 0.0313249044, -0.00983909052, -0.00196754, -0.0437614247, 0.017620258, -0.0157736912, -0.0194000825, 0.0202010032, 0.00581780029, -0.0115577327, -0.0147280442, 0.00103869417, -0.000689334236, 0.00120485749, -0.0192554723, 0.00957767852, -0.0017255951, -0.0111183384, 0.0114576174, 0.00197449233, -0.0059012291, 0.00779785449, 0.0265861228, 0.00933851488, 0.0120360609, 0.00388502236, -0.00170473778, -0.0254737325, -0.0262969, -0.0057733045, -0.0397123247, -0.013793637, -0.0137825133, 0.00990027189, 0.0163298864, 0.0125143882, 0.0110070994, -0.00615707925, -0.00299232919, -0.0118024582, -0.0172197986, -0.00979459472, -0.0163521338, 0.0170306917, -0.00832624, -0.00908266474, -0.00978903286, 0.00459695188, 0.00137171603, 0.0131818224, -0.0110404715, -0.0191776045, 0.0183321889, -0.0385999344, 0.0169305764, -0.0422263257, -0.0444956, 0.00440784544, -0.00703586731, 0.001012275, 0.000959436409, -0.00564816035, -0.0213356409, -0.00924952328, -0.0096110506, 0.0286774151, -0.0106733823, 0.0047193151, 0.00890468247, -0.00505025079, -0.0319923386, 0.0203344896, -0.000178330039, 0.01345992, 0.0367088728, 0.0106900688, 0.0157736912, 0.00217750366, 0.00727503095, -0.000293740508, 0.0200675167, -0.0111183384, 0.0273425486, 0.000357355311, 0.00119720981, 0.00566206547, 0.000405674742, 0.0156847, -0.0144388229, 0.0106900688, 0.00261689769, 0.00878788158, 0.00659091119, -0.0199785251, 0.018932879, -0.00103382755, 0.00213300786, -0.0149616469, 0.000906597881, 0.0074196416, -0.017920604, -0.0015350983, -0.00685232272, 0.012670123, 0.0179762244, -0.0108458027, 0.0236271657, 0.0102284271, 0.0159739219, -0.00878232, -0.0101338737, -0.0125477603, -0.00703030545, -0.0131484503, 0.00616820296, 0.015173, 0.0120249363, -0.0254514851, 0.0224814042, -0.0114242462, 0.0174534, 0.00938857254, 0.000437655981, -0.0146835493, -0.00142524973, -0.0228484925, -0.00218445598, -0.0150840096, -0.00366532523, 0.0140272388, 0.0159071777, 0.00288943318, -1.00864663e-05, 0.00359023898, -0.0194334537, 0.0102840466, -0.00396010885, 0.00325930282, 0.00133486814, -0.0341726243, 0.00181041483, -0.000466856203, -0.000828730583, -0.00506971776, 0.00865995698, 0.00512811821, 0.00977790914, 0.0177759938, -0.0173087902, 0.00276011787, -2.74404028e-05, -0.0119470693, 0.00891024433, -0.00108179939, -0.0174534, 0.0052226712, 0.0316586196, -0.00153092679, -0.0252067596, -0.00699693337, 0.00518373773, -0.0145723103, 0.015173, 0.00347621902, -0.0049556978, 0.0082928678, -0.000777282577, 0.00838742126, 0.00584004773, 0.00595128676, 0.013382053, 0.0150951333, 0.0198561624, -0.00756425271, -0.0118135829, 0.0034039137, 0.0144499466, -0.00172003312, 0.00196475885, -0.0138937524, -0.0255182274, -0.00158376538, -0.0134043, 0.0100949397, 0.00808707625, -0.00550911203, 0.00111308531, 0.0198450387, 0.00356799108, 0.0435167, 0.0114909895, 0.00131470605, 0.00884906296, 0.0185657907, -0.0125032645, 0.0258964412, 0.00339000882, 0.00457748491, 0.00081274, -0.00551745482, 0.020657083, -0.00815938134, 0.0098669, 0.00948868692, -0.0127257425, 0.0148504078, 0.000458860915, -0.00155456515, -0.00888243504, -0.00750863319, -0.0137491412, 0.000495708839, -0.000848197436, -0.0122029195, 0.0103674755, -0.0105510196, 0.00574549474, 0.00625719409, -0.0183099397, 0.0104509043, 0.00371260196, 0.00456914213, 0.0155845853, 0.0137380175, -0.0102562364, -0.00298120547, 0.00183822459, 0.012369778, -0.0263413973, -0.0151396291, 0.0059679728, -0.00439950265, -0.0162853915, -0.00476937229, -0.00412140507, 0.00417702459, -0.0130594596, -0.000251330639, -0.0140494863, -0.0204902254, 0.0132819377, 0.00847085, 0.00304516777, 0.0317698605, -0.00949981157, 0.00917721819, 0.00876007136, -0.00600134442, -0.0015003361, -0.00437169289, 0.0138158845, 0.0136045301, 0.0160184167, 0.0103062941, 0.0146724246, 0.0216026157, 0.0162742659, -0.00909935, 0.00950537343, 0.00757537642, -0.00503634615, -0.000978903263, 0.00634062337, -0.0216582343, 5.16218533e-05, -0.00386833656, -0.0265638754, -0.0292113628, -0.00316196866, -0.0291223712, -0.0174645241, -0.0102061788, 0.00179511949, 0.0297008157, 0.00996145327, -0.00375153543, -0.00191052991, -0.0139271235, 0.00485002063, -0.00813713297, 0.0170640629, -0.00847085, -0.0064073666, -0.00521154748, -0.0048917355, 0.0170751885, 0.00871001463, -0.00605140207, 0.00597353466, 0.0362194218, 0.0109681664, 0.0163632575, 0.0227817483, 0.0157403201, 0.0257407054, 0.000464770477, 0.000181458629, -0.0057733045, 0.0131373266, -0.0114242462, -0.0238273945, -0.0140272388, -0.00754200481, -0.00454967516, -0.0172865409, 0.00540065393, 0.00253068749, -0.00729171699, -0.0232712012, -0.00669658836, 0.00527272886, -0.0047610295, -0.000600690662, -0.0370203406, 0.0115688564, -0.00634618523, -0.00229708548, 0.00620157458, -0.0101394355, 0.0167303458, 0.00376544031, -0.0216916054, 0.00242501032, 0.000558280793, -0.0338389054, 0.0292113628, 0.00830399152, -0.00182988169, -0.000609728799, 0.0217138547, -0.0148949027, 0.00163938489, 0.0155400895, -0.00939969625, -0.0066242828, -0.00690794224, 0.00521989027, -0.0106622586, -0.0234936774, -0.00735846, 0.00124379119, -0.00477215322, 0.0136935217, -0.018031843, 0.00533391, -0.00965554547, -0.0107123163, 0.000640319544, -0.0131484503, 0.0185101703, 0.0103118559, 0.00357077201, 0.00191887282, -0.0234491825, -0.00405744277, 0.0176425073, 0.00633506151, -0.0258741938, -0.0212688986, 0.00755869038, 0.00918278, 0.0187993925, 0.0283881947, -0.0103674755, 0.00862102304, -0.00764768152, -0.006958, -0.0152731156, -0.00643517636, -0.00614595506, -0.0254959799, 0.0069135041, -0.00714154402, -0.00383218378, 0.0117913345, 0.0415143967, 2.85484475e-05, -0.0129593443, -0.00224563736, 0.00684676087, 0.0156958234, -0.012447645, -0.00964998361, 0.000332326541, -0.00406300463, -0.00500297453, -0.0113130072, -0.00321202632, -0.0130483359, 0.0208573136, -0.0112128919, 0.00740295602, -0.00236104801, -0.0118024582, 0.0298120547, -0.0194668267, 0.0207349509, 0.00980571844, -0.000424446334, 0.0100560058, -0.00973341335, 0.00339557067, 0.0120360609, 0.0166858509, -0.0123364059, -0.00202176906, -0.00781454053, -0.00473600067, 0.00580111425, -0.00649079587, -0.0169750731, -0.00483333506, -0.0222811736, -0.0341948718, -0.00970560312, 0.00891024433, 0.023315696, 0.00490564, 0.00720828772, 0.00323983608, 0.00154761272, 0.00902148336, 0.0290333815, 0.0242723506, 0.00276985136, -0.0176425073, -0.00724165933, -0.011546609, 0.0138047608, 0.00399904232, -0.0233824383, 0.0260076802, -0.00409915764, -0.00894917827, -0.00651304377, -0.00991695747, 0.0102284271, 0.0141607253, -0.00563425571, -0.0109125469, -0.00228457106, -0.00865439512, -0.000752949039, -0.008248372, 0.0151507528, -0.00568709429, -0.00314250193, -0.00446902728, -0.000243682953, 0.00705255289, 0.0225370228, -0.00311191124, 0.00900479779, 0.0262301583, -0.00755869038, 0.0149060274, 0.00691906642, -0.00782010239, -0.00898254942, 0.0105565814, -0.00997257698, 0.000951788737, 0.00466925744, -0.0107568121, -0.00274482253, -0.0148504078, -0.0170084443, 0.00777004473, -0.00974453706, 0.012481017, -0.0127591137, 0.011657848, -0.00360136293, 0.0143164601, -0.0101783695, 0.00197310187, -0.0298343021, 0.00970004126, -0.0172642935, 0.000967084139, -0.00956099294, -0.00612370716, 0.00748638529, -0.00829843, 0.00306185358, 0.0123475296, 0.0104008475, -0.0395565927, -0.0135377869, 0.00227622828, 0.0209018085, -0.0112685114, 0.0201565083, -0.0253624935, -0.0228262451, 0.00794802699, 0.0234046876, -0.0212132782, 0.00337888487, 0.0136267785, -0.00649079587, 0.0031786547, 0.0100671304, -0.00731952675, 0.021780597, 0.0182543211, -0.0129370969, 0.00494179269, 0.00274621299, -0.00208573136, -0.00224702805, 0.0129815917, -0.0178538598, 0.0121473, 0.00175757636, -0.0197782964, -0.00991695747, -0.00696356175, -0.00158793677, -0.0140383625, 0.0250732731, -0.0057510566, 0.0137268938, -0.000211701728, 0.0116022285, -0.00154344121, 0.0282324608, 0.0141162304, 0.0163521338, 0.00261272606, 0.00815938134, 0.0140494863, 0.0234714299, -0.0171419308, 0.00769217731, -0.00250148727, -0.0258519445, 0.0166191068, 0.0212021545, -0.00213300786, 0.0177759938, -0.0047610295, 0.0141162304, -0.00615707925, 0.0168193374, 0.00442175055, 0.022080943, 0.010083816, 0.00830399152, -0.00136337313, -0.00432997849, -0.0120805558, 0.0199562777, 0.00458304724, -0.0290333815, -0.00466647651, 0.0276985131, 0.00708592497, -0.00119720981, 0.0264748838, 0.0141829737, -0.0136156548, 0.0185101703, 0.020545844, 0.0198227912, 0.00214830344, 0.0127257425, -1.60992386e-05, -0.00488895457, 0.0069802478, 0.00122710527, -0.00369591592, 0.00540899672, 0.0187882688, -0.0027197937, -0.0212355256, 0.0190107469, 0.000958741177, 0.025340246, 0.0173421614, -0.00719160168, -0.0166858509, 0.00671327394, 0.00622382248, 0.0061403932, 0.0173644088, -0.00279905158, 0.0224591549, -0.00477493415, -0.00396845164, -0.00681338925, 0.036063686, -0.00884906296, 0.00676889345, 0.00228039967, -0.00568431336, 0.0097667845, -0.0233601909, 0.00281017553, -0.00987246167, -0.00601246813, 0.000471375301, 0.0048694876, 0.00154066028, 0.00452742772, 0.00340947555, 0.0118914498, 0.0210019238, 0.00206487416, 0.0166191068, 0.00216359878, 0.0442286283, 0.0154177267, -0.0294115935, -0.0290778764, 0.0145500619, -0.00219418947, 0.0240498725, -0.0111294631, 0.00621826062, 0.0255182274, 0.0123586534, -0.0342171192, 0.00303404382, 0.00247089635, 0.0175312683, 0.0106177628, -0.0191664807, -0.0209685527, 0.00124935305, 0.0153621072, 0.0175646394, -0.00531722466, 0.0204123575, 0.00322871213, -0.00686900876, 6.23546803e-05, -0.00773667311, 0.0142274695, -0.0174867716, -0.0090604173, -0.00122015283, -0.00540899672, -0.00543124462, 0.017319914, 0.0116689717, 0.0495681, 0.000983074773, -0.0165523645, 0.0352627635, -0.00243057241, -0.00436335, 0.0222478, 0.00163660385, 0.02144688, 0.021068668, 0.0148392832, -0.00996701512, -0.00882681552, 0.027854247, -0.00587341934, 0.0104675908, 0.0211354122, -0.0310801789, -0.0406467319, -0.0216359869, 0.0265416279, 0.00204540719, -0.012447645, 0.000559323642, -0.00221226574, 0.00122293388, -0.00428548269, 0.00167414709, 0.0126367509, 0.00407134788, -0.00822612457, 0.0186214093, -0.0123252822, 0.00663540699, 0.0127368663, -0.00584004773, 0.0201453846, -0.00168249, -0.0212466512, 0.0103062941, 0.0104954, -0.0141273541, -0.015184124, 0.00896586385, 0.00271006022, 0.00987246167, 0.0326375253, 0.00247228704, 0.00773111079, 0.00320090237, -0.0143053364, -0.00420761527, -0.00177843368, -0.00597353466, -0.00272257463, -0.0376210324, -0.0173087902, -0.00659091119, 0.00658534933, -0.00596241094, 0.00088852155, -0.0174867716, 0.0274760351, 0.00656866329, -0.00409637624, -0.00654641539, 0.00548130227, -0.00761431, -0.00591235328, -0.000588176248, 0.0261411667, -0.000634409953, -0.00868220441, -0.0163298864, 0.00563425571, 0.0026335835, -0.00614595506, -0.0128036095, 0.000387946027, 0.000252025871, -0.001012275, -0.0099837007, 0.0169305764, -0.00123475294, -0.00933295302, -0.015896054, 0.00318699749, -0.0185769144, 0.0194334537, 0.0208573136, 0.0206125882, 0.00585117191, -0.00314250193, -0.00135294441, 0.000432789268, -0.00887687318, -0.0143164601, -0.00382940285, 0.0230709706, 0.000211354112, 0.00980015658, 0.000743910845, -0.029166868, -0.0177092496, 0.0288109034, 0.00104981812, -0.00567597, 0.00977790914, 0.0216359869, 0.0103897229, -0.00438837893, -0.010345228, 0.023582669, 0.0138158845, -0.0295673274, -0.0039962614, -0.00593460118, -0.00397957535, -0.0182209499, -0.0197782964, 0.0147280442, -0.0174422767, 0.0179094803, 0.0105287721, 0.00453298958, 0.00773111079, -0.00656866329, -0.000466856203, 0.0182654448, 0.00145305949, 0.000465118093, 0.00926620886, 0.000400112796, -0.00387389841, 0.016307639, 1.818497e-05, -0.0121028041, 0.00533669116, 0.0109236706, 0.00306741567, -0.00316753075, 0.00448571285, 0.0110349096, -0.0295673274, 0.027832, 0.027631769, 0.00711929658, -0.00963329803, 0.0166302323, -0.00815381948, -0.0543291308, 0.0224146601, 0.00290890015, 0.00295061455, 0.00602359232, 0.0259631835, -0.00374597358, -0.00198283535, -0.0218807124, -0.00736402208, -0.0132930614, -0.0059457249, -0.00694687618, -0.00507806055, -0.027854247, 0.00652416795, -0.019155357, 0.00187020586, -0.0102506746, 0.0177982412, -0.0075865, 0.0014614024, -0.010906985, -0.000291133329, 0.00832624, 0.00551745482, 0.00752531877, -0.0160962846, -0.00322315027, -0.00793134142, -0.0346398279, -0.0239608828, -0.0144165754, -0.00489729736, -0.00642405264, -0.0170974359, -0.00429382548, -0.0153509825, 0.00605696393, 0.0233379435, 0.00405188091, -0.00108527555, -0.0012625627, 0.0148170358, -0.0076588057, -0.0130817071, 0.0028977762, -0.0240276251, 0.010384161, -0.0181208346, 0.0170863122, -0.0185991619, 0.0105621433, 0.00447458914, -0.0290778764, 0.0240721218, -0.0185769144, 0.0117468387, 0.00455523748, -0.0252512544, -0.00269615534, 0.0123475296, 0.0240053777, 0.00644073868, 0.00234992406, -0.00805370416, 0.0123364059, -0.00716379192, 0.00856540352, -0.024628317, -0.0100003863, 0.00264887884, -0.00285606156, 0.000844026, -0.00687457062, -0.00419371063, 0.0255182274, -0.00153648877, -0.00873226207, 0.00218167505, -0.00691906642, 0.0167303458, -0.0161630269, 0.0138826277, 0.0157514438, -0.00261828816, -0.0111517105, 0.00597909652, -0.00290890015, -0.00159906072, -0.00735846, -0.0142942127, 0.023204457, 0.0153621072, -0.015595709, 0.0397790708, -0.0119025735, 0.0255182274, -0.0198227912, 0.00957767852, -0.0176425073, 0.0126145035, 0.00438003568, 0.0201231372, 0.00521154748, 0.000549590215, -0.0011846954, 0.00705255289, 0.0174089037, -0.00310356822, 0.00556751247, -0.00652973, 0.0222144295, 0.0178538598, -0.0106511349, -0.0162631422, 0.0177871175, 0.000638233789, -0.00291168108, -0.0118024582, 0.00550633064, -0.0078757219, -0.0176313818, 0.0102951704, -0.0057288087, 0.00937744789, -0.0114019979, 0.0127924858, -0.00823724829, -0.0138492566, 0.00123336248, -0.0210909154, -0.00209268392, 0.00681895111, -0.00612926949, -0.00151424098, -0.0231154654, -0.0213022698, 0.000486323028, -0.0191219859, -0.00889355876, 0.0126367509, 0.00379881216, -0.0215803683, -0.027965486, 0.00803145673, -0.00810932368, -0.0135155395, -0.0073473365, 0.00670771208, 0.00171447115, -0.00223173248, -0.0130372113, 0.000262975955, -0.0176981259, -0.00325096, 0.00829843, -0.00314528286, -0.0108902985, -0.0189662501, -0.0199896488, 0.00835961103, -0.0186881535, -0.00563425571, 0.0216471106, 0.0133375572, -0.0027893181, 0.00272813672, -0.0027420416, -0.00128063909, -0.00232767616, -0.0066687786, 0.0187993925, 0.0165634882, -0.00429660687, 0.00382105983, 0.0112407021, 0.0231154654, 0.0011068281, 0.00315084495, -0.00214413181, 0.0028977762, -0.00122293388, 0.00625163224, 0.0140606109, -0.0219252091, -0.00187576772, -0.0157514438, -0.0171085596, 0.00755312853, -0.00260577374, 0.00229013315, -0.0141940974, -0.0276540164, -0.0042326441, -0.0113130072, -0.0147614162, 0.0226927567, -0.00872113835, 0.00868220441, -0.0182098262, 0.0191998519, -0.00125074363, 0.00538118696, -0.00928289536, -0.0118135829, 0.00780341635, 0.0188105162, 0.0104509043, 0.000582614273, 0.00944975391, 0.00925508514, 0.0123920254, 0.0202788711, 0.00607921183, 0.00688013248, -0.0128258578, -0.00197032094, 0.00753644295, -0.0143387076, 0.00907154102, -0.0243168473, 0.0064518624, 0.0033816658, -0.0156847, 0.00691906642, -0.0257852022, -0.0113908742, 0.00271423184, -0.0031174731, 0.00953874458, -0.00748638529, 0.0256517157, 0.00494179269, -0.00252651586, 0.0089714257, 0.0180207193, 0.0138492566, 0.00884906296, 0.0108513655, 0.00359302, 0.0139271235, 0.00728615513, 0.00566206547, 0.01072344, -0.00752531877, -0.00330101745, 0.00575661846, 0.00017659193, -0.0211910307, 0.0114131225, -0.00927177165, 0.00548130227, 0.0142274695, -0.00721941143, -0.0126367509, 0.000735567941, 0.00681338925, -0.0117802108, 0.0110571571, -0.0141496016, -0.00551189296, -0.0149505222, -0.0110571571, -0.0198672861, -0.025607219, 0.00917165633, 0.0230264738, 0.0114131225, -0.00921615213, -0.0133598046, -0.0204012338, 0.0145945577, -0.0158404354, -0.00144471659, -0.0218362175, 0.0119136972, -0.0196225606, 0.00236521941, -0.00600134442, -0.0161964, 0.00509752752, 0.00380437402, 0.00886574853, -0.00705255289, -0.00230820943, 0.00206070254, -0.0138603803, -0.0265861228, -0.00954986829, 0.0109125469, 0.00163660385, -0.0402462743, 0.000803701812, 0.0102896085, 0.013916, -0.0059012291, -0.00902148336, 0.00295061455, -0.00824281, -0.0145166907, -0.00748638529, -0.00986133795, -0.0420260951, 0.042359814, 0.011735715, -0.0133598046, 0.00517817587, -0.00359302, -0.01477254, 0.000793968386, -0.0243613422, -0.0250732731, 0.00641849078, 0.00219558, -0.00922727585, -0.00161157514, 0.025340246, -0.0240943693, -0.00878232, 0.0079202177, 0.00217333203, 0.0103952847, -0.00909378845, 0.0217361022, -0.00583448587, 0.0198450387, -0.0140717346, -0.0248062983, 0.00493066898, -0.0255404767, -0.0105232103, 0.00848753657, 0.0164522491, 0.0139716193, -0.0269865822, -0.00111030438, -0.00188689167, -0.0223924126, -0.0185991619, -0.0120805558, 0.00691906642, 0.00887687318, -0.00143081171, -0.00328155071, 0.00728615513, 0.00270588882, -0.00986133795, -0.0134265479, -0.0113296928, 0.00797583722, 0.011285197, -0.0145389382, 0.00749750901, -0.0162853915, -0.00864327047, 0.00600134442, 0.00125282933, -0.0269198399, 0.0271200705, 0.0111683961, -0.0187882688, -0.0141496016, 0.0321703218, -0.0078312261, -0.0174978953, 0.00242222939, 0.0146501772, -0.00292002386, -0.0145389382, 0.00751975691, -0.0208906848, -0.00795358885, 0.0194668267, -0.00583448587, 0.00898254942, -0.0185101703, 0.00427435897, 0.0131262029, 0.0170751885, 0.00678557949, 0.00903816894, -0.0217472259, -0.0314806402, 0.014283088, 0.0055480455, -0.0193333402, -0.00531722466, -0.0105621433, -0.0177537464, 0.0159739219, 0.000548547367, 0.0161074083, 0.00681895111, -0.0216137394, -0.000359788653, 0.000117843825, 0.0212132782, 0.00866551884, -6.83077e-05, -0.0283659473, -0.00891024433, -0.0184656754, -0.0120916804, 0.00303960592, -0.00179790042, -0.00783678796, 0.0132930614, 0.00158515584, 0.00312859705, 0.00944419205, -0.00430216873, -0.00240693404, 0.00578442821, -0.0126589993, -0.0219140835, -0.0032036833, -0.00389058422, -0.0301235225, -0.022603767, -0.00460251374, 0.0356632248, -0.0108513655, 0.0216582343, -0.0101672448, 0.0372205712, -0.019044118, -0.0116912192, -0.0238273945, -0.0217249785, -0.0127146188, -0.0113853123, -0.00408803346, 0.00167275663, -0.0208684374, -0.00709148683, 0.0280099828, -0.0164411254, -0.013571159, 0.00100671302, -0.00468316209, 0.014995018, -0.0194000825, 0.00210797926, -0.018665906, -0.0238941386, -0.00760874804, -0.0089714257, 0.0128481053, -0.0115911048, -0.00792578, -0.0057288087, 0.0129370969, -0.0190774892, -0.014805912, -0.0159961693, 0.00567040825, -9.09900336e-05, 0.00151146, 0.00518929958, -0.0120694321, 0.0218584649, -0.024739556, -0.0230487231, -0.0018201482, -0.00669658836, 0.0187882688, -0.0189217553, 0.0237161554, 0.00249731564, -0.0141940974, -0.0112740733, 0.00781454053, 0.000980293727, -0.00220670388, -0.011173958, 0.0059012291, 0.0059902207, 0.013682398, 0.0426045395, -0.00917165633, 0.00611258345, -0.00490564, 0.013871504, 0.0012625627, -0.0161630269, -0.014883779, 0.00527829072, -0.0290556289, -0.00430494966, 0.0121250516, -0.023805147, 0.0314583927, -0.0161407795, -0.000953874493, -0.00383774564, 0.0214357562, 0.0132151945, 0.0149393985, -0.0230042264, 0.0227595, 0.01120733, -0.019533569, -0.00349568576, -0.00569543708, 0.00901036, 0.00986133795, 0.0258074496, -0.00226371386, 0.00517539494, 0.0110070994, 0.0037543166, -0.0118692024, 0.0105398959, 0.00995589141, -0.0175646394, -0.00343450438, 0.00466647651, -0.00107137067, -0.00327598886, 0.0109570418, 0.00718047796, 0.0102451127, -0.0144054517, 0.00652973, -0.00380159309, -0.0150061417, 0.0160851609, -0.000126881991, 0.00417980552, 0.00874338578, -0.000309383497, 0.0157959387, -0.00671883579, 0.0142274695, 0.0137046454, -0.00126395316, 0.0285884254, 0.00854315609, 0.0282102115, 0.00641292892, -0.00832067803, 0.00266417419, -0.00103591324, -0.00591791514, -0.0320813283, -0.0100726923, 0.00925508514, -0.00237634336, -0.00685788458, 0.00745301368, 0.0119025735, -0.0177871175, 0.00387111749, 0.0238273945, 0.0136156548, -0.00108388509, -0.00736402208, -0.00892136805, -0.00299511035, -0.016908329, -0.00631837547, 0.0421595834, 0.0193667114, -0.00341503741, 0.00203150231, 0.0079202177, -0.0120138125, -0.0137491412, 0.00414087204, -0.0311914179, -0.0107734976, -0.00207043602, -0.00423542503, 0.0028755283, -0.0197782964, -0.00288943318]
|
07 Aug, 2022
|
How to traverse a C++ set in reverse direction
07 Aug, 2022
Given a Set, the task is to traverse this Set in reverse order. Examples:
Input: set = [10 20 30 70 80 90 100 40 50 60]
Output: 100 90 80 70 60 50 40 30 20 10
Input: set = [1 2 3 4 5]
Output: 5 4 3 2 1
Approach: To traverse a Set in reverse order, a reverse_iterator can be declared on it and it can be used to traverse the set from the last element to the first element with the help of rbegin() and rend() functions.
Get the set.
Declare the reverse iterator on this set.
Traverse the set from the last element to the first element with the help of rbegin() and rend() functions.
Below is the implementation of the above approach: Program:
CPP
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Get the set
int arr[] = { 14, 12, 15, 11, 10 };
// initializes the set from an array
set<int> s(arr, arr + sizeof(arr) / sizeof(arr[0]));
// declare iterator on set
set<int>::iterator it;
cout << "Elements of Set in normal order:\n";
// prints all elements in normal order
// using begin() and end() methods
for (it = s.begin(); it != s.end(); it++)
cout << *it << " ";
// declare reverse_iterator on set
set<int>::reverse_iterator rit;
cout << "\nElements of Set in reverse order:\n";
// prints all elements in reverse order
// using rbegin() and rend() methods
for (rit = s.rbegin(); rit != s.rend(); rit++)
cout << *rit << " ";
return 0;
}
Output:
Elements of Set in normal order:
10 11 12 14 15
Elements of Set in reverse order:
15 14 12 11 10
Time complexity: O(n) where n is no of elements in the given set
Auxiliary Space: O(n)
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction
|
https://www.geeksforgeeks.org/how-to-traverse-a-c-set-in-reverse-direction/?ref=next_article
|
Pandas
|
How to traverse a C++ set in reverse direction
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, set vs unordered_set in C++ STL, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00742088, -0.00212563621, -0.0119835408, 0.0267466325, 0.0218561944, -0.00889587775, 0.00858121179, 0.0171624236, -0.0111575415, 0.0103118764, -0.0108690979, 0.0386515073, -0.0025255247, -0.0280315205, 0.0109084304, -0.000441270298, 0.00105462375, 0.0148548707, -0.0202959739, -0.0341675133, -0.00471999403, 0.0165593121, -0.00148155366, -0.000543700706, -0.0223544165, 0.0120163187, -0.030627517, 0.00542799337, -0.0270875227, 0.00105134596, 0.043266613, 0.0193781983, -0.00275988551, -0.023272194, -0.00669321371, 0.0655554757, 0.0331710689, 0.00586393708, -0.0293426309, 0.00586393708, -0.0226166379, 0.0163626466, 0.0408279486, -0.0238097478, -0.0293950737, 0.0359244, 0.0433715023, -0.00796499, -0.00815510098, 0.0109739862, -0.0142517602, 0.00617204793, 0.0266417451, 0.0311781839, 0.00903354399, 0.0126259839, -0.011996652, 0.0036547177, -0.0536768213, -0.0270875227, 0.0049756607, -0.026313968, 0.000679318618, -0.0232590828, 0.0298146289, 0.00625727, -0.0594719276, 0.0564826, -0.00452660536, -0.00529360445, -0.0381270647, 0.0138715385, 0.0297884066, 0.00132913725, -0.0109412083, 0.00710621336, 0.0340888463, -0.0178573113, -0.0498746037, 0.0388088413, -0.0436075032, 0.00196010876, -0.0286346301, -0.00753887929, 0.0368421748, 0.00311552384, -0.024793081, -0.0402772836, 0.0463608317, 0.0213055294, -0.0144353155, -0.0202041976, 0.01903731, -0.0169395339, -0.0225117505, 0.0250159688, 0.041745726, 0.0214628614, -0.0428732783, 0.0280052982, 0.0186046436, -0.00456266105, 0.00665060291, -0.0216988623, -0.00694888039, 0.0236261934, 0.0185915325, 0.00368093979, -0.0403821729, -0.0104823206, 0.0196010862, 0.0102790985, 0.00896798912, 0.0500843823, -0.0325941816, -0.0224986393, -0.00503466045, -0.0271924101, 0.0200337525, 0.010757653, 0.0291590746, 0.0133077614, 0.00951209944, 0.0444728322, -0.0539128222, 0.0108953202, -0.000644082553, 0.0117344297, -0.00787976757, 0.00606715912, 0.0182244219, -0.0250553023, -0.0261304118, -0.0286870748, 0.000687103311, 0.0393595062, 0.00616877, -0.0118589848, -0.0214759726, -0.0336430706, -0.00235016365, -0.042794615, 0.0258681905, 0.0195748638, -0.0435026139, -0.0106003201, -0.000617860351, 0.00268121879, -0.0185915325, 0.0130455391, -0.00721110217, 0.0315977372, 0.00424471684, -0.0132880947, 0.0201124195, -0.0126128728, 0.00113738747, 0.00958421, -0.018001534, -0.0301292967, 0.0372355096, -0.00338921812, -0.0128095392, -0.0269826334, -0.012796429, 0.0222101938, 0.0462297201, -0.00618843688, -0.0553288199, 0.0376288407, -0.00355966226, 0.0114853187, 0.0134388721, 0.016716646, 0.00465116091, -0.0206630863, 0.027585743, 0.00978087634, -0.00145860924, -0.0228264164, -0.0164937582, -0.0218561944, -0.0118327634, -0.00112591533, -0.00224527507, 0.0069882134, 0.0205188636, -0.00209285854, 0.0253961906, 0.0323057361, -0.01568087, 0.00452988315, 0.0120359855, 0.0482226051, 0.0127702067, -0.00373993977, -0.0362652875, 0.00587377045, 0.00397593947, 0.0311781839, -0.0397003964, -0.00770932389, -0.00551977102, 0.0132946502, 0.0324106254, -0.0345870666, -0.00115869299, 0.00159545639, 0.0143828709, -0.0373928435, -0.0243604146, -0.00409393944, 0.00951209944, -0.00510677136, -0.0162053127, 0.0192339756, -0.039674174, 0.0467279404, -0.0049133827, -0.0316501819, -0.00218791398, -0.0620417, 0.0530474894, -0.0351901799, -0.052706603, -0.0344559588, 0.0110788755, 0.0578985959, 0.0337479599, -0.00753887929, 0.00503138267, -0.00682432484, -0.0113673192, -0.0229968596, 0.0511857159, -0.0108035421, -0.0537554882, 0.00580165954, 0.0181719773, -0.00181260891, 0.00732254656, 0.0223150831, -0.0441057235, 0.0108232088, 0.042296391, 0.0543323755, -0.0175426453, -0.00433649449, 0.0113214301, -0.00358588435, -0.002289525, 0.0304439627, -0.00757165719, 0.00796499, -0.0129078729, -0.00124883174, 0.0130193168, -0.0149204256, -0.00700788, 0.027035078, 0.0228788611, 0.0422439463, -0.0180802, 0.00846321136, 0.0138584273, 0.0208204184, 0.0274021886, -0.00240752473, 0.0413261726, -0.0433190577, 0.0165330898, -0.0321221836, -0.00547715975, -0.0224593058, 0.0185259767, -0.0262877457, -0.0119769853, -0.00132504, 0.0282937419, -0.0231148601, -0.0252126362, -0.0404083952, 0.012435873, 0.00711932452, 0.026064856, -0.0545946, -0.0146057596, -0.000923512736, -0.0373404, 0.0101217655, 0.00744054653, -0.00766343484, -0.000760853232, -0.0448399447, 0.0151433144, 0.0346657336, -0.0110198753, -0.0296048522, -0.0225773044, -0.0019469976, 0.00801087916, -0.0432403907, 0.0182244219, -0.00922365487, -0.0380221754, -0.00200763647, -0.00913843326, -0.0230099708, -0.00913843326, -0.0265630782, 0.00389399519, -0.0469639413, -0.0149859814, -0.00521493796, 0.0356884, -0.0296835192, 0.0352426246, -0.0163233131, -0.0370781757, -0.00648343656, 0.0175688677, -0.0411163941, 0.0238753036, 0.0274808556, -0.0121080959, -0.0098267654, -0.0207286403, 0.0565350391, 0.0112296529, -0.0389923975, -0.00803710148, 0.00886965543, -0.0370781757, 0.0169002, 0.0111247636, -0.033511959, -0.002258386, -0.0121015403, 0.00526410434, 0.006837436, 0.0013914149, 0.0219348613, 0.00887621101, 0.0109870974, 0.00922365487, -0.0264450777, 0.00609665923, -0.0395430624, 0.00573282642, 0.0528114885, 0.000948915491, -0.0234688595, 0.00568365958, -0.0160610918, 0.0619368106, -0.00869921129, -0.0187619776, -0.0181850884, 0.018552199, -0.00666043628, 0.0320172943, -0.00480193831, -0.0274284109, 0.0086336555, 0.0141862044, -0.0341150686, -0.0164675359, -0.00553288218, 0.00593604799, 0.0224461947, 0.000884179433, -0.00314830174, 0.0134650944, -0.013832205, -0.00590654835, -0.0162184238, 0.00975465495, 0.0106199868, 0.0578985959, -0.0105937645, -0.0225773044, 0.0349017344, -0.00224199728, 0.0350590684, -0.0211350843, -0.0176213123, -0.00276971888, -0.00246324693, -0.0314666294, 0.000267138559, 0.00313355168, -0.0189848654, -0.0457839444, -0.00395955052, -0.0155759808, 0.0607305914, -0.0128029836, -0.0137142055, -0.0420079492, -0.0358457342, 0.0225510839, 0.0125538735, 0.0296572968, -0.0176344234, -0.0448137224, 0.0140026491, -0.0193126425, -0.0460723862, 0.0206630863, 0.0408803932, 0.00738154631, -0.00847632252, -0.00617204793, 0.0307586286, 0.0206237528, 0.034062624, -0.0196928643, 0.0370781757, 0.000113390481, -0.0306012947, -0.027113745, -0.019115977, -0.00516249379, -0.0122195408, -0.0209646411, 0.0236655269, 0.0276119653, 0.0336168483, 0.0161266457, -0.005998326, -0.0195224211, 0.0250946358, -0.00320730149, 0.00879754499, 0.00508382684, -0.0454692766, 0.02239375, -0.0146582043, -0.0148942033, -0.0205581971, 0.00215349742, 0.0300244074, 0.00796499, -0.0182506442, 0.0343510695, 0.0389661752, -0.0349804, 0.0242424142, 0.00398905063, 0.016952645, -0.0240981914, -0.00983332098, 0.0160348695, -0.0136093162, 0.0189455319, -0.0247013029, 0.0179490894, -0.0233901925, 0.054699488, 0.0445777215, -0.00453316094, 0.0270875227, 0.0017355812, -0.0447350554, 0.0285821874, 0.0110329865, 0.0153399808, 0.0103905424, -0.0181719773, 0.00984643213, -0.0157726463, -0.0263401903, 0.0175688677, 0.00418571709, 0.0459674969, 0.0107248751, -0.00572954863, -0.0360292904, -0.0222101938, -0.0204795301, 0.0350590684, -0.0134782055, -0.00503138267, -0.042794615, 0.0074929907, 0.000683006074, 0.0102069872, -0.0339052901, -0.0458363891, -0.027900409, -0.0135044279, 0.0364488438, -0.0355310664, -0.0252519678, -0.00697510224, 0.0190897547, -0.048537273, -0.0106462091, 0.00152826204, 0.0104298759, 0.0432141684, -0.0521559343, -0.0419292822, 0.0329350717, 0.018067088, -0.0317288488, -0.0578985959, 0.0115639856, -0.020309085, -0.0100168763, 0.0110460976, 0.00524116028, -0.0214628614, 0.0110657644, -0.00414310582, 0.00780765712, -0.00637854775, -0.00353671773, -0.0465968326, -0.00324991252, 0.038231954, -0.0122785401, 0.0122195408, 0.0416670591, -0.0200861972, 0.0456003882, 0.00142501213, 0.0148417596, -0.00380221754, 0.00166592852, -0.0010120126, 0.00589671498, -0.00685710274, 0.0228264164, -0.0103053208, -0.0253044125, -0.0111116525, 0.00316469045, -0.0249766354, 0.0143697597, 0.0230493043, 0.0279266313, -0.0094268769, 0.00810921192, -0.0443679467, 0.0246095248, 0.00404805038, 0.0199026428, -0.015916869, 0.000862873916, 0.0239539705, 0.0288181864, 0.00532310456, -0.00283199642, -0.0119900964, 0.00441843877, 0.000642853382, 0.00461838301, 0.00707343547, -0.0132422056, -0.0134192053, 0.0390448421, -0.000561728491, -0.0116295414, -0.0174115337, 0.00883032195, -0.00404805038, 0.0323581807, -0.0317288488, 0.0286084097, 0.00365799549, -0.00195683097, 0.0165068675, -0.0149597591, -0.00336299581, 0.0262221899, -0.00681121368, 0.00839765649, -0.0337741785, -0.0251733027, 0.0102004316, -0.0286870748, -0.0258550793, -0.0308897402, -0.00878443383, 0.0134388721, -0.039097283, 0.00742088, -0.00775521249, -0.0129734287, -0.0076306574, 0.0215808619, 0.0401986167, 0.0028172466, -0.00301391282, -0.0135044279, -0.0244128592, 0.00131602609, -0.0300506297, -0.00719143543, 0.0340101793, 0.0136355385, 0.0109805418, -0.0424537249, 0.0139239831, -0.0403821729, 0.0171755347, 0.0172542017, -0.0094268769, -0.023744192, -0.0374977328, -0.00186996988, 0.00169297017, -0.00351049565, 0.0072766575, 0.00614254782, 0.00803710148, 0.0220921952, -0.0372355096, -0.0283724088, -0.0264975224, -0.0138453161, -0.00496254954, 0.0286084097, 0.000651457522, 0.0441843905, -0.00784043502, -0.00183391443, -0.0163888689, -0.0131504284, 0.0111772083, -0.000565006223, 0.0084828781, -0.0287132971, -0.0265106335, 0.0285821874, -0.0131045394, 0.0115836523, -0.0203746408, 0.0584230386, -0.0134650944, 0.0152350925, 0.00757165719, 0.0359506235, -0.0125079844, -0.0274546333, 0.00366455107, 0.00651949178, 0.0149204256, 0.0181064215, -0.0330924019, 0.0182899777, 0.000501089671, 0.000254437182, 0.0126456507, -0.0123768738, -0.00391366193, 0.0173984226, 0.00366455107, 0.00929576624, 0.0150777586, -0.00532966, 0.017752422, 0.024950413, -0.00244521908, -0.0124883177, -0.0166773126, 0.00544766, 0.01323565, 0.0032368016, -0.0446301661, -0.0245308578, 0.0209253076, 0.0238359701, -0.00679154694, -0.0158906467, -0.0248455238, 0.0192077532, 0.00824687909, 0.00091531832, -0.0124686509, -0.0103118764, 0.0160479806, -0.0198108647, -0.0163626466, -0.0122195408, -0.00649654726, 0.0090401, 0.00999720953, -0.0215284172, -0.0231804159, 0.0285559651, 0.0265630782, -0.00349738449, 0.000467492471, -0.0226559713, 0.0120490957, 0.00850254484, 0.0061491034, -0.0125997625, 0.030706184, -0.0258026347, -0.0390710607, -0.0145795373, 0.00717832427, 0.0337741785, 0.00400216179, -0.00297457958, 0.00532638235, 0.00412999466, 0.0108559867, 0.0141468709, -0.0269826334, 0.0218168609, 0.0312830731, -0.01251454, -0.000964484934, -0.0171230901, 0.0311519615, -0.0458888337, -0.0209121965, 0.0220921952, -0.010678987, -0.0172410905, 0.0124162072, 0.0144877601, -0.0295786299, -0.0196141973, 0.00538210431, -0.0010521654, 0.000160610914, 0.0408803932, 0.0109805418, 0.017516423, -0.0270088557, 0.00721765775, 0.00489371596, -0.0414048359, -0.0234426372, -0.0141075384, -0.00768965716, -0.00320894038, 0.0115705412, 0.0218561944, 0.0314666294, -0.0231673047, 0.0054935487, 0.00122588733, 0.00591310393, 0.0274284109, 0.0068046581, 0.0191028658, 0.0102004316, -0.00024235039, 5.22907321e-05, -0.0245046355, 0.0169919785, 0.00103331811, 0.035032846, -0.00487732748, 0.0218168609, 0.038153287, -0.0296835192, 0.0512119345, -0.00588360382, -0.00722421333, -0.0318599604, 0.0118852071, 0.0355572887, -0.00206171977, 0.000723158824, -0.019351976, 0.00562138204, 0.00397266168, -0.032384403, -0.0288968533, -0.00356294, 0.0185653102, 0.01903731, 0.00127915118, -0.0155235361, 0.0229050834, 0.00627038116, 0.0243735258, -0.00348755112, -0.00210433081, 0.0352164023, 0.0138846496, 0.0442368351, -0.0394119509, -0.0344297364, 0.00782732386, -0.0100430986, 0.02095153, -0.000593686767, -0.035111513, -0.0212137513, -0.034062624, -0.0471212752, -0.00434960565, 0.00916465558, 0.0063949367, 0.00108330417, -0.00342527358, 0.00832554512, -0.0212399736, -0.0283986311, 0.0197059754, 0.00695543597, 0.0207024179, 0.0262090787, -0.00213874737, 0.000415252958, 0.00992509909, 0.0326990709, 0.0139764268, 0.0419817269, -0.0156153142, 0.0132487612, -0.00132995669, 0.0387301743, -0.0266417451, 0.0117737632, -0.00947276596, -0.0306537393, 0.0093088774, -0.00825998932, 0.000266523974, 0.00606388133, 0.0125735402, -0.00627693674, 0.0289230756, -0.0141468709, 0.0304964073, 0.0205975305, 0.0193126425, 0.00810921192, 0.0231541935, -0.00165281736, 0.00318435719, 0.0110002086, 0.00834521186, -0.00877132267, -0.00877787825, -0.00342527358, 0.00304669072, -0.0452857204, 0.0347706228, -0.00748643512, 0.00377599522, 0.00419882825, -0.0424275026, -0.0116754295, 0.0248586349, 0.00041218003, 0.00964321, -0.0257633012, 9.04460685e-05, -0.0233901925, 0.0182506442, 0.0107707642, 0.0113017634, 0.00604421459, 0.0191815309, 0.0169919785, 0.0162839796, 0.00903354399, 0.00747332396, -0.0102069872, -0.0372355096, 0.00315977377, 0.00968254358, -0.00559188193, -0.00309749623, 0.0399888381, -0.00645721424, 4.18428317e-05, 0.0282937419, -0.00625727, -0.00124965119, 0.0323581807, -0.0371568426, -0.0569545962, -0.0393857285, -0.0437910557, 0.0115246521, -0.0036547177, -0.0362390652, -0.00648999214, -0.0373666212, 0.0296572968, 0.020309085, -0.0220004171, -0.0137797603, 0.0301555172, -0.00541488221, 0.0189979766, 0.00309257954, -0.00348099577, -0.0223806389, 0.0113148745, -0.0121802073, -0.0053099934, 0.0146057596, 0.0289230756, -0.00968254358, 0.0110592088, 0.0290541854, 0.0278479662, 0.0287919641, 0.0179097559, -0.0260517448, -0.031912405, -0.00845665578, 0.0140419826, -0.0112296529, -0.0331186242, -0.00389399519, 0.0306537393, 0.00157988688, 0.00466427207, 0.0332235135, 0.00718488, 0.00893521123, 0.00980054308, 0.00171263679, -0.00716521312, -0.00476588309, -0.0175033119, 0.00425127242, -0.0315190703, 0.0223675277, 0.0331448466, -0.00899421144, -0.0215021949, -0.00815510098, -0.0208597519, -0.0365275107, -0.0439221673, -0.0290541854, 0.00366127328, -0.00368093979, 0.0131963165, 0.0104167648, -0.00866643339, -0.00989232119, -0.0286608525, -0.0078142127, 0.0127374288, -0.0274284109, -0.000267958, 0.017031312, -0.0233246367, -0.0138584273, 0.00445121666, -0.0187619776, -0.0220528618, 0.00905321073, -0.0246881917, 0.0272186324, -0.0034941067, -0.0111837639, -0.00567054842, -0.0210170858, 0.039097283, -0.0252388567, -0.00473638298, -0.0061163255, -0.0200993083, 0.0136486497, 0.0160610918, 0.00862710085, 0.0401986167, 0.0263795219, -0.0231410824, 0.0350066237, -0.0356097333, -0.0162839796, 0.0106527647, 0.0297359638, -0.00620154804, 0.029185297, 0.0137666492, 0.0195355304, 0.0162839796, -0.0199157521, -0.0108953202, -0.0215677507, -0.0346657336, -0.0149466479, -0.0137928715, -0.0107838754, 0.0421390571, -0.0214104187, 0.000998901553, 0.0417981707, 0.0194175318, 0.00382188405, 0.00289919088, -0.00155448413, -0.0238359701, 0.0197453089, -0.0264188554, 0.00466755, 0.0283724088, 0.00334005151, -0.00529032666, -0.0153137585, -0.0160086472, -0.0172017571, 0.00684399158, -0.00105626252, -0.00540177105, 0.0208466407, 0.0329875164, 0.0309159607, 0.0102266539, 0.00623104768, 0.0369732864, 0.0118130967, -0.0160217583, -0.056220375, 0.0115705412, -0.00848943368, 0.00417588372, 0.00824687909, 0.00112181809, -0.00578854838, -0.0152482037, -0.0018371921, 0.00492321607, -0.000348468311, 0.0019174976, 0.0091253221, -0.0270613, -0.0108756535, 0.00532310456, -0.021593973, 0.011354208, 0.00541488221, 0.00391366193, 0.00852221157, 0.00217316393, 0.0164019801, -0.0101873204, 0.00523788249, 0.0012635818, -0.027271077, -0.0106462091, 0.00732254656, -0.000199227186, 0.00726354634, -0.00309749623, 0.0119900964, 0.00324007939, -0.0017618034, 0.00926298834, -0.010914986, 0.00125702622, 0.00668993592, -0.0218955278, -0.0284510758, 0.0197584201, -0.0135306502, -0.0296572968, 0.0322795138, 0.017267311, -0.00538210431, 0.0291328523, -0.00177983113, -0.000100893973, -0.0108887646, 0.0056312154, -0.0120032076, -0.0243604146, 0.0206106417, -0.0179490894, -0.0128816506, 0.0248324145, -0.0150122037, 0.00772243505, -0.0161397569, 0.0163233131, 0.0110067641, 0.00264516333, -0.00551321544, 0.000549436838, 0.000235180269, 0.0119245406, -0.02167264, 0.00537554873, 0.0179753117, 0.0392546169, 0.00176672, 0.0111378748, -0.00639821449, 0.0157988686, 0.0241375249, -0.0163364243, 0.00393988378, -0.0104167648, 0.0214759726, -0.000302374625, -0.0227608606, -0.000553943741, 0.0208073072, -0.0199944191, 0.0085091, -0.00260746898, 0.00245833024, 0.0185653102, 0.00613271445, -0.0115967635, 0.0143828709, -0.00972187705, 0.00711276894, 0.003128635, -0.0299719628, -0.0100496542, -0.00543782674, 3.45446606e-05, 0.00786665734, 0.0119638741, -0.00132749835, -0.00812887866, -0.0351639576, -0.00091204053, 0.0241113026, -0.00428077253, 0.0133733163, -0.0128095392, 0.0158119798, 0.00697510224, 1.44170826e-05, 0.0224330835, -0.0303652957, 0.0423750579, -0.00511988252, 0.003289246, 0.0211481955, 0.00989232119, -0.0154186478, -0.00302702398, 0.00272383, -0.0136224274, 0.0114525417, 0.00486421632, 0.0149073144, -0.0115705412, -0.0211219732, -0.0222101938, 0.00423816126, 0.00354327331, 0.0151170921, -0.0199288633, -0.00105872087, -0.00715210242, 0.00786665734, -0.0156415366, 0.011872096, 0.00218955288, 0.00492977165, 0.00625727, -0.0250553023, -0.00311552384, -0.00134224829, 0.00459871627, -0.0444990546, -0.00542471558, 0.019666642, 0.00319255167, -0.013753538, -0.00109149865, -0.00306471833, -0.0090401, -0.0323057361, 0.0162053127, -0.00306963501, 0.0155759808, -0.000803464267, 0.041824393, 0.00682432484, -0.0205713082, -0.00568038179, -0.0061064926, 0.0215546396, 0.0237966366, -0.00608682586, 0.026064856, -0.0191290881, -0.0143566485, -0.0128488727, 0.000739957439, 0.00384810637, 0.00951209944, -0.00454955, 0.0089811, -0.0204926413, 0.000663749175, -0.0109412083, -0.00386449508, 0.00791910104, -0.0214890838, -0.00573282642, -0.00891554449, 0.0262484122, 0.0225641951, 0.0251208581, 0.0150777586, 0.00598849263, -0.00759132393, -0.0230230819, 0.0142910937, -0.00761099067, -0.0123768738, 0.00353016239, -0.0125866514, -0.0073422133, -0.00193716423, 0.0202566423, 0.00397593947, -0.0196010862, -0.0258419681, -0.0156022031, 0.0261959676, 0.0134782055, 0.00466427207, -0.0145008713, -0.0210039746, 0.00192733097, -0.0276381876, 0.00158152578, -0.0124555398, 0.00604421459, 0.0331972912, -0.0105740977, -0.0047626053, 0.0298670735, 0.0188013092, -0.00637527, -0.0203746408, 0.00756510161, -0.0265893, 0.00114394305, 0.00771587947, 0.0130193168, -0.0117999855, -0.00893521123, -0.0016552757, -0.016952645, 0.00883032195, -0.00972843263, -0.0132487612, 0.000703492202, 0.0158250909, -0.0110788755, -0.0445252769, -0.0138977608, 0.0174115337, 0.0274021886, -0.00218627509, -0.00132176222, 0.00514610484, -0.00290574646, -0.0138059827, 0.00274841324, -0.0122260964, 0.00120212347, -0.0189193096, 0.037576396, 0.00478227204, 0.0276381876, 0.017031312, 0.00649654726, 0.0139633156, 0.0251733027, 0.038231954, -0.00356294, -0.000170853949, 0.0117082074, 0.0173459779, -0.0514479354, 0.00753232418, -0.00854843389, -0.0189061984, 0.0032368016, 0.013360206, 0.000157947725, 0.00765687926, 0.0106265424, 0.00220266404, 0.0140550938, 0.0285559651, -0.00576888165, -0.0217119735, -0.0409066156, 0.00268285768, -0.0248455238, -0.0149728702, -0.0146450931, 0.0222888608, 0.0196535308, -0.0257108565, -0.019837087, 0.0073094354, 0.0228133053, -0.00528704887, 0.0081157675, -0.0253306348, -0.00968909916, -0.00292705186, -0.0178835336, -0.0181457549, -0.0132225389, 0.0312830731, 0.0107052093, -0.0154186478, 0.0355310664, 0.000993984868, -0.00791254546, 0.000525673, 0.0147762038, 0.0185259767, 0.0487732738, 0.0224855281, -0.00274841324, -0.00709965779, -0.0274021886, 0.0157333147, 0.0037301064, 0.00554599334, 0.00818787888, -0.00953176618, 0.0279528536, -0.0232328605, -0.0370781757, 0.000179253257, 0.0333546251, -0.0198764205, -0.0190241989, -0.00393332867, 0.0473048314, -8.18419139e-05, -0.0159430914, -0.0130914282, -0.0176737551, 0.0413523912, -0.00608682586, -0.0311257392, 0.00335644023, -0.00775521249, 0.0101545425, 0.000167473743, 0.012311318, -0.013989538, -0.0249897465, -0.0230755266, 0.0090991, 0.00154628977, 0.0112034306, 0.01083632, 0.00766999042, -0.00230263593, -0.0305488501, -0.0173328668, -0.0213448629, -0.0200861972, 0.0100758765, 0.0273759663, -0.00768310158, 0.00485110516, 0.0220790841, -0.01155743, 0.00810265634, 0.0147762038, 0.00162413681, -0.00580821512, -0.00322696823, 0.0212399736, -0.00805676822, 0.0202173088, 0.00142255379, -0.00704721361, -0.00721110217, 0.0193126425, 0.0232459716, -0.0166510902, 0.0140813161, 0.00857465621, 0.00324007939, 0.0246881917, 0.022157751, 0.00770932389, 0.0204533078, -0.0212793071, 0.0317026265, 0.0265368558, -0.0164544247, 0.018001534, 0.021357974, 0.0238097478, 0.00646704761, 0.010554431, -0.00485438295, -0.00955143292, -0.0103446534, -0.00259599672, -0.000748561579, -0.023993304, -0.0330924019, 0.00801743474, 0.0174770895, -0.0207286403, 0.0272186324, -0.0233115274, -0.0132553168, 0.00605077, -0.019837087, -0.00663421396, 1.15234234e-05, 0.031991072, 0.0103905424, -0.00445777224, -0.0258681905, -0.00674565835, -0.0317288488, 0.00538866, 0.0159037579, 0.00640476961, 0.00742088, -0.000138076211, -0.0131176505, 0.00117835961, 0.00446760561, 0.0154055366, 0.0454430543, 0.00663093617, -0.00465771649, 0.0245701913, -0.000626054767, -0.00375632872, 0.0111313192, -0.00343510695, -9.01899912e-05, 0.00978087634, -0.000349697482, 0.0149466479, -0.0106527647, -0.0205057524, 0.0103053208, -0.0374715105, 0.00575577049, 0.0216988623, -0.00792565662, 0.030942183, 0.00862710085, 0.00858121179, -0.0241113026, -0.0156546477, 0.0116623184, 0.0139239831, 0.0107379863, -0.0151039809, 0.00697510224, -0.00137830386, 0.0150253149, 0.0411163941, -0.00818787888, 0.00621465873, -0.0234819707, -0.0124883177, 0.0417195037, 0.0114132082, 0.00231574709, 0.00435943902, -0.0311519615, -0.0271924101, -0.0228919722, -0.0116623184, 0.00196502544, 0.0281364098, -0.00444793887, -0.00137748441, 0.00382843963, 0.00510677136, -0.00808299, 0.00479538273, 0.00894832239, 0.0210826397, 0.076463908, 0.00806987844, 0.0117803188, 0.0285821874, -0.00543454895, -0.021908639, -0.0107904309, 0.000450693886, 2.07677695e-05, 0.0245177466, 0.0226035267, 0.00518871564, 0.00265335781, 0.00831899, -0.00541488221, -0.0292901862, 0.0134257609, -0.0221184175, 0.0215808619, 0.0116033191, -0.0234557483, -0.0144222043, 0.012671873, 0.0388088413, 0.0147762038, 0.0189979766, -0.00301391282, -0.00700788, -0.00580493733, -0.00187980325, -0.0085091, -0.0162708685, 0.0345870666, -0.0233246367, 0.0277430769, 0.0178048667, -0.0217906404, -0.023678638, -0.00877787825, -0.00278119091, -0.0177262, -0.00099316542, 0.033983957, 0.0111444304, 0.000676040829, -0.00470360508, -0.00659815827, 0.00864021108, -0.00650965841, 0.00431355042, 0.0193781983, -0.0148942033, -0.0240064152, 0.00254191342, 0.0189061984, 0.0046872166, 0.0128816506, -0.00424143905, -0.0192208644, 0.0134913167, 0.00510677136, -0.0231279712, -0.00605404796, 0.0170444231, 0.0085091, 0.0301555172, 0.0208204184, -0.00255502458, 0.006578492, -0.0219741948, 0.00657521421, 0.0198764205, 0.0238621924, 0.0129275396, 0.0157595351, -0.0116885407, -0.0121670961, 0.0143304262, -0.0169657562, -0.00247799698, 0.00729632424, 0.000539193803, 0.00431027263, 0.00656538084, -0.00303357956, 0.00451021641, -0.00188963651, 0.00510349358, 0.00797154568, -0.00217644172, 0.0129013173, 0.0223150831, 0.00203549745, 0.0144484267, 0.000375919684, 0.0106593203, 0.00701443572, 0.0163495354, 0.0014733593, 0.00878443383, -0.00551649323, 0.0077814348, 0.0149335368, 0.0238359701, 0.00127915118, 0.00975465495, 0.0183293112, -0.0147237591, -0.00207810849, -0.0136093162, -0.0147237591, -0.0259993, 0.0199681967, -0.00234852475, -0.00648343656, -0.00936787762, 0.00786010176, 0.0105282087, -0.0262484122, -0.0235606376, -0.0147499815, 0.00318599609, 0.00971532147, -0.00230263593, -0.00808954518, -0.00867298897, -0.00721110217, 0.0153662032, 0.00374321756, -0.00229608058, 0.0107838754, 0.0149073144, -0.0110854311, 0.0290279631, 0.0206630863, 0.00117426238, -0.00865987781, -0.0229313057, 0.00528049329, 0.0155890919, -0.00552304881, -0.0183555335, 0.00737499073, 0.0104036536, 0.00314666284, 0.00231410819, 0.0284248535, -0.0041824393, 0.0076437681, 0.0151302032, 0.00119229022, 0.00628677, -0.00207155291, -0.00973498821, 0.0132749835, 0.0197715312, -0.00183555332, -0.0201124195, 0.0117409853, -0.00345805124, 8.7578017e-05, -0.00374321756, -0.0265761893, -0.00858121179, -0.0151170921, 0.00244358019, -0.00264680223, 0.00118245685, -0.0125276512, 0.0166773126, 0.0024943857, 0.0214104187, -0.00471671624, -0.0129472064, 0.00642771414, -0.000930068316, 0.00793876778, -0.00117344293, 0.00571643747, 0.003998884, 0.0029467186, -0.00968909916, 0.0129668731, -0.000560909044, 0.000347444, -0.0109412083, -0.0133077614, -0.00920398813, 0.00661782501, 0.0062900479, -0.011714763, -0.0137273166, -0.00220430293, -0.0203484185, 0.0347968452, 0.00955798849, -0.00576888165, 0.00839765649, 0.0154842027, -0.0172935333, -0.0112820975, -0.00700788, -0.0280839652, -0.0197059754, -0.00639165891, 0.0165199786, -0.00162003969, 0.0267990772, -0.0225641951, -0.000251364283, 0.0239539705, 0.0156939812, 0.00349082891, -0.040303506, -0.00493960502, -0.00219610846, -0.000590818701, 0.00540504884, -0.0107642086, -0.00978743192, 0.00577215943, -0.00810921192, -0.000222478891, 0.0127439843, 0.00393332867, -0.0169264227, -0.0138977608, -0.0259730797, -0.000290902419, -0.026064856, -0.000841568399, -0.0107379863, 0.0125276512, 0.00246324693, 0.0123768738, -0.00810921192, -0.00677188067, -0.00729632424, -0.0175426453, 0.00879754499, -0.0283199642, 0.00466099428, -0.0142255379, 0.0129472064, -0.00544110453, 0.0111640971, 0.0111772083, -0.0122195408, 0.0296835192, -0.00517888227, 0.000719881034, 0.00354327331, -0.0165593121, 0.0122392066, 0.00789943431, -0.00577871501, -0.0163626466, 0.00587377045, 0.00944654364, -0.00217316393, -0.00194863649, -0.0144222043, 0.0213186406, -0.00761099067, 0.0332235135, -0.0132618723, -0.0248717461, 0.0155235361, 0.0085091, 0.0395955071, -0.00473966077, 0.0208204184, -0.0226035267, -0.00341216242, -0.00557221519, 0.0171230901, -0.016152868, -0.0130455391, -0.00387432845, -0.0221053064, -0.0199026428, 0.0114394305, 0.00792565662, 0.0210433081, 0.0205188636, 0.0117672076, -0.00573282642, 0.00991198793, -0.00486093853, -0.00231902488, 0.014631982, -0.0104560982, 0.0132028721, -0.00794532336, -0.0206630863, -0.00429388369, 0.0110460976, 0.00916465558, -0.00894832239, -0.000621547864, -0.00282052439, 0.0101479869, 0.0149204256, 0.0172935333, 0.0107642086, 0.0093351, 0.00291230204, -0.0176213123, 0.0205450859, 0.000212440704, 0.0200599749, -0.0236524157, -0.0140944272, -0.00202730298, -0.00374649535, 0.0157857575, 0.0123244291, 0.000102379214, -0.00684399158, -0.00383171742, 0.00859432295, -0.00513954926, 0.00755199045, -0.023993304, 0.00959732104, 0.0010103737, 0.0175819788, 0.00387105066, 0.0139502045, -0.01568087, 0.00642115856, -0.00642771414, -0.0040414948, -0.027900409, -0.0107445419, -0.0432928354, -0.00201091426, -0.0303128511, -0.0120097632, 0.02910663, 0.030627517, -0.00955798849, -1.60303625e-05, 0.00601143716, -0.00791910104, 0.00605732575, -0.0208335295, -0.0122588733, -0.0105478754, -0.016716646, -0.0121277627, -0.000462166092, -0.0239801928, 0.00119147077, 0.012075318, -0.00425127242, 0.00579838175, 0.0106396535, 0.00246816361, 0.003998884, 0.00819443446, 0.00489699375, 0.0121605406, 0.00356949563, -0.0133995386, 0.0325155146, 0.0308897402, -0.0159037579, -0.0170837566, 0.00200927537, -0.0128226504, 0.00909254421, 0.0016184008, -0.0196010862, -0.00278938538, -0.00087188778, -0.0131766507, -0.0150908697, -0.00187816436, -0.0131045394, 0.017516423, -0.00453316094, -0.0115246521, 0.0292639639, -0.0139764268, -0.0052346047, -0.00623760326, -0.00666699186, 0.0148679819, -0.0162577573, -0.0326728486, 0.0127767622, -0.0145795373, 0.00922365487, 0.00463149417, -0.00940065458, 0.0277955215, -0.0133274281, 0.0119507629, 0.0319648497, 0.0174115337, 0.00548699312, 0.0116819851, 0.0127243176, -0.0144353155, 0.0309684053, -0.0155628696, 0.0013668316, 0.00702754688, -0.0060409368, 0.00877132267, -0.0373928435, 0.0129799843, 0.00569349295, 0.0101348767, 0.00867954455, -0.014474649, 0.00306963501, -0.0089745447, 0.000281478831, -0.0323319584, 0.010397098, -0.0151564255, -0.00407755049, 0.025828857, 0.000326548208, 0.0212793071, -0.00963665452, -0.00824032351, 0.0152350925, 0.0121277627, -0.0215284172, 0.0218693055, 0.010475765, -0.0120622069, -0.0203484185, 0.00920398813, 0.00313846837, -0.00266810786, -0.00360555109, -0.00780110154, -0.0152350925, -0.0110133197, -0.00297130179, 0.0148810931, 0.0179884229, -0.00371044, 0.00393005088, 0.0326204039, -0.00682432484, 0.00579510396, -0.00430043926, -0.0104495427, 0.003998884, -0.00387105066, 0.00575577049, 0.00513954926, -0.00351049565, -0.00740776863, 0.0156415366, -0.00687676901, -0.000521985465, 0.0185915325, 0.0164413135, 0.00361866225, -0.00913843326, 0.000723158824, -0.000984971, -0.00894832239, -0.000309135037, -0.000986609841, -0.00864021108, -0.0081485454, 0.018001534, 0.00246980251, -0.000390669651, -0.027349744, -0.0273759663, 0.00877132267, -0.0365537331, 0.00257633021, 0.0178048667, 0.00448727235, 0.0382844, -0.0108953202, -0.0128357615, 0.0136093162, 0.00333349593, -0.00113984582, 0.00950554386, -0.00637199217, -0.0160479806, -0.0132290944, -0.00873198919, 0.00329416269, 0.014553315, 0.0128947617, -0.00403493922, 0.0231279712, 0.0119114295, 0.0134519832, 0.00832554512, 0.0367897302, 0.0190766435, 0.00594260357, 0.0115902079, 0.0148155373, -0.00127833174, 0.0192601979, -0.0223281942, -0.0234164149, -0.0100627653, -0.0149466479, 0.00909254421, 0.00672599161, -0.000412794616, 0.0129930945, 0.0204270855, 0.00843699, 0.0047298274, -0.00584754813, -0.00682432484, -0.00661126943, -0.0271924101, -0.00385793974, -0.00901387725, 0.00119229022, -0.00295327418, 0.0167822018, 0.0317288488, 0.00930232182, -0.0245964136, 0.0085091, -0.022708416, -0.0187488664, 0.0193126425, 0.00280249654, 0.0261697453, 0.00310405181, 0.0122064296, 0.0076437681, 0.0175295342, 0.0104823206, -0.00542143779, 0.00291230204, 0.0235737488, 0.01083632, -0.0156677589, -0.0189586431, -0.00751265744, -0.0080305459, 0.00445121666, 0.00720454659, -0.0220528618, -0.0071717687, -0.0174246449, -0.0172017571, 0.0124489842, -0.0149597591, -0.0017077201, 0.0120818736, -0.00118737353, -0.0100824321, 0.000235180269, 0.0256584119, 0.0049133827, 0.0154579803, -0.00702754688, -0.0173590891, 0.00755854603, 0.00320730149, 0.0100234319, 0.0244128592, -0.01759509, 0.00892865565, -0.000452332781, 0.00489371596, -0.02910663, -0.0121015403, -0.00926954392, -0.0060409368, 0.00593604799, 0.00122097065, -0.0113345413, 0.00398249505, 0.000769867096, 0.0248979684, -0.0125342067, 0.000828047574, -0.000324089866, 0.00158644246, -0.00670632487, -0.00243374705, -0.00554927066, -0.0118196523, -0.0081157675, 0.00795843452, -0.0143304262, 0.00196010876, 0.0175033119, -0.00150859531, 0.014395982, -0.00840421207, -0.015353092, 0.0241637472, -0.0360030681, -0.00259763561, 0.0183162, 0.0140682049, 0.0308897402, -0.00304341293, 0.0038907174, 0.0254748575, 0.0112820975, -0.0208073072, 0.0109870974, 0.013753538, 0.0111182081, 0.0212530848, 0.0117999855, -0.0282675195, -0.00446432782, -0.0119048739, -0.0194699764, -0.0116623184, 0.00653588073, 0.0329612941, 0.00296146865, 0.00126276235, 0.00712588, 0.00156759529, 0.0104036536, -0.00765032368, 0.0312830731, 0.0123375403, -0.00943343248, 0.032069739, -0.0206893068, 0.0138190938, 0.00532966, -0.00950554386, 0.00650965841, 0.00275824661, 0.00613599224, 0.0203353073, -0.00471999403, 0.00341544021, 0.021357974, 0.000233336512, 0.00171591458, -0.000146680366, -0.0156677589, -0.000744054618, 0.0104692094, 0.0170575343, 0.00311060715, -0.00215021963, 0.0218693055, -0.00626054779, -0.00341544021, 0.0327515155, -0.00522477133, 0.00837799, 0.0126325395, 0.0114525417, 0.0274284109, 0.0144353155, 0.0101020988, -0.0122588733, -0.0174902, -0.0121277627, 0.0149990926, 0.00749954628, -0.0208597519, -0.00446760561, 0.0258419681, -0.0304964073, 0.0167297572, -0.00292705186, 0.0122129852, -1.9205705e-05, 0.00615565898, -0.00415949477, 0.0168870892, -0.00670632487, 0.00358260656, -0.0237966366, 0.0120359855, 0.00054861739, -0.001064457, -0.0107707642, -0.00255994126, 0.00692921365, -0.0120949848, 0.0179622, 0.010554431, 0.0157333147, -0.0135568725, -0.00664076954, 0.0182244219, -0.00626054779, -0.0269039664, 0.00365144, -0.00264516333, -0.0201255307, 0.0249373019, 0.0237310808, -0.00780765712, -0.00243046926, 0.0216201954, -6.79625882e-05, 0.00625399221, -0.0223675277, -0.0151302032, -0.0200861972, 0.00541488221, -0.010036543, 0.00371371768, -0.0156546477, 0.0138453161, -0.0161135364, 0.0223019719, -0.010193876, 0.00480849389, 0.0258813016, 0.011150986, -0.0152350925, -0.0131635396, -0.00458232779, 0.00285166316, 0.0198764205, 0.0033121903, 0.00314830174, 0.00613271445, -0.00299096853, 0.00346460682, 0.031991072, 0.0264581889, -0.00893521123, 0.0104888761, 0.00287460745, 0.0343248472, 0.00992509909, -0.00777487922, 0.0158906467, -0.0154842027, -0.0189586431, -0.0027844687, -0.00460854964, 0.00696854712, 0.0233901925, -0.00684399158, -0.00387760624, -0.0287919641, 0.0246750806, 0.0120359855, 0.00103413756, 0.0053853821, 0.00221577496, 0.0083321007, 0.0090401, -0.00794532336, -0.00461182743, 0.0234688595, -0.028949298, -0.00881721172, -0.00162413681, -0.00970221, -0.0234164149, 0.0162446462, 0.0332497358, 0.0107838754, 0.00486749411, 0.00309421844, 0.0234688595, -0.00220921938, 0.0036022733, -1.26885689e-05, -0.00179785886, -0.000249725388, 0.0045036613, 0.0126980953, -0.000801005925, -0.020073086, 0.0104429871, -0.00818787888, 0.0208335295, -0.0150646484, 0.00620482583, 0.0169264227, -0.00838454533, 0.00232230267, 0.017516423, -0.00962354336, -0.014474649, 0.0202566423, -0.0144222043, 0.00955143292, -0.00455938326, -0.00170280342, 0.00642115856, 0.0194568653, -0.00307127391, 0.00715865754, -0.00188635872, 0.000678499171, 0.0180802, 0.00830587838, -0.0116885407, -0.00963009894, 0.000480193848, -0.00325319031, 0.0110460976, 0.0162839796, 0.0107248751, -0.0128554283, 0.00871232245, -0.0228264164, 0.000907943293, 0.0060409368, -0.0150908697, 0.0395168401, 0.0233246367, -0.0127505399, 0.0123899849, 0.00433649449, 0.0130586503, 0.012153985, -0.00883032195, -0.00759787951, 0.00792565662, -0.00266646896, -0.030942183, -0.0136355385, 0.00966943242, -0.013517539, -0.0183162, -0.0103643201, -0.0113869859, 0.0196928643, -0.00921709929, -0.0104560982, 0.0054509379, 0.0218430832, 0.0196273085, 0.00902698841, 0.00770276831, 0.00862054527, 0.0168215353, -0.00466099428, 0.016546201, -0.00795843452, -0.0131045394, 0.00648671435, 0.0170182, -0.00422832789, 0.0281888545, 0.00783387944, -0.0183162, 0.017031312, -0.00959076546, 0.00110952638, 0.0125079844, -0.00125538732, 0.0167297572, 0.0249635242, -0.0127570955, -0.0146057596, -0.0178442, 0.00797154568, 0.00457577221, -0.0151302032, 0.00746676838, -0.020309085, -0.0197321977, -0.0100299874, 0.000845665636, -0.0188013092, -0.00630971417, -0.0312830731, 0.018866865, 0.00713899126, 0.0078469906, -0.00573938154, 0.00970221, 0.00416932814, -0.0149335368, 0.0294737406, -0.0189848654, -0.00238949712, 0.0132094277, 6.59139841e-05, 0.0225904156, -0.0251995251, -0.00981365424, 0.0011816374, 0.0155759808, -0.0130193168, -0.00530343782, 0.029185297, -0.0266548563, -0.00186341431, 0.00316469045, 0.00143566483, 0.0382844, -0.0140026491, -0.0127112065, -0.00543454895, -0.0192864202, -0.000217357374, 0.00657521421, -0.0129996501, -0.0130455391, -0.00631299196, 0.00614582561, 0.00393660599, -0.00203058077, -0.00101610983, 0.0193913095, 0.0102004316, -0.00953832176, 0.00361538446, -0.0282675195, -0.016152868, -0.00304177403, 0.00380877312, 0.0130652059, 0.00326302368, -0.00651621399, -0.0123309847, 0.00776176807, 0.00122670678, 0.0133274281, 0.00922365487, -0.0143173151, 0.00104970706, -0.0139370942, -0.0110460976, -0.00245669135, -0.0116819851, 0.00191094202, -0.00955798849, 0.0112165418, -0.00810921192, 0.032069739, 0.0192995314, 0.0269564111, 0.00617860351, -0.0117999855, 0.0160610918, -0.0117082074, -0.0162053127, -0.00778799038, 0.0199288633, -0.00294344081, 0.0132815391, -0.00695543597, 0.011636097, -0.00115295686, -0.0101676537, 0.0171493124, 0.000440450851, -0.00226821937, -0.00890243333, 0.0243604146, -0.0211744178, -0.00621793652, -0.0118196523, -0.0116229858, 0.0257108565, -0.0181719773, -0.00396282831, 0.00646049203, -0.00926298834, -4.24318059e-05, 0.00252388581, -0.00319910725, -0.0122260964, 0.00778799038, 0.00543454895, -0.0246357471, -0.0110723199, -0.0032351627, 0.00809610076, 0.0291590746, -0.00544110453, -0.00512971589, 0.00275169103, 0.00661126943, -0.00831899, -0.00259763561, 0.00249602459, 0.0121474294, 0.00480193831, -0.00169460906, 0.00273857987, 0.00216824724, -0.00895487797, -0.00835176744, -0.0571643747, 0.0336430706, 0.0225773044, 0.0268777441, 5.4288128e-05, 0.0179097559, 0.00795187894, -0.0441057235, 0.0161790904, -0.00649982505, 0.002418997, 0.0223544165, 0.0296572968, -0.0110329865, 0.0110985413, -0.0059655481, 0.0304964073, 0.000574839534, -0.0244784132, -0.0157333147, 0.0150122037, 0.001709359, -0.000595325662, -0.0152350925, 0.0239801928, 0.0174902, 0.009675988, -0.00236983038, 0.00389727298, -0.0094924327, -0.00602782564, 0.0119376518, -0.0024714414, -0.0115049854, -0.024950413, 0.00334660686, 0.00205516419, -0.00852876715, -0.00173066452, -0.0276381876, 0.000510923, 0.00469377171, 0.00239933026, -0.00810265634, -0.023993304, -0.000787485158, 0.00351377344, -0.0100889876, 0.00193388644, 0.0129668731, 0.00546732638, -0.0045036613, -0.0274021886, -0.00373666198, -0.0224461947, -0.00106035976, 0.0034941067, -0.015995536, 0.00806332286, 0.0290279631, -0.0108232088, -0.0384679511, 0.0399101712, -0.00757821277, 0.00108658196, 0.00230263593, -0.00555582624, 0.00597865926, 0.00832554512, 0.0151826479, 0.000669485307, -0.00766343484, -0.00347444019, -0.00393332867, -0.00100299879, -0.0085091, 0.000545339601, -0.00293688523, -0.00515266042, -0.00492649386, 0.0151302032, -0.002128914, 0.00434305, 0.0130193168, 0.0016184008, 0.00579182617, 0.0039661061, 0.0213973075, 0.0119835408, -0.0100955432, 0.0134650944, -0.00172247, -0.000685464416, 0.0185653102, 0.0249241907, 0.00690299133, -0.00332530146, -0.0214759726, 0.0140813161, 0.0196928643, 0.0243604146, 0.00197158079, 0.0308897402, 0.000676450552, 0.02095153, 0.00516904891, -0.00796499, -0.00187160878, 0.00715865754, -0.0124555398, 0.0159037579, 0.00074979075, -0.00251569133, -0.00167002575, 0.0176475327, 0.0173722, -0.0179490894, -0.000483061885, 0.00311224605, 0.00780765712, 0.0108297644, -0.00586065929, -0.0198108647, -0.00943998806, 0.0166379791, -0.015916869, 0.0037071621, 0.0108428756, -0.00475604972, 0.0077814348, 0.016480647, -0.00428077253, -0.0039234953, -0.0179097559, 0.025265079, -0.0215546396, -0.00813543424, -0.00491010491, -0.00356294, -0.00514282705, -0.0224068612, 0.0171886459, 0.0033416904, -0.0336168483, -0.00481832726, -0.00721765775, -0.0088631, 0.00984643213, -0.0064703254, 0.00637527, -0.0274021886, -0.0147630926, 0.00696199154, -0.0192864202, -0.0111247636, -0.0162839796, -0.00248619146, -1.06079515e-05, 0.00510021579, -0.0174115337, -0.011996652, 0.0188406426, -0.0218168609, 0.00511332694, -0.0229313057, 0.00615565898, -0.0205975305, -0.0033662736, 0.00562793761, -0.0106265424, 0.0195093099, 0.0264057443, 0.0223544165, 0.00274677435, 0.0176868662, -0.00334660686, -0.0129144285, 0.002289525, 0.00434960565, 0.0228001941, 0.025514191, -0.00444466108, -0.0139502045, 0.0148942033, 0.00358916214, -0.0170444231, 0.000515839609, 0.00165609515, 0.00225183065, -0.0155890919, 0.0344297364, 0.0249110796, -0.0174902, 0.00101447094, -0.0162839796, -0.0206106417, 0.00393332867, 0.00772243505, -0.0170444231, 0.00068259635, -0.00577543722, -0.00286641321, -0.00724388, 0.010554431, 0.00705376919, -0.00518543785, -0.00343510695, -0.0132618723, 0.00585410371, -0.0216333065, -0.0102463206, -0.0273759663, -0.00409393944, 0.0106396535, 0.00100873481, 0.00987921, -0.0100299874, -0.00322369044, 0.0174246449, 0.000241326095, 0.00132094277, 0.00371371768, 0.00191258092, -0.001968303, 0.0206106417, 0.000360350241, 0.00416277256, 0.00785354618, -0.0131045394, 0.00123326236, -0.0126849841, -0.0159824248, 0.00151351199, -0.0251995251, 0.00208138628, 0.00125210953, -0.0163888689, 0.0213841964, 0.00411032839, 0.0107052093, -0.00262385793, 0.00992509909, -0.0210695285, 0.00447743898, -0.0125342067, -0.000960387697, 0.0243866369, -0.00738154631, -0.00115213741, -0.00397266168, 0.00253371918, -0.0106003201, 0.00304669072, 0.00417588372, 0.0184604209, -0.00184210879, -0.0142648714, 0.0221184175, 0.00492977165, 0.0206106417, 0.0028909964, 0.00144467875, -0.00423488347, 0.000338430138, 0.00204696972, 0.00698165782, 0.00748643512, -0.0285035204, -0.020073086, 0.0097939875, -0.00329416269, -0.0104954317, 0.0017077201, -0.0143435374, 0.0117540965, -0.00102348486, -0.0112099862, 0.010993653, -0.0083321007, -0.00824687909, -0.00125620677, -0.0280052982, -0.00667682523, -0.000108678687, -0.0195486415, -0.0141206495, -0.00951865502, -0.0180802, 0.00291230204, -0.00566071505, 0.0238359701, -0.0138715385, -0.00339577347, -0.0126784286, -0.00487404969, -0.0239408594, -0.00372682861, 0.013753538, -0.0152350925, -0.0235606376, 0.00797810126, -0.00313027389, -0.00535260467, 0.0130586503, -0.0167690907, -0.0237966366, -0.0245701913, -0.0245046355, -0.00194863649, 0.00518871564, -0.0316239595, 0.0107904309, 0.00856154505, 0.00747332396, 0.00744054653, -0.00816165656, -0.0103118764, 0.0121736517, 0.00746676838, 0.0057819928, 0.00108904031, -0.00497893803, 0.0137928715, 0.0171362013, -0.00689643575, -0.0215021949, -0.00379566196, 0.0157857575, 0.0214104187, 0.0054607708, 0.00678499136, -0.00904665515, -0.0214890838, 0.0344821811, -0.00738810189, 0.0145402038, -0.0154579803, -0.0206630863, -0.00648343656, 0.00093580439, -0.00697510224, 0.0109412083, -0.0164544247, -0.00628021453, 0.00787976757, -0.0218168609, -0.00481177168, 0.0101807648, -0.000118512005, 0.000407673098, -0.00358260656, 0.0131963165, -0.00825998932, 0.0260517448, 0.0119769853, -0.0143173151, -0.0206237528, -0.00320566259, 0.0212661959, -0.00284346868, 0.0158382021, -0.0078142127, -0.0144222043, -0.000166551879, 0.00507727126, -0.0202435311, 0.0230230819, 0.0134388721, -0.0158250909, -0.0181457549, 0.0134060942, -0.0281101875, 0.00151760923, 0.0471212752, -0.0134650944, -0.00810921192, -0.00627038116, 0.00902043283, -0.0343772918, -0.00211252505, 0.028949298, -0.00145287323, 0.00376616209, -0.0042906059, 0.00479538273, 0.00539521547, 0.0027615244, 0.011668874, -0.0190635324, -0.0112689864, 0.0149073144, 0.017031312, -0.00948587712, -0.0124948733, -0.00404477259, -0.0125538735, -0.00632938091, -0.00219938625, 0.00402510632, 0.00773554575, -0.00277791312, -0.0200861972, 0.0120622069, 0.00483471621, 0.0143173151, 0.00782732386, 0.0115902079, -0.0211219732, -0.0152219813, -0.0191422, 0.00231738598, -0.0014471371, -0.0213973075, -0.00247635809, 0.017267311, 0.0107642086, -0.0015643175, 0.0118589848, -0.0144090932, -0.00822721235, 0.00755854603, -0.00334660686, -0.00688332459, -0.0085091, -0.0135568725, -0.0248586349, -0.0149204256, -0.00812232308, 0.0316764042, 0.00408410607, -0.00452005, -0.00864676666, 0.0238097478, -0.00526738213, -0.0109346528, -0.0224068612, -0.0132553168, 0.00813543424, -0.0193781983, 0.0197190866, 0.0243341923, -0.0171230901, -0.0122457622, -0.00502810488, -0.0174508672, -0.012311318, 0.00236163591, -0.0120294299, 0.00831243396, -0.0140157603, -0.00176999776, -0.00276971888, -0.0127112065, 0.000845665636, -0.00294180191, -0.0151302032, -0.00403166143, 0.00995787606, -0.0138846496, -0.0037825508, -0.01568087, 0.00359244, -0.0164019801, 0.0104823206, 0.0171362013, 0.00100299879, 0.007997768, 0.0143697597, 0.00943998806, -0.0250553023, 0.0171230901, -0.0015274426, -0.0080305459, 0.0074602128, 0.00174705335, -0.0120622069, -0.00882376637, -0.00384155079, 0.00642771414, -0.0147630926, 0.00907287747, -0.0164019801, -0.0143828709, 0.0110329865, -0.00664076954, 0.0124555398, 0.0231148601, -0.00690299133, -0.00179949775, 0.0162446462, -0.00186177541, -0.00746676838, -0.00771587947, 0.0194044206, 0.00419227267, -0.0252913013, 0.00477571646, 0.0217381958, -0.0073094354, 0.023193527, -0.00296966289, -0.00106527645, 0.00663421396, 0.0125079844, -0.00542799337, 0.00553616, -0.00841732323, 0.00761099067, 0.0144353155, -0.0150515372, -0.0115770968, -0.0107904309, -0.00267958, -0.00623104768, 0.00909254421, 0.00446105, 0.0161266457, 0.0204270855, 0.00161594246, 0.0203484185, -0.00480849389, 0.0190241989, 0.000569922908, -0.0109018758, 0.000462575816, 0.0215153061, 0.00913843326, 0.0323057361, -0.001644623, 0.021987306, -0.0257370789, 0.0325941816, -0.0127898734, -0.00729632424, 0.00598521484, -0.00124719285, -0.00147827598, 0.0116033191, -0.0119048739, -0.00510021579, -0.0151826479, 0.0139108719, 0.027900409, 0.0214366391, 0.0209253076, 0.00742743537, 0.0297097415, 0.0103053208, 0.00124145683, -0.00792565662, 0.0344297364, 0.00825998932, -0.0311519615, -0.0076306574, -0.00573610421, -0.0106396535, 0.0327252932, 0.0128882062, -0.0220266394, -0.00919743255, -0.000330645416, 0.0155497584, 0.00218463619, 0.00443155, -0.00248127477, -0.0134388721, -0.0144090932, -0.016546201, -0.0210957509, 0.0171886459, -0.00543127116, -0.0100234319, -0.0128423171, 0.0278217439, -0.000183043172, 0.0131963165, 0.0194830876, 0.00402510632, -0.00186341431, 0.0283199642, -0.00495927176, -0.0144615378, -0.0117803188, -0.00177163666]
|
07 Mar, 2025
|
Find Maximum and Minimum Element in a Set in C++ STL
07 Mar, 2025
In C++, set stores the unique elements in sorted order so it is pretty straightforward to find the minimum and maximum values. In this article, we will learn different methods to find the minimum and maximum values in a set in C++.
As the set is sorted, the most efficient way to find the minimum and maximum element in a set in C++ is by using set begin() and set end() iterators. Let’s take a look at a simple example:
C++
#include <bits/stdc++.h>
using namespace std;
int main() {
set<int> s = {1, 5, 6, 8};
// Accessing minimum and maximum element
cout << "min: " << *s.begin() << endl;
cout << "max: " << *prev(s.end());
return 0;
}
Outputmin: 1
max: 8Explanation: By default, the set is sorted in the ascending order. So, the first element will be the smallest and the last element will be the largest. We had to decrement the set end() iterator because it points to one position after the last element.
Note: We can also access the first and last element of set container using set rbegin() and set rend() iterator.
There are also some other methods by which we can access the minimum and maximum element of set container in C++.
Table of Content
Using min_element() and max_element()Using minmax_element()Using min_element() and max_element()STL provide two function: std::min_element() and std::max_element() for finding the minimum and maximum element of any container respectively.
C++
#include <bits/stdc++.h>
using namespace std;
int main() {
set<int> s = {1, 5, 6, 8};
// Accessing minimum and maximum element
cout << "min: " << *min_element(s.begin(), s.end());
cout << "\nmax: " << *max_element(s.begin(), s.end());
return 0;
}
Outputmin: 1
max: 8This method compares all the elements one by one to find the minimum and maximum, so it is much less efficient than the first method.
Using minmax_element()The std::minmax_element() function finds the minimum and maximum element of set container in a single function. This function returns a pair, where pair first is the minimum element and pair second is the maximum element in the set.
C++
#include <bits/stdc++.h>
using namespace std;
int main() {
set<int> s = {1, 5, 6, 8};
auto p = minmax_element(s.begin(), s.end());
// Accessing minimum and maximum element
cout << "min: " << *p.first << endl;
cout << "max: " << *p.second;
return 0;
}
Outputmin: 1
max: 8Which method to use?The preferred method to find the minimum and maximum element in the set is by using set begin() and set end() iterator. All the other methods compare each element one by one for minimum and maximum, which is less time-efficient, but these methods can be preferred when you want to compare the elements based on some other parameters than the default sorting order of the set.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL
|
https://www.geeksforgeeks.org/find-maximum-and-minimum-element-in-a-set-in-c-stl/?ref=next_article
|
Pandas
|
Find Maximum and Minimum Element in a Set in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, set vs unordered_set in C++ STL, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0203324538, 0.0119987922, -0.00365611655, 0.030714985, 0.0330222137, -0.0061105513, -0.02420187, 0.01091127, -0.0275906119, -0.0017138985, -0.0253314506, 0.0145163154, -0.000228131757, -0.0450390317, 0.00627277838, -0.00758862, -0.0121730361, 0.0145403491, 0.0104966899, -0.0179170743, -0.0303064138, 0.00464750407, -0.0178329572, 0.0329501145, 0.0183857307, 0.029609438, -0.0116923628, -0.00605948, -0.0150330383, 0.00428399537, 0.0457600392, 0.01709993, -0.025643887, -0.0186621174, 0.00633286266, 0.027326243, 0.00796114095, 0.0426597, -0.0172080826, 0.0334788524, 0.00666933367, 0.0046024411, 0.0417704582, -0.0162587538, -0.00215701875, 0.0329741463, 0.00536851306, -0.0323733054, -0.00220508594, -0.0209693462, -0.0246585086, -0.0135429529, 0.0446785279, 0.0302583463, -0.0141197601, -0.00472861761, 0.00276236585, 0.0393430591, -0.0186981671, -0.0513358414, 0.033094313, -0.0177368224, 0.000497571309, -0.0366272591, -0.00143525854, -0.0318926312, -0.019707581, 0.056527108, -0.00707189692, 0.0139755588, -0.0384297818, 0.0344161652, 0.00645303074, -0.0132425325, 0.00514620217, -0.0124494229, -0.00408571772, -0.0321329683, -0.0548928194, 0.032902047, 0.00594832469, -0.00178149319, 0.0143961469, -0.00833366252, 0.0445343256, -0.00169136701, -0.00189865706, -0.0354015417, 0.0236250628, 0.0267975014, -0.0299218744, -0.0040016, -0.0204165727, 0.0280232169, -0.00317243976, 0.0284077562, 0.0237932988, 0.0156098455, -0.0407610424, 0.0373963341, 0.025812123, 0.00433807122, 0.0133266505, -0.0349929705, 0.0135429529, 0.00327458279, -0.00973963, 0.0314600281, -0.0204045549, -0.0155137107, 0.00867614243, 0.00812336802, -0.00190166128, 0.0573923178, -0.0439094491, -0.00836370513, 0.00949328579, -0.046192646, 0.0146244662, -0.0207890943, 0.0192269068, -0.00249048532, 0.027422376, -0.00340376352, -0.0683997199, 0.0071319812, 0.0121189598, 0.0116983717, 0.0164990891, -0.0012782889, 0.0184217803, 0.00908471365, -0.0115541695, -0.0266052336, -0.0116983717, 0.036459025, 0.0173522849, 0.0335509554, 0.000868966104, -0.00949929375, -0.0356418788, -0.0372281, -0.00261966605, 0.0486921445, -0.0599879511, -0.0148287527, -0.0155257275, 0.0293450672, -0.0381413773, -0.00924694072, -0.0224353969, 0.00815341063, 0.00545563502, -0.00815341063, 0.0349689387, -0.0305948164, 0.0257159881, -0.0358101167, -0.0294892695, -0.00389344874, 0.0302343126, -0.0333827175, 0.0100100087, -0.0206929594, -0.0184938814, 0.0202843882, 0.0279030502, 0.0310274214, -0.0729661137, 0.0277107805, 0.0202483367, 0.0100220256, -0.009901857, 0.00131433934, -0.022002792, -0.0191908572, 0.040016003, -0.0217023715, 0.0230602715, 0.013795306, 0.0109232869, -0.00159222831, -0.0033556961, -0.00934908353, -0.010664925, -0.0178690068, 0.0317724645, -0.0369396955, 0.0354496092, 0.017508503, -0.000767949736, 0.0139274914, 0.0103584966, 0.0180973262, 0.019551361, -0.0161986686, -0.0264129639, -0.0110795051, -0.0210774969, 0.0196354799, -0.0306428839, 0.0107971104, -0.0111455983, 0.00630882895, 0.047033824, -0.0327338092, -0.00997395813, 0.00759462826, 0.0237332135, 0.0177848898, 0.000958341174, 0.00599338766, -0.000937311735, 0.0116983717, -0.0176527053, 0.0165952239, -0.0473222248, 0.0574884526, -0.0142519455, -0.0116382875, -0.00326857436, -0.0283116214, 0.0534027368, -0.0489805453, -0.0577768572, -0.0442699529, -0.00731824152, 0.00952933636, 0.020897245, -0.000309057505, 0.0117824888, -0.00416683126, -0.0218826234, 0.0161265694, 0.00649508974, -0.00901862141, -0.0351371728, -0.0126657253, 0.00237932988, 0.0210174136, 0.00438313419, 0.0165231228, -0.0452313, 0.00480372272, -0.00779891433, 0.0409533121, -0.0100220256, -0.0278790165, 0.00542559288, -0.0204285886, -0.0193350594, -0.00943920948, 0.0365791917, 0.0120348427, -0.00847786479, -0.0018340667, 0.00193921383, 0.00271429867, -0.0039865789, -0.00161325769, -0.0135069024, 0.0183496792, 0.0198157318, 0.0119927833, 0.0252112821, 0.0251632147, 0.0584497973, -0.00371319661, -0.00035937794, -0.0406649075, -0.000993640511, 0.0149369035, 0.0136390878, -0.00752252759, 0.0154776601, -0.0149969878, -0.0131944651, 0.00309132622, 0.0249469131, -0.0337672569, -0.00364710391, -0.0471539907, 0.0341758281, 0.0135309361, 0.0433807112, -0.0130863143, 0.011758456, -0.0238173325, -0.0234207772, -0.035617847, -0.00541357603, 0.0100941267, 0.0161025357, -0.0103344629, 0.031556163, 0.015573795, -0.0250190143, -0.0163428709, -0.0497976914, -0.0033046247, -0.000230197154, -0.0271099396, 0.00389344874, -0.00610454334, -0.00194372016, 0.00101617211, 0.000346234534, -0.00284648361, -0.0197436307, -0.0513839088, 0.0168475769, -0.0338393562, -0.0310274214, -0.00980572309, 0.0111876568, -0.0360504501, 0.0357380137, -0.000721384538, -0.0177848898, -0.0173643, -0.00405567558, -0.0343440622, 0.0187943019, 0.0410734825, 0.00123172381, -0.016330855, -0.0231203567, 0.0210174136, 0.00218555867, -0.0268455688, -0.00680752704, -0.00648307288, -0.0345363319, -0.0257400218, 2.35759617e-05, -0.0326617099, -0.0394632258, -0.0102803875, -0.0105627822, -0.00364710391, -0.00562387053, 0.00992589071, -0.0103885382, 0.0273983423, -0.0161385853, -0.0149008529, -0.0137472386, -0.0278069153, 0.00273232372, 0.0152253071, 0.000647781533, -0.0136751384, 0.0159343, -0.00645303074, 0.0549408868, -0.0245263241, -0.0138313565, -0.0371319652, 0.0185779985, -0.00430802908, 0.0411696173, 0.00879030209, 0.00751051074, 0.00803925097, 0.0299218744, -0.0121129518, -0.0175325368, -0.00759462826, -0.0037101924, 0.00588223198, 0.00441618031, -0.0340316258, 0.0346084349, 0.0341517925, -0.00258511771, 0.0039865789, 0.0349929705, 0.0455437377, -0.000524233677, -0.00233727088, -0.0238293484, 0.0549889542, -0.015910266, 0.037155997, -0.0108091272, -0.0234688446, -0.0231564064, -0.00894652, 0.0157780815, 0.033166416, -0.0243821219, 0.0413138159, -0.0131463977, -0.0237211976, 0.000905767607, 0.0286961589, -0.0101662269, -0.0174844693, 0.00187762768, -0.0248027109, 0.000458892202, 0.0177488383, 0.00599639164, -0.0162347201, -0.021582203, -0.00532945851, 0.00331363734, -0.0257400218, 0.0166072417, 0.0213779174, 0.000705237, -0.00464149565, -0.0240216181, 0.0175565705, 0.00976366363, 0.00258511771, -0.0335509554, 0.0194552261, 0.0463608801, 0.0119447159, -0.0390306227, -0.0242138859, -0.0170638803, -0.0292729661, 0.00107850938, 0.0375405364, 0.00586721115, 0.0390786901, -0.0208251439, 0.00514019374, -0.0463368483, 0.0329981782, -0.0295133032, 0.0148407696, 0.00840576366, -0.0370358303, 0.0495573543, -0.01709993, -0.0134468181, -0.0369877629, 0.0147927022, 0.0485239066, 0.065083079, -0.00598437479, 0.0143480795, 0.0609492958, -0.0355697796, 0.00551271485, -0.0198277477, 0.00965551287, -0.0453995354, -0.0286240578, 0.0265571661, -0.0381654128, 0.0670057759, -0.0166913588, 0.0162347201, -0.00747446, 0.0689765289, -0.00210744934, 0.018193461, 0.00166883552, 0.01574203, -0.0432845764, 0.0338633917, -0.00196024333, 0.00362907886, -0.00662727468, -0.00708391378, 0.00365010812, -0.0227959026, -0.0237452313, 0.00970358, 0.012437406, 0.0400400348, 0.007234124, -0.0116683291, -0.0197796803, 0.0174604356, -0.0403044038, 0.0375405364, 1.50796973e-06, -0.0280232169, 0.00331363734, 0.0123893386, -0.01226917, -0.00209242827, -0.0212337151, -0.0142519455, 0.0149369035, -0.0336470865, 0.0241658185, -0.0089885788, -0.0404966734, 0.0113919424, 0.0602763556, -0.0195032936, -0.00241988664, -0.0375405364, 0.0130983312, 0.0331183486, -0.0355217122, -0.0367714614, 0.0417704582, 0.0308351535, -0.00690366141, 0.00625475356, 0.00880231895, -0.0205367412, -0.00764870411, 0.029609438, 0.0111816488, -0.0154776601, -0.00406769244, 0.0128700109, 0.0108031183, 0.000494567154, 0.00517924828, -0.0241417848, -0.0180372428, 0.0093611, 0.0100160167, -0.00684958557, 0.0363388546, -0.0207530428, 0.0258842241, 0.0139395082, -0.0401602, -0.0306188501, -0.00728819938, 0.00493590767, -0.0057470426, -0.0222070776, -0.00934908353, 0.000241275164, -0.0243941396, -0.0334067531, 0.0173522849, -0.0203444716, 0.0236490965, -0.0143480795, 0.0125095071, 0.0192389246, -0.0191307738, -0.0211255644, 0.00205036951, 0.022928087, -0.00625475356, -0.00964950398, 0.0118545899, 0.0272301082, 0.024285987, -0.0326376744, -0.0193951428, -0.0216663219, 0.0128820278, -0.0274704434, -0.0352573432, -0.0104966899, -0.0135309361, -0.0148888361, 0.0366032235, 0.00585519429, 0.0211616158, -0.00913878903, 0.000523107068, -0.002410874, 0.0306188501, -0.0281674191, 0.0234928783, 0.000440491451, 0.00116713333, 0.0252112821, 0.0158501826, 0.00310334307, 0.0263408627, -0.0114940852, 0.0153454756, -0.0442459211, -0.00909072254, 0.00359903672, -0.0300660767, 0.0358101167, -0.0521529876, -0.00611355575, -0.0103164371, -0.0396314636, -0.0182295125, -0.0317484327, 0.00101016369, -0.0122511452, 0.0191548057, 0.00590326125, 0.0313398577, -0.00590025727, -0.0154656433, -0.0108211441, -0.0182415284, -0.0240576677, 0.0114520267, 0.0438133143, -0.00657319883, 0.00473462604, 0.0122751789, -0.00963147916, -0.0173402671, 0.01574203, 0.0319166668, 0.00220358395, -0.0278549828, -0.0325175077, -0.0147566516, 0.0135549698, -0.0160664842, 0.0288884286, 0.0278069153, 0.00455437368, -0.00227418263, -0.0256198533, -0.0166913588, -0.0177248046, -0.019286992, -0.0145884156, 0.0244301893, 0.0174964853, 0.0351612084, -0.0224714484, -0.0110434545, 0.00788303185, -0.0538353398, 0.0153214419, -0.0201041345, 0.01514119, -0.01725615, -0.00111981714, 0.0118966494, -0.0208852291, 0.0095173195, -0.000638393394, 0.0470578559, -0.0470578559, 0.020909261, 0.00527237868, 0.0469857566, -0.00346084335, 0.0128459772, -0.00752252759, 0.0368675962, 0.0429240726, 0.00983576477, -0.0269657373, 0.0241898522, 0.0151532069, 0.0102803875, 0.000263431168, -0.0122331195, 0.00793109927, 0.0141077433, 0.000406694162, -0.0079010576, 0.0110975308, -0.00978168938, 0.0257400218, 0.00270678801, 0.00594231626, 0.0201041345, -0.0118786236, -0.00701181265, 0.00439515105, -0.00986580644, -0.0407610424, -0.0150450552, 0.0111155557, 0.0115721952, 0.0164510235, -0.0246344749, -0.0340556614, 0.0311716236, -0.00495393295, 0.00943920948, 0.0128099266, -0.0374684371, 0.0158742163, -0.0119807664, 0.00131433934, 0.00553975254, -0.012437406, -0.00174694485, -0.00332865841, -0.0319166668, 0.00496294536, -0.00979370624, 0.0285519585, 0.00339475088, -0.0187943019, 0.0129541289, 0.0130382469, 0.00837572198, -0.00849589, -0.0290566646, 0.00647706445, -0.0127017759, -0.0126416916, 0.000450630643, 0.0242980048, 0.0394872613, -0.014552366, 0.0136270709, -0.0107610598, 0.00172741746, 0.0223392639, -0.0097997142, -0.0225796, 0.0152373239, 0.0255958214, -0.00829761196, 0.0017875015, 0.0053054248, 0.0447265953, -0.0270859059, 0.0182295125, 0.0019752644, 0.0064229886, 0.00169737544, 0.0397035629, -0.00704786321, -0.0182655621, -0.0397516303, 0.00820748601, -0.0119807664, -0.0206929594, 0.0279751495, 0.00275635743, 0.00639895536, -0.0108031183, 0.000755181827, 0.0261485949, 0.00602042535, -0.00746845175, -0.0165351406, 0.00547966873, -0.00933706667, -0.00476767216, 0.0328539796, -0.0284317899, -0.0220989268, 0.0326376744, 0.00794311613, 0.00844782218, 0.0395353287, 0.000935058575, 0.0160184167, 0.0263648964, -0.0207049754, -0.00507410103, -0.0284558237, 0.0344882645, 0.00218706066, 0.0368435606, -0.0119927833, 0.0267254021, -0.00231774361, -0.0142038781, 0.0359062515, -0.0228079185, -0.0128219435, -0.0178209394, -0.00125350419, 0.0198998488, 0.0130742975, 0.0178089235, -0.000832915655, 0.0277107805, -0.00823752861, -0.0160905179, -0.0247786772, -0.0102142943, -0.0132665662, 0.00933706667, 0.0370838977, -0.0323973373, 0.0263408627, 0.00468956307, 0.0227238014, -0.0180853102, -0.00985379051, 0.013879424, 0.0119026573, 0.0427318029, -0.0319647342, -0.029873807, -0.0133146336, 0.00512517244, 0.0327578448, 0.0013744235, -0.0463368483, -0.0323973373, -0.0268455688, -0.030714985, -0.0122992126, 0.0259803589, 0.0115842121, 0.00421189424, -0.016414972, 0.0273983423, -0.0250430461, -0.00618866086, 0.0397996977, -0.00880231895, 0.0235289279, 0.00108076248, -0.00752252759, 0.000606098212, 0.00738433423, 0.000662051549, 0.0447265953, 0.0175806042, -0.00786500704, 0.0164990891, 0.0239855666, 0.0196595136, -0.0167634599, 0.0127979107, 0.0240216181, -0.00957139488, 0.0159823671, -0.00215101033, -0.0131584145, 0.0214259848, 0.0093611, -0.000744291639, 0.00871820096, -0.0187702682, 0.0261005275, -0.0182775781, -0.00416983571, 0.0289845634, 0.00904866308, -0.00433506677, 0.0313398577, 0.00538053, 0.0138433734, -0.0373482667, 0.0135910204, -0.00552473171, 0.00811135117, -0.027158007, 0.0317724645, -0.00867013354, -0.00973362196, 0.0240456518, -0.0161145516, 0.0135549698, 0.00406468846, -0.00235529616, 0.0413618833, -0.0668615699, -0.0309312865, -3.9453651e-05, -0.0124614397, 0.00935509242, 0.0170398466, 0.0103404708, 0.0136871552, 0.0408331454, 0.0257880893, 0.00302222953, 0.0174123682, 0.0158021152, -0.025547754, 0.00889845286, 0.000287652569, -0.010574799, -0.0170158129, 0.0206929594, -0.00316643133, -0.0114880772, 0.046961721, -0.00658521568, 0.00495994138, 0.029200865, -0.0200080015, -0.0284558237, -0.016667325, -0.0416743234, -0.00332265, -0.0200440511, -0.0194432102, -0.0176887549, -0.0193110257, 0.0203805212, -0.000918535457, -0.00570798805, 0.0061105513, 0.0234568268, -0.0151291732, 0.00298017077, 0.00701181265, 0.01997195, -0.0232405253, 0.0119146742, -0.00301471911, -0.011001396, -0.0218946412, 0.023865398, 0.0390786901, 0.00978769735, 0.0105447574, 0.00672941748, 0.0214139689, 0.0219547246, -0.00337071717, -0.018193461, -0.0153214419, 0.000813388324, 0.00461445795, -0.00237632566, -0.0128940446, 0.019803714, 0.00243941392, -0.00584017299, 0.0268696025, -0.0215341356, 0.0286000241, -0.00246494962, -0.00976967253, -0.0142759793, 0.0191307738, -0.010917278, -0.0257400218, -0.0478990339, 0.0162948035, 0.0118545899, -0.0212217, -0.0251391809, 0.0017604637, -0.00153514836, -0.0264369976, -0.0590746738, -0.0181814451, 0.0147927022, -0.00727017457, 0.0240456518, -0.0023658108, -0.0122090867, -0.0179891754, -0.0302823801, -0.0353294425, -0.00352393161, -0.0135429529, 0.0184818655, 0.00549168559, -0.00279090577, -0.0157900974, 0.00792509131, -0.0205367412, -0.0030372506, 0.0094151767, -0.00312737678, 0.0223392639, 0.00706588849, 0.0196234621, 0.0179170743, -0.00938513409, 0.0183737129, -0.00238684029, 0.0258842241, -0.0361706205, -0.00778689748, -0.0135189192, 0.0121129518, 0.0136511046, 0.0112717748, -0.00105672888, -0.00787702389, 0.0267975014, -0.0204526223, -0.0117344223, 0.0126657253, 0.00805126783, -0.0148768192, 0.0231684241, 0.0354976766, 0.0108752195, 0.0100340424, -0.016414972, 0.0147566516, -0.00230873097, -0.0213779174, 0.0199959837, -0.0286721252, 0.00524534052, 0.0234688446, -0.0347526334, -0.00595132867, 0.0283116214, 0.0218585897, -0.00319947768, 0.000439740397, -0.0135429529, -0.0144201806, 0.0375165045, -0.019551361, 0.00270077959, 0.0378289409, -0.0303544793, -0.010995388, 0.0361946523, -0.0253314506, -0.0145884156, 0.0244902726, -0.0385018811, 0.000360880047, 0.000927548099, -0.000535874919, 0.00357800722, -0.0071319812, -0.00133762194, 0.0302343126, 0.00153439736, -0.0108752195, -0.0584497973, -0.0159703493, 0.00194372016, 0.00161776401, 0.0152493408, 0.0131343808, 0.0162948035, -0.00425996166, -0.0108632026, 0.020224303, -0.0104486225, 0.014636483, 0.0259082578, -0.00666933367, -0.0271820407, -0.00847786479, -0.0335749872, -0.00164630392, -0.0157540478, -0.0110795051, -0.0133867348, -0.010490681, 0.00669937534, -0.00343981385, -0.00115286338, 0.00111606193, -0.0350170061, -0.0114159761, -0.000437862764, -0.00494792452, 0.0243100207, 0.00308231357, 0.0115481615, -0.00523332367, -0.00280442461, 0.0047977143, 0.00544061419, 0.0183136296, 0.00618265243, -0.0115000941, -0.0224474147, 0.00372220902, 0.00119266915, -0.0183737129, 0.0348247364, 0.0402563363, 0.0325175077, 0.0138433734, -0.0119387079, 0.00652513187, 0.000696224335, 0.0158141311, -0.0243100207, -0.0227959026, 0.0176406875, -0.00701181265, 0.00879631, 0.01725615, -0.0282154866, 0.0117404303, -0.005500698, 0.0241538025, -0.00302373152, 0.0192028731, -0.0187943019, -0.00648307288, 0.00350590632, -0.00141498027, -0.0351131409, -0.022171028, 0.00693370355, 0.0205367412, -0.000501702132, 0.0249228794, -0.0120829092, 0.0215221196, 0.0509032384, -0.0113078253, -0.00703584636, -0.039607428, 0.0156819467, -0.00972761307, -0.00535048777, 0.00832164567, 0.0137232048, 0.0143240457, -0.00743240165, -0.000974864291, -0.00865210872, 0.0298497733, 0.0139635419, -0.000279391, 0.0390786901, 0.00650109816, 0.0025550758, -0.0195393451, -0.0118786236, 0.0116442954, -0.00668735895, 0.00193921383, 0.00557580311, 0.0192749742, -0.0127017759, -0.0046535125, -0.0210053958, -0.00821950287, 0.00257610506, -0.00867013354, 0.0279030502, -0.00780492276, -0.00183707091, 0.00192569499, 0.0324213728, 0.0132184988, -0.0185659826, 0.024033634, -0.039102722, 0.0215221196, 0.0239855666, 0.0094091678, -0.00220358395, -0.00298467698, -0.00779891433, 0.0100821098, 0.0134468181, 0.00353895267, 0.0140356421, -0.023613045, 0.00488183182, -0.00738433423, 0.00127528468, -0.0190827064, 0.0213538837, -0.0251632147, -0.0104245888, -0.017941108, -0.0133026168, -0.00180102047, -0.00437412132, 0.0117103886, 0.0115421526, -0.0163909383, -0.0265331324, -0.0221590102, 0.0314119607, 0.000136879054, -0.0171600152, -0.00696374569, 0.0384297818, 0.00595132867, -0.00873021781, 0.00337972981, -0.0230482556, -0.0117764808, -0.0171720311, 0.000417959935, 0.0267013684, 0.0244181734, 0.003617062, 0.0375886038, 0.00668135053, -0.0080813095, 0.000658296281, 0.0075465613, -0.0142038781, 0.00964950398, -0.0443180203, 0.0011333361, -4.18945674e-05, -0.00371620082, 0.00985379051, 0.00275936164, 0.0043410752, 0.0388143212, -0.022591617, 0.00235980237, -0.00730021624, -0.00146830489, 0.0125455568, -0.0175685864, 0.0101482021, -0.0434287786, -0.00275485544, -0.00763668725, 0.00367113762, 0.0117404303, 0.011331859, 0.00576506788, -0.00365912076, -0.00731223309, -0.00523332367, 0.0081834523, -0.016330855, 0.00458141137, 0.000760439201, -0.0276146457, -0.026653301, -0.000786350458, 0.011337867, 0.0133987507, -0.0279751495, -0.0134708518, -0.0232285075, 0.0146485, 0.020897245, 0.0121369855, -0.012185053, -0.0089885788, 0.0162227023, -0.0234327931, -0.0217864886, -0.00376727222, -0.00695773726, 0.0424914658, 0.0109473206, 0.00957139488, 0.0229160711, 0.027422376, -0.0136150541, -0.00106649252, -0.0039355075, -0.0190466549, 0.0214019511, 0.0234087594, 0.0219667424, -0.00194221805, -0.0107790846, -0.0128940446, -0.0173763167, 0.00928299129, -0.0171239637, -0.0227358174, 0.0229881704, -0.00791307446, 0.00151787419, -0.0364109576, -0.0190586727, -0.00763668725, 0.0496534891, 0.00797916669, 0.00946925208, -0.000859953463, 0.00858601555, -0.0279511176, -0.00814740174, 0.0120048, 0.0348007, 0.00318445661, 0.0264610313, -0.00428699935, 0.0149489203, 0.033935491, 0.00798517466, 0.0209453125, -0.0131343808, 0.0359062515, -0.00842378847, 0.00332565419, 0.00820748601, -0.0124133723, -0.0410494469, 0.00247546425, -0.016751444, 0.000248597906, 0.0133386673, 0.00322050694, -0.00355998217, 0.0100580761, 0.00721609872, 0.000671064132, -0.00868815836, 0.0501341596, -0.00197376218, -0.0270138048, -0.0345123, 0.0182775781, -0.0121730361, -0.0123292543, -0.0126777422, 0.0378289409, -0.00501401676, -0.000524984673, -0.0319166668, 0.00123397692, 0.0239134654, -0.00988984, 0.0157059804, -0.000123360136, -0.00353294425, -0.0194792598, -0.0486200415, -0.0110915219, -0.00985379051, 0.025379518, 0.0222911965, 0.0135549698, 0.0208852291, 0.00673542591, -0.0104426146, -0.0170638803, -0.00276236585, 0.00464449963, 0.0277588479, 0.0141678276, -0.00906068, -0.00404065475, -0.0448707938, 0.0332144834, -0.00462046638, 0.0193711091, 0.0161025357, 0.00375525537, 0.0310754888, -0.0297776721, -0.0273743104, 0.00627277838, 0.0181213599, -0.0158501826, -0.00975765567, -0.00458141137, 0.0408091098, -0.000161100455, 0.0107911015, -0.0215461534, -0.0117344223, 0.0108091272, 0.0125816073, -0.0331423804, 0.00539855519, -0.0185059, -0.00190316339, 0.00332265, 0.00181153521, -0.0181574114, -0.000814890431, -0.0373723023, 0.00647105603, 0.0212577488, 0.0104185808, 0.00710794749, -0.0161986686, -0.0244422052, 0.00629080366, -0.0221590102, -0.0143600963, 0.00435609603, 0.0187582523, 0.00262567447, -0.000496820256, 0.0138914408, 0.00239735493, -0.00525134895, 0.0017875015, 0.0303544793, 0.00375225116, -0.0146965673, 0.0159343, 0.0233366583, -0.0155137107, 0.0223873295, 0.00845383108, 0.00855597388, 0.0144442143, 0.0169917792, -0.00483676884, -0.00323552801, 0.00802723411, 0.0201642197, -0.0272541419, -0.00803925097, 0.00418185256, -0.00216603139, -0.00270678801, -0.00876626838, 0.0080813095, 0.00173943432, -0.0105808079, -0.00403164234, 0.00476166373, -0.0085018985, 0.0129541289, 0.00520628598, -0.0119387079, -0.00133536884, -0.00288704038, 0.00760063669, 0.0230602715, -0.0199599341, -0.0225796, 0.0331183486, 0.00496895378, -0.0102082863, -0.0118365651, -0.0140356421, 0.00880832691, -0.00369517133, -0.0173162334, -0.00711395591, 0.00187312136, 0.00880231895, 0.00350590632, -0.00159973884, 0.00181303732, 0.0079010576, -0.0429240726, 0.030378513, -0.00477067661, 0.0103404708, -0.00912076421, -0.000627503148, 0.00456639053, 0.00481273513, 0.0174243841, 0.0224113632, 0.0374203697, 0.0132785831, 0.012437406, -0.00137817871, -0.00610454334, -0.0138193397, 0.00913878903, 0.00287952973, -0.00964349601, 0.0156098455, -0.00909072254, 0.0266773347, -0.005161223, -0.0344882645, -0.0249228794, -0.0391988568, 0.0173282512, 0.0011588718, -0.00995593332, 0.00227418263, -0.00626677, -0.0160664842, -0.0251632147, -0.0101782437, -0.00377027644, -0.00298017077, -0.00526036182, -0.0222911965, 0.0280712843, -0.0361706205, 0.0138914408, 0.039174825, 0.00282845832, -0.0246104412, -0.0106348833, 0.0104606394, 0.0164630394, -0.0148167359, -0.0290566646, 0.000365386339, -0.00259112613, -0.0210774969, -0.0127858939, -0.0111155557, 0.00365611655, 0.0124133723, -0.00320849, 0.00153665047, -0.000869717158, -0.0110374466, -0.00773883, -0.0047045839, 0.0117284134, 0.0162948035, 0.0560945, 0.00122196006, 0.00205036951, 0.0382855795, 0.0119807664, -0.0217143893, 1.18173193e-05, -0.00813538488, 0.00645903917, 0.0316282623, 0.00359002408, 0.0015186253, -0.00939114299, 0.00609252648, -0.0148768192, -0.0140236253, 0.00732425, -0.0160184167, 0.0193350594, 0.0238413662, -0.0208852291, -0.00622471143, 0.0423472635, 0.0148287527, -0.0111756399, 0.0171720311, -0.00278189313, 0.0196955632, -0.00223062164, -0.00718004815, 0.00216452917, -0.0245263241, 0.0359062515, -0.00746845175, -0.00379431, -0.00865210872, -0.0227598511, -0.00151637208, 0.0171840489, -0.0107790846, -0.0284798574, -0.00648307288, 0.029200865, 0.0203685053, -0.000154998168, -0.00354796532, 0.0126296747, 0.00370117975, -0.030378513, -0.0158501826, -9.04547123e-05, 0.0168235432, 0.014468248, 0.00218405644, 0.0292489324, -0.00296364748, 0.0167634599, -0.00526036182, -0.0180853102, 0.0214620363, -0.00182204985, -0.019299008, -0.0131343808, -0.00101241679, 0.00480973115, 0.029609438, 0.0478509665, -0.00656118197, -0.0123172374, -0.0158982482, 0.00647105603, 0.0111876568, 0.0269897711, 0.0162948035, 0.000971109, -0.00660324097, 0.00317544397, 0.0139395082, -0.0148287527, 0.0256919544, -0.0201882534, 0.0212217, 0.0141558107, 0.00444922643, -6.00840867e-05, -0.00307930936, -0.0133386673, -0.0167995095, 0.0172200985, -0.00167033763, 0.00529040396, 0.0141918613, -0.00242739706, 0.0464810506, -0.00507109705, 0.0210534632, -0.00444922643, 0.00816542748, -0.0073362668, 0.0123172374, -0.00757059501, 0.0301141441, 0.016162619, 0.0161145516, -0.00355096953, 0.0269176699, 0.0163428709, -0.00748647703, -0.0106108496, -0.0119447159, -0.00488784024, -0.0356418788, 0.0142519455, -0.029873807, 0.00306428829, 0.00508912187, 0.0107790846, 0.00904265512, -0.0147686685, -0.0160664842, -0.00481273513, 0.00718004815, 0.0177368224, 0.0167874936, -0.0274704434, -0.00482775643, 0.0101842526, 0.0157179963, 0.00812336802, -0.0037612638, -0.00205637794, 0.0101361852, 0.014468248, 0.0213659015, 0.020560775, -0.0144321974, -0.00645303074, -0.0248507783, -0.0180973262, 0.00519426912, -0.00557279913, 0.00271429867, 0.015910266, 0.0133386673, 0.00880832691, 0.00122571539, 0.0111996736, -0.0228680037, 0.00906668883, 0.0122331195, 0.0108692115, 0.0245743915, 0.0155858118, 0.014300012, -0.00984177366, 0.00407069689, -0.00269176695, -0.0122030778, 0.00497496221, -0.00568996277, -0.0138193397, -0.0151532069, -0.0096194623, 0.0169797633, -0.00478569744, 0.0101902606, -0.00325956172, 0.0134107675, 0.00930101611, 0.0196715295, 0.00693971198, 0.0173282512, 0.00400760863, 0.00256108423, -9.71672343e-05, -0.00639294693, 0.0199959837, -0.00174544274, -0.00348487706, -0.0184217803, 0.00331664155, 0.0133627011, -0.00634487951, 0.000411200454, 0.00119116704, -0.0135189192, -0.0175926201, -0.00642899703, 0.0106469, -0.00883236062, 0.00850790646, -0.00740836794, -0.0146124493, -0.0105507653, 0.0354496092, -0.00703584636, -0.00665731682, 0.00453935284, -0.0111275725, 0.0133266505, -0.00417584414, -0.00409773458, 0.00117464387, 0.000389044464, -0.00737231737, -0.00743240165, -0.0106108496, 0.0155978287, -0.00260915142, 0.0013729214, 0.0226517, 0.00604145462, -0.00665130839, -0.0312677585, -0.00275635743, -0.00492989924, -0.0192269068, -0.014636483, -0.0123773217, -0.00032238866, -0.0125936242, -0.00405567558, -0.00910874736, 0.0032325238, 0.0186861511, 0.0055517694, -0.0181453936, -0.01709993, 0.00172741746, 0.00039880813, 0.00503204204, -0.0180372428, 0.0250670798, 0.00648908131, 0.0124854734, 0.0120468596, 0.000198277485, -0.00279841619, -0.01997195, 0.010574799, -0.0241778363, 0.00459943665, -0.017941108, 0.0190827064, 0.0146004325, -0.00500800833, 0.0059663495, 0.00629681209, 0.019551361, 0.00398057047, -0.0089945877, -0.00731223309, -0.0160184167, 0.0123172374, 0.00938513409, -0.00946925208, -0.0143480795, -0.0188063197, 0.00924093276, 0.023781281, -0.00533546694, -0.0116322786, 0.0138073228, -0.0198157318, 0.033166416, -0.0164870732, -0.0198878329, 0.0232044738, 0.0036681334, 0.0100640841, 0.00525735738, 5.17286426e-05, -0.00761866197, -0.000847185613, 7.44009958e-05, 0.0328059122, -0.0128219435, 0.0117103886, -0.0108872363, -0.020476656, -0.0203685053, 0.0165111069, 0.012100935, 0.00364710391, 0.0278309491, 0.00356899481, 0.00818946119, 0.00381834363, -0.00736630894, -0.00976366363, 0.0342238955, -0.017003797, 0.00480973115, -0.0143721132, -0.0146124493, -0.0068796277, 0.014552366, -0.00978168938, -0.00285850046, -0.00541958446, 0.0035449611, 0.0127258096, 0.00728819938, -0.0188423693, 0.00350891054, 0.0119146742, 0.00446725171, -0.0100040007, 0.00650109816, 0.022002792, 0.0229641367, -0.00239585293, -0.0178089235, -0.0118125314, 0.0203204378, -0.00554876542, 0.0138433734, 0.000733025838, -0.0109713543, -0.0115661863, 0.00138193392, -0.0196715295, -0.0121610193, -0.00697576255, 0.0017108944, -0.00416082283, 0.0187702682, -0.0189024527, 0.0275906119, -0.00492389081, 0.00524534052, -0.0117224054, 0.0182895958, -0.00842378847, -0.0149489203, -0.0147326179, 0.00637492165, -0.0198157318, -0.00360204093, 0.0167274103, 0.0149729541, -0.00806328468, -1.5807278e-05, 0.0035449611, -0.0149248866, 0.0283116214, 0.00832164567, -0.0133867348, 0.0153094251, -0.016162619, -0.0236851461, -0.00673542591, 0.00937912613, -0.000597836683, -0.00023883424, -0.00779891433, 0.00420288183, -0.000675194897, -0.0125095071, -0.00437412132, 0.0124253891, -0.00183707091, 0.00752252759, 0.010490681, -0.00805126783, -0.00405567558, 0.0268696025, -0.00495693693, -0.0177848898, -0.011427993, 0.0185059, -0.0055157193, -0.00360504515, -0.00123247481, 0.00495994138, 0.00373122166, 0.0042900038, -0.00311836414, 0.0137712723, -0.0250670798, 0.0197316129, 0.0224834643, -0.00442519272, 0.00326857436, -0.0203444716, -3.02298049e-05, 0.00651311502, -0.00945723522, -0.0114099681, -0.0180132091, -0.0336470865, 0.00455737812, -0.0186621174, 0.0142519455, -0.00301922532, -0.0226877499, 0.0182174947, 0.0313638933, 0.00756458659, 0.0227358174, 0.00536550907, 0.00719807344, 0.0275185108, 0.0155016938, 0.00695172884, 0.0387662537, -0.00241387822, 0.000779591035, -0.000761190255, -0.00539254677, 0.00448227301, -0.0263889302, 0.0185059, 0.00671740063, 0.00850790646, 0.0189625379, -0.00806328468, 0.00501702121, -0.00788904075, -0.0283356551, -0.00175595738, -0.00322651537, 0.0103584966, -0.0239735506, -0.00269026496, 0.00492989924, 0.0286961589, 0.00273082172, -0.0254035518, 0.0235890113, 0.010328454, -0.0196595136, 0.0218465738, 0.0116262706, 0.0160905179, -0.016583208, -0.00355096953, 0.0195994284, -0.0206208583, -0.0165111069, -0.0113258502, -0.0277107805, -0.0147085842, 0.00319346925, 2.07712565e-05, 0.0249228794, -0.0140116084, 0.00932505, 0.0209933799, -0.000186260673, -0.00199479167, 0.00302673574, 0.0231684241, 0.0161145516, -0.0200680848, 0.015573795, -0.000435234106, -0.0202483367, -0.000965100655, 0.0240456518, -0.0219186749, 0.0162227023, 0.0277828816, 0.0199479163, -0.00535950065, 0.0241658185, -0.00766072096, -0.0169316959, -0.0082134949, -0.0158982482, -0.00314840605, -0.00939114299, 0.0112056816, -0.00423292397, 0.00102142943, -0.00516723143, -0.0279030502, -0.0181814451, 0.00319046504, -0.00901862141, -0.0117103886, -0.00815341063, 0.0118005145, 0.0294171683, -0.00402262947, -0.0328539796, 0.0224474147, 0.00988383219, 0.00705387164, 0.000530617603, 0.00627277838, -0.029104732, -0.0220268257, -0.00587021513, -0.00184307934, 0.00423592795, 0.00943320151, 0.00653714873, 0.0102683706, 0.0349208713, 0.0371079296, 0.00665130839, 0.0237211976, 0.0154536273, 0.015057072, 0.0159583334, 0.00348788127, 0.00438012974, 0.00365010812, -0.0128820278, -0.0295373369, -0.0148768192, -0.0112837916, 0.00530842878, -0.00446725171, -0.0115421526, -0.00461445795, 0.0168716107, 0.0100340424, 0.0144562311, 0.00352092739, -0.0134348013, -0.0196474958, -0.0167754777, -0.000814890431, -0.00639294693, -0.0125215231, 0.00299218739, 0.0100941267, 0.0196595136, 0.00201431895, -0.0110915219, 0.0130983312, -0.00947526, -0.0217624567, 0.0305227153, 0.0121550104, 0.0216903556, 0.000876476581, 0.0148888361, -0.000318445644, 0.0134348013, 0.0268455688, 0.00316643133, 0.00645303074, 0.00820748601, 0.00493290322, -0.0142639624, -0.0287442263, -0.00315441447, -0.0134348013, -0.00272030709, 0.0090967305, -0.00351191475, 0.0101602189, -0.00533847092, -0.0254516192, 0.0150330383, -0.0106408913, 0.00862206612, 0.0135910204, 0.00504706334, -0.0122150946, -0.0158982482, 0.0117103886, 0.0220388435, 0.0178569909, -0.0141558107, -0.00411275588, 0.0112176985, 0.00337372138, 0.0125335399, 0.0251391809, -0.014047659, 0.0167754777, -0.0121429935, 0.000803624629, -0.0124013554, -0.00757059501, -0.00867614243, -0.0116503043, 0.0143120289, -0.00567193748, -0.0104666473, 0.00386641081, 0.0107370261, 0.00830962881, -0.0229040533, 0.0036891629, 0.0124253891, 0.0112297153, -0.0131343808, 0.00157870934, -0.00268125231, -0.0155858118, -0.00135489611, 0.00737231737, -0.0163548887, -0.00480973115, 0.0307390187, -0.00852593221, 0.0102142943, -0.00552773569, -0.0250911135, 0.00997996703, -0.00482174801, 0.024706576, -0.00454536127, 0.0116863549, 0.0131463977, -0.0101602189, 0.000369892659, 0.0114700524, 0.0110795051, -0.0259322915, -0.00448527699, -0.0148888361, -0.0170638803, 0.0155016938, -0.00535950065, -0.00373122166, -0.00721609872, -0.0170278307, -0.022423381, -0.00110704929, 0.0102443369, 0.0274464097, 0.00597235793, -0.000686836196, -0.0222311113, 0.0144201806, 0.0172080826, 0.00228469726, -0.000949328532, 0.0137592554, -0.00434708362, 0.0152373239, -0.00608050963, 0.00869416725, 0.00732425, -0.0236010291, 0.00996795, -0.00223813229, -0.000352994015, 0.00233877311, -0.00971559621, 0.00624874514, -0.0079731578, -0.0169316959, -0.0139274914, -0.0136270709, -0.00566592952, -0.00411576, 0.0161986686, 0.0296575055, 0.000828409335, 0.00355998217, 0.00778689748, -0.00376727222, 0.00133236463, 0.0154416105, 0.000887742382, 0.0070238295, 0.0215701871, 0.0116202626, 0.0294171683, 0.00624273671, 0.0116863549, -0.0191668235, -0.00617063558, -0.0174123682, -0.000548642827, 0.00765471254, -0.0166192576, -0.00753454445, -0.00863408297, -0.0170758963, 0.0029200865, -0.0055517694, 0.0156218624, -0.00951131061, -9.33650372e-05, 0.00752853602, 0.0106949676, -0.00422691554, -0.019719597, -0.0257640556, -0.00886240229, 0.000684583036, -0.000590701646, -0.00613458501, -0.0122811869, 0.00526336581, -0.0107730767, 0.00981173106, -0.000484803459, 0.0162227023, -0.0180372428, 0.00544662215, -0.0147326179, 0.0178810246, -0.0146124493, -0.00150360423, 0.00410073902, -0.00675345119, 0.0339835584, 0.0227598511, -0.0110374466, -0.00668135053, 0.0167754777, 0.00659122411, 0.0196595136, -0.0167153925, -0.0106048407, 0.000226629665, 0.0287201926, -0.0182415284, 0.000430727785, 0.00648908131, 0.0175806042, 0.0054225889, -0.00493590767, 0.000104396102, -0.00233877311, 0.00976366363, -0.0101421941, -0.0212337151, 0.000311122916, 0.00987181533, -0.00622471143, 0.0393911265, -0.00324454065, 0.00894051231, -0.00223963428, 0.0125936242, -0.00491187396, 0.0294892695, 0.0173883345, 0.0115842121, -0.0036681334, 0.00149984902, 0.0163789224, 0.0244061556, -0.0275185108, 0.0114400098, -0.000171239648, -0.0227959026, 0.000965851708, -0.00109202822, -0.00653714873, 0.0301622115, 0.0147686685, 0.00377027644, -0.0107310181, 0.0273743104, 0.0132665662, 0.00885639433, 0.0142399287, 0.000361818849, 0.00864009187, -0.0155497612, -0.000358063611, -0.0115782032, 0.00122196006, -0.0215341356, -0.00943920948, 0.0134348013, -0.00530242035, 0.00442819716, 0.0180732924, 0.032829944, 0.0106048407, 0.0161746368, 0.00174394064, 0.0251872484, 0.0020008, -0.01226917, -1.29791015e-05, 0.00337071717, -0.00784097333, 0.00205938215, 0.000876476581, 0.0177368224, -0.011169632, -0.0065671904, 0.00903063826, 0.0108271521, -0.0112176985, 0.0164029561, 0.0129781626, -0.00986580644, 0.00307179894, 0.00710794749, 0.0055667907, -0.00736030051, 0.0104666473, -0.000604220608, 0.009307025, -0.00389344874, -0.00566292508, -0.00452733599, 0.0173042174, -0.0149849709, 0.015994383, 0.029200865, -0.00510714715, 0.0182415284, -0.0160785019, -0.0227598511, 0.00127678679, -0.0265571661, 0.00074316503, -0.00023301359, 0.00517624384, 0.00645903917, 0.0102082863, -0.00141272706, 0.00584317744, -0.0127498433, 0.0173763167, 0.00659122411, 0.033935491, 0.0137832891, -0.0148407696, -0.0099078659, 0.0128820278, 0.0208011102, 0.0267734695, -0.010412572, -0.0042629661, 0.0194311924, -0.0132305156, -0.0126176579, -0.00696374569, -0.0183256455, -0.00518225227, 0.00337972981, -0.00808731839, -0.0102082863, -0.00369517133, 0.0136511046, -0.0113619007, -0.0154776601, 0.00853794813, 0.0136751384, 0.00235529616, 0.0168235432, -0.00259713456, 0.0381173454, -0.00586120272, -0.00934908353, -0.0111215645, 0.00802723411, 0.00919286534, 0.028095318, 0.012437406, 0.0331904478, -0.00831563771, -0.0227358174, 0.0125695905, 0.00328960363, -0.00934908353, 0.0130863143, -0.0192749742, 0.00212697661, 0.0334548205, -0.0063208458, -0.00387241924, -0.0244181734, 0.00366512919, 0.0255958214, -0.00233426667, 0.0116322786, -0.0123893386, -0.0212217, -0.0147806853, 0.0073362668, -0.0269417036, 0.00978769735, -0.00966152083, 0.0137712723, 0.00799118355, -0.00705988, -0.00753454445, 0.0177608561, 0.00172140903, -0.0180732924, 0.0101241684, -0.019286992, 0.0132665662, 0.0177488383, 0.00719206501, 0.00370718818, -0.011848582, -0.0148287527, 0.00110104086, 0.00216903561, -0.0269897711, -0.0116082458, 0.00734828366, -0.0158982482, -0.00247846846, 0.0212337151, -0.016667325, 0.0239495169, -0.0149369035, -0.025643887, 0.00690967, -0.0206208583, -0.0154416105, 0.0054075676, -0.0347286, -0.0353775099, -0.0068435776, 0.0065671904, 0.0200680848, 0.015994383, -0.016162619, 0.00490586553, 0.00307630515, -0.00507410103, 0.0136511046, 0.0057109925, -0.003427797, 0.00081038411, 0.00861605816, 0.021738423, -0.00655517355, -0.00766672939, -0.00674143434, 0.0181453936, -0.00831563771, -0.0135549698, -0.00735429209, 0.00840576366, 0.00712597277, 0.0011108045, -0.00835168827, 0.0133026168, -0.0118065225, -0.010574799, -0.0260284264, 0.0163669046, -0.0135069024, 0.0223993473, 0.0186861511, 0.02284397, 0.00418485655, 0.00636290479, 0.00478870142, 0.00957740285, -0.0159823671, -0.0134348013, 0.0130502637, -0.00226667221, 0.0099078659, 0.00971559621, 0.00475265132, -0.00819546916, -0.0174123682, 0.0152253071, -0.0114640435, 0.00561485766, 0.00897656288, 0.0259322915, -0.00730021624, -0.0136390878, 0.00415781885, 0.0183256455, 0.0242739711, -0.0169076622, -0.0112657659, -0.00124899799, -0.00724614086, 0.000896754966, 0.0124133723, 0.0116563123, -0.00566592952, 0.00871219207, 0.00491187396, -0.00299819582, 0.00150435534, -0.00972761307, -0.00175595738, 0.022255145, -0.00553674856, 0.0118365651, 0.016667325, 0.00492989924, -0.000315817, -0.0128820278, 0.00898257084, 0.000251977646, -0.0195393451, 0.0164510235, -0.00736030051, -0.00992589071, -0.0126296747, 0.00379431, -0.0192028731, 0.0192509405, 0.0250670798, 0.0257400218, -0.0035659906, -0.0113679087, -0.00422691554, -0.0305707827, 0.00255657779, 0.0121249687, -0.00302072731, 0.00757059501, 0.0234928783, 0.0110674882, 0.000139132215, -0.0225796, 0.0148648033, -0.00946925208, -0.0119206831, -0.00122796849, 0.000856949249, -0.0178209394, 0.0110314386, -0.0176887549, -0.00245143077, 0.000523482624, 0.00680752704, -0.00902462937, -0.0100580761, -0.00770878838, 0.00854395702, 0.0226517, -0.0069877794, -0.0111756399, -0.00498397509, 0.0068796277, 0.00384838576, -0.0151171563, 0.00414279755, -0.0272060744, 0.0101181604, -0.0128940446, 0.00128279522, -0.00011678844, -0.0125936242, 0.00621269457, -0.00477368059, -0.0124854734, -0.00572300935, 0.00820147805, 0.00357800722, 0.00727618299, 0.000696599891, -0.0193711091, -0.0337432213, 0.00749849388, 0.000833666709, -0.00344582228, 0.0026992776, 0.0143360626, 0.00724614086, -0.0206569079, 0.00906068, -0.00170037965, 0.00510414317, 0.012353288, -0.0122211026, 0.00552172726, 0.0138674071, 0.0066332831, -0.00420889026, 0.00798517466, 0.00738433423, -0.00701181265, -0.0180732924, 0.00416983571, -0.0180973262, -0.00821950287, 0.00528439553, -0.0135549698, 0.00678349333, -0.0150931226, 0.0214139689, 0.0150690889, 0.00254005473, 0.00385139, 0.00315741869, 0.0211375821, 0.00963748712, -0.0152493408, 0.00958341174, 0.0145163154, -0.0160424504, 0.0192629583, 0.00101166579, 0.00496595, -0.0141798444, 0.001131834, -0.00676546805, 0.00987181533, 0.00935509242, 0.0158381648, 0.0372040644, -0.0126777422, 0.0323973373, -0.0258601904, -0.0182655621, -0.0178209394, 0.0123172374, -0.013458835, 0.0144442143, 0.018782286, 0.0117103886, 0.000536250474, -0.0117464392, 0.0344642326, -0.0102683706, 0.0145042986, -0.0128459772, 0.0186741333, 0.0145763988, -0.0189625379, -0.00387241924, 0.0047977143, 0.0103645045, -0.0098297568, 0.00674744276, -0.0109232869, -0.0210895147, -0.00242439285, 0.00928899925, -0.00415181043, 0.00351191475, -0.0110795051, 0.0138674071, -0.0221469942, -0.0319647342, 0.0162587538, -0.0100220256, 0.00511616, -0.00215701875, 0.00256258622, -0.00557279913, -0.00592429098, 0.00258511771, -0.00774483848, -0.00124374055, 0.0211015306, -0.00628479524, 0.00905467197, -0.0406889431, -0.00934307557, -0.00417884812, -0.00901862141, -0.0124614397, -0.00980572309, 0.0031814524, -0.0017859994, 0.002410874, -0.0106168576, -0.00781694, 0.0032835952, -0.0207770765, 0.000886240276, -0.0140356421, 0.0280472506, -0.0277107805, -0.0121189598, -0.00666933367, -0.00266172504, 0.0185659826, 0.00378229329, 0.0171479974, -0.00114009553, -0.00162527454, 0.00934908353, -0.00478269346, 0.00219156709, -0.0132305156, 0.0183977466, 0.0264129639, 0.00149684481, -0.0109833712, 0.00104546314, 0.00668735895, -0.00836370513, 0.00224864692, -0.0100400504, 0.0136150541, 0.00526637025, 0.0260764938, 0.0226997677, 0.00276086363, -0.000466027181, -0.0177368224, -0.00912677217, 0.00743240165, -0.00366212497, -0.012437406, -0.000817894645, -0.028263554, -0.0136631215, -0.00475265132, -0.00832164567, 0.00988383219, -0.00925895758, -0.00372521323, 0.00165681867, 0.00921089, 0.00604445906, -0.00401962548, -0.014636483, 0.00731824152, 0.0207530428, 0.00804525893, 0.0197316129, 0.000423968333, 0.00619466929, 0.00822551176, 0.00246494962, -0.00453935284, 0.0156939626, 0.00760664511, -0.00952933636, 0.00428399537, 0.0161986686, -0.00758862, 0.00278790155, -0.00979370624, -0.0158982482, 0.00425695768, -0.0308351535, 0.0153334588, -0.0219787583, -0.0133867348, -0.00167935016, -0.0229521208, 0.0309553202, 0.00547666429, 0.0287922937, 0.00596334552, 0.00583416456, -0.00513718929, 0.0101782437, -0.00856799074, 0.0106829507, 0.0256198533, 0.00590025727, 0.00188814243, 0.0148648033, -0.0160064, 0.0199359, -0.0204045549, 0.0172200985, 0.020644892, -0.00318746082, -0.0179891754, 0.00788904075, 0.018782286, 0.0249949805, 0.0171119478, 0.00180552679, 0.01302623, -0.0182775781, 0.000937311735, -0.0168716107, -0.00580712687, -0.0279030502, -0.0153454756, 0.00853194, -0.00799719151, -0.0087061841, -0.00596034154, 0.00534147536, 0.0179891754, -0.0080032, 0.00197226019, -0.00915080588, -0.0173763167, -0.0099078659, -0.0223512799, 0.00240486558, -0.00728219142, 0.00695172884, -0.0212337151, 0.0108932443, -0.00435609603, -0.000296289654, 0.00161175558, 0.000171521286, 0.026653301, -0.00211195555, -0.00876025949, -0.010664925, -0.00448527699, -0.0271339733, -0.0065671904, 0.0139875747, -0.00441618031, -0.0455677696, 0.00890446175, 0.0228559859, 0.000633887132, 0.0149248866, -0.0121670272, 0.00351792318, -0.0105267316, -0.0145283323, 0.000422841753, -0.00471960474, -0.0601321533, 0.0091988733, 0.0120048, 0.000707114581, 0.0010597331, -0.0073362668, -0.00244842656, 0.0065671904, -0.00679551, 0.00246344763, -0.00608952204, -0.00741437636, 0.0116563123, -0.00390246138, 0.00665731682, -0.018361697, -0.0219186749, 0.0214980859, 0.0225315318, 0.0135669867, -0.0112597579, 0.00318746082, -8.07849283e-05, 0.026316829, -0.0138073228, -0.00981774, -0.0150330383, -0.0378049053, -0.00666933367, -0.0133747179, -0.00264520198, 0.0056689335, -0.0286961589, 0.0130382469, 0.00151637208, -0.00799118355, -0.012353288, 0.0102563538, -0.00125725952, -0.00645903917, -0.00315141026, 0.00739034265, 0.00030492674, 0.00225014891, 0.00366212497, -0.00686160242, -0.0224714484, -0.0107971104, 0.0341758281, -0.015057072, 0.00297716656, -0.00584317744, 0.000897506, -0.0116623212, -0.00136090454, -0.0207770765, 0.0166432913, 0.0166913588, -0.014047659, -0.0080813095, 0.0154776601, -0.002410874, -0.0173042174, 4.97864721e-06, 0.0168956444, 0.00405868, -0.0103344629, 0.00629080366, -0.0320849, 0.00110179198, 0.029609438, 0.00133987516, -0.00651311502, -0.00499599194, 0.00408571772, 0.00904265512, 0.0179170743, 0.0112056816, -0.0144321974, -0.0146485, -0.00633887108, 0.00715601444, 0.0120889181, 0.00628479524, 0.0119627416, -0.0158021152, -0.00921089, 0.00662727468, 0.00141798437, 0.00982374791, 0.00366212497, -0.0196955632, 0.0276867468, 0.00539254677, 0.0219667424, -0.000368766079, -0.00812937692, -0.0326376744, -0.0182655621, -0.0560945, -0.00307029672, -0.00445223087, -0.0112417322, -0.00196925597, 0.00596935395, 0.00144577329, 0.0141437938, 0.0136511046, 0.00980572309, -0.00258812192, -0.00731824152, 0.00645903917, -0.0142279118, 0.00167183974, -0.0016417976, -0.0299939755, -0.0344642326, 0.000391673122, 0.0361225531, 0.0148527864, 0.00388143188, -0.00396254566, 0.0393190272, -0.0255237203, 0.00390847, -0.0153815262, -0.0160785019, -0.00578910159, 0.0134227844, -0.00675345119, -0.000414580194, -0.0287442263, -0.00165982288, -0.000613233191, -0.011674338, -8.81076776e-05, 0.000410824927, -0.000340977189, -5.98493825e-05, -0.0157780815, -0.0238293484, -0.0205247235, -0.0112898, 8.6605578e-05, -0.0162587538, -0.000653414405, -0.0261726286, -0.00481573958, 0.00884437747, -0.00402262947, -0.00668135053, -0.0119026573, 0.0054225889, 0.005500698, -0.0004104494, 0.0158742163, 0.00498097064, 0.00963748712, 0.00467454176, -0.0293450672, -0.00820147805, 0.00651912345, 0.00488183182, 0.0317243971, 0.00981774, -0.00562387053, -0.00624874514, -0.0269176699, -0.0117163965, -0.00328960363, -0.0160664842, -0.00676546805, -0.00388143188, 0.0105207236, -0.00256559043, 0.00563889137, 0.0232525412, -0.00226517, -0.00179350993, -0.00740235951, 0.0219667424, -0.00626677, -0.00124974898, -0.00205938215, -0.00578609761, -0.0176527053, 0.00767273782, 0.0184818655, -0.011337867, 0.0204886738, -0.00958942, 0.00651912345, 0.002221609, 0.00703584636, 0.00944521837, 0.0286240578, -0.0183016118, 0.0178930406, 0.00892849546, -0.0205968246, 0.00939114299, 0.000924543885, 0.023769265, -0.00806929264, 0.0198517814, -0.00503805047, 0.0220628772, -0.00359903672, 0.00357500301, -0.00691567827, -0.0148527864, -0.00172291114, -0.00140521652, -0.00319046504, 0.011085514, 0.00275936164, 0.00402863789, 0.0281674191, 0.00508311344, 0.0314600281, -0.0185900163, 0.00702983793, -0.00487582339, 0.00611655973, 0.000997395837, 0.00116788445, 0.0117043797, 0.0129661458, -0.015489677, 0.0136511046, 0.0170638803, 0.0168836284, 0.0228680037, -0.0103825303, 0.0362427197, -0.00565992109, 0.0248267446, 0.00244842656, 0.00175745948, -0.000401812315, 0.00140521652, 0.0021194662, -0.0210414473, -0.00301471911, 0.00050658395, -0.0128940446, 0.00414279755, 0.0194912776, -0.0116442954, 0.00510714715, 0.000913278083, -0.00171540061, 0.00221560057, -0.00583116058, 0.00782895647, 0.0103344629, -0.00748647703, -0.00776286377, -0.00584017299, 0.0215461534, 0.0158381648, -0.000398057076, -0.010995388, -0.00459943665, -0.0046384912, -0.000184007513, 0.0128700109, -0.0356659144, 0.00120168168, 0.00241838442, -0.00235679816, 0.00666933367, -0.0123172374, 0.000696599891]
|
28 Jun, 2021
|
Counting Inversions using Set in C++ STL
28 Jun, 2021
Inversion Count for an array indicates – how far (or close) the array is from being sorted. If array is already sorted then inversion count is 0. If array is sorted in reverse order that inversion count is the maximum.
Two elements a[i] and a[j] form an inversion if
a[i] > a[j] and i < j. For simplicity, we may
assume that all elements are unique.
Example:
Input: arr[] = {8, 4, 2, 1}
Output: 6
Given array has six inversions (8,4), (4,2),
(8,2), (8,1), (4,1), (2,1).
We have already discussed below approaches.
1) Naive and Merge Sort based approaches.
2) AVL Tree based approach.
In this post an easy implementation of approach 2 using Set in C++ STL is discussed.
1) Create an empty Set in C++ STL (Note that a Set in C++ STL is
implemented using Self-Balancing Binary Search Tree). And insert
first element of array into the set.
2) Initialize inversion count as 0.
3) Iterate from 1 to n-1 and do following for every element in arr[i]
a) Insert arr[i] into the set.
b) Find the first element greater than arr[i] in set
using upper_bound() defined Set STL.
c) Find distance of above found element from last element in set
and add this distance to inversion count.
4) Return inversion count.
// A STL Set based approach for inversion count
#include<bits/stdc++.h>
using namespace std;
// Returns inversion count in arr[0..n-1]
int getInvCount(int arr[],int n)
{
// Create an empty set and insert first element in it
multiset<int> set1;
set1.insert(arr[0]);
int invcount = 0; // Initialize result
multiset<int>::iterator itset1; // Iterator for the set
// Traverse all elements starting from second
for (int i=1; i<n; i++)
{
// Insert arr[i] in set (Note that set maintains
// sorted order)
set1.insert(arr[i]);
// Set the iterator to first greater element than arr[i]
// in set (Note that set stores arr[0],.., arr[i-1]
itset1 = set1.upper_bound(arr[i]);
// Get distance of first greater element from end
// and this distance is count of greater elements
// on left side of arr[i]
invcount += distance(itset1, set1.end());
}
return invcount;
}
// Driver program to test above
int main()
{
int arr[] = {8, 4, 2, 1};
int n = sizeof(arr)/sizeof(int);
cout << "Number of inversions count are : "
<< getInvCount(arr,n);
return 0;
}
Output:
Number of inversions count are : 6
Note that the worst case time complexity of above implementation is O(n2) as distance function in STL takes O(n) time worst case, but this implementation is much simpler than other implementations and would take much less time than Naive method on average.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL
|
https://www.geeksforgeeks.org/counting-inversions-using-set-in-c-stl/?ref=next_article
|
Pandas
|
Counting Inversions using Set in C++ STL
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, set vs unordered_set in C++ STL, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00915262103, 0.00586371962, -0.0241552293, 0.00655720383, 0.00839047506, -0.00601477548, -0.00983923953, 0.0275059249, 0.000150948719, 0.00903589558, -0.0105601884, -0.0114253275, 0.01289469, -0.0167122874, 0.0110545531, -0.0325731672, -0.0121256774, 0.0161217954, -0.0113703981, -0.053226646, -0.0043462934, 0.00193283032, -0.0359513313, 0.0195411537, 0.0115557844, 0.0292224716, -0.00548951281, -0.00126251928, -0.0205024201, -0.0185386911, 0.00960578863, 0.00826001726, -0.00565430103, -0.0399062522, -0.0402632914, 0.00884364266, 0.0261326898, 0.036637947, -0.0108554345, -0.00776565215, -0.0304034539, 0.00411627628, 0.0292224716, -0.00933800731, 0.0247594528, 0.00714082969, 0.0207908, -0.00567489956, -0.0316668339, 0.0494914427, 6.91446039e-05, -0.0040716459, 0.00889170635, 0.0394668169, -0.000329791306, 0.0313921832, -0.00723009, 0.0291126128, -0.0099902954, -0.024141496, 0.0448224358, -0.000231304512, -0.0136019066, -0.0273960661, -0.0016796398, -0.0261876192, -0.021793263, 0.0347428806, 0.00550324516, 0.00484752469, -0.0608069077, 0.0109240962, 0.0302112009, 0.0124415224, -0.0205024201, 0.0046655708, 0.0229467805, -0.0572914258, -0.0288105011, 0.067288585, -0.00357728102, 0.00164788368, -0.028728107, -0.0159707405, 0.0295795128, 0.0014427565, 0.00654347148, -0.0428724401, 0.0157510228, 0.0341661237, -0.0223700218, -0.0474865176, -0.0206397437, 0.00549637899, -0.00182297139, 0.0374618918, 0.0427625813, 0.00153545, 0.0017920736, 0.0243200175, 0.0143777858, -0.0161492601, -0.000334940938, -0.0238256529, 0.013910885, 0.0129221547, 0.0249379743, 0.0391647033, 0.00923501514, 0.0200355202, 0.0167534854, 0.00739487819, 0.025198888, 0.0248967763, -5.74506339e-05, 0.0081913555, 0.000426776125, -0.0374344252, 0.00323053868, -0.0140894055, 0.00670139398, 0.0353471041, -0.00449048309, 0.0261601545, -0.0477611646, 0.0164513718, 0.0173027795, 0.0122286705, -0.0166298933, -0.000763433636, 0.0304858498, -0.024924241, 0.00382446358, -0.0122698676, 0.0201179143, 0.0271214191, 0.0132860625, 0.0126131764, 0.0110476874, -0.0165886953, -0.0280414876, -0.021752065, -0.000820937916, 0.0386703387, -0.0307055674, -0.013972681, -0.0258717742, 0.0203101672, -0.0474041216, 0.00209418568, -0.0308978204, 0.0228369217, 0.0283161346, -0.00166848232, 0.0236471314, -0.0114321932, 0.00753220171, -0.0251851566, 0.00645077834, -0.0627843663, -0.0114596579, 0.0058602863, -0.0191017184, -0.0122286705, -0.0356492177, 0.00642674649, 0.0288654305, 0.0056337025, -0.0329576731, 0.0268467721, 0.0333696455, 0.00446301838, -0.00338846096, 0.00427419832, -0.0169594698, -0.0353196412, 0.0502329879, -0.0145151094, 0.0188682694, -0.0382309034, -0.00126509403, -0.0308154263, -0.0199393928, -0.0118647628, 0.0026160155, 0.00630658818, 0.0311724674, -0.0372971, 0.0580604374, 0.018772142, -0.00352578447, 0.00171568722, 0.0270115603, 0.05534143, 0.0126269087, -0.0251851566, -0.0489696115, -0.00775878597, -0.00732621644, 0.0322435908, -0.0382309034, -0.00684215035, -0.0187309459, -0.0159570072, 0.0226034708, -0.010505259, -0.000692626112, -0.0220679101, 0.0150918681, -0.003546383, -0.0200217869, 0.046827361, -0.0242101587, -0.00542085106, -0.0304309186, 0.00654003862, -0.0463329963, 0.044383, 0.00762146246, -0.019362634, 0.0144189829, -0.0238119196, 0.0491344, -0.0499034114, -0.0400985032, -0.01881334, 0.040016111, 0.0433942713, 0.0252812821, -0.0229605138, 0.0102443434, -0.023908047, -0.0319964103, -0.00827375, 0.0211066436, -0.0565224104, -0.0144876447, 0.00673229154, 0.0419935696, -0.0176186226, -0.00293014315, 0.0490520038, -0.0273274053, 0.0293597952, 0.012345396, 0.051688619, 0.00287864683, 0.0324358456, 0.0203376319, 0.00226240698, -0.017398905, 0.0135126468, 0.0112536727, -0.0228231903, 0.0101619493, 0.0209555887, -0.00363564352, -0.0026245981, 0.00738801202, -0.00944786705, 0.00104022655, 0.0299640186, -0.0169594698, 0.0220129807, 0.0171929207, -0.00188305043, 0.00911142398, -0.0301013421, -0.0165886953, -0.0132860625, 0.00544831576, -0.00109258119, 0.0210791789, -0.0439435653, 0.0120982127, -0.0367752723, 0.0212165024, 0.00150197733, -0.0136019066, -0.0345506296, 0.0165886953, -0.0311450027, 0.0438886359, 0.0345780924, 0.0158196837, -0.0496287644, -0.00406134687, -0.000376567186, -0.0481182039, -0.0273411367, -0.00283230026, 0.00157321396, -0.0127093028, -0.00258511771, 0.0131899361, -0.00891917106, 0.00445271935, -0.0221640356, -0.0337266885, -0.00270184269, -0.0257893801, -0.0283985287, 0.000283659145, -0.0010264942, -0.0207633357, -0.00139297673, -0.0216834042, -0.000702067104, -0.0346879512, -0.0149957417, -0.00344510702, -0.0394668169, -0.0153115867, -0.0173027795, 0.00382103049, -0.0290302187, 0.0235235393, -0.013402788, -0.00916635338, -0.00121617247, -0.0173165109, -0.0296893716, 0.00112090423, 0.0249379743, 0.00089088711, 0.0233587511, -0.0064816759, 0.0261876192, -0.0141306026, -0.020612279, 0.00030275571, 0.0195686184, -0.0335069709, -0.0280826855, -0.0059255152, 0.0193077046, -0.00900156517, 0.0166985542, -0.00804716535, -0.0124415224, 0.00419523753, 0.00375580159, 0.00694514345, 0.0156411622, 0.00331121637, -0.00101276184, -0.0134508507, -0.0282337405, 0.00422270223, 0.0138971526, 0.00071622862, -0.00407851208, 0.0120432833, 0.00392059, 0.0349076688, -0.0220679101, -0.0265034623, -0.0519083366, 0.0307330322, -0.0118784951, 0.0436139889, -0.000674602401, -0.0233312864, 0.0135057801, -0.00283744978, -0.032216128, -0.00796477124, -0.012324797, 0.0363633, -0.00112519565, 0.00451451493, -0.00428449782, 0.0165063012, 0.0071682944, -0.0280277561, -0.0241552293, -0.00557190692, 0.00337987812, 0.0332323201, -0.00444242, -0.0400710404, 0.0178795382, -0.00140155945, 0.0058602863, 0.00654347148, -0.0353196412, -0.0235372726, -0.0284534581, -0.0469646864, 0.0267231818, -0.024374947, -0.00133804721, -0.0301837362, -0.00817075651, -0.00167620671, 0.00903589558, -0.015792219, 0.0065743695, -0.0383956917, -0.0144739123, 0.0172890462, -0.00136379548, 0.024649594, -0.0244573411, -0.0184151, 0.00318934163, 0.00564743485, -0.0141031379, -0.000632976182, 0.0116999745, -0.0119677559, -0.0059255152, -0.0166436248, 0.0389724486, 0.0116793755, 0.000787036144, -0.0166985542, 0.044163283, 0.0206946731, -0.035511896, -0.0386154093, -0.0251164939, -0.00620359555, 0.00781371538, -0.0362259783, 0.00598044461, 0.00456257816, 0.040208362, 0.00293872599, 0.00222121, -0.0281513464, 0.0151467975, 0.00830808, 0.0113635315, -0.00801283494, -0.0320513397, 0.00821882, -0.0429273695, -0.00863765739, -0.0292224716, 0.0035841472, 0.0519083366, -0.000189356433, -0.0301013421, 0.0128260283, 0.0101207523, -0.0140894055, 0.0130732106, -0.00450078258, 0.0111850109, -0.0345506296, 0.0137254978, -0.0216834042, -0.0190055929, 0.0435590595, -0.0167534854, 0.0516062267, -0.0197471399, 0.0498210192, 0.00200320873, -0.025514733, 0.0239217784, 0.00413344149, -0.0482555293, 0.0125445146, 0.0217657983, 0.00280826841, 0.0158059523, 0.00127882638, 0.00373863615, -0.0100383582, -0.0366928764, -0.0414442755, 0.0206672084, 0.019513689, -0.000761717092, 0.0239492431, -0.0324633084, -0.00236883294, -0.033040069, 0.0175774265, 0.0105189914, -0.0339189395, -0.0169182736, 0.00353951682, -0.00256966869, 0.0123110646, -0.00733308261, -0.0260365624, 0.0205298848, -0.0493541174, -0.019870732, -0.0042536, -0.0480358116, 0.0186760146, -0.000285161135, -0.0653660521, -0.022850655, -0.00663616508, 0.0431196243, 0.0143091241, -0.0509196073, -0.0432569496, 0.0365006253, 0.00697604101, -0.0480632745, -0.00845913682, -9.2586175e-05, 0.035511896, -0.0102031464, 0.0144052505, -0.00593924755, -0.00339189405, -0.00349831977, -0.00160840317, -0.000217679437, 0.0124552548, -0.0233724844, -0.0183464382, 0.00289409584, -0.00288036349, 0.00270699244, -0.00839734077, 0.0261189565, 0.000905477791, 0.0283985287, -0.00950279646, -0.0283985287, 0.00499171438, 0.00595984608, -0.0319140144, 0.0114527922, -0.026022831, 0.020612279, -0.00295074191, 0.00153974141, -0.00523203099, 0.0263936035, -0.0382583663, 0.0343309119, 0.0141168702, 0.027629517, 0.00289237918, 0.0141992643, -0.0641026795, 0.0132791968, 0.0111575462, 0.00089088711, -0.00973624643, 0.00354295, 0.00593924755, 0.0560280457, -0.0199805908, -0.00525949569, -0.0435041301, 0.0170281325, -0.0180580597, -0.0163003169, 0.00441838801, -0.00280826841, -0.0252126213, 0.0263112094, 0.0337266885, 0.000936375582, -0.00923501514, 0.00364937587, 0.0181953833, 0.0459759571, -0.0288379658, 0.0186760146, 0.0227819923, -0.00514963642, -0.0134302527, -0.0179482, -0.00924188085, 0.0206397437, -0.00781371538, 0.0145700388, -0.00141958322, -0.0358140059, -0.0151742622, -0.0367752723, -0.00990103465, -0.0441907495, -0.0151330652, -0.0273686014, -0.0502604544, 0.00152343418, -0.0239767078, -0.00370773836, -0.00880244561, 0.0391097739, 0.0158883464, 0.0198432673, -0.0160943307, 0.0137598291, -0.0292224716, 0.0257207192, -0.0209967848, -0.000197295449, 0.0265034623, 0.00776565215, 0.0118098333, 0.0198569987, 0.000121552883, 0.0103816679, 0.00538651971, 0.0271626171, 0.0236059353, 0.0074223429, -0.0523477718, 0.000242247494, 0.0154763749, -0.0118029676, 0.0111712785, 0.0173851736, 0.000138825621, 0.0206809416, -0.0249105096, -0.0235372726, 0.000213280786, -0.0142267291, -0.0239492431, 0.0464977846, 0.0364182293, 0.01818165, -0.0333696455, 0.00958519056, -0.0155862337, -0.0332872495, 0.0230154432, -0.0155175719, 0.00599761028, -0.0208319966, -0.00745667377, 0.0371323116, 0.00227270625, 0.0155725013, -0.000534703955, 0.0192115773, -0.0448773652, 0.0102443434, 0.0241964255, 0.0253087468, -0.00149253639, -0.0113360668, -0.0522104502, 0.00817075651, 0.0195960831, 0.0208319966, -0.00713396352, 0.0200767163, 0.0111438138, 0.0062276274, -0.00858959369, -0.00692111161, 0.00893976912, 0.00528352708, -0.000220790665, 3.53501091e-05, -0.017165456, -0.0363083705, 0.0169182736, -0.0197196752, -0.00307948282, 0.00670826, -0.025391141, 0.00236025, 0.0234411452, 0.00181095558, -0.0250478331, -0.000709362444, 0.00309664826, 0.00118613301, 0.00517366827, -0.0271351524, 0.000599503517, 0.0447675064, 0.0159158111, 0.0159570072, -0.000223365496, -0.000821796188, 0.0358689353, -0.00488872174, -0.0181541853, -0.00594268087, -0.00828061532, 0.0403182209, 0.0280826855, -0.0503977761, -0.0284534581, -0.00186931808, 0.00477542961, 0.00966071803, 0.000116939664, -0.00399268512, 0.0382583663, 0.0347154178, -0.000946674845, 0.00230360404, -0.00262631476, -0.0107661737, -0.0518534072, -0.0125513813, 0.000861705863, 0.0473766588, -0.00898783281, 0.0207084063, -0.00957145821, -0.0213263612, -0.00224180846, 0.00331121637, -0.0343309119, 0.0197746046, 0.0305407792, -0.00597357843, -9.26398207e-05, 0.00747040613, -0.00643704599, -0.0398238562, -0.00353608374, 0.0219992474, -0.00471363403, -0.0394942798, 0.0358689353, 0.0168221463, -0.0372147076, -0.0196510125, 0.0141718, 0.000285804825, -0.0173302442, 0.0110957501, 0.00673572486, 0.016066866, -0.0397139974, -0.000223150928, 0.0213812906, -0.0164925698, -0.0274509955, -0.0242788196, -0.0067734886, -0.0148446858, -0.0139589487, 0.0331773907, 0.000658295234, -0.0153115867, 0.0237157941, 0.0266957171, 0.00814329181, 0.0148172211, 0.0245397352, 0.0195686184, 0.00672885869, -0.0127161695, 0.0237707235, -0.0256108604, 0.0413893461, -0.00559250545, 0.0219031218, 0.00242032926, 0.0297992304, 0.0245946646, 0.00397208659, 0.0313647203, -0.0124003254, -0.00173800241, -0.0263798721, 0.0317217633, 0.0196372811, 0.00442182133, 0.00130800775, 0.0256932545, -0.00616583182, 0.0104503296, -0.0595984608, -0.0287555717, 0.0378463976, -0.00510843936, 0.000572897086, 0.0116450451, -0.0193214361, 0.0173577089, 0.0200080555, 0.0223974865, 0.0209418554, 0.000208882135, 0.0229330491, 0.0173027795, 0.0146249682, -0.0302386656, -0.0233312864, 0.0198569987, -0.0165475, 0.0124277901, -0.00919381808, -0.0291675422, -0.00576072698, -0.0399062522, -0.0470196158, -0.0273274053, 0.00611090194, 0.020612279, -0.0240041725, -0.023592202, -0.00217486313, -0.0391097739, -0.00457631052, 0.00988730229, 0.046827361, 0.0120982127, -0.0178795382, -0.0303210597, 0.0158059523, -0.000514534535, 0.0301837362, 0.0357041471, 0.0162865836, -0.0100520905, 0.030842891, -0.011013356, 0.0125170499, -0.00879557896, 0.0149820093, -0.0055684736, -0.0285358541, -0.00189334969, 0.0304034539, 0.00395148806, 0.0218344592, -0.0145837711, 0.00300052157, 0.00364594278, -0.00839047506, 0.0328752808, 0.0234823432, 0.00162556861, 0.00089174544, 0.0230566394, -0.00269154343, 0.0207496025, 0.0185524244, 0.0145288417, -0.00858959369, -0.037764, 0.0282886699, 0.00748413848, -0.0332597867, 0.0135057801, 0.0058980505, 0.0019671612, 0.0261189565, 0.00480289431, 0.0030949316, 0.0171929207, 0.011857897, 0.00832867902, -0.00716142822, -0.028371064, -0.0131212743, 0.000288808777, -0.00181782176, -0.00871318486, 0.00464153895, 0.0206397437, 0.017989397, 0.0272038132, 0.000157707618, -0.0150369387, -0.00626195827, -0.0373245664, -0.00749787083, -0.00483379234, 5.73433499e-05, -0.0157372896, -0.000537707878, 0.00524233, -0.00346227246, 0.0487773567, -0.0264210682, -0.0127916979, 0.0400985032, -0.0252950154, -0.0658604205, -0.0468822904, -0.0259679016, -0.00195857836, 0.00963325333, -0.0261052251, 0.0157235563, -0.0338914767, 0.0274372641, 0.015599966, -0.0361161195, 0.0046655708, 0.0267231818, -0.0207084063, 0.0111781443, 0.00650570774, 0.00568519905, -0.0333421789, 0.0187172126, -0.00720262527, 0.0155725013, 0.00069176784, 0.035154853, 0.0316942967, 0.0266270544, 0.0181953833, 0.0133409919, 0.0211066436, -0.00215769769, 0.0152154593, -0.0247045234, -0.040208362, -0.0193351693, 0.000118012504, -0.0395492092, -0.00942726806, 0.0332872495, -9.75212461e-05, 0.0242925528, 0.0377365388, -0.000215319189, 0.00653317245, 0.0011509438, -0.0321062692, -0.0195411537, 0.015325319, 0.00421926891, 0.00638211612, -0.0128397606, 0.0336717591, 0.0237844549, 0.0178520735, 0.00702410424, -0.00638554944, -0.00666019693, 0.00175516785, -0.0429273695, -0.0273686014, 0.0155450366, 0.023908047, 0.0338914767, 0.00845227, 0.0150506711, 0.0168770757, -0.0357316136, -0.0265583936, -0.00658466853, -0.00331293279, -0.0043462934, 0.0115832491, -0.0203376319, -0.00727815321, 0.0146798976, 0.0288379658, -0.0282337405, 0.0248830449, -0.0264759976, 0.0269291662, 0.0251576919, -0.0197608732, 0.0132448655, -0.00331464945, 0.030018948, 0.00551697752, -0.00417807186, -0.0262425486, -0.0130938096, 0.0123797264, -0.00222635968, 0.00610060291, 0.0293323305, 0.0176323559, -0.0256383251, 0.019087987, -0.00740861055, -0.0267781112, -0.00860332604, 0.00904962793, -0.0145837711, 0.0334795043, -0.00596671226, -0.00891917106, 0.0093036769, 0.00476856343, 0.00889857206, 0.0115283197, -0.031859085, 0.0279178973, -0.011542052, 0.00908395927, 0.0526224189, -0.0392470956, 0.0202140398, 0.015009474, -0.000820079644, -0.0146661652, -0.000602507498, -0.0227270629, -0.013443985, 0.0138284909, 0.0055684736, 0.0044012228, 0.0081638908, -0.015009474, -0.00578819169, 0.025391141, -0.00625852495, 0.00226412364, 0.0194312949, -0.0210105181, -0.0122698676, 0.00846600253, 0.0327379555, 0.0287006423, 0.000711079, -0.00959205627, 0.0524850972, 0.0187172126, 0.00552727655, -0.0565773398, -0.0154901072, -0.00865825545, 0.000355754077, 0.0119334245, 0.00727815321, 0.00227613933, 0.00374893541, -0.00665676361, -0.00641988032, -0.00521829864, 0.00649197539, -0.0152566573, -0.0175362285, -0.016108064, -0.0156823602, -0.024924241, 0.0124689871, -0.0246770587, 0.0151330652, 0.0237981882, -0.0304034539, 0.0147210946, -0.012915289, -0.000259627501, -0.00598387793, -0.0106151178, -0.0111300815, 0.00606627204, -0.0293597952, 0.0211203769, -0.0180717912, 0.0189918596, -0.00223837537, 0.00600790931, 0.0216696709, -0.0114184609, -0.0049951477, 0.0056611672, -0.00531785795, -0.025748184, 0.00846600253, -0.0211890377, -0.0142404614, 0.0277393758, 0.0255559292, -0.0166161601, 0.00158008013, 0.0131762037, 0.0368027352, -0.00692111161, -0.00139469327, 0.00441495515, -0.000277222105, 0.0204337575, -0.0140344761, -0.00795103889, 0.00610746909, -0.0375717506, -0.0155862337, -0.0133409919, -0.0105601884, 0.02143622, 0.0122286705, -0.0184288323, 0.00830808, -0.00963325333, 0.00450078258, -0.00863765739, -0.0173165109, 0.016066866, 0.0256520566, -0.013931484, 0.024965439, -0.00140070112, 0.0159432758, 0.0611914173, -0.0191566478, 0.0274784602, -0.0158883464, 0.0259129722, 0.00987357, -0.00398238562, -0.00136207894, 0.00497111585, 0.0127573665, -0.0154351778, -0.00115523511, -0.0121943392, 0.0153802484, 0.00398581894, -0.00732621644, 0.0334795043, -0.0160119366, 0.0149957417, -0.047733698, -0.0145425741, 0.00555474125, -0.0099422317, -0.00965385232, 0.00308463234, 0.00881617796, 0.014501377, -0.016382711, -0.0307879616, 0.00512217171, 0.0144739123, -0.0196510125, 0.00237226603, -0.0137460968, 0.00139812636, -0.0100795552, 0.0341386572, -0.0153115867, -0.0304034539, 0.0299914833, -0.0301013421, 0.00751846936, -0.00599761028, -0.000310694741, -0.0305133145, 0.030018948, 0.00854839664, 0.0215048827, -0.000545861491, -0.00326658622, -0.00461064139, -0.00775192, -0.0163140483, 0.0103542032, -0.00431196252, -0.00303485245, 0.00296104117, -0.0156548955, -0.0241552293, 0.0197746046, 0.00320650707, -0.0116313128, 0.00551354419, -0.0143915182, 0.00869258679, 0.0040819454, -0.034248516, -0.00745667377, 0.0393294916, 0.000500802184, -0.0300464127, 0.0280277561, 0.0347154178, 0.0068558827, -0.00819822121, -0.00918008573, -0.0382034369, -0.0113841305, -0.035154853, 0.023125302, 0.00171826209, 0.0342759825, 0.0304583833, 0.00163243478, 0.0169457383, -0.0250615645, 0.00868572, -0.0263798721, 0.0254186057, 0.00282715051, -0.0327379555, 0.0166298933, -0.00929681, -0.0127985636, -0.00652973913, 0.0134645831, 0.00617613085, 0.0302112009, -0.00893976912, -0.000841107336, -0.029002754, -0.000196651745, 0.0161355287, -0.00600104313, 0.00782744773, -0.0178520735, -0.00198947638, -0.0183052421, -0.00403044885, 0.0292224716, 0.0291400775, -0.00936547294, 0.0120226853, -0.00540025206, -0.00488872174, 0.0104777943, -0.0120570157, -0.00680781947, -0.0206672084, -0.0196784791, 0.00263833045, 0.00428793067, 0.00302798627, -0.0179756656, 0.00395835424, -0.0071957591, 0.00125736964, 0.00506380945, 0.0250890292, -0.01446018, -0.00932427496, -0.0180717912, -0.00283916644, -0.0251576919, -0.0123728607, -0.0135195125, -0.0040167165, 0.0347428806, -0.03699499, -0.000699921453, 0.042597793, 0.0307879616, -0.0295520481, -0.0202689692, -0.00376953394, -0.000969848246, 0.0202689692, 0.0120844804, -0.0124277901, 0.0235098079, -0.0019362634, 0.00142473285, -0.0239492431, -0.00766952569, -0.012386593, -0.0214911494, 0.0216284748, -0.0206672084, 0.00733994879, -0.000148052059, -0.0182915088, 0.002145682, 0.0274235308, 0.0117068402, -0.015599966, 0.0191841125, -0.027945362, -0.0142404614, -0.034880206, -0.00474453205, 0.0266407877, 0.00830121431, -0.00960578863, 1.16604406e-05, 0.0264485329, 0.0258717742, 0.0203101672, 0.0127093028, -0.00420553656, 0.0298816245, 0.00903589558, 0.0197471399, 0.00515650259, 0.00934487395, -0.0334520414, -0.00332494872, 0.00148824498, 0.00209590211, -0.0110820178, 0.00898096617, 0.00812955946, -0.0133066615, -0.00992163364, -0.00698977336, 0.00659840088, 0.0226584021, 0.0124277901, -0.00741547672, -0.0259129722, 0.00716142822, -0.0243200175, -0.02300171, -0.0205436163, 0.0130526125, -0.00496081682, -0.000901186431, -0.0154214455, -0.0149820093, -0.00313269557, 0.0106219836, 0.000272716163, -0.00235338393, 0.00469990168, -0.0105739208, 0.0110545531, -0.012620043, -0.010505259, 0.0311450027, 0.00768325804, 0.0104228649, -0.00491275312, 0.0145151094, -0.00746354, 0.00458317669, -0.00587401865, 0.00292499363, 0.0306231733, 0.0255971272, -0.0104365973, -0.0113978628, 0.0141031379, 0.00365624204, 0.00885737501, 0.00167792325, -0.00488872174, 0.024965439, 0.0209418554, -0.058005508, -0.0479808822, 0.0080059683, 0.0254735351, -0.0277805738, -0.0121531421, 0.0193489, 0.0215872768, -0.000205663615, -0.00137066166, -0.00349317025, -0.0111163491, 0.0174263697, -0.0122973323, -0.0216010083, -0.00946846511, -0.0205985457, 0.00817075651, 0.0215872768, 0.00217486313, 0.00878871325, -0.0118235657, -0.0447400436, 0.00408537826, -0.000938950398, 0.00179550669, 0.0218344592, 0.00421583606, -0.00978430919, -0.00241689617, -0.0265858583, 0.00170967937, -0.0247457214, 0.00411970913, -0.00210791803, -0.0185112264, 0.0137323644, 0.00532815745, -0.00274303975, 0.0115557844, 0.033040069, 0.0163277816, -0.0003373012, -0.0068009533, 0.024924241, -0.0125101842, 0.0212714318, -0.0162728522, -0.0177971441, 0.00754593406, 0.00582252257, 0.00429136399, -0.0174950324, -0.0065469048, -0.00581222307, -0.0281101502, 0.0261876192, 0.0134165203, 0.0175911579, -0.0167260207, -0.00727815321, -0.00564400153, 0.00698290719, -0.0179070029, 0.00820508786, -0.00660526706, 0.0319964103, 2.93958419e-05, -0.0165200345, 0.00845913682, -0.0115695167, -3.41699852e-05, 0.0250890292, -0.014185532, -0.00366654131, -0.0185661558, 0.0432294831, -0.000507239194, -0.0134165203, 0.0107043777, -0.0230566394, 0.00180408941, -0.00931054261, -0.0192527752, -0.0145563064, 0.0233724844, 0.0188957341, 0.0146661652, -0.0170418639, -0.0119471569, 0.0258305781, -0.0358414724, 0.0110476874, -0.00889857206, 0.00985297188, 0.0116313128, -0.00273445714, 0.0184013676, -0.00240831333, -0.0230566394, 0.00885737501, 0.0332872495, -0.00817075651, 0.00855526328, 0.0261601545, -0.00630315533, -0.0027756542, 0.00635465141, 0.0126269087, -0.00836301, 0.00261429884, -0.00366654131, 0.0139589487, 0.0039892518, -0.0228231903, -0.0531717166, -0.0144189829, 0.00318075879, 0.0142953917, -0.00488872174, -0.00966071803, 0.00874065, -0.0165063012, -0.0149957417, 9.12451214e-05, 0.0244848058, 0.0119677559, 0.000453597168, -0.0118510304, 0.00216456386, -0.00238256529, 0.00369400601, 0.0437787771, 0.00950966217, 0.0196784791, -0.0416090637, -0.00843167212, 0.035786543, -0.0113154687, -0.0268605053, -0.0169320051, -0.0245397352, -0.0180717912, -0.00349660334, 0.0109034972, -0.0215872768, 0.00286834757, -0.00084282388, 0.0112536727, -0.00968131702, 0.00795790553, -0.000678464654, 0.0170281325, -0.0112330737, 0.0317492262, 0.0565773398, 0.0254323389, 0.0248693116, 0.0436689183, 0.00723009, -0.0403731503, -0.0155450366, -0.0361161195, 0.0137117654, 0.00294044241, 0.0222738944, 0.00732621644, -0.0112124756, -0.00658810185, -0.0118235657, -0.0303485245, -0.00966758467, -0.0169594698, 0.0209555887, 0.0131212743, 0.000104655635, -0.00336099626, -0.00393775571, 0.0231115688, 0.00258855079, 0.032408379, -0.0261326898, -0.023317555, -0.010189414, -0.0159570072, -0.00900156517, -0.0215460788, 0.0290576834, -0.0161355287, 0.0193351693, 0.00532129128, -0.0263386741, -0.0243886784, 0.0314471126, -0.0128122959, -0.0155862337, -0.0135538438, 0.020571081, 0.0203513633, 0.00179550669, -0.0237569902, -0.00736054732, -0.00509127416, -0.0118647628, 0.00431196252, 0.013443985, -0.00801283494, -0.0135813085, -0.013677435, 0.0260502957, -0.00389655842, -0.00929681, -0.00427763164, -0.0106494483, 0.00596671226, 0.0153115867, -0.00879557896, 0.00726442086, 0.01881334, -0.0139383497, 0.02253481, -1.34708598e-05, -0.00645421119, 0.016973203, -0.00448018406, 0.0273411367, -0.00129685015, 0.0268330406, 0.00035596863, 0.0070859, 0.00138181914, 0.000776736881, 0.00759399729, 0.00137838605, 0.0151467975, -0.0133409919, -0.022850655, 0.0121874735, 0.0359513313, 0.00499171438, 0.000228944264, -0.0200080555, -0.0127916979, 0.00423986744, -0.00888484, 0.0117137069, 0.00995596405, -0.0121462764, 0.0421583578, -0.014501377, 0.0279728267, 0.00703783659, 0.0141168702, -0.000359187165, 0.00395835424, -0.0131624714, 0.0116381785, 0.0131968018, 0.000597357866, -0.0127367675, 0.00166333269, -0.0015860881, -0.00995596405, -0.01071811, 0.00812955946, -0.0113360668, -0.0225485414, 0.0117411716, -0.0267231818, 0.00830121431, 0.0203650966, 0.00239114789, 0.00980490819, -0.00276707136, -0.00733994879, 0.00687304838, -0.00978430919, 0.0131418724, -0.00361504499, 0.00228472217, -0.0108760325, -0.0167809501, 0.0337816179, -0.00790297613, -0.0021817293, -0.0131556047, 0.0147622917, 0.0344407707, 0.0143503211, 0.0156686269, 0.00955772586, 7.70299812e-05, -0.0228231903, 0.00112605386, 0.0103542032, -0.00580535689, 0.000416476862, -0.00427076546, -0.00535218883, 0.00097585615, -0.000774162065, 0.00474453205, -0.0154077131, 0.00590835, 0.00328546809, -0.016066866, 0.00488528842, 0.0111232148, 0.00422956841, 0.0202827025, 0.0146798976, 0.00610403577, -0.0124552548, 0.00787551142, 0.0102924071, -0.0111918766, 0.00422270223, -0.0049299188, -0.016973203, 0.0245260019, 0.0109790256, 0.00326658622, 0.0157647543, -0.00898783281, 0.00628598966, -0.0134371184, 0.0196784791, 0.0121050794, -0.0138765546, 0.00511530554, 0.0131075419, -0.00537278736, 0.00736741349, 0.0176048912, -0.020612279, 0.00606627204, 0.0103404708, 0.00285118213, 0.0127505, 0.00497111585, -0.00814329181, -0.00417463854, -0.0145563064, -0.00431539537, -0.00105395901, 0.0191978458, 0.0115557844, -0.0147210946, 0.00373177, 0.00556160742, 0.00060336577, -0.00451794779, -0.000507668359, -0.0119402912, -0.0165337659, -0.0145700388, -0.00779998302, -0.0270252936, -0.00643018, -0.00118784956, -0.000110931753, -0.026022831, 0.0152978543, -0.00331293279, 0.00965385232, 0.0367752723, 0.00638554944, -0.00071193726, -0.0199256614, 0.00891230442, 0.00303828553, -0.0271076877, -0.0143640535, -0.0193351693, -0.00557534, -0.0068558827, 0.0111506796, 0.000248899101, 0.0215048827, 0.00456257816, 0.00942040235, -0.0111026168, -0.0291675422, -0.00546548096, -0.00440808898, -0.00341935875, -0.0152154593, 0.00999716111, -0.00583625492, 0.00548264664, -0.0179344676, 0.00156033994, 0.00409224443, -0.0251027625, -0.0154214455, -0.0296069775, 0.0110545531, -0.0159707405, -0.00696574198, 0.00452138111, -0.00840420742, 0.00726442086, 0.0173851736, 0.00819822121, -0.00875438191, -0.0145975035, -0.00277050445, -0.0116313128, -0.00170538796, -0.0149545446, -0.0049848482, -0.0071682944, 0.0135881742, -0.00205813814, 8.63100577e-05, 0.0130732106, -0.0240728352, -0.000237956119, 4.51129636e-05, 0.0177422147, -0.0139452163, -0.0094615994, -0.00251645572, 0.00413344149, 0.0030949316, -0.00219889474, 0.000475483102, -0.00590148382, 0.00812269375, 0.0144327153, 0.0360886529, -0.0100520905, -0.00727815321, 0.0129290214, -0.0152017269, -0.0305682439, 0.0129770841, 0.00832867902, -0.00509470701, 0.0032545703, 0.0224249512, 0.00243234495, 0.00575386081, 0.00253190473, -0.00121359772, 0.0176598206, 0.000273789017, 0.00362877734, -0.00880931132, -0.00185043609, -0.0159707405, 0.000987872, 0.011857897, 0.0109034972, -0.00633062, -0.00615553232, 0.0191978458, 0.00439092331, -0.0170144, 0.0162179228, 0.013656836, -0.0109790256, 0.00344510702, 0.0021731467, 0.000811496924, 0.0253499448, -0.0239629764, -0.0113223344, -0.0118784951, 0.00109773083, 0.0105876531, 0.0078068492, 0.00854839664, -0.00724382233, -0.0196510125, 0.00483035902, -0.0109446943, 0.00768325804, -0.0197471399, 0.0174813, 0.00908395927, 0.0125513813, -0.00565773435, 0.0208731946, -0.016382711, 0.00421240274, -0.0105533218, 0.00233450183, -0.0320513397, -0.0200904496, -0.0152978543, -0.0081638908, -0.0200492516, 0.00346570555, 0.0254735351, 0.00386222755, -0.0122492686, -2.30660808e-05, 0.0116175804, -0.00127968471, -0.00766952569, -0.0074498076, -0.00444242, -0.00218687905, -0.00914575439, -0.0169182736, 0.011013356, -0.00325800339, -0.000467758655, 0.0194312949, -0.0204474907, 0.0068112528, 0.011205609, 0.0248281155, 0.00348458742, 0.000231089944, 0.00374550233, 0.0189094655, 0.0148446858, -0.00600790931, 0.0221503042, 0.039384421, -0.0204886869, -0.0172203854, -0.000589204254, -0.0141992643, -0.00561310397, 0.000764291908, 0.0177696794, -0.0139246173, -0.0154763749, 0.0127230352, -0.0125719793, 0.0147210946, 0.00456944434, 0.0108005041, -0.00947533175, -0.0104709277, -0.00443555368, -0.00885737501, -0.0281788111, 0.00282886717, 0.00496768299, 0.00256795203, -0.0191978458, -0.0151742622, 0.014776024, -0.0040441812, -0.0180717912, 0.010189414, 0.0135263791, 0.0175224971, 0.00169938011, 0.0167534854, 0.0140276104, 0.0116175804, 0.0147622917, 0.00673572486, 0.00954399351, -0.00371460454, 0.0325731672, 0.0190330576, 0.00769699039, 0.00843167212, -0.0118372981, -0.0105121247, -0.0211478416, 0.0210654475, 0.0114871226, -0.0116175804, 0.0178108774, -0.00790984184, 0.0152978543, 0.00994909834, -0.00599761028, 0.00182297139, 0.000809351215, 0.00328031857, 0.000221005233, -0.0100520905, 0.00709963217, 0.0267369132, -0.00267781108, -0.0191566478, 0.0227545276, 0.0187996067, 0.00143589033, 0.0382034369, 0.00910455734, -0.0120638823, -0.0179756656, 0.00199290947, -0.00419180421, -0.0114115952, -0.0165475, -0.0046278066, -0.0285083875, -0.00357728102, 0.0193077046, 0.0145975035, 0.0182365794, -0.00955772586, 0.000313913275, 0.0177971441, 0.00859646, 0.00296447426, 0.00384506211, 0.0134096537, -0.000681897742, -0.0102580758, -0.00070464192, 0.0185936205, -0.0115763834, -0.0169457383, 0.0210517142, -0.0132036684, -0.00406821305, 0.0229055844, 0.0224112179, 0.00968818273, 0.00555817457, 0.00329576735, -0.00379013247, -0.010210013, 0.00597701175, 0.00731935026, 0.00357041485, 0.00387252681, 0.0133478586, 0.0170418639, -0.00538651971, -0.0245534666, 0.00372833689, 0.0202552378, -0.0141718, -0.00420897, 0.00582938874, -0.00139555149, 0.0294421893, 0.00376610085, 0.00640958128, -0.00249585719, 0.0101413513, 0.0122492686, -0.00302626984, 0.00325113721, -0.0158471484, -0.0216422062, -0.00609716959, 0.00124792859, 0.00891230442, 0.0014659299, 0.00533845648, 0.000178306174, 0.0194450282, -0.00751160318, 0.00266407873, 0.0336992219, 0.0116793755, -0.00983237289, 0.012029551, 0.0224386826, -0.00225210772, 0.000831666344, -0.0124415224, -0.0244024117, -0.00386909372, -0.0175224971, -0.00770385657, 0.0110408207, 0.0052217315, -0.0209418554, 0.00959205627, 0.00523203099, 0.0189643949, -0.000180451854, 0.00266579515, -0.0121325441, -0.0140894055, 0.0114184609, 0.00948219746, 0.00692454493, 0.0063100215, 0.0117686363, 0.00634435238, -0.00562340301, -0.0111987432, 0.00822568592, 0.00937920529, -0.0139177516, 0.0226172041, -0.0155450366, 0.0094890641, 0.00444242, 0.00589118432, 0.0080059683, 0.0181679185, 0.00885737501, 0.011542052, 0.0136019066, -1.67363196e-05, -0.00556504074, -0.0222464297, -0.0039892518, 0.0203513633, -0.0167260207, -0.00172169518, 0.0120364176, -0.0116381785, 0.00942040235, -0.0226309374, -0.00664646458, -0.00150369387, 0.00446301838, 0.000763004471, 0.0229330491, 0.00129084231, 0.0110751521, 0.00438749045, -0.0125307823, 0.000595641322, -0.00212165038, 0.00647824304, -0.00454884581, 0.00275848876, 0.0163964424, 0.0123934587, 0.0294421893, -0.0149545446, 0.0274372641, 0.0215186141, 0.0237569902, -0.000651429058, -0.0151742622, -0.021985516, -0.0256657898, -0.00942726806, -0.001847003, -0.0139383497, -0.00120158191, 0.0243886784, 0.00302798627, -0.00231047021, -0.00752533553, -0.00237226603, -0.00224180846, -0.0195411537, -0.0003926598, 0.00630658818, -0.00970878173, -0.0244024117, -0.00557190692, -0.00651944, 0.00092264323, 0.021752065, 0.00543115, 0.00746354, 0.00676318957, -0.0229055844, 0.0253499448, -0.00764206098, 0.0129702184, 0.00480632763, -4.65076555e-05, 0.0260640271, -0.0158883464, -0.00440465566, 0.0177422147, -0.00553071, -0.0148584181, -0.0178658068, -0.00744294142, -0.00664303126, -0.00331464945, -0.00260743266, -0.00106940791, -0.00457287719, -0.00733994879, -0.00354981609, 0.011246806, 0.00848660152, -0.0012874091, 0.0110476874, -0.00471706735, 0.00253018807, 0.00906336, 0.012365994, -0.0117205726, 0.004027016, 0.00889857206, 0.0117892344, 0.00505351, -0.00801283494, 0.00458317669, 0.0146112358, -0.00250100694, 0.00100074604, -0.00240144716, -0.00582938874, 0.0177834127, -0.00151742622, 0.0170830619, 0.0152017269, 0.00758713111, 0.0121668745, -0.027945362, -0.020378828, 0.0135195125, 0.0295245834, 0.0246358626, 0.000827374926, 0.011562651, 0.00977057684, -0.0152429249, -0.0164925698, 0.0131144077, 0.00806776434, 0.0147897564, 0.0143640535, 0.00933800731, 0.00138611055, 0.00213709916, -0.00861019269, -0.0160256699, -0.00478916196, -0.0028305836, 0.0074772723, 0.00232763565, -0.0183189735, 0.0163140483, 0.0110820178, -0.0290576834, 0.0103267385, 0.00440808898, -0.00160582841, 0.00408881158, 0.0110476874, -0.0010264942, 0.00353265065, -0.00862392504, -0.00508440798, -0.0299640186, -0.00433256105, -0.0134165203, -0.000851835706, -0.016973203, -0.00490588695, 0.00707903365, -0.0117686363, 0.00126251928, 0.00478229579, 0.0276020523, -0.0131693371, -0.00125822786, -0.00363564352, 0.0187446773, -0.0249105096, -0.00198947638, -0.00776565215, -0.00589118432, 0.0221091062, 0.0304583833, -0.0225210767, 0.00104280142, 0.0154763749, -0.0125651136, 0.0046655708, -0.0151330652, -0.00751160318, 0.0017731915, 0.0209006593, -0.0143640535, -0.0100864219, -0.00566803338, 0.00110717188, 0.00348458742, 0.0106494483, -0.0119814882, 0.0318316221, 0.0361161195, 1.72995606e-05, -0.0258992389, -0.00118870777, -0.00175430952, -0.00431539537, 0.0271763485, 0.000234093895, 0.0275333915, -0.0206260104, 0.00610403577, -0.00016650492, -0.00928994454, 0.0341935866, -0.0154214455, 0.00419523753, 0.0137117654, 0.0172066521, 0.0271076877, 0.00416777236, 0.0169045404, -0.0130388802, -0.0185112264, -0.000982722268, 0.00626539113, 0.00371803762, 0.0187858753, 0.00836987607, -0.00964698568, -0.0119540235, 0.0349076688, 0.0012324797, 0.00697947433, -0.00471706735, -0.00459690904, 0.00385192828, -0.0130457459, -0.0248693116, 0.00397208659, 0.028371064, -0.00727128703, -0.0112399403, 0.0327928849, -0.0308978204, -0.0152017269, 0.0209418554, 0.0317217633, 0.015599966, -0.00329405093, 0.0248693116, 0.00533159031, 0.0061246343, -0.013402788, -6.75889805e-06, 0.00287006423, 0.00256623561, 0.00102563598, 0.0220541768, -0.0236059353, 0.00189849932, 0.00526636187, -0.0108554345, 0.00533159031, -0.0148446858, 0.0103748012, 0.025514733, -0.00844540447, -0.00393775571, 0.0109996237, -0.0035841472, 0.0107593071, 0.0071202307, -0.0080883624, 0.00410254393, 0.00586715247, 0.00108571502, 0.0239904411, 0.0134714497, -0.0158196837, 0.0135950409, -4.84454768e-06, 0.001205015, 0.0336168297, -0.00863079075, -0.0103198718, -0.0158059523, 0.00576759316, 0.0105670542, -0.00158351322, 0.00160754495, 0.0164101757, -0.00364250969, -0.0032271056, 0.00853466429, 0.00773132127, 0.0274647288, -0.0022469582, 0.0172478501, 0.0040716459, -0.0233999491, 0.0047205, -0.00659840088, -0.00545861479, -0.00397551944, -0.00889857206, 0.00414374098, 0.00608343724, -0.0110957501, -0.0389724486, -0.0139383497, 0.00391029054, -0.00358758029, -0.00127367675, 0.00932427496, 0.00404761452, 0.0250478331, 0.00645077834, -0.00675975624, 0.00642331364, 0.01071811, 0.0121462764, 0.00797850359, 0.000696488365, -0.0094890641, 0.0236883294, 0.0196510125, 0.00163243478, -0.000578905, 0.00398581894, -0.00477199676, 0.0220129807, -0.00158780464, 0.0213400945, -0.0108142374, -0.00265377946, 0.0125101842, 0.0115489187, 0.0028494657, 0.00488185557, -0.0154489102, 0.0274235308, 0.0192665067, -0.0118167, 0.00596671226, 0.0201316457, 0.00909769163, 0.0110751521, 0.0033592796, 0.0129015567, -0.00410254393, -0.00673572486, -0.00705843512, -0.0017577426, -0.0407027267, 0.00288379658, -0.015325319, 0.0144052505, -0.00121273939, -0.00643018, -0.0015981039, 0.026530927, 0.011013356, -0.0171929207, 0.00455571199, 0.00479602814, 0.00690051308, 0.00891230442, 0.0268605053, 0.0202277731, -0.00437719095, -0.0150232064, 0.0201179143, 0.0134989144, -0.035786543, -0.0202140398, 0.00799223594, -0.013402788, 0.000167792328, 0.0179207362, 0.00148395367, 0.0275196582, -0.00508440798, -0.031859085, 0.00341592566, -0.03479781, 0.00149511115, -0.00214396534, -0.0223562885, -0.00424673362, -0.0226995982, 0.0137323644, 9.3659015e-05, -0.00132259831, -0.0254735351, 0.00685245, -0.00885737501, -0.0135950409, 0.00801283494, -0.0195411537, 0.00146764645, -0.0252263527, 0.00113292, -0.00287006423, 0.0294421893, -0.0240453705, 0.00177147496, 0.0131350067, 0.00535218883, -0.00249414076, -0.00564400153, 0.0164788365, 0.00172083697, -0.0201179143, -0.00287521374, 0.00137151987, -0.000259412947, 0.0105395894, -0.00268467725, 0.0036974391, 0.00823255256, 0.0072506885, 0.0188957341, 0.0168084148, 0.00769699039, 0.0119746216, -0.00454197964, 0.0112330737, -0.0121806068, -0.00774505362, 0.000296104117, -0.00720262527, 0.00841794, 0.0166436248, 0.00659840088, 0.00863079075, -0.0195823517, -0.000498656475, -0.0114871226, -0.00608343724, 0.0229330491, 0.0212577, -0.0247731861, -0.0182640441, 0.0042536, 0.0116450451, 0.0247594528, 0.0040544807, 0.00460377522, 0.010697512, -0.0331499279, 0.0119471569, -0.0244573411, 0.0202277731, -0.00865825545, 0.0150232064, 0.0137598291, -0.0108623, -0.00230360404, -0.00121531426, -0.00968131702, 0.0197334085, 0.0130388802, -0.0140550751, 0.0184288323, 0.0043737581, -0.00745667377, 0.0138353575, 0.000371846691, 0.00990790129, -0.0037523685, 0.0268467721, -0.00262803119, 0.00224352512, -0.0231115688, -0.01071811, -0.0252950154, 0.0197334085, 0.0250341, 0.0168358795, -0.00514963642, -0.0141443349, 0.00153030036, -0.0377365388, -0.00825315062, 0.0121943392, -0.00467243697, 0.0266545191, 0.018456297, 0.0121325441, 0.0184288323, -0.0077793845, 0.0117892344, 0.000365838758, 0.00934487395, 0.013718632, 0.00771758892, 0.00197231094, 0.0157510228, -0.00819822121, 0.0110614197, 0.0189094655, 0.0198020693, -0.00529039325, 0.00240144716, -0.00962638762, -0.0052869604, 0.0131968018, 0.00598044461, -0.0149545446, -0.007504737, -0.0217246, -0.0081364261, -0.0183601715, 0.0028117015, -0.0334795043, -0.0125857117, -0.011205609, 0.00770385657, -0.0191017184, -0.00688334787, 0.0134851821, 0.00607313821, -0.0136225056, 0.00698634051, 0.0218207277, -0.0222052336, -0.00320479064, -0.017755948, -0.00560967065, -0.0310351439, 0.0214087553, -0.000473337423, -0.000674602401, 0.00776565215, 0.00821882, -0.00986670423, -0.0531991795, -0.0028889461, 0.0366104841, -0.00305030146, 0.0232076962, -0.00965385232, 0.0129427537, 0.0124552548, -0.000954399351, 0.0059255152, -0.00226755673, -0.0116244461, 0.00556160742, 0.0065743695, 0.00132688973, -0.0197471399, -0.015599966, -0.0154351778, -0.0272862073, 0.00324770412, 0.00636838377, 0.00575729366, 0.00856212899, 0.00255078659, 0.0101413513, -0.00832181238, 0.0274647288, 0.0189094655, -0.0319414809, 0.0235372726, 0.00757339876, -0.00116295961, 0.0155725013, -0.00753220171, -0.0265583936, -0.0102580758, -0.0178932715, -0.0155450366, 0.0040544807, 0.0198981967, 0.003282035, 0.0161629934, -0.0277531091, 0.0189506635, -0.0149545446, -0.0172890462, 0.0124071911, -0.00200664182, -0.00790984184, 0.0373245664, 0.0100452248, 0.0116450451, 0.00757339876, 0.00299708848, 0.0309802145, -0.0138284909, 0.00718889292, -0.00693827728, -0.00299537205, 0.0135057801, -0.0234274138, -0.0173439756, -0.00472393353, 0.00356698176, -0.00451108161, 0.00920068379, 0.0191291831, -0.0189643949, 2.58152359e-05, 0.00190193241, -0.000553156831, 0.00544144958, 0.0031412784, -0.00262116501, -0.0252126213, -0.00785491243, 0.0121600088, 0.0161629934, 0.00383819593, -0.0137598291, 0.0230703726, 0.00606627204, -0.0100864219, -0.00514277024, 0.00966071803, -0.00799910259, 0.00640271511, 0.00962638762, 0.00145305577, -0.0323534496, -0.00845913682, 0.000658724341, -0.00858272798, -0.0138902869, -0.0322435908, 0.00765579334, 0.00121874735, 0.00771758892, -0.0203513633, -0.0018195383, 0.00993536599, -0.0103748012, -0.0138010262, -0.0188408047, 0.0170693286, -0.024141496, -0.0220404454, 0.0154763749, 0.00601820881, 0.011521454, -0.01881334, 0.0222876277, -0.0156136984, -0.00784118, -0.0282612052, 0.00107627409, -0.0126955705, -0.000488357211, 0.0284259934, 0.0134989144, -0.00565086771, -0.00698634051, -0.00950966217, -0.00496081682, -0.00209933519, 0.00180065632, -0.0139864134, -0.00368027366, -0.0028031189, 0.0183601715, 0.00493678497, -0.011013356, 0.0121600088, 0.0116999745, 0.00329920044, -0.00538651971, -0.00567489956, 0.00578132551, 0.0126955705, -0.0115145873, -0.0194724929, 0.0106494483, 0.0122012058, 0.00610060291, 0.0139658144, -0.00351548521, -0.00204612222, 0.0298541598, -0.0168358795, -0.00604910636, -0.0174126383, -0.008033433, 0.0404555462, 0.00213194964, 0.0206946731, -0.0226309374, 0.00361504499, 0.0164239071, 8.16432e-05, 0.0392196327, 0.0092281485, -0.00194312958, -0.00843167212, 0.0143915182, 0.00834241137, -0.0071957591, -0.0192115773, -0.0024649594, 0.0120638823, -0.00705156894, -0.0103336042, 0.012558247, -0.00965385232, -0.00529382657, -0.00632032054, -0.00383132976, 0.016108064, -0.0236883294, 0.00379699864, 0.0099902954, 0.0272862073, -0.00352921756, 0.0224524159, 0.00262288167, 0.00272072479, 0.0200217869, 0.0105327237, -0.00293014315, 0.00572639611, 0.00629628915, 0.000543715782, -0.022809457, 0.0247182567, 0.0199531261, 0.0169457383, -0.0172066521, 0.0102374777, 0.024965439, -0.00558220595, 0.0119471569, -0.000203088799, -0.0110408207, 0.00140241766, 0.00512217171, -0.0235372726, 0.0270939544, -0.0100658229, -0.013910885, 7.81028211e-05, -0.00535218883, -0.0068009533, -0.0147897564, -0.00861019269, 0.00354981609, 0.00202552369, -0.00646794355, 0.00147022121, -0.0186348185, -0.0262288153, -0.0199256614, -0.0176598206, -0.00637868326, 0.0148996152, -0.0337816179, -0.00980490819, -0.0107112443, -0.00337987812, 0.0128122959, -0.0135675762, 0.00723695615, 0.0139177516, -0.0143091241, 0.0158883464, -0.00405104738, -0.0184700303, -0.0100658229, 0.0249929037, 0.0118647628, -0.0199943222, -0.00714082969, 0.0265171956, 0.00541398488, -0.0029438755, -0.00622076122, -0.00353265065, -0.0244985372, -0.000747984741, -0.00694171, 0.000528266886, -0.020378828, 0.0127230352, 0.000593924779, -0.0094615994, 0.000506380922, -0.00465183845, 0.0109309619, -0.0055959383, -0.00289752893, -0.00880931132, -0.0151605299, 0.0316942967, 0.0267231818, -0.00319105806, 0.00417807186, -0.0072232238, -0.0119952206, 0.0108554345, -0.00403044885, 0.00764892716, 0.00632032054, -0.018030595, 0.0116999745, 0.020886926, -0.00123848766, -0.00924188085, -0.000898611615, -0.0203925613, -0.00570236426, 0.0027172917, -0.000377425458, 0.0178520735, -0.0164925698, -0.0148858828, 0.00782058109, 0.0059255152, -0.00305716763, 0.00883677602, 0.0197334085, -0.00567833288, -0.0104571953, 0.0059358147, 0.0052869604, 0.0189643949, 0.0094615994, -0.0290851481, -0.0110751521, -0.0055787731, 0.0153665161, -0.0138971526, 0.0142267291, -0.0296893716, -0.00374206924, -0.00211478421, 0.00773132127, -0.00505351, 0.0102786748, 0.0225897394, -0.00790297613, -0.0122149382, 0.00894663576, -0.020571081, -0.0190193243, 0.0043634586, 0.000832524616, -0.00159123773, -0.0123385293, 0.00482006, -0.0280002914, 0.0135332448, 0.0400435738, -0.0134783154, 0.00276535493, -0.0056337025, -0.0166436248, 0.0209418554, 0.0101619493, 0.0156548955, -0.0272312779, -0.0106700473, 0.00327001931, 0.0310900733, -0.00374893541, -0.0132791968, -0.000229587968, -0.0114733903, -0.0188408047, -0.00623449357, 0.00238256529, 0.00932427496, -0.0113086021, -0.0109515609, 0.0264759976, 0.00315672718, 0.0217383336, 0.00773818744, -0.0216147415, -0.0212302357, -0.0204886869, -0.0243062843, -0.0011157546, -0.00950279646, -0.012029551, -0.0150369387, 0.00858272798, 0.00197402737, 0.0225760061, 0.00740861055, 0.00552727655, -0.00264176354, -0.0124209234, 0.00956459157, 0.00181267213, -7.81564668e-05, -0.0187034812, -0.0292499363, -0.0181404538, 0.00790297613, 0.0343309119, -0.000620960374, 0.00582938874, 0.0122836, 0.0254872683, -0.0183327068, 0.000171654552, -0.0178932715, -0.00384506211, 0.00797163788, 0.00743607525, 0.0168770757, 0.00155862339, -0.0241964255, -0.00523546385, -0.0148172211, -0.0130182812, -0.00278938655, -0.00904276222, -0.00779311685, -0.00155862339, 0.00854839664, 0.00426733214, 0.0108897649, -0.00037613805, -0.0127848312, -0.00303313602, 0.003282035, -0.00609716959, -0.000343523687, -0.000887454, -0.00679065427, -0.0136499703, -0.0100795552, 0.00795790553, 0.0107524414, 0.0183464382, 0.00371803762, 0.0180992559, 0.0086170584, 0.00145992194, -0.0102306111, 0.00279110298, -0.00714769587, -0.0119128264, 0.016066866, 0.00564400153, -0.00336786243, -0.00383476284, -0.0278217699, -0.00503977761, -0.00382103049, -0.0163552463, -0.0211066436, -0.0104091326, 0.018222848, -0.00672199251, 0.0100520905, 0.00895350147, -0.00462437375, 0.000862564135, 0.00349317025, -0.00736054732, -0.00354981609, 0.00691767875, 0.0114802569, 0.00986670423, -0.0242376234, 0.00649884157, 0.00376266777, -0.00312926248, 0.0338090807, 0.00441838801, -0.00015963873, -0.0261738859, 0.0219305865, -0.000351891824, 0.0304583833, -0.00784804579, 0.0120638823, 0.0130114155, -0.0410048403, -0.000995596405, -0.0226446688, 0.00589461718, -0.0132860625, 0.00606283871, -0.000116188676, 0.0164513718, 0.0107318424, 0.00373520306, -0.0109652933, 0.00667736214, 0.0277119111, -0.000275290979, -0.00728501938, -0.000218323141, 0.00797163788, 0.0227819923, 0.0050123129, 0.00701037189, 0.00280655199, 0.000574184465, 0.0230703726, 0.00699320668, -0.000902044703, 0.00733308261, -6.02936634e-05, -0.0129564861, -0.00187446771, 0.00595641322, 0.014734827, 0.0153527837, 0.0138902869, 0.0255833957, 0.0108897649, 0.0251851566, 0.0160943307, 0.0373520292, -0.00945473276, -0.00182125485, 0.0297168363, 0.0124895852, -0.00622419408, -0.0193351693, -0.0117274392, 0.00246839249, -0.00926934555, -0.00788924377, 0.0174950324, -0.00174315204, -0.00950279646, 0.00549981184, -0.000191502113, -0.00760772964, 0.00116553437, -0.00957145821, -0.0133341262, -0.00616926467, 0.00441838801, -0.0119883539, 0.0168084148, 0.00984610524, -0.00995596405, 0.00446301838, 0.00543801626, -0.023317555, 0.00860332604, 0.0171105266, -0.00910455734, 0.0049299188, -0.00782058109, 0.0113360668, -0.00124535384, -0.0175911579, 0.0117480373]
|
08 May, 2024
|
Commonly Asked C++ Interview Questions | Set 2
08 May, 2024
Q. Major Differences between Java and C++
There are lot of differences, some of the major differences are:
Java has automatic garbage collection whereas C++ has destructors, which are automatically invoked when the object is destroyed.
Java does not support pointers, templates, unions, operator overloading, structures etc.
C++ has no in built support for threads, whereas in Java there is a Thread class that you inherit to create a new thread
No goto in Java
C++ support method overloading and operator overloading but Java only has method overloading.
C++ support multiple inheritance using classes only but Java doesn’t support multiple inheritance using class. We need interfaces to implement multiple inheritances in Java.
Java is interpreted and hence platform independent whereas C++ isn’t. At compilation time, Java Source code converts into JVM byte code. The interpreter execute this bytecode at run time and gives output. C++ run and compile using compiler which converts source code into machine level language.
Q.What are C++ access specifiers ?
Access specifiers are used to define how the members (functions and variables) can be accessed outside the class.
Private: Members declared as private are accessible only within the same class and they cannot be accessed outside the class they are declared. Child classes are also not allowed to access private members of parent.
Public: Members declared as public are accessible from anywhere.
Protected: Only the class and its child classes can access protected members.
Do you know What happens when more restrictive access is given to a derived class method in C++?
Q. Major C++ features
Class: Class is a blueprint of data and functions or methods. Class does not take any space.
Object: Objects are basic run-time entities in an object-oriented system, objects are instances of a class these are defined user-defined data types.
Encapsulation and Data abstraction: Wrapping up(combining) of data and functions into a single unit is known as encapsulation. The data is not accessible to the outside world and only those functions which are wrapping in the class can access it. This insulation of the data from direct access by the program is called data hiding or information hiding.
Data abstraction – providing only needed information to the outside world and hiding implementation details. For example, consider a class Complex with public functions as getReal() and getImag(). We may implement the class as an array of size 2 or as two variables. The advantage of abstractions is, we can change implementation at any point, users of Complex class won’t be affected as our method interface remains same. Had our implementation be public, we would not have been able to change it.
Inheritance: Inheritance is the process by which objects of one class acquire the properties of objects of another class. It supports the concept of hierarchical classification. Inheritance provides reusability. This means that we can add additional features to an existing class without modifying it.
Polymorphism: Polymorphism means ability to take more than one form. An operation may exhibit different behaviors in different instances. The behavior depends upon the types of data used in the operation.
Dynamic Binding: In dynamic binding, the code to be executed in response to function call is decided at runtime. C++ has virtual functions to support this.
Message Passing: Objects communicate with one another by sending and receiving information to each other. A message for an object is a request for execution of a procedure and therefore will invoke a function in the receiving object that generates the desired results. Message passing involves specifying the name of the object, the name of the function, and the information to be sent.
Q. Structure vs class in C++
In C++, a structure is same as class except the following differences:
Members of a class are private by default and members of struct are public by default.
When deriving a struct from a class/struct, default access-specifier for a base class/struct is public. And when deriving a class, default access specifier is private.
Q. Malloc() vs new / Delete vs Free
Following are the differences between malloc() and operator new.
new is an operator, while malloc() is a function.
new returns exact data type, while malloc() returns void *.
new calls constructors( class instances are initialized and deinitialized automatically), while malloc() does not( classes won’t get initialized or deinitialized automatically
Syntax:
int *n = new int(10); // initialization with new()
str = (char *) malloc(15); //malloc()
free( ) is used on resources allocated by malloc( ), or calloc( ) in C
Delete is used on resources allocated by new in C++
Q. Inline Functions
C++ provides an inline functions to reduce the function call overhead. Inline function is a function that is expanded in line when it is called. When the inline function is called whole code of the inline function gets inserted or substituted at the point of the inline function call. This substitution is performed by the C++ compiler at compile time. Inline function may increase efficiency if it is small.
The syntax for defining the function inline is:
inline return-type function-name(parameters)
{
// function code
}
Remember, inlining is only a request to the compiler, not a command. Compiler can ignore the request for inlining.
Q.Friend class and function in C++
A friend class can access private and protected members of other class in which it is declared as friend. It is sometimes useful to allow a particular class to access private members of other class. For example a LinkedList class may be allowed to access private members of Node.
Friend Function Like friend class, a friend function can be given a special grant to access private and protected members. A friend function can be:
a) A method of another class
b) A global function
Important points about friend functions and classes:
1) Friends should be used only for a limited purpose. too many functions or external classes are declared as friends of a class with protected or private data, it lessens the value of encapsulation of separate classes in object-oriented programming.
2) Friendship is not mutual. If class A is a friend of B, then B doesn’t become a friend of A automatically.
3) Friendship is not inherited (See this for more details)
4) The concept of friends is not there in Java.
Q. Function overloading VS Operator Overloading
Function overloading is a feature in C++ where two or more functions can have the same name but different type of parameters and different number of parameters.
Note: Overloading of functions with different return types are not allowed.
Operating overloading allows us to make operators work for user-defined classes. For example, we can overload an operator ‘+’ in a class like String so that we can concatenate two strings by just using +.
Other example classes where arithmetic operators may be overloaded are Complex Number, Fractional Number, Big Integer, etc.
Q. Copy Constructor
A copy constructor is a member function that initializes an object using another object of the same class. A copy constructor has the following general function prototype: ClassName (const ClassName &old_obj);
Point(int x1, int y1) { x = x1; y = y1; }
// Copy constructor
Point(const Point &p2) {x = p2.x; y = p2.y; }
When is copy constructor called?
In C++, a Copy Constructor may be called in the following cases:
When an object of the class is returned by value.
When an object of the class is passed (to a function) by value as an argument.
When an object is constructed based on another object of the same class.
When compiler generates a temporary object.
Can we make copy constructor private?
Yes, a copy constructor can be made private
Q.What Is Inheritance?
Different kinds of objects often have a certain amount in common with each other. Yet each also defines additional features that make them different. Object-oriented programming allows classes to inherit commonly used state and behavior from other classes
Q. What is Static Member?
Static is a keyword in C++ used to give special characteristics to an element. Static elements are allocated storage only once in a program lifetime in static storage area. And they have a scope till the program lifetime. Static Keyword can be used with following,
Interesting facts about Static Members Functions in C++
static member functions do not have this pointer.
A static member function cannot be virtual
Member function declarations with the same name and the name parameter-type-list cannot be overloaded if any of them is a static member function declaration.
static member function can not be declared const, volatile, or const volatile.
Click here to read more interesting facts of C++
Click here to practice “What is the output” based Questions?
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2
|
https://www.geeksforgeeks.org/commonly-asked-c-interview-questions-set-2/?ref=next_article
|
Pandas
|
Commonly Asked C++ Interview Questions | Set 2
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0390663743, -0.0105072483, -0.0122459028, 0.0543313846, 0.0274418686, -0.0113608837, -0.0419285633, 0.00731239188, -0.00223765476, 0.0445396863, -0.0189180672, -0.0315845124, 0.015779702, -0.048355937, -0.0106139528, 0.0207383204, -0.0136707211, 0.00948414113, 0.00808442943, -0.00277745351, 0.0169346202, -0.0162818413, -0.0246926602, -0.0126664434, -0.0124216508, 0.0205374639, 0.0105700158, 0.00184378983, -0.0249186233, -0.00648386357, 0.0247554276, -0.0124279279, -0.00791495852, -0.039493192, -0.00675376272, -0.0182025209, 0.0109717259, -0.0251320321, -0.00742537295, -0.00294221775, 0.0196461696, -0.0209768359, -0.00261112023, -0.0083543295, 0.0119697265, 0.0273414422, -0.00278529944, 0.000576674705, 0.0111663053, -0.0155788474, 0.0199474525, 0.00275077741, 0.0192695651, 0.0317602605, 0.0150641548, 0.0073751593, 0.0179012381, -0.0365054682, -0.011812808, -0.0398446918, -0.0251948, -0.00140128029, -0.00196304778, -0.0218053646, 0.00304735312, 0.0209893901, -0.0500632077, 0.00765761221, 0.00434349803, -0.0219309, -0.0306053422, 0.0371582508, -0.0272159074, 0.0370578207, -0.0135451863, -0.00199913885, -0.00131419057, 0.0249813907, -0.021466421, 0.0317853689, -0.0324381478, 0.0387399867, -0.015076709, -0.0121894125, -0.00326076197, -0.00490840385, -0.0148005327, -0.0548837371, 0.0545824543, 1.04632618e-05, -0.0206629988, 0.0211149249, 0.0392923392, -0.00712409, -0.0300027747, 0.0148005327, -0.0280193277, -0.00194107916, -0.0280444361, 0.0540301, 0.0300780963, 0.0101180905, -0.00159821275, -0.0284210388, 0.0186795518, -0.0143109476, 0.00781453, 0.00298615498, -0.00493978756, 0.0376854949, -0.0109717259, -0.0106516127, -0.0470503792, 0.0684414804, -0.0161563065, 0.0175622944, 0.0165831242, -0.0714543089, -0.00483936, -0.00113530376, 0.0157169346, -0.00244478672, 0.00841082, 0.024818195, -0.0524232611, 0.0107081039, 0.0456946045, -0.0264626984, 0.00690440461, 0.0046290895, 0.00595661812, 0.0222447366, 0.00132988242, 0.00909498334, 0.0250567105, -0.00551410858, 0.0375850685, 0.0263371635, -0.0176878292, -0.00959712174, -0.00868699607, -0.000531560683, 0.0123023931, 0.021730043, 0.00415833434, -0.0078208074, 0.0102059655, 0.0753207728, 0.00428700726, -0.000363265834, -0.036631003, -0.0253328867, 0.0207759812, 0.0162943937, 0.0221945215, -0.0174744204, -0.0127919782, 0.0199725591, -0.0375097468, -0.00750697078, 0.0106139528, -0.0544820279, 0.00190969545, 0.00655918429, -0.00920796487, 0.0128484685, 0.0305551272, 0.0160056651, -0.0477784798, 0.030504914, -0.0148884067, 0.0243913773, 0.0247177687, 0.0210647099, -0.00204307609, -0.0155788474, 0.0248558559, -0.00134322047, 0.00767016551, 0.00561139779, 0.00408301363, 0.00244007935, -0.00802793913, 0.00488643534, 0.00508415233, 0.0154658658, 0.0230481569, -0.0123777138, 0.0246298928, -0.00957829226, -0.0187548734, 0.0342960581, 0.0260358807, 0.013444758, 0.0111286445, 0.00599114, -0.0624660291, -0.000363658124, -0.00922051817, 0.0243913773, 0.00177788408, -0.00619513355, -0.0244415924, 0.0282955039, 0.0189306214, -0.0498372465, -0.024818195, 0.00208858238, 0.0492597856, -0.00505590718, -0.00114864181, 0.0457197092, -0.00656546094, -0.0268393029, -0.0028229598, -0.0172233507, -0.0284712538, 0.0243035033, -0.0044345106, -0.0384889171, 0.0151771363, -0.017851023, 0.019746596, -0.00284649758, -0.057796143, -0.0287976433, -0.00992978923, -0.00925817899, -0.00917658117, 0.000619434926, 0.0143862683, 0.0115554621, 0.00084578956, -0.0227092132, 0.0165705699, -0.000603743072, -0.00511867413, -0.00970382616, -0.0463975966, 0.0358526893, -0.00305519905, 0.0379616693, -0.0349488407, -0.0109152356, 0.00752580073, 0.0223828238, 0.0206629988, 0.00700483192, -0.00499000121, 0.0073751593, 0.0365556814, -0.0176250618, 0.0281197559, 0.0125032486, 0.0289482847, -0.00936488342, -0.0142356269, -0.00905104633, -0.016532911, 0.00519085675, -0.0197214894, 0.00991095882, -0.0302538443, 0.017587401, -0.0155788474, -0.0244918056, 0.0312581211, -0.009302116, 0.0164575893, -0.0290236063, 0.0460461, -0.0471256971, 0.0351999104, -0.000922679494, 0.0144866956, 0.0282703973, -0.0206253398, -0.017675275, 0.00389157329, 0.00143031019, 0.0423302762, -0.0126978271, 0.00774548622, -0.0171480291, 0.0207257662, -0.0270401575, -0.0202487353, -0.0150892623, -0.0128547456, -0.0276176184, -0.0221443083, -0.00474834722, -0.0230481569, -0.00111725822, 0.0281197559, -0.00997372624, -0.0222196281, -0.00794634223, -0.00166804134, 0.0127417641, -0.0191691369, -0.0324381478, -0.00160841236, -0.0110533237, -0.020587679, 0.0103942668, 0.0101934113, -0.00436546654, 0.0402212925, -0.0439120121, -0.0177882556, -0.0453933217, -0.02653802, 0.00634891354, 0.00158644386, 0.0166333374, 0.0151771363, -0.0151018156, -0.0507410951, -0.0450920388, -0.0383633822, 0.02371349, 0.00817858055, 0.00908243, 0.0275674034, -0.0269899443, 0.0167463198, -0.0104821408, -0.0357773677, -0.0154407592, -0.0321117565, 0.00753835449, -0.0597042665, -0.00657173758, 0.0116998274, -0.0298772417, -0.0109654497, 0.0131936893, -0.0044784476, -0.0236005094, -0.0242658425, 0.00959084556, -0.0401208661, 0.0269899443, -0.0165956784, -0.0401710793, -0.0220062193, -0.0125283552, 0.0325887874, 0.00992978923, 0.000776353176, 0.0122270724, 0.0345471278, -0.0212906729, 0.0239771139, -0.0220313258, -0.00972893368, -0.0159052368, 0.0184033755, -0.0262618437, 0.0389157347, 0.0115554621, -0.00372524, -0.0225209109, -0.0202863961, -0.0406230055, 0.0038068376, -0.0165831242, 0.0454686396, 0.00460712053, -0.0177505966, -0.00261425856, -0.00167902559, -0.00451610796, 0.0112918392, 0.0287976433, -0.0108712986, 0.0083543295, -0.00811581314, 0.0215040818, 0.0162065197, 0.0547330976, 0.0171103701, 0.00969755, 0.00316818012, -0.0392672308, -0.0308313034, 0.00518458, -0.0014569863, -0.00864933524, -0.0139971105, 0.0461214222, 0.0184033755, 0.000670041074, 0.00129536039, 0.021027049, -0.0191691369, -0.0392421223, -0.032839857, -0.0509168431, 0.00310384366, 0.0222823955, 0.0049115424, 0.00820996426, -0.0137460418, 0.0207885336, 0.00102781469, 0.0154030984, 0.00260170503, 0.0494104289, 0.00925190188, -0.0493853204, -0.0290236063, -0.0058938507, 0.00716802711, 0.0162316263, -0.0218932386, 0.0731113628, 0.0165831242, 0.00845475681, 0.0236507226, 0.00306932162, -0.000683379127, 0.021554295, -0.00134243595, 0.0371833555, -0.0110847075, 0.0165203568, 0.0327645354, -0.0461716354, -0.0316598341, 0.0148758534, 0.0125409095, 0.0146875512, 0.0123275006, -0.0790366, 0.043284338, -0.0248809624, -0.041351106, -0.0124844182, -0.0221694149, 0.0629179552, 0.0289984979, -0.0239771139, 0.0071491967, 0.0185414646, -0.0440124385, -0.0155411866, -0.0300780963, -0.00830411538, -0.015867576, -0.0549339503, -0.0089129582, 0.0130807078, 0.043635834, -0.01163706, 0.0340449922, -0.0203115027, 0.030504914, -0.0131936893, 0.00682280678, -0.00647131, 0.0197717026, 0.00913892, 0.00819113385, 0.0245294664, -0.0112730097, -0.0296763852, -0.0157294888, -0.0120952614, -0.0315091908, -0.03085641, -0.031383656, 0.0271405857, 0.0156165073, 0.00162567338, 0.019043602, -0.0446903259, -0.0290738195, -0.0474018753, 0.0357271545, 0.0381876342, -0.0184786972, -0.0419787802, 0.0142105194, 0.0189180672, 0.0399200097, 0.0252952278, 0.0093586063, 0.00815975107, 0.00677259313, 0.0318857953, 0.0498121381, -0.0472261272, 0.0281950776, 0.0165203568, -0.0215668492, -0.00704876939, 0.0163948219, 0.0648260787, 0.0151520297, -0.0338943489, -0.0185916778, 0.0528249703, 0.0290236063, -0.0583987087, -0.0281950776, -0.0259856675, 0.00493351091, -0.00333608268, 0.0129928337, 0.00213408866, 0.0105072483, 0.0387650914, -0.011680997, 0.00876231678, -0.0201357547, -0.0324130394, -0.0312330145, -0.00544192595, 0.00702993898, 0.0015393683, -0.00289357314, 0.0145745696, 0.0029406487, -0.000508415222, 0.0119571732, -0.0105072483, -0.00800910871, -0.0167463198, -0.0359531157, 0.0111663053, 0.0162441805, 0.0295257438, -0.0161814131, -0.0249437299, 0.0214413144, 0.0121580288, -0.0226841066, 0.0149637274, 3.9278606e-05, -0.0172107965, 0.00080656, -0.0123902671, 0.0208638553, -0.00304264552, 0.0210144967, 0.001768469, 0.0239771139, -0.000234396677, 0.00963478256, 0.0253579952, 0.000821467198, -0.00364678097, -0.00590012735, -0.0228724089, -0.0130179403, 0.00592209585, -0.00527245412, -0.0217928104, 0.0119697265, -0.00677887, 0.0405727923, 0.0473014452, 0.0019614785, -0.0325887874, 0.00963478256, -0.00782708358, 0.0154658658, 0.00515947305, -0.00626103953, -0.0258099195, 0.00498058647, -0.0127543183, 0.00901966263, 0.0420289934, 0.0168467462, -0.0240775403, -0.0194453131, 0.0173112247, 0.0126413368, -0.0440124385, 0.0121078147, -0.00433094474, 0.00581225334, -0.000810482947, -0.00500569306, 0.00277117686, -0.0159805585, -0.0049115424, -0.0131058153, 0.0210521575, 0.0232490133, 0.00203366089, -0.00555176893, 0.0166333374, 0.00292024924, -0.0192946717, -0.0202989485, -0.0175999552, 0.0298772417, 0.00573693216, 0.0503142774, -0.00586874364, -0.00362795079, 0.00110784313, -6.39932332e-05, -0.0248809624, 0.00107332109, -0.0132313492, -0.0389408395, -0.00569299515, 0.0397442617, 0.00326703861, 0.0308815185, -0.00324193179, -0.0132187959, 0.0249186233, -0.011417374, -0.0158048086, -0.00195990945, -0.00719313417, -0.0161312, -0.0051751649, -0.0249562841, -0.00404221471, 0.000277941494, -0.00878114719, 0.00745048, 0.00261112023, 0.0109528964, -0.0137837017, 0.040070653, 0.00194421748, 0.00781453, 0.0102875624, 0.0171480291, 0.0366059, -0.0027021328, 0.0278184731, -0.0270150509, 0.00552980043, 0.00420227181, 0.116395704, -0.00388215831, 0.0201106463, -0.0275674034, 0.0376854949, 0.0236507226, -0.0114048207, 0.00344906375, 0.00500883162, -0.020939175, 0.0016429344, -0.0121078147, -0.00747558707, 0.0292244609, -0.00217959494, 0.0194453131, 0.0294253156, -0.00619827211, -0.00442509539, 0.0140222181, 0.0083103925, -0.00127339188, 0.0151520297, -0.0349990539, 0.0177129358, 0.0154658658, 0.0133819915, -0.044790756, -0.0169973876, 0.0112227956, 0.00334235933, -0.00915147457, -0.0253831018, -0.0299776681, 0.0181146469, -0.00654035388, -0.00243380247, 0.000397591706, -0.0128108086, 0.0180644318, -0.0165831242, 0.0130179403, 0.0049240957, -0.00228159176, 0.0153152244, 0.00556118414, -0.0193574391, -0.0098042544, 0.00317916437, -0.00778942369, 0.0111223683, -0.0129551729, -0.02759251, 0.0120576005, 0.0176627226, -0.0302538443, -0.00444392581, 0.0417779237, -0.0174367595, -0.0203617159, 0.0223200563, -0.0121078147, 0.0146122305, 0.00682908343, -0.0250692647, -0.00178729917, -0.0071805804, 0.00244949432, 0.00955946185, 0.00753835449, -0.0156792756, -0.00257816748, 0.0102436254, 0.016658444, -0.00532580633, 0.00940254331, -0.00858656876, 0.0128108086, 0.0289482847, -0.0123212235, -0.00171982439, -0.00176689983, -0.00987957511, -0.0238139182, 0.0100741535, -0.0403217226, -0.00986702181, -0.0306304488, 0.0162441805, 0.0287223216, -0.0161939673, -0.0205751248, -0.00826645549, 0.0271656923, -0.0135954, -0.00459142914, -0.0155662932, 0.00303009199, 0.0117939785, -0.0279440079, 0.0127417641, -0.0329151787, 0.0174367595, 0.00999883283, 0.00494292565, -0.00341768027, 0.0257597044, -0.0229100697, 0.00849241763, 0.0275171902, -0.037334, -0.0190938171, -0.00815975107, 0.00989840552, 0.0200980939, 0.00327645382, 0.0149386209, -0.00713036675, 0.0351245888, 0.000541760353, 0.0294755306, -0.00704876939, -0.00681653, -0.0399451181, -0.0172359049, 0.0195834022, -0.00858656876, -0.00255306042, 0.0223200563, 0.0140473247, -0.00185634324, 0.00912636705, 0.0195331872, -0.0181648601, 0.00528814597, 0.00874976348, 0.00932722259, -0.0207508728, 0.0336181745, 0.0257094912, 0.014147752, 0.0100051099, -0.00295163295, 0.0113357771, 0.00123102393, 0.00999883283, -9.3954819e-05, 0.0163320545, 0.0324381478, 0.0211149249, 0.0524734743, -0.0104256505, -0.0314589776, -0.0523730442, -0.0113483304, -0.0249562841, -0.035702046, 0.0287725367, -0.0180769861, 0.0210396033, -0.0137209343, 0.0222572889, -0.00540112704, -0.0161312, -0.0105951224, -0.0270903725, 0.01877998, 0.0212781187, -0.0184159297, 0.00981053058, 0.0109968334, 0.0108650215, 0.00513436599, -0.0140975388, -0.0156416148, 0.0234247614, 0.0507410951, -0.0229100697, -0.0194578674, 0.01163706, 0.00418971805, -0.0100364937, 0.0187172126, 0.0366812162, -0.000428386906, 0.0265882332, 1.20017967e-05, 0.00659684464, -0.0200478788, 0.00827900879, -0.012917513, -0.00643364945, 0.0125095258, 0.0428324156, -0.029626172, 0.0316347256, 0.0125095258, -0.0191565845, -0.0208387487, -0.00204778346, 0.0293499958, 0.00885019079, 0.0305802356, -0.000286375871, 0.0538794622, 0.0270401575, -0.0205751248, -0.0164073762, 0.00528186932, 0.0128484685, 0.0325134695, -0.0106453365, 0.0111788586, -0.0479040146, -0.0300780963, -0.00302852294, -0.011373437, 0.0211902447, 0.0390663743, 0.00225962326, 0.0162065197, 0.029575957, 0.000625319371, 0.00244478672, -0.0124153746, -0.00924562477, -0.00537288189, -0.0115178023, -0.031559404, -0.0083229458, 0.00257032155, 0.00724334782, -0.00557059888, 0.0352501236, -0.011417374, 0.0333419964, 0.0274920836, 0.0132187959, 0.0100051099, -0.0155788474, -0.062114533, -0.00701110903, 0.0201859679, 0.00743792672, -0.0300780963, 0.00729983859, -0.00627359282, 0.0128798522, 0.0310070533, -0.0126476139, -0.0169848353, 0.0318606868, -0.00356204505, -0.0257094912, -0.0203868225, 0.00273822411, 0.00864933524, 0.00457573729, 0.0164575893, 0.00238201953, -0.000330705283, -0.00300655421, 0.00667216536, 0.00924562477, 0.0199976657, -0.0105762919, 0.0260609891, 0.00683536055, 0.0328900702, -0.0231109243, -0.0607085451, 0.0226338934, 0.0610600412, -0.0151896896, -0.0243537165, 0.0222698431, 0.0182903949, 0.00204778346, 0.0182527341, -0.0325887874, 0.0358275808, -0.0193574391, -0.0214789752, 0.00327331526, 0.00499941641, -0.00224550068, -0.0104695875, 0.00732494518, 0.000488408143, 0.0235126354, -0.00136048149, -0.0326390043, 0.0250818189, 0.0228096414, -0.00445961766, -0.0725088, -0.00785846729, 0.00213565771, 0.034597341, 0.0261614155, 0.0259605609, -0.0213283338, -0.000456632202, 0.000909341441, -0.0154909724, 0.00614492, 0.00503393868, -0.0071366434, 0.0059377877, -0.00621710252, -0.0480546542, 0.024818195, -0.0227719806, -0.020675553, -0.0199725591, -0.0154030984, 0.000661410566, 0.0374093167, -0.0120889843, 0.0239394531, -0.0155286333, 0.0266886614, 0.0370578207, -0.0136707211, -0.0155914007, -0.0230607111, -0.0160558783, 0.0303542726, -0.00338629656, 0.0219434518, 0.0290487129, -0.0166082308, 0.00068573287, 0.00871838, -0.0200102199, 0.0191816911, 0.00147738564, 0.0281699691, 0.00631753, 0.00751952408, 0.00672237901, 0.0174242053, -0.0274418686, 0.0253077801, -0.00217488734, -0.0125409095, 0.0162441805, 0.00163351931, 0.0041395044, 0.00595975621, -0.00270056352, -0.00170884014, 0.0153152244, 0.0250441581, -0.0258601326, -0.0116245067, -0.0204370376, 0.000304225308, -0.0020164, -0.0297014918, -0.0041708881, 0.0213408861, 0.000261857378, 0.0108336378, -0.0180267729, -0.0362544, -0.00291711092, -0.00635205209, -0.00955318473, -0.00635832874, -0.00937743671, 0.0219936669, 0.0354258716, -0.0119571732, 0.0261614155, 0.0147754252, 0.00452238508, -0.00468558, -0.0219057929, -0.0146373371, -0.00241811061, 0.0234122071, 0.00914519746, -0.00223137788, 0.00371268648, -0.00732494518, 0.0252952278, 0.015779702, 0.0229602829, 0.00110392016, 0.00876231678, -0.0143486075, -0.0312581211, -0.0170978159, -0.033593066, 0.0155788474, -0.0187046584, 0.025521189, -0.0122961169, -0.0205751248, 0.0122270724, 0.0106139528, -0.01983447, 0.00406418368, -0.00463222759, 0.0188929606, 0.00447217096, -0.00505904527, 0.0111349216, -0.0258099195, 0.0224079303, 0.00710525969, 0.000747323327, 0.0248307493, 0.0150264949, 0.0146624446, -0.0132313492, -0.00863050576, -0.0277431514, 0.0345471278, -0.0111160912, -0.00265976484, 0.0290738195, 0.00494920276, -0.0128547456, -0.00553921517, 0.00225805398, 0.0354007632, -0.00351810781, -0.00969755, -0.00901966263, 0.00151583063, -0.0135577396, -0.00743792672, 0.0199474525, -0.0111914119, -0.031735152, -0.00317288772, -0.0146498904, 0.0346475579, -0.00117688708, 0.0122145191, -0.00962850545, 0.0114801414, -0.0153277777, -0.0172861181, -0.018667, -0.0174618661, 0.0111851348, 0.0344467, -0.00595975621, 0.0178635772, 0.0154533125, 0.00473265536, 0.103038818, 1.3043832e-05, -0.0142983934, 0.0026205352, 0.00965988915, -0.0170852616, -0.0196085088, -0.00802166294, 0.0063834358, 0.0171731375, 0.00971010327, 0.00860539824, 0.0253831018, 0.0311828014, 0.00294692535, 0.0228724089, 0.00347103248, 0.00945275743, -0.00818485767, -0.047251232, -0.0151520297, 0.0260107741, 0.00169157912, -0.01772549, 0.0153026711, 0.014059878, 0.0208261944, -0.0367816463, -0.0107332105, -0.00270370208, 0.0107269334, -0.0136079537, -0.00794634223, -0.0139092365, -0.000234788982, -0.00920796487, 0.0206378922, 0.0180518795, 0.000303244567, 0.00798400212, -0.00411753589, -0.00091875653, -0.0272912271, 0.00456946, -0.011109814, 0.00164607272, -0.00525676226, 0.00898827892, -0.00655918429, 0.00417716475, 0.010268732, -0.00543251075, 0.00972265657, -0.00774548622, 0.0191942435, 0.0168090872, -0.00210113591, -0.0151269222, 0.00831666868, 0.000117688709, -0.0110596009, -0.0223451629, 0.00360912038, -0.019658722, -0.00504021533, -0.00677887, -0.0244290382, 0.00685419049, -0.0011627645, 0.0103754364, 0.0059032659, 0.0246675536, 0.0157043822, 0.000266564923, 0.0147879785, 0.0332164615, -0.00229414529, 0.022746874, 0.0130430479, -0.0520717613, -0.00198030868, 0.0190561563, 0.000753600034, 0.0380118862, 0.00218116422, 0.0123839909, 0.0105260788, 0.00148836989, -0.00445334101, 0.0338441357, -0.0210772641, -0.0108273616, 0.00948414113, -0.00872465689, -0.00284806686, 0.0111349216, 0.0421545282, 0.027416762, -0.00535091339, -0.0166082308, 0.00551097, -0.00584049849, -0.0112039652, -0.0068730209, -0.00180612947, -0.0421545282, 0.0182401817, -0.0126915509, -0.00118081, 0.0247679818, 0.0370076075, 0.00615119655, -0.000949355599, -0.00278843776, 0.0298270267, -0.00299243163, 0.00325762364, -0.00772665627, 0.0178761315, -0.0133192241, -0.0329402871, 0.02759251, 0.0116621666, -0.00598172471, -0.00518144155, 0.0102499025, 0.0105700158, 0.0243537165, -0.0017104093, -0.0135954, -0.0221819691, 0.0110282172, -0.00878114719, 0.00714292, 0.00942137372, -0.00462281238, 0.0162316263, 0.0130430479, -0.00969127286, -0.0287474301, 0.0285716802, 0.0369825, -0.00822251756, 0.0182903949, 0.00230042194, -0.00675376272, 0.0131058153, -0.0197214894, -0.00875604, -0.0168969613, -0.0170350485, -0.0259605609, 0.00631125318, 0.0192319043, -0.00175434642, -0.0227217674, 0.0222196281, -0.0130179403, 0.0216170624, -0.00459142914, 0.0103440527, 0.0132815633, 0.0253705475, 0.0126727205, 0.0182150733, 0.0030614757, -0.0194955282, -0.0331913568, -0.0385391302, -0.00185163575, 0.0173990987, -0.0259605609, 0.00403907662, -0.0314087644, 0.00235848175, 0.0100804307, 0.0156792756, -0.0143486075, -0.00605704589, 0.00355890673, -0.0102122417, -0.0109277889, 0.0202612877, -0.0138841299, -0.0264626984, -0.00301440014, -0.0227719806, 0.0207006596, 0.0101683047, 0.00625790097, 0.0181272, 0.0208764076, -0.00795261841, -0.0118818525, 0.0367565379, 0.0205751248, 0.0107583171, -0.020499805, -0.0310070533, -0.0120387701, -0.0369573943, -0.00343337189, 0.00306461402, 0.003295284, 0.00721196411, -0.00292809517, -0.0204495899, 0.00204150681, -0.00242595654, -0.00317602605, 0.0219811127, 0.00178886845, 0.0112541793, -0.0111160912, -0.00819741096, -0.0348233059, -0.0041614729, 0.0131058153, 0.00306932162, 0.0069295112, 0.00900083221, 0.0224958044, -0.00370954815, -0.0140347714, 0.00157075201, 0.0149135133, -0.00373151666, 0.0020697522, 0.00107645942, 0.0242407359, -0.0196336154, 0.0148507459, 0.0176627226, -0.00781453, 0.00295634032, -0.00669727242, 0.0148256393, -0.0228724089, -0.0450418219, 0.0185540169, 0.00610412098, -0.0180644318, -0.00363422744, -0.00476403907, 0.0194704197, -1.42820154e-05, 0.00365933427, -0.00940254331, -0.0244792514, 0.0188050866, -0.0190561563, -0.019658722, -0.0204244833, -0.00257502892, 0.0174493138, 0.0040328, -6.36499753e-05, 0.00703621563, 0.0127041042, -0.0462218486, 0.0107897008, -0.00334549788, -0.00332666747, 0.0238264725, -0.00273351651, -0.0159428976, 0.00526617747, 0.00220940937, 0.00311168958, -0.000632380659, 0.0121015375, 0.0153528843, 0.0311325863, 0.00515947305, 0.0336934924, -0.0468495227, 0.013005387, 0.0119634494, -0.00734377559, -0.00763250515, -0.00722451787, 0.0446401127, 0.009302116, 0.0308815185, -0.0101180905, -0.00496803271, 0.0200227723, 0.0149511741, 0.00525048561, -8.80213483e-05, -0.00405790657, 0.000516261149, 0.00697344868, 0.00633322168, 0.00812209, 0.0184786972, -0.0023208214, -0.0104695875, 0.0218806844, 0.0358275808, 0.00722451787, -0.0339194573, -0.00216861069, -0.019796811, 0.0162567347, -0.0201734137, 0.0058938507, 0.00724962447, -0.00268644094, 0.00777059328, -0.0195834022, -0.025696937, -0.018867854, 0.00456004543, 0.0113608837, -0.00267545669, 0.0123023931, 0.00529128453, 0.0139720039, -0.00815347396, 0.00756973773, -0.0241403077, 0.0151520297, -0.000397787837, -0.0139343431, 0.024554573, -0.0108650215, 0.00394806406, -0.0120262168, 0.0185289104, -0.00552038522, -0.00371896336, -0.00553921517, -0.00628928468, 0.00580597622, -0.00233180565, 0.00373779354, 0.00922051817, 0.0184410363, 0.0115240784, -0.0369322859, 0.00352438469, 0.00110862765, -0.00210584328, 0.0264124852, 0.0109968334, 0.00199600053, 0.013444758, 0.00312895048, 0.0310823731, -0.0125597389, -0.00632380694, -0.00172453187, -0.012917513, 0.00711781345, 0.00869954936, -0.0133819915, 0.00507159904, -0.0230230503, -0.00286375871, 0.0144992489, -0.00149464665, 0.012120368, -0.00076066138, -0.00624220911, -0.0269648377, -0.0120136635, -0.015603954, 0.015867576, 0.0252952278, 0.00319485622, -0.00240241899, 0.0106202289, 0.00655290764, 0.0247428752, 0.0241403077, 0.0176878292, 0.0258350261, -0.0093837129, -0.0106892735, -0.0171856899, -0.0093586063, -0.0260107741, -0.0276176184, -0.0264626984, 0.000370915601, -0.0218555778, 0.0344969146, -0.00450355466, 0.000517830311, 0.0315845124, 0.0147377653, 0.0345220231, 0.00937116, -0.036455255, 0.0201483071, -0.0208638553, -0.0263120569, -0.0210772641, -0.00484877499, 0.0137460418, 0.0325636826, -0.0154156517, 0.00116354902, 0.00460084388, -0.00144286361, -0.0071491967, -0.0370578207, 0.0164952502, -0.0121454746, -0.0176125076, 0.011856745, -0.00493037235, -0.00724334782, -0.00254678377, 0.0132313492, -0.00170256337, 0.0266635548, -0.0119257895, -0.0153779918, -0.0312079079, -0.0121768583, -0.0159680042, -0.0128108086, -0.00729983859, -0.0337437056, 0.00285905111, -0.012120368, -0.0199600048, -0.019570848, 0.00675376272, -0.0132313492, 0.00360912038, 0.0316096172, 0.00913892, 0.012785702, 0.0173112247, 0.00337060471, 0.00449413946, 0.0177003816, -0.00433722138, -0.0120011102, -0.0061103981, 0.0016696105, 0.00978542399, -0.0189306214, 0.00464791944, -0.00812209, -0.00825390127, 0.00270997873, 0.01772549, -0.00371268648, -0.00669727242, -0.000950924761, -0.0066470583, -0.0225585718, -0.0111851348, 0.0125095258, 0.0317602605, -0.00271625537, -0.00780197699, -0.014059878, -0.00706132269, -0.00672237901, 0.0235251896, 0.0158173628, 0.00383194443, 0.0200478788, -0.0217551515, -0.0199097916, -0.00437174318, 0.0102750091, 0.0136456136, -0.00787102059, 0.0231234785, -0.00479228422, 0.00473893201, 0.00480483798, 0.00366874947, -0.0063614673, 0.00385705126, 0.0281950776, -0.00750697078, 0.0299274549, -0.00783963781, 0.0512934476, 0.0150892623, 0.0138715757, 0.0116621666, 0.00869327318, 0.0167337656, 0.00298929331, -0.00643364945, -0.0167588722, 0.00812209, 0.0244541448, 0.00323251658, -0.0140724313, 0.0230983719, 0.0039543407, -0.0178259164, -0.00390726514, -0.0158550236, 0.00976659358, 0.000529206882, -0.00584363705, 1.85359713e-05, -0.0163697153, 0.0179640055, -0.0139217898, -0.00146090926, -0.0379616693, -0.00386332814, 0.0162316263, 0.0039449255, 0.0109654497, -0.00461025909, -0.000803421601, -0.000267937954, 0.0289984979, 0.0307057686, 0.000936802127, 0.0118441917, -0.00314935, 0.0214287601, -0.000743792683, 0.0318606868, 0.0211776905, 0.00186105084, 0.0110972608, 0.00815347396, 0.00812836736, -0.00417716475, 0.00395747926, -0.00465733465, -0.0192444585, 0.00256247562, 0.00435291324, -0.0046636113, -0.00999255665, -0.00906987675, 0.0215291884, -0.0279942211, 0.0358777978, 0.00950297154, -0.00276490021, -0.00262524281, 0.00959712174, 0.00531639159, -0.00299400091, -0.0126852738, 0.00242438749, -0.00812836736, 0.00275234669, -0.0139594506, 0.0160935391, -0.0176501684, -0.00153466081, 0.000444863341, 0.0122710094, -0.000238908091, -0.00388215831, -0.00185163575, 0.00165391865, 0.00339571154, 0.00735632889, -0.0156667214, 0.0238264725, 0.00387274311, -0.009346053, -0.00672237901, 0.00480169943, 0.0177003816, 0.00774548622, 0.0132439034, -0.000915618148, -0.0109089585, -0.00311796623, -0.003922957, 0.0110407704, 0.00468244171, -0.0116245067, -0.0153905451, -0.0118818525, -0.00579028437, 0.00633636024, 0.0244164839, -0.00778942369, -0.0135828461, 0.0148256393, 0.00560198259, 0.004694995, 0.00270527112, -0.0134949721, -0.000434663641, -0.00529442262, -0.00893806573, -0.0102561787, -0.000904633896, -0.00493037235, 6.03645021e-05, -0.0128547456, 0.00989840552, 0.0232866723, -0.0114738643, -0.0288227499, -0.00221568625, -0.0068855742, -0.00961595215, -0.00508729089, -0.00624534767, -0.00755718444, -0.00120827078, -0.0113295, -0.00824134797, 0.00057039794, -0.00905104633, 0.0016429344, 0.00314307329, -0.0106390594, -0.00580283813, 0.0162065197, 0.0159177911, 0.00967244245, 0.0170476027, 0.0197591502, 0.0116558904, -0.0166458916, -0.0205625724, 0.00297203218, -0.0069295112, -0.00214350363, -0.0164199285, 0.0182025209, -0.0252826735, -0.003922957, -0.0127166575, -0.0111286445, -0.00555490702, 0.00947786402, 0.0244290382, 0.0017104093, -0.0313585512, -0.0181397535, -0.0202738419, -0.00916402787, 0.00905732345, -0.0163195021, 0.0176627226, 0.00234592822, -0.00146247842, 0.0333168879, -0.00863678195, 0.00563964294, 0.0125283552, -0.0257848129, 0.00210113591, -0.00538857374, 0.00378173054, -0.0088125309, -0.0137837017, 0.0194327608, 0.00638971245, 0.00126476132, -0.0108964052, -0.0112541793, -0.0049021272, 0.00908243, -0.000783022202, -0.000215958789, 0.0172233507, -0.0188804083, -0.0295508504, -0.00352438469, -0.000719862641, 0.015829917, 0.0104193743, -0.0173488855, -0.0158173628, 0.000795183412, 0.00121690123, 0.0032136864, 0.0199600048, -0.025659278, -0.00186575833, -0.0360284373, -0.0154030984, 0.000387784297, 0.0169346202, 0.0138590224, -0.00594406435, -0.00152916869, 0.0084233731, 0.00812209, -0.00170099421, -0.0589510612, -0.0056773033, 0.00421168655, -0.0051751649, -0.00385705126, 0.0179263446, 0.0148632992, 0.00398258585, -0.0152022429, -0.00418030284, -0.0118316384, 0.00700483192, -0.00328900712, -0.00815347396, -0.0112479022, 0.0124090975, 0.00550469337, -0.0175748467, -0.0137585951, -0.0209015142, -0.00510612084, 0.000987016, 0.00547644822, 0.0114424815, -0.00209799735, 0.0135200787, -0.0082978392, 0.00312267384, -0.00926445518, -0.00842965, -0.0205625724, 0.00629556132, -0.0206881054, -0.0149762807, -0.0203617159, -0.011197689, 0.0244290382, 0.00614805846, -0.0242281836, -2.43713712e-05, -0.00531011447, -0.0106327832, -0.0064054043, -0.000490369624, 0.00107959774, -0.00366874947, -0.0109277889, -0.0111035379, -0.00260798191, 0.00284806686, -0.0145494631, -0.0026205352, 0.0210019425, -0.000166137237, 0.0202612877, -0.0161437523, 0.00875604, -0.0135954, -0.0237009376, 0.0255086366, -0.00235848175, -0.00342395692, -0.00402024621, -0.000351104653, -0.0122207962, 0.0133819915, 0.00411753589, 0.0044564791, -0.0126225064, 0.0253077801, -0.00210270495, -0.0108148083, 0.00364991929, -0.0148507459, -0.00402024621, 0.0196712762, 0.00197403203, 0.00357459835, 0.0100867068, 0.011461311, 0.0352501236, -0.0182527341, -0.0121956887, 0.00548586296, -0.00840454362, 0.0135200787, -0.0117877014, -0.00178259169, 0.0169346202, -0.0235251896, 0.000907772279, 0.0089129582, -0.0135702929, 0.0116747199, 0.00799027923, -0.00919541158, 0.0352752283, 0.0401710793, -0.000819113455, -0.00389157329, 0.000767722668, 0.00311639719, -0.00589698926, -0.00815347396, -0.0118002547, -0.009917235, -0.0118692992, 0.00448786281, -0.0218681321, 0.0125032486, 0.0128359152, 0.0229351763, 0.0127605945, -0.00800910871, -0.00604763068, -0.00760739809, 0.00577459298, 0.00755718444, 0.00516888825, 0.0101683047, -0.0111851348, -0.010224795, 0.000560982851, 0.0102561787, -0.0107959779, -0.00552980043, -0.0063959891, 0.00441568065, 0.00200541574, 0.00756973773, -0.0199097916, 0.0184159297, 0.00352438469, 0.00854890794, 0.0109089585, -0.0198595785, -0.0322121866, -0.00345534063, -0.00845475681, -0.0368569642, 0.00114785729, 0.00281982147, 0.0105574625, -0.0223828238, 0.00728100818, 0.00288415793, 0.00984191429, 0.00292652589, 0.001983447, 0.00854263082, 0.0206002314, 0.0238139182, -0.0012498541, 0.0256467238, -0.0238641314, -0.00423051696, 0.00380369904, -0.00600369368, -0.0110407704, 0.00607901439, 0.00637715915, -0.00457259873, 0.00084422034, -0.0110596009, -0.018955728, 0.0160935391, -0.0356016196, 0.00465419609, 0.00691695791, 0.00129536039, -0.011417374, 0.0150264949, -0.00981053058, -0.000803029281, -0.00993606541, 0.01551608, -0.0147377653, 0.00011043124, 0.0215291884, 0.0385140218, 0.0249939431, -0.0189055149, -0.0127480412, -0.0107206572, -0.011680997, 0.0098607447, -0.0041614729, 0.019043602, -0.0114801414, 0.0146875512, 0.0109215127, 0.021554295, 0.00460084388, 0.00578400772, -0.0112981163, -0.0041614729, 0.0219183452, 0.0203491636, 0.0377357081, 0.0191314761, -0.00884391461, -0.00541054225, 0.0164575893, -0.0238641314, -0.00745048, -0.0109842801, -0.0157294888, -0.00184222066, -0.00134243595, -0.0110972608, 0.00782708358, 0.0181774143, 0.00744420337, 0.0103189461, -0.00231454475, 0.00162410422, -0.00263936562, 0.00851752423, 0.0152273504, 0.00642109616, -0.0238390248, -0.0207759812, -0.0049146805, -0.00276646926, 0.0134949721, 0.0200478788, 0.017763149, 0.0231736917, -0.0119508961, 0.0101180905, -0.0126978271, -0.0299274549, 0.0283206124, 0.0193323325, 0.00413008919, 0.00317916437, 0.00818485767, 0.00301910774, 0.00380997593, 0.000624142471, 0.0163948219, 0.00530069973, -0.0135954, 0.0139092365, -0.0190812629, -0.0051531964, -0.0159428976, 0.00480483798, 0.0205500182, 0.00855518505, -0.0211400315, 0.0109968334, -0.0118818525, -0.00819741096, 0.0165705699, 0.000449178595, -0.00106782885, 0.0238641314, 0.00949669443, 0.0117123807, -0.0104068201, 0.00356518338, 0.00743792672, 0.0183406081, -0.0191942435, 0.00161468913, 0.0230983719, 0.005906404, 0.0153779918, 0.011285563, -0.0101871351, 0.0190184955, 0.0223577172, 0.00089835719, 0.000711624394, -0.00233965158, -0.000750854, -0.0172107965, -0.014725212, 0.0150516015, -0.0223451629, -0.00660939794, 0.0167839788, 0.0160684325, -0.0120324939, -0.0135451863, 0.00483936, -0.00170256337, -0.0108148083, -0.0139092365, -0.0163446087, 0.000671610236, 0.00216390309, -0.000519399531, -0.0263873786, 0.0224706978, 0.0131560285, 0.0104319276, -0.00221882458, -0.00357459835, -0.00859284494, 0.00218430255, 0.0135451863, 0.0164826959, -0.0144992489, -0.00048566208, 0.00261425856, 0.0299023483, 0.00147738564, 0.0173488855, -0.00308030588, -0.0193825457, 0.0031964255, 0.00927700847, -0.0215668492, 0.011856745, -0.019658722, -0.0161688589, 0.00477031572, -0.0163446087, -0.0126476139, 0.00145777082, 0.0189180672, 0.030504914, 0.0181397535, -0.0108148083, 0.0117374873, 0.0107645942, -0.0199600048, 0.0104319276, 0.009302116, 0.00474520866, -0.0105825691, 0.0118504688, -0.0112353489, 0.00851124804, 0.0162065197, -0.0109466193, -0.0172107965, 0.0123275006, 0.00449413946, 0.0115303556, 0.00758856814, 0.0167463198, 0.018604232, 0.0264375918, -0.00824134797, -0.0264878068, -0.015603954, 8.12052094e-05, 0.00171354762, 0.0114801414, -0.0259354543, 0.0340198837, -0.0261865221, 0.00207602885, -0.0075822915, 0.00600683177, -0.0218053646, -0.00585619034, 0.0259103458, -0.00182025204, 0.0231862459, 0.00476090051, 0.0105637386, -0.00929583889, -0.000387392, -0.0118190851, 0.0174869727, 0.00773293292, -0.0153026711, -0.00598486327, -0.0173614379, -0.0237762574, 0.0208387487, 0.0225209109, 0.0166709982, -0.0123463301, 0.00900083221, 0.0111914119, 0.0213659927, -0.00466988795, -0.00911381375, 0.0109026823, -0.00145384786, -0.00338315824, -0.00295163295, 0.0111035379, -0.0147879785, -0.0111349216, 0.00439057359, 0.0155035267, -0.00489898864, 0.00275234669, 0.00506218383, 0.0121078147, -0.00971638, 0.00995489582, -0.0299776681, -0.0155662932, -0.00741909631, 0.0231987983, 0.0165580176, 0.0231109243, -0.00299557, 0.00702993898, 0.0073877126, -0.00180769863, 0.019708937, -0.0213659927, -0.00922679529, -0.00185948168, 0.0278686862, 0.00139892648, 0.00194578664, 0.00650897, 0.00019536326, -0.00184692815, 0.0124028213, -0.0113671599, 0.0228473023, 0.0148632992, -0.0108148083, -0.0220564343, -0.00753207738, -0.00684163719, 0.00903221592, -0.00456946, -0.00680397684, 0.0137711484, 0.00393864885, -0.00229885289, -0.00522851711, -0.0082978392, 0.0163069479, 0.016658444, 0.0211525839, -0.00289671146, 0.037032716, 0.00648386357, -0.0387148783, 0.021466421, -0.0133694373, -0.00631439174, -0.00460084388, 0.0176627226, 0.00643364945, 0.0254835282, 0.0063834358, 0.00362795079, 0.0128421923, 0.011065877, -0.00301283109, 0.0231862459, 0.0130430479, -0.0094150966, 0.0364301465, -0.00849241763, -0.0185289104, 0.00450669322, -0.0131058153, -0.00497430936, -0.0064399261, 0.0150390482, -0.000480169954, -0.00672865612, 0.0190938171, -0.001768469, 0.00768271927, 0.0016068432, 0.0131434752, 0.017499527, 0.0209015142, -0.0202612877, -6.67515678e-06, -0.0118692992, 0.0107771475, 0.00989840552, -0.0139343431, 0.00523793232, -0.011768871, -0.0133945448, 0.0180393253, -0.0063614673, 0.002711548, 0.0109089585, 0.0183531623, 0.016620785, -0.0165078025, 0.0261112023, -0.00757601485, 0.0074316496, -0.00375034683, 0.000526853139, -0.0192570109, -0.00899455603, -0.00430583768, -0.0221443083, 0.0188553017, -0.00547958631, -0.00647758646, -0.00146640139, -0.0132313492, -0.00619199546, -0.0273665488, -0.00364050409, -0.0177129358, 0.0150892623, 0.000224196992, 0.00989840552, 0.000341689563, -0.00504963053, 0.0105825691, 0.0248056427, 0.0068855742, 0.0200729873, 0.00238045026, -0.0254960824, 0.0266384482, 0.011285563, -0.00944648, -0.00774548622, 0.0173865464, 0.018641891, 0.017763149, -0.00583108328, 0.00635519, 0.0152775636, -0.0093335, 0.00266604172, -0.00624848576, 0.0121580288, -0.00429328438, 0.00264250394, 0.0238013659, -0.013356884, -0.00236789696, -0.00511239748, 0.0121580288, -0.021692384, -0.0105951224, -0.0102310721, 0.00945903361, 0.013532633, -0.0147377653, 0.00944648, 0.00705504604, 0.0112918392, 0.0197842568, 0.00500255497, -0.00644620322, 0.0148884067, 0.013444758, 0.0186795518, -0.0376854949, -0.0202612877, -0.0192946717, -0.0111600282, -0.00113765756, 0.0140975388, -0.00264564226, -0.00201953831, 0.0315343, 0.00354007655, 0.0162441805, -0.0165454634, 0.012120368, 0.00343964878, -0.00606959919, -0.0140724313, -0.00504021533, -0.00820996426, 0.00363422744, -0.00147267804, 0.00160056644, -0.00475462386, -0.0200604331, 0.00438429695, -0.00250755413, 0.0024730321, -0.00951552484, 0.00644620322, 0.00128123781, -0.0169095136, -0.00081283669, -0.0108650215, 0.0123149464, 0.0204872508, 0.00654035388, -0.0153277777, -0.00694206497, -0.0345722362, 0.00100349239, 0.00342395692, -0.0164324827, -0.00853007752, 0.0261112023, -0.0104256505, -0.0196838286, 0.0260609891, -0.0101494743, 0.0189306214, -0.00903221592, -0.022746874, 0.00136048149, -0.0227845348, 0.0140096638, 0.00438115839, -0.0235754028, -0.015829917, -0.0232364591, 0.00595347956, 0.0117061036, 0.0155914007, 0.0191565845, 0.0110972608, 0.0156667214, 0.0119697265, 0.00313051976, -0.0181397535, -0.00550155481, -0.00332980603, 0.0416774973, 0.00290141907, -0.0263120569, -0.00377545389, -0.0113420533, 0.0105072483, -0.00667844201, -0.0187925342, -0.00691068126, -0.0258350261, 0.00437174318, -0.0192821193, -0.00549841672, -0.00686046714, -0.0173739921, 0.0106076756, -0.00401710812, 0.0140347714, 0.0039888625, -0.0107018268, 0.00145934, 0.0284963604, -0.00952180102, -0.013708381, 0.00560512114, 0.00421168655, -0.0177003816, -0.00767644215, 0.00485819, 0.00178573, -0.0108650215, 0.0088690212, 0.00299243163, -0.00438115839, -0.000925817876, -0.00601624697, -0.0196336154, 0.00254050689, 0.00360598206, 0.0315845124, -0.0257094912, 0.0130556012, -0.0191565845, 0.0083668828, 0.00401710812, -0.00759484479, -0.00116904115, 0.00102781469, -0.0242658425, 0.00996117294, -0.0267639831, 0.011109814, -0.00823507179, 0.00453493837, -0.0140724313, -0.00597858662, 0.00566788856, 0.00846103393, 0.0122521799, 0.00517202634, -0.0153779918, 0.00890668202, 0.0188301932, -0.00780197699, -0.0158048086, 0.0204872508, -0.000743400364, -0.015829917, -0.00602566218, 0.0112541793, -0.00361853559, -0.0124216508, -0.0139468974, 0.00614805846, -0.0039449255, -0.0105951224, 0.0353254452, 0.0182025209, -0.0036938563, -0.00225805398, -0.0108838519, -0.0214287601, 0.0103942668, 0.0158550236, 0.0124655887, 0.00765133556, 0.00318387197, 0.0185665712, -0.0284461454, -0.0121580288, 0.0175999552, 0.00509356754, -0.0258099195, -0.011812808, 0.00702366233, -0.00686046714, 0.0121140918, -0.0194704197, 0.0240398813, 0.0141100921, 0.0107269334, -0.00749441702, 0.00959712174, 0.00908243, -0.00912636705, 0.00483308313, 0.0247554276, -0.00166804134, -0.000848143303, 0.00864305906, -0.0160684325, -0.0281448625, -0.00266761077, 0.00751324743, 0.00495547941, 0.011593123, 0.00851124804, -0.0119069591, 0.00568044186, 0.0220438801, 0.00552980043, 0.000235965868, -0.00487388205, 0.0138841299, 0.00220313272, -0.0062987, -0.0131309219, -0.0204746965, -0.036631003, 0.00237888121, -0.000376015436, -0.0135954, 0.010978003, 0.000719470321, -0.00196461682, -0.0223577172, 0.00378486887, -0.00299086235, -0.00199600053, 0.00100349239, -0.0363297202, 0.0233871, 0.00681653, -0.00301440014, -0.0191691369, 0.0134196514, -0.0160809848, 0.00311953551, -0.00440312689, 0.00307716755, -0.00149150821, -0.00195363257, -0.00072770851, 0.0093837129, 0.0144490357, 0.00756973773, -0.00699227862, -0.0170350485, 0.0131183686, -0.00882508419, -0.0163948219, -0.0183531623, -0.017851023, -0.0068855742, 0.0276678316, -0.00346161728, 0.0351245888, 0.014813086, 0.0194578674, 0.0377859212, -0.0217677038, -0.0108085312, 0.009346053, 0.00553921517, -0.00106861349, -0.00729983859, 0.0266635548, 0.00510612084, 0.0192821193, -0.012120368, 0.0107081039, -0.00704249227, 0.0230230503, 0.0216798298, 0.00895689521, 0.0167337656, 0.000723393285, -0.000152406879, 0.000424463942, 0.0053917123, -0.00235691271, -0.0138841299, -0.0214413144, 0.0132062426, 0.00976031739, -0.0191189237, -0.0174744204, 0.00452238508, 0.00372210168, -0.00485505164, -0.00173551624, -0.0111537511, -0.0112290727, -0.0118881287, 0.0240273271, -0.00808442943, -0.00195363257, -0.0145871239, 0.00807187613, -0.0194578674, -0.000767722668, -0.0108650215, -0.0179263446, 0.0119006829, 0.000161821983, -0.00851752423, -0.00898200274, -0.0197717026, -0.0183280557, 0.00947786402, -0.0203868225, 0.0108650215, 0.0121705821, 0.00346161728, -0.0135828461, -0.0242407359, 0.00701110903, -0.0015848747, -0.00396375591, -0.00970382616, 0.0188176408, 0.0110972608, 0.0116558904, -0.0080656, 0.00400141627, -0.0214287601, -0.00782708358, -0.00214036531, -0.0128170857, 0.0200353265, 0.00563650485, -0.024906069, -0.0174869727, -0.00854890794, 0.0031870103, 0.00998000242, 0.000138970747, -0.00681025349, -0.0175622944, 0.00894434191, -0.000826959324, -0.00810953695, 0.0215166342, 0.00290926499, 0.0231360309, -0.00733749894, 0.00603821548, -0.00364991929, 0.00301126181, -0.0160558783, -0.000254796061, 0.016972281, 0.00124436198, -0.000484092889, 0.0216296166, 0.0207383204, -0.013708381, -0.0056992718, -0.00965361297, -0.00741281966, -0.00519085675, 0.0138088092, -0.0173488855, 0.0275171902, -0.0104570342, -0.000589228177, -0.00205562939, -0.000596681784, 0.00114471884, -0.00711781345, 0.00578086963, 0.0152022429, 0.00327959214, -0.00936488342, 0.00733749894, 0.00721196411, -0.0193699934, 0.0111725815, 0.000552352343, -0.00882508419, -0.0113169467, -0.00181711372, 0.0070801531, 0.013356884, 0.0144239282, 0.00464164279, 0.0174869727, -0.026889516, 0.00578714628, 0.000207524427, 0.00760112144, 0.0119383428, -0.00639912765, -0.00856146123, -0.00807187613, -0.0184410363, 0.0148758534, -0.0136456136, 4.71674275e-06, -0.0255965106, 0.0088125309, 0.0145494631, -0.0179263446, 0.0298270267, -0.00285591278, 0.0225209109, -0.0034427871, -0.00249186228, -0.00784591399, 0.0184284821, 0.0359782241, 0.00886274502, 0.00392609555, -0.00785219111, -0.017411653, -0.000366404187, -0.00908870716, 0.00847986434, 0.0175246336, -0.0133066699, -0.00877487, -0.00153623, 0.00488643534, 0.00614492, 0.0360535458, 0.00303009199, 0.00132517493, -0.0111411978, 0.00868699607, -0.0186795518, 0.0122207962, -0.00596917141, -0.00890668202, -0.00252010766, -0.00306932162, -0.00647758646, -0.00564905815, -0.00740654301, 0.0126036759, -0.000328547641, -0.000788122066, 0.00656546094, 0.00217959494, -0.0230858177, -0.0187046584, -0.0068981275, 0.00302695367, -0.00628614658, -0.00165234949, -0.00896317232, -0.00586246699, -0.000554313825, -0.0037158248, -0.0120011102, 0.0156165073, -0.0203742702, 0.0159428976, 0.00246204785, -0.049460642, -0.0270903725, -0.00467930315, 0.00470127165, -0.00618571881, -0.00212310441, 0.0192570109, -0.00186418917, 0.017499527, 0.00981680769, 6.0897778e-06, -0.0151018156, -0.00716175046, 0.00376603869, 0.00438743504, -0.0037032715, -0.023587957, -0.00274450076, -0.00214350363, -0.00817858055, -0.0109968334, -0.00359970541, -0.0110156629, -0.00415519625, -0.00680397684, 0.01163706, -0.00494920276, -0.00722451787, 0.00799655542, -0.00633322168, 0.0174242053, -0.00604135403, 0.00077243027, 0.0145243565, 0.0135954, 0.0373591036, -0.0180267729, 0.0103063928, -0.00299400091, 0.00906987675, -0.0262116306, -0.0119257895, -0.0054042656, -0.0275422968, 0.00534149818, 0.000717901159, -0.0128798522, 0.017675275, -0.0275674034, 0.00501510827, 0.00592523441, -0.0264626984, 0.00357459835, 0.00564905815, 0.0267890897, -0.0217049364, -0.0211274773, 0.0191314761, 0.00142481795, -0.00618258025, 0.000941509672, -0.022483252, -0.00249186228, 0.0103628831, 0.00628928468, -0.00681653, -0.0101745818, -0.00320113287, -0.0161814131, -0.021378547, -0.0118441917, -0.00641481951, 0.0176627226, 0.0148758534, -0.0170852616, 0.00011641375, 0.00053783739, -0.00499000121, 0.00025381532, 0.0163069479, 0.0194327608, 0.00489585055, -0.00979797728, -0.00373151666, -0.0280444361, 0.00697344868, 0.0396438353, 0.00449727802, -0.00504963053, -0.0239645597, -0.0132941166, 0.00468244171, -0.00474520866, -0.00420541, 0.0161688589, -0.00605704589, -0.00992351212, 0.00242124917, -0.0147377653, -0.0018406515, -0.00399827771, 0.0027068404, 0.0063834358, 0.00609156769, 0.000181829062, 0.00794634223, -0.00716802711, -0.0304044858, 0.0170852616, -0.0233368874, 0.0145745696, 0.0117877014, 0.0101934113, -0.0403468274, -0.00554549228, -0.00265348819, 0.0200353265, 0.0155788474, 0.0273665488, 0.0291240327, -0.00873721, -0.0222698431, 0.00947158784, 0.0143235009, 0.00433408283, -0.0154407592, -0.00488957344, 0.00948414113, -0.0232741199, 0.0230104961, -0.00998000242, -0.00144678657, -0.0129049597, 0.018604232, -0.00246204785, 0.0125534628, 0.0012859453, -0.00506532192, 0.041526854, 0.00297203218, 0.0298270267, -0.0018139754, -0.012785702, 0.000973677961, 0.00910753664, -0.0156290606, 0.00962222926, 0.00164921116, -0.00570554892, 0.0146624446, -0.0128547456, -0.0302538443, -0.0170350485, -0.00726217823, 0.00553921517, -0.00339571154, 0.0127292108, 0.00550783146, -0.0186167844, -0.0355765112, 0.00376917724, -0.011812808, -0.0220438801, -0.0169471744, -0.000845004921, 0.00595975621, -0.0143235009, -0.00877487, 0.00301753846, -0.00961595215, -0.000677494681, -0.00384763628, 0.00484877499, 0.0188050866, -0.00171197846, -0.012785702, 0.0182527341, 0.0220940933, 0.0030567681, 0.0128798522, 0.0146749979, -0.013356884, -0.00542937266, -0.00220470177, 0.00674120942, -0.00417716475, -0.00758856814, 0.0135200787, -0.0152650103, 0.0190687105, 0.0015801671, 0.00211212016, 0.0196085088, -0.00287003536, 0.00841082, -0.0160558783, 0.0134070981, -0.000914833567, -0.0184159297, -0.00667844201, 0.00484877499, -0.017587401, 0.0188176408, 0.0113985436, 0.00778314658, 0.0146875512, -0.0190184955, 0.020939175, -0.00130477548, 0.00136597361, -0.0167839788, 0.0260358807, -0.0240147747, -0.00164136523, 0.0338441357, -0.0184912495, -0.0127605945, -0.00474520866, 0.0382378474, -0.0170350485, 0.00561139779, -0.00925190188, 0.00121925503, -0.000202620737, -0.00541054225, 0.00411439734, -0.000302067696, 0.0400957577, -0.0154909724, 0.00775804, -0.00800910871, 0.0172610115, -0.0165705699, 0.0188176408, -0.0175246336, 0.0073751593, -0.0114550348, 0.0239520073, -0.00428386917, -0.0105260788, 0.0132815633, 0.0247554276, 0.00443764916, -0.00965361297, -0.00880625378, -0.00202738424, -0.0140975388, 0.0132564567, 0.0199223459, 0.0268393029, 0.0289984979, -0.0043999888, 0.00902594, 0.0009517094, -0.0214915276, 0.017587401, -0.00952180102, 0.000415833434, -0.0175371878, -0.0122961169, -0.00593151106, 0.0182903949, 0.0120701538, 0.0145243565, -0.015340331, -0.00382252946, 0.00179671438, 0.0309568383, 0.0307559837, 0.00661567459, 0.00721196411, -0.0146498904, -0.00418658, -0.0158926845, -0.00197717035, 0.0222823955, -0.0221443083, -0.00799027923, 0.0110093867, 0.0145620164, 0.00741909631, -0.00633008359, 0.0167588722, -0.0066219517, 0.0207257662, 0.0100867068, -0.00131419057, 0.00971638, -0.00973521, -0.00170099421]
|
15 Mar, 2023
|
C++ Programming Examples
15 Mar, 2023
Writing C++ programs yourself is the best way to learn the C++ language. C++ programs are also asked in the interviews. This article covers the top practice problems for basic C++ programs on topics like control flow, patterns, and functions to complex ones like pointers, arrays, and strings.
C++ Tutorial
C++ Recent Articles
Topics:
Basic Programs
Control Flow
Pattern Printing
Functions
Arrays
Matrix
Pointers
Strings
Conversion
Searching And Sorting
Structures
Class and Objects
File Handling
Exception Programs (try and catch)
STL
Date and Time
Miscellaneous
Basic C++ Programs
C++ Program For Hello World
C++ Program to Print Your Own Name
C++ Program to Get Input from the User
C++ Program to Read Number Input From User
C++ Program to Add Two Numbers
C++ Program to Swap two numbers
C++ Program to Find the Size of int, float, double, and char
C++ Program to Multiply Two Floating-Point Numbers
C++ Program to Print the ASCII Value of a Character
C++ Program to Calculate Fahrenheit to Celsius
C++ Program to Find Simple Interest
C++ Program to Find Compound Interest
C++ Program For Area And Perimeter of Rectangle
C++ Control Flow Programs
C++ Program to Check Even or Odd Integers
C++ Program to Find Largest Among 3 Numbers
C++ Program to Check Whether a Character is a Vowel or Consonant
C++ Program to Check if a Given Year is a Leap Year
C++ Program to Print Multiplication Table of a Number
C++ Program to Calculate Sum of First n Natural Numbers
C++ Program to Find Factorial of a Number
C++ Program to Reverse a Number
C++ Program to Find GCD
C++ Program to Find LCM
C++ Program to Check Whether a Number is a Palindrome or Not
C++ Program to Check Whether a Number is Prime or Not
C++ Program to Display Prime Numbers Between Two Intervals
C++ Program to Check Neon Numbers in a Given Range
C++ Program to Check Armstrong Number
C++ Program to Display Armstrong Numbers Between 1 to 1000
C++ Program to For Fibonacci Number
C++ Sum of Fibonacci Numbers at Even Indexes up to N Terms
C++ Program to Calculate the Power of a Number
C++ Program to Display Factors of a Natural Number
C++ Program to Make a Simple Calculator
C++ Pattern Printing Programs
C++ Program To Print Right Half Pyramid Pattern
C++ Program To Print Left Half Pyramid Pattern
C++ Program To Print Simple Full Pyramid Pattern
C++ Program To Print Inverted Pyramid
C++ Program To Print Triangle Pattern
C++ Program To Print Number Pattern without reassigning
C++ Program To Print Character Pattern
C++ Program To Print Continuous Character Pattern
C++ Program To Print Full Diamond Shape Pyramid
C++ Program To Print Inverted Hollow Star Pyramid Pattern
C++ Program To Print Hollow Star Pyramid in a Diamond Shape
C++ Program To Print Pascal’s Triangle
C++ Program To Print Floyd’s pattern Triangle Pyramid
C++ Program To Print Reverse Floyd Pattern Triangle Pyramid
C++ Function Programs
C++ Program to Display Prime Numbers Between Two Intervals Using Function
C++ Program to Check Whether a Number Can be Express as Sum of Two Prime Numbers
C++ Program to Find the Sum of Natural Numbers using Recursion
C++ Program to Calculate the Factorial of a Number Using Recursion
C++ Program to Reverse a Sentence Using Recursion
C++ Program to Calculate Power Using Recursion
C++ Program For Variadic Function Templates
C++ Array Programs
C++ Program to Check if Two Arrays Are Equal or Not
C++ Program to Find the Maximum and Minimum in an Array
C++ Program to Calculate the Average of all the Elements Present in an Array
C++ Program to Merge Two Arrays
C++ Program to Print a 2D Array
C++ Program to Find Common Array Elements
C++ Program to Remove Duplicate Elements From an Array
C++ Program to Remove All Occurrences of an Element in an Array
C++ Program For Array Rotation
C++ Program to Copy All the Elements of One Array to Another in the Reverse Order
C++ Matrix Programs
C++ Program to Add Two Matrices
C++ Program to Check Whether Two Matrices Are Equal or Not
C++ Program to Compute the Sum of Diagonals of a Matrix
C++ Program to Print Boundary Elements of a Matrix
C++ Program to Find the Transpose of a Matrix
C++ Program to Find the Determinant of a Matrix
C++ Program to Find the Normal and Trace of Matrix
C++ Program to Multiply Two Matrices
C++ Program to Rotate Matrix Elements of a Matrix
C++ Program to Interchange Elements of First And Last Rows in Matrix
C++ Program To Interchange Elements of First And Last Columns In Matrix
C++ Pointers Programs
C++ Program for Pointers
C++ Program for an Array of Pointers
C++ Program for void Pointer
C++ Program for Reference To a Pointer
C++ Program for Function Pointer
C++ Program for this Pointer
C++ Program For Opaque Pointer
C++ String Programs
C++ Program to Find the Length of a String
C++ Program to Access Characters in a Given String
C++ Program to Determine the Unicode Code Point at a given index
C++ Program to Replace a Character in a String
C++ Program to Compare Two Strings
C++ Program to Add/Concatenate Two Strings
C++ Program to Add 2 Binary Strings
C++ Program to Remove Leading Zeros
C++ Program to Compare Two Strings Lexicographically
C++ Program to Reverse a String
C++ Program to check if the String is Palindrome
C++ Program to Print the First Letter of Each Word of a String
C++ Program to Insert a String into Another String
C++ Program to Splitting into a Number of Sub-Strings
C++ Program to Reverse a String Using Stacks
C++ Program to Check Whether the Given String is Pangram
C++ Conversion Programs
C++ Program For Binary to Decimal Conversion
C++ Program For Binary to Octal Conversion
C++ Program For Octal to Decimal Conversion
C++ Program For Decimal to Octal Conversion
C++ Program For Hexadecimal to Decimal Conversion
C++ Program For Decimal to Hexadecimal Conversion
C++ Program For Decimal to Binary Conversion
C++ Program For Boolean to String Conversion
C++ Program For String to Double Conversion
C++ Program For Double to String Conversion
C++ Program For String to Long Conversion
C++ Program For Long to String Conversion
C++ Program For Int to Char Conversion
C++ Program For Char to Int Conversion
C++ Searching and Sorting Programs
C++ Program to Search an Element in an Array (Linear Search)
C++ Program to Search an Element in an Array (Binary Search)
C++ Program to Sort an Array(Selection Sort)
C++ Program to Sort an Array(Bubble Sort)
C++ Program to Sort an Array(Insertion Sort)
C++ Program of Merge Sort
C++ Program to Sort a String
C++ Program to Sort the 2D Array Across Rows
C++ Program to Sort the Elements of an Array in Descending Order
C++ Program to Sort the Elements of an Array in Ascending Order
C++ Structures Programs
C++ Program to Pass or Return a Structure to/from a Function
C++ Program to Store Information of a Student in a Structure
C++ Program For Structure Sorting (By Multiple Rules)
C++ Class and Object Programs
C++ Program to Create a Class and Object
C++ Program to Show Encapsulation
C++ Program to Show Inheritance
C++ Program to Show Abstraction in Class
C++ Program to Show Data Hiding in Class
C++ Program to Show Polymorphism in Class
C++ Program to Show Function Overloading
C++ Program to Show Function Overriding
C++ Program to Show Usage of Access Modifier
C++ Program to Show Use of This Keyword in Class
C++ Program to Show Usage of Static keyword
C++ Program For Friend Functions
C++ Program For Virtual Destructor
C++ Program to Create Abstract Class
C++ Program to Create Singleton Class
C++ Program to Create an Interface
C++ Program to Overload Increment ++ and Decrement
C++ Program to Add Two Complex Numbers
C++ File Handling Programs
C++ Program to Create a New File
C++ Program to Create a Temporary File
C++ Program to Write Into a File
C++ Program to Rename a File
C++ Program to Make a File Read-Only
C++ Program to Compare Paths of Two Files
C++ Program to Copy one File into Another File
C++ Program to Append the Content of One Text File to Another
C++ Program to Get the List of Files in a Directory
C++ Program to Append a String in an Existing File
C++ Program to Read Content From One File and Write it into Another File
C++ Exception Handling Programs
C++ Program to Show Runtime Exceptions
C++ Program to Show Types of Errors
C++ Program to Handle the Exception Methods
C++ Program to Handle the Exception Methods
C++ Program to Handle the Checked Exceptions
C++ Program to Handle the Unchecked Exceptions
C++ Program to Handle Divide By Zero and Multiple Exceptions
C++ Program to Show Unreachable Code Error
C++ Program to Show Thread Interface and Memory Consistency Errors
C++ STL Programs
C++ Program to Sort an Array Using STL
C++ Program To Initialize A Vector
C++ Program To Copy A Vector Using STL
C++ Program For Merge Operations Using STL
C++ Program To Show transform() Using STL
C++ Program For Deque Using STL
C++ Program For Priority Queue Using STL
C++ Program For Map Using STL
C++ Program For Pair Using STL
C++ Program For Multiset using STL
C++ Program To Reverse A Vector Using STL
C++ Program To Reverse An Array Using STL
C++ Program For Stack Of Pair Using STL
C++ Program To Find Permutations Of A Given String Using STL
C++ Program To Find All Permutations of an Array Using STL.
C++ Program To Find Maximum And Minimum Elements In a Set Using STL
C++ Program To Insert And Delete Elements in a Set Using STL
C++ Program To Find Sum Of Elements Of a Vector Using STL
C++ Program To Implement Different Methods To Copy in STL
C++ Program To Implement Binary Search Functions Using STL
C++ Program To Check If Two Vectors Contain the Same Elements Or Not
C++ Date and Time Programs
C++ Program to Display Dates of Calendar Year in Different Formats
C++ Program to Display Current Date and Time
C++ Program to Convert the Local Time to GMT
C++ Miscellaneous Programs
C++ Program to Find Quotient and Remainder
C++ Program for sizeof() Operator
C++ Program to Find Initials of a Name
C++ Program to Find Power Without Using * and / Operators
C++ Program to Find the Roots of the Quadratic Equation
Generate Random Double Numbers in C++
How to Hide and Show a Console Window in C++?
How to Run a C++ Program Without Namespace?
Build a custom Map using a Header File in C++
C++ Program for Number of Unique Triplets Whose XOR is Zero
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples
|
https://www.geeksforgeeks.org/cpp-programming-examples/?ref=ml_lbp
|
Pandas
|
C++ Programming Examples
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.02008125, -0.005581473, -0.0117730666, 0.0532989241, 0.0356732197, 0.0147106834, -0.026935691, 0.0232297741, -0.0148989921, 0.0248416979, -0.0126016252, -0.0192828216, 0.0266494621, -0.0438684188, -0.000869045092, 0.00313722459, -0.0094229728, -0.0134226512, -0.0231695157, -0.0347090773, -0.0108013926, 0.00356845185, -0.04435049, 0.0435972549, -0.011230737, 0.0386560299, 0.0021730836, 0.0114115132, -0.018755557, 0.00811234303, 0.0458569601, -0.00380948698, -0.0137917362, -0.0354020558, 0.00579614472, -0.023064062, 0.0204729326, 0.0208043568, -0.0289242323, 0.0117730666, 0.0434466079, 0.011833325, 0.00679794792, -0.00741560059, 0.00858688168, 0.0037153326, 0.000701450277, -0.0320878215, -0.00341215543, -0.0264686849, 0.0102665955, -0.0170984399, 0.0659834072, -0.00149987964, 0.0108164577, -0.0018576663, -0.0158932619, -0.0149441864, -0.00752105331, -0.0276889261, -0.0170532446, -0.0122927986, 0.00851909, -0.0280655436, 0.0250676684, 0.00876765791, -0.0506475344, 0.0424222052, 0.0380835719, -0.0195690505, -0.030054085, 0.031244196, -0.0157426149, 0.000889759103, -0.0229736734, -0.0128803216, 0.0119086485, 0.000657197728, -0.000239740635, 0.0394695252, -0.00759637682, 0.00358539959, -0.000595055812, -0.0100481575, 0.00680171372, 0.00393565372, 0.0139875775, -0.0573663935, 0.018891139, 0.00995023735, -0.00516342744, 0.0154563868, 0.0279299617, -0.0112081403, -0.0174147971, 0.00882791635, 0.0265741386, -0.000930716225, -0.0431151837, 0.0616749, 0.0183488093, 0.0153132714, 0.0016778314, -0.0320275612, 0.00803701952, 0.0082479259, 0.013761607, 0.00739676971, 0.00523875095, -0.00273612677, -0.00496758614, -0.00691093318, 0.00380007154, 0.00148481491, -0.0609517917, -0.00668872846, 0.0104247751, -0.0631512403, 0.0248868912, 0.0128125306, 0.0379630551, 0.03720982, 0.019930603, 0.0280504785, -0.0869534686, 0.0189212691, 0.0350103714, -0.0146579575, 0.0145600364, 0.00497135241, 0.0101159485, -0.00210717553, 0.0101988045, 0.0123982513, 0.0196142439, -0.00888817571, 0.00177575194, 0.0216931738, -0.0129029192, -0.00921206642, -0.031394843, -0.0199607331, 0.000723105797, 0.00648912136, -0.0234858729, -0.0274026971, -0.013475378, 0.0717079937, 0.00521238754, 0.0139725134, -0.055498369, -0.00579991098, 0.0200511217, 0.0063309418, 0.0524251685, -0.0203072205, 0.0359745137, 0.0187856853, -0.00988244545, -0.0738773122, 0.0127673363, -0.0335942917, -0.00637237, -0.0205030628, -0.0299034379, 0.0215726569, 0.0208947454, 0.0322987251, -0.062789686, 0.0366976187, 0.0265138783, 0.0188007504, 0.0100556901, 0.0246609207, -0.0425728522, -0.000685444043, 0.0213918798, 0.0223861504, 0.0195238572, -0.002845346, -2.08610836e-05, 0.000693917915, -0.00212600641, 0.0148763955, 0.0142662749, -0.0086170109, 0.0327506661, -0.0124961725, 0.0205030628, -0.0266494621, -0.0137842046, -0.0149893807, 0.0191020444, 0.0177763514, 0.0152078187, -0.0195087921, -0.0631512403, 0.022612121, -0.0111026866, 0.0407650881, -0.000866220507, -0.0183638744, -0.0289091673, 0.00381513638, 0.0454954058, 0.0147408126, -0.00199419027, -0.00729131699, 0.0326602794, 0.00990504306, -0.0255346727, 0.048056405, -0.0283367075, -0.0399214663, 0.0177763514, 0.00275684078, -0.030204732, 0.0695989355, -0.0313044563, -0.0308223851, 0.00975439604, 0.0220547263, 0.0335340314, -0.0523347817, -0.0623076148, -0.0517020635, 0.0103117898, 0.0203373507, 0.00211470784, -0.00939284265, 0.0286380015, -0.000112985283, -0.0133699253, 0.000480422837, 0.0410965122, 0.0205482561, -0.013309666, 0.0027850871, -0.0167820808, 0.040011853, 0.0071971626, 0.0066360021, -0.0250526033, -0.0216027852, -0.000767829129, 0.0218438208, 0.00817260239, 0.0297075957, 0.0202620272, 0.0114567075, 0.00174750562, 0.019795021, 0.0301294085, 0.0166464988, -0.0224313438, -0.00343851862, -0.0173997339, -0.0149140572, 0.0146052307, -0.00992764, 0.00525758183, 0.02722192, -0.00431980379, 0.00665859925, 0.00485083461, 0.00585640362, 0.030656673, -0.0282011256, -0.00550614949, -0.0567939356, 0.0616146401, -0.0334436446, 0.0171586983, 0.0145449722, 0.0350405, 0.0106658107, -0.0243596267, -0.0182282925, 0.0146805542, -0.0110424282, 0.0223409571, 0.000787601573, 0.0280203503, 0.0121948775, -0.0114190457, -0.0371495597, -0.0410061255, 0.0174449272, -0.0468813591, -0.00921206642, -0.0223560203, 0.00688833604, -0.0214370731, 0.00363059365, 0.0356129594, 0.0271164682, -0.0163000096, -0.0194033384, -0.00971673429, 0.016058974, -0.040614441, -0.0450434648, -0.00475668, -0.0176708978, -0.0489301607, 0.000530089252, 0.0195690505, -0.0384149961, 0.00181812153, -0.04730317, -0.011599822, -0.0405240543, -0.0447723, -0.00820273161, -0.0219492745, 0.00102345832, 0.0619460642, 0.0129857752, -0.0359443836, -0.0144922454, -0.00309203053, 0.00904635526, 0.000855392718, 0.0495628752, 0.0495930053, -0.0152304154, -0.0205934513, 0.0208646152, -0.0119538428, -0.0424523354, 0.000596468104, -0.00830818433, -0.0478455, -0.0218136907, 0.00702015217, -0.0683335, -0.00242918357, 0.0174750574, -0.00417668931, -0.00261372607, -0.0308826435, 0.0145299071, -0.0110725574, -0.0106055513, 0.00054562476, -0.0418497473, -0.00289995549, 0.0132042132, 0.0135808308, 0.00367390481, 0.00155637227, 0.0150119774, 0.0478153713, 0.0024781439, 0.0262879077, -0.0283517726, -0.0109746372, 0.00256099971, 0.0165862385, 0.0156522281, 0.0222957619, 0.0197498277, -0.0108164577, 0.00868480187, -0.0145600364, -0.0306868013, -0.000545154, -0.019644374, 0.0109972339, -0.00634600641, -0.0398009494, -0.000330011186, -0.0142662749, 0.00478304364, -0.0293761734, 0.0227928981, 0.0189815275, 0.0292707197, -0.0416388437, -0.0293309782, -0.0362758078, 0.0458569601, 0.0444408767, 0.00710300775, -0.0116450163, -0.0137088811, -0.0358238667, -0.0148763955, 0.00960374903, 0.00699755503, -0.018755557, 0.0145073105, -0.00948323123, 0.0161192343, 0.00522745214, 0.0264686849, -0.0188760739, -0.0128577249, -0.0105452929, -0.0582401454, 0.0345584303, -0.00755118299, 0.0266042668, -0.0117730666, -0.0278395731, 0.022325892, -0.0404939242, -0.0110499607, 0.00862454344, 0.0330820903, 0.00715950038, -0.0230038036, -0.0254292209, 0.0360950306, 0.0122927986, 0.000778186135, -0.0230339319, 0.0775530934, 0.0248266328, 0.000362729828, 0.0226874445, 0.00889570732, -0.00905388687, 0.00679794792, 0.0010837171, -0.00779598439, 0.0110650249, 0.0273424387, 0.0120818922, -0.036185421, -0.0273424387, 0.0460377373, 0.00113361899, 0.0393188782, -0.00805208459, -0.0607408881, 0.0169477928, -0.00444032159, -0.0202168338, -0.0405843146, -0.000553627848, 0.038836807, 0.0251881853, -0.00919700228, -0.0234557446, 0.0418196172, -0.0390477143, -0.00161757262, -0.0313044563, -0.00104228919, -0.0234406795, -0.00793909933, -0.0182734858, 0.0065117185, 0.0333833843, 0.0173846688, 0.0207290333, -0.032569889, 0.0434164777, -0.00972426683, 0.00875259284, -0.00269469898, -0.0274780206, -0.00918947, -0.00921206642, 0.0234256145, 0.00187178946, -0.022777833, -0.0282161906, -0.0281559322, -0.0332026072, -0.0249471497, 0.0367277488, -0.0236365199, 0.0416087136, 0.024103526, 0.0168875325, -0.029767856, -0.0246157274, -0.0509789586, 0.0395599119, -0.00176068733, -0.0241939146, -0.0229736734, 0.0125865601, -0.0100481575, 0.0235762615, 0.00980712194, -0.00250827312, 0.0167971458, 0.00140478369, 0.039710559, 0.00976946, -0.0170381796, -0.00262125861, 0.0299636964, -0.0515212864, -0.00871493109, 0.0107637309, 0.0458870903, 0.0420305245, -0.0390477143, -0.030219797, 0.0699002296, 0.0266042668, -0.0426933728, -0.00803701952, -0.00189438649, -0.00418422138, -0.0401926301, -0.000319183426, 0.00183789385, 0.0141005628, 0.00274177617, -0.004090067, -0.0174750574, -0.0175353158, 0.00172490859, -0.0235913265, -0.00687703723, 0.0276136026, 0.0162397511, -0.0048960289, 0.0320275612, -0.0180023219, 0.0319371745, 0.0309730321, -0.0193882734, -0.0112081403, -0.0362758078, -0.0140478369, 0.0205934513, -0.000355903641, -0.00105076306, -0.0119990371, -0.0372700766, 0.00720846094, 0.00961881317, -0.0114717726, 0.00774325803, -0.0105377603, 0.000952371745, -0.026634397, -0.008180134, -0.0189513974, 0.0211659092, 0.000526793883, -0.00286606, 0.0225518625, 0.011968907, -0.000905765337, 0.0565529, 0.00271917903, 0.00452694343, 0.0013313432, -0.00940790772, -0.0182282925, -0.0311839376, -0.0164355915, -0.0211960394, -8.2208564e-05, -0.00384903187, 0.0302951206, 0.0503462404, 0.00684690801, -0.00925726071, 0.00173055788, 0.0109294429, -0.00736287422, -0.00602964777, 0.00940037519, -0.0177462213, 0.0235310681, -0.00949829631, -0.0195389204, 0.029767856, 0.0210152622, 0.00513706403, -0.0125112366, 0.02722192, 0.00141231599, -0.0308826435, 0.0287735853, -0.0150270425, -0.0123831872, 0.00605601119, -0.0283216443, 0.00115527445, -0.0187706221, 8.65043548e-05, -0.00740806805, 0.0486589931, 0.0109671047, 0.0106432131, 0.000284110894, -0.00997283403, -0.00521992, -0.0170532446, 0.00973179843, -0.0167971458, 0.0141080953, 0.00454954058, 0.0197196975, -0.0193732101, -0.00487719802, -0.0030298885, 0.0106507456, -0.00420681853, -0.00221451139, -0.00457213772, -0.0570048392, -0.00358916586, 0.0484179594, 0.0217986275, 0.0161644276, -0.00997283403, -0.00972426683, 0.019493727, -0.0322083384, -0.000524910807, -0.0192376263, -0.0386259, -0.00797676109, -0.00434240093, -0.00423694821, 0.0350706317, -0.0138369305, 0.00407500239, -0.0121722808, -0.0485987365, 0.0208194219, -0.0209399387, 0.0131891482, -0.00278132106, 0.0039055245, 0.0302348603, 0.0185446516, 0.028261384, -0.018303616, 0.0265590735, -0.011012299, -0.0149366539, 0.0157878101, 0.121240735, -0.011245802, 0.0197498277, -0.0156522281, 0.0412772894, 0.0237871669, 0.0150873009, 0.0149065247, 0.0144018568, 0.0398310758, 0.0147408126, -0.0175805092, -0.0202168338, 0.013844463, 0.000324361899, -0.0162246861, -0.00866220519, -0.0136410892, -0.0295268204, 0.0209851321, -0.0187404919, -0.00553627871, -0.00537433336, -0.0233201627, -0.00457590399, 0.03154549, 0.0245554671, -0.00551368156, -0.0293611083, -0.0202469621, 0.00795416348, -0.0128049981, -0.0246609207, -0.0311236791, 0.0322384685, 0.0122174751, 0.00477174483, -0.00808221381, -0.0125338342, 0.0339859724, -0.0161041692, -0.0249320846, -0.00776585517, 0.00389422593, -0.00894843414, -0.0303252488, -0.00286417687, -0.0155769037, 0.00897856336, 0.0189664625, 0.000115339142, -0.0160891041, -0.00710300775, 0.00206009834, 0.00867726933, -0.022627186, 0.0253388323, -0.00165146822, -0.0142210806, -0.0475743338, 0.00292820181, -0.00957362, 0.0176106393, -0.00587523449, 0.00863207504, -0.0202469621, 0.00617652852, 0.0215274617, 0.0223710854, -0.00370780029, -0.0126995454, 0.0126166893, -0.0145223746, 0.0168724693, -0.0162397511, -0.000931657793, -0.0222355034, 0.0135281039, 0.0264686849, 0.00706911227, -0.0312743261, 0.00431603752, -0.000157708622, -0.0272520501, -0.0260318089, -0.0332026072, -0.0175805092, -0.0107637309, 0.0270411447, 0.0188760739, -0.00153095054, -0.0135507016, -0.0186651684, 0.0230941921, 0.0154413218, -0.0326602794, -0.0160891041, 0.0184391979, -0.0117354048, -0.0179269984, 0.0251128618, -0.00629704632, -0.00242165127, 0.00450434629, 0.00566056278, -0.00811234303, 0.0380835719, 0.0010940741, 0.0418798774, 0.0356430896, -0.0347693376, -0.00165429281, -0.00162416336, 0.00345546659, -0.00894090161, 0.0115169659, -0.00934764929, 0.0215425268, 0.00920453388, 0.038535513, 0.0164958518, -0.0208194219, -0.0191773679, -0.0460377373, 0.0119161811, 0.00795416348, -0.0137314778, 0.012722143, 0.0253689624, 0.0335641615, 0.000515495369, -0.0211357791, -0.0603190735, -0.0251580551, -0.0279299617, 0.00805961713, 0.0160137806, -0.00281333341, 0.00362306135, -0.00940790772, -0.0098673813, 0.013693816, -0.0304005723, 0.00137182965, 0.0046512275, 0.0183488093, 0.00241411873, 0.00460603321, 0.00307131652, 0.0156070339, 0.0568843223, -0.015923392, -0.0385957733, -0.0260770023, -0.0168272741, -0.0210152622, -0.0253087021, 0.0227928981, -0.0169025976, -0.00236515864, 0.00729884906, 0.0231544506, -0.0205633212, -0.0237570386, -0.000243153743, -0.00653808145, 0.0223560203, 0.00829311926, -0.0134377163, -0.00473408308, 0.00698625669, 0.0236817151, 0.00424824655, 0.0220848564, -0.011230737, 0.0141080953, 0.0179420616, -0.0281408671, -0.00918947, 0.030355379, -0.023651585, -0.00952842552, 0.0118559217, 0.0153810624, -0.0137540745, 0.0239830092, 0.0145525038, 0.0213466864, -0.00481317285, -0.00232184748, 0.0274780206, 0.0149065247, 0.0515514165, 0.0220999215, -0.0196142439, 0.0333833843, 0.0129104517, 0.00418045558, -0.00583380647, -0.0119764395, -0.000851155783, 0.00162133877, 0.0192074981, -0.0369386561, 0.0244198851, 0.00511823315, -0.00562666683, 0.0117429364, 0.00805961713, -0.0112382695, 0.0250375383, -0.0140403043, 0.0274629556, -0.0366072319, -0.0186802335, -0.0161041692, 0.00386409671, 0.0409759954, 0.00561160222, 0.0197498277, 0.00208646152, 0.0122551369, 0.000199725022, -0.00346488203, -0.0088128522, -0.00308638136, -0.0126543511, -0.013309666, -0.0173545387, -0.00478304364, 0.0114567075, -0.00608614041, -0.0270260796, -0.00569069199, -0.0119161811, 0.0136184925, 0.0288338438, 0.0167820808, -0.0127146104, -0.0380835719, -0.0357334763, -0.023500938, -0.0044704508, -0.00140854984, -0.0223108269, -0.0151324952, -0.0345283, 0.0231845789, 0.0158028752, -0.0143867927, -0.00505044218, 0.0174599923, -0.00680924626, -0.0161192343, -0.0125037041, 0.0112909954, 0.000712278066, -0.00839104, -0.00257418142, -0.00407500239, 0.0134678455, 0.0199757982, -0.0310031604, -0.0016439358, 0.0206989031, 0.00196406082, 0.0288037136, 0.011245802, -0.00793909933, -8.92701428e-05, -0.0282915141, 0.0170381796, 0.0132795367, -0.015772745, 0.00331611792, 0.0299636964, 0.00409383327, -0.0186651684, 0.00562666683, 0.0127974665, 0.0348295942, 0.0156974215, -0.00775079, -0.0174750574, -0.00475291396, -0.0169929862, -0.0102289338, -0.0189965926, 0.00646652421, 0.00924972817, -0.00858688168, -0.00768299913, 0.00750975497, -0.00270599755, -0.0198854096, -0.069478415, -0.0249772798, -0.0181077737, 0.0343173966, 0.00529147731, 0.00169195456, -0.0200661849, -0.00945310201, 0.00147163332, -0.00376994209, 0.036185421, -0.0115169659, -0.000713690359, -0.0147182159, 0.000405334693, -0.0284722913, -0.00281333341, -0.0281860605, -0.0250827316, 0.000498076784, -0.00148575648, 0.00052396924, 0.0044064261, -0.0137540745, -0.00720469467, -0.00390175846, 0.00164958509, 0.00360799674, -0.0118107283, -0.0248266328, -0.00213542185, 0.0129782427, 0.023064062, -0.0233201627, 0.0212713629, 0.0225367974, -0.0254292209, 0.0136712193, -0.0198703445, -0.028110737, 0.00225405628, 0.0167670157, -0.0099125756, 0.0138595281, -0.00876765791, 0.0106808748, 0.0185597148, -0.00373416347, 0.0177010279, 0.00222204393, -0.0038377333, 0.0205633212, 0.0211809743, 0.0110876225, 0.022777833, -0.0118031958, -0.0257154498, 0.0255346727, 0.032419242, -0.00856428407, -0.0110273631, -0.0271014031, 0.0115019018, -0.00710677402, -0.0171888266, 0.0213617496, 0.0479358882, 0.022024598, -0.00728378445, 0.0119463103, -0.0127748689, -0.0135958958, 0.00164487737, -0.0367277488, -0.0111252842, -0.0113361897, 0.0278546382, 0.0138068013, -0.0360046439, 0.0176407676, 0.0530880168, 0.0135657657, -0.0128878541, -0.0382040888, -0.0117881307, -0.00571705541, 0.0095510222, 0.0174298622, 0.00315040629, -0.00543835806, -0.00524251722, -0.00634224061, 0.0219643377, -0.00927985739, 0.00362682762, 0.0318467841, 0.00511823315, -0.0254442859, 0.0156070339, -0.0480262749, 0.00750222243, 0.0144169219, 0.0296473373, -0.0161644276, -0.00293761725, 0.0149065247, 0.0136636868, 0.000823380251, -0.00612756843, 0.00473408308, 0.00446291873, 0.0108089251, -0.00871493109, 0.0018840296, 0.0122927986, 0.0215575919, 0.00845129881, 0.00662846956, 0.0195087921, 0.0252635088, 0.0177462213, -0.00479057571, -0.0228230264, -0.033172477, 0.00912167877, 0.00566056278, 0.0188760739, 0.023651585, 0.0215123966, -0.0223560203, 0.0190719161, 0.0120743606, 0.019192433, -0.016360268, 0.00525381556, -0.011833325, -0.0124283805, -0.00111855427, 0.0105000986, -0.00243859901, -0.00341968774, -0.0271465965, -0.00505420845, -0.0191020444, 0.0195991807, 0.0198100861, -0.00772066088, -0.0123831872, 0.0143717276, 0.00985231623, -0.0132795367, -0.00956608728, -0.00432733633, 0.00679794792, 0.00187273102, 0.005581473, 0.0310031604, -0.00331611792, 0.0128953867, 0.0929793566, -0.00301294075, -0.00147445791, -0.015034575, 0.016209621, -0.0139649808, -0.0130159045, -0.0149140572, -0.00793909933, 0.00498641701, 0.00315040629, 0.00714443577, -0.00279638567, 0.0255346727, -0.0140704336, 0.00814247224, 0.01146424, -0.00415785844, -0.000491015206, -0.0318166539, -0.0102741281, 0.00795416348, 0.019493727, 0.00153659983, 0.0111102192, -0.0115772253, 0.00977699272, -0.00485836715, -0.0356129594, 0.000742878241, 0.0335942917, -0.0192376263, 0.00874506, -0.00176257035, -0.00110348954, -0.00124660425, 0.0288037136, 0.00893336907, -0.0186802335, 0.0196594391, -0.00338014308, 0.0122174751, -0.0178667381, 0.0109821688, 0.00467382465, 0.00142361457, 0.013678751, -0.00951336, -0.00520485546, 0.00995023735, -0.00590536417, -0.0358238667, 0.00228418573, -0.0174147971, -0.000812081678, 0.00222957623, 0.0161794927, -0.0099201072, 0.0128049981, -0.0207591616, -0.0094305044, -0.000827146403, 0.00234256149, -0.00802948698, 0.0278847665, 0.0018341277, -0.0192828216, -0.0199456681, -0.0335641615, 0.0260920674, -0.00467382465, 0.00461356575, 0.0350405, 0.0137239452, 0.00509940227, 0.0123153953, 0.00139630982, 0.00228230259, -0.0103117898, -0.0307169314, -0.00615393184, 0.0300239548, 0.0147408126, 0.0461582541, -0.0109897014, -0.00590913, -0.00606730953, 0.000881285174, -0.0164054632, -0.00945310201, -0.00361552904, -0.0124359131, 0.0127899339, 0.0260770023, -0.00074146589, -0.0146579575, 0.00433863467, 0.0164205283, 0.00775832264, -0.00307508279, -0.0164958518, 0.00537433336, 0.000887875969, -0.00583004067, -0.00135676493, -0.0293761734, 0.00712937117, -0.000846448063, 0.00186990644, 0.0123078637, 0.0291200727, 0.0162548162, -0.0100180283, -0.0268603675, 0.0202921573, -0.00642509619, 0.0223409571, 0.0131364223, -0.00676405197, -0.00458720233, -0.0158932619, 0.0166916922, 0.0132268099, -0.0141532896, -0.013829398, -0.00522368634, 0.0137691395, 0.0300390199, 0.00744949607, 0.00243483274, -0.0268001091, 0.00852662232, 0.00157991087, -0.00481693912, -0.0244198851, 0.000813023245, -0.0131966807, 0.0210303273, -0.00367390481, 0.00157332, 0.00805208459, 0.0172189567, -0.0277491845, -0.00595809054, 0.000748527469, -0.0146428924, 0.000151353204, -0.00292631867, 0.0253237672, 0.0228380915, -0.0111403484, -0.0197648909, -0.000864337373, 0.00247626076, -0.019930603, -0.00966400746, 0.0149667831, -0.0118935835, 0.00947569869, -0.0338051952, 0.00456460519, 0.0117805982, 0.0363661945, 0.0210001972, -0.00927232578, 0.00137653737, -0.00605977699, -0.00385279814, -0.0285174847, 0.00815753732, 0.00851909, -0.0205482561, -0.0136486217, -0.0244500153, 0.00951336, -0.011901116, 0.0177462213, 0.0230339319, 0.0146805542, 0.0102289338, -0.0110574923, 0.00785624329, 0.00940790772, 0.00153283367, -0.0234557446, -0.015102366, -0.0338353254, 0.005581473, 0.0104247751, 0.00227853656, 0.0102439988, 0.016661562, 1.23209857e-05, 0.00191133434, 0.0318769142, 0.0300088897, 0.00068497326, -0.0183789395, -0.0172942802, -0.00750975497, -0.0139423832, -0.0215274617, -0.0218438208, -0.00438759523, -0.00759261101, -0.0201716386, -0.0269206259, -0.00579991098, 0.00192357437, -0.003720982, 0.00448174961, 0.0064401608, 0.016209621, 0.00178422593, -0.00150929508, -0.00155919685, -0.0141005628, -0.00520862127, 0.016661562, -0.0133623928, 0.00971673429, 0.0212412328, -0.0134527804, -0.0150195099, -0.00904635526, -0.0190719161, 0.0309730321, 0.0142888715, -0.0207742266, 0.0211056508, -0.0292255264, -0.0144997779, 0.0278546382, 0.0047755111, -9.0741305e-05, -0.00239152182, 0.019930603, -0.0306868013, -0.0244048201, 0.0129933069, 0.0158932619, 0.00813494064, -0.0225518625, 0.0031033291, 0.0394092649, 4.71948915e-05, 0.00556264212, -0.00976192858, -0.0274026971, 0.00538939796, -0.0266494621, -0.0201113801, 0.0107486667, -0.00778092, 0.0123229278, 0.0103268549, 0.0288338438, 0.0059618568, 0.00161380647, -0.0441697128, 0.0124585107, 0.0039657834, -0.0244500153, 0.0225367974, 0.00160344946, -0.00431980379, -0.0196745042, -0.0269055609, 0.00442149071, -0.00529147731, 0.026348168, 0.0177914146, 0.00915180799, -0.00407500239, -0.00348371291, -0.0224012155, 0.0105980197, 0.0117052747, 0.0136410892, -0.0113964491, 0.00126543513, 0.0358539969, -0.005581473, 0.0251429919, 0.00127579214, -0.00963387825, 0.00566809485, 0.0245102737, -0.00749092409, -0.0296473373, 0.00494498899, 0.0173545387, -0.00809727889, 0.0103720492, 0.0250224732, 0.0268151741, 0.00549485069, -0.00823286083, 0.00149140565, 0.00879778713, -0.015253013, -0.0151249627, -0.00793909933, -0.00282086595, -0.0101762079, -0.00909154862, 0.0152304154, -0.00846636388, -0.00413902756, -0.003720982, -0.00671132561, -0.0440190658, -0.0160891041, 0.00164299423, -0.00971673429, 0.00259112916, 0.00924219564, -0.0106582781, 0.0100180283, -0.00177857664, 0.00233691232, -0.022476539, -0.0416689701, 0.0134527804, 0.00216366816, 0.00159120932, -0.0124811074, -0.00556264212, -0.00990504306, 0.00401474349, 0.0137164127, -0.0146052307, 0.00510316854, 0.0109671047, -0.0125564309, -0.0249772798, 0.00107241864, -0.00844376627, 0.0145073105, 0.00245366362, -0.0291652679, 0.0133623928, -0.00193958066, -0.00479057571, 0.0148688629, 0.0137842046, -0.00370591716, 0.0214973334, -0.00392812165, 0.0381438322, -0.0175654441, -0.0143717276, -0.000667554676, -0.0114115132, 0.0218588859, 0.0111403484, 0.0143039366, 0.0343173966, -0.0171135031, 0.0137917362, 0.00313722459, -0.00555887586, 0.0155919688, -0.0163150746, 0.0165561102, -0.0195991807, -0.00506927306, -1.59179781e-05, 0.0222656317, 0.0378124081, -0.0052651139, -0.00282839825, -0.00466252584, 0.0215123966, 0.0103494516, 0.0105076311, 0.0108164577, 0.0101988045, -0.016360268, -0.0185597148, -0.0190267209, 0.00455707312, -0.00788637251, -0.0104549043, -0.0175955743, 0.0185597148, -0.0201264452, 0.0389573239, 0.00467005838, -0.00943803694, 0.0445613936, 0.0130008394, 0.0514007695, -0.00857934915, -0.00125884428, 0.0117052747, -0.00335942907, -0.019795021, -0.0121873459, -0.0158028752, 0.0239378139, 0.0184843913, 0.00319371722, 0.00685444055, 0.000415927061, 0.0121120224, 0.00967907254, -0.0091066137, 0.0159836505, -0.0239679441, -0.00623302115, -0.00115809916, -0.019930603, -0.0259414203, 0.0025459351, 0.00825545751, 0.00969413668, 0.0151776895, 0.00267963414, 0.00868480187, -0.00535550248, 0.00294326665, -0.0307621248, 0.00772066088, 0.00253275339, -0.00622925535, 0.00997283403, 0.0329013132, -0.0135205723, -0.00159309246, -0.000367437548, 0.00145186088, -0.000491486, 0.0238775555, 0.0152454805, 0.00770183, 0.0203674808, 0.00597315514, -0.00300164218, 0.0043461672, 0.000496664434, -0.00277002249, 0.00842870213, -0.0211809743, 0.00633470807, -0.0180475153, 0.00609367294, -0.000893996039, 0.013980045, -0.013761607, 0.0178215448, -0.00462486409, -0.00270034815, -0.000417339383, -0.00245366362, -0.00660963869, -0.0148462662, 0.00430850545, 0.019930603, -0.00997283403, -0.0037906561, -0.0136034274, 0.0108917812, -0.00807468127, 0.0228531566, 0.0148537979, 0.0105000986, 0.0047755111, -0.0199456681, 0.00424448028, -0.00356091931, -0.00322384667, -0.00822532829, -0.00822532829, 0.0157426149, 0.00245931302, 0.0226874445, 0.000410513196, 0.00504290964, 0.00273612677, -0.000854921935, 0.0303252488, 0.00418798765, 0.00118069618, -0.00357410102, 0.0499545597, -0.00378124067, 0.0203072205, 0.00534420367, 0.0120442305, 0.0257305149, -0.00743443146, -0.0175503809, 0.000887405244, -0.00146315934, 0.0194184035, 0.0182282925, 0.0263029728, -0.00283781369, -0.0166916922, -0.00174562261, -0.00753235212, 0.0161945578, 0.00259301229, 0.00689586811, -0.0020450335, -0.00541576091, 0.000616711332, 0.0284572262, -0.000612474396, 0.00209399383, -0.0447723, 0.00500148162, 0.00695236074, 0.00628951378, -0.00506550679, -0.00915934052, -0.00116280688, -0.00948323123, 0.0101686753, 0.0213617496, 0.0049600536, 0.00617276272, -0.0095510222, 0.00592042878, 0.0180475153, 0.0135055073, 0.0125112366, -0.000206198136, -0.00449304795, 0.0157426149, 0.00534797, -0.00151588582, -0.00233879522, 0.000544212409, -0.00425201282, 0.00232937979, 0.00438759523, 0.0105377603, -0.00297904527, -0.00429720664, 0.0254141558, -0.0191472396, 0.00951336, -0.00348371291, -0.0208947454, 0.000938719371, 0.0119915046, -0.00584887154, -0.00609367294, 0.00934764929, -0.00561536849, -0.00264950492, -0.00572082121, -0.00805961713, 0.0231092554, -0.0122852661, -0.00424071401, 0.00869986694, 0.0173394736, 0.00706158, 0.00868480187, 0.00803701952, 0.0121572157, -0.0115772253, -0.00772819342, 0.00860194582, 0.0124057839, 0.00399214681, -0.0105151637, -0.0103946459, 0.0174750574, 0.00852662232, 0.0105000986, -0.0016203972, 0.00817260239, -0.00259677833, 0.0124133164, 0.00194146379, -0.0100481575, -0.0104699694, -0.00467759045, -0.00370968343, -0.0137088811, -0.00811234303, 0.00186331559, 0.0235762615, 0.0353719257, -0.00575471716, 0.000294232508, -0.00101027673, 0.00768299913, -0.0124283805, -4.89014419e-05, -0.0262577794, 0.0031579386, -0.00657197693, -0.00758131221, -0.0234708097, 0.0049562878, -0.00940790772, -0.0170080513, 0.0118935835, 0.0125639634, -0.000485365948, -0.0290748794, 0.0146880867, -0.0140854986, -0.055197075, -0.0134226512, -0.00648158882, -0.0106356815, 0.00115904072, -0.00660963869, -0.00286417687, 0.0216630436, -0.0101008844, -0.00219191448, -0.0170984399, -0.0160891041, -0.0018002321, 0.00438759523, -0.0224464089, -0.0137992688, 0.0280052852, -0.0076905312, -0.0143491309, -0.0109972339, -0.0134452488, 0.00690716691, 0.00340085686, 0.00283781369, -0.0169779211, 0.018152969, -0.0173394736, -0.0140252393, -0.0039657834, -0.0137390103, -0.0135883633, 0.0182734858, 0.0103193223, -0.00717456546, -0.00550614949, -0.00630457886, -0.0255798679, 0.00116751459, 0.00442149071, -0.0207440984, 0.00494498899, 0.00772066088, 0.016661562, 0.0145223746, 0.00184166012, -0.0304909609, 0.0117805982, -0.0246910509, 0.0278847665, 0.00341403857, -0.0192677565, 0.000921300787, -0.00180211524, 0.0148387337, -0.00862454344, 0.0150722368, -0.00785624329, -0.00680924626, 0.00514459657, 0.019056851, 0.0146504249, 0.016058974, 0.0179571267, -0.0320275612, -0.0185747799, -0.00836091116, 0.00395825086, 0.0112608662, 0.0254744142, 0.0132268099, 0.0116073545, -0.00349501125, -0.00424071401, -0.00344040175, 0.0199757982, -0.00554004498, -0.00363436, -0.0218287557, -0.0123379929, 0.0176558327, 0.0270260796, -0.00549485069, -0.00842870213, -0.00412772875, -0.0034083894, 0.0108691836, -0.00218626508, -0.0436876416, 0.00367767084, 0.00906141941, 0.00686197262, 0.0119387778, 0.00920453388, 0.0301595367, 0.00454954058, -0.00667743, -0.0124735748, -0.0109595722, -0.00309203053, 0.0140177067, -0.000511258375, -0.0127748689, -0.00749469036, 0.00707287854, -0.00692223152, -0.0278697032, -0.00971673429, -0.019795021, 0.0148387337, 0.0118408576, 0.00893336907, -0.0102515314, 0.0179420616, -0.000167124061, 0.00222016079, 0.00152906752, -0.00383020099, -0.00770183, -0.0205482561, -0.0285928082, -0.00146504247, -0.0153659983, -0.00277378852, 0.0211809743, 0.0209098086, 0.000525381532, -1.07174192e-05, 0.00455707312, -0.00307884882, 0.0035383224, 0.00779598439, -0.00258171372, 0.00755118299, -0.00643639499, -0.016360268, -0.0160288457, -0.0179721918, -0.0214370731, 0.0241185911, -0.0132870693, -0.00932505168, 0.0277642496, -0.0084964931, -0.00316170487, -0.00628951378, -0.0269959494, 0.00757754594, 0.00528017897, -0.0076265065, -0.00815000478, 0.00570952287, -0.0149743157, -0.0103645166, -0.00016830099, -0.011901116, -0.00863960758, -0.00190568506, 0.00194146379, -0.0113211256, 0.0106281489, -0.000212906642, 0.0143190008, 0.00233314605, -0.0140327718, 0.0214822683, -0.00520485546, -0.000189014958, 0.0176106393, -0.00630834466, -0.0180625804, 0.0265289433, 0.00836844277, 0.00930998754, -0.016074039, -0.0119990371, 0.0119161811, -0.0133397952, 0.0132946018, 0.0121270865, -0.00746079488, 0.00947569869, 0.0192677565, -0.00771312835, 0.0505270176, 0.0105377603, 0.00821779575, 0.020231897, -0.0151098985, 0.00106959394, 0.0178064797, 0.00970920175, -0.000563984853, -0.00436876435, -0.00604471238, -0.0114717726, -0.0150571717, -0.00995776895, 0.00747962575, 0.0136862835, 0.00608237414, -0.00512199942, -0.00603341404, -0.00222204393, 0.0191321746, -0.00958868396, 0.00605977699, -0.00536680082, -0.00897856336, 0.0132720042, -0.00151588582, 0.0022408748, -0.0161945578, 0.00289430632, -0.000447939557, -0.000389093067, -0.00476421276, 0.00344793405, 0.00490356097, 0.0227025095, -0.00278885337, -0.00295644812, 0.0177010279, -0.00705781393, -0.0175654441, -0.0179721918, -0.0144395186, -0.0322384685, 0.00713313743, 0.0363360681, 0.00708794314, -0.0134904422, 0.0149291214, -0.00605977699, 0.0271767266, 0.010040625, -0.00511070108, 0.0181981623, 0.0158781987, -0.000429108681, 0.00277755479, -0.00674145529, 0.00327845616, 0.00638743443, 0.0239227507, -0.0237721037, 0.000775832275, 0.0089860959, 0.00629704632, -0.000798429304, -0.00901622511, -0.0109520396, -0.00260996, 0.000474302797, -0.0221300498, -0.0101762079, 0.000984855, 0.000848331139, 0.00598821975, -0.000620477484, 0.00515212864, -0.0312140677, -0.0150797684, -0.0100933518, -0.0125865601, 0.00717456546, 0.0164506566, 0.0192526914, 0.0167820808, -0.0249170214, -0.0183337443, -0.0302649904, -0.00522745214, 0.0220396612, 0.0201415084, 0.00457590399, -0.0275985375, 0.00740806805, -1.03422726e-05, 0.0167971458, 0.00664730091, -0.0137917362, -8.63278183e-05, 0.00145939318, 0.0302800555, 0.0163000096, 0.0328109264, 0.0219040792, -0.0044553862, 0.00261560921, 0.0101988045, -0.00988997798, -0.00779598439, 0.000422753248, -0.0017898751, -0.00882038381, 0.0123455254, -0.00224840711, -0.00970166922, 0.0177311562, 0.000185248777, 0.00800689, 0.0127748689, 0.0113663189, 0.0260167439, 0.0139499158, 0.0123907188, -0.0277190562, -0.0179119334, 0.000299175619, -0.0109369755, 0.00115998217, 0.00395448459, 0.0208796803, 0.0280354135, 0.00680548, -0.0114943692, 0.0291351378, -0.00666989759, -0.0133473277, 0.0119237136, 0.0249772798, 0.011162946, -0.00538186543, 0.00997283403, -0.00156672928, 0.00165711739, -0.00193958066, 0.000934011652, 0.0101611428, 0.00239528785, 0.015772745, -0.0100933518, 0.000961787184, 0.0210001972, 5.18731904e-05, 0.020382544, -0.00315040629, -0.0208646152, 0.00166841596, -0.00980712194, -0.0158028752, 0.00904635526, -0.0101008844, 0.00280768424, 0.0160288457, 0.0112081403, -0.0205030628, -0.0126769487, 0.0178818032, 0.0170381796, 0.00357221789, 0.0128953867, -0.0139348516, 0.00944556948, 0.00699755503, 0.0122852661, 0.0243144315, -0.00752858585, -0.00386786275, -0.00499394955, -0.000706158, -0.00577731384, -0.0323891155, -0.0111102192, -0.0111855427, -0.00954349, 0.00856428407, -0.0148161361, -0.00569445826, 0.0100255609, 0.013324731, -0.00892583746, -0.0243445616, 0.0106507456, -0.0301294085, -0.0285174847, 0.00368520315, -0.0148613304, -0.00187178946, 0.00200172258, 0.0158932619, -0.0294816252, 0.0128049981, 0.00538186543, 0.0155166453, 0.00854922, 0.000397096184, -0.0133171985, 0.00208457839, 0.000234915235, 0.022777833, 0.0133623928, 0.0153434006, 0.000155472459, -0.00162322191, -0.0089860959, 0.0256401263, -0.00924972817, -0.0211357791, 0.00604847865, -0.00734780962, -0.0187103618, 0.0248567611, 0.0180625804, -0.0112909954, 0.0253990907, 0.0110424282, -0.00383208413, -0.00409383327, 0.0125112366, 0.0289995559, 0.00674145529, 0.0125865601, -0.00772819342, 0.00577354804, -0.00156578771, -0.00667743, 0.00343475258, 0.000985796563, -0.0136712193, 0.0310031604, -0.00426707743, -0.00572082121, 0.00467005838, -0.00139254355, 0.00634600641, 0.00496758614, 0.00146504247, 0.03154549, 0.00844376627, -0.0202620272, 0.000314711069, 0.00984478369, -0.00507680513, -0.0181228388, -0.0182584208, 0.000350725139, -0.0124208489, 0.0124735748, -0.0131514864, 0.0160891041, 0.0273273736, -0.0134075871, 0.00985231623, 0.00380195468, -0.0324795023, -0.00286229374, 0.0170683097, 0.0179269984, 0.0288639739, -0.00361741218, 0.00223145937, -0.0103569841, -0.00480564078, -0.000772536849, 0.0161945578, 0.0102665955, -0.0164054632, 0.00394318625, -0.0177763514, -0.0194184035, 0.00590536417, 0.00421435107, 0.00240658643, -0.00598068768, 0.0168724693, -0.00240470329, 0.0119387778, -0.00572835375, -0.0121044898, 0.00557017419, 0.00470395386, -0.00680548, -0.00635353895, 0.00282839825, -0.0123379929, -0.0181830972, 0.00778845185, 0.0210453924, -0.000461121177, 0.0178968683, -0.0194635969, -0.000139348514, -0.00308261509, -0.0112156719, -0.0343173966, -0.00609743875, -0.00619912567, 0.0106808748, 0.0477852412, 0.0231845789, -0.0197046325, -0.00368332025, 0.00856428407, 0.00515589491, 0.0156823564, -0.000645899214, -0.0259715505, -0.00870739855, 0.000217025896, -0.00724988896, 0.00882791635, -0.00182094611, 0.0108541194, 0.00605977699, 0.00776585517, -0.00875259284, 0.0296925325, 0.00865467265, -0.0171135031, -0.00163734506, -0.0118634542, -0.00802195538, -0.00683560967, 0.0189664625, -0.00441772444, 0.0286229383, 0.0156974215, -0.00724235643, -0.0116450163, 0.00549485069, 0.0159987155, 0.00932505168, -0.00475291396, -0.00470018759, 0.0244952086, 0.00431980379, -0.0220396612, 0.00271164672, -0.0109897014, 0.0127146104, -0.013241875, 0.0208344851, -0.00642886246, 0.0211508442, -0.0172641501, 0.0205934513, -0.0105452929, 0.0205181278, 0.0222957619, 0.0071971626, 0.00853415485, -0.00723859, 0.0264385547, -0.0208947454, -0.0198854096, -0.00949829631, -0.000143820842, -0.0323891155, -0.0176558327, 0.0209700689, 0.0122777335, -0.0203524157, 0.0109746372, 0.012353057, 0.00405993778, 0.00562290102, 0.0187103618, 0.0208495501, 0.0139951101, -0.0121421516, -1.51088389e-05, 0.00363059365, 0.00665483298, 0.014431987, 0.0184994563, -0.0121496841, -0.00934764929, 0.00784871075, -0.000300117157, -0.0338353254, 0.00828558765, 0.000813023245, 0.00505420845, -0.00627444917, -0.0175805092, 0.0199757982, -0.0268754326, -0.00414279383, 0.0014801072, -0.00122118252, 0.0110574923, 0.00874506, -0.00660587288, -0.0335340314, 0.00380760385, -0.0073704063, 0.00465499377, -0.0148236686, 0.00310521224, -0.00665483298, -0.0219944678, 0.0021655513, -0.00832324941, 0.00662093749, 0.0152379479, -0.000903882261, 0.011532031, 0.00090623612, 0.019041786, 0.0170231164, 0.00332176732, 0.00863207504, 0.00897103082, -0.0160439108, 0.0351610184, 0.00967154, -0.0108089251, -0.00836844277, 0.016074039, 0.0240733977, 0.0158932619, -0.0185446516, -0.00402227603, 0.00946816616, -0.00609743875, -4.39583346e-05, -0.0086697368, -0.00799182523, -0.0195238572, 0.00667366385, 0.0298582427, -0.00533290533, 4.95487548e-05, -0.0033481305, -0.00525381556, -0.0331423506, 0.00784117822, 0.014801072, 0.0091066137, 0.0152680771, -0.0242993683, 0.00242165127, 0.000884109817, -0.00525381556, -7.70300685e-05, -0.00931751914, -0.00482070539, 0.0163000096, -0.0011515083, 0.0180324502, -0.00689586811, -0.00610873755, -0.00711054029, 0.0158480685, -0.000330952724, 0.0240432676, 0.0150044449, 0.0136260251, 0.0246006623, -0.00965647493, 0.00940790772, -0.00553251244, 0.00125225354, 0.0202921573, 0.00401097769, 0.00624055369, -0.022612121, -0.0178968683, -0.0024781439, 0.00127108442, -0.0207440984, 0.00558523927, -0.0239830092, 0.0207892917, 0.00758507848, 0.0123003311, -0.0136410892, 0.012051763, -0.000615299, 0.000240093723, 0.00277943793, 0.000706158, 0.00618029479, 0.000714161142, -0.0102063371, 0.0260619372, -0.0194786619, -0.0180173852, -0.0126618836, 0.00275307475, -0.0116224196, 0.00193958066, 0.0153283365, -0.0104473727, 0.00151682738, 0.0123907188, -0.0225066673, 0.0215726569, -0.00294891582, -0.0252936389, -0.00395071879, -0.0299486313, -0.0117128072, 0.0139499158, -0.00080643245, -0.0225066673, -0.0182885509, 0.00162792963, 0.000274224702, 0.0062706829, -0.00576224923, 0.0233050976, 0.012722143, -0.00847389642, -0.00374357891, -0.0339558423, 0.00386033044, 0.00241976813, 0.0167670157, 0.0124585107, -0.0100481575, -0.0110650249, -0.00659834035, 0.018755557, -0.0128200632, 0.00232184748, -0.022476539, -0.0167670157, 0.0147408126, -0.0183638744, -0.00228983513, -0.00563043309, -0.0104323076, 0.00206386438, -0.0245554671, -0.00631964346, 0.00154978142, 0.00678288285, 0.00884298142, 0.0270260796, -0.005950558, -0.0140327718, 0.0107185366, -0.00660210662, -0.0152304154, -0.0319070444, -0.0119990371, -3.76029129e-05, -0.0108541194, 0.016058974, 0.013678751, -0.00860947836, -0.0102590639, 0.0150496392, -0.00708041107, -0.00554004498, 0.0165410452, 0.015102366, 0.00562290102, -0.00581121, -0.0210755207, 0.00842117, 0.0146428924, -0.0161945578, -0.00782611407, -0.00598445348, -0.00710300775, -0.0055099153, -0.0112533337, 0.0195539854, 0.0050805714, 0.0112382695, -0.0062669171, -0.0256853197, 0.00502784504, -0.0114341108, -0.00130403845, 0.0139649808, -0.0117429364, -0.00208646152, 0.0182584208, -0.010123481, -0.00678288285, -0.0035985813, 0.0123153953, 0.00244424818, 0.0116224196, 0.0209851321, 0.0134527804, -0.0104850344, -0.0034780635, -0.00892583746, -0.0774325803, -0.000307178736, 0.0268453024, 0.0170833748, -0.00146127632, 0.00643262872, -0.0138821248, 0.00471901847, 0.00452694343, 0.00624808623, 0.00110348954, -0.00708417688, -0.00988997798, 0.00901622511, -0.0114793042, -0.00275495765, 0.0271014031, -0.00557394046, -0.0125037041, -0.00491862604, -0.00456460519, -0.013761607, -0.00062612677, -0.0179721918, -0.00652301684, -0.00481693912, 0.0253388323, -0.0064514596, -0.00934011675, 0.00586017, -0.00728001818, 0.00928739, 0.0216479804, -0.00757001387, -0.00598821975, 0.000314946461, -0.0230941921, -0.0227477029, -0.00407876866, -0.0129707102, -0.00696742581, 0.0131439539, -0.00220509595, -0.0186501034, -0.0185446516, 0.0162548162, 0.00805961713, 0.00327469013, -0.00398838054, 0.0113512548, -0.0141457571, 0.0052161538, -0.0132795367, -0.00955855474, -0.0173846688, -0.00703521678, -0.00748339156, -0.022476539, 0.0148312012, 0.0246609207, -0.00257229828, -0.0271465965, 0.00357410102, -0.00687703723, 0.00827805512, 0.0273273736, -0.00587900076, 0.0101988045, 0.0207742266, -0.0109746372, -0.00349124521, 0.00995023735, -4.28696767e-05, 0.00581874186, 0.000652960793, 0.00331423478, -0.00660210662, -0.00227100425, 0.00277755479, 0.0153283365, 0.0248266328, -0.000505609147, -0.0012089425, -0.0151174301, 0.0201264452, -0.00541952718, -0.0115696928, 0.0138068013, 0.0065757432, 0.00857934915, 0.0182433575, -0.00537433336, -0.00424071401, 0.00452317763, 0.00568315946, 0.0154865161, -0.0120969573, -0.00642133, 0.00716703292, 0.00304495334, -0.00240658643, -0.00139725127, 0.0162397511, 0.00767170032, 0.038234219, -0.00930998754, 0.0215425268, -0.00687703723, -0.00161380647, 0.00654938025, 0.0286229383, 0.00860947836, -0.0140854986, 0.00242353417, 0.0201415084, 0.0357937366, 0.0055099153, 0.0037906561, 0.00291125407, 0.0110273631, 0.00832324941, -0.0303704441, 0.00248191, -0.00391682284, 0.011599822, 0.00404863944, -0.0180173852, -0.0160439108, -0.0126091577, -0.00912167877, 0.0182132274, 0.0107411342, 0.0179269984, -0.0219794028, 0.00960374903, -0.0250526033, -0.0102967257, 0.0267699789, 0.0213918798, 0.0186651684, 0.00110254798, -0.00736287422, 0.00116374844, -0.0173093453, -0.0161192343, 0.00636860356, -0.0178215448, -0.00903129, 0.000703333353, -0.010191272, -0.0137691395, -0.013460313, 0.00757001387, 0.00776585517, -0.0130309686, -0.00220509595, 0.024239108, -0.0179420616, 0.0236365199, -0.0178366099, 0.0170231164, -0.0100556901, -0.0195690505, -0.00136900495, -0.0158330034, 0.0235762615, 0.000749469036, -0.0208194219, -0.0134527804, -0.0214973334, 0.0179872569, 0.0194485337, 0.00282839825, 0.00486589922, 0.00267586811, 0.00975439604, -0.0064514596, -0.00827052258, 0.00191415893, 0.00451941136, 0.0296322722, 0.00218061591, -0.0089860959, 0.0175654441, -0.00375487749, -0.0135507016, 0.0120818922, -0.00151871052, -0.0122476043, 0.00609367294, 0.0155467745, 0.00555887586, -0.000479952054, 0.0125112366, -0.0127673363, -0.0128351282, 0.00782611407, 0.0071858638, -0.0203373507, 0.00505420845, -0.00742689893, -0.013693816, 0.000413573202, -0.00736664049, 0.00436876435, -0.00599951856, -0.00220321305, 0.0236666501, 0.00466252584, -0.0229284801, -0.00853415485, -0.00210152613, 0.00341780484, 0.00788637251, -0.0106733432, -0.00122400722, -0.0153509332, -0.00973179843, 0.0132268099, 0.00419175392, 0.0140930302, 0.00633470807, 0.0217684973, -0.00772819342, 0.0234557446, 0.00813494064, -0.00356468558, 0.0153961275, -0.00658704201, 0.00413526129, -0.0177612863, -0.00266456953, 0.0132343424, -0.0181379039, 0.0140403043, -0.00367578771, 0.00339520769, 0.0298883729, 0.00238210638, 0.0202770922, 0.0063912007, 0.0294966903, -0.0175051857, -0.00765286945, -0.0104172425, 0.0114341108, 0.0206687748, -0.0264536198, 0.00086527894, -0.00104228919, -0.0115395635, 0.00575471716, 0.00183130312, 0.00532913906, 0.0176859628, -0.00855675153, -0.0118709868, 0.00334624737, -0.00254405197, 0.0113211256, 0.00903129, -0.00894090161, 0.00327280699, -0.0134829106, -0.00271352986, -0.0102515314, 0.00644769333, -0.0153057389, -0.00547602, 0.0146504249, 0.00983725209, -0.0160891041, -0.011532031, 0.00523498468, 0.000495252141, -0.00679418165, -0.0207290333, -0.000391682319, -0.00875259284, -0.0154563868, -0.0179119334, 0.00111949584, -0.00555510959, -0.00386786275, 0.00373228034, -0.00545342267, 0.0037228649, 0.023952879, 0.00380760385, 0.00380007154, 0.0247663744, -0.00446291873, 0.00797676109, 0.000260336907, -0.011230737, -0.0206235796, -0.00889570732, -0.00101592601, -0.00540822884, -0.0223108269, 0.0163903981, 0.00969413668, -0.0198251512, 0.00731768, -0.0104699694, -0.010123481, -0.0160439108, -0.0150195099, -0.000742407457, -0.000793721585, -0.0195539854, 0.00182847842, -0.00461733202, 0.00322196353, -0.00330105331, 0.00802195538, -0.0125488983, -0.00633470807, 0.0131138247, -0.0161342975, -0.01220241, -0.010123481, -0.000605883542, -0.00630081259, 0.0187404919, -0.00720846094, 0.00420305226, 0.0171737634, 0.0200661849, 0.0185446516, -0.0138971899, 0.00540822884, -0.0148312012, 0.00477927737, -0.0228380915, -0.0146052307, -0.00711807283, -0.0220697913, -0.0124585107, -0.00555134332, -0.00211659097, 0.0117203398, -0.0252333786, -0.0166766271, 0.00819519907, -0.00438006269, -0.00178893365, -0.00244424818, 0.0284270961, -3.18359562e-05, -0.0157878101, -0.00257229828, 0.00696365954, -0.000893525255, 0.014801072, -0.0130987605, -0.00168913, -0.00390929077, 0.0149441864, 0.000373322197, -0.0113060605, -0.0215123966, 0.000612003612, -0.0299787614, 0.00201113801, -0.0167820808, 0.0153735308, 0.00836091116, -0.0152002862, -0.0144018568, 0.00225593941, -0.0231695157, -0.00656821113, 0.0740580857, 0.026046874, -0.00131533702, -0.0227477029, -0.00563043309, -0.0154865161, -0.00416539051, 0.0416689701, 0.000319183426, 0.0058262744, -0.0109143779, 0.00327657303, -0.00715950038, -0.011983972, -0.0109219104, -0.0130008394, -0.00655314606, 0.00585640362, -0.00457590399, -0.00879025459, 0.00578484638, -0.0149743157, 0.00462863036, 0.00239905412, 0.00896349922, 0.00968660507, -0.00535173621, -0.0024781439, -0.015772745, 0.00721599348, -0.00761144189, 0.0155919688, 0.0186199751, 0.00290183863, -0.0262276493, -0.00691093318, 0.0108390544, 0.00496758614, 0.0144771803, -0.00393565372, 0.0176558327, 0.00804455206, 0.018318681, -0.00133793405, 0.00676028617, -0.00541199511, -0.0102138696, -0.00318806805, 0.00200925488, -0.0257154498, 0.00101310131, -0.0108089251, 0.0139348516, -0.00789390504, 0.00311651058, -0.00641379785, 0.00494875526, 0.00047948127, -0.0105829546, 0.0477249809, -0.00771312835, -0.00611627, 0.00333306589, 0.00842117, -0.0134527804, 0.0099201072, -0.0153659983, 0.00946816616, -0.0114039807, -0.00544589059, 0.0119613754, -0.0167067572, -0.0165711753, -0.00451564509, 0.000391211535, -0.00476797903, 0.00714820204, 0.000902940694, 0.00544589059, -0.0158781987, -0.013475378, 0.0115847578, -0.0154413218, 0.00353455613, -0.0165259801, 0.00262690778, 0.00203561806, -0.0137164127, -0.00675652, 0.00516342744, 0.000189132654, 0.00902375765, -0.0122626694, 0.0103117898, 0.0082479259, -0.00422941567, -0.00367767084, 0.0154865161, 0.0243445616, 0.00221451139, 0.0262879077, 0.0314249732, -0.015622098, 0.00520862127, -0.00596938888, 0.0337750651, 0.00462486409, 0.00653054938, 0.00902375765, -0.00934764929, 0.0129556451, -0.0152304154, 0.00575471716, 0.0109972339, -0.00748339156, 0.00273236074, -0.00667366385, -0.0055212141, 0.000592231168, -0.000758884475, 0.000633188349, 0.00458720233, -0.0106281489, 0.00634600641, 0.0122777335, -0.0120216338, 0.023350291, -0.016360268, 0.0148086045, 0.0118408576, 0.0100556901, -0.0137691395, -0.0221300498, -0.0199155379, -0.0054609552, 0.0380534418, -0.00481317285, -0.0137842046, -0.00924972817, 0.0212713629, 0.00143397157, -0.0102741281, 0.00214107102, 0.0107787959, 0.00646275794, -0.0104699694, 0.0015450737, -0.015471451, 0.0212412328, 0.00897103082, -0.0107863285, -0.015471451, 0.0145976981, -0.00280956738, 0.0119387778, -0.00765286945, 0.00183601084, -0.00976946, 0.0229736734, -0.00763780484, -0.00625185203, -0.00149517192, 0.0175353158, 0.0106356815, 0.00982218701, -0.0170683097, 0.0105980197, 0.00691469898, 0.00740430225, 0.0120291663, 0.0341968797, 0.0103494516, -0.0117429364, 0.0247061141, -0.000128049986, -0.00129368145, 0.00619912567, -0.0100180283, -0.0131062921, -0.0168724693, -0.00097920571, 0.00689963438, -0.00169289613, 0.0334135145, 0.00106676936, -0.024389755, -0.00729884906, 0.00452694343, 0.0301444735, 0.030506026, -0.00309014739, 0.00363624305, -0.00248191, -0.00736664049, -0.0133548602, -0.0198854096, 0.00380383781, -0.000136523886, -0.0061313347, 0.0157275517, 0.00511446688, -0.00492992438, -3.15417237e-05, 0.00174562261, -0.0208796803, 0.0367277488, 0.000927420857, 0.00670379354, 0.00171831786, 0.00409759954, -0.0154187251]
|
08 Jan, 2024
|
When do we pass arguments by pointer?
08 Jan, 2024
In C, the pass-by pointer method allows users to pass the address of an argument to the function instead of the actual value. This allows programmers to change the actual data from the function and also improve the performance of the program.
In C, variables are passed by pointer in the following cases:
1. To Modify Local Variables of the Function
A pointer allows the called function to modify a local variable of the caller function.
Example
In the below example program fun() can modify the local variable x of main().
C
// C program to modify local variables of the caller
// function
#include <stdio.h>
// function to modify local var x
void fun(int* x) {
*x = 20;
}
int main()
{
int x = 10;
fun(&x);
printf("New value of x is %d", x);
return 0;
}
Output
New value of x is 20
2. For Passing Large-Sized Arguments
If an argument is large, the pass-by pointer is more efficient because only an address is really passed, not the entire object.
Example
The below example demonstrates the use pass-by pointer for passing large-sized arguments. consider the following Employee class and a function printEmpDetails() that prints Employee details.
C
// C program to print details of employee using structure
#include <stdio.h>
#include <string.h>
// Structure to represent Employee
struct Employee {
char name[50];
char desig[50];
};
// Function to print Employee details
void printEmpDetails(const struct Employee emp)
{
printf("Name: %s\n", emp.name);
printf("Designation: %s\n", emp.desig);
}
int main()
{
// Create an instance of Employee
struct Employee emp1;
strcpy(emp1.name, "geek");
strcpy(emp1.desig, "Software Engineer");
// Call the printEmpDetails function
printEmpDetails(emp1);
return 0;
}
Output
Name: geek
Designation: Software Engineer
The problem with the above code is that every time printEmpDetails() is called, a new Employee object is constructed that involves creating a copy of all data members. So a better implementation would be to pass Employee as a pointer.
C
// C program to print details of employee using structure
#include <stdio.h>
#include <string.h>
// Structure to represent Employee
struct Employee {
char name[50];
char desig[50];
};
// Function to print Employee details
void printEmpDetails(const struct Employee* emp)
{
printf("Name: %s\n", emp->name);
printf("Designation: %s\n", emp->desig);
}
int main()
{
// Creating an instance of Employee
struct Employee emp1;
strcpy(emp1.name, "geek");
strcpy(emp1.desig, "Software Engineer");
printEmpDetails(&emp1);
return 0;
}
Output
Name: geek
Designation: Software Engineer
Note This point is valid only for struct as we don’t get any efficiency advantage for basic types like int, char, etc.
3. To Achieve Run Time Polymorphism in a Function
We can make a function polymorphic by passing objects as a pointer to it.
Example
In the below program, print() receives a pointer to the base class object. Function print() calls the base class function show() if the base class object is passed, and the derived class function show() if the derived class object is passed.
C
// C program to achieve run time polymorphism using function
// pointer
#include <stdio.h>
// Define the base class structure
struct Base {
void (*show)();
};
// Function to show Base
void showBase() { printf("In base\n"); }
// Initialize Base
void initBase(struct Base* base) { base->show = showBase; }
// Define the derived class structure
struct Derived {
// Inheritance by including the base class
struct Base base;
};
// Function to show Derived
void showDerived() { printf("In derived\n"); }
// Initialize Derived
void initDerived(struct Derived* derived)
{
// Initialize the base class
initBase(&(derived->base));
// Override for Derived behavior
derived->base.show = showDerived;
}
// Function to print using polymorphism
void print(struct Base* base) { base->show(); }
// driver code
int main(void)
{
struct Base b;
struct Derived d;
initBase(&b);
initDerived(&d);
print(&b);
// Note: Using a pointer to the base class
print((struct Base*)&d);
return 0;
}
Output
In base
In derived
4. To Return Multiple Values
When you want to return multiple values from a function, passing pointers as function parameters allows us to modify the values of variables passed to the function.
Example
C
// C program to return multiple values from a function
#include <stdio.h>
// Function to calculate sum and product of two numbers
void calcSumAndProduct(int x, int y, int* sum, int* prod)
{
*sum = x + y;
*prod = x * y;
}
int main()
{
int x = 5;
int y = 7;
int sum, prod;
// calling the function to calculate sum and product
calcSumAndProduct(x, y, ∑, ∏);
// printing the sum and product returned from function
printf("Sum is: %d \nProduct is: %d\n", sum, prod);
return 0;
}
Output
Sum is: 12
Product is: 35
5. To Modify the Content of Dynamically Allocated Memory.
By passing arguments by pointer to a function we can do modification in the content of dynamically allocated memory. It is mainly used when you want to allocate memory dynamically (by using functions like malloc, calloc, or realloc.
Example
C
// C program to modify dynamically allocated memory
#include <stdio.h>
#include <stdlib.h>
// Function to allocate memory for an integer and set its
// value
void dynamicMemoryAllocation(int** myptr)
{
*myptr = (int*)malloc(sizeof(int));
if (*myptr != NULL) {
**myptr = 20;
}
}
int main()
{
int* val;
// calling the function to allocate memory dynamically
// and set the value
dynamicMemoryAllocation(&val);
printf("Dynamic value set is: %d\n", *val);
// free up the allocated memory
free(val);
return 0;
}
Output
Dynamic value set is: 20
As a side note, it is a recommended practice to make pointer arguments const if they are being passed by pointer only due to reason no. 2 mentioned above. This is recommended to avoid unexpected modifications to the objects.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?
|
https://www.geeksforgeeks.org/when-do-we-pass-arguments-by-reference-or-pointer/?ref=lbp
|
Pandas
|
When do we pass arguments by pointer?
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0376655608, 0.00368251093, -0.0089519294, 0.0336844698, 0.0199165232, 0.00970944297, -0.0163003635, 0.000714661495, -0.026938729, -0.0284648146, -0.00605457881, 0.00317934505, -0.00862017181, -0.0144535787, 0.00161040737, -0.017760098, -0.0115672862, 0.0128058493, -0.00926157, 0.0329988375, 0.0601145029, -0.00996379089, -0.038904123, 0.00813359395, 0.0220065974, -0.0229134019, 0.0218186, 0.00208316208, -0.00938321464, 0.0199054647, 0.0187774878, 0.0257222839, 0.000417807401, -0.0695806593, -0.00441514282, -0.0507368185, -0.00769677944, -0.0126842046, -0.0105443671, 0.0117995171, -0.000365279091, 0.00401979778, 0.00210527936, -0.000609950454, -0.0212214366, 0.00980344135, 0.0106494231, -0.00517818565, 0.010179433, -0.0344585702, 0.00436814362, -0.00203063386, 0.0236875024, -0.0131486654, 0.0200271085, 0.0221393, -0.0135025401, -0.0438804924, -0.0175168086, -0.0199386403, 0.0102126095, 0.0191866569, 0.00249924161, -0.029791845, -0.000247436, -0.0130491378, -0.0433496796, 0.0269166119, -0.00325122592, -0.0482596941, 0.00243980181, 0.0224047061, 0.00462525571, 0.0205026288, -0.00634763157, -0.0518426783, 0.0681651607, 0.0205026288, -0.0358519517, 0.0251030028, -0.0213873163, 0.00812806468, -0.0142987585, 0.00717149675, -0.00420502946, -0.0114456424, 0.0146415755, -0.0228470508, 0.0452296399, -0.02401926, -0.0440131947, -0.0526831299, 0.0100854356, 0.0271599013, 0.00143208762, -0.0162561294, -0.00426308718, 0.00964309182, -0.00634210231, 0.0477288812, -0.0205358043, 0.0208565034, 0.000440615753, -0.00126275292, 0.0159022547, -0.00196428224, 0.0185010228, -0.00822206307, -0.0105554257, 0.030389009, -0.00742031494, -0.000639324833, 0.00988085102, -0.00766913313, -0.0109093, -0.0147079267, 0.01805868, -0.0567084551, -0.000136504488, 0.0209781472, 0.0110807084, -0.00387327163, 0.0320256799, 0.0305880643, -0.0540986285, 0.00629233848, 0.00791795179, -0.0125515014, -0.0377761498, -0.0343037508, -0.0195184145, 0.0419120602, 0.038882006, 0.0116889309, 0.00437643752, -0.0237980895, 0.0228249319, -0.0022366, -6.32845185e-05, -0.00956015196, -0.0209560301, 0.0125957355, -0.00401150389, 0.00484642759, -0.00717149675, -0.028044587, -0.00485195685, 0.0438583754, -0.0135025401, 0.00612093043, -0.0498963632, -0.0258549862, 0.0173509307, -0.0173288137, 0.052152317, -0.0479942858, -0.00434049731, 0.0563988164, -0.0342152826, -0.0268723778, -0.00441237818, -0.0276685953, -0.0406071469, -0.00812253542, -0.00371568673, 0.012883259, 0.000456858048, -0.0260098074, -0.0161455441, 0.00828288496, 0.00744243199, 0.0307207666, 0.0509137549, 0.00591081707, 0.00541871, -0.00949380081, -0.00681209238, 0.0168643519, 0.000538415159, -0.0249039475, 0.0119875129, 0.000716043811, -0.0176052768, 0.000716043811, 0.0171187, 0.0158469621, 0.0138895912, -0.0270493142, 0.0140222935, -0.034945149, -0.0314285159, -0.00510354, 0.0350557342, -0.0616627075, 0.00280749984, 0.0153382663, -0.0713058, -0.0337065868, 0.0196621753, 0.0186890196, 0.00992508605, -0.028685987, -0.0359404236, 0.0187553708, 0.00227806973, -0.0377098, 0.0112134116, 0.00674574077, 0.0427082814, -0.0174946915, 0.0144204032, 0.0167095326, 0.0177932736, -0.0279118847, 0.000810733, -0.00251168269, -0.0193083, 0.0516657382, -0.0162008367, -0.0368029922, -0.0181029141, 0.0205800384, 0.0274253059, -0.00644715875, -0.0568411611, -0.0319814458, 0.02010452, -0.0382848419, -0.0369356945, 0.0114677595, 0.0099914372, 0.0319150947, 0.00855382066, -0.0223051794, -0.00677338708, 0.00897957664, -0.0141771138, 0.00398385758, -0.030964056, 0.0534351133, -0.014309817, 0.0306544155, -0.0314064, 0.0128611419, 0.0176052768, 0.0268944949, -0.0145973405, 0.0089464, -0.0322247371, 0.0180033874, -0.00595505163, 0.0244616047, -0.00161455432, -0.0156257898, -0.0408725552, -0.00714385, -0.00918968953, 0.0273810718, -0.00445937691, 0.00351663213, 0.0182024408, -0.0193525348, -0.0104614273, 0.0175721012, -0.00217577792, -0.0495424904, 0.00916204322, 0.00924498215, 0.0170965828, -0.0311409943, -0.00388156553, -0.0568853952, 0.00608222513, -0.0113239978, 0.0232672766, 0.0412706621, -0.0240634941, 0.0089851059, -0.0267175566, -0.0017942565, 0.00139822066, 0.0109148296, 0.0207016841, 0.0250366516, 0.0124298567, -0.0248375963, -0.0456941, -0.0119543374, -0.01601284, 0.0216306057, 0.000306011963, -0.0441901311, 0.00166431803, -0.0295043215, 0.0561334118, -0.0278676506, -0.04412378, -0.0119101033, -0.00102637557, 0.0365597047, 0.0178153906, -0.0290840957, 0.0181913823, 0.0278897677, -0.0306986496, -0.0178817417, -0.00062861183, -0.0192751251, 0.00804512482, -0.0173951648, 0.00310746417, -0.0526388958, -0.0230682213, -0.00725443615, 0.0104503687, 0.00537724, 0.01200963, -0.00990849826, -0.0247491281, 0.00169058214, -0.054452505, 0.00116875488, -0.000316897756, -0.0224931743, 0.0119543374, -0.0129938452, 0.0278676506, 0.00589975854, -0.0350115, -0.0464018509, -0.0257444, -0.0351220854, -0.0318487436, 0.0106438939, 0.00212877896, -0.0262088608, -0.0437699035, 0.0177269224, -0.0205800384, 0.00841558818, -0.0108484784, -0.00990849826, -0.00966520887, 0.0294600874, -0.0119101033, -0.0485251, -0.0319593288, -0.0127505558, 0.00858699623, -0.00223245309, 0.000627575093, 0.030366892, 0.0260098074, -0.00164081855, 0.0410273746, -0.00929474644, -0.00623151613, 0.00495424913, -0.0241961982, -0.0112908222, 0.0609107204, 0.0222388282, 0.00925051142, 0.0107213045, -0.0173951648, -0.0322910883, 0.0329546034, -0.0123745641, 0.030765, -0.0132703101, -0.0151945045, -0.000812115322, 0.0276022442, -0.0045893155, 0.00468331343, 0.0357413664, 0.0334633, 0.0189544261, -0.0327334292, 0.0149843916, 0.0165547114, -0.00704432279, -0.028619634, 0.00804512482, -0.007027735, 0.0161344856, -0.0290398616, 0.00251030037, 0.0522407852, 0.0220176559, -0.0129164346, 0.0521965511, 0.0126731461, -0.0284426976, -0.0174504574, 0.000855658494, 0.00323187327, 0.0185894929, -0.045295991, -0.0180476215, 0.0321141481, 0.0114124659, -0.0194962975, -0.0122529194, 0.00485195685, 0.0496309586, -0.0220508315, 0.00597716868, -0.00463078497, 0.0181692652, -0.00350280874, -0.00688397326, -0.00398938684, -0.00549335545, 0.0168090593, 0.0372453369, -0.0239307918, 0.0579912551, -0.025191471, 0.0187664293, 0.0479500517, 0.00604352029, -0.0258992203, 0.0485251, 0.0332421251, 0.0357192494, 0.0589201748, 0.00839347113, 0.0184457302, 0.0278013, -0.0278455336, 0.01610131, 0.000383594888, 0.00700561749, -0.0149954502, -0.0439910777, -0.00802853703, 0.0138895912, -0.0341268145, -0.0396782272, 0.0232672766, 0.0143208755, -0.00783501193, -0.0266069714, -0.0477731153, 0.00635316083, -0.0149622746, -0.000571590965, -0.0200271085, 0.0127284387, -0.0489674434, 0.0146305161, 0.0240634941, 0.0391474143, 0.0231124554, 0.00876393355, -0.0234884489, -0.049232848, 0.000317416125, -0.017185051, -0.00785712898, -0.0223825891, 0.0119653959, -0.00674021151, 0.00955462269, -0.00927815866, 0.00813912321, -0.0152829736, -0.0200049914, -0.0242846664, -0.0176495127, -0.0100577893, -0.00912333839, -0.013779005, 0.0206685066, -0.0156921409, 0.00315722777, 0.0124298567, -0.0306544155, -0.0555141307, 0.00806171354, -0.0302120727, -0.0291725639, 0.000915789627, -0.0216416642, -0.0315169841, -0.0031516985, 0.0372453369, 0.00187028432, -0.0191645399, 0.0342374, 0.0298360791, 0.036139477, -0.0154046174, -0.0199718159, -0.0259655733, -0.0448315293, 0.0231345724, 0.0461806767, 0.0536120497, -0.00573940901, -0.0487020351, 0.00933898054, 0.0385944843, 0.0109756524, -0.031583339, -0.0334633, -0.034370102, -0.00091509847, -0.0455613956, 0.00294435, 0.0245058388, 0.0331094228, 0.0498521291, 0.0270714313, -0.031605456, -0.0265406203, -0.0506483503, 0.0141328797, 0.0366481729, 0.0166984722, -0.000288560113, -0.00166708266, 0.0182909109, 0.00639739493, 0.0340162255, 0.0141881732, -0.0191534795, 0.0151613289, -0.0346355066, 0.00313234609, -0.00178872712, -0.0172514021, 0.0182135, 0.0142655829, -0.0270050801, 0.0149180396, 0.032644961, -0.0264742672, 0.0171739925, -0.021464726, 0.0245721899, 0.0128390249, -0.0233336277, 0.00932239275, 0.0413591303, -0.0207790937, 0.0202482808, -0.0115341106, -0.0109148296, -0.0165104773, 0.0224931743, 0.0227585807, -0.00615963526, -0.00735949259, -0.0144867552, -0.0192530081, 0.000798292051, -0.0130049037, -0.0243731365, 0.0184899643, -0.00102084619, 0.0417572409, 0.0139006497, -0.00255868165, -0.00468607806, 0.0190097187, 0.0271156654, 0.000278711057, 0.0245721899, -0.00653562741, -0.0199275818, 0.0290840957, -0.0199718159, 0.0219402462, -0.00879158, -0.038439665, -0.008399, -0.0197174679, 0.0306986496, -0.0297033768, -0.0146968681, 0.0106162475, 0.00272456044, 0.023444213, 0.00465013785, -0.0410273746, 0.0269166119, -0.020591097, -0.0027535893, -0.0119653959, 0.0236432683, -0.000290115247, 0.0172956362, 0.000523900788, -0.0195737071, -0.0115451692, -0.00360786542, -0.0233115107, 0.00698350044, -0.0148959225, 0.0343037508, 0.0231124554, -0.0285975169, 0.0144867552, -0.0180033874, -0.0151281534, 0.000605803449, -0.00952144712, 0.0383733138, -0.0130270207, -0.0317160413, 0.0115562277, 0.0121423332, 0.0178485662, -0.0251472369, -0.0146194575, 0.0179591533, -0.0126952631, -0.0144646373, 0.0313179307, -0.0161897782, 0.0199828744, 0.00414144248, 0.0132150166, 0.00366868777, 0.00220618909, -0.0300793685, -0.014608399, -0.00776313106, -0.0111415312, -0.0507368185, 0.0053108884, 0.0132260751, -0.00942745, 0.0157916695, -0.0334854163, 0.0472423024, -0.0189654846, 0.0791795179, 0.00334522384, 0.0178264491, -0.0261646267, 0.0977579504, -0.00639186567, 0.00858699623, 0.0213873163, 0.0343037508, -0.0337508209, 0.0105775427, 0.0168090593, -0.014652634, 0.00857593771, 0.0106494231, -0.00748113729, -0.0214204919, 0.0319814458, 0.0201708712, -0.0171187, 0.00919521879, -0.0184236132, -0.00999696646, -0.0188549, 0.0228912849, -0.0174946915, -0.0314064, -0.020613214, 0.00111968233, 0.0118548097, 0.0147079267, -0.00929474644, 0.000559495587, -0.0074700783, 0.0152387386, -0.00512012793, -0.00199469342, -0.0338171721, 0.0231124554, 0.0193304177, 0.00748113729, 0.055071786, -0.00346686831, -0.00502889464, -0.019507356, -0.0182909109, -0.00267203222, -0.0666169524, -0.00304940669, -0.00723231863, -0.00277985353, -0.0132703101, -0.0444776565, 0.0160238985, 0.00213707285, -0.018932309, -0.0534793474, -0.013779005, -0.00474690041, -0.0224599987, -0.00199884037, 0.013181841, -0.0134140719, -0.0118437512, -0.00870311167, -0.0191092454, 0.0297033768, -0.00539935706, -0.0132150166, -0.0186116099, -0.0104227224, 0.00580576062, 0.0145088723, 0.00283376407, 0.0071106744, -0.00946062524, 0.00888004899, 0.00131320779, 0.0109480051, -0.0235990342, -0.0287965722, 0.00521965511, -0.0133145442, 0.0132481921, 0.0108374199, 0.000461005024, -0.00700008823, -0.0138674732, -0.0118216341, -0.0305438302, -0.00437090825, 0.00112521171, -0.00201957533, -0.024041377, -0.0118658682, 0.00557905948, -0.0279340018, -0.0302784238, -0.0129496101, -0.00808936, -0.00170717, -0.000106179759, 0.0140665285, 0.0165104773, -0.0106936581, -0.0443449505, 0.00810041837, 0.0180144459, 0.00167952362, 0.0285090487, 0.0442564823, -0.0139559424, 0.0307428837, 0.0358961895, -0.0270714313, -0.0137900636, -0.0237538535, 0.0252578221, -0.0152719151, 0.0231788084, 0.0158580206, -0.00899063516, 0.0118437512, 0.000425755774, 0.0108484784, -0.000854276179, 0.0256338157, -0.0307207666, -0.0115451692, 0.0209560301, -0.0085925255, 0.011478818, 0.0287523381, 0.000747837243, 0.00884687342, -0.00332034216, 0.0183130279, 0.00141066161, 0.0277128294, -0.0103674298, -0.00822206307, -0.0391031802, -0.00294158538, -0.000970391382, 0.00476901745, -0.000783086522, -0.0185894929, 0.00776313106, 0.0184567887, 0.0274695419, -0.00749772508, 0.0485693328, 0.0108650662, 0.029791845, 0.0121202162, 0.00435155584, -0.0522850193, 0.0143761691, 0.0031102288, -0.0137900636, -0.038461782, 0.0161676612, -0.0125515014, -0.039014712, -0.0283099934, 0.0452075228, -0.009902969, -0.0336402357, -0.029283151, -0.0150949769, 0.0188880749, 0.0206795651, -0.00492660236, 0.000814879953, 0.0145973405, 0.00643057097, 0.0229797531, 0.0230903383, -0.00539659243, -0.0103784883, 0.0182466768, 0.0176716298, -0.0148185128, 0.0334633, -0.00733737554, -0.0120870406, 0.025191471, 0.00984214619, 0.00597163942, 0.050382942, 0.0115672862, -0.00206104503, -0.0230903383, 0.0211772025, 0.0262973309, -0.0210555587, -0.00831053127, 0.0192751251, -0.0138121806, -0.000568135118, 0.0227806978, -0.00521136122, -0.0122529194, -0.00216195453, 0.00775207253, 0.0127947899, 0.00126759103, 0.0107987141, 0.0178485662, -0.00405297382, -0.0168090593, 0.00896851812, -0.0167537667, 0.0425534584, 0.0193414763, -0.00381797878, 0.0162671879, -0.0185341984, -0.0270493142, 0.015183446, 0.0109480051, 0.0262973309, 0.0412485451, -0.0184236132, 0.00588317076, 0.0127394972, -0.0170634072, 0.0185563173, 0.00609881338, -0.00400597462, -0.0252357051, 0.0195847657, 0.0171187, 0.00566752814, 0.0276907124, -0.00223936467, -0.0114124659, 0.0192530081, -0.00703326426, 0.0428631, 0.038882006, 0.0354096107, -0.0304774772, -0.0190428942, -0.0198722892, -0.0367587581, -0.0138121806, 0.00281164679, -0.0362721793, -0.0209449716, -0.00154405588, 0.0297476109, 0.0174504574, 0.00465290248, 0.00787924603, 0.00569517445, 0.000781013048, -0.00424096966, -0.0285090487, -0.00340604619, 0.0177379809, -0.00816124, 0.00167952362, -0.0279340018, 0.0265848543, -0.00215089601, 0.0188438389, 0.00665727211, 0.0160902496, -0.0396782272, 0.0366039388, 0.0109480051, -0.00547953183, -0.0144867552, -0.0380636714, 0.024638541, 0.0247933622, -0.0141881732, -0.00247021276, -0.00722678937, 0.004876839, -0.00648586405, 0.00508142263, -0.020613214, 0.00487407437, 0.0150618013, -0.0243289, -0.0189544261, 0.013712653, -0.0106217768, -0.00243012537, 0.00294435, -0.00333140069, 0.0130933719, -0.00777971931, 0.00382350804, -0.0167095326, -0.00820547529, -0.00938321464, -0.0396339931, -0.0211219098, -0.0013857797, 0.00933345128, 0.0302341897, -0.000995273236, -0.0283984635, -0.0345912725, 0.00116115215, -0.00204860396, -0.0133919539, -0.00954356417, -0.00469990121, 0.00877499208, 0.0193304177, -0.0186447855, 0.00883581489, -0.00188272516, -0.0178485662, 0.00751431286, -0.0182466768, 0.0308977049, 0.012905376, 0.00962650403, 0.00563158747, -0.0136905359, -0.0233557448, 0.0272483695, -0.00131666358, -0.0212435536, -0.00475795893, -0.0124851493, 0.00526388967, 0.0121091576, 0.0350115, 0.0377982669, 0.00460866792, -0.0324459076, -0.000429557171, -0.0296812598, 0.024682777, 0.0215974282, -0.00562052894, 0.00372674526, -0.00758619374, 0.0223825891, -0.00441790745, -0.0200934615, 0.0222830623, -0.0133808954, 0.00500954175, 0.00884134416, -0.0117663415, -0.0232672766, 0.0379973203, -0.0264079161, -0.0334411822, 0.0412485451, 0.0235990342, 0.03147275, -0.0145752234, -0.0507368185, -0.0295485556, -0.00137126539, -0.018910192, -0.0200492255, 0.0385944843, 0.00309087639, 0.0121423332, 0.0411379598, 0.00816124, 0.00712173292, -0.0302784238, -0.0202925149, 6.01742868e-05, -0.0191092454, 0.00589975854, 0.0383954309, -0.0262088608, 0.00858146697, 0.0238202065, -0.024085613, -0.0233778618, -0.00194492983, -0.0167205911, 0.00165187707, 0.0156810824, -0.00288076303, 0.0419341773, 0.00907910336, 0.0124187982, -0.00218545413, -0.0122971535, -0.00462525571, 0.00845982227, 0.0116557553, -0.00602140324, -0.0320035629, -0.00801194925, -0.0559564717, 0.0208012108, 0.0115009351, 0.0228691678, 0.0127947899, -0.0142102903, 0.0161344856, 0.017782215, 0.0119985715, -0.00101393461, -0.00121022458, 0.0030355833, -0.0100743771, -0.00435432047, -0.0126178525, -0.00237621483, 0.0107600093, -0.0208675619, 0.00284205796, -0.00641398318, -0.00404744456, 0.0021177202, -0.0121976268, 0.014906981, -0.0295264386, -0.026938729, -0.00431561517, -0.000772719097, 0.0138232391, 0.0139117083, 0.00836029556, -0.00823865086, 0.0126952631, 0.0183240864, 0.00590528781, -0.00925051142, -0.0158137865, -0.012053865, -0.00766360387, -0.00394238764, 0.0170965828, 0.000987670501, -0.0348787978, -0.0191092454, -0.0101739038, 0.00420502946, 0.0215642527, 0.0129827866, -0.017207168, 0.0190539528, -0.00431285053, 0.00553758955, -0.0174062233, -0.00893534161, 0.0242404323, 0.0227585807, 0.0127505558, -0.00421332335, -0.00135951559, -0.019507356, 0.0551160201, -0.0177711565, -0.0497194268, 0.00648586405, 0.0357634835, -0.0117663415, 0.000136677278, 0.000802439055, -0.0058776415, 0.00720467232, 0.0115562277, -0.00258356333, 0.0154377939, 0.0360952429, 0.0158911962, -0.00649692258, 0.0223051794, -0.00782395341, -0.023510566, -0.0266290884, 0.00206657429, 0.00475795893, 0.00390091818, 0.0047192541, 0.0132924272, -0.00146111636, -0.0173730478, 0.00133048673, 0.00293052662, 0.0069060903, 0.0185894929, -0.0294822045, 0.00308811176, -0.0051920088, -0.00319040357, 0.0224599987, 0.0181582067, 0.0198280551, -0.0299024321, 0.0247933622, -0.0139117083, -0.0320920311, -0.021785425, 0.0120759821, 0.0148738055, -0.00541318068, -0.0258328691, -0.0159133133, -0.0302784238, -0.012905376, -0.00163114222, -0.0142213488, 0.0365597047, 0.0179370362, 0.00458102161, 0.0158580206, -0.00359127764, -0.00597716868, 0.0118990447, -0.00180531503, -0.0216084868, -0.0117331659, -0.012352447, -0.00545741478, -0.0119985715, 0.00356639572, -0.00961544551, 0.0126178525, -0.00217301329, 0.0201266371, 0.00655774493, 0.00137817697, 0.00230295165, 0.00710514514, -0.0335296504, 0.0079455981, -0.0193635933, 0.014354052, -0.0016200837, -0.000816262269, -0.0147079267, -0.00776866032, 0.0164773017, 0.0598491, 0.0106217768, -0.0061928113, -0.00330651877, 0.0134361889, -0.00745349051, -0.0026969139, 0.00339498767, 0.0257444, -0.00318210968, 0.0115562277, -0.00039776371, 0.0120870406, 0.0255895797, 0.0201155785, -0.0089851059, -0.0206685066, 0.0138674732, 0.0158137865, 0.00712726219, -0.004152501, 0.00304111256, -0.0296812598, 0.00270382571, -0.0116999894, 0.00817229878, -0.0151613289, 0.0344143361, -0.0189986601, -0.00993061531, -0.033795055, 0.0301678367, -0.00151917397, -0.00686185621, 0.0251251198, 0.000217024863, -0.00979791209, -0.0232672766, 0.0308534708, 0.0151392119, -0.0134472474, 0.00270244339, 0.00402809214, -0.00822759233, 0.0266954396, -0.00608222513, 0.0213652, 0.00729314098, 0.030765, -0.00227668742, 0.00110102096, -0.00699455896, 0.000430248328, 0.0304774772, -0.0278013, -0.0164441261, -0.0167758837, 0.012031747, 0.00819441583, -0.00843217596, 0.00657433271, -0.0122197438, 0.0273368377, 0.0130049037, -0.0116446968, 0.0225374103, 0.0035968069, 0.00505654095, -0.0385502502, -0.003950682, -0.0146415755, 0.0058887, -0.0354980789, 0.034392219, -0.0215310771, 0.0184457302, -0.0112521164, 0.0153493248, 0.0217080154, 0.00598269794, 0.0131707825, -0.00417185342, -0.0101186112, -0.031450633, -0.00457825698, -0.0116446968, 0.00125376775, 0.0119432788, -0.00342539861, 0.00136297138, -0.00978685357, 0.020635331, -0.00542700384, 0.00654668594, -0.0115562277, 0.0255011115, -0.00206933892, -0.0446545929, 0.00592187559, 0.0124409152, 0.0103840176, -0.0116225798, -0.00880263839, -0.0161344856, 0.00678997533, 0.0104835443, -0.00697797118, 0.0167316496, 0.0238865577, 0.00879710913, -0.0115783457, 0.0311631113, -0.0200934615, -0.0332642421, -0.0202814564, -0.00746454904, -0.00589975854, -0.0356971323, 0.00597716868, -0.0335517675, 0.0266069714, -0.0372453369, 0.00698350044, -0.0169196445, -0.00346410368, -0.0278676506, 0.00365486438, -0.0146747511, 0.028619634, -0.0188217219, -0.0325786099, -0.0143651105, -0.0143429935, 0.0109093, -0.000284585927, 0.000652802468, -0.00646374654, -0.0165215358, -0.018655844, 0.00483260443, -0.00661856681, -0.0024978593, -0.0147742778, -0.0182798523, -0.0019518414, -0.0265185032, 0.00143346994, -0.00326228444, 0.000825938536, 0.0140444115, 0.015459911, 0.00582234841, 0.00959885772, 0.0116336383, -0.0277791824, -0.0298581962, 0.0338171721, -0.0225595273, -0.0226148199, 0.0199939329, -0.0107489508, 0.0119543374, -3.42773128e-05, 0.00649692258, 0.0153161492, -0.0213873163, -0.00676785782, -0.0193525348, -0.00577258458, 0.000851511548, 0.00375992106, 0.00599928573, 0.0213209651, 0.00697797118, -0.00123234175, 0.00662409607, -0.0263194479, 0.0156921409, 0.00307152374, -0.019783821, 0.0258107521, -0.0369799286, 0.0192530081, -0.00523071364, -0.0182135, 0.0118769268, -0.0147411022, 0.00479942886, 0.0065909205, 0.0335738845, -0.0226922296, 0.0220065974, -0.0238644406, 0.0225042328, 0.0187221952, -0.00836029556, -0.00218407181, -0.0146968681, 0.00868099462, -0.0150839183, -0.00312958146, -0.00409167865, 0.00818335731, 0.00314064, 0.0295264386, 0.00508695189, 0.00318763894, 0.0126399696, 0.00569517445, 0.030765, -0.00836582482, 0.0204252191, 0.0314064, 0.00181084441, 0.0106494231, 0.0037129221, 0.00327887246, -0.00885793194, 0.0020762505, 0.0185341984, -0.000575046754, 0.00572835049, 0.0045976094, -0.00879710913, 0.0132813687, 0.0216748398, -0.0057117627, 0.0112189408, -0.0209892057, 0.0304774772, -0.0010008025, 0.00189516612, -0.0127837313, 0.00829394348, -0.0272262525, -0.00177352165, -0.010455898, -0.0165768284, -0.0213209651, -0.0029941136, 0.0314948671, -0.020613214, 0.00242597843, -0.00241215527, -0.00932792202, 0.0108208321, -0.0107213045, 0.0140001765, 0.0044732, 0.0124077396, -0.0319372118, -0.0114456424, -0.0109977694, -0.0254347604, 0.00860358402, -0.0107378922, -0.0045893155, -0.022360472, 0.0187553708, 0.0227143466, -0.00397279905, 0.00923945289, 0.0288850404, 0.00110655033, 0.0185010228, 0.00146249868, -0.00373227452, -0.0122197438, -0.00306046521, 0.0262752138, -0.00481601665, 0.0118216341, 0.0271156654, 0.0109369466, 0.00563988183, -0.00498742471, -0.0161455441, 0.0348124467, -0.0153603833, 0.0171629339, -0.000893672404, 0.00260706292, 0.01028449, -0.0198501721, 0.00415526563, 0.00953803491, 0.0322689712, -0.0159133133, -0.00784054119, 0.0148627469, -0.00408062, 0.011158119, -0.00660197902, 0.00513948034, 0.00631445553, -0.0127837313, -0.00538000464, -0.0222167093, -0.00505930558, -0.00334245921, -0.0165215358, -0.0105609549, 0.00821100455, -0.0063863364, -0.00128348777, 0.010306607, -0.00519477343, 0.0497194268, 0.0162561294, 0.0310525242, 0.00524730142, -0.013159724, 0.00354427844, -0.0123413885, 0.0122639779, 0.00101462577, -0.00478560524, -0.0125404429, 0.0110364743, 0.0055071786, 0.00833264831, -0.00107475684, 0.000190242325, -0.0401426852, -0.0168422349, 0.026960846, -0.00848746859, -0.0182577353, -0.012883259, -0.037267454, -0.00252412353, -0.020336749, -0.0207238011, -0.00612093043, -0.00563988183, -0.00713279145, -0.00482707517, 0.0172624607, -0.0103784883, 0.00314340461, -0.0197506435, -0.0332642421, -0.0188106634, -0.0101130819, 0.00250338856, 0.0174946915, 0.00446767081, 0.00357192499, -0.00976473652, 0.0209339131, 0.0107655386, 0.0123856226, -0.00896298792, 0.0273368377, 0.0155704971, -0.000720190757, 0.0268502608, -0.00989191048, -0.0117884586, 0.0128169078, -0.0192861836, -0.00876393355, -0.0298139621, -0.0183019694, -0.00222415919, 0.00142932299, -0.00217301329, 0.0268281437, 0.00104365451, -0.0126178525, 0.00666833064, 0.0132924272, -0.00190346, 0.00427138107, 0.00343645737, -0.00155649672, -0.00440684846, -0.000562605856, -0.0210776757, -0.0095877992, -0.0167095326, 0.0238865577, 0.0240634941, 0.0228912849, 0.014586282, -0.0133919539, 0.0121865682, 0.00651351037, 0.000121903693, -0.000448564126, 0.00707749836, 0.00366592314, -0.0291725639, -0.00568411592, -0.0149843916, 0.0319372118, 0.00398662221, 0.00371015747, 0.0104227224, 0.00876393355, -0.00260291598, 0.0162893049, 0.0367808752, -0.00993614458, 0.0187774878, -0.00716043776, 0.0064361, -0.00693373661, -0.00470266584, -0.013480423, -0.0193967689, 0.0122086853, 0.0242625494, -0.0179812703, 0.0206906237, 0.0178264491, -0.0157474335, -0.0117442245, -0.0276243612, -0.0116115212, 0.00869758241, 0.0153382663, -0.00107890379, -0.0225484688, -0.00177352165, 0.015183446, -0.000758895825, -0.0253684092, -0.0458268039, -1.08156046e-05, -0.00213569053, -0.00143346994, 0.0136131262, -0.0169307031, -0.00490448531, 0.0114677595, -5.77120227e-05, 0.0252578221, -0.00462802034, 0.00479113497, -0.0202372223, 0.00622598687, 0.0104669565, 0.0155704971, 0.00660750829, -0.00738160964, 0.00630339701, -0.00360233616, -0.00633657305, -0.0148516884, 0.00243289, -0.00716043776, 0.00290564494, -0.00287523377, -0.0120870406, 0.00730419951, 0.0148406299, -0.00608222513, 0.00613751821, -0.0363385305, -0.00155096746, 0.00683973869, 0.011053062, -0.0132813687, 0.0221282411, 0.0021177202, -0.00468884269, 0.0322247371, -0.0113350563, 0.00484089833, 0.00318487431, 0.01200963, 0.0221171826, -0.0136573603, 0.0150396843, 0.00972603075, -0.00442343671, -0.0266733225, 0.0126842046, 0.0124187982, 0.0121423332, 0.0117663415, -0.0057947021, -0.00242044916, 0.0117884586, 0.0136573603, 0.00590528781, 0.00654668594, 0.0287523381, 0.0408725552, -0.00294987927, 0.0295043215, 0.01130741, 0.00284205796, 0.00615963526, -0.0173177533, 0.00696691265, -0.00561776431, 0.0077133677, -0.0141992318, -0.0203920435, -0.00193248887, -0.0062370454, 0.00904592779, 0.000186613732, 0.00235409755, 0.0144867552, -0.000929612841, 0.0246606581, -0.0167758837, -0.0324901417, -0.00596058089, -0.000251582969, -0.0052362429, 0.0145199308, 0.0103231948, -0.0295706727, 0.0135357156, 0.0117442245, 0.0223051794, 0.0178706832, -0.0104448395, -0.0512233973, -0.028088823, 0.00179702113, -0.0172956362, 0.00810594764, -0.00402256241, -0.019208774, -0.005590118, 0.0113792904, -0.000487960351, -0.0109645939, -0.00775207253, 0.0196953509, 0.02401926, -0.0182135, -0.0115009351, -0.0129938452, -0.0132703101, -0.0131928995, 0.00594952237, 0.0183130279, -0.00071051449, -0.0365375876, -0.00740925642, 0.0125957355, 5.0152441e-05, 0.00350280874, -0.0153161492, 0.00917310175, -0.0341046974, 0.00300517213, -0.00348622096, -0.0012447827, 0.00406126771, 0.00374333328, 0.0109314173, -0.00820547529, -0.00268723769, -0.0220729485, -0.0199607573, 0.00028372198, 0.0138342977, -0.00468607806, -0.0119101033, -0.00297476118, 0.00677338708, 0.00469713658, -0.0071549085, -0.0133034857, -0.00962650403, -0.016798, 0.00799536146, 0.0262309797, 0.00114179961, -0.0080672428, 0.0304995943, 0.0231345724, -0.00424649892, 0.000147735875, -0.00401703315, 0.00529430062, -0.00229051081, 0.00348898559, 0.00463078497, -0.0130270207, 0.0293937363, -0.0112963514, -0.0153272077, 0.00743690273, 0.00331757753, 0.0104946028, 0.00937768538, 0.00172790489, -0.0204252191, -0.0179370362, 0.0154488524, -0.00453955168, 0.0129496101, -0.0135357156, 0.00778524857, -0.0243952535, 5.43426104e-05, 0.0340825804, 0.023444213, 0.00548782619, -0.0105277793, 0.0012530766, -0.00072502892, 0.0015551144, -0.0289071575, -0.0391252972, 0.0116668139, 0.00960438699, -0.00174449279, 0.000936524477, 0.0202814564, -0.00045305668, -0.0158359036, 0.00654115668, -0.0230682213, -0.017461516, -0.00709408661, 0.00576705532, -0.00921733584, -0.00741478568, 0.0134361889, -0.00451190537, -0.0118105756, -0.00162699528, -0.0041912063, -0.0113239978, 0.0125072673, 0.0266069714, 0.0157806091, 0.00764148682, 0.0161566027, -0.0138453562, 0.00786265824, 0.00624257466, 0.0108153028, -0.0131376069, 0.02410773, -0.0162561294, -0.0167758837, -0.0119432788, 0.0199165232, 0.0187111367, 0.0261203926, -0.00226701121, -1.75166369e-05, 0.0148295714, 0.00743137347, 0.00327057834, -0.0108429492, 8.19890847e-05, 0.00304387719, -0.0147632193, 0.000671809423, -0.00802300777, 0.00708302762, -0.000589906762, -0.00443726, 0.00303834793, -0.00450637611, 0.0334411822, -0.00908463262, 0.0083492361, -0.00774654327, -0.000445453887, 0.00234718597, 0.0033562826, 0.00409997255, -0.000948274217, 0.0052749482, -0.00311299344, 0.0237538535, 0.0231124554, 0.0125625599, -0.0252799392, 0.00124132691, -0.00361339469, -0.00608222513, 0.00945509598, 0.0212767292, -0.0124630323, 0.00151640933, 0.0117663415, -0.00394515228, 0.0105388379, -0.00397832831, 0.016034957, -0.0126952631, 0.00735396333, -0.0156700239, 0.00934451, 0.00953803491, -0.020889679, -0.0167205911, -0.0125072673, -0.0118105756, -0.00145973405, 0.00417461805, -0.00195322372, 0.0031931682, -0.00617622351, -0.0157695506, 0.0135357156, 0.0224378817, 0.00247297762, 0.0138121806, -0.00368527556, -0.00343645737, 0.0127616143, -0.00265267957, -0.0194078274, -0.000411586952, -0.00263885641, -0.00322357938, -0.000957950484, 0.0116889309, -0.0095877992, 0.0145641649, 0.0167095326, -0.0141549967, -0.008399, -0.00396450516, -0.00119640131, 0.0126399696, -0.00208177976, -0.0200602841, -0.00211910252, 0.0146858096, -0.0193525348, 0.0228249319, 0.00800642, -0.00433773268, 0.0232230425, 0.00578364311, -0.0074700783, 0.00394238764, 0.0138785327, 0.0207569767, 0.0147521608, -0.0106826, -0.00658539124, -0.0106273061, -0.0165215358, -0.000930304, -0.000932377472, -0.0251030028, -0.00810594764, -0.0124519737, 0.0105167208, -0.0106936581, -0.006154106, -0.00200575194, 0.0155373206, -0.00671809446, -0.00608775439, 0.0233999789, 0.0312294625, -0.00900169369, -0.00210666168, 0.0149954502, -0.0111857653, -0.00101186114, -0.0155262621, -0.00709408661, 0.00597716868, 0.0276907124, -0.00477454672, -0.01601284, -0.0187221952, 0.00309364102, -0.0062370454, 0.00754195917, -0.0238202065, 0.00775760179, -0.0139006497, 0.0150618013, 0.00437643752, 0.0173951648, 0.03611736, 0.0118326927, -0.0109480051, -0.0133366613, -0.00761384, -0.0288186893, 0.0123966811, 0.0216195472, 0.0132924272, -0.018335145, -0.0188770164, -0.0253020581, -0.00829394348, 0.0111747067, 0.0115009351, 0.00434049731, -0.0103674298, 0.00106508064, 0.00969285518, 0.0230018701, 0.00352769066, -0.0192861836, -0.00346686831, 0.0192198325, 0.00205275114, 0.00118050468, 0.0216084868, 0.013756888, 0.000656603894, 0.0178043321, 0.0160238985, -0.00522241974, 0.0153493248, 0.0103176655, -0.0160238985, -0.0117663415, 0.0100743771, 0.00338669354, -0.0165436529, 0.0179591533, 0.00576152606, -0.000953803537, 0.00127312029, 0.00293882075, 0.0138785327, -0.0108761247, 0.00737608038, 0.0153493248, -0.0159464888, -0.0137237124, -0.0228691678, 0.000202510462, -0.0148738055, 0.0259655733, 0.0058776415, 0.00601587351, -0.0107157752, 0.0116004627, 0.00137886812, 0.00327887246, -0.002001605, -0.00123165059, 0.010903771, -0.0107047167, -0.00302452478, 0.0123856226, -0.0163445976, -0.00353045529, 0.0360288918, 0.0135799507, -0.0196068827, 0.00114594656, -0.0228470508, 0.00729314098, -0.0244394876, -0.00642504171, 0.0124077396, -0.0185010228, -0.0234220959, 0.00561499968, -0.018335145, -0.0350999683, 0.00360510079, -0.000907495676, -0.00499018934, 0.0393685848, 0.0209781472, -0.0416024216, -0.0213320237, -0.00219789497, 0.0118879862, -0.00312681682, 0.00732631702, -0.00818888657, 0.0387493037, -0.0211772025, 0.00380415539, -0.0159796644, 0.0168643519, -0.0181471482, -0.00771889696, 0.00280058826, -0.00388709479, 0.0200492255, 0.0116115212, -0.00774654327, 0.00202786922, -0.00190622464, -0.00215504295, 0.00439026067, -0.00926157, -0.00118741626, 0.000128037747, -0.00106231589, 0.0093887439, -0.0223936476, -0.0246606581, -0.00149290985, -0.00185369642, 0.00499295397, 0.0110254157, 0.00393409375, -0.0169307031, 0.00234303903, -0.00740925642, 0.0161897782, -0.00231262785, -0.00486301538, -0.0227806978, -0.00370739284, -0.0253462922, -0.00901828147, -0.00644715875, -0.00984767545, -0.0285532828, 0.00221724762, -0.00208592671, 0.00700008823, 0.00171684637, -0.00385115435, 0.00617069425, -0.0100688478, -0.000416079507, 0.00410273764, 0.00826629717, 0.0147853363, 0.00465843175, 0.00781289488, -0.00836029556, 0.00896851812, 0.0145973405, 0.0121091576, 0.0152940322, 0.0124630323, 0.0140665285, 0.027513776, -0.0044317306, 0.000135467752, 0.00248127151, 0.00568964519, -0.0186779611, 0.00508695189, -0.0182135, 0.0222720038, -0.00265267957, 0.00383456657, -0.0135910092, -0.00959885772, -0.00453125779, 0.0129717281, 0.00211633788, -0.0133256027, 0.00450084684, 0.0181360897, 0.00740925642, -0.0308534708, 0.00505654095, 0.000405020925, -0.0164220091, -0.00291393884, -0.0308313537, 0.0379088521, -0.016333539, -0.00467778416, 0.01405547, -0.0110807084, 0.000997346709, 0.010903771, 0.0194741804, -0.00165049476, 0.0208122693, 0.00224351184, -0.0127726728, -0.0149290981, 0.00134154537, -0.00222692383, 0.00754748844, 0.0097813243, -0.0163777731, 0.00201957533, -0.012308212, 0.00338116428, 0.0172956362, -0.00389538892, 0.00709961588, -0.0139227668, 0.0110696498, -0.0175057501, 0.0212877877, 0.00711620366, -0.000825938536, 0.00626469217, 0.0124298567, -0.00770783843, 0.0117221065, 0.00875287503, -0.0073871389, 0.00778524857, -0.00208177976, -0.0159464888, -0.00742031494, 0.00842111744, -0.0178928, -0.000611678348, 0.0231345724, 0.00913992617, -0.0111470604, -0.00732078776, -0.0203256905, 0.00517265592, 0.019739585, 3.44717046e-05, -0.0216527227, -0.00542423921, -0.00942745, -0.026341565, 0.00874181651, -0.00333969458, -0.0153603833, -0.00932239275, 0.00841005892, -0.000629303, -0.00888557825, -0.0172735192, 0.0120870406, -0.000532194739, 0.0271820184, -0.00743690273, 0.0208786204, 0.0232451595, -0.019761702, -0.0163777731, 0.000381867, -0.00084529107, 0.00756960595, 0.0139670009, 0.0128943175, 0.0135799507, -0.0163888317, -0.00280197058, -0.00265267957, -0.00864781812, 0.0122418609, -0.0348566808, -0.00446490617, -0.00713279145, 0.0278676506, 0.00136988296, -0.0301457196, 0.0153825, -0.0218186, 0.00565094035, 0.0144535787, 0.000649692258, -0.0111470604, 0.0186669026, 0.0174283404, -0.000398800446, -0.00833264831, 0.0167869423, 0.0154156769, 0.0113792904, -0.00431285053, 0.0117663415, 0.0432833284, 0.000813497638, -0.00812806468, -0.034392219, -0.0118879862, -0.0232451595, 0.00733737554, 0.019208774, -0.00145973405, -0.0107047167, 0.0117442245, -0.00442896597, 0.00635316083, 0.00405850308, 0.0061098719, -0.000597509497, 0.015482028, 0.00543806236, -1.29808859e-05, -0.00163528917, -0.00188272516, 0.00756407669, -0.0301014856, 0.000815571111, 0.00783501193, 0.0018025504, 0.00324569666, -0.014331934, 0.00187581358, -0.00721020158, 0.0138674732, -0.0184899643, 0.00101186114, 0.0179259758, -0.00768019166, 0.0108208321, -0.000616862031, -0.00181637367, 0.00290840957, -0.0212877877, -0.0352990255, -0.0285311658, 0.00924498215, 0.00832159, -0.0118658682, 0.0047551943, 0.00464737322, -0.0115119936, -0.0227806978, 0.00635869, 0.0118658682, 0.0031931682, -0.000871555239, -0.000439579017, 0.0418899432, 0.00187581358, 0.00123165059, 0.0190760698, 0.00864781812, -6.96561665e-06, -0.00994167384, -0.0175499842, 0.00275497162, 0.0184678473, -0.00650245184, -0.0120980991, 0.015736375, -0.00690056104, 0.0204805117, -0.00484366296, 0.0222720038, 0.0232893936, -0.0155152036, 0.0071549085, -0.00911780819, 0.00411932543, -0.00730419951, -0.00561499968, -0.00225871732, -0.0063863364, -0.00698350044, -0.00618175277, 0.00207210355, 0.00336734112, -0.00620387, 0.00221171835, 0.0273589548, 0.0116778724, -0.0279340018, 0.00701667648, -0.00131182536, 0.0157695506, 0.0239971429, 0.0105443671, -0.018080797, 0.00473307725, -0.00511183403, 0.00443449523, 0.00273147202, -0.0135025401, -0.00817229878, 0.0154709695, 0.0057559968, 0.0110751791, 0.00338116428, -0.00319593283, 0.00254900544, 0.0204915702, 0.00630339701, -0.00962097477, 0.00265682652, -0.00807830133, -0.00279367669, -0.0168201178, -0.0169417616, -0.0169749372, -0.00528047746, -0.0127947899, -0.00212877896, -9.7626631e-05, 0.00996932, 0.00476625282, -0.0033562826, 0.00345857441, -0.0177048054, 0.00338392891, -0.00763595756, 0.00482984, -0.0178706832, -0.0232230425, 0.017782215, 0.0127284387, 0.000582995126, -0.02410773, 0.00247297762, 0.00751984213, 0.0115009351, -0.00162699528, -0.0127063217, 0.00298581971, 0.00593293412, 0.000123804391, 0.00451467, 0.01075448, -0.0152166216, 0.00245915423, -0.00957674, -0.0273589548, 0.0135025401, -0.0359625407, 0.0108595369, 0.0174283404, -0.0140775871, -0.0131376069, -0.0162340123, 0.008399, -0.00551823713, 0.00406403234, 0.00792348105, 0.0224157646, 0.0135578327, 0.00667386, 0.0170412902, -0.0375770926, -0.00862570107, 0.00209836778, 0.0163003635, -0.00179287419, -0.0274916589, -0.00816676952, 0.00304387719, 0.00325399055, 8.88143113e-05, -0.00459484477, -0.0108097736, -0.00222001225, 0.00355257257, -0.0191534795, 0.0216637813, 0.0119322203, -0.00340881082, 0.0144314617, -0.00644162949, -0.00330651877, 0.0092228651, -0.0138674732, 0.0161344856, 0.0136020677, -0.0255011115, 0.00583340693, -0.00891322456, 0.00299964286, -0.024085613, -0.0184457302, 0.00366592314, 0.0251251198, 0.00610434264, 0.0126952631, 0.00791242253, 0.0137458295, -0.0173066948, 0.00991955679, -0.00524730142, -0.014586282, 0.00192972424, -0.000317416125, -0.00874181651, 0.00883028563, -0.0206795651, 0.0106715411, -0.00426308718, -0.00512565719, -0.0236653853, 0.00366039388, -0.00672362372, -0.00459208, -0.0303005408, 0.0070719691, 0.000186613732, 0.0180697385, -0.000296162907, -0.0155594386, 0.00318487431, 0.00752537139, 0.0053191823, 0.0178043321, -0.0301678367, 0.00323187327, -0.0118437512, -0.0147632193, -0.00810041837, 0.0147742778, -0.000899201725, 0.00886899047, -0.00967073813, 0.014906981, -0.00374609791, -0.0261425097, -0.0215089601, -0.024616424, 0.000123199614, -0.0210334416, 0.0271377843, 0.00547123794, -0.00531365303, -0.00677338708, 0.0177490395, -0.00333416532, 0.0172624607, 0.0208122693, 0.0168975275, -0.00829394348, -0.00110724149, -0.00711620366, -0.0155152036, -0.0146305161, 0.00699455896, -0.0157584921, 0.00178596249, -0.0146747511, 0.0177048054, -0.0298139621, 0.0269166119, -0.0111415312, 0.0169749372, -0.00954909343, 0.0105664842, -0.0104835443, 0.00572282122, 0.00834370684, 0.0148185128, -0.00246883044, 0.030366892, -0.0201266371, 0.00775207253, -0.00257388712, -0.0273589548, -0.0208343863, 0.00667938916, -0.00650245184, 0.0172956362, 0.00651351037, -0.00846535154, -0.0177269224, 0.0174504574, 0.0402311571, 0.00259738672, 0.0138564147, 0.00200436963, 0.0125625599, 0.00114456424, 0.0103840176, 0.0100743771, -0.0215642527, -0.030964056, -0.0162229538, -0.000700492645, -0.00629233848, 0.0164773017, 0.0138232391, 0.0139780594, -0.0137347709, 0.0157806091, 0.00151917397, 0.0172514021, 0.0106826, 0.00669044768, 0.0216195472, 0.0307871178, -0.0230461042, -0.0141439382, -0.00530812377, -0.0127284387, 0.028685987, 0.00136435369, 0.00315446313, 0.00725996541, 0.00657433271, -0.00375715643, 0.0146194575, 0.00862570107, -0.0256338157, 0.021188261, 0.00534682907, 0.000870864082, -0.00299964286, -0.0138121806, -0.0239307918, -0.00197810563, -0.00533577055, 0.0222609453, 0.00105747778, 0.0274916589, 0.0115119936, 0.0212988462, 0.0225927029, -0.026960846, -0.00753090065, 0.00672915298, -0.0066296258, -0.00267065, -0.00111415307, 0.0276907124, -0.00721573085, 0.0316939242, -0.0141549967, 0.0163777731, 0.0117663415, 0.0201376956, 0.00560394116, 0.0143208755, -0.00549888471, -0.00678997533, 0.0105056623, 0.0254568774, 0.0273810718, -0.00332863606, 0.00583893619, -0.0242625494, 0.0209228545, -0.00995826162, -0.0284205806, 0.00111760886, 0.00642504171, -0.00097108254, 0.00413867785, -0.00590528781, 0.00179840345, -2.95471746e-05, 0.00294158538, -0.00641398318, 0.0153161492, -0.00848193932, 0.00321252085, 0.00123026827, -0.0112244701, -0.0103342533, 0.00256974017, 0.0103674298, 0.0186669026, -0.0035138675, -0.0271599013, 0.00137748581, 0.00252965279, 0.0135246571, 0.0101186112, -0.0146636926, -0.00507312873, -0.0046722549, 0.00402532751, -0.0252578221, -0.00104641926, -0.00485748611, -0.00532747665, -0.00303281867, -0.00960991625, 0.0264521502, -0.000709132175, 0.000836305961, -0.0225484688, -0.000758895825, -0.0236211512, 0.00621492835, 0.0107489508, 0.0144978138, 0.0284648146, 0.0233778618, -0.0287744552, -0.0213099066, 0.00137126539, 0.00108097726, -0.02001605, -0.00736502185, 0.00474413577, -0.00348622096, 0.0146305161, -0.00890216604, -0.00737055112, 0.0112797637, 0.0128943175, -0.00147079269, -0.00393685838, 0.0175278671, -0.00551823713, -0.0151502704, -0.00765807461, 0.011478818, -0.00342539861, 0.00226977584, 0.00754748844, 0.0053413, 0.0112023531, 0.00489895605, 0.0141439382, -0.0221724752, 0.0222720038, -0.00620387, -0.00521689048, 0.00957121048, 0.00797324441, -0.00573387975, -0.0138564147, 0.00485748611, -0.0103950761, 0.0114014074, -0.00536065223, -0.0243289, 0.00419397093, -0.0104890736, -0.00840453, -0.0201598126, -0.0111138849, -0.0134693645, 0.0143761691, -0.00418291241, 0.00932239275, -0.00592187559, -0.000946200744, -0.00122543017, 0.00275082467, 0.00744243199, -0.00565094035, 0.00822206307, 0.00538553391, 0.0222720038, 0.00514777424, 0.0102734314, 0.0179812703, 0.00942191947, -0.00314616924, -0.0069890297, -0.0299687833, -0.00497913081, -0.0354317278, 0.00246744812, 0.00293052662, -0.0092228651, 0.00789583474, -0.00344198663, 0.019805938, 0.00518647954, 0.0175610427, 0.00213845517, -0.00481325202, 0.00322634401, 0.00253379974, 0.0284205806, -0.0108097736, -0.00502889464, 0.000929612841, -0.0176163353, 0.0198833477, 0.0175168086, -0.000852202706, 0.0139670009, -0.0215753112, 0.00335904723, 0.00727655319, 0.0147411022, 0.00947721303, 0.00774101401, 0.00226286426, 0.00267065, 0.00735949259, 0.00188825454, -0.0264963843, -0.00376545032, -0.00597716868, 0.00700561749, 0.00158414326, -0.00506207, -0.000810041849, -0.00242597843, 0.0118105756, 0.00214536674, 0.00764701609, -0.0133587783, -0.00151917397, -0.00520583196, 0.0117331659, -0.0262752138, 0.00630892627, -0.00692267809, -0.0064692758, -0.00717702601, -0.0089076953, -0.00538829854, 0.00967626739, 0.00810594764, -0.0122308023, 0.0247270111, 0.0197285265, 0.00382627267, -0.00562329357, -0.0509137549, -0.0226479955, -0.000372881885, -0.0165547114, -0.00017970211, 0.00284482259, 0.00832159, 0.0167095326, 0.0253241751, -0.00492660236, 0.0011003298, -0.000986979343, 0.000292188721, 0.00178043323, 0.00292223273, -0.0140775871, 0.00222415919, 0.0147521608, -0.00751431286, 0.00640292466, 0.00532194693, -0.00274806, -0.00278123585, 0.0173398722, -0.0156700239, -0.0115783457, -0.00664068433, 0.0041082669, -0.0191092454, -0.00526941894, -0.00509248115, 0.00972050149, 0.000174172819, 0.00675127, 0.0154377939, 0.0289071575, -0.0228249319, 0.00782395341, 0.00103466946, 0.0146305161, 0.00470543047, 0.0013857797, -0.0201708712, -0.0141439382, -0.0131376069, -0.00124132691, -0.0276907124, 0.0152829736, -0.0241519641, -0.00796771515, -0.00665727211, -0.0233115107, 0.0228912849, -0.00454231631, 0.0251030028, -0.00188963686, -0.0231788084, 0.00425202819, 0.0152166216, -0.00609328412, 0.00673468225, -0.0348566808, 0.00847641, 0.0354317278, -0.00895745866, -0.00640292466, 0.00609328412, 0.0273810718, -0.0143761691, -0.00942745, -0.0347018614, -0.00102084619, -0.00885793194, -0.00580023136, -0.00277847121, 0.0228912849, -0.00835476629, 0.0203699246, 0.0037129221, 0.00879710913, 0.0211772025, -0.000540834211, 0.000834232487, -0.0107489508, 0.0104614273, -0.0212435536, 0.029194681, -0.00613751821, 0.0118658682, -0.019142421, 0.0012447827, -0.0154046174, -0.00214951369, 0.00930027571, 0.00910675, 0.0134472474, 0.00606563734, -0.0058776415, -0.00191313634, 0.0115009351, 0.00328440173, -0.00615963526, -0.00677891634, 0.0121865682, 0.0213541407, 0.00700008823, -0.0176716298, -0.0268060248, -1.30024846e-05, 0.0139006497, 0.0204805117, -0.00151779165, -0.000620317878, -0.0222720038, 0.00544635626, 0.00046791666, 0.0282436423, -0.000758895825, 0.00812253542, 0.0160238985, -0.00815018173, 0.0040695616, 0.00365486438, 0.0155152036, 0.000832159, -0.0104890736, -0.00516712666, -0.00973709, 0.00754195917, -0.00205413345, 0.0174725745, -0.00954909343, -0.0129164346, -0.00240662601, -0.00373503915, -0.0044759647, -0.00533577055, 0.0135578327, 0.00616516452, 0.00746454904, 0.010455898, 0.00563988183, 0.00401703315, 0.00208316208, 0.00960991625, -0.014309817, 0.00721020158, 0.00409720792, -0.00162699528, 0.0255232286, 0.00249094772, -0.00952144712, 0.0122197438, -0.0132592516, -0.0244616047, -0.0021412198, 0.0209339131, 0.00488789752, -0.00161731895, 0.00381244929, 0.0233778618, -0.00823865086, -0.00570623297, -0.0125957355, -0.00387327163, -0.00285588135, -0.00955462269, -0.00241215527, 0.00249509467, 0.00473031262, 0.00867546536, -0.00971497223, 0.00616516452, -0.00789030455, -0.0132703101, 0.00358574837, -0.0245058388, 0.0142545244, 0.0180697385, 0.0161676612, 0.0141771138, 0.00983661693, -0.0048381337, -0.0221724752, -0.0094661545, -0.00918968953, -0.008155711, 0.0234884489, -0.0223936476, 0.00506759947, 0.0066296258, -0.0110751791, 0.0130712548, 0.0172845777, -0.00465013785, -0.00932239275, 0.00967626739, -0.00252688816, -0.016798, -0.0202814564, 0.00505377632, -0.00154958514, 0.00822759233, -0.00727655319, -0.0168643519, 0.0173841063, 8.56608895e-05, -0.00273561897, -0.000922010047, 0.0283321105, -0.0120759821, -0.00467501953, 0.00663515506, -0.0121865682, 0.0139559424, -2.47306398e-05, -0.00710514514, -0.0139006497, 0.0143872276, -0.0259876903, 0.00256421091, 0.010008025, -0.0130270207, -0.0333748274, -0.00225042342, -0.00235133292, -0.0101517867, 0.0322468542, -0.0122197438, -0.00937768538, 0.0172624607, -0.00141826435, -0.0133034857, 0.01610131, -0.00108166842, 0.0198501721, -0.0283099934, 0.0120980991, -0.0109922402, -0.00217854255, 0.000745072612, 0.0250587687, 0.00243150769, -0.000468262238, -0.0105941305, 0.00828841422, 0.0026374741, 0.0028365287, 0.0134030124, 0.00779630709, 0.0169749372, -0.00430179201, 0.00302176015, -0.00952697638, 0.019783821, -0.00138232391, 0.0121976268, -0.0156257898, -0.0105388379, 0.0116225798, -0.00223245309, 0.00965415, -0.00104641926, -0.0105333086, -0.00186890201, -0.000693581, 0.0258992203, 0.00952144712, 0.0272926036, 0.0123856226, -0.00665727211, -0.00696138339, -0.0180255044, 0.00226562889, 0.00515883276, -0.00360510079, -0.00819994509, -0.00645268802, 0.0111470604, 0.020591097, -0.00079552742, 0.022957636, -0.00314893387, -0.0123192705, 0.0317381583, 0.0123966811, 0.00347792706, 0.00451190537, 0.0198833477, -0.0173619892]
|
10 Jan, 2025
|
Variable Length Arrays (VLAs) in C
10 Jan, 2025
In C, variable length arrays (VLAs) are also known as runtime-sized or variable-sized arrays. The size of such arrays is defined at run-time.
Variably modified types include variable-length arrays and pointers to variable-length arrays. Variably changed types must be declared at either block scope or function prototype scope.
Variable length arrays are a feature where we can allocate an auto array (on stack) of variable size. It can be used in a typedef statement. C supports variable-sized arrays from the C99 standard. For example, the below program compiles and runs fine in C.
Syntax of VLAs in Cvoid fun(int size){ int arr[size]; // code}Note: In C99 or C11 standards, there is a feature called flexible array members, which works the same as the above.
Example of Variable Length ArraysThe below example shows the implementation of variable length arrays in C program
C
// C program to demonstrate variable length array
#include <stdio.h>
// function to initialize array
void initialize(int* arr, int size)
{
for (int i = 0; i < size; i++) {
arr[i] = i + 1;
}
}
// function to print an array
void printArray(int size)
{
// variable length array
int arr[size];
initialize(arr, size);
for (int i = 0; i < size; i++) {
printf("%d ", arr[i]);
}
}
// driver code
int main()
{
int n;
printf("Enter the Size: ");
scanf("%d", &n);
printArray(n);
return 0;
}
Output
Enter the Size: 51 2 3 4 5 Explanation: The above program illustrate how to create a variable size array in a function in C program. This size is passed as parameter and the variable array is created on the stack memory.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C
|
https://www.geeksforgeeks.org/variable-length-arrays-in-c-and-c/?ref=next_article
|
Pandas
|
Variable Length Arrays (VLAs) in C
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0553882904, 0.00700718537, -0.0228425227, 0.0121741, 0.0167940799, 0.0218902156, -0.0101086209, 0.00509935198, 0.0039668777, -0.012457218, 0.00440442422, 0.013306574, -0.0209636446, 0.010198704, -0.00149602443, 0.0253777206, -0.026690362, 0.0216070954, 0.00790158287, -0.00254002423, 0.0473322794, -0.0353640877, -0.0437032171, 0.0199212544, 0.0268705282, 0.00662754895, 0.0121419271, -0.019457968, -0.0580650494, 0.00896327756, 0.0662497506, 0.00653424859, -0.0422104076, -0.0420045033, -0.0155329155, -0.024052212, 0.0249401741, 0.0246699248, -0.0116464691, -0.0206933953, 0.00345211639, -0.0123735694, -0.00456528738, -0.0143360961, -0.00805601105, -0.00340064033, 0.00909840222, -0.0110030184, -0.0441407636, -0.0365737751, -0.0162149742, 0.00967750791, 0.0223148931, 0.00693640532, 0.0391218401, -0.00216521369, 0.0215942264, 0.0137312515, 0.00933647901, -0.0260983873, 0.0173731856, -0.00588114513, -0.000789434358, -0.055903051, 0.00718091708, -0.0395079143, -0.0303709041, 0.0147350356, 0.0399712, -0.00653746584, -0.00537603581, 0.0216328334, -0.0195995271, 0.0183126256, -0.0327645428, -0.0101922695, 0.0165495686, 0.00855790265, -0.0102437455, 0.0346948951, -0.0274367649, 0.0123092243, -0.0170771983, -0.0144133102, -0.0249530431, 0.00305800256, -0.00410521962, -0.0298304036, 0.00610313611, -0.0135639543, -0.0262399465, 0.0310143549, 0.0266131479, 0.012457218, 0.0163050573, 0.0209893826, -0.00707153045, 0.013345181, -0.0205647051, 0.0138213346, 0.0103853047, 0.0378864147, -0.0237176158, -0.00856433716, -0.00641842699, -0.00921422336, -0.00316256331, -0.00423391, -0.0384011753, 0.00932361, 0.00278614438, -0.0208349545, 0.00506717945, 0.0268190522, -0.0100957518, 0.0138213346, 0.0238205679, -0.0652202293, -0.0112346606, 0.0395593904, 0.0100700138, 0.0108292857, -0.0205132291, -0.00337168504, -0.0203201938, 0.0281059556, 0.0267933141, 0.0111896191, -0.00373523496, -0.00979332905, -0.0183769707, -0.0128111159, 0.0308599267, -0.0167426039, 0.0139500247, -0.0185700059, 0.023074165, -0.0117815938, -0.000156439113, 0.00459424267, -0.0399197228, 0.0191748496, 0.0285949782, 0.0167168658, -0.00064827723, -0.00149119843, 0.00255289325, 0.0326873288, -0.0123027898, -0.00887319446, 0.00268801791, -0.0203588, 0.0322755203, 0.00406339532, 0.0405116975, -0.00875737239, -0.0230226889, 0.0355442539, 0.0442951918, -0.027513979, 0.00623504352, 0.034566205, -0.038143795, 0.00452989759, -0.027513979, 0.00878311, 0.0234988425, -0.0148251187, 0.00964533538, 0.0203974079, 0.00580393104, 0.0457365215, 0.0306797605, -0.00108180253, -0.000819998328, -0.0162149742, -0.0175404828, 0.0169742461, 0.0277198832, -0.00283601182, -0.0166782588, -0.0211180728, -0.024914436, -0.00294700707, 0.0187244341, 0.0415412188, 0.0435230471, -0.0455048792, 0.0366509892, -0.0590430945, -0.0083519984, 0.0146063454, 0.0140787158, 0.00326229841, 0.0139628937, 0.00738682132, -0.0510900356, -0.00554976799, -0.00869946182, 0.021311108, -0.00516691431, -0.00740612485, -0.0239363909, 0.0339227542, 0.00332986074, 0.00475510536, 0.0140529778, -0.00627365056, 0.0327130668, 0.0300363079, -5.95192505e-05, 0.01600907, -0.032893233, -8.56091938e-05, 0.00718735158, -0.02222481, -0.0223663691, 0.00909196772, 0.0167683419, -0.0179008171, -0.0113826543, -0.00197378709, 0.0322240442, -0.0167812109, -0.0571384802, -0.0404859595, 0.0224049762, -0.01600907, -0.0567266718, 0.0374746062, 0.00633156113, 0.00665328698, -0.0185313988, -0.0455820933, 0.0289810486, -0.0117751593, 0.0316578075, -0.0344889909, -0.0030660457, 0.046174068, -0.00861581322, 0.022250548, -0.0526343212, -0.0140915848, 0.0211952869, 0.00205100118, -0.0283375978, -0.0101279244, -0.0148508567, 0.000536075386, 0.0238463059, 0.00180648966, -0.000360533828, -0.0237304848, -0.0549764819, 0.0156873446, -0.0219159536, -0.0153527493, -0.0133837881, -0.0198183022, -0.0184670538, 0.0363421328, -0.00534064602, 0.00362263108, -0.00177592575, -0.0238076989, 0.0201271586, -0.00408913335, 0.0224821903, -0.0483618043, 0.00207834784, -0.0455048792, 0.0252747685, -0.00642486149, 0.0164594855, 0.04972592, -0.0394049585, 0.0203459319, 0.00860937871, -0.00792088639, 0.0140143707, -0.0321210921, 0.006013053, 0.0170385912, -0.0172702335, -0.00165527861, -0.0393534824, -0.0304995943, -0.00774715422, 0.0278485734, -0.044475358, 0.00338777131, -0.0104303462, 0.0201014206, 0.0488250889, -0.0139500247, -0.073816739, -0.00549507467, 0.00237594405, 0.00806244556, 0.0099734962, -0.032918971, -0.00131987955, 0.0061385259, -0.0253262445, -0.0493655875, -0.0339999683, -0.0317350216, 0.00816539768, -0.0177206509, -0.0212210249, 0.00716804806, -0.0181581974, -0.021272501, 0.00831982587, 0.035621468, 0.0394307, -0.0148251187, -0.0176820438, 0.011556386, -0.00729673821, 0.026664624, -0.0100249723, 0.0305253323, 0.0272051226, -0.0285949782, -0.00990915112, -0.00603879103, -0.0186086129, -0.0218902156, -0.00859651, -0.0175533518, -0.077162683, 0.0185571369, 0.0110802324, -0.0147350356, 0.0014710906, 0.00940725859, -0.0396108665, -0.0375003442, -0.0112346606, -0.0176820438, 0.00038727728, -0.0252232924, 0.00797236245, -0.0212210249, -0.059454903, -0.00933647901, 0.0138728106, -0.0183512326, 0.000619724102, 0.0318379737, 0.0203588, -0.0289038345, 0.007116572, 0.0017324927, -0.034566205, 0.0208220854, 0.0309114028, -0.0118588079, -0.0170128532, 0.0225207973, -0.0479242578, -0.0209250376, -0.0158546418, -0.0318637118, 0.0131521458, -0.0238076989, -0.0295730233, -0.0334594697, -0.0162407123, 0.0176691748, 0.0259310883, -0.00127564231, 0.0164080095, -0.00451059407, 0.0102308765, -0.0286979303, -0.0098898476, 0.0277970973, -0.0097482875, 0.0432656668, -0.0273595508, -0.000541303423, -0.013370919, -0.0105783399, -0.0380665809, -0.00478084339, 0.0506524891, 0.0105268639, 0.0145291314, 0.0193936229, -0.0280802175, -0.014194537, -0.00564306835, -8.99323786e-05, -0.0046264152, 0.00705222692, -0.0242581163, -0.0183898397, 0.00997993071, 0.025699446, -0.0126052117, -0.0247085318, 0.00737395231, 0.0410007201, -0.0420302413, 0.0185828749, 0.0367796794, -0.0135510853, 0.00430468936, 0.00601948751, -0.0443209298, -0.0153913563, 0.0315548554, 0.0249273051, -0.000635810371, -0.00378992851, -0.0119360229, 0.0171801504, 0.0221990719, 0.00554011622, -0.00761202956, 0.0346948951, 0.0370370597, 0.0208864305, -0.0480272099, 0.0124507835, -0.0353898257, 0.0118523734, -0.0287236683, 0.0570355281, -0.0060967016, 0.0237690918, -0.0125022596, -0.0279257875, 0.0118588079, 0.0336396359, -0.0210022517, -0.0103145251, -0.0218516085, 0.0460453779, -0.0164208785, -0.000266026909, -0.0398167707, -0.0160734151, -0.00285048946, 0.0206933953, 0.0143103581, 0.00554011622, -0.0468947329, 0.0102759181, -0.0334852077, -0.00710370298, 0.0467917807, -0.0116142966, 0.0306282844, -0.0228553917, -0.0367282033, -0.0091627473, -0.00240489934, -0.0184155777, 0.00595192472, 0.000426286511, 0.0235245805, 0.00725813117, -0.038143795, -0.0110673634, -0.0177592579, -0.0265874099, 0.00786941, -0.0232414622, -0.0291354768, 0.0164723545, -0.0206547882, -0.015095369, 0.00404730905, -0.0237819608, -0.0108485892, -0.0633670911, 0.0176176969, 0.0149666779, -0.02486296, 0.0296759754, -0.0144004412, -0.0164723545, -0.00347463717, 0.0188402552, 0.0118716769, 0.0140272398, 0.0407948159, 0.0421846695, 0.0312459972, -0.0441150256, -0.0110544944, -0.0060548773, -0.0165881757, 0.0421589315, -0.0146063454, 0.0661468, -0.0213497151, 0.00794019, -0.00624147803, 0.0172831025, -0.0483360663, -0.0229583438, -0.0172187574, 0.00953594875, -0.00746403541, -0.0303194281, -0.0123156589, -0.0216971785, -0.015043892, 0.0054789884, 0.0156616066, -0.0329704471, -0.0225336663, -0.0702134073, -0.0035003752, 0.00355185149, 0.0139757628, 0.0258281361, 0.010668423, -0.0155329155, -0.0143875722, 0.0043626, 0.0265874099, -0.00951664522, 0.0242709853, -0.0123478314, -0.0308856647, 0.00905979518, -0.0239749979, -0.00476475712, -0.0193164088, -0.000116323936, 0.0144519173, 0.0286464542, -0.0124765215, 0.0119488919, 0.00638303719, 0.0161248911, 0.00264297635, -0.0144261792, 0.00256254501, 0.014194537, -0.0459939, 0.00890536699, 0.00990271661, -0.0349265374, 0.0210537277, 0.00465537049, -0.00356150325, 0.00271053868, -0.0288266204, 0.0260855183, -0.0157388207, 0.00622860901, -0.0150052849, -0.0207191333, 0.0181067213, -0.00300170062, 0.0493141115, 0.00239363895, 0.000477360474, -0.0121354926, 0.0434715711, -0.00206547882, -0.0371914878, 0.012470087, 0.0012989674, -0.0258667432, 0.00626721606, -0.0288266204, 0.0350294895, 0.0138084656, 0.0105654709, -0.00498353085, 0.00240489934, -0.01243148, -0.024888698, -0.00374810398, -0.000647472916, 0.00198987336, -0.00105043431, 0.0161248911, -0.0153141422, 0.011112405, -0.00402478827, -0.00117349438, -0.0132422289, 0.00569454441, -0.0085128611, 0.0181195904, -0.0147865117, 0.0164980926, -0.019470837, -0.00096437271, 0.0193678848, -0.0237690918, 0.00231481623, 0.0404602215, -0.0118652424, 0.000292770361, 0.00467145676, 0.0227653086, 0.00602913927, -0.0184155777, -0.00344246463, 5.71063065e-05, -0.0369598456, -0.0181839354, 0.023048427, 0.0146964286, -0.00906623, 0.000891180127, -0.00963246636, 0.00996062718, -0.0274367649, 0.0206933953, 0.00532777701, -0.00505752768, -0.0196638722, -0.0245541036, -0.00813966, 0.00793375541, -0.0215942264, -0.00268962653, -0.00103595667, 0.00287461886, -0.000488218706, -0.0487221368, 0.00178718613, 0.0147736426, -0.0260469113, 0.000477360474, -0.000694525312, 0.0215170123, -0.0264329817, 0.0279000495, -0.0369083695, -0.0140015008, 0.0143360961, 0.0426994301, -0.0134352641, -0.0330219232, -0.0176176969, 0.00124266546, -0.0199984685, -0.00214912742, 0.0529174395, 0.000224805815, -0.0167297348, 0.0135768233, -0.00902762264, 0.0199598614, 0.017836472, 0.0219931677, 0.0136025613, -0.00900831912, -0.048052948, 0.00882171839, -0.0224178452, -0.00508004846, -0.0116529036, -0.0517077483, -0.00234859739, 0.0081782667, 0.021272501, 0.0158031657, -0.0279515255, -0.0160734151, -0.0102180075, -0.00101504452, 0.0288266204, -0.000860616157, 0.0201657657, 0.0414897427, 0.00642807875, 0.0301392619, 0.00949090719, -0.00240811659, 0.00673050107, 0.00441407645, 0.024039343, -0.0210794657, 0.00483231945, -0.0198955163, -0.0136282993, 0.0040923506, -0.0348235853, 0.00518300058, 0.040048413, 0.00575245498, 0.0237948298, -0.0384526514, 0.0243095923, 0.0107778097, -0.00178075163, -0.00337811955, -0.000834878127, -0.0105590364, -0.0169356391, -0.0137441205, -0.0141430609, 0.00981263258, -0.00202365452, -0.0237562228, -0.0385041274, 0.0279257875, -0.00282475143, 0.00139628944, 0.0148508567, -0.000763696327, 0.0136025613, 0.0201528966, -0.017810734, 0.0166782588, -0.0291869529, -0.0335109457, 0.0207320023, -0.0118845459, -0.0179522932, -0.0107842442, 0.0223148931, -0.018685827, 0.00970324595, -0.000446394377, -0.0191748496, 0.00148798118, -0.0234216284, -0.0101086209, -0.00821043923, 0.00645381678, 0.00182257593, 0.00339742308, 0.00584575534, 0.0227781776, -0.0326101147, 0.00301778689, 0.000802303373, -0.0100828828, -0.0191105045, -0.0184670538, -0.032893233, 0.00628330233, 0.0200113375, -0.00693640532, 0.012000368, 0.0483103283, -0.03729444, 0.0334079936, 0.03201814, -0.00629295409, 0.0137055134, -0.00416634744, 0.0156873446, -0.0254806727, 0.00744473189, 0.0468947329, -0.0027057128, 0.0172831025, 0.0198440403, -0.000461676333, 0.0146449525, -0.0205904432, 0.00723882765, -0.0105847744, 0.00518943509, -0.0103595667, 0.0330734, 0.000724687066, -0.000382652477, -0.0147092976, -0.0101729659, -0.00306926295, -0.0177721269, 0.00841634348, 0.0526857972, -0.0262528155, -0.054152865, 0.00584253808, -0.00667259051, 0.0171930194, -0.00896971207, -0.0367539413, 0.0288780965, -0.00764420209, 0.0518107, 0.00143409218, 0.0335366838, -0.0112153571, 0.02222481, 0.0182225425, 0.0173474476, -0.0275911931, -0.0162793193, 0.0162921883, -0.0341286585, -0.0161377601, 0.033742588, -0.0122062722, 0.00452024583, -0.00442051096, -0.0146835595, -0.000278292719, -0.0189560764, -0.00929787196, -0.010655554, 0.0021475188, -0.00749620795, -0.0232543312, -0.0016906684, 0.0193035398, 0.00342637836, -0.0101021864, -0.00830052234, -0.0355957299, 0.0410521962, 0.0304481182, 0.00252554659, -0.00130620622, 0.0127403364, -0.0117172487, -0.0241165571, -0.0254034586, 0.00999923423, 0.0274110269, 0.00115097361, 0.0159447249, 0.00629617134, -0.0349522755, 0.0136926444, 0.0150052849, -0.0048709265, 0.00330734, 0.0196252652, -0.00210730312, 0.0216199644, 0.0375775583, 0.000144273858, -0.00962603185, -0.0215556193, -0.0247471388, -0.00896327756, 0.00735464878, -0.00878954493, 0.0135124782, -0.0214140601, -0.0205518361, 0.0245541036, -0.00968394242, -0.00389931514, -0.00821687374, 0.0290067866, 0.0136797754, -0.0168198179, -0.0294185951, -0.0182096735, -0.0375518203, -0.0233572833, 0.0214655362, 0.00717448257, -0.0123735694, 0.02486296, -0.00785010681, -0.0162793193, 0.000273868965, 0.0273852888, -0.00586184161, 0.0103209596, 0.0474352315, 0.0410007201, 0.00255450187, -0.00178879476, 0.0188273862, 2.51348183e-07, 0.0190847665, 0.0152884042, 0.0251975544, 0.025750922, -0.0131457113, -0.0152240591, -0.0132293599, 0.00039954306, -0.0191748496, -0.0449643806, -0.0285435021, 0.0288780965, -0.0259439591, 0.0115756895, -0.0182611495, -0.0150696309, 0.00879597943, 0.0289295726, 0.0266131479, -0.00137698592, -0.000580312684, -0.0215427503, 0.029341381, -0.00904692616, 0.0069235363, -0.036496561, -0.013332312, 0.00694284, 0.0183383636, 0.0103981737, 0.0234473664, -0.0515533201, 0.00291483453, 0.0154170943, 0.0169356391, -0.00592618668, -0.0483618043, 0.0175662208, 0.0119038494, -0.00665328698, 0.00714231, 0.0285692401, 0.0316578075, -0.00359367579, 0.0354155637, -0.0213368461, -0.000581117, 0.0114405649, -0.019535182, -0.0225465354, -0.0360847525, -0.013319443, -0.0371400118, -0.00452024583, -0.00156278245, 0.0351324417, -0.000242299648, 0.0152369281, 0.0199984685, -0.0177077819, -0.0181710664, -0.0428023823, -0.0200499445, -0.0352353938, 0.0223406311, 0.0415669568, -0.0137698585, 0.00240168208, 0.0130684972, -0.0159447249, -0.0248243529, 0.00905336067, 0.0250946023, 0.00961959735, 0.0452217609, -7.06288411e-05, 0.0109386733, 0.00243385462, -0.0427509062, -0.0010737594, -0.0170257222, 0.00821687374, 0.0183512326, 0.0314261653, 0.026690362, 0.0503693707, -0.000617311161, -0.00357758952, 0.0341543965, 0.0250431262, -0.00381566654, 0.0124958251, 0.00940725859, 0.0206419192, -0.00616426393, 0.0100314068, 0.0156744756, 0.0156229986, 0.0286207162, -0.0109837148, -0.0360847525, 0.0254549347, -0.00839060545, -0.0171672814, 0.0185056608, 0.00337811955, 0.0398682468, 0.0164980926, 0.0224821903, 0.0280030016, 0.024065081, -0.000949895068, 0.0237176158, -0.044707, 0.0138342036, 0.0234731045, -0.0145033933, -0.0282603838, 0.0332020894, -0.0140401088, -0.00951021072, -0.00588436238, -0.0442179777, -0.0148251187, 0.00786941, 0.0107520716, -0.011138143, 0.00487414375, -0.00296148472, 0.0196510032, 0.0610506646, -0.0214140601, -0.00059921405, -0.0124893906, -0.0432141908, 0.00505752768, -0.000251951424, 0.0144905243, 0.00844851602, -0.0231385101, 0.0304481182, 0.0389159359, 0.0063476474, 0.0165367, -0.0272051226, -0.0465858765, -0.00875093788, -0.00237594405, 0.0063058231, 1.32837513e-05, 0.0182611495, 0.0219931677, -0.029315643, 0.0110802324, -0.0135253472, 0.011125274, 0.0100121032, -0.00665972149, -0.00996706169, 0.0219931677, -0.0245541036, 0.0161377601, 0.00408913335, 0.00718735158, 0.0164980926, 0.000146284641, 0.00417278195, 0.0116336, -0.00431112386, -0.0206676573, -0.0344117768, -0.0173474476, 0.0278485734, 0.023087034, -0.0158289038, 0.00673050107, -0.00690423278, -0.00758629153, -0.0143360961, 0.000857398903, -0.00963246636, -0.00592618668, -0.00263493322, 0.00387035985, -0.0271279085, -0.00616748119, -0.0246570557, -0.0247342698, -0.00623826077, -0.0108035477, 0.0134481331, -0.0112346606, -0.00348428893, 0.00448807329, 0.0127918124, -0.0137312515, -0.000711818051, -0.0122963553, -0.0289295726, -0.0190590285, 0.0144390482, -0.00492240256, -0.0324042104, -0.0243095923, -0.021272501, -0.00443338, 0.00314004254, 0.00730317272, -0.0322755203, 0.00602592202, -0.00102952216, 0.0113118747, -0.0349008, -0.00999923423, 0.00633799564, -0.00148235098, -0.0119488919, 0.00353254797, -0.00742542837, 0.000250141718, 0.0465601385, 0.0148894638, -0.0161248911, 0.0244125444, -0.000776967499, 0.00838417094, 0.0174761377, -0.010224442, 0.0123478314, 0.0262528155, -0.00178075163, -0.000218974543, -0.00271536456, 0.00440442422, -0.0237304848, 0.0127210328, -0.0108357202, -0.00787584484, 0.017797865, -0.0241937712, -0.0172058884, 0.015996201, 0.00544359814, 0.0103917392, 0.0291869529, -0.0330991372, -0.00745760091, -0.0207062643, -0.053380724, -0.0119810645, 0.00768924365, -0.0281059556, 0.0311687831, -0.0209507756, -0.0172058884, 0.0278743114, 0.0442694537, 0.00900188461, -0.012470087, 0.00698788138, -0.0202429798, -0.0273338128, -0.0317607597, 0.0100700138, 0.0158160347, 0.00241133384, 0.00146304746, -0.0131907528, -0.011582124, 0.00213947566, -0.0102051385, -0.00567524089, 0.00905979518, 0.0188788623, -0.0244640205, 0.00307248021, -0.013332312, 0.00516369706, -0.00817183219, -0.0264072437, 0.00555941975, 0.00276684086, -0.00873806886, -0.00680771517, -0.019496575, -0.00557550602, -0.0214011911, 0.0132422289, -0.00719378609, 0.000172625936, 0.00676267361, 0.00053929264, 0.00240811659, 0.0227653086, -0.0213754531, -0.000511141669, -0.00652137958, 0.00151291501, 0.0161248911, -0.0259825662, 0.0237819608, 0.0028649671, 0.0188145172, 0.0294443332, 0.00828765333, -0.0171158053, -0.0135510853, 0.0191105045, -0.00574602047, 0.000740371179, 0.00158932479, 0.00485162297, 0.00651494507, 0.0217872616, 0.00379958027, -0.0122641828, 0.0271279085, -0.00170514605, 0.00332986074, -0.0169099011, -0.029084, -0.00549507467, -0.00735464878, -0.0235245805, -0.0130427592, -0.0231899861, -0.018685827, -0.0159575939, -0.00196735258, -0.0136025613, 0.00496744458, -0.00539533934, -0.0159575939, -0.0362391807, -0.00761846406, -0.0136797754, 0.0209250376, 0.0112797022, 0.00448163878, 0.00562054757, -0.0376290344, 0.00815896317, 0.0144133102, -0.0239235219, 0.0043851207, 0.0135124782, -0.0262656845, 0.0366252512, 0.00908553321, 0.018634351, 0.011923153, 0.00153865304, 0.0351324417, 0.0156358685, -0.00146224315, -0.00898901559, 0.0146320835, 0.00857077166, -0.0251975544, -0.00433364464, 0.0140658468, 0.0193292778, 0.00549829192, -0.00768924365, -0.025699446, 0.0269992184, 0.00441729371, -0.000719459, 0.00495135831, -0.00506717945, 0.0159061179, -0.0232028551, 0.00846138503, 0.0118330698, 0.0261756014, -0.0361619666, 0.0234859735, 0.00156358676, -0.00591010042, -0.00776002323, 0.0049867481, -0.00712300651, 0.0146063454, 0.0288008824, -0.00853859913, -0.00787584484, -0.0201014206, -0.0475896597, -0.00506074494, 0.0237562228, 0.0270249564, 0.00235020602, -0.00552403, -0.00306121982, 0.00626721606, 0.0046199807, -0.000824422052, -0.0112089226, 0.0383754373, 0.0121033201, -0.0348750614, 0.00875093788, 0.0299333557, 0.00815252867, -0.0126180807, -0.00944586564, -0.00226173154, -0.0116336, -0.0121033201, 0.00911770575, 0.00498031359, 0.00887319446, 0.0236661397, -0.00806244556, 0.0247214, -0.0233444143, 0.00833912939, -0.000414623966, -0.0229197368, -0.0385298654, -0.0217743926, -0.00875093788, -0.0141173229, -0.00310304412, -0.014542, -0.0123542659, -0.0156873446, -0.0174761377, -0.00729673821, -0.00687849475, -0.00150487188, -0.00610313611, 0.00317221507, -0.014246013, 0.0165238306, 0.0253262445, -0.00748977344, 0.0288266204, 0.0365480371, 0.00908553321, 0.0107392026, -0.00341350934, -0.0275654551, -0.0203588, 0.00121129712, -0.0125473011, -0.0229712129, -0.00472936733, -0.00633477839, 2.89804448e-05, -0.0303451661, -0.0113826543, 0.00567845814, 0.0128432885, 0.000692916685, 0.0154299634, 0.0454019271, -0.0106233815, -0.0160991531, -0.000517978333, 0.0269734804, -0.0221990719, -0.0107585061, -0.0111574465, 0.0352353938, -0.000294982223, -0.00609348435, 0.00763133308, -0.013319443, 0.00229068683, 0.00736108329, 0.00419208547, -0.000323133223, -0.0042178235, 0.00676267361, -0.00808174908, 0.00741899386, 0.0223535, 0.00187244336, -0.0217615236, 0.0206161812, 0.00378671126, 0.000796271, 0.0236532707, 0.000450013787, 0.00119762379, -0.00823617727, -0.0155843915, 0.0131650148, -0.00561089581, 0.00353576522, 0.0343345627, -0.000543716364, 0.00842277799, 0.00366445538, -0.0252104234, 0.000259592402, 0.0136411684, 0.00925926492, 0.000587953662, -0.0169099011, -0.0123349624, -0.0308341887, -0.00592618668, -0.023074165, -0.00936865155, -0.00920135435, -0.00802383851, 0.00735464878, 0.00263654185, 0.0162535813, 0.0134481331, 0.00739325583, 0.00825548079, -0.0065825074, 0.00356472051, 0.00271214731, 0.0100121032, -0.000302422122, -0.00978046, -0.0129977176, 0.0157902967, -0.00263493322, -0.0267161, -0.00997993071, -0.0190847665, -0.000744794903, -0.0254163276, 0.0308856647, -0.000785010634, -0.0136926444, -0.0160734151, -0.00947803818, 0.00529882172, 0.0155457845, -0.0140529778, -0.00224081939, -0.0207963474, -0.0116915107, -0.0242581163, 0.00845495053, -0.00412452314, 0.013345181, 0.0237176158, -0.0156358685, -0.00229229545, -0.00207352196, -0.00857077166, -0.0208092164, -0.00848712306, -0.00825548079, 0.00376097299, 0.0190976355, 0.0219416916, -0.0119102839, 0.00506717945, 0.00896327756, -0.00543716364, 0.00372880045, -0.0147607736, -0.0191491116, 0.0108871963, -0.0164466165, 0.00575245498, -0.0131071042, 0.0162407123, 0.00397331221, 0.012457218, 0.00919492, 0.0133966571, -0.011569255, -0.00904692616, 0.00171479781, -0.00277488399, 0.0138470726, -0.0025738054, -0.0161248911, -0.0144776553, 0.00688492926, 0.0154943084, 0.0167940799, -0.0295215473, 0.02222481, 0.0279000495, 0.0449901186, -0.0402285792, -0.0242066402, 0.00100941432, 0.0294958092, 0.00514117628, -0.0105847744, -0.0244511515, 0.0313232131, -0.0150052849, 0.00185474847, -0.016897032, 0.0364193469, -0.00912414, -0.0226494875, -0.0376032963, -0.00655355211, 0.00130781485, -0.000142263074, -0.00840347447, 0.000438351242, 0.0286464542, -0.0144004412, 0.0309886169, -0.00114775635, -0.00914344378, 0.03029369, 0.0152369281, 0.00440442422, 0.040923506, 0.0338970162, -0.00386392535, 0.0042596478, 0.024052212, -0.0112475296, -0.0231513791, 0.00620608823, -0.0146706905, 0.0122834863, 0.0139628937, -0.0154943084, 0.00228425232, -0.0460453779, -0.0137955965, 0.00520873861, -0.026664624, 0.0147221666, -0.0131264077, -0.0366252512, 0.0023727268, -0.0294958092, -0.0239106528, -0.0101086209, 0.00808818359, -0.00273145107, -0.0257895291, -0.00253519835, 0.00716161355, 0.0137441205, -0.0105847744, -0.0238463059, -0.0102308765, -0.0144647863, -0.00747690443, 0.0131199732, -0.0367282033, -0.00103434804, -0.00293574668, -0.00587471062, 0.00750907697, 0.00738682132, 0.00507683121, 0.00220221211, 0.00503822416, -0.0166653898, 0.0363163948, 0.00483231945, -0.0068398877, 0.0118073318, -0.016858425, -0.0216971785, -0.00334594701, -0.00709726848, 0.00980619807, 0.00287461886, -0.00354863424, 0.0185056608, -0.00937508605, 0.00381566654, -0.00723239314, 0.020461753, 0.000716643932, 0.00672406657, -0.0139114177, 0.00918205082, -0.0118459389, 0.0136540374, -0.0152755352, 0.00236629229, 0.00382853555, 0.0104110427, 0.0087252, 0.0190718975, 0.0012571431, -0.00311269588, -0.000870267919, -0.0118845459, 0.0234602354, 0.00595514197, -0.0106877265, -0.000808335724, -0.016897032, -0.0152755352, -0.0271536466, 0.0147350356, 0.000459263392, -0.00380601478, 0.0201528966, 0.00528917, -0.013332312, -0.00211856351, 0.0223663691, -0.0115370825, 0.025699446, -0.00620287098, -0.00819757, -0.011163881, -0.0158546418, 0.0063058231, -0.016832687, 0.00182901043, -0.00618035, -0.0161892362, 0.0132164909, 0.0275654551, 0.0179008171, 0.0172959715, -0.00563019933, -0.0159189869, -0.00124668702, -0.011530648, 0.00274432, -0.00460389443, 0.00804957654, 0.00295665883, 0.0126888603, 0.0162149742, -0.053329248, -0.0137955965, -0.010668423, -0.00960029382, -0.000898418948, 0.00531490799, 0.00458780816, 0.00226816605, 0.0208349545, 0.00427895132, -0.0049191853, -0.00170192879, -0.0366767272, -0.000900831888, 0.0121741, 0.0121033201, 0.00272019044, -0.0197282191, 0.0126245152, -0.0126888603, 0.00631869212, -0.00111236656, -0.00731604174, -0.0264329817, -0.0105847744, 0.0150696309, 0.00678197714, -0.00385749084, -0.0274367649, -0.00307569746, 0.023074165, -0.0198183022, 0.0306025464, 0.00359367579, -0.00145178707, 0.00493527204, 0.00308534922, 0.0100828828, -0.0261884704, 0.0214397982, -0.0268962663, -0.0170771983, 0.0119038494, 0.0173603166, -0.0110351909, 0.0154557014, 0.0018032724, -0.0120647131, -0.0126631223, 0.000423471414, -0.013345181, -0.000276080857, -0.0115628205, 0.0127660744, 0.00480014691, 0.00196735258, -0.0121612307, -0.000161968768, -0.00976115651, -0.00630904036, 0.00678197714, 0.0172573645, 0.021323977, 0.0271536466, 0.00857077166, 0.00749620795, -0.0173345786, -0.0134481331, 0.00744473189, 0.00260758656, 0.00467145676, -0.0273595508, 0.0130942352, -0.00539212208, -0.00216843095, 0.028492026, 0.0145677384, 0.0180166382, 0.0152884042, -0.0165367, -0.00765707111, -0.00436581718, -0.0118073318, -0.0203201938, 0.0052795182, -0.000723882753, 0.0350294895, -0.0303451661, 0.00794662442, 0.00113006146, -0.01243148, 0.0149666779, -0.0120325405, -0.00467467401, -0.0316320695, -0.0147350356, -0.00914987829, -0.025686577, -0.0167426039, -0.00729673821, -0.0081782667, 0.0100700138, 0.00488379551, -0.00665328698, 0.00205100118, -0.0130684972, 0.0102308765, 0.00305639394, 0.000367370492, -0.00493527204, 0.00448485604, -0.0309114028, 0.00444946624, 0.00583610358, 0.00491596805, 0.00109547586, -0.0127596399, 0.00626078155, 0.0143103581, 0.0083455639, -0.0140015008, -0.00636051642, 0.0282861218, -0.0127532054, 0.00761846406, -0.0111767501, 5.66036106e-05, -0.0103273941, -0.00416956469, 0.0129333716, -0.0172959715, 0.0124250455, -0.0362906568, -0.000525619311, -0.00307408883, 0.0104753878, -0.0457879975, 0.00611278787, 0.0220575128, 0.0116657726, 0.0166010447, 0.00563663384, -0.00889249798, -0.00257863128, -0.0165753067, -0.00481623318, 0.0118073318, -0.00691066729, -0.03371685, 0.00721308962, 0.029341381, -0.0102823526, -0.00836486742, -0.0156487375, -0.0127339019, -0.0215041433, -0.00261080381, 0.00501248613, -0.0351839177, -4.16735274e-05, 0.00926569942, -0.0364193469, 0.010655554, 0.016884163, -0.00211052038, 0.0129398061, 5.63522626e-05, -0.0177463889, -0.0106748575, 0.0136154303, 0.00115016929, 0.0375260822, -0.00101745746, 0.00230194721, -0.0170385912, -0.00551437819, 0.0140658468, 0.0141173229, -0.00676267361, 0.00576854125, 0.00878954493, -0.0040505263, -0.00480658142, 0.0111445775, -0.046971947, -0.00521195587, -0.0126695568, -0.0259439591, 0.00876380689, 0.0213754531, 0.00997993071, 0.0147607736, -0.0266131479, -0.0124121765, -0.0155843915, -0.0129462406, 0.0169742461, -0.00545003312, -0.0166010447, 0.0325586386, 0.00604200829, -0.0172702335, 0.00384783908, -0.0217229165, 0.00833912939, 0.0184027087, 0.0316063315, 0.0139757628, 0.00426608231, -0.0193936229, -0.0259182192, -0.0125473011, -0.004459118, -0.00352611346, -0.0137441205, 0.0161506291, -0.0159704629, -0.0192391947, -0.0103145251, 0.0167426039, -0.00533742877, 0.0119038494, -0.00867372379, -1.74309971e-05, -0.00322208251, 0.00203008903, -0.0134996092, -0.00575567223, -0.00475510536, 0.00723239314, -0.00781793427, -0.0137827275, 0.00652137958, 0.00940082408, -0.00112523558, 0.0124507835, -0.0342830867, -0.00027326573, 0.0154685704, 0.00798523147, -0.00290518277, -0.0105719054, -0.0253133755, 0.00898901559, -0.0136154303, 0.00567202363, 0.00893110503, -0.0187115651, 0.0182354115, 0.0326873288, 0.0176949129, 0.000823617738, -0.00902762264, 0.0309886169, 0.00449129054, 0.00850642659, 0.0051540453, 0.00676910812, -0.00186922611, 0.010263049, -0.0079273209, -0.0107263336, -0.0235889256, -0.0149152018, 0.00594870746, -0.0103788702, -0.00141398434, -0.000213143256, -0.00903405715, 0.0218130015, 0.00283762044, -0.0100893173, 0.0273595508, 0.00321725663, 0.00869946182, -0.0183512326, -0.00120727555, 0.0121226236, 0.0132550979, 0.00160862831, 0.0221089888, 0.0209636446, -0.00143972237, 0.0105204294, 0.000545727147, -0.00117751595, 0.0130170211, -0.00104963, -0.0268447902, -0.00376419048, -0.00911770575, -0.0216843095, -0.0276684072, 0.010616947, 0.010642685, 0.00262849871, 0.00741899386, -0.00271214731, 0.00255932775, -0.0024386805, 0.0169742461, 0.0496744439, -0.00416634744, 0.00629617134, -0.0169099011, 0.00743829738, 0.00383175281, 0.0205260981, 0.00413095765, 0.00968394242, 0.0199856, 0.00517656608, -0.00569776166, 0.00680771517, -0.00781149929, 0.00864798576, -0.00356472051, 0.00204134942, -0.0192906708, -0.0108164167, -0.00382853555, -0.00157323852, -0.013332312, -0.0292384289, 0.0102308765, -0.0108164167, 0.00631547486, -0.0354155637, -0.0188145172, 0.00902118813, 4.05675964e-05, 0.0172316264, 0.0265101958, 0.0295730233, 0.00283601182, 0.00316095469, -0.0123928729, -0.0114276959, -0.0211695489, -1.12541147e-05, -0.0227910466, -0.00117671164, -0.00260597793, 0.0189560764, 0.014233144, -0.0109129352, 0.00290196552, 0.00788871385, -0.0284148119, 0.0220317747, -0.0136669064, 0.00328481919, -0.00305639394, 0.0256608389, -0.0210794657, 0.0121419271, 0.00404087454, 0.00822974276, -0.00902118813, 0.0111960536, 0.00484840572, -0.0237562228, 0.00619321922, -0.00142846198, 0.0270506945, -0.0177206509, -0.0172316264, -0.0162278432, -0.0124765215, 0.0157388207, 0.00433686189, -0.00134561758, 0.00343603012, -0.00120968849, 0.015108238, 0.00635729916, 0.00429825485, -0.00537281856, -0.0200499445, 0.021298239, -0.0116593381, 0.00115982105, 0.0199984685, 0.004459118, 0.00109145429, 0.0210279897, -0.00750907697, 0.014542, 0.00506396219, -0.00330734, 0.00216843095, -0.0180295072, 0.0167683419, 0.0111317085, -0.0007620877, 0.0234859735, -0.00594227295, -0.00301135238, 0.00713587552, -0.00998636521, -0.0029084, -0.00927213393, 0.021298239, 0.0310143549, -0.00619965373, -0.0272051226, -0.0191105045, 0.0164337475, -0.00267997477, 0.0121934032, 0.00242098561, 0.00303548179, 0.00497387908, 0.034566205, 0.00741899386, -0.00283762044, -0.0126116462, 0.00808818359, -0.0100571448, -0.00629938859, -0.00632190937, 0.00247407053, -0.0218773466, -0.0043851207, 0.0123349624, -0.000313280383, -0.0260726493, -0.0157259516, -0.0134996092, 0.0140401088, -0.00970324595, -0.0100185378, -0.0132293599, -0.000345050794, -0.0359303243, 0.0054049911, -0.0322497822, -0.0207706094, 0.00437868619, -0.0067498046, 0.00539533934, 0.017836472, -0.00706509594, -0.0221218579, -0.0100828828, -0.0146578215, 0.00623182626, -0.00530847348, 0.0123027898, -0.0247471388, 0.0305253323, -0.0120968856, 0.000368778041, 0.0282346457, 6.91207533e-05, 0.00197539572, 0.00321403937, 0.0157902967, -0.00636051642, 0.0170257222, -0.0289295726, -0.0153012732, 0.00936221704, -0.0140015008, 0.00153784873, 0.00408269884, -0.00734178, -0.00909196772, -0.0308084507, -0.0148122497, 0.00352289621, -0.00905336067, -0.0135253472, 0.00530203898, -0.00922065787, -0.00445590075, -0.00030021026, 0.0132036218, -0.0181195904, -0.00820400473, 0.000197459129, 0.0341286585, 0.00386070809, 0.00284888083, -0.00797879696, -0.00119038497, -0.0163822714, 0.0104753878, -0.00893753953, 0.00655998662, -0.0346434191, 0.0121998377, 0.0167812109, 0.0304995943, 0.0127982469, 0.00524091115, -0.0173989236, -0.00669189403, 0.00590366591, 0.01243148, -0.00573636871, 0.00166493037, 0.00781149929, 0.0134481331, -0.0058554071, 0.0261369944, 0.0198440403, 0.00715517905, -0.011530648, 0.0070329234, -0.014233144, 0.030267952, -0.011138143, 0.0152497971, 0.00442694547, 0.00774715422, -0.0100314068, 0.0215041433, 0.00889249798, -0.015133976, 0.0196896102, -0.00224242802, 0.0104046082, 0.00548220566, 0.00139628944, 0.0138985487, 0.0101472279, 0.00185153121, -0.0226237494, -0.00679484615, -0.0209765136, -0.0354927778, -0.00507361395, 0.00614174316, 0.000959546829, -0.0124829561, 0.0102180075, 0.0340771824, -0.0153398803, -0.0108743273, 0.0163951404, 0.00115821243, -0.0217872616, -0.00361619657, -0.00505752768, -0.00944586564, 0.0244125444, 0.00418886822, -0.0156487375, -0.0327130668, -0.0180037692, -0.00161908439, 0.00612565689, 0.0302164759, -0.00612243963, 0.0184413157, -0.0201142896, -0.00647955481, 0.0215556193, -0.0325586386, 0.00591331767, -0.0368311554, -0.00399905024, -0.00308213197, 0.0107713751, 0.00596157648, -0.00978689454, -0.00652781408, -0.0105847744, 0.00112121401, 0.00488701276, 0.00990271661, -0.00496744458, -0.0118137663, -0.0049127508, -0.010668423, 0.0129140681, 0.0083455639, 0.00124427408, -0.00303869904, -0.00637016818, -0.00890536699, -0.016021939, 0.000839704, -0.00825548079, -0.0138856797, 0.022237679, -0.00618356746, -0.0124636525, -0.0107778097, -0.0124250455, -0.00721308962, 0.0244382825, -0.00232125074, 0.0146835595, -0.0105011258, 0.0227910466, -0.0164208785, 0.00230194721, -0.0129591096, -0.000913700904, 0.0126245152, -0.0100249723, -0.00682058418, 0.0173088405, 0.00637982, -0.0159061179, -0.016047677, -0.00211534626, -0.016884163, -0.0306025464, 0.0107778097, 0.00184027082, 0.0225465354, -0.00222312449, 0.000236267297, -0.00671119755, -0.00864155125, 0.0182354115, 0.00346176815, 0.014271751, -0.00571063068, 0.00369019341, 0.0200242065, -0.0412581, -0.000589562289, -0.00761202956, -0.0100249723, 0.018660089, 0.0227524396, -0.0198955163, -0.00184348808, 0.00799810048, -0.0113118747, 0.000421862787, -0.00369019341, 0.000858203217, -0.00291483453, 0.0232672, 0.0029084, 0.0131521458, 0.0108357202, -0.00251911208, -0.016884163, -0.0287751444, -0.00633477839, -0.00322690839, 0.0108035477, -0.00604522554, -0.0121934032, 0.00747690443, 0.0144261792, 0.0252747685, -0.0247085318, 0.00221829861, -0.00151130639, 0.0165624376, -0.0170771983, -1.63501991e-05, 0.00477119163, 0.00305156806, -0.000948286441, 0.00532777701, -0.0125151286, 0.00655676937, 0.00206226157, -0.00546290213, 0.00770854717, 0.0136926444, 0.0199341234, -0.00963890087, -0.00853859913, -0.0119102839, -0.00468432577, -0.0137441205, -0.00580714829, 0.0100893173, 0.0136025613, -0.0151725831, -0.0146835595, 0.0199469924, -0.0166396517, -0.0150052849, 0.020487491, -0.0118202008, -0.00871233083, -0.00628651958, 0.0145806074, -2.8402344e-06, -0.00846782, 0.0097482875, 0.00541786, 0.00624147803, -0.00955525227, 0.00359045854, 0.0150825, 0.00018438902, 0.0154042253, -0.00579427928, 4.56951e-05, 0.0148894638, -0.000304633984, -0.00864798576, 0.0106619885, -0.00878954493, -0.011582124, 0.0238849148, 0.0126309497, 0.0183126256, -0.00409556786, -0.0152626662, 0.0107713751, 0.00211856351, -0.0158546418, -0.00991558563, -0.0176176969, -0.00221669, -0.0101150554, 0.0293671191, 0.0113183092, -0.0029663106, 0.0112539642, 0.0155329155, 0.00587792788, -0.00526986644, 0.00883458741, 0.00846138503, 0.0253133755, -0.0127853779, 0.0164594855, 0.00417278195, -0.0145806074, 0.00956168678, -0.0301392619, -0.0101214899, 0.00413739216, -0.000980459, -0.00100861, 0.00353898248, -0.00354541698, -0.024065081, 0.00506074494, 0.00035168638, 0.0126180807, 0.000764500641, 0.0078436723, -0.0046682395, 0.0149280708, 0.0108485892, -0.00382210105, 0.000665167812, 0.00355506875, 0.00685919123, -0.0208606925, -0.00411165413, 0.00910483673, -0.00221025548, -0.013306574, 0.00933647901, -0.0107713751, -0.0200885516, -0.0019625267, 0.00155071774, 0.0134481331, -0.00430468936, 0.0108807618, -0.00781793427, -0.00741255935, -0.035621468, -0.0129977176, 0.014271751, -0.00990271661, 0.00427251682, -0.0027394942, -0.00651816232, 0.00693640532, 0.00817183219, -0.0181324594, -0.00161667145, 0.0256093629, 0.014207406, -0.0084292125, -0.00596479373, -0.0195737891, 0.0047872779, 0.00194322306, -0.00554011622, -0.0346691571, 0.0152369281, -0.0359560624, 0.0155972606, 0.0237304848, -0.0221604649, 0.000618115475, 0.00563985109, -0.0182225425, 0.00670476304, -0.00503178965, -0.00776645774, 0.0173603166, 0.0125794737, -0.00070699217, 0.0176434368, -0.0188659932, -0.0243868064, 0.0137569895, 0.0181324594, -0.00169388566, -0.0172573645, -0.00752194598, 0.0167297348, 0.015031023, -0.00268962653, -0.0144647863, -0.00857720617, -0.00889893249, 0.0159575939, -0.0238849148, 0.0188273862, -0.000940243248, -0.00711013749, 0.0049964, 0.00485484, 0.0124893906, -0.00453311484, -0.0019335713, 0.0158803798, 0.00396044319, 0.0146192145, 0.00125070859, 0.00230838172, -7.11818066e-05, 0.00360654481, -0.00442051096, -0.00682058418, 0.0107713751, -0.0006494837, -0.010642685, 0.0379893668, 0.0159833319, 0.00611922238, -0.00252232933, 0.00263815047, 0.000285732618, 0.0282861218, 0.0079273209, -0.0236532707, 0.0065406831, -0.0138084656, 0.0166396517, -0.00981263258, 0.0146192145, -0.00702005439, 0.00866085477, -0.0211438108, -0.0132937049, -0.0119939335, -0.00173892721, -0.00869946182, -0.0289810486, 0.00446876977, -0.0110158874, -0.0074511664, 0.0140787158, -0.0116786417, -0.0043626, -0.0174375307, 0.00118314615, 0.00310626137, -0.0143875722, 0.00223277626, -0.00158208597, -0.00701362, 0.00633156113, 0.0083519984, -0.0194064919, -0.011099536, 0.00246120128, 0.0021056945, 0.00750264246, -0.0488250889, 0.012836854, 0.0288523585, 0.00633156113, -0.00970324595, -0.000474947534, 0.0297017135, 0.00505752768, 0.0298818797, 0.0228553917, 0.0185957439, 0.0217743926, 0.00866085477, 0.0206676573, -0.0184799228, -0.0248243529, 0.00737395231, -0.000144474936, 0.0133966571, -0.00821687374, 0.00987697858, -0.0232028551, 0.0184541848, -0.00187887787, 0.0203459319, 0.029315643, 0.00471649831, -0.00168745115, -0.00510256924, 0.0317864977, 0.0152111901, 0.0198440403, 0.0211180728, 0.00397009496, -0.00965820439, 0.0027234077, -0.00567202363, 0.00646025129, -0.00685919123, -0.0136669064, 0.00633799564, -0.0104174772, 0.00211534626, -0.0158417728, -0.00229068683, 0.0074511664, 0.0344375148, 0.021272501, 0.0169485081, 0.0370885357, -0.0128175505, 0.00926569942, 0.002657454, -0.0119681954, -0.0250946023, 0.0138728106, 0.00396366045, -0.006666156, 0.0268705282, -0.000489425205, 0.00720665511, -0.024901567, -0.0122127067, -0.016884163, -0.00265584537, 0.00047052381, -0.00352289621, 0.000647472916, 0.015095369, -0.0103531322, -0.0221604649, -0.0192906708, 0.000748816528, -0.00808174908, 0.00468110852, 0.0145934764, -0.013319443, 0.0118008973, -0.00871876534, 0.00205582706, 0.00297113648, 0.00770211266, -0.00126357761, 0.00568489265, -0.00516048, 0.00749620795, 0.00807531457, -0.00876380689, 0.0157774277, -0.0255964939, 0.0357501581, 0.00571063068, 0.0148122497, -0.000115218005, 0.00145661295, -0.00100700138, -0.00550794369, -0.0128690265, -0.00337811955, -0.00943299662, 0.00133918307, -0.0030242214, 0.0198054332, -0.000426286511, 0.0214912742, -0.0287236683, -0.0336138979, 0.000939438934, 0.00763133308, 0.0252104234, 0.0157645587, 0.0101086209, -0.00270249555, -0.0225207973, 0.00385749084, 0.0146449525, 0.000826835, 0.0147736426, -0.00675623911, 0.00226012291, -0.00154428324, -0.00878311, -0.00995419268, 0.014271751, 0.00744473189, 0.00469397753, 0.00493848929, -0.0187373031, 0.0114405649, -0.007271, 0.00489023, 0.0072838692, -0.000803107687, 0.013345181, -0.0131071042, -0.017797865, 0.0130041521, 0.0187373031, 0.0108421547, 0.0131521458, -0.0116078621, -0.00631869212, 0.00639590621, -0.0163179263, 0.00528917, -0.00277810125, -0.0170385912, 0.0119810645, -0.00405374356, -0.00174375309, -0.0189174693, -0.00693640532, -0.0189303383, 0.0334852077, 0.00418565096, -0.0015836946, 0.017849341, -0.0137055134, 0.0117622903, 0.00102308765, -0.00538568757, -0.00557872327, 0.00676267361, 0.000198464521, -0.0162664503, 0.00794662442, -0.0114212614, -0.0172573645, 0.00960672833, 0.0154428324, 0.0105332984, -0.00687206024, 0.00633477839, -0.00396044319, -0.000877506798, 0.000388081593, 0.000932200113, -0.00330412271, 0.00217003957, 0.0125022596, 0.0083519984, 0.00388001162, -0.00558515778, -0.00402478827, 0.000612887379, -0.0122384448, -0.00560124405, -0.0198697783, -0.0108292857, 0.00332342624, 0.023048427, 0.0205389671, 0.00179362064, 0.0222891551, -0.00761202956, -0.00823617727, -0.00227942644, -0.00389288063, 0.0161506291, -0.0176305659, 0.00987054408, -0.0169742461, 0.00940082408, -0.00275075459, 0.00835843291, -0.00416634744, 0.0369341075, 0.00560767855, 0.00707796495, -0.0148379877, 0.0173345786, -0.00558837503, -0.00839060545, 0.0192906708, -0.0129076336, -0.0020879996, -0.00264941086, 0.0283375978, 0.0118008973, 0.0114469994, -0.0114148268, -0.00267997477, 0.00104239117, 0.0180037692, 0.008435647, 0.00620287098, -0.00431755837, 0.0238720458, 0.0135639543, 0.0109258043, -0.00294378982, 0.0145934764, 0.00520552136, -0.0203974079, 0.00963246636, -0.0132550979, 0.00429182034, -0.000324540772, -0.00678197714, -0.0164980926, 0.00671119755, 0.0126566878, 0.00394757418, -0.00904049166, 0.0206805263, -0.00108904135, 0.0133837881, -0.0150825, 0.0163565334, 0.00437225169, -0.0279515255, -0.00286979298, -0.0182611495, 0.00385749084, -0.0020638702, -0.00223599351, -0.0214655362, -0.0081010526, -0.00610313611, -0.015146845, -0.00869946182, -0.00961959735, 0.00938795507, -0.00447198702, 0.00944586564, 0.00761846406, 0.00360654481, -0.0167554729, -0.00695570884, -0.00786297582, -0.00180648966, -0.00381888379, 0.00525699742, -0.00905979518, -0.017797865, 0.00913700927, -0.0223020241, 0.00704579242, 0.00561411306, -0.000952308, -0.0138084656, -0.00489988178, -0.00435294816, 0.0136154303, -0.0209893826, -0.0042596478, 0.00158771616, -0.0143875722, 0.00257058814, 0.0198311713, 0.012457218, -0.00168101664, -0.0037255832, -0.0140015008, 0.00637660269, -0.00291805179, -0.000797879649, -0.00972254947, 0.0189946834, -0.000870267919, -0.0034585509, 0.0108099822, 0.00713587552, -0.0153913563, 0.0125987772, 0.0017501876, 0.000289955264, -0.0179394241, -0.00133274856, 0.00459424267, -0.0273080748, 3.81043828e-05, -0.0141816679, -0.000206306591, 0.0089118015, 0.0094523, -0.00419208547, -0.00463284971, -0.0120904511, -0.0281574316, -0.0116400346, -0.000518782646, 0.0120647131, -0.015159714, 0.0151854521, -0.00280383928, 0.0383754373, 0.0334852077, -0.0143747032, 0.0203588, 0.00625434704, 0.00479692966, -0.0384526514, 0.011138143, 0.0136025613, 0.00370306242, 0.000725893537, -0.0126502533, 0.00427573407, 0.0262142085, -0.00641842699, 0.00996706169, -0.0192649327, -0.00604522554, -0.00122336182, -0.0112925712, 0.0200370755, -0.00363871735, 0.00417278195, -0.00478406064, -0.0399969369, 0.00017343025, -0.00783723779, -0.0253905896, 0.00968394242, -0.00126599055, 0.0224049762, 0.0155071774, -0.0224821903, 0.00217808271, -0.000893593067, -0.0157645587, -0.00438190345, -0.0118459389, -0.0100121032, 0.00991558563, -0.0114019578, -0.00271858182, -0.0202558488, -0.00530203898, 0.0314004272, -0.00055618328, -0.0247214, 0.00209765136, 0.0201915037, 0.0218001325, -0.000784206321, 0.00675623911, -0.00316095469, -0.0405374356, 0.0294958092, 0.0175533518, 0.00230033859, -0.0306025464, 0.000807531411, -0.00330734, 0.0220446438, -0.0182868876, 0.00799810048, -0.00107456371, 0.0112153571, 0.00745760091, 0.00707796495, -0.00680128066, 0.0151983211, -0.0182611495, 0.01243148, 0.0228167847, 0.0276684072, 0.0106619885, -0.0313232131, -0.0197024792, -0.000102550061, 0.0265616719, 0.0165881757, 0.0187115651, -0.000344648637, -0.0280030016, -0.0177077819, 0.00741899386, -0.00900188461, -0.0164337475, -0.00748977344, 0.0122641828, 0.0131521458, -0.00212821527, 0.0242838543, 0.00145017845, 0.0126824258, -4.00397657e-05, -0.00741255935, 0.00200274237, 0.00938795507, -0.0105075603, 0.0112153571, -0.00349715794, 0.00488701276, 0.0360075384, 0.023048427, 0.00427251682, -0.00176305673, 0.0200885516, 0.0191619806, 0.00534708053, 0.0264072437, -0.00452024583, -0.0246313177, -0.0187887792, -0.00146706903, -0.00568167539, -0.00862868223, 0.0261627324, -0.0200885516, -0.0189174693, -0.0116464691, -0.00723882765, 0.0123156589, 0.00687206024, -0.00418243371, 0.0201142896, 0.00127564231, -0.0166525207, -0.00565272, 0.000756457506, 0.0047518881, -0.0410007201, 0.00346498541, 0.00649242429, 0.00648920704, -0.0144261792, -0.00682701869, -0.00911770575, -0.00313521666, 0.0203716699, 0.0165238306, 0.0228682607, 0.00524412841, -0.0082619153, -0.00649564154, -0.0238591749, -0.0150696309, 0.0375003442, 0.00330412271, 0.00519265234, 0.00945873465, -0.00538247032, 0.00212660665, -0.0154428324, -0.00905979518, 0.0166525207, -0.0197668262, 0.0299590938, -0.0188145172, 0.00527308369, 0.0027990134, -0.00779219577, 0.0162921883, -0.00916918181, -0.0149152018, -0.0172831025, -0.0021893431, -0.000140754986, -0.0233572833, 0.0132036218, 0.00723882765, -0.00068608, -0.00357758952, -0.0189946834, 0.0223792382, -0.0127467709, 0.0121547962, -0.00635729916, -0.0217615236, 0.00294539845, -0.00710370298, 0.00685275672, -0.00145741727, 0.00741899386, 0.0137312515, -0.0103466976, 0.00649242429, -0.0348750614, 0.0175147448, 0.00192552817, 0.0147736426, 0.0148379877, 0.0190204214, -0.0103660012, 0.00873806886, 0.00842277799, 0.00596801145, 0.0201142896, -0.0177463889, -0.0055208127, -0.00134320464, 0.0144261792, -0.00704579242, -0.00131987955, -0.00442372821, 0.0087252, -0.0325586386, 0.0254163276, 0.0096646389, 0.00999923423, 0.00477440888, 0.000696536095, 0.00706509594, 0.0127853779, -0.0175790899, -0.0118008973, 0.00627365056, 0.00662111444, 0.00815252867, 0.00973541848, 0.0327388048, 0.0187501721, 0.0125666047, 0.0023550319, 0.0282089077, -0.0112603987, 0.0137441205, -0.0292126909, 0.000223197188, -0.00626078155, 0.0068334532, 0.0239235219, -0.00237594405, 0.00217486545, -0.00654711761, -0.00727743469, 0.0282861218, 0.00535673229, 0.0302164759, -0.00799810048, 0.038143795, -0.0210665967, 0.00329286233, 0.00982550159, 0.0131264077, 0.0279515255, -0.0123735694, -0.00217486545, 0.00316899782, 0.00473580183, -0.00534386327, 0.00929143745, -0.0115113445, 0.00275236322, 0.0098898476, 0.00222795038, -0.00360976206, 0.0126373842, 0.0190847665, 0.0125473011]
|
18 Dec, 2024
|
How to pass an array by value in C ?
18 Dec, 2024
In C programming, arrays are always passed as pointers to the function. There are no direct ways to pass the array by value. However, there is trick that allows you to simulate the passing of array by value by enclosing it inside a structure and then passing that structure by value. This will also pass the member array by value.
Let’s take a look at an example:
C
#include <stdio.h>
typedef struct {
int arr[5];
} S;
void f(S s) {
// Modifying the first element
s.arr[0] = 100;
printf("Inside function: arr[0] = %d\n", s.arr[0]);
}
int main() {
// Structure that encloses the array
S s = {{1, 2, 3, 4, 5}};
// Pass the structure s by value
f(s);
printf("Inside main: arr[0] = %d", s.arr[0]);
return 0;
}
OutputInside function: arr[0] = 100
Inside main: arr[0] = 1Explanation: In this example, the array is stored inside a structure S, which is passed to the f() function by value. As the structure is passed by value, the function modifies the copy of the array inside the structure, but the original array is left unchanged in the main() function, demonstrating how the array is passed by value.
By Copying the ArrayThe other method to simulate this pass by value behaviour for array is to first create a copy of the array and pass it to the function or just pass the original array and create a copy in the passed function.
C
#include <stdio.h>
#include <string.h>
// Function that takes array
void f(int *arr, int n) {
// Create a copy
int cpy[n];
memcpy(cpy, arr, n * sizeof(int));
// Modify the array elements
cpy[0] = 100;
printf("Inside function: %d\n", cpy[0]);
}
int main() {
int arr[5] = {1, 2, 3, 4, 5};
f(arr, 5);
printf("Inside main: %d", arr[0]);
return 0;
}
OutputInside function: 100
Inside main: 1Explanation: In this code, we create a copy of the original array using memcpy() and pass the copy to the f() function. The function modifies the copied array, leaving the original array unchanged, effectively simulating passing the array by value.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?
|
https://www.geeksforgeeks.org/pass-array-value-c/?ref=lbp
|
Pandas
|
How to pass an array by value in C ?
|
array::fill() and array::swap() in C++ STL, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0443606302, 0.00740996609, -0.0172109548, 0.013067985, 0.020219015, 0.0348846875, -0.00948145147, 0.000909029332, -0.0243068933, -0.0221362412, -0.0375511758, -0.0319537595, 0.013277337, -0.0186543837, 0.000345190114, 0.00534123601, 0.0087377, 0.0122415945, -0.00703533599, 0.0154259522, 0.0899112672, -0.031821534, -0.022808373, 0.0117237233, -0.00917293224, -0.00163212081, 0.00492804078, 0.0157454889, -0.0251443014, -0.0312706083, -0.00363887195, 0.00304111629, -0.0247696713, -0.026907267, 0.00202741078, -0.0319317207, -0.0392259918, -0.00663315924, -0.0325707942, 0.00300255138, -0.00690862304, -0.0055863983, -0.0187425315, -0.00644033495, -0.0104180267, 0.0365815423, 0.000764411, 0.00726121617, -0.00139728829, -0.00287032896, 0.00523105077, 0.0252985619, 0.0195028111, 0.0266428236, 0.0280531961, 0.0432367399, -0.0106273787, -0.0165608618, -0.044801373, -0.0479967482, 0.00898010749, -0.000851182, 0.0135417823, -0.0366696902, 0.0282515287, 0.0152276186, -0.0528008305, 0.0325267203, -0.00304111629, -0.0151284514, 0.00610977877, -0.0116686309, -0.0346422829, 0.0517430492, -0.0167922508, -0.0365815423, 0.0528008305, 0.0317774601, -0.0283396784, 0.0524482355, -0.0417161807, 0.0111177042, -0.0263783783, -0.00229598768, -0.0225108713, 0.0220480934, 0.0211225357, -0.0124729844, -0.00883686729, -0.0143240988, -0.0555334277, 0.00290063, 0.0284057893, 0.0121093728, 0.0168803986, 0.0255189314, -0.0127374288, 0.0167812314, -0.0126602994, 0.0420687757, -0.0332319066, 0.0221142042, 0.0153157664, -0.0281633809, -0.0115364082, -0.0137070604, 0.0331437588, 0.0222133715, 0.00282625481, 0.0202851277, -0.0110075185, 0.0110791391, -0.00807107892, -0.0194256809, 0.0327691287, -0.0269954167, 0.0388072878, -0.0280091222, -0.0156903975, 0.0247255974, 0.026488563, 0.0392921045, 0.0133875227, 0.00479857298, -0.0288906042, 0.0375952497, 0.0193044767, 3.38088321e-05, -0.028538011, -0.0280311592, -0.0520956442, -0.0271717124, -0.0176737346, 0.0213429071, 0.00454790145, -0.0320419073, 0.0104235364, 0.00588940829, -0.00883135758, -0.00772950379, -0.0127484472, 0.00144342834, 0.0124178911, -0.00836857874, 0.0120652979, -0.035854321, -0.00080228725, 0.0378376581, -0.000937264296, -0.0212657768, -0.0327250548, -0.0019254894, 0.0216955, 0.0167591944, 0.0340032056, -0.0537263863, -0.0183238275, 0.00994973909, 0.0209462401, -0.0449335948, -0.0216293894, -0.0341354273, -0.0583541729, -0.0176186413, -0.0101976562, -0.00294194953, 0.00557813467, -0.0119110383, -0.0102692768, 0.0245052259, -0.0135087268, 0.0104014995, 0.074088648, 0.0136299301, -0.0180593822, -0.0188416988, -0.000984781771, 0.00695820618, 0.0170897506, -0.0524482355, -0.00539081916, -0.00943737756, -0.0241746698, -0.0149301179, 0.0178390127, 0.0359645039, 0.000894567464, -0.0373748764, 0.0461456329, -0.0314909779, -0.0250120796, 0.00402452052, 0.0291330125, -0.01001585, 0.00815371796, 0.00741547532, -0.0524923131, -0.0253646728, 1.67537728e-05, 0.0304332, -0.0176957715, -0.00686454866, -0.0173982698, 0.0219489262, 0.00818126369, -0.000661112252, 0.0307196826, -0.0137511343, 0.0254528206, 0.0136078931, -0.0130349295, 0.010076452, -0.003570006, -0.0191722549, -0.00729427161, -0.0201529041, -0.030984126, 0.0326809809, 0.00276427553, -0.0129357623, -0.0275463425, -0.00854487531, 0.0563267618, -0.017519474, -0.0532856472, -0.0220591109, 0.0264004152, -0.00369396457, -0.0445589647, -0.010891824, -0.00817024522, 0.0345982052, -0.0183017906, -0.026091896, 0.0113821486, -0.0457489677, -0.0157675259, 0.0122085391, 0.00500792498, 0.0611308441, -0.0327911675, 0.0536382385, -0.0288685672, -0.0134205781, -0.0235135593, 0.040327847, -0.0234474465, 0.00767992064, -0.0380580276, -0.000399766315, 0.019965589, 0.00580126, 0.00453688251, 0.0113490932, -0.0217175372, 0.00939881243, -0.0345541313, 0.0156793781, 0.028978752, -0.0175745673, 0.00103711977, -0.0162633602, 0.00546243973, 0.0091949692, 0.0423111841, -0.0250561535, 0.0109799728, -0.00985608157, 0.00709593808, -0.00814269856, -0.0326589458, -0.0397989564, -0.019381607, -0.0306315329, 0.0440741479, 0.0366256163, -0.023645781, 0.0022849692, -0.00820881, 0.0204173494, -0.00544315716, -0.0340032056, 0.0230507795, 0.0310943127, 0.00969631318, -0.00744302198, -0.0398871042, 0.00128779153, -0.0498919375, 0.0116465939, -0.0210343879, -0.0564589836, -0.00955858082, 0.00477102678, 0.0737360492, -0.0077019576, -0.0478204526, -0.0156683605, -0.00235658954, 0.0472474881, -0.00625302, -0.0319317207, 0.0319757946, 0.0241305958, -0.0607341789, -0.00987811852, -0.00284002791, -0.0183128081, -0.0105392309, -0.0161201209, 0.0290448647, -0.0226761494, -0.033011537, 0.00332208886, -0.00272984267, 0.00993872061, 0.0131451152, 0.0446691513, -0.0204173494, 0.00568556506, -0.0116576124, -0.00809311587, 0.00583982468, -0.0186984576, 0.000256525323, -0.0115033528, 0.032945428, 0.0420247, -0.0208691098, -0.0490545295, -0.0449997075, -0.00159493322, -0.0406804383, 0.0261800438, -0.0181254931, 0.011101176, -0.0343778357, 0.0172329918, -0.0245052259, -0.00658908533, 0.0178830866, 0.00673232647, 0.0185882729, 0.0449335948, 0.0218497589, -0.0232491139, -0.0180814192, -0.00470491545, 0.0086054774, -0.0394684, 0.000581572182, -0.000123355974, 0.0179491974, -0.0251883753, 0.0220591109, -0.0351932086, -0.00441843364, -0.00650644628, -0.00743751274, -0.00771848531, 0.0500682332, 0.0106934905, -0.000126368846, 0.0228524469, -0.0025025853, -0.0236678179, 0.00325322314, -0.00889746845, 0.0122856693, -0.0244391151, 0.00891399663, 0.0149080809, -0.00303009781, -0.0125941876, -0.0063852421, 0.0100213597, -0.00362785347, -0.0368900634, -0.0117457602, 0.00542662945, 0.00361958938, -0.00835756, -0.0106494166, 0.00831899606, -0.0292652342, -0.012605207, -0.00466359593, 0.037044324, 0.0417822935, 0.0328132026, 0.000822258356, 0.0337607972, 0.0171338245, -0.0104290452, -0.00813719, -0.00145582424, 0.0221031848, -0.00153157662, -0.00681496505, -0.00540183811, 0.0326589458, -0.0158556756, -0.031755425, -0.0285159741, -0.0184891056, 0.0606901, -0.00154259522, -0.00443496136, 0.046101559, 0.0304111633, 0.0181144755, -0.00127883896, 0.0234915204, 0.0103464061, -0.00325597776, 0.0137290973, -0.0385648794, 0.0283396784, 0.00279182196, 0.0210564248, 0.0381461754, -0.00717306789, -0.00304938015, 0.0229846686, 0.0248137452, -0.0157785453, 0.0231168903, 0.00649542781, -0.018522162, 0.0294635687, -0.0733393803, 0.0213098507, 0.0170787331, 0.00557538, -0.0383224711, -0.0317113511, -0.00441016955, 0.00342951971, -0.0544315726, -0.0542993508, 0.0211335551, 0.00138626969, -0.03871914, -0.0284498632, -0.0332319066, 0.00527237, -0.0254748575, 0.00154948176, -0.00218993425, -0.0189298466, -0.05791343, 0.00722265104, -0.00819228217, 0.0185552165, 0.0368459895, 0.00684802094, -0.00683700247, -0.0246815234, 0.00563598191, 0.0376613587, 0.0102472398, -0.0214420743, 0.0145554878, 0.00840163417, 0.0241305958, 0.00388127984, -0.00347634847, -0.00451484555, -0.0218607783, -0.0217285547, -0.00166104443, 0.0087101534, 0.00837959722, 0.0161421578, 0.0250561535, 0.00387852499, -0.0173431784, 0.00733283674, -0.0223345757, -0.0559741706, 0.000944150903, 0.00239653187, -0.0313146822, -0.00949797872, -0.00225053611, -0.0601612143, 0.0005140836, -0.000894567464, -0.0262241177, 0.00580676924, 0.0506411977, 0.0237559658, 0.00350940414, -0.0506852716, -0.0194367, -0.0119220577, -0.0183899384, 0.026113933, 0.0147207659, 0.0406804383, 0.0111121945, -0.0198664218, 0.0169465095, -0.00769093912, -0.0391158089, -0.0275683794, -0.00537153706, 0.00238689058, 0.00947594177, -0.0251222644, 0.0122746509, 0.0142690055, 0.029331347, 0.0160429906, -0.0039556548, -0.0102637671, -0.0237559658, -0.0440080389, -0.00954205357, 0.0180924386, -0.00852834806, 0.0312044974, 0.0181144755, 0.00438537775, -0.0036609089, 0.00245162449, 0.014070672, -0.0220701303, 0.00825839397, -0.0059665381, 0.0045451466, -0.00288410205, -0.00590593601, -0.0108257132, -0.0115033528, -0.0138943754, -0.00660010381, -0.0168253072, -0.0188747551, -0.00159080129, -0.00115970103, 0.0195138287, 0.0105612678, -0.0208360534, -0.015910767, 0.0249459688, -0.0291770864, 0.0203622561, 0.00183734111, 0.0113050193, 0.0377495103, 0.0426858142, 0.00827492122, 0.012252613, -0.017750863, 0.0149521548, -0.0238881893, -0.000860823202, -0.0249680057, -0.0129467817, -0.00645135343, -0.00845121779, 0.0219379067, 0.0322402418, -0.0069031138, -0.0255409684, 0.00618139934, 0.00983404461, 0.00452310964, 0.00593899144, 0.0100268684, -0.0171889178, 0.0161201209, 0.0264444891, 0.00711797504, 0.0262020808, -0.00974038709, 0.0372426547, -0.00441016955, -0.00232353411, -0.000692101894, -0.013045948, -0.0102417301, 0.0163294729, 0.010913861, 0.00682598399, -0.0221252237, 0.0112499269, -0.0267750453, 0.00429722946, -0.0120542794, 0.0183238275, 0.0149411364, 0.0312926471, 0.0160540082, -0.0171558633, -0.0275243055, 0.00237174, 0.00551753258, 0.0239763372, -0.000791957369, 0.0178059563, -0.0192714222, -0.0163074359, 0.0248357821, -0.0306094959, -0.0107926568, 0.0109579349, -0.0152166, -0.012814559, -0.0282074548, -0.0308959782, -0.00586737087, -0.0194697548, 0.0226761494, 0.00673232647, -0.00565801887, -0.0128696514, -0.0165057685, -0.012836596, 0.0343558, -0.0278989356, 0.0115364082, 0.00689760409, -0.00723366952, 0.0227422602, -0.00542112, -0.033011537, -0.0106989993, 0.0048922305, 0.000676607073, -0.040393956, 0.0273920838, 0.0189959574, -0.0123297432, -0.00886441302, 0.00852283835, 0.0231389273, -0.0274141207, 0.064789, -0.0032229221, -0.0143902097, -0.00994973909, 0.059500102, -0.00672130752, -0.0114592789, -0.024064485, 0.00144893769, -0.0258494876, -0.00646237191, -0.0124619659, -0.0115584452, 0.000786448072, 0.0119440947, 0.0198443849, -0.00341850123, 0.0135858562, 0.0456608199, -0.0142469686, -0.000800221285, -0.0405261815, -0.00191033888, -0.0188527163, 0.0223676302, -0.0114482604, -0.0367137678, 0.00193375326, 0.00987261, 0.0191722549, -0.0160319712, -0.040393956, 0.0133654857, 0.0075642257, 0.0194477178, 0.0131451152, -0.0214310549, 0.0242407825, 0.0336065367, 0.0343778357, 0.00351491338, 0.0152606741, 0.0158997495, -0.0348846875, -0.0147317844, -0.00974038709, -0.0202520713, -0.0517430492, -0.0135968747, 0.000483782642, -0.0226320755, -0.0298822727, -0.0293093082, 0.0151504884, -0.000721714168, -0.00679843733, -0.0230948534, -0.00214310549, -0.0184560493, -0.0118890014, -0.00250947196, -0.010891824, -0.021827722, -0.0258494876, -0.00933821, -0.0364052467, 0.0323724635, 0.00785621721, -0.0149411364, -0.0382122882, 0.00759177236, 0.00944288634, 0.00282074558, -0.00895256177, 0.0177949369, 0.000274430437, 0.0117016863, -0.0238661524, 0.0133434488, -0.0614834391, -0.029750051, -0.000348461239, -0.0190290138, 0.00591695448, 0.00803802256, 0.037529137, -0.00214723754, -0.017728826, 0.00730529, -0.0263122674, 0.00138282648, -0.0144342836, 0.0398209952, -0.00677640038, 0.000100630234, -0.00773501303, -0.0216404069, -0.00363060809, -0.0228744838, -0.027303936, -0.012043261, -0.0114372419, 0.0187535509, 0.00637973286, -0.021386981, -0.030587459, -0.0110515924, -0.00386750652, -0.0222684629, 0.0279650483, 0.00731079932, -0.0265546739, 0.0379698798, 0.0297059771, 0.000166397134, -0.000224330535, -0.0249459688, 0.00380415, -0.00213070959, 0.02161837, 0.0180263277, 0.00803802256, 0.0294856057, -0.000327973656, 0.00649542781, 0.00476551754, -0.00727774389, -0.026488563, -0.0208029989, 0.0157895647, -0.00323118595, 0.0261359699, 0.0158556756, 0.0001285209, 0.0144122466, -0.0369782113, 0.0148309506, -0.00597204734, 0.0239322633, 0.0134646529, -0.0107761296, -0.00436058594, -0.0256952289, 0.00547621306, 0.0157895647, 0.0162964165, -0.0247255974, 0.0310282, 0.0245272648, 0.00777357817, 0.0179051235, 0.0257833768, -0.00577922259, -0.00135528, 0.00868260767, 0.0171779, -0.0203953125, -0.0131671522, -0.0110460836, -0.0277667139, -0.0311383866, 0.0284057893, -0.0216404069, -0.00538531, -0.0195358656, 0.0069747339, -0.00716204941, -0.00985057186, -0.0349287614, -0.0104235364, 0.01710077, -0.0172770657, -0.00755320722, 0.00821982883, 0.0182466973, -0.00726121617, 0.0287143085, 0.00465533184, -0.0159768797, -0.0280311592, 0.0144563206, 0.0377495103, -0.0270394906, 0.0154700261, 0.00481234631, -0.0134866899, 0.0197231825, 0.00694167847, 0.0168032683, 0.0446250774, -0.00867709797, 0.0186103098, 0.0059334822, 0.0212657768, 0.0370222852, -0.0216734633, -0.00854487531, 0.0186874382, 0.016472714, 0.000904208689, 0.0177178085, -0.000971697271, -0.0145554878, -0.0236017071, -0.0184891056, -0.0217505917, -0.00771297608, 0.00221748068, 0.00411817851, 0.00131809246, -0.00635218667, 0.00377109437, 0.00686454866, -0.00981751643, 0.00902418233, 0.0345100574, 0.0391819179, -0.0132883554, -0.0146436356, -0.00641278876, -0.0198994782, -0.00433854898, 0.0320198685, -0.0106989993, 0.011101176, 0.0425315537, -0.0219709631, 0.00662214076, 0.0142028946, 0.0263783783, -0.0439419262, -0.00770746684, 0.0102362214, 0.00902969111, 0.00692515075, -0.00831899606, 0.00273397448, 0.00845672749, 0.00481510069, 0.0337387621, 0.0302348658, 0.0409669206, -0.0425756276, -0.0197672565, 0.00291715772, -0.0235135593, -0.000566421659, -0.0177729, -0.0230507795, -0.00472970726, -0.0209462401, 0.0291330125, -0.0112113617, -0.0141588207, 0.00682598399, 0.0299483836, -0.0154149337, 0.00369396457, -0.0134315966, 0.015701415, 0.0114813158, 0.00115281448, -0.0199545715, -0.0205275342, 0.0215522591, -0.00762482779, 0.0234033726, -0.030565422, 0.0132553, -0.0280972701, 0.0290889386, -0.00886992272, -0.0179822519, 0.00399422, -0.0174533632, 0.00313201919, 0.0180042889, -0.0345761701, 0.00640727952, 0.00614283467, 0.0243730042, -0.0195358656, 0.00965774804, 0.00915089529, 0.00721163256, 0.0253867097, 0.000489636266, -0.00368845533, -0.0316893123, -0.0154810445, -0.0184009578, 0.0267309714, -0.00668274285, 0.00575718563, 0.00814820826, -0.0107320556, 0.0226320755, -0.00913987681, -0.0203181822, -0.0485256389, -0.0367798768, 0.0105392309, 0.0107100178, 0.0431265533, -0.0188967921, -0.0232711509, 0.00291991234, -0.0198113304, -0.0161641948, -0.0246374495, 0.00530818, -0.0187204946, 0.0174974371, 0.0163184535, -0.0251883753, 0.00665519666, -0.00723917875, -0.0188086424, -0.0234254096, -0.0161862317, 0.0292211603, -0.000244473806, -0.0100819618, 0.0217616111, 0.00478479965, 0.00839061569, -0.0025797151, 0.0150623405, -0.0321520902, 0.0405922905, -0.0153488228, 0.0105392309, -0.0146326171, 0.0301246811, 0.0130349295, 0.0159878973, -0.0166490097, 0.0154039152, -0.0312265344, 0.00141725934, 0.0151835447, -0.0106494166, 0.0346863568, -0.0157895647, 0.0273920838, 0.0218717959, -0.00366366352, 0.0299704205, 0.00425866479, 0.00300806062, 0.0228304099, -0.0158997495, -0.0194256809, 0.0492749, -0.0544756465, -0.0150182666, 0.0318656079, -0.0112168705, 0.0164286382, -0.0224998537, -0.0254307836, -0.0101150172, -0.00380415, 0.00257282844, 0.00699677132, 0.0109469164, -0.00433854898, 0.000178879069, 0.0353915431, -0.00779561512, -0.00956409052, -0.0559741706, 0.00689209485, -0.0190951247, -0.0305433851, 0.0134095596, 0.01047312, -0.0230728164, 0.0216734633, 0.0133875227, 0.0226761494, 0.000429378619, -0.0397328436, -0.00770746684, 0.0166710466, 0.000119568344, -0.00239239982, 0.02161837, 0.00650093704, 0.00523656, 0.00416776165, -0.00296398648, 0.0115253897, -0.0131561337, 0.00396942813, -0.00772950379, -0.00484264689, -0.0172550287, -0.0238441154, 0.0353695042, 0.0223896671, 0.0153818782, 0.00217065192, 0.0119440947, 0.00938779395, 0.0137511343, 0.0125831692, -0.00839061569, -0.017310122, -0.00127401832, 0.00911233, -0.00104607234, -0.00816473644, 0.00733283674, 0.00159768795, 0.00897459872, 0.00525033288, 0.00298877829, -0.0150623405, -0.0190620702, 0.000790580059, 0.00779561512, -0.0224888343, 0.00802149531, -0.00552579621, -0.0223125387, 0.0143461358, 0.0139164124, 0.0242628194, -0.0113380747, -0.0076744114, 0.0133544672, 0.0201639235, -0.0149080809, -0.0244170781, 0.00545968534, 0.00183045445, -0.00268714572, 0.015095396, 0.0224117041, -0.0230067056, -0.0241526328, -0.0260257851, 0.0165057685, 0.00784519874, 0.00322567672, -0.0204393864, 0.0389395095, -0.00483713765, 0.00738792913, -0.000721714168, 5.93537625e-05, -0.00939881243, 0.011123213, 0.00915089529, -0.00965223834, 0.010891824, 0.0122195575, 0.0481730439, -0.00256181, -0.0129798371, -0.0150072481, 0.0213429071, -0.00338269095, -0.00497486955, 0.0113160377, 0.00492253155, 0.0202741083, 0.0125501137, -0.0264665261, -0.000411817833, 0.0320419073, 0.0147978952, -0.012230576, -0.00826390274, 0.01160252, 0.00385648804, -0.0215742961, -0.00926659, 0.00967427529, 0.0135087268, 0.0254307836, 0.014864007, -0.0038372057, -0.014886044, -0.0156022487, -0.0133544672, 0.00725570694, 0.0232491139, -0.0438317396, 0.0129357623, -0.0259376373, -0.0179822519, 0.0292652342, 0.0612189919, 0.0142359501, -0.00147510669, 0.0263783783, -0.00536327297, -0.020968277, -0.034245614, 0.0177178085, -0.00872117188, -0.015932804, 0.0241967086, -0.0285159741, -0.0192273483, -0.0265106, -0.00345431152, -0.012230576, 0.0247476343, -8.4274594e-05, 0.00894154329, 0.00444873422, -0.0328572765, -0.00758626265, 0.0137841897, -0.00380139542, -0.00976793282, -0.00024653977, 0.0048922305, -0.0241967086, 0.00949247, -0.0224006865, -0.0131671522, 0.0199986454, 0.000800221285, 0.0121424282, 0.00907927472, -0.00487019354, 0.0438978523, 0.016494751, -0.034664318, 0.00758075342, 0.00906825624, 0.000941396283, 0.00588389905, -0.00864404254, -0.0032477139, -0.00374079333, 0.0293093082, 0.0602052882, 0.0282515287, -0.0103243692, -0.0112389084, 0.0103298789, -0.0137180788, 0.00389505294, -0.0175966043, 0.0191832725, -0.00336065376, 0.0161531754, 0.00564700039, 0.0247476343, 0.0217616111, 0.00274637039, 0.00143378717, -0.00864955131, -0.00613732543, -0.0145995617, 0.00650093704, -0.0299043097, -0.00769644836, -0.00108119391, -0.0172219742, -0.00645686267, 0.00644033495, -0.00526961545, 0.0107706198, 0.0194477178, 0.00409063185, -0.028538011, 0.00335514452, 0.0169465095, 0.0204724427, 0.0261580069, 0.00782867055, -0.00274086115, -0.0304993112, 0.0113931671, 0.0257833768, -0.0196901262, -0.00284002791, 0.00238138135, -0.0453523, 0.0138282645, 0.021596333, 0.00601612125, -0.00425315555, 0.0144563206, 0.0305433851, -0.00628607534, -0.023623744, 0.00478204526, 0.0288465302, -0.00407961337, -0.0262461565, -0.0163625274, 0.0556215756, 0.0163735468, -0.00165966712, -0.0181034561, -0.00560292602, 0.0167702138, -0.00436609518, -0.00100337551, 0.022433741, -0.0139825242, 0.00220095273, -0.0277667139, 0.00717857713, -0.0217616111, 0.0196791068, -0.0339591317, 0.0296839401, 0.0106218699, -0.00415949803, 0.00970182195, -0.00277942605, 0.00931617338, 0.0237118918, 0.0108422404, -0.0175745673, -0.00404380308, -0.0261580069, -0.0141037274, -0.00205357978, 0.00807107892, 0.0153378034, -0.0021293324, -0.000239136687, -0.0174423438, 0.0195799414, -0.0168583617, 0.0273920838, -0.0361628383, 0.00559190754, 0.0100819618, -0.0449335948, 0.00519524049, 0.0433689617, 0.00221059402, -0.0147758583, -0.0261580069, -0.0387852527, 0.0113270562, 0.000290097436, -0.0167261399, -0.00382618699, 0.000678673037, -0.0155141, 0.00344604743, 0.0181144755, -0.0162853971, -0.00764686475, -0.00080228725, -0.0117788166, 0.00972385891, -0.0117237233, 0.00150403031, -0.0156573411, 0.0199325345, -0.0189849399, 0.00137387391, -0.0178830866, -0.0235796701, -0.00604366744, 0.000891812844, -0.0085008014, 0.0269293059, -0.0147317844, -0.0160650276, 0.0168363247, 0.0191942919, -0.000625646324, -0.00821431912, 0.0104290452, 0.0358102471, 0.00254390482, -0.00289512076, -0.00348461233, -0.00784519874, -0.015304748, -0.00189105642, 0.00994973909, 0.00535500888, -0.0191171616, 0.00355072366, -0.0203512385, -0.00993321091, 0.00686454866, 0.0166379921, -0.000123011632, 0.010891824, 0.0294635687, -0.00286481972, -0.0194697548, 0.0118779829, -0.0200537369, -0.0617478825, 0.0280752331, -0.0194036439, 0.043391, -0.000153829111, 0.0135858562, -0.00493355, -0.0352593176, 0.00570209324, 0.00993872061, 0.00756973494, 0.0111727966, -0.0132112261, -0.0160209537, 0.0243730042, -0.0122415945, 0.0081867734, -0.00549825, -0.0128035406, 0.0113050193, -0.00701880828, -0.0166269727, 0.0274802316, -0.0386750661, 0.0206817947, -0.00739343837, -0.0148199322, 0.0225329082, 0.000412162161, 0.000999932294, 0.0231830031, 0.00799945835, -0.0119440947, -0.0134756714, 0.0167261399, 0.0171889178, 0.0086054774, 0.00239515444, -0.00834654178, 0.00693066, 0.00817575492, 0.00134012965, 0.010181128, -0.0113931671, 0.00299428753, -0.00726672541, 0.0169354919, -0.0227422602, -0.0120102055, 0.0144122466, 0.00560568087, 0.032636907, -0.0129467817, 0.0255630072, 0.0206928123, -0.0125941876, 0.00851182, 0.0155691933, -0.0128476145, -0.00527787954, 0.0172770657, 9.99415788e-05, -0.00146546541, 0.0162743796, -0.0114923343, -0.00245713373, 0.00617038086, 0.0043881326, -0.000831210928, 0.0172880851, -0.00369671918, 0.0030190791, 0.0226100385, 0.0156132672, 0.00195028109, 0.00872668158, -0.0120322425, 0.00306039862, -0.0111783063, 0.00168032688, -0.00152331276, 0.0179712344, 0.0219709631, -0.00499415211, -0.0283617154, -0.00237174, -0.00695820618, 0.00309345429, 0.0118890014, 0.0177729, 0.0178720672, 0.0145665063, -0.0138062276, 0.01386132, -0.0197452195, -0.00613181619, 0.000968253938, 0.00906274654, -0.0149631733, -0.011123213, 0.0203071646, 0.0105116842, 0.0019640543, 0.015073359, 0.0170897506, 0.00146271079, 0.0155802118, 0.0141918762, 0.0235796701, -0.0268852301, -0.0153157664, -0.00433854898, -0.0174864177, 0.0121754836, 0.00573514868, 0.0273700468, -0.00830246788, -0.000311618, -0.0214971658, 0.0119440947, -0.0170456767, -0.00730529, 0.00167206302, 0.0263783783, -0.00264169439, 0.00144342834, -0.0067653819, 0.0205605906, 0.00700228056, -0.0109744631, -0.0369561724, 0.00455065584, 0.00703533599, 0.00663315924, -0.00703533599, 0.00792232808, 0.016682066, -0.000254975836, -0.0277446769, -0.0047875545, 0.0146105802, -0.00547070382, -0.00417327089, -0.000805730524, 0.0142469686, -0.017960215, -0.0119220577, 0.0281854179, -0.0184119754, 0.0425095148, 0.0125721507, 0.0287363455, 0.0346202441, 0.0269954167, 0.0044074147, -0.0194917917, 0.00867709797, -0.00278218067, 0.0053770463, -0.0290669017, -0.0151725253, 0.00994422939, 0.00739894761, 0.00456167432, 0.0213759616, -0.0473797098, -0.00703533599, 0.000685903942, -0.00985057186, -0.0213318877, -0.0233592987, -0.030984126, 0.00333861681, -0.0195138287, -0.0294415317, -0.0173211414, 0.0217395741, 0.0140927089, 0.00216238783, 0.0242848564, 0.00555885211, 0.011833909, -0.0112223802, -0.0306756068, -0.0137290973, 0.000797466608, 0.0138943754, 0.00635218667, -0.0291770864, -0.000268232514, -0.0138062276, 0.0303891264, 0.00776806893, 0.0267089345, 0.01001585, 0.00468838774, 0.022808373, 0.0239763372, 0.0170456767, -0.0228524469, -0.00939330272, 0.0217836481, -0.0251663383, -0.0110130282, -0.0164176207, 0.00344604743, 0.00153708598, -0.0081867734, 0.00343778357, 0.0154259522, -0.0190951247, -0.000616349455, 0.000351043709, 0.0371765457, -0.0107155275, -0.00794987474, -0.0269513428, -0.00113973, -0.0132222446, 0.0102692768, -0.0162523426, -0.00824737549, -0.0232931878, 0.0203071646, -0.0087762652, 0.0228744838, 0.0116686309, 0.0104235364, -0.00767992064, -0.0262461565, -0.00409063185, 0.00472144317, 0.00514565688, -0.00212657778, -0.00716204941, -0.0220921673, -0.0193265136, 0.00645135343, -0.00369671918, -0.0009889137, 0.0125170583, 0.000276840758, -0.00556711573, 0.0121975206, 0.0243289303, -0.010809185, 0.0127153918, 0.00568005582, 0.0155361379, -0.0107816383, -0.00991668366, -0.0296839401, -0.016472714, 0.00227395073, 0.00305213477, -0.0191391986, 0.00335514452, 0.0160429906, 0.000712072942, 6.12475706e-05, 0.00112389075, -0.0297941249, -0.00633014971, -0.0139825242, -0.000862200512, -0.0041980627, 0.0109634446, -0.00357551523, -0.00192411209, -0.000955169438, -0.0456167459, -0.00331107038, 0.00225191354, 0.0115143713, 0.00111907022, -0.00798844, 0.00278218067, 0.0224778168, 0.0129027069, 0.00522003183, -0.0212767962, -0.00618690858, -0.0172660481, -0.00218442502, 0.0129908556, 0.0109524261, -0.00342125585, -0.0147097474, -0.0010281672, -0.0242848564, -0.00575167639, -0.00912334863, 0.00289236591, -0.00214999216, -0.0136409495, -0.00380965928, -0.00974589586, -0.000616349455, 0.000457269285, 0.000570209289, 0.0217065178, -0.013233263, -0.0021031634, 0.00322016748, 0.00304662553, -0.012605207, 0.0019902233, 0.022808373, 0.00940983091, 0.0191391986, -0.00430824794, -0.016494751, -0.00175057014, 0.0240204111, 0.00820330065, 0.0106108515, -0.00271882396, 0.00426141918, -0.00191584812, -0.0295957904, -0.00507128192, 0.0117567796, 0.0262681935, 0.0231830031, -0.00831899606, -0.00285380124, -0.000495489861, -0.00161834771, -0.00946492329, 0.00855038501, 0.0122085391, 0.026907267, 0.0131561337, 0.0221031848, 0.0242628194, -0.00360581628, -0.0157565083, -0.0149962287, -0.00149714376, 0.0105282124, 0.0125611322, -0.0164066013, -0.00421183603, -0.0171448439, -0.00824737549, 0.0272378232, -0.00112389075, 0.0146326171, 0.0435452573, 0.00755320722, 0.00547621306, -0.0082914494, -0.00360306166, -0.0219048522, -0.0196680892, -0.0165608618, 0.0185992904, -0.00960265566, -0.00593899144, 0.0136078931, 0.00421183603, 0.0315791294, 0.0119220577, -0.00314854691, -0.052536387, -0.00454790145, 0.0199986454, -0.0211886466, -0.0036471358, -0.00533297192, -0.0162523426, -0.00405482156, 0.0113160377, -0.0172770657, -0.00436609518, -0.00621445477, 0.0258935634, 0.0147428028, -0.0106108515, -0.00554507878, -0.0242848564, -0.00772950379, -0.0116465939, 0.00348461233, -0.00284829177, 0.0038647519, -0.0409228466, -0.00131878117, -0.0161201209, -0.0168032683, -0.00633565895, -0.00739343837, 0.00983955339, -0.0156463236, -0.00186351012, -0.0192824397, 0.0133875227, -0.00856691226, 0.00529440725, 0.00186213281, -0.0184009578, 0.00416225241, -0.0128476145, -0.0140155796, 0.0143571543, 0.0186984576, -0.00684251171, 0.00274361577, 0.00492528593, 0.00856140349, 0.00731079932, 0.00110116508, -0.00406859489, -0.00975691434, -0.0101039987, -0.000252049038, 0.0269513428, -0.0107210372, -0.0201418865, 0.0251883753, 0.0218717959, -0.0114813158, 0.0119771501, -0.00684802094, 0.0078066336, 0.0300806072, -0.00644584419, 0.00117829477, -0.0045974846, -0.00864404254, -0.0106273787, -0.0138062276, 0.020384293, -0.00437711412, 0.0120322425, 0.00846223626, 0.00241443701, -0.0132883554, -0.0145334508, 0.0115033528, 0.0273920838, 0.0100544151, 0.0139384493, 0.00334688067, 0.000392879709, 0.0196791068, 0.0173982698, -0.00317609333, 0.00123683084, 0.00157565088, -0.0114482604, 0.00268576853, -0.00167757226, -0.0263343044, -0.033782836, 0.0135638192, 0.00912334863, 0.000569865, -0.00405757641, 0.00631913124, 0.00315130176, 0.00323945, -0.0109083522, -0.00375732128, 0.000322464388, -0.0141588207, 0.00875422824, 0.00650093704, 0.009679785, 0.0212217029, -0.0226320755, -0.0102802953, 0.0164837316, -0.00104607234, 0.0014379191, 0.0373308025, 0.0291550495, 0.0127925221, -0.0188747551, 0.00373528409, -0.0267750453, 0.011123213, -0.0148529885, -0.000248777913, -0.00206735311, 0.00842367206, -0.00373803871, -0.00666621514, -0.0066607059, 0.0119440947, -0.0136409495, 0.00599408429, -0.00237174, -1.10400579e-05, -0.00221197144, 0.00357551523, -0.00696371542, -0.0223235562, -0.0085008014, 0.00728876237, -0.0201418865, -0.000321087049, -0.0198664218, 0.00596102886, -0.0119881686, 0.0140376166, -0.0100819618, -0.00972385891, 0.017122807, 0.00191860285, -0.0137621528, 0.00275463425, -0.00586186163, -0.00520625897, 0.0028235002, -0.0115584452, -0.0145554878, 0.00918946, 0.00166379916, 0.0176076218, 0.00571311172, -0.0102527486, -0.0258054137, 0.010098489, -0.000331761257, 0.0149190994, 0.025254488, 0.00716204941, -0.018169567, 0.0107540926, 0.0221913345, -0.0179271605, -0.0163184535, -0.0151615068, 0.0113601116, -0.00714001199, -0.0121754836, 0.009261081, 0.0040933867, 0.0245272648, -0.0315350518, -0.0249018949, -0.000488603255, -0.0223455932, 0.00244060601, -0.00722816028, -0.00137800584, -0.0102582583, -0.00343227433, -0.0125501137, 0.0148199322, 0.0275022686, 0.00660010381, 0.0206928123, 0.00294194953, -0.00694167847, -0.00975691434, 0.00458922097, 0.00205908925, 0.0236898549, -0.00282900943, -0.0170126222, -0.0168473441, -0.00226430944, -0.00405482156, -0.00240479573, 0.0236898549, -0.00501068, -0.00308519043, -0.0129247438, -0.00504098088, 0.0177067891, -0.0149411364, -0.0157344714, -0.00573514868, 0.0140596535, -0.00333310757, 0.0104510821, 0.0223676302, -0.014864007, 0.00108119391, -0.000925557106, -0.00702431751, 0.0133654857, -0.021827722, 0.0021293324, -0.0246594865, -0.00127677305, -0.0207258686, -0.00889746845, -0.0108863143, 0.00766339246, -0.0208580904, -0.0422230363, -0.00189243373, -0.00796089321, 0.0183789209, -0.015304748, -0.000265650044, -0.0101646008, 0.0179932714, -0.00921149738, 0.00631913124, 0.013277337, 0.01710077, -0.00565801887, 0.0111727966, -0.00121479377, -0.0138723385, -0.00215963321, -0.00368845533, -0.00667172438, 0.000330900453, 0.0340472795, -0.00151780352, 0.014257987, -0.0198333673, 0.0152166, 0.030565422, 0.00669927057, -0.0188967921, 0.0142690055, -0.00712348428, 0.00935473852, 0.000844295428, 0.0168693811, 0.0072501977, -0.0112003433, -0.00133255438, -0.00763033703, -3.6714111e-05, -0.0209462401, 0.00964673, -0.000491702231, 0.0276785661, -0.0160209537, -0.00732732704, -0.0303670894, 0.00395840965, 0.010682472, -0.00192824402, 0.000852559344, -0.00157427345, -0.00300806062, 0.00812617131, 0.0278548617, -0.0116355754, -0.0126162255, -0.00541836582, 0.0185441989, 0.0157785453, -0.0152166, 0.0149080809, 0.0147317844, -0.0234474465, 0.033055611, 0.00445424346, 0.0128035406, -0.00278493529, 0.00553956954, -0.0206928123, 0.00851733, 0.0087377, -0.0024158142, -0.00933821, 0.00968529377, 0.0115364082, -0.00143654179, -0.0106053418, -9.92529167e-05, 0.00973487739, -0.0116906678, -0.0086715892, 0.00906825624, -0.0192163289, -0.0185001232, -0.0231168903, -0.00013170595, -0.0123077063, 0.0141918762, -0.0196901262, -0.0101976562, -0.00447352603, 0.00773501303, 0.00228359178, -0.00290338462, 0.00910682138, -0.014257987, 0.0112719638, -0.00665519666, -0.00508780964, 0.00204807054, -0.0154479891, -0.0101590911, 0.0313587561, 0.025254488, -0.0289346781, 0.0080159856, -0.0143130794, 0.00166517647, 0.000879417, -0.00754218874, -0.00161008374, 0.000891812844, -0.0080159856, 0.0116135385, -0.0292431973, -0.0184340123, 0.000771986262, 0.00365264504, -0.00406584, 0.0344880223, 0.00230149692, -0.0400413647, -0.025232451, -0.0174754, 0.0106549254, -1.24173748e-05, 0.0214971658, 0.000141691504, 0.0216844808, -0.0255630072, 0.00659459457, 0.00448179, -0.00731630856, -0.0102362214, -0.00406308565, -0.003156811, 0.00386750652, 0.0360306166, -0.0182907712, -0.00965774804, 0.000801598595, -0.0168363247, 0.00342125585, -0.00731079932, -0.00381792313, 0.00109565584, -0.0013986656, -0.0120652979, 0.0119110383, -0.00829695817, -0.00367192761, 0.00239790906, -0.00971284, 0.00380690466, -0.000723780191, 0.0132663185, -0.0211335551, -0.00950348843, -0.0114372419, 0.0255850442, -0.00664968742, -0.0271496754, -0.0253867097, 0.000858068583, -0.0345761701, 0.00639626104, -0.0255189314, -0.00364438118, -0.0262241177, 0.0106383981, -0.0103023322, 0.0201859605, -0.00653399248, -0.0012967441, 0.00911233, -0.012021224, 0.0116576124, 0.0183128081, -0.00768543, 0.00974589586, -0.0041126688, -0.00149989838, -0.0293974578, 0.00783968903, 0.0140045611, 0.0130790034, 0.00530267088, 0.00291164848, 0.0305433851, 0.0583982468, -0.00491151307, 0.0143571543, 6.08602022e-05, 0.00504098088, -0.0186654013, 0.0124068726, -0.00630811276, 0.00454790145, 0.019965589, -0.0166049358, 0.00240066391, -0.00990015548, -0.0229846686, 0.00140899548, -0.00681496505, -0.00737140141, 0.00683700247, 0.0246374495, -2.65133549e-05, -0.0244391151, -0.0287143085, -0.00132153579, -0.0227422602, 0.00320088514, -0.0200647563, 0.0201639235, 0.00125542458, 0.00333035295, 0.00364162656, -0.0230287425, -0.0073548737, 0.0126162255, 0.0114813158, 0.00387852499, 0.00655602943, -0.0118449274, -0.00782867055, -0.0133875227, -0.0183789209, 0.00572413, 0.0117347417, 0.0287363455, -0.0156573411, -0.00602713972, 0.00178638031, -0.00884237606, -0.0108697871, -0.00558088906, -0.00787825417, -0.0206597578, 0.0166049358, -0.0112444172, 0.0208911467, -0.0207148492, 0.00172715576, -0.0172109548, -0.0124399289, -0.0194256809, 0.0076083, -0.00545968534, 0.00123338751, -0.00713450275, -0.00136629865, -0.00583431544, -0.000451071362, 0.0171338245, -0.00741547532, -0.0125390952, -0.0106273787, -0.0154590076, -0.0258494876, -0.00540734734, 0.00675987266, -0.00335789914, 0.0103464061, -0.0110240467, -0.0140816905, 0.00754769798, -0.0124840029, -0.021827722, 0.00763033703, -0.019150218, 0.00493630487, -0.00349287619, 0.0257393029, -0.00831348635, -0.00559741678, -0.00842918083, 0.0195799414, 0.00657806685, 0.0250781905, -0.012043261, 0.0102527486, 0.0138503015, -0.0126382625, -0.0171117876, -0.0118559459, -0.0160540082, -0.0224778168, 0.00112595677, 0.00543764792, 0.0369782113, -0.0120983543, 0.00261139334, -0.0107155275, 0.0165939163, 0.0148529885, -0.0212878138, 0.00873219, -0.0276344921, 0.0115253897, 0.00947594177, -0.0131230783, 0.0132002076, 0.00055299286, 0.000239825356, 0.0129027069, 0.0132002076, -0.0237559658, 0.00285104662, -0.0147978952, -0.0194256809, 0.00925557129, -0.00687556714, 0.0184450317, -0.00223814044, 0.00117416284, 0.0261800438, 0.0229626317, -0.0137952082, -0.0154590076, -0.0190841071, -0.00906825624, -0.0146215986, 0.0163404904, 0.0121754836, 0.00848427322, 0.00598857505, 0.0205605906, 0.00443220651, 0.00744302198, 0.00500792498, -0.0102141844, 0.00031437265, 0.0206487384, 0.00442394288, -1.74854722e-05, 0.00684251171, -0.0093051549, 0.0081867734, -0.0110460836, -0.00143103255, 0.0405922905, -0.0129357623, 0.00830797665, 0.00739894761, 0.0178169739, 0.00670478, 0.00761380931, -0.00495834183, -0.00617589, 0.0221692976, -0.0237118918, 0.00342951971, 0.0230067056, -0.00151504891, -0.013233263, -0.0130900219, -0.0103574246, -0.009993813, -0.0103078419, 0.0104896473, 0.00184835959, 0.00414847909, 0.011101176, 0.024483189, -0.00525308773, 0.00518146716, 0.0117788166, 0.00108325994, 0.011833909, 0.00618690858, 0.0150403036, 0.00775154075, 0.00347634847, 0.0162413232, -0.000124302867, 0.0141147459, 0.00787274446, -0.0125721507, -0.00191171619, 0.0153708598, -0.0156793781, -0.02320504, 0.00722265104, 0.0132442815, 0.0262020808, -0.00817575492, -0.00262792106, 0.0099993227, 0.00142139127, -0.00522554107, -0.0146215986, -0.000166483209, 0.00715653971, -0.0154149337, -0.000906274712, 0.0106879808, -0.00408787746, 0.00455341069, 0.00931066368, 0.0119771501, -0.0110020097, 0.0186433643, 0.028978752, 0.0128476145, 0.00227946, 0.0107596014, -0.00708491961, 0.00470767, 0.0133875227, -0.00807107892, -0.0249680057, 0.00213484163, -0.00285104662, 0.0203292016, -0.00340197328, -0.0240204111, 0.000221748065, 0.00923904311, -0.0151174329, 0.00687556714, -0.0193485506, 0.0195799414, 0.0125280768, 0.0273920838, 0.0095089972, -0.000895944831, 0.00907376502, -0.000392879709, -0.00756973494, 0.00959714595, -0.00888645, -0.0167702138, 0.00633014971, 0.00102472398, -0.00363060809, -0.00658908533, 0.00138695841, 0.00525033288, -0.0118559459, 0.0128806699, -0.0246374495, 0.00593899144, -0.0198113304, 0.0022202353, -0.00779010588, -0.016494751, 0.013233263, 0.0182907712, 0.0199104976, -0.0173652153, -0.0147538213, -0.0079168193, 0.00329729728, 0.0113601116, -0.0218607783, 0.0014117501, 0.0107816383, 0.00922802463, -0.00761931855, -0.00337442709, -0.0311824605, 0.00294470415, -0.00527787954, -0.00782316178, 0.0168363247, -0.0160099342, 0.00867709797, 0.0241967086, -0.00943737756, -0.0214420743, -0.0243950412, -0.00817575492, 0.00613181619, -0.00495283259, 0.0212767962, 0.020990314, 0.00241719163, 0.00716755865, 0.00210454059, -0.0259596743, 0.00817575492, 0.00499139726, -0.0108532589, -0.0109083522, -0.0126823364, -0.0051346384, 0.000807796489, 0.00259211077, 0.00953103509, 0.000854625308, -0.0227422602, -0.000350527203, -0.00292266696, -0.0185662359, 0.00238826801, 0.0233372618, 0.0133434488, 0.00977344252, -0.0124619659, 0.00534949964, 0.00798844, 0.00359755242, 0.0185662359, 0.0105227027, -0.021199666, -0.0171779, 0.000297500519, 0.00536327297, -0.00349563104, -0.00701880828, 0.0177178085, 0.0145885432, 0.00167757226, -0.00088699226, 0.0189298466, -0.0043357946, 0.00188279257, 0.0132663185, 0.00382618699, -0.00771297608, 0.0235796701, 0.00777908741, 0.000976517855, -0.0125280768, -0.00854487531, -0.000514772313, -0.00610426953, -0.00295021338, -0.0107596014, 0.00844570901, -0.00987811852, 0.00471868878, -0.00873219, 0.00249294401, 0.000182150194, -0.000792646, -0.00152331276, 0.00132773374, 0.0109634446, 0.000414228125, 0.0109028425, -0.00495007774, -0.0267089345, 0.000381516846, 0.00629709382, -0.0146877104, -0.00500792498, 0.0117127048, -0.0110460836, 0.00748709589, 0.000304903573, 0.00430549355, 0.00920598768, -0.0210564248, -0.0198333673, -0.0149301179, -0.0250341166, 0.00339921867, 0.0162743796, -0.0190620702, 0.00617589, 0.0191061441, 0.00970733166, -0.0226100385, 0.0166710466, 0.0241967086, 0.0116686309, 0.00122856686, 0.00658908533, 0.0183899384, -0.0141147459, -0.0260257851, 0.00450107222, -0.0112554356, 0.00396116404, -0.012627244, 0.00742098503, -0.00852834806, 0.0212106835, 0.00154259522, 0.00733283674, 0.0209242031, 0.00393637223, -0.0109469164, 0.00283727329, 0.0225880016, -0.00259762025, 0.0184009578, 0.0322402418, -0.0233372618, -0.00867709797, -0.00348461233, -0.0167702138, -0.0133875227, -0.00886992272, -0.00402727537, 0.011123213, 0.00541561097, -0.00711797504, -0.0211555921, 0.000257213978, 0.0243068933, 0.0182356797, 0.00435232231, 0.00386199728, 0.00545968534, 0.0032229221, 0.0127374288, 0.00327526, -0.0272378232, -0.0274141207, -0.00747607742, 0.00303560705, -0.00512912916, 0.0468508191, 0.027281899, 0.00280284043, -0.00578473182, 0.0114702974, 0.000135321417, 0.0031953759, 0.00646788115, -0.00290063, 0.00066283386, 0.0358983949, 0.00364162656, -0.0217726287, 0.000617038109, 0.00338820019, 0.0325267203, -0.0064789, 0.0086054774, 0.00717306789, 0.00434405822, -0.0179822519, 0.00586186163, 0.00863302406, -0.00603264896, 0.0226761494, -0.0152716925, -0.020990314, 4.05447754e-05, -0.00266786339, -0.0165278055, -0.0138172461, -0.00168583624, 0.0149631733, -0.000387026113, 0.0173872523, 0.00885890424, 0.00635769591, -0.00108876918, -0.025254488, 0.00801047683, -0.000617726764, 0.0101701096, -4.94112537e-05, -0.00493905926, 0.00115901243, -0.012649281, 0.035083022, 0.0026320531, 0.00198195945, 0.0111452499, 0.0148089137, 0.0276124552, 0.0380580276, 0.00673783571, -0.00614834391, 0.00636320515, 0.00777908741, 0.0264665261, -0.00401901128, 0.00520350412, -0.0160099342, -0.00590593601, 0.00203292, -0.0208801273, 0.0118008535, 0.00212244573, 0.0163955837, -0.00368019147, -0.00159493322, 0.00223125378, 0.0141808577, -0.0262020808, -0.00541285658, 0.0284719, -0.00754218874, 0.0207699426, -0.00154810445, -0.0103849713, -0.0157124344, 0.00670478, 0.00175194745, 0.00593899144, -0.0203953125, 0.00721163256, 0.0044404706, -0.0170897506, 0.00157565088, 0.0190730877, -0.0250341166, -0.0127594657, -0.0253205989, -0.0174533632, -0.0365374684, 0.0073218178, 0.00156187767, 0.016704103, -0.0101260357, 0.0189739205, 0.0169354919, -0.0213539246, 0.000632188574, -0.0218497589, 0.0018235679, -0.000798155263, 0.00658908533, 0.0294194948, 0.0153378034, 0.0119991871, 0.0152276186, -0.0204173494, 0.00170925062, 0.0296178274, 0.0186323468, -0.0144012282, 0.00939881243, -0.013277337, 0.00706839142, 0.00731079932, -0.00840163417, -0.0119991871, 0.00844019931, 0.0240204111, 0.00964673, 0.00210040854, -0.00755871646, -0.00242958753, -0.0106659438, -0.0238661524, 0.0159548428, -0.0127815036, -0.00798293, -0.0052393144, 0.00279044453, 0.0169575289, -0.00468012365, 0.0152937295, -0.00630260352, 0.0102472398, -0.010076452, -0.0148419701, 0.00339095481, 0.00550375925, -0.00390607142, -0.012605207, 0.0181254931, -0.00767992064, 0.0187535509, -0.00445699831, -0.0181365125, 0.00181805866, 0.00618139934, -0.02320504, -0.0158556756, -0.0248578191, -0.0187645685, -0.00202603359, -0.0162633602, 0.0047021606, 0.000900765415, 0.00450933632, -0.00150540762, 0.0284719, 0.00947594177, 0.00617038086, 0.0016307435, 0.0161201209, 0.0144783575, -0.000323153043, 0.00833552331, 0.0069031138, 0.000168118771, 0.00819779187, -0.00333035295, -0.0093051549, 0.0107375644, -0.026488563, 0.0245713387, 0.00507128192, -0.00700228056, 0.00778459664, -0.0105171939, 0.00923353434, 0.00603264896, 0.0233813357, -0.00278355787, -0.00066937611, 0.0171338245, 0.021827722, 0.00907927472, -0.00991668366, -0.00132360181, 0.00305213477, -0.0133654857, 0.00345431152, -0.00430824794, 0.00468838774, -0.00427519251, -0.0246815234, -0.0139164124, 0.00238826801, 0.0118008535, 0.000756835798, -0.00561669935, 0.000771297608, 0.0120652979, 0.00607672334, 0.017310122, 0.00151918083, -0.00240755035, -0.0308298673, -0.00351215876, -0.0183568839, -7.68284735e-06, -0.0166159533, 0.00437711412, 0.00525033288, -0.0153928967, 0.00681496505, -0.0204173494, -0.00685903942, 0.00634116819, 0.0111672878, -0.033430241, -0.00662765, -0.0109469164, -0.00368570071, -0.0270174537, -0.0182907712, -0.0190841071, 0.00678190961, 0.00484264689, 0.00342676509, 0.0168142878, -0.00847876444, 0.00568556506, -0.00541285658, -0.0237339288, -0.0200867932, 0.00507128192, -0.00831899606, 0.0147868767, -0.00645686267, 0.00252186763, 0.0131451152, 0.012814559, -0.00807107892, 0.0179051235, -0.0230507795, -0.00117140822, -0.00966325682, 0.0055863983, 0.000932443712, -0.00831348635, 0.00231940206, -0.00472144317, 0.0059334822, -0.00635218667, 0.0103519158, -0.0100433966, 0.0234694835, -0.0211225357, -0.0302128289, -0.0259156, 0.00161972502, -0.00241030497, -0.0258494876, -0.00963020138, 0.00906274654, -0.0107651111, 0.0111672878, 0.00611528801, 0.0234474465, -0.00716755865, 0.0120542794, 0.00419255346, 0.0142469686, 0.0094043212, 8.53936654e-05, -0.0182356797, -0.011811872, -0.00900765415, 0.0182907712, -0.0077019576, -0.00264995825, -0.0161641948, 0.00926659, -0.00173404231, 0.00450933632, 0.00310171815, -0.0136629865, 0.0247696713, 0.00974038709, -0.0366035812, -0.00380139542, -0.00609876029, -0.0285820849, -0.0167371575, -0.0193926264, 0.0141478023, 0.0276565291, -0.0227863342, 0.0156903975, 0.000125508028, -0.00637422362, -0.0187645685, -0.0165828988, -0.0288244933, 0.00924455281, -0.0206928123, -0.00320639438, -0.0234254096, 0.00925006159, -0.0226541124, 0.000678673037, -0.0221362412, 0.000777495559, 0.0264665261, 0.0290228277, -0.00606019562, -0.0151835447, -0.001706496, -0.0262461565, 0.025254488, 0.000701743062, 0.00939881243, -0.0296178274, 0.0162413232, 0.00406859489, 0.00231940206, -0.00712348428, 0.0153157664, 0.00899112597, 0.0166159533, 0.0132993748, 0.0282515287, -0.00715653971, 0.0110681206, -0.0178059563, -0.00562220858, 0.00787274446, -0.00184835959, 0.020219015, -0.0245713387, -0.0226981863, -0.00575167639, -0.00579575077, 0.022246426, 0.0207148492, 0.00599408429, -0.0140376166, -0.0170126222, -0.0152496556, 0.00576269487, 0.0071124658, 0.00798844, 0.00303285243, -0.00369671918, 0.00992770214, 0.00700228056, 0.019128181, -0.000111304442, -0.000423525024, 0.00485917507, -0.00339370943, 0.0123407617, -0.0288465302, 0.0263343044, -0.0280531961, -0.0175855849, 0.0170456767, 0.0187866054, -0.0141037274, 0.0030190791, 0.0111342315, 0.0154259522, 0.0047021606, 0.00880932063, 0.00151918083, 0.0152276186, 0.0081867734, -0.0212878138, -0.000723091478, -0.000448661071, 0.00934371911, 0.00585084315, 0.00852283835, -0.00990566518, -0.00470491545, 0.0322402418, -0.0159878973, -0.0276565291, 0.0113711301, 0.00716755865, -0.00189794309, 0.00355898752, 0.00581778772, 0.0202410538, -0.00342676509, -0.00164864864, -0.00852283835, -0.0076689017, -0.0038372057, -0.0159878973, -0.0166930836, 0.00560843525, 0.0153267849, 0.0161311384, -0.00384822418, 0.0200867932, 0.006418298, 0.00451209117, -0.0325046852, -0.00624751067, 0.0158226192, 0.00234006182, -0.000749949191, 0.0357221, -0.0239543, 0.00990566518, -0.0161421578, -0.0160540082, -0.00651195552, -0.0305433851, 0.0305433851, -0.00639075181, 0.0078066336, -0.00181254942, -0.00920598768, 0.0190620702, -0.0130569665, -0.0112333987, -0.00518973125, 0.013067985, -0.0156353042, -0.0174533632, -0.00226568663, -0.00828594, 0.00966325682, 0.00580676924, -0.000645961729, -0.00403829385, -0.00416500727, -0.00221885787, -0.0108587686, 0.00208525825, 0.0156132672, -0.00272433343, 0.00187590602, 0.00179051235, 0.00140899548, 0.010704509, -0.00840163417, 0.000477240392, -0.0221142042, -0.0170677137, -0.0189849399, 0.00232353411, -0.00303009781, 0.00882584788, -0.0182797536, -0.00934922881, 0.0122966878, -0.0160980821, 0.0275463425, -0.0407685861, -0.0138833569, 0.00852834806, 0.00510158297, -0.03871914, -0.0128035406, 0.00734385522, 0.00337442709, -0.0343778357, -0.0102527486, -0.00223125378, -0.0203292016, 0.00360581628, 0.0280752331, -0.000904208689, 0.0213318877, -0.0224227235, 0.00187315128, -0.00409614109, 0.00528338877, 0.0114813158, -0.00428070175, 0.00655602943, -0.0115364082, 0.00499139726, 0.00726121617, 0.0431045182, -0.00139177893, 0.00399422, -0.00708491961, -0.00891950633, 0.00177260721, -0.000995111652, 0.02772264, 0.0151725253, -0.0184119754, -0.012627244, -0.00320088514, 0.0169905853, 0.0123517802, 0.016913455, -0.00457544765, -0.00517871231, -0.00754769798, 0.00293368543, 0.0273480099, 0.00890297815, 0.0200978126, -0.0170897506, -0.020196978, 0.00814820826, 0.0197672565, -0.0104070082, -0.00112733408, 0.00339095481, -0.0165278055, 0.0254307836, 0.0206267014, -0.00976793282, 0.00177811645, 0.00361958938, 0.00423938222]
|
11 Jan, 2025
|
memcpy() in C/C++
11 Jan, 2025
The memcpy() function in C and C++ is used to copy a block of memory from one location to another. Unlike other copy functions, the memcpy function copies the specified number of bytes from one memory location to the other memory location regardless of the type of data stored.
It is declared in <string.h> header file. In C++, it is also defined inside <cstring> header file.
Syntax of memcpyThe memcpy function is declared as:
void *memcpy(void *to, const void *from, size_t numBytes);Parametersto: A pointer to the memory location where the copied data will be stored.from: A pointer to the memory location from where the data is to be copied.numBytes: The number of bytes to be copied.Return ValueThis function returns a pointer to the memory location where data is copied.Example of memcpyThe memcpy() function is essential for copying memory blocks. Below is the C program to show the working of memcpy()
C
// C program to demonstrate working of memcpy
#include <stdio.h>
#include <string.h>
int main()
{
char str1[] = "Geeks";
char str2[] = "Quiz";
puts("str1 before memcpy ");
puts(str1);
// Copies contents of str2 to str1
memcpy(str1, str2, sizeof(str2));
puts("\nstr1 after memcpy ");
puts(str1);
return 0;
}
Outputstr1 before memcpy
Geeks
str1 after memcpy
Quiz
Important Points about memcpy()memcpy() doesn’t check for overflow or \0.memcpy() leads to undefined behaviour when source and destination addresses overlap.Note: memmove() is another library function that handles overlapping well.
Related ArticleWrite your own memcpy() and memmove()
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++
|
https://www.geeksforgeeks.org/memcpy-in-cc/
|
Pandas
|
C++
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0331799164, 0.000607283087, -0.00670680078, 0.028410174, 0.0201308168, 0.0136635443, -0.0355752036, -0.00692029344, -0.00715982215, -0.00557685038, -0.00980505068, -0.0296807177, 0.0140072154, -0.00813876558, 0.0171835739, 0.00577472197, -0.0103257652, 0.040719863, -0.0215992313, 0.0219116602, 0.0399283767, -0.0319510326, 0.0119660152, -0.0144237876, 0.0128095727, -0.00505353278, 0.00695674354, 0.00517850416, 0.0282643754, -0.0188290309, 0.0202974454, 8.86028e-05, -0.022786459, -0.038032975, -1.4289134e-05, -0.042636089, -0.0185686741, 0.0233071744, -0.0436566919, -0.0263273176, 0.0273687467, -0.00242262357, 0.0126117012, -0.00667035067, -0.0182250012, 0.0660682321, -0.0124346586, -0.0423236601, 0.00514986506, -0.021172246, 0.0606528074, 0.0164649878, 0.00799817219, -0.0256399736, 0.0102893151, 0.0139551442, 0.024140317, -0.0189227592, 0.00178084301, -0.00225859857, -0.0191206299, -0.013236559, 0.0250776019, -0.0449064039, 0.00488169678, -0.00171445194, -0.0451146923, -0.00187457167, 0.0248693172, -0.00581117207, -0.0116535872, -0.00243433961, 0.0125388009, 0.0296182316, -0.0573618934, -0.0214326028, 0.00719106523, 0.0196309313, -0.0178917442, 0.0632355511, -0.0267022308, 0.0179229882, 0.0078055081, 0.0466143489, 0.0524880067, -0.0411780886, 0.019183116, -0.025494175, 0.0255983174, 0.0173814446, -0.0225573462, -0.0106642293, 0.0171523299, 0.0387203172, -0.00856054388, 0.0141426018, 0.00468122214, -0.00136817689, -0.00853450783, 0.0363458619, 0.017204402, 0.027097974, -0.0117473155, -0.00796172209, 0.0182458311, 0.00755035784, 0.0296390597, -0.0131949019, 1.24178168e-05, 0.022828117, 0.00239138072, -0.0139655583, 0.00897190813, 0.0170586016, 0.00152829662, -0.0312428605, 0.0253692027, -0.0498219468, 0.0225156881, 0.00085136795, 0.00200214656, 0.0333257169, -0.013882244, 0.0176626313, -0.0306180026, 0.0141113587, 0.00750870071, -0.0176626313, -0.00530347554, -0.0131428298, -0.0318260603, 0.00830018707, 0.000469619234, 0.0244319178, 0.0170481876, -0.0135073299, -0.00486347172, 0.0575285219, -0.00312168244, 0.0118722869, -0.0285143182, 0.00442086486, -0.00868551526, -0.00740976492, 0.00614442909, -0.0474474914, -0.0365958028, 0.0390952341, 0.00751390774, 0.0189748313, -0.0474891476, -0.0326383747, 0.0573202334, -0.018183345, 0.0443232059, -0.0209952015, 0.00788361486, 0.0219116602, 0.0325758904, -0.0224740319, -0.0057174433, -0.0435317196, 0.0223907158, -0.0026764716, -0.0143717155, 0.00746704359, 0.022786459, -0.0403657742, 0.0060454933, 0.0270771459, 0.0022182432, 0.0219116602, 0.015517287, 0.0125179728, -0.0089875292, -0.0362625457, -0.0166941024, 0.0152777592, 0.000691899157, -0.0144237876, 0.00722230785, -0.0254108608, -0.00877924357, 0.0081283506, 0.0133823585, -0.0034549397, -0.02249486, -0.0357834883, 0.048613891, -0.00974256545, -0.0398242325, 0.0349503458, 0.0166212022, -0.0246193744, 0.0353044309, 0.0200995728, -0.00848764367, 0.0252858885, 0.0232655164, 0.0251400881, 0.0291391741, -0.0209743734, -0.0288267452, 0.00504572177, -0.0067484579, 0.00423340779, -0.0364708342, -0.0157047454, 0.0048582647, -0.0184020456, 0.0262023453, 0.00121066079, 0.0225573462, -0.0319926888, 0.0133198733, -0.0165691301, -0.0417612903, 0.0172460582, -0.0234321449, 0.00405115774, -0.00851368, 0.0183395594, 0.0522797182, -0.0142988162, -0.0848139524, -0.0214326028, 0.00335340039, 0.0353669189, -0.0315136313, 0.0152985873, 0.0228906032, 0.00986233, 0.0162983593, 0.00328831119, 0.027097974, -0.0213909447, -0.00499104708, -0.00687342929, -0.0439066328, 0.0497802906, 0.0126117012, 0.0078055081, -0.00714940811, -0.0118410438, 0.0468226336, 0.0150590586, -0.0610277206, 0.00141764479, -0.0569453202, -0.00925309397, 0.0115286158, 0.0461561196, 0.0143508874, 0.0236404315, -0.0335340053, 0.0167774167, -0.0232030302, 0.000236436856, -0.0190269016, -0.034721233, -0.0195580311, -0.0169857014, -0.0369498879, -0.013882244, 0.00141894654, -0.0302847456, 0.0221199449, -0.011882701, -0.0239528604, -0.0454062894, 0.0154443877, -0.0235779453, 0.0043297396, -0.0391577184, 0.00588407228, 0.0348462053, -0.0188082028, 0.0304097179, -0.00672242232, -0.00712857954, 0.0150278155, 0.00474891486, -0.0252025742, 0.0151215447, 0.00852409378, -0.0229739174, -0.0176938735, -0.0378871746, 0.0227656309, 0.0375330895, 0.00832622219, -0.00666514365, -0.000868942065, -0.00293162186, 0.0162462872, -0.0173606165, -0.0205890443, -0.021515917, -0.0200891588, 0.0134240156, -0.00563412905, 0.0193080883, 0.0119243581, 0.0154339727, -0.0318052322, -0.0176522154, 6.32586598e-05, -0.00126468495, 0.00132782152, -0.0511549786, 0.027452061, -0.026119031, 0.0064464435, 0.016517058, 0.000486542471, -9.20199891e-05, -0.00347576826, 0.00493637193, -0.0193289164, -0.0138405869, -0.0292016603, 0.0120493295, -0.000714680413, -0.0321176611, 0.0348670334, -0.0399700329, 0.0205473881, 0.00198652525, -0.0186519884, -0.0034549397, -0.0564037785, -0.0294099469, -0.0257232878, -0.00256321626, -0.033409033, -0.0206619445, 0.000398346485, 0.0236196034, -0.0218700022, 0.00974256545, -0.00678490801, 0.00348618254, -0.037033204, 0.00782633666, 0.00297327898, 0.000747875951, -0.0245568883, 0.0061183935, -0.037699718, -0.0304097179, 0.000539264816, 0.0103361793, 0.0735248625, 0.00358772185, -0.00310085388, -0.0121326437, -0.0362000614, -0.00937806536, 0.00942492951, 0.029764032, 0.00760242948, 0.0259107463, 0.0129449582, -0.0163712595, -0.0109454151, -0.0115077868, 0.00198912877, -0.015215273, 0.0243069455, -0.0310970601, 0.0153714875, 0.0158088878, -0.00223907176, 0.043615032, -0.0332424045, 0.0104299085, 0.0140280444, 0.0133407013, 0.0155693591, 0.0451980047, -0.000124564627, 0.0306388326, 0.0244944021, -0.0112370159, -0.00713899359, -0.0137676876, -0.0127158444, 0.0218700022, 0.0172460582, 0.00107202062, -0.0145695871, 0.00183031091, -0.00718065072, -0.0183083154, -0.0281602312, 0.0200891588, -0.0235154592, 0.0108100297, -0.0139551442, 0.000560418819, 0.0151007157, -0.0229739174, -0.0151840299, -0.0337214619, 0.0200058445, 0.0431984626, 0.0118306298, 0.0109662442, -0.0338256024, 0.0416779742, -0.00443127891, 0.00140332512, 0.00948220771, -0.0391577184, 0.0113724014, -0.00314251101, -0.0474891476, 0.0391993746, 0.00366322533, 0.020495316, -0.00650372216, -0.0326383747, -0.0173189584, 0.0405948907, 0.00790965091, 0.0213284586, -0.0266397465, 0.0113203302, -0.00425423635, 0.00429849699, -0.0356585197, 0.007441008, 0.0260357168, 0.0517381765, 0.013226144, -0.0663181767, -0.0130595155, -0.0297223739, -0.0342213474, -0.0356585197, 0.00801900122, 0.0374289453, -0.00848243665, -0.0303680599, -0.0706921816, -0.00546750054, 0.00619650073, -0.00783154368, 0.00701922923, -0.0111432867, -0.0395118035, 0.00564454356, 0.00718585774, 0.0304930322, 0.058153376, -0.00715461513, -0.0211305879, -0.0141217727, 0.00114882598, -0.00330132898, 0.0565287508, -0.0483222902, 0.0110599725, -0.0189956594, 0.0335756615, -0.0131220017, 0.0234529749, 0.0116327582, -0.0225990023, -0.0265147742, -0.0249318033, -0.00454323273, 0.00719106523, -0.00891463, -0.0140592875, -0.0245985463, -0.00159729121, 0.00532170059, -0.00636833627, -0.0606111512, -0.00131415285, 0.00393139338, -0.0278061461, 0.00111497962, 0.0285976324, -0.0215784032, 0.00132521801, -8.56737825e-05, -0.00856054388, 0.0121222297, 0.0478640608, -0.019495545, 0.0223074015, -0.0287226029, -0.0209952015, -7.48933671e-05, -0.0489054918, 0.0290350318, 0.0240778308, 0.0165899582, 0.0118098017, -0.00702443626, 0.0334298611, 0.0564037785, 0.0163712595, -0.0225365162, -0.0311803743, 0.0167982448, 0.0253275465, -0.0185061879, 0.0133302873, 0.0207765028, 0.0185582601, 0.0392618626, 0.00497282203, -0.00416311109, -0.00584241468, -0.0295765754, 0.0187977869, -0.00377517892, 0.00381683605, 0.0286809467, 0.0222449172, 0.0260773748, 0.0264939461, -0.00922705792, 0.0158193018, 0.00665472914, -0.0328466594, -0.0218908302, -0.0234321449, -0.0035200289, 0.0254733451, 0.00529826852, 0.00423340779, -0.0093312012, -0.00705047231, -0.000371659873, -0.0226406604, -0.00480879704, -0.0398867168, 0.0198912881, -0.00599342212, -0.0169857014, 0.00312428595, 0.0191310458, -0.0177147016, -0.0145071018, 0.0176105592, 0.00877924357, 0.0334923454, 0.0266814027, 0.0467393175, -0.00902918633, 0.00599342212, 0.00208025379, 0.0088938009, -0.0131011726, -0.0253275465, -0.00371008972, -0.00468903268, 0.017860502, 0.0181521028, -0.00452500768, 0.00533732213, -0.0151632018, -0.00991440099, -0.0116015151, 0.00291860383, -0.00743580097, 0.00609756494, -0.010258073, 0.0176522154, 0.0192872584, 0.0111537008, 0.0118306298, -0.0377622023, 0.0195788592, -0.0112370159, 0.00776905799, -0.0140072154, -0.0108516868, 0.0229739174, 0.0278061461, 0.0571952648, 0.0114765437, -0.0476141199, -0.0128720589, -0.013892659, 0.00220913067, -0.00557164336, 0.0162775312, -0.0119764302, 0.0193289164, -0.000642756757, -0.00504572177, -0.0107996156, -0.00719106523, -0.0042724614, 0.0230780598, 0.00761284353, 0.0479890332, 0.00729520805, 0.00572265079, 0.020193303, 0.00583200064, -0.00355387549, 0.00228984142, -0.0112786731, -0.0139447302, -0.0389494337, -0.0101955868, 0.0132782161, 0.0265147742, -0.00939368643, 0.0333882049, 0.00244996091, 0.0244944021, 0.00501447916, 0.0278894603, 0.020849403, 0.00128160813, 0.0155068729, 0.0174231026, -0.0122992732, 0.0184020456, 0.00770136528, -0.0167253446, -0.0067120078, -0.0005330813, 0.00733686518, -0.0137676876, 0.0206723586, 0.0161213167, 0.00904480834, -0.00773781491, 0.0093312012, -0.000615744735, -0.0177147016, 0.0292224884, -0.0134448446, -0.00880528, -0.0197663158, 0.0687759519, -0.0134344297, 0.00216617156, 0.000732905464, 0.0411780886, 0.00144628412, 0.000737461669, -0.0162983593, -0.015236102, -0.0103153512, 0.000482962554, -0.000774562592, 0.00359292887, 0.0460728034, 0.0332424045, 0.0162254591, -0.0303888898, 0.0176313873, -0.00214013597, -0.0177251156, -0.00204901095, 0.0214534309, -0.0246818606, -0.0218908302, 0.0151840299, 0.0220158026, -0.00494418247, -0.00313730398, -0.0287226029, 0.0133511154, 0.00788361486, -0.0068109436, -0.0271604601, -0.0021817931, 0.0285976324, -0.0100758225, 0.0191206299, 0.0338880904, 0.00678490801, -0.0384078883, -0.0222240873, -0.00367884687, -0.0238278881, 0.0135906441, -0.0273479167, -0.0320760049, -0.0259940606, 0.00526962895, -0.0269521736, 0.0092010228, 0.0448647477, -0.00168841623, -0.00227682339, 0.0120805725, 0.0285976324, -0.00669638626, 0.00859699398, 0.00901877228, -0.0160484165, 0.0215575732, 0.0132990442, -0.017537659, 0.0325550623, -0.0129970303, -0.0178084299, -0.0200995728, 0.00592572941, 0.0063110576, -0.010252865, 0.0034054718, 0.0268688593, -0.0103726294, 0.00354085746, -0.00546750054, -0.00551957218, -0.00117681443, -0.00493637193, 0.00236274139, 0.000202264971, -0.0141634298, 0.00570182223, 0.0093155792, -0.0193497445, 0.00114426971, -0.025785774, -0.0561954901, -0.00368665764, -0.0324509181, -0.00800337922, 0.013246973, 0.00487388624, 0.0114140585, -0.0183708016, -0.00837308634, -0.0154548017, 0.00885214377, -0.0117473155, -0.00645685801, 0.00897711515, 0.0105132228, -0.00456666481, -0.0309304316, -0.0337006338, -0.0176001452, -0.0255774893, -0.0334923454, 0.0570702925, -0.016204631, 0.0589448623, 0.0323051177, -0.0158193018, 0.0321176611, -0.00811793655, 0.0137781017, 0.00195528241, 0.0299514886, -0.00814918, 0.00353044318, 0.00253327517, 0.0194851309, 0.0309304316, -0.0120909866, -0.0167670026, -0.0249942876, 0.00373352179, -0.000112279027, -0.00258274307, 0.0115286158, 0.000550004537, -0.00818563, 0.036699947, -0.0209639594, -0.00331174326, 0.0160588305, 0.0100081293, 0.0299931467, 0.0433650911, -0.0249318033, 0.00228203065, 0.0100654084, -0.00295505393, 0.0225990023, -0.00682656514, 0.0453646332, 0.0132990442, -0.00801379327, -0.00713378657, 0.0135385729, -0.00927913, 0.0360334329, 0.0182354171, 0.00537897926, -0.00692550093, -0.0286601167, -0.02380706, -0.0305555183, -0.0283893459, 0.0495720059, 0.00354346121, 0.00991960801, -0.00863865111, -0.0117681446, -0.00802941527, 0.00619650073, 0.0220574588, -0.0204536598, -0.0014632073, -0.0264314599, 0.0113411583, 0.0156839155, 0.0340547189, -0.0105184298, 0.0324092619, 0.0149549162, 0.00481400406, 0.00689946488, 0.00213102344, 0.00221694121, -0.00385588966, 0.059194807, -0.00610277196, -0.010247658, 0.0312012043, 0.0426569171, 0.0184124596, 0.00470725773, -0.0142363301, 0.0305971745, -0.0350336619, 0.00677449349, 0.0107787866, 0.0358043164, 0.0177876018, 0.00779509358, -0.0339922309, -0.0111537008, 0.0120493295, -0.00925309397, -0.0110495584, -0.0343671478, -0.00469944673, -0.0154964589, -0.00820125081, 0.00411885045, 0.0130178584, 0.0172460582, -0.0210264456, 0.0153402444, -0.00527483644, 0.0319718607, 0.0253067166, 0.00435577566, 0.00926350802, -0.0388452895, -0.0418237746, 0.000124157828, 0.000315032172, 0.0166628584, 0.027452061, -0.01124743, 0.0177459456, 0.0113619873, 0.0295349173, -0.0049936506, 0.0025944591, 0.0189227592, -0.00999250822, -0.00650892919, -0.0108829299, 0.0253900308, 0.0225156881, -0.0311178882, -0.00138640194, 0.00026100807, 0.00976339355, 0.0590698346, 0.0213284586, 0.0170481876, 0.00801379327, -0.0107058864, -0.00229895371, -0.00102515635, -0.00600383617, -0.0017287716, -0.0484889187, 0.0122992732, 0.0048947148, 0.0204432458, 0.00321801472, 0.00826373696, -0.0279727746, 0.0283476897, -0.0234113168, -0.0235362891, -0.0527796075, 0.00275978609, -0.00633188663, 0.000754384906, -0.0291183461, -0.0406365469, 0.0139968013, -0.0201204028, -0.0310970601, 0.0101903798, 0.00682656514, 0.0167045165, 0.0267438889, 0.044656463, 0.00380381825, -0.0108204437, -0.0428235456, 0.00169883051, 0.0630272627, -0.0134552587, -0.0144237876, 0.00076414831, -0.0013551591, 0.0215367451, 0.0399075486, -0.0302847456, 0.00390275405, 0.00717544369, -0.0247651748, -0.01987046, -0.00472808629, 0.00646727206, -0.0267022308, -0.0454479493, 0.00238747522, 0.00821166486, -0.0214950889, 0.0124971438, -0.021807516, -0.041969575, 0.0110391444, -0.0708588064, -0.0182979014, -0.0276186895, 0.0112890871, 0.0088365227, 0.00487128273, -0.00277280388, 0.0129970303, -0.0153714875, 0.000528850476, 0.00355127174, -0.0182666592, -0.0336589739, 0.00393139338, 0.0199537743, -0.0240361746, 0.00300452183, -0.0218700022, -0.00499625411, -0.00456145778, 0.0174647588, 0.00405376125, 0.045989491, 0.0444065183, -0.0079773441, 0.00407719333, -0.0139759732, 0.0227031447, -0.0332840607, -0.00716502918, 0.0103830444, -0.000249292, 0.0013219635, -0.0419487469, 0.0305971745, 0.0252442304, -0.00428547896, 0.021828346, -0.0255150031, -0.0135802301, 0.0218908302, -0.0012731466, 0.0225365162, 0.0284310039, 0.0110287294, 0.0315969475, 0.011580687, -0.0390327461, 0.00139291084, -0.00071793492, -0.0263689738, 0.0151423728, 0.00529306149, -0.0293891169, 0.0125179728, -0.0279727746, -0.0100029223, 0.0109558301, 0.00321020395, -0.0181104448, -0.0342838317, -0.0613609776, -0.0012991823, -0.0115494439, -0.0232030302, -0.00420997525, 0.0139134871, 0.0110391444, 0.012892887, 0.0353252627, -0.0158193018, 0.000506069278, -0.0370748602, -0.0186103303, 0.00584762217, -0.0268688593, 0.0310137458, 0.0193080883, -0.0551540628, 0.0356376879, 0.0303888898, 0.0166003741, -0.0131011726, -0.00505613629, -0.0655683503, 0.00841995049, 0.00223646802, -0.000239691319, 0.0344296321, -0.000922315288, 0.0187457167, 0.0193393305, -0.00145149126, 0.00126403407, 0.00851368, 0.0265356023, 0.00832622219, -0.0279519465, 0.00374653959, -0.0318885446, 0.0203911737, 0.0151840299, 0.0244319178, -0.00777426502, -0.0225156881, -0.0190998018, 0.0269730035, 0.0108308587, 0.00331695029, -0.0120493295, -0.00987274386, 0.00337422895, 0.013226144, -0.0159546882, -0.0174439307, 0.00906563643, -0.0195788592, -0.000176229267, 0.00600904366, 0.0142884012, -0.0122472011, -0.0283060316, 0.00961759407, -0.0239528604, 0.0126429442, -0.0111224586, -0.00954990089, -0.00101929833, 0.00266866107, 0.0140801156, 0.00344712893, 0.0113515723, 0.00750870071, -0.00354085746, -0.00197350746, -0.00724313641, -0.00360855041, -0.0154756298, -0.00125947781, 0.0129762013, 0.0183812156, -0.00417873263, -0.0194434728, -0.00448855758, -0.0146633163, -0.0174439307, 0.0160067584, -0.0182666592, 0.011882701, -0.0184749439, 0.00275978609, -0.00384287187, -0.00489211129, 0.0177771877, 0.0250984319, 0.00158036803, 7.54629e-05, 0.026119031, 0.0263273176, 0.0482389778, -0.0251609161, -0.00689425785, -0.0081075225, 0.0409281477, -0.00910729356, -0.0136010582, -0.00140462699, -0.00650892919, 0.0311387181, 0.0020867628, -0.0210264456, 0.0299514886, 0.0599446334, -0.00540501485, 0.0134969158, -0.0108204437, -0.0107579585, -0.00886255782, -0.0440732613, -0.0252025742, 0.0253900308, -0.00600383617, 0.0014137394, 0.0217866879, -0.0259315744, -0.0296182316, -0.013569816, -0.0242236312, 0.0053946008, 0.0195163731, -0.0219116602, -0.00102190184, -0.0058163791, -0.00537897926, 0.00117225817, 0.026473118, 0.00733165815, -0.0239945166, 0.00378038618, -0.0313678309, -0.0131949019, -0.043281775, 0.0242444593, 0.0335340053, -0.0210160315, 0.020495316, -0.00106030458, -0.000236274136, 0.0154964589, 0.0187248886, -0.00453802571, 0.0633188635, 0.0233904887, 0.0137572726, 0.00296026096, -0.0167878307, -0.0398034044, 0.00274937181, -0.00713899359, -0.0097321514, -0.015236102, -0.0218491741, 0.00449636811, -0.00134083943, 0.00489211129, 0.0242236312, 0.00117876707, -0.0196621735, 0.0216408875, 0.0278269742, 0.0101799658, 0.0264939461, -0.000290786411, -0.0167565867, 0.0253692027, -0.0101383086, 0.0129970303, -0.00826373696, -0.0170898456, 0.0189956594, 0.00410322892, 0.0116848294, 0.029097518, 0.0135281589, 0.00479838252, -0.0144133726, 0.0096800793, -0.0268480312, 0.0157464016, -0.00475412188, -0.0172252301, 0.0128512299, 0.0248901453, 0.00547270756, 0.0173502024, 0.00700360769, -0.00561330048, 0.0154756298, -0.00144107698, 0.00355387549, -0.0143300584, 0.00859699398, 0.00470725773, 0.00596217904, -0.0324509181, 0.0147362156, -0.000958765275, -0.0232030302, 0.00640478637, 0.0200787447, 0.0255983174, 0.0127679156, 0.00388973602, 0.00385068264, -0.00564975059, 0.0235362891, -0.013569816, 0.00742017943, -0.0140072154, -0.0129241301, 0.0240778308, 0.0213284586, -0.0157047454, 0.00885214377, 0.0241819732, -0.0162254591, 0.0250151176, 0.00104207953, -0.010914173, -0.0021648698, 0.0064828936, 0.0254108608, -0.00614963658, 0.0275353752, -0.00196699845, 0.00530607905, 0.00762846507, -0.00232108426, -0.00752432225, 0.0365333185, -0.0150590586, 0.00262049492, 0.000947049237, -0.0184853598, 0.0148091158, 0.0033690217, 0.00431151455, 0.0291391741, -0.0319510326, -0.00753994379, -0.0334506892, -0.0135802301, 0.0151319588, 0.0120805725, -0.0157464016, 0.00567057915, 0.00165456987, 0.00227942714, -0.0137885157, 0.0131428298, 0.0159859303, 0.020484902, -0.000847462565, -0.0196101014, -0.00329612172, -0.0302222613, -0.0196830016, -0.00657662237, 0.00356168603, 0.00204510568, 0.000844208116, -0.00230416097, -0.0114557156, 0.0478640608, 0.0117681446, -0.0104923937, -0.00375955761, 0.0316177756, -0.0063475077, -0.016537888, -0.0145279299, 0.0384912044, -0.015860958, -0.0392202027, -0.00530607905, -0.0144446157, 0.0163191874, 0.00829497911, -0.0131532447, 0.00419175066, 0.00943013653, -0.00295245042, 0.00403032918, 0.00871155132, -0.00639957935, -0.0192456022, -0.00396263599, -0.0126950154, -0.0464060605, -0.00755556533, 0.00733165815, -0.028785089, -0.0108308587, -0.00463175401, -0.00794089399, -0.0252442304, -0.00738372933, 0.0175064169, -0.0113411583, 0.0101383086, 0.041636318, 0.0148195298, 0.00843036547, -0.0244319178, 0.012892887, 0.0212243162, 0.024140317, -0.0064464435, -0.0097529795, -0.00649330765, -4.6294761e-05, 0.00846681558, -0.0333257169, -0.00733165815, -0.0145071018, -0.000646011205, 0.0250567738, 0.00381683605, 0.00074266881, -0.0230572317, -0.0118722869, -0.00406938279, -0.0068838438, -0.00646727206, -0.0101383086, 0.0224323738, -0.0163920876, -0.0245152321, 0.0303055756, -0.0123096872, -0.0157047454, 0.0359917767, 0.016204631, 0.0255358312, -4.7677906e-05, -0.00983629376, -0.0126429442, -0.0181208588, -0.00711816503, 0.00568620069, -0.020193303, -0.0038350611, -0.00171965908, -0.0142988162, 0.0117473155, -0.0114140585, 0.0306804888, -0.00653496478, -0.00321280747, 0.00834184419, 0.0168190729, -0.0104976008, 0.0134448446, -0.018183345, 0.0109974872, -0.016537888, -0.0323884338, 0.00359032536, -0.0100497864, 0.00913333, 0.00959155802, 0.00676407944, 0.000734858098, -5.77667488e-05, -0.0117369015, 0.0201516449, 0.016871145, -0.00469163619, -0.0080919005, 0.00413707551, 0.00777947204, 0.0024109073, -0.028097745, 0.0084720226, -0.0268480312, -0.00586324371, 0.00476193288, 0.00498844357, 0.0120285014, 0.0356376879, 0.0011156305, 0.0369915478, -0.00129006978, -0.00530087203, 0.0375747457, -0.0101695508, 0.00218830211, -0.00868551526, -0.0364291742, -0.0153402444, 0.027764488, -0.0136531303, -0.00992481504, 0.0295557454, -0.0103205582, 0.00258534681, 0.0194851309, 0.031721916, -0.0097165294, -0.0260148887, -0.0080919005, 0.00719106523, -0.00650372216, -0.00464477204, 0.0142779872, 0.0154131446, -0.00222605374, -0.00451719714, 0.00197611097, 0.00175871269, 0.0181625169, 0.00631626509, 0.0103205582, -0.00273635378, -0.00189930561, 9.27522415e-05, 0.00713899359, 0.0157464016, 0.015860958, 0.0340547189, 0.0112890871, -0.0169023871, -0.0047020507, -0.0100029223, 0.00535815069, -0.00547791505, 0.0232238602, -0.00542063639, 0.00254238769, -0.0233071744, 0.0191935301, -0.00523317931, -1.02617341e-05, 7.17609437e-05, 0.0278478023, -0.0162671153, 0.0274728891, -0.00999250822, 0.0197663158, -0.00248510926, 0.00434275763, -0.00560288643, -0.0116119301, 0.0139655583, 0.0246818606, 0.00311647542, 0.00934161525, -0.0291183461, -0.0191935301, 0.00216747355, -0.0348045453, 0.0113099152, -0.0186832305, -0.028743431, -0.0117889727, -0.0327216908, 0.00725355092, 0.0225781742, 0.00405636476, -0.00582158612, -0.0145904161, 0.00870634336, -0.0194643028, 0.014559173, 0.0183708016, 0.0149340872, 0.0015777644, 0.00588407228, -0.0150903016, 0.00153740915, -0.0210576877, 0.000629088, 0.0170481876, -0.00193315197, 0.00605070079, -0.0283268597, 0.00949262269, -0.0119451871, -0.00511862198, 0.0269938316, -0.00110651797, 0.036054261, 0.0163816735, -0.0332424045, 0.00364500028, -0.0222449172, 0.0084720226, -0.0345129482, 0.0054883291, 0.0116535872, -0.00993523, 0.0365124904, 0.00379080046, -0.0129657872, 0.00434536114, -0.0222657453, -0.00362677546, 0.00479838252, 0.00762846507, -0.0193289164, 0.000990659, -0.0463227481, 0.0202141311, 0.0214950889, -0.0127783297, 0.00328570744, 0.0200995728, -0.00846681558, 0.000447814324, -0.00289517175, -0.0139343161, -0.014538344, -0.0196101014, 3.62872815e-05, -0.0230780598, 0.00782113, -0.00103166525, 0.0256399736, -0.0399492048, 0.0140697015, -0.0195892733, 0.000355712982, -0.00717544369, 0.0255566593, 0.0277228318, 0.0237029176, 0.00441826135, -0.015236102, 0.0233280025, -0.00386109692, -0.0114453016, 0.0227656309, -0.00980505068, 0.0141738448, 0.00785237271, -0.00857095793, -0.0121222297, -0.0088938009, -0.00943013653, 0.0114348866, -0.00800858624, -0.0124554867, 0.000523968833, 0.00363718974, 0.0132053159, 0.00611318648, 0.0187144727, 0.0257649459, 0.00398606807, -1.565194e-05, 0.00941451546, -0.015204859, -0.000461157644, 0.00149835553, 0.00795651507, 0.0122680301, 0.00851888675, -0.00666514365, -0.0243069455, -0.000607283087, -0.00451459317, 0.0126221152, 0.00940930843, 0.00564454356, 0.00991960801, -0.0121430587, -0.0128616439, 0.00775343645, -0.0110079013, -0.00700360769, 0.0344921164, 0.00518891821, 0.0164754018, -0.00682656514, 0.005451879, -0.024140317, 0.00121912244, 0.0262856595, -0.00240049302, -0.0141426018, -0.0130178584, -0.00800858624, -0.00720147928, 0.0140905296, 0.00547270756, -0.00473850034, 0.00527483644, 0.023161374, 0.000207146673, -0.0233071744, -0.00228984142, 0.00381943979, 0.00213492871, 0.00444950396, 0.000488820602, 0.00809710845, 0.0114453016, -0.0102060009, -0.00940410141, 0.00891463, -0.0291391741, 0.00532690762, -0.00232629129, 0.00968528632, -0.00422038976, -0.0284310039, 0.0160900727, 0.0124450726, 0.029076688, 0.00592052191, -0.0024148128, 0.00808669347, -0.0176105592, 0.0242028031, 0.0141321877, 0.0216408875, -0.00659745093, -0.000185179044, -0.00951865781, -0.0174231026, 0.00754515082, -0.00727437949, 0.00652455073, 0.00310345739, 0.020849403, 0.0113515723, -0.00862302911, -0.00423340779, -0.00747225061, -0.000693851849, 0.0206827745, -0.0244527459, 0.0209535453, -0.00244605565, -0.00995085109, -0.00208546105, 0.0114557156, -0.00958114397, 0.00056855497, 0.00120805728, 0.00175871269, -0.0106069511, 0.0110703865, 0.0232446883, 0.00536335772, -0.0247860029, -0.0247235168, 0.00377257541, 0.00775343645, -0.000772609899, -0.0106954724, 0.00657662237, 0.0315761194, -0.0111432867, -0.000918409904, -0.0141530158, -0.00805024337, -0.0104559436, -0.00587886479, -0.027452061, 0.0147153875, 0.032367602, 0.0253067166, 0.0159859303, 0.0128824729, 0.00567578617, 0.0180792026, -0.00196439493, -0.00915936567, 0.00464477204, 0.00315032178, -0.0117785586, -0.0103622153, -0.0376788899, 0.0103570083, 0.0134865018, -0.00432453258, -0.0112370159, 0.00555602182, 0.00773781491, 0.0204536598, -0.0214326028, -0.00638916483, -0.0128199868, 0.000227975252, 0.00982588, -0.0115182009, 0.0147466306, -0.0163296014, -0.00530087203, 0.00155042694, 0.0116744153, -0.000965925108, -0.0262440033, -0.0441982336, -0.00249031628, -0.0122680301, -0.0166316163, 0.0008103617, 0.0117056584, -0.0285559744, 0.00174569478, 0.00112148852, -0.00486867921, -0.0222032592, -0.00398086105, 0.0027259395, 0.0183603875, 0.00634230068, 0.00345754321, 0.0181104448, 0.00534773618, -0.0208806451, -0.0126741873, 0.0202453732, 0.00707130088, 0.0017092448, -0.0128824729, -0.0235362891, 0.00909167249, 0.0288475752, -0.0210056175, 0.0201099887, -0.0127366725, 0.000819474168, -0.0176730454, 0.0259107463, 0.00042438219, 0.00509519, -0.00525400788, 0.00383245759, -0.0219116602, -0.00610277196, 0.0180063024, 0.00508477539, 0.0261606891, -0.00621212227, 0.0154964589, -0.00209457334, -0.00670159375, 0.0190269016, -0.0232655164, -0.00407979684, 0.00737852231, -0.00901356526, 0.0163296014, -0.00943013653, -0.0080346223, -0.0100706154, 0.0148507729, 0.007269172, -0.0240361746, 0.00312168244, -0.00206593424, -0.0146008302, 0.00552998623, 0.00108959479, -0.00586324371, 0.0229322594, -0.00784195773, 0.00635792222, -0.0287642609, -0.000427962106, 0.0137364445, 0.0176626313, 0.00695153652, -0.00702443626, 0.0048660757, -0.00951865781, 0.0137364445, -0.00366062182, 0.00188108056, -0.000635596924, -0.0116640013, -0.0188186169, -0.0207348447, 0.0144237876, 0.0216408875, 0.0032909147, -0.00379080046, 0.00223256275, 0.00817521475, -0.00869072229, -0.0184853598, -0.0234113168, -0.000569856784, 0.0106850583, 0.0121118156, -0.01026328, 0.0116640013, 0.00493116491, -0.00258013955, -0.0348253734, -0.00558205787, -0.0251609161, 0.00309304311, -0.0115286158, -0.0146320732, -0.000294040889, 0.0169752873, -0.000645360327, 0.00906563643, 0.0169857014, -0.00848764367, -0.0103622153, 0.00522536831, 0.00390275405, 0.0216408875, -0.00923226494, 0.0108725158, -0.00156995375, 0.00425163237, 0.000255150022, -0.00705567934, -0.00196960196, 0.0108100297, -0.00918540079, -0.00693591498, -0.0119764302, -0.0124659017, 0.00873237941, 0.0332840607, -0.00927392207, -1.32009218e-05, 0.00358251459, -0.000182412739, -0.00259315735, 0.00462134, 0.0230155736, -0.00279883947, -0.0112682581, 0.0103257652, 0.0196205173, 0.0172564741, 0.00145800016, 0.00723272236, -0.00520714326, -0.014205087, 0.0145175159, -0.01387183, -0.0120909866, -0.0190685596, -0.0084720226, -0.0292433184, -0.00564975059, 0.000837699219, 0.00430630753, 0.00379340397, 0.00957073, 0.000485566125, 0.00123148947, 0.000227812518, -0.0117473155, 0.0287226029, 0.0202870313, 0.00547791505, -0.000518761692, -0.00979984365, -0.0167878307, 0.00630585058, 0.0159130301, 0.0216200594, -0.00298629678, -0.00454843976, 0.0119764302, 0.00362417172, -0.0156318452, 0.0146008302, 0.0273270886, 0.0249109734, 0.000202264971, -0.0288475752, 0.0159651022, -0.00411885045, 0.00135776261, 0.00927913, -0.0307221469, -0.018193759, -0.00563933654, 0.0119660152, 0.0127575016, 0.0126741873, 0.012257616, 0.0125283869, -0.00211540191, -0.00575389341, -0.00584241468, -0.00913333, -0.0200266745, 0.0149549162, 0.00462654699, -0.00647247909, 0.003306536, 0.0140280444, 0.0258899163, -0.00926871505, 3.70398739e-05, -0.0103778364, -0.00611318648, -0.000476453628, 0.0102112079, 0.0115911011, 0.00152569299, 0.00550395064, 0.00367624336, 0.0153610734, 0.013903073, 0.0229114313, -0.0110079013, -0.0177771877, -0.00514205405, -0.00412145397, 0.00416050758, -0.0114973728, -0.00236925017, 0.000130259941, -0.00424382184, -0.00612360053, 0.00252286089, -0.0201828871, -0.0119764302, -0.0242652874, -0.00056562596, -0.00582679361, -0.0332007483, -0.00308783608, 0.0140905296, -0.0279727746, -0.00263351272, -9.38099402e-05, -0.00208806456, 0.0204224158, 0.00928433705, 0.0275770314, 0.0147882877, 0.00918540079, 0.00112995016, 0.00645165052, -0.0169544592, -0.00618608622, 0.000596543367, -0.00800858624, -0.00143456797, -0.00727958651, -0.00735769374, -0.0240570027, -0.00262179668, -0.0106850583, 0.000404204504, 0.0242236312, -0.0245360602, -0.00618608622, -0.00642561493, 0.0219116602, 0.000894977769, 0.00441565784, 0.0116848294, -0.00497282203, -0.0264106318, -0.0116431722, -0.00109870732, -0.0129970303, 0.0222657453, 0.0260148887, 0.00833663624, 0.00467601465, -0.0308471173, -0.00350440759, -0.0140697015, -0.000801900111, 0.0044364864, 0.0106954724, -7.91241691e-05, -0.000380446931, 0.00191622879, -0.00293422537, 0.0137260305, -0.00687342929, -0.0176313873, 0.00713899359, 0.0402199775, 0.011580687, 0.0024148128, 0.0241611451, -0.0116952443, 0.005451879, 0.0258066021, -0.0109350011, 0.0112786731, -0.000290786411, -0.00691508641, -0.0127470875, 0.0197559018, -0.014538344, 0.00433234312, 0.016204631, -0.00128030637, 0.0080919005, -0.00587365776, -0.0113619873, 0.0100341653, 0.00331434677, 0.00196309318, 0.0154131446, -0.0385745168, -0.000156132941, -0.0376580618, 0.0166420303, 0.00191362516, -0.00750870071, 0.0140905296, 0.010580915, -0.00611318648, -0.00210368587, -0.00364760403, -0.0348670334, 0.00363198249, 0.0345129482, 0.00609235791, -0.00927392207, 0.0118098017, 0.013882244, -0.0206098743, 0.00798775814, 0.0164129157, 0.0301181171, -0.022828117, 0.00477495044, -0.005451879, -0.0147466306, 0.0113203302, -0.0137781017, -0.0188082028, -0.0131220017, -0.0196309313, 0.00669638626, -0.0130282724, -0.0331590883, 0.00582158612, 0.00580596505, 0.00444950396, 0.0248276591, 0.00650372216, -0.00872717239, -0.0218700022, -0.000571484, 0.00871155132, 0.0137989298, 0.0143196443, 0.00403813971, 0.011559858, -0.0235154592, 0.0147153875, -0.0139968013, 0.00148013048, -0.00584762217, -0.00505092926, 0.0179229882, 0.00526962895, -0.00168581272, 0.0382620916, -0.00209847884, -0.0112890871, -0.0017092448, -0.00934161525, -0.00743059348, 0.0124867298, -0.0228906032, -0.0184020456, 0.00151137332, 0.0161942169, -0.0147362156, -0.0192664303, 0.00246948772, 0.00541542936, 0.00372831477, 0.0197142456, -0.00350440759, -0.0196101014, -0.0192247741, 0.012236787, 0.00806586538, 0.00609756494, 0.0146945585, -0.0203286875, -0.00492075039, 0.0111953579, 0.0141738448, -0.00576430792, -0.00997688714, -0.00556643633, 0.0104090795, -0.0161109027, 0.00877403654, 0.0184124596, 0.0136010582, 0.00308262883, -0.0271812882, -0.00683697918, -0.00358251459, 0.00208415906, -0.00964883715, 0.00692029344, -0.0052227648, -0.0255566593, -0.0105600869, 0.0150069874, 0.00772219384, -0.000166303143, 0.0139239011, 0.0151527878, 0.00393139338, 0.0088000726, 0.0142363301, 0.0258274321, 0.00178865378, -0.0293682888, 0.0275145452, -0.0116744153, 0.0182458311, 0.0102268299, -0.014215502, -0.00540501485, 0.0118202157, -0.000767402758, -0.00151658047, -3.89315319e-05, -0.00187326979, -0.00425423635, 0.0111537008, 0.000252058293, -0.0301389452, -0.00749828666, 0.00897190813, -0.00921664387, 0.005295665, -0.0152569301, 0.0219533164, -0.0104871867, 0.0117993867, -0.011570273, -0.00154912518, -0.0245777164, 0.00966966525, 0.00508477539, 0.0169961154, 0.0149236731, -0.00419175066, -0.0167045165, -0.00659745093, -0.0141426018, 0.00627981499, 0.0024929198, 0.0270354878, -0.00859699398, -0.0191622879, 0.00514205405, -0.00732124364, -0.00414228253, -0.00195007527, -0.00934682228, -0.00693591498, 0.0221824311, 0.0173710305, 0.020516146, -0.0177667737, 0.00391837535, -0.00279363245, 0.000353434851, 0.00842515845, 0.0101643438, -0.00945617259, -0.0042724614, -0.0179646444, 0.0204015877, 0.00273114676, 0.00748787215, 0.00709733646, -0.023119716, -0.000813616149, -0.00547791505, -0.0011579385, -0.0302222613, -0.00328310393, -0.0247026887, -0.0115286158, 0.0206827745, 0.0155797731, 0.00148533762, 0.0126012871, 0.00364760403, -0.0133615304, 0.0186103303, 0.00862302911, -0.00513424352, -0.00282487529, 0.0117577296, -0.0185061879, 0.0079773441, -0.00981546566, 0.0117264874, -0.000362221908, 0.00846681558, -0.00576951494, 0.00871155132, -0.00609235791, 0.0084355725, -0.00359553262, -0.000996517, 0.00818563, -0.0331174321, 0.0245152321, -0.00811793655, 0.00813876558, 0.00163634482, -0.000400950055, 0.00748266513, 0.0308054611, -0.0197246596, 0.0152465161, 0.0194434728, -0.00655579334, 0.0175168309, -0.00112344115, -0.0204640739, -0.00343150762, -0.00481921108, 0.00683177216, 0.0104142865, 0.00792527199, -0.0212034881, 0.0300139748, -0.0110599725, -0.0212034881, -0.00224427879, 0.000243108501, 0.0172356442, 0.0261606891, -0.0144550297, 0.00507696485, 0.0466143489, -0.0300139748, -0.0121326437, -0.0121222297, -0.00827935804, -0.0167045165, -0.0202037171, 0.0170690157, 0.00600383617, 0.020859817, 0.0177667737, 0.00156865199, 0.0174543448, -0.00446252199, -0.00786799379, -0.00509258639, 0.0402824618, -0.00395742897, -1.50925798e-05, -0.0123930015, 0.0268688593, 0.0136218872, -0.0016467591, 0.00493637193, 0.016517058, -0.00447033253, 0.00337162544, 0.00660786498, 0.00437139673, 0.0293891169, 0.00641520089, -0.00618087919, -0.0124659017, 0.0172877163, 0.0126429442, 0.0262023453, -0.00304878247, 0.0116015151, 0.0231822021, -0.0240153447, -0.0183708016, -0.0316177756, 0.0170273595, 0.00995605811, -0.00995085109, -0.00922705792, -0.00506394682, 0.0379913189, -0.00485566119, -0.00523578282, -0.00244215038, -0.00291339681, -0.00996647216, -0.00172486622, 0.0101122726, -0.00408500386, 0.0168294869, 0.0290350318, 0.0142571591, 0.00293682888, 0.0148195298, -0.0177563597, 0.0088938009, 0.0367832594, 0.00775864348, 0.0111120436, 0.00315292529, 0.00905522238, 0.0147882877, -0.0146737304, -0.0064828936, 0.0134344297, -0.027764488, -0.00538418628, -0.0166524444, -0.00924268, 0.00489731831, -0.0120493295, 0.00469163619, 0.00624336489, -0.000711425964, -0.0218491741, 0.00645685801, 0.0155797731, -0.00995605811, 0.00153090013, 0.0218491741, -0.0100237513, 0.000799947418, 0.00466299709, 0.015538116, -0.00273895753, 0.00224948605, 0.00183681981, -0.00693591498, 0.00656100083, -0.00635271519, 0.007112958, -0.0351169743, -0.0114140585, 0.00167670019, 0.00434536114, -0.00158036803, 0.0148507729, -0.00980505068, 0.0264106318, -0.00328570744, -0.00531909708, 0.0193705726, -0.0151215447, 0.00921143685, 0.0160171725, 0.00232108426, -0.0201204028, 0.00253197341, -0.0055247792, -0.01554853, 3.21175e-05, -0.0188602731, 0.00521755777, -0.000997168, 0.00471767178, -0.00675887195, 0.0124138296, 0.00859178696, 0.00600904366, -0.0104455296, 0.00728479354, 0.00876362249, -0.0171731599, 0.00460311491, -0.0111537008, 0.0107996156, -0.0130595155, -0.00708692241, -0.0163816735, -0.00420216471, 0.0163400155, -0.0282227173, 0.000254661863, 0.0344504602, 0.00818042271, -0.00279883947, 0.0285768025, 0.00160119659, 0.0190789737, -0.000200800467, -0.0117369015, -0.00129332428, -0.0209639594, 0.0172981303, 0.0161629729, -0.0290142037, -0.0177147016, -0.00722230785, -0.0058528292, 0.0212868024, 0.00554040074, 0.0232655164, 0.0146841444, 0.00728479354, -0.00305398973, -0.000251407386, -0.041323889, 0.0096592512, 0.0119347731, 0.0171002597, -0.0156526733, -0.0129657872, -0.014538344, 0.00099781889, 0.013892659, 0.0170586016, 0.000276629493, 0.00495199347, 0.0117889727, -0.00917498674, -0.0232863445, 0.000697106298, -0.00465518609, -0.00303576468, 0.00875841547, -0.00990398694, 0.00957593694, -0.0165274739, -0.00516808964, 0.000304292451, 0.0130282724, -0.00669117924, -0.000736159913, -0.00422038976, 0.0138197588, -0.00701922923, -0.00537377223, 0.00947179366, 0.0254733451, 0.00438701827, 0.00313730398, 0.0141009446, -0.00480359, 0.00601425068, 0.00357210031, 0.00538939331, -0.00108568941, -0.000912551885, 0.000656425545, -0.0101018585, 0.0196830016, -0.0140176304, 0.0108412728, -0.0189748313, -0.0132990442, 0.00755556533, -0.0162983593, -0.00164545735, 0.0140801156, 0.0155068729, 0.00342630036, 0.00970090833, 0.0127366725, -0.00928954408, -0.00193835911, 0.00158687693, -0.00666514365, -0.00290037878, -0.00471506827, -0.0278061461, -0.0123513443, 0.007112958, 0.0138614159, -0.0193809886, 0.00108113314, 0.000140186065, -0.00476714, 0.00213102344, 0.0248901453, -0.00192664308, -0.00709733646, 0.00122107519, -0.00593614345, -0.0238903742, -0.0191206299, 0.00699840067, 0.0259732306, 0.00468903268, -0.0129345441, -0.00301493611, 0.00567057915, 0.00993523, 0.015881788, 0.0123409303, -0.00770136528, 0.00642040791, -0.00655058632, -0.0308679454, 0.00054154289, -0.00113125192, -0.0155901872, -0.0342630036, 0.0122888582, 0.00871675834, 0.0117056584, -0.0148507729, -0.00773260789, 0.000347902271, 0.00719106523, 0.0221824311, 0.00396003248, -0.0142363301, 0.0144758588, 0.0045640613, 0.0210160315, 0.0263689738, -0.0084720226, 0.0263898037, -0.00842515845, -0.00717544369, -0.00463956501, -0.00644123647, -0.00531128608, 0.0250984319, -0.0134552587, -0.00544667197, -0.0190269016, 0.00972694345, 0.0180063024, -0.00105574832, 0.014205087, -0.0176730454, 0.00704526482, -0.0157151595, 0.0154443877, 0.00325186108, -0.0157984737, -0.0270563178, 0.00606632186, 0.0104090795, -0.0199746024, 0.0160171725, -0.00655058632, -0.00642040791, -0.0263898037, -0.00129202241, 0.00134604657, -0.00023790136, 0.0157151595, 0.00104533404, -0.0124034155, -0.00863865111, 0.00679011503, -0.0192872584, -0.0103986654, -0.0275770314, 0.0160380024, 0.000830539386, 0.00392879, -0.00324405031, 0.0200995728, -0.0126846014, 0.000947049237, 0.0149757443, -0.0084564006, -0.0058528292, -0.0108621009, 0.00996126514, 0.00135646085, -0.0182562452, -0.022828117, -0.00283528958, -0.00513424352, 0.00678490801, 0.00319978967, 0.0170586016, 0.0120597444, 0.0110079013, 0.013236559, 0.00655058632, -0.00591010787, -0.00337943598, 0.00520193623, -0.00735248672, -0.0114973728, 0.0272854324, -0.00706609385, 0.0242652874, 0.00388973602, -0.0014137394, -0.0150278155, -0.00814918, 0.00443388242, 0.00868030824, 0.0119347731, -0.00331434677, 0.00578513648, -0.0114557156, 0.013569816, 0.00354346121, 0.00863344409, -0.0332007483, 0.0140072154, 0.00389754679, -0.0216200594, 4.83288e-05, -0.00670159375, -0.0162358731, -0.00443127891, -0.00385328615, -0.0267438889, -0.00731603662, -0.00323363603, 0.0114140585, 0.0190477315, 0.0157359876, -0.00988315791, 0.0140592875, -0.0235154592, 0.0103570083, -0.007441008, 0.00915415771, 0.0109974872, 0.00351742539, -0.0464477204, -0.00391577184, 0.0122784441, -0.0159130301, 0.0219949745, -0.028743431, 0.00743580097, 0.0103778364, 0.00247860025, -0.0287642609, -0.0176209733, -0.00124971441, -0.00551957218, 0.00871675834, -0.0117889727, 0.0274104029, -0.00605590781, -0.0158088878, -0.0168294869, 0.00211670389, -0.000454648718, 0.00616005063, 0.0233280025, -0.00400689663, 0.00953948684, 0.00331695029, -0.0504051484, 0.00454583624, -0.0111328727, 0.000933380448, 0.00839912239, -0.0184332877, -0.026119031, -0.0137989298, 0.022140773, 0.00148794125, 0.00668076519, 0.000774562592, 0.0106434012, 0.0232238602, 0.0149965733, -0.00192794483, -0.00654017227, -0.01321573, 0.000635922363, -0.010903758, -0.00656620786, -0.00500666862, -0.0167670026, 0.00215055025, -0.00177433412, 0.0139759732, 0.0139759732, -0.0258274321, -0.0113411583, 0.00826373696, -0.0126950154, -0.0174647588, 0.000882610795, 0.016517058, -0.0105444659, -0.022786459, 0.00272073247, -0.0160171725, -0.00178344664, -0.0211097598, 0.00549874362, 0.0100966515, -0.0134865018, 0.00440784683, -0.014861187, -0.0219116602, 0.0187144727, -0.00874279346, 0.0103830444, 0.00235623238, 0.00480879704, -0.0108621009, 0.0338256024, -0.00881569367, 0.00243433961, 0.0165899582, -0.013892659, 0.00595176499, -0.0068109436, -0.0129553732, 0.00277801091, -0.0172460582, 0.00248641102, -0.0156943295, -0.0164962299, 0.0211618301, -0.022786459, 0.0114661297, -0.000693201, 0.00820645783, 0.0140592875, -0.0058892793, -0.00155823771, 0.0180583727, 0.0210472737, 0.0153298303, 0.00320760044, 0.00711816503, -0.0136531303, 0.0043297396, 0.000613466604, -0.00764408661, 0.0180167165, -0.0191102158, 0.0040641753, 0.0032414468, 0.0232238602, -0.000608259463, -0.02249486, 0.00535815069, -0.0159442723, 0.00123279123, -0.000966576, 0.0184020456, -0.0154860448, 0.00701402221, -0.0205578022, -0.00715982215, -0.00652975775, 0.00146711268, -0.0156318452, 0.00324665383, -0.00111172511, -0.00392879, -0.00159078231, 0.00588407228, -0.00341328257, 0.00388713251, 0.0119972583, -0.0118618729, -0.00737331528, 0.00844077952, 0.00833663624, 0.00636312924, 0.00637354376, -0.0125179728, 0.0313053466, -0.0210368596, -0.00248120376, -0.00516027911, 0.00119048322, -0.00685780775, 0.00186545914, 0.0268896893, -0.00386370043, 0.000562046, -0.0213909447, -0.022786459, -0.0287642609, -0.00332215754, 0.0108621009, 0.0153819015, -0.00342369685, 0.0047931755, 0.0280769169, 0.0102112079, -0.0157255735, -0.0102997301, 0.0152256871, -0.00380381825, -0.00754515082, -0.0116640013, -0.00905522238, -0.0114348866, 0.025494175, -0.00706088636, -0.0120701585, 0.00886255782, 0.0123096872, -0.0152777592, 0.00651413621, -0.0131636588, -0.0206619445, -0.00844598655, -0.00784716476, 0.0149445012, 0.0026764716, 0.00416831812, 0.0203703456, -0.000480358984, 0.0260357168, -0.00785237271, 0.0229114313, -0.0169544592, 0.0136218872, 0.011257844, 0.0067484579, -0.00152439123, -0.015881788, 0.00366582908, -0.00391837535, -0.000676277734, -0.00520453975, -0.00922705792, 0.00437920773, -0.0361792333, -0.00825332198, -0.0110599725, -0.00676928647, 0.0240778308, -0.00211149664, 0.0113307443, -0.00664952211, -0.0162671153, -0.0265772603, -0.0109454151, -0.00819083676, -0.0111745298, -0.00412405748, 0.0124971438, 0.00167800195, -0.000654147414, 0.013903073, 0.0224323738, 0.00874800049, 0.0018537431, 0.0010401269, -0.0258899163, 0.00551957218, 0.015860958, 0.00583200064, -0.0112057729, 0.0123096872, -0.00367884687, 0.00723272236, -0.019505959, 0.00121782068, 0.0182979014, 0.0138301728, 0.0120076723, 0.0162254591, -0.00980505068, -0.010575708, 0.0183395594, -0.0157151595, -0.00668597221, -0.0389286056, 0.0157776438, 0.00232629129, -0.0109870723, -0.00694632949, -0.00838350132, 0.00210628961, 0.0178396739, 0.000988706364, 0.00342890387, -0.0168919731, 0.00541542936, -0.0115077868, -0.0123096872, 0.00437139673, 0.00386109692, 0.0128616439, -0.0243069455, -0.0167357586, 0.000826634, 0.00262960745, 0.018527016, -0.00244996091, 0.0128408158, -0.0240570027, -0.010903758, 0.00174439303, 0.0197454877, 0.0022638056, 0.0274104029, 0.0115911011, 0.00987274386, 0.000193315194, 0.0116744153, 0.0107267154, -0.0230155736, -0.0169857014, 0.0106642293, -0.00345233618, -0.00536856474, -0.00839912239, -0.00857095793, -0.000572785793, -0.00264913426, 0.0151319588, -0.0193809886, -0.00672762934, 0.00810231548, 0.00793568697, 0.0182874873, 0.00862302911, 0.0217033736, 0.000246688433, -0.007112958, -0.00969049428, -0.0123825874, 0.00187457167, 0.0194018167, -0.0105236368, -0.0115077868, 0.00449897209, -0.00813355763, -0.00149184663, -0.0158088878, -0.00121196266, -0.00940410141, -0.00356689328, -0.0101643438, -0.00807627942, 0.0238487162, 0.00283789309, -0.011226601, -0.0191935301, 0.00318156462, 0.00799817219, 0.0132886302, -0.0152673442, -0.0100081293, 0.00536856474, -0.0232030302, -0.00775864348, -0.00301493611, 0.00746183656, 0.000877403654, -0.0044364864, -0.0201828871, -0.0109662442, -0.00936765131, 0.0380121469, 0.00365281105, 0.0206202883, 0.00546750054, -0.00881048664, 0.00389494328, 0.000150193548, 0.00550915767, 0.0102841081, -0.000439352734, 0.0302430894, -0.00474631134, -0.00328570744, 0.0131011726, 0.000651218346, 0.0224740319, 0.0178396739, -0.00443909, -0.0169336312, 0.0132782161, -0.0076701222, -0.027431231, -0.00354866823, 0.00909687951, -0.000620951876, 0.0304097179, 0.00713378657, 0.00823249388, 0.00802941527, 0.00549353613, -0.00600904366, -0.0084928507, 0.0181104448, 0.00761805102, -0.00858658, -0.0058163791, -0.0130803445, 0.0190685596, -0.0112890871, 0.00642040791, -0.03505449, 0.010268487, 0.0118410438, 0.00706088636, -0.000937285833, 4.87356083e-05, -0.022786459, -0.00878445059, 0.015215273, -0.00253457716, -0.00566537213, -0.010580915, 0.0117160724, -0.00122498046, 0.0105444659, -0.0368874036, 0.00262309844, 0.0149653303, 0.000539590255, -0.0164441597, 0.010924587, 0.00676407944, 0.00980505068, -0.00456926832, 0.00313990749, 0.00215705927, 0.0283060316, 0.00503270421, 0.00424642535, 0.0173710305, 0.0229322594, 0.0207973309, 0.0153923156, -0.00344452541, 0.00140462699, 0.0133823585, -0.00281446101, 0.0156214302, -0.00202557887, 0.00381162902, -0.0123409303, -0.0217450317, 0.00406938279, 0.00466820411, 0.00432453258, 0.000507696474, -0.00624336489, 0.006941122, -0.0169752873, 0.0120805725, 0.0263898037, 0.0249734595, -0.00459790742, 0.00919060782, 0.00910729356, 0.000488820602, 0.00329612172, -0.0127783297, 0.010914173, -0.0339089185, -0.0109974872, -0.00282227178, 0.0137781017, -0.00297327898, 0.026764717, -0.00202297512, -0.00746704359, -0.000108292312, 0.0138510019, -0.00115989125, -0.00936765131, -0.000711425964, -0.0292016603]
|
23 Jan, 2023
|
C++ Map of Functions
23 Jan, 2023
Prerequisites:
Functions in C++
Map in C++
Maps in C++ are a very useful data structure for storing key-value pairs. A map is the best way to store where we can directly find and access the value using a key with the best time complexity.
However, did you know that you can also store functions as values in a C++ map? That’s right – it is possible to use a map to store and quickly access a set of functions that need to be called at different times in a program. Let’s check the map of functions.
Map of functions
Map of functions is the type of map where rather than the value we attach a function with the key. This can be especially useful if you need to call a variety of functions at different times in your program, as it allows you to easily associate a name with each function and quickly look up and call the function you need.
Syntax:
std::function<return_type(arg_type1, arg_type2, ...)> var_name;
In this code, return_type is the return type of the function, and arg_type1, arg_type2, etc. are the types of the function arguments.
To create a map of functions, we will first need to define the function signature that we want to use. In this case, we want to store functions that take two long arguments and return a long value. We can use the function template from the functional header file to define a variable that can store such a function:
// first create a function template
using func=function<long(long,long)>;
// create a map object
unordered_map<string,func> mp{
{"+", plus<long>()},
{"-", minus<long>()},
{"/", divides<long>()},
{"*", multiplies<long>()}
};
In this code, the functions plus, minus, divide, and multiplies are added to the map object map with string keys “+”, “-“, “/”, and “*”, respectively.
To call a function stored in the map, you can use the array access operator [] to retrieve the function pointer and the function call operator () to call the function.
For example:
long result = map["+"](2, 3); // 5
long result1 = map["-"](2, 3); // -1
long result2= map["*"](2, 3); // 6
long result3 = map["/"](6, 3); // 2
Using a map to store functions has several advantages. It allows you to easily add or remove functions at runtime, and it also allows you to easily associate a name with each function, which can make it easier to understand and maintain the code. Let’s understand it with one problem.
Problem Statement:
You have been given an array of strings called tokens that represent an arithmetic expression written in Reverse Polish Notation (RPN). Your task is to evaluate this expression and return the result as an integer. Each operand may be an integer or another RPN expression. When dividing two integers, the result will always be truncated toward zero. You can assume that the input represents a valid RPN expression and that there will not be any division by zero.
Let us check some test cases to understand.
Case 1:
Input: ["2", "1", "+", "3", "*"]
Output: 9
Explanation: ((2 + 1) * 3) = 9
Case 2:
Input: ["10", "6", "9", "3", "+", "-11", "*", "/", "*", "17", "+", "5", "+"]
Output: 22
Explanation: ((10 * (6 / ((9 + 3) * -11))) + 17) + 5 = 22
Example:
C++
// C++ Program to implement
// map of functions
#include <bits/stdc++.h>
using namespace std;
// Define a type alias for a function that takes two longs
// and returns a long
using func = function<long(long, long)>;
// Create a map that maps strings to functions
map<string, func> mp{
// Plus function from functools
{ "+", plus<long>() },
// Minus function from functools
{ "-", minus<long>() },
// Divides function from functools
{ "/", divides<long>() },
// Multiplies function from functools
{ "*", multiplies<long>() }
};
// Function to evaluate a Reverse Polish Notation (RPN)
// expression
int evalRPN(vector<string>& A)
{
// Create a stack to store the operands
stack<long> s;
// Iterate over the elements in the RPN expression
for (auto i : A) {
// If the element is not an operator, it is an
// operand Convert it to an integer and push it onto
// the stack
if (!mp[i]) {
s.push(stoi(i));
}
// If the element is an operator, pop the top two
// operands from the stack Perform the operation and
// push the result back onto the stack
else {
auto num1 = s.top();
s.pop();
auto num2 = s.top();
s.pop();
s.push(mp[i](num2, num1));
}
}
// Return the result, which is the top element of the
// stack
return s.top();
}
int main()
{
// Test the evalRPN function with an RPN expression
vector<string> A
= { "10", "6", "9", "3", "+", "-11", "*",
"/", "*", "17", "+", "5", "+" };
int answer = evalRPN(A);
cout << answer << endl;
return 0;
}
Output
22
Time complexity: O(N) // here N is the size of vector A;
Auxiliary space: O(N).
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions
|
https://www.geeksforgeeks.org/cpp-map-of-functions/?ref=ml_lbp
|
Pandas
|
C++ Map of Functions
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0329168029, 0.0213387311, -0.00122087658, 0.00189049204, 0.0172082428, -0.00799408089, -0.0106947832, 0.0241982974, -0.0249735583, 0.0214531124, -0.00594154652, 0.0506334156, -0.0212878939, -0.0314679556, -0.0241474621, 0.0101165157, -0.0239695329, 0.0217962619, -0.0322813429, -0.00979878567, -0.00743487617, 0.00980514, -0.0182503965, -0.00526478188, 0.0163567271, -0.00789876189, 0.0160135794, -0.0146791143, -0.0032694391, 0.0278077088, 0.0491083115, 0.0104406, 0.000535374624, -0.00346325431, -0.000822125759, 0.00281349709, 0.0345944166, 0.0263588615, -0.0388647057, -0.0026736958, 0.0149332983, 0.0215929151, 0.0111967968, 0.00363800582, 0.000590977375, 0.00445139408, 0.0108155208, -0.0165219475, -0.0223173387, 0.0162804723, 0.0257615279, -0.0276551973, 0.0419403277, -0.00325990724, 0.0305528939, -0.00575090852, -0.0119847665, -0.00540776039, 0.0083118109, -0.0123152053, -0.00531244138, 0.00838171132, 0.0119529935, -0.02747727, 0.00292629097, -0.0044450392, -0.0310866795, 0.0243508089, 0.00614171615, -0.0120165395, -0.0307308231, 0.0425503701, -0.027095994, -0.0131285936, -0.0182631072, -0.0105549823, -0.000552055426, 0.0198009182, 0.00474688271, 0.0241474621, -0.0114446254, 0.0469985865, -0.0102563165, -0.0256979819, 0.0245414469, 4.13296902e-06, -0.011978412, -0.0525143743, 0.0297903419, 0.0252531618, -0.0159246158, -0.0313662812, -0.0352807119, -0.00306926947, 0.0103643443, -0.00747935846, 0.00326626189, -0.0193179697, -0.0358399153, 0.0486762, -0.020258449, 0.0225715227, -0.0104533089, 0.0479644835, 0.0422707684, -0.00610994315, 0.00831816532, -0.000735941576, -0.0497946069, 0.00763186859, -0.0193688069, -0.0223300476, -0.0107074929, 0.00665326091, -0.0329168029, 0.0102690253, 0.000165219477, -0.0466681458, 0.0242999718, 0.00629422627, -0.0182249788, 0.0134971598, -0.0016744358, -0.00657700608, -0.0271214116, 0.0133192316, 0.009392092, -0.00515039917, -0.00577950431, -0.0439738, -0.0310612619, -0.0123406239, 0.00170144287, -0.0338572823, 0.00710443733, 0.0157339778, -0.0179835036, 0.0343656503, -0.0162169263, -0.0207541082, -0.0229909252, -0.0329422206, 0.009137908, -0.0155433398, 0.013802181, -0.00834358297, 0.0242618434, 0.0531244166, -0.00984962285, 0.0141834561, -0.026079258, 0.0133065218, 0.0114763984, 0.00580174522, 0.00408600457, -0.0028659224, -0.00113906118, 0.00382864359, -0.0190256573, -0.0264859535, 0.00665326091, -0.0513959639, 0.0153908292, -0.00151477661, -0.0232959464, 0.0204617959, -0.00127091899, 0.00838806573, -0.0352807119, 0.0328913853, 0.0206015967, 0.0331964046, 0.0110125132, 0.0126392897, -0.00382864359, -0.0162804723, 0.0374666937, 0.0451430455, -0.011406498, 0.0226096492, -0.00221616495, -0.0299174339, 0.0237788949, 0.00302955322, 0.0164075643, -0.0265622083, 0.00110569957, -0.0563271306, 0.0505317412, -0.0385088474, -0.0165854935, 0.0355857313, -0.0151874823, 0.00869308598, 0.013039629, -0.00417179149, -0.0284177493, -0.00415590545, 0.0220885724, 0.0327642933, -0.0105168549, -0.0471765138, -0.0108282305, 0.020449087, 0.00127727364, -0.0266130436, -0.00506778946, -0.0182631072, 0.0338318646, -0.0055856891, 0.00257361098, 0.0538869686, -0.0249100123, -0.0461597778, 0.00537281, 0.0102245435, -0.0212370567, 0.0215547867, 0.00648486428, -0.034441907, 0.0305274744, 0.0202203225, 0.0423724391, -0.011724228, -0.0374921113, -0.017386172, -0.0080894, 0.0345944166, 0.0242745541, -0.0169921871, 0.0372887626, 0.0102054803, -0.017004896, -0.019686535, 0.0126837716, -0.0144249313, -0.0368566513, -0.0119402846, -0.00829274673, 0.0348994359, 0.00294058886, 0.00495022954, -0.0163948555, 0.00756196817, 0.0175005551, 0.0348740183, -0.0102054803, 0.0405931547, -0.00177452073, 0.0228892509, 0.0341623053, -0.00304226251, 0.0239695329, 0.0103643443, 0.0110760592, 0.00813388173, 0.00207159808, -0.000214467582, -0.0130777564, 0.00751113147, -0.0456005745, 0.0293836482, -0.0191908777, 0.0353315473, 0.00709172804, 0.0164329838, 0.0164202731, -0.0331709869, -0.0316458829, -0.055462908, 0.0240457878, -0.018657092, -0.0100974515, 0.00999577809, 0.0462868698, -0.0371108353, -0.0456768312, 0.00511862617, 0.0259775855, -0.0306291487, 0.0190383662, 0.00186825101, 0.0142851295, 0.0214912407, 0.0231942721, -0.00448634429, -0.0158991963, -0.00678035291, -0.0218598079, -0.0221648272, -0.01853, -0.00440373458, -0.0107138474, -0.00214149849, 0.0191146228, 0.017958086, -0.00500106625, -0.058157254, -0.0147045329, 0.0333997533, -0.000797898858, 0.0115081714, 0.000954777934, -0.0301462, -0.0418132357, 0.00202552718, 0.00747935846, -0.0255200546, -0.00757467747, -0.0330184773, 0.0317729749, -0.0289769545, -0.040771082, -0.000768111669, -0.00836264715, 0.0155941769, 0.0299428515, 0.0309087504, -0.0105931098, -0.0242618434, -0.0101800617, -0.00420991937, -0.0032853256, 0.039423909, 0.0148570435, -0.0142851295, -0.020067811, -0.011692455, -0.004537181, -0.0179453772, -0.00532515068, -0.00785428, -0.0511163622, 0.0142851295, -0.0111904424, -0.0395764187, -0.00231148396, 0.0298665967, 0.00641178666, 0.00630058115, 0.0028659224, -0.0113238888, 0.00966533925, 0.026333442, 0.0191273317, -0.0650710538, -0.018911276, -0.0196484085, -0.0367041416, 0.0444059111, 0.000721246528, -0.00163630827, 0.0311629344, 0.00616078, 0.018021632, -0.0284940042, -0.0515230559, -0.0501758829, -0.0168650951, 0.0164329838, -0.0235882569, 0.0330947302, -0.0189366937, 0.0077144783, -0.039042633, -0.0317221396, -0.0318746492, -0.0214404035, 0.0028818089, -0.036170356, 0.0152637372, -0.00885195099, 0.00890914258, -0.0181868505, -0.0168396775, -0.00986868609, 0.0175895188, -0.00248941267, -0.0330184773, 0.00248305802, -0.04064399, 0.00874392316, -0.0241093338, 0.0102054803, -4.08022106e-06, -0.00165219477, -0.00309151062, -0.0364499576, -0.00853422098, 0.0138530172, -0.0337556079, 0.0226604864, 0.0145774409, 0.00773989689, 0.0080576269, 0.0122453049, -0.0444059111, -0.0455497392, -0.0236136764, -0.0647152, 0.0351282023, 0.00335522625, -0.0224698484, 0.0218343884, -0.0454734825, 0.0183139425, -0.00537598738, -0.00872485898, 0.0336539373, 0.0339335389, 0.0201821942, -0.0125630349, -0.034187723, -0.0284940042, 0.027731454, 0.0195086077, -0.0538361296, 0.0513705462, 0.0141580384, 0.0290023722, -0.00789240748, -0.020385541, -0.0289769545, -0.00253548357, -0.0218979344, 0.013357359, 0.0126329353, -0.00484537892, 0.0230926, -0.0103516355, 0.0108663579, -0.0013845074, 0.0137513438, 0.0383817554, -0.00878205057, -0.0613091327, -0.0038635938, 0.039754346, -0.0476594642, -0.0179962143, 0.0230163429, 0.0354586393, -0.00297871651, -0.0368566513, -0.00135750044, 0.0577505603, -0.037263345, -0.0102436077, -0.0217835531, 0.011501817, -0.0122262407, -0.00559839839, -0.0239695329, 0.00594790094, 0.0333489142, 0.035661988, -0.00905529782, -0.00760645047, 0.0472019315, -0.030349547, 0.0521585159, 0.0265622083, 0.00929041766, 0.00516310846, 0.00136464927, 0.0137005076, 0.0142597118, -0.00624338957, -0.00176816608, -0.0152764469, 0.0123723969, -0.00516628567, 0.0105232093, 0.0356111526, 0.0235882569, -0.00320589333, 0.000666041, -0.0530735776, -0.0158229414, -0.0151112275, 0.0435416847, -0.0226731952, 0.0153018655, -0.0110315774, -0.00886466, -0.0111268964, 0.0317221396, -0.00741581246, 0.00706631, -0.00833087415, 0.020512633, -0.00436878437, 0.00944928266, -0.0238551497, 0.00793688931, 0.0163313095, -0.019622989, 0.0187968928, 0.0231815632, -0.0107901022, 0.0521076806, -0.0068693175, -0.0333743319, 0.0473036058, 0.00269117113, -0.0699513853, 0.0250879414, 0.0192925502, -0.0284940042, -0.0238805693, 0.0216945875, -0.00655158749, 0.0206905622, 0.0305783115, -0.00239727111, -0.0197755, -0.0288752802, -0.0230290536, -0.00609405665, 0.0065706512, -0.0109934499, -0.00561428489, -0.00617031194, 0.0330438949, -0.024986269, 0.0045562447, 0.0164584015, -0.00225588121, 0.0204363782, -0.00684389891, 0.00190161262, 0.0301207807, -0.0123469783, -0.0116543276, -0.00489939284, -0.0304512195, -0.0184283257, 0.0152891558, -0.0439738, 0.00307085807, 0.0128617007, -0.0300191082, 0.0145266047, 0.0122389505, -0.0163567271, 0.0166998766, 0.011946639, -0.0526160486, -0.0147172427, -0.00413048686, -0.0182376876, -0.00446410291, 0.0111713782, 0.00167602452, -0.0129570197, -0.00662148837, -0.0160008706, -0.0620208494, -0.029586995, -0.013357359, -0.0147299515, 0.0112031512, 0.0243381, 0.0235247109, 0.00986868609, -0.00088328874, -0.0128235733, 0.0323830172, 0.00812752731, -0.0119529935, 0.000930948183, 0.011374725, -0.00417496916, 0.0181614328, -0.012912537, 0.0300699435, -0.00784157, 0.00768906, -0.0305274744, -0.0259648766, -0.0121499859, -0.0221902467, -0.00142342935, 0.0345181599, -4.00885583e-05, -0.027731454, -0.0126075167, -0.0279602185, -0.0133446502, 0.0178691223, -0.0111014778, 0.0218979344, 0.00129395444, 0.0227494501, 0.0276551973, -0.00377462944, -0.0124359429, -0.0298920162, -0.0205634702, -0.00292946841, -0.0207286887, -0.00688838121, 0.0193306785, 0.0202330314, -0.00384453, -0.000437672745, 0.0213768575, -0.00583351823, 0.00687567191, 0.0121245673, -0.0256725643, -0.0108218752, 0.000140098971, -0.00822920073, -0.000982579309, 0.00533468276, -0.0213260222, 0.037136253, -0.0256344359, -0.0068693175, -0.0107837478, -0.0463122912, 0.00191908772, 0.00105089112, -0.0016728472, 0.00909342524, -0.0257996563, -0.0137513438, -0.0150603903, -0.0538869686, -0.0231180172, -0.0265622083, -0.000359828962, -0.0329168029, 0.0305528939, 0.03769546, -0.0254819263, 0.0490828939, -0.0340860486, 0.0635967851, -0.0315696299, 0.0141326198, -0.00145123072, 0.0861174762, -0.0100084869, -0.0301207807, -0.00561428489, 0.00934125483, -0.00858505815, 0.0159246158, -0.00271182344, 0.029714087, 0.0152891558, 0.0222792104, -0.002189158, -0.020766817, 0.00613853894, -0.0104215359, -0.0513959639, 0.0123279141, -0.00109219609, 0.0137513438, -0.0100084869, 0.00336158089, 0.000628310605, 0.000178921575, -0.0190002397, 0.0198644642, 0.0227621589, 0.013103175, -0.0241982974, -0.00717433775, -0.0268163923, 0.0269180648, 0.00497247092, -0.0286465157, -0.0352807119, 0.0448380224, -0.00703453692, -0.0129697286, -0.016877804, -0.0110061588, -0.000495658431, -0.02620635, -0.00834358297, 0.00264510023, 0.00401610415, -0.00830545556, -0.0229019616, -0.0517518222, -0.00512180384, -0.0518534966, 0.00315664522, 0.0171065703, -0.011438271, -0.00791782513, 0.00608134735, 0.00938573666, 0.00343148131, 0.00152271986, -0.00019629742, -0.0232705269, -0.0134590324, -0.0220123176, -0.000273247599, 0.0195340253, -0.00975430384, -0.00274041924, -0.0534802713, 0.00757467747, 0.00867402274, -0.0118958019, -0.0202965774, 0.0220123176, 0.0317475572, 0.011342952, -0.0145647321, -0.00432112487, -0.00260061817, -0.0594790094, -0.0111014778, 0.0298157595, -0.000197191024, 0.0123469783, 0.00882017799, -0.0172845, -0.0111078322, -0.00617031194, -0.0532260872, -0.0131540122, -0.0163058918, 0.00507414434, 0.00210972549, -0.000118652206, -0.0199915562, 0.00581127731, 0.0359670073, -2.17198085e-05, -0.011470044, 0.0217072964, 0.0244524814, -0.00373332459, -0.00293582305, 0.0363228656, 0.0224825572, 0.0124867791, 0.0320271589, -0.004600727, -0.0584622771, 0.0066341972, 0.0110315774, 0.0367804, 0.0239186957, 0.00748571288, -0.00938573666, 0.0102563165, 0.00271341205, -0.0192798413, -0.004505408, -0.00580174522, -0.0121245673, 0.0183266532, -0.017068442, 0.0127282543, 0.0142597118, -0.0255327635, -0.0450667888, 0.0199153014, 0.0225461032, 0.00248623546, -0.028443167, 0.0280618928, 0.0105740465, 0.0115844272, -0.00681212591, -0.0244524814, 0.0233594924, 0.0235120021, 0.0246177018, 0.0401610397, 0.00488986075, 0.0160135794, 0.0241601709, 0.0385851, 0.00773989689, 0.00772718759, 0.0109108398, 0.00268640509, 0.0352807119, -0.0264351163, 0.01294431, -0.0155433398, 0.0370345823, 0.0383055, 0.0155306309, -0.0285194237, -0.0137132164, -0.0290277898, -0.0193560962, -0.00962085743, 0.00388901215, 0.00266416394, -0.0175259728, 0.00490257, 0.0450413711, 2.13474686e-06, 0.00568418531, 0.0337810293, -0.00544588827, 0.0217072964, -0.00795595348, 0.0126456441, -0.00867402274, 0.012848991, 0.020512633, 0.00643720478, 0.00371108367, 0.00948105566, 0.000639828271, 0.0279348, 0.0244651921, -0.027350178, 0.0317221396, 0.00525207305, -0.0142597118, 0.0363482833, -0.00162995362, -0.0022368175, 0.0172845, 0.000602097891, 0.0351027846, -0.00451176241, -0.0331455693, 0.0245668646, -0.00911884382, 0.02747727, 0.0641559958, 0.00751113147, -0.0140309464, 0.0408473387, -0.0117178736, -0.0252150334, -0.0158229414, -0.00149332988, -0.029586995, -0.00463885441, 0.000942068757, 0.00871215, -0.037771713, 0.00132969907, -0.000685104809, 0.0298665967, 0.00869944, 0.00029290712, 0.00649757357, 0.0152129009, -0.0140690738, -0.00772083318, 0.0057922136, 0.0228384156, 0.0213260222, 0.0144122215, -0.00151318801, 0.00135035149, 0.0247829203, -0.0216437504, -0.0173099171, -0.0165982023, -0.0138784358, -0.0300699435, -0.018275816, 0.00463567721, 0.036678724, 0.00757467747, -0.0103643443, -0.0183774885, 0.00775896059, 0.00683118962, 0.0281635653, -0.000100531681, 0.028951535, -0.0337556079, -0.0129379556, -0.0190892033, -0.0176149383, 0.0246049929, -0.0191400405, -0.0335014239, 0.000306410628, -0.00760645047, 0.0326880366, 0.00131937279, -0.00500106625, -0.0190892033, 0.0108218752, -0.0339589566, 0.00952553842, -0.0126456441, 0.0220504459, -0.00873756874, 0.00942386501, 0.00814023614, -0.00595425582, -0.00955731142, 0.0176149383, -0.00834993832, 0.0106503014, 0.00934760924, -0.00422580587, -0.0255708918, -0.0110633504, -0.024922723, -0.0281889848, -0.0122325961, 0.0161152538, 0.00731413905, -0.01789454, -0.0158737786, 0.0167507119, 0.0329422206, -0.0152510284, 0.0219996087, -0.0249735583, 0.0305528939, -0.0126583539, 0.00515993126, -0.0144884773, 0.0130650476, 0.00789876189, -0.00679941662, -0.0146155693, 0.011342952, 0.0067739985, 0.0153654115, -0.00379687059, 0.0123533327, 0.00888372399, -0.0495150052, -0.0742216706, -0.029459903, -0.00360941, 0.00181105966, 0.0295361578, -0.00479771942, -0.0525143743, 0.00407965, -0.0261046775, 0.0148189161, 0.0120228939, -0.0319509059, -0.0133319404, 0.0119275749, 0.0105422735, -0.0260157119, -0.0224190112, -0.0117941285, -0.0277568717, -0.0242364258, -0.00435925229, 0.0128680551, 0.0319254845, -0.0138530172, 0.0390680507, -0.0122770779, 0.00789876189, -0.0144376401, -0.00761280488, -0.0329676382, -0.00733320275, -0.017195534, 0.0251387786, 0.00373014738, 0.00806398131, 0.0199025925, -0.00881382357, 0.00908707082, -0.030476639, -0.0207286887, -0.0258504935, 0.0195848625, 0.0228129961, 0.00256249052, 0.0126964813, 0.00202711578, -0.00728236604, -0.00763822347, 0.0222410839, -0.00977336708, -0.0116479732, 0.000751828, -0.0212370567, -0.00259585213, 0.0118576745, -0.028824443, -0.00190637854, 0.0209828727, 0.0202076118, -0.0305528939, -0.0101864161, -0.0416607261, -0.0211862195, 0.00972888526, -0.038991794, -0.00322972308, -0.0114763984, 0.00656429678, 0.00148935826, -0.00282302895, -0.0167125855, -0.00108425284, 0.00390172144, -0.0158356503, 0.0234738737, -0.000697019626, 0.000831657613, 0.0237916037, 0.0135352872, -0.0121118585, 0.0512180366, 0.0196102802, -0.0259267483, -0.0171574075, -0.0150222629, -0.0103643443, 0.0013694152, -0.0022399947, -0.000579459651, 0.0175005551, 0.00577315, -0.00383499824, 0.0186952185, -0.00597967394, -0.0235755481, -0.00288657495, -0.00601462414, -0.00712350104, -0.00925229, -0.0623767078, 0.0117687099, 0.00658336049, 0.016102545, -0.036043264, -0.0171701163, 0.00126218144, -0.0100529697, -0.0327897109, 0.0123533327, -0.018148724, 0.0196102802, 0.0152637372, -0.0111268964, 0.0224571396, 0.00131937279, 0.0118640289, 0.00545542, 0.0510655269, 0.036500793, 0.00216215104, 0.029078627, 0.0168269686, -0.00564288069, -0.0198517554, 0.0016903223, 0.00599873764, -0.000490892504, 0.013611543, -0.0104850819, 0.0186062548, 0.0186698, -0.00433065649, 0.020512633, -0.00259902934, -0.029205719, -0.0319000669, -0.0243762266, 0.0136369616, 0.00511544896, -0.0027690148, -0.00573184481, 0.000534580322, -0.0209828727, -0.0189494025, -0.00366660138, 0.000242467519, -0.0197373722, -0.0131794307, 0.018085178, -0.01121586, -0.022368174, -0.00770176947, -0.0145774409, 0.0134336138, 0.00713621033, 0.0137132164, 0.0172209535, -0.00671045249, 0.00891549699, 0.0424486957, -0.0246431194, -0.0233594924, -0.000763345743, 0.0117305825, 0.0109108398, -0.0140563641, 0.00209860504, 0.0100211967, 0.00822920073, 0.0280618928, -0.00324878679, -0.0128680551, 0.0486507788, 0.0160262883, 0.0281635653, 0.0229655076, -0.00430523837, 0.0163058918, -0.019559443, -0.00345689966, 0.0164075643, 0.000246240554, -0.0120991487, 0.00702182762, -0.00246717152, -0.00563970301, -0.0149332983, -0.015721269, -0.000349304144, 0.00424804678, -0.0249481406, 0.00382864359, 0.0033488716, -0.011247633, 0.0332472436, 0.00349185, 0.036297448, 0.00570642622, 0.0359415896, -0.00634188578, -0.0233467817, -0.00796866231, 0.0236263853, -0.0204999242, -0.0274010152, 0.000925387896, -0.0250243954, -0.0146664055, 0.00616395706, 0.00148379791, -0.0280618928, 0.0104850819, 0.0017062088, 0.0034283041, 0.0191654582, -0.0088900784, -0.0468206555, 0.0043179472, 0.00543317897, -0.017513264, 0.00716162892, 0.00786698889, -0.00559522118, -0.0248845946, 0.00320907054, -0.0255836, -0.0123596871, -0.00788605213, 0.0150858089, -0.00921416283, 0.0246812478, 0.0291548818, 0.00485808821, -0.0115272356, 0.0217835531, -0.00611947523, -0.00766364159, -0.00434654299, -0.00138609612, 0.00939844642, 0.0280873105, -0.0170303155, 0.0142724207, -0.00127012469, -0.0151112275, 0.00469286833, -0.00428299699, 0.00435289787, 0.00969711225, 0.00363800582, 0.00658971537, 0.0140563641, -0.0181995612, -0.00750477705, -0.00456577679, -0.00420674216, -0.000768111669, -0.00368566508, -0.00613853894, -0.0124168787, -0.0115780728, 0.000124510349, -0.0147299515, 0.00356492796, -0.0282398202, 0.0155433398, -0.00187619426, 0.0139928181, -0.00201917253, 0.00278013549, 0.0218216795, -0.00761915976, -0.00388265774, 0.0181360152, -0.00997671392, 0.00375238853, 0.00693921791, -0.0180343408, 0.00874392316, -0.00033103468, 0.0120165395, 0.00187142822, -0.0268672276, 0.0238297321, -0.0142215835, -0.0139038544, -0.0113810794, -0.0124486517, 0.0220631547, -0.011756001, 0.0269434843, 0.00804491714, -0.0238678586, -0.0151747735, -0.0159627423, 0.0120165395, 0.0253675431, 0.0210591275, -0.00371426088, 0.0019159104, 0.00542046968, -0.0174751375, 0.00591930561, -0.00842619315, -0.0142470021, -0.00364753767, 0.0175895188, 0.00687567191, 0.00998306926, 0.000366580702, 0.00924593583, 0.00982420426, -0.0111141866, -0.00350455916, -0.026968902, 0.0195340253, -0.00440373458, 0.00385406194, -0.0190129485, 0.0127091901, 0.00349820452, 0.00826097373, 0.0266130436, -0.0101165157, -0.0119974753, -0.0101228701, -0.00063943112, -0.0341623053, -0.0170938615, 0.0275026876, 0.00110252225, 0.00490892492, 0.0102626709, 0.00230671815, -0.0140182367, 0.0352298766, 0.0141834561, 0.00718704704, 0.0280873105, -0.0365262143, -0.00256725634, -0.00803856272, -0.00122802553, -0.0166744571, -0.00479136454, -0.0404914804, 0.00785428, -0.0202838685, 0.017958086, 0.00826732814, 0.00982420426, 0.0295361578, -0.00483266963, 0.0266893, 0.0287736077, 0.0409235917, -0.0145393135, 0.00741581246, 0.0231053084, 0.00120578439, -0.027858546, -0.0612074621, -0.0211862195, -0.00845796615, 0.000423374906, -0.028951535, 0.00742216734, 0.000160354233, 0.011819547, -9.10494346e-05, -0.0156704318, -0.0013995996, 0.00127965654, -0.00545224268, 0.00266416394, 0.00154654961, -0.00375238853, 0.034314815, 0.00643085036, 0.00392714, 0.00351409102, 0.00355539587, -0.0121055041, -0.0153654115, -0.00829910114, 0.0176022276, 0.00340606296, 0.000537360436, 0.0159373246, -0.0400847867, -0.00296759582, -0.0187079273, -0.0222919192, 0.00235120021, -0.00192385365, 0.0241601709, -0.0447363481, -0.0260538403, 0.027731454, 0.0207286887, -0.0136369616, 0.00942386501, -0.0130904661, 0.0148697523, -8.99075894e-05, 0.00639907736, 0.00327261654, -0.00419721, 0.00674858, -0.0120864399, -0.00588435493, -0.0103325713, 0.00502330763, -0.00115653628, -0.0156958494, 0.00285321311, 0.00565558951, -0.00959543884, -0.0401102044, 0.0215166584, 0.0103325713, -0.00365389232, 0.0267909728, -0.000323885761, -0.00371108367, -0.0456768312, -0.030476639, 0.00659607, 0.00573184481, -0.00608770223, -0.00307403551, -0.00934760924, -0.0124486517, 0.0116988095, -0.00227176771, -0.00980514, 0.00959543884, -0.00178087526, -0.00661513349, -0.00343465875, 0.0240203701, 0.00532832788, 0.00186666229, -0.00705360062, -0.0233467817, -0.00661513349, 0.00184918719, 0.04000853, -0.00678035291, -0.00343148131, 0.0193815157, 0.0179072488, 0.0166363306, 0.0099703595, 0.0185427088, -0.00299619162, -0.00812752731, -0.0012073731, 0.0113937892, -0.03578908, -0.00925864559, 0.0120165395, 0.0167634226, 0.0102372523, -0.012912537, -0.00882017799, -0.00887737, 0.0302987099, -0.00298824836, -0.0034251269, -0.00612265244, 0.00835629273, 0.013738635, 0.00772083318, 0.0079051163, 0.0274010152, -0.00390489865, 0.00388901215, 0.0129061826, -0.0113048246, -0.0145647321, 0.0250879414, 0.00352997752, -0.00517581776, -0.00433701137, -0.0304258019, -0.0167125855, 0.0068057715, -0.0142215835, 0.0142215835, -0.00684389891, 0.0125121977, 0.00718069263, 0.0152764469, -0.00897268858, -0.000253190898, -0.00780344289, 0.0246939566, -0.00417496916, -0.00396844465, -0.00371426088, -0.00657700608, -0.0240712073, 0.0206905622, 0.0057922136, 0.0263842791, 0.0248973034, 0.000399942335, 0.0149968443, -0.0177801568, -0.000413445843, 0.00522665447, 0.00312328362, 0.0199025925, -0.00355857331, 0.00549037, -0.009265, 0.0105422735, 0.0180343408, -0.00990045909, -0.0385596827, -0.000341162318, -0.01757681, 0.0207159799, -0.00823555514, -0.015784815, -0.000371346658, -0.00491210213, 0.029586995, 0.0249989778, 0.0147045329, 0.0138784358, -0.00699005462, 0.00537916459, -0.0108727124, -0.05495454, -0.0033647581, 0.00406058645, -0.00583351823, 0.00359352352, 0.00120896171, -0.00534739159, 0.0277822893, -0.00825461932, 0.0218216795, -0.013293813, 0.0138784358, 0.0203092862, 0.017958086, 0.034187723, 0.0296886694, 0.0578013957, 0.0174878463, 0.0201694854, -0.026079258, -0.000897586579, -0.0261300951, 0.00116527383, 0.00556662539, -0.00261332723, 0.0351282023, -0.00179358444, -0.000479374779, 0.0259648766, 0.00294217747, -0.00158070552, 0.0124295885, 0.009201454, -0.0101927705, -0.00522665447, 0.0251514874, 0.00120499008, -0.0120165395, -0.000460708136, 0.000180013769, -0.011120542, 0.00710443733, 0.00130110339, -0.0189366937, 0.0115717174, -0.0374158546, -0.0130523387, 0.00626563095, 0.013802181, -0.0215293691, -0.0167380031, 0.0107773934, -0.0113048246, -0.00409871386, 0.0045244717, 0.0172717888, -0.00835629273, -0.000605275214, -0.00177452073, 0.019686535, 0.0298665967, -0.00772083318, -0.0177928656, 0.0204872154, -0.0106312381, -0.0117623555, 0.0276806168, -0.013675089, -0.0282144025, 0.000371148082, 0.00754925888, -0.00583669543, -0.0066024242, -0.00289292936, 0.000138609612, -0.00716798333, 0.000869785203, -0.00374285644, 0.00299778022, -0.00158944307, -0.0355603136, -0.0215674955, -0.00538551947, 0.0103389267, 0.00521712285, -0.015784815, 0.0141326198, -0.0140817827, 0.0241728798, 0.0252150334, 0.00490257, -0.00419403287, -0.0103897629, -0.0143995127, 0.00559839839, -0.00590977352, -0.0274518505, -0.0147553701, 0.0276806168, -0.0178564116, 0.0108282305, 0.00129395444, -0.00576997222, 0.0191654582, 0.00619890774, 0.0319763236, -0.00443550758, 2.45495885e-05, 0.00332663045, 0.0318746492, -0.0245541558, 0.0285956785, -0.0121055041, -0.0134590324, 0.00098893384, 0.000659686397, -0.0241855886, 0.00124629494, 0.00313440408, -0.0120228939, 0.00883288682, -0.000557615713, 0.0117687099, -0.000820537098, -3.4652403e-05, 0.00939844642, -0.00787969772, 0.0265622083, 0.017322626, 0.0103897629, -0.00347914081, -0.0126202255, 0.0133954864, 0.00174433633, -0.00207318668, -0.0405423157, 0.0323067605, -0.00283732684, 0.00961450208, -0.00060090638, 0.0140690738, 0.00739039434, -0.0153399929, 0.027095994, 0.0273755956, 0.00529337768, 0.0205253419, 0.0271468312, -0.0138148898, 0.0410506837, -0.00087455113, -0.00327261654, -0.00458166329, -0.00187619426, 0.00127806794, 0.026079258, -0.00633553136, -0.00821013656, -0.00474052783, 0.0028818089, -0.0081529459, -0.00754925888, 0.00882017799, -0.0154543752, 0.00617666636, 0.0255708918, -0.00668503391, 0.0213768575, -0.00976065826, 0.00750477705, 0.00938573666, 0.00669138879, 0.00369519717, -0.0119847665, 0.0294090658, -0.0227113236, -0.00809575431, 0.00877569616, 0.00364753767, -0.00379687059, -0.000778835092, 0.00591930561, -0.00473099621, 0.00717433775, 0.00671680691, -0.00453082612, 0.00908707082, 0.0256090183, -0.0164584015, 0.017449718, 0.000291517063, -0.00950647425, 0.00697099091, -0.000215857654, -0.0153654115, 0.0124677159, 0.0123596871, -0.00207477529, 0.0108345849, 0.00817836355, 0.0251260698, -0.0206524339, -0.00671045249, 0.00710443733, -0.020194903, -0.0178564116, 0.00239727111, -0.00874392316, -0.0063959, -0.0286465157, 0.00186030776, -0.00395573536, -0.0151239363, 0.00601780182, -0.0276551973, 0.00152271986, -0.000438467076, -0.0204872154, -0.0342131406, -0.0158737786, -0.0169286411, 0.00141389738, -0.0160644166, 0.00179517316, -0.00822284631, -0.00943021942, 0.00697099091, 0.0038318208, -0.0179962143, -0.0220123176, -0.00781615172, 0.00948741101, -0.011342952, -0.0178564116, -0.0153908292, -0.0256217271, 0.00261332723, -0.00893456116, -0.000678353, -0.000610041141, -0.0176784843, -0.0217454247, -0.00559204351, -0.0222029556, -0.00128124526, -0.0125693893, -0.00537598738, -0.00369519717, 0.0231053084, 0.00941115525, 0.00915061682, -0.00151557091, 0.00378098409, -0.00113985548, -0.00934125483, 0.00810846314, -0.0252658706, 0.00892820582, -0.0131540122, -0.0143613853, 0.00687567191, 0.00535692368, 0.0178818312, -0.0086358944, -0.00245922827, 0.00510274, 0.0079051163, -0.00634824065, -0.0205380507, -0.00520123634, 0.00377780688, -0.0175895188, 0.00343783596, 0.0157593954, 0.0109870946, 0.0237026401, -0.0101609975, 0.0149078798, 0.0122071775, -0.0308833327, 0.00992587768, 0.0102054803, -0.0214531124, 0.0382038243, 0.00232101581, 0.00812752731, 0.00100482034, -0.00547448359, 0.0146791143, -0.00324402074, 0.0055698026, 0.0284177493, 0.0219233539, 0.0147172427, -0.00525525026, -0.0223554652, 0.000313956727, -0.0105613368, 0.00109775632, 0.00856599398, 0.0222410839, 0.00610994315, 0.0106439469, -0.0148443347, 0.00451811729, 0.00834993832, 0.0183139425, -0.0120356036, -0.00428299699, -0.0143486755, -0.00500424346, 0.0125312619, 0.00375874294, -0.00678670779, 0.00597967394, 0.00264986628, -0.00967804808, 0.00945563801, -0.0123024965, -0.0210718382, 0.00339970831, 0.012848991, -0.00308356737, -0.015784815, 0.0255073458, 0.0143740941, -0.00190955587, -0.00473735062, 0.0169667695, 0.00392714, 0.0229273792, 0.00877569616, -0.00269117113, 0.00861047674, 0.00741581246, -0.0209066179, -0.00610994315, -0.021021001, -0.0102626709, -0.0209955815, 0.0195340253, 0.00202711578, 0.00600191532, -0.0086358944, 0.0161533803, 0.0043814932, -0.0292565562, -0.0141961658, 0.000763345743, 0.00415590545, -0.00839442, -0.0112412786, -0.0143613853, -0.011438271, 0.00622114865, 0.00915697124, 0.0213514399, -0.0046325, -2.58651889e-05, 0.0178437028, -0.0237534773, -0.00044958762, -0.00384453, 0.00406694086, -0.000277616375, -0.0110125132, 0.00139086205, 0.0215674955, 0.00216215104, -0.0207159799, 0.0143232578, -0.0176911931, -0.00394302607, 0.0489049628, -0.0065706512, -0.0114573352, -0.0301462, 0.00268005044, 0.00501377555, 0.000909501454, -0.00239250506, 0.0164584015, 0.0203474145, -0.0117750652, 0.00336158089, -0.0313917, -0.0214404035, -0.0144376401, 0.00390489865, 0.0128553463, 0.00284368126, 0.00859776698, -0.0106947832, -0.0132048484, -0.000347516936, -0.00245763967, 0.0291294642, 0.00709808292, -0.00379369338, 0.0236009657, -0.00666597, -0.0240203701, -0.0128426366, -0.00716798333, 0.0107773934, 0.00368566508, -0.0223554652, 0.00820378214, 0.00393667165, 0.0125185521, 0.0124105243, -0.0175259728, 0.00582716381, 0.0159627423, -0.000655317621, 0.0202711578, 0.0244779009, 0.0318492316, 0.00376827503, 0.00175069098, 0.00615124824, 0.0124994889, 0.0124867791, -0.0174624268, 0.00304702832, -0.0146791143, -0.00522665447, -0.0271468312, 0.00985597726, 0.00630375836, 0.0122389505, -0.00971617643, 0.0057763271, -0.00855964, -0.0192798413, -0.019686535, -0.0127536729, 0.00126297574, 0.0217708424, 0.0144376401, -0.000895203615, 0.00378733873, 0.0292819738, -0.0029596528, -0.030476639, 0.0132429767, -0.00353633217, 0.00410824595, 0.0137005076, -0.00173639308, -0.00378098409, -0.0269434843, 4.9645274e-05, -0.001094579, -0.00106121739, -0.0218470972, 0.00526795955, -0.0149332983, -0.00744758546, 0.0212497655, -0.00749206776, 0.0178437028, -0.011120542, -0.0192925502, 0.000200765484, -0.0103198625, -0.000152510285, -0.00700911833, 0.00403516786, -0.000221417926, -0.00319636147, -0.00335204904, 0.00841348432, -0.00105804007, 0.0117051639, 0.0107964575, -0.0133700678, -0.00899810717, 0.0371108353, -0.00113747257, -0.00355221867, -0.018402908, -0.0176276471, 0.00793688931, 0.00776531547, -0.0194069333, -0.00372697, 0.0100211967, -0.00501695275, -0.015975453, 0.000668423949, -0.00128918851, 0.00163313095, -0.0219869, -0.0107837478, -0.0242745541, 0.000145559941, 0.0146028595, 0.0204363782, 0.0103071537, -0.00414955057, -0.0135988332, 0.00753655, -0.0186698, 0.0115272356, 0.0214531124, 0.0275535248, -0.0130650476, 0.00367295602, 0.0136496704, 0.0160135794, 0.0244524814, -0.000796707347, -0.0118131926, -6.99501907e-05, 0.0316458829, 0.052717723, 0.000702977064, 0.0069010905, -0.00650710566, 0.0229146704, 0.00125026656, -0.0252023246, 0.0210591275, -0.0160517078, 0.00989410467, 4.01630277e-05, -0.00153066311, 0.00102467847, -0.018784184, 0.0086676674, -0.00834993832, 0.000225190961, 0.0123533327, -0.00410506828, 0.0266130436, 0.000100084872, 0.0101991249, -0.0131413024, -0.0199280102, -0.0319000669, 0.00197310187, -0.012880764, -0.0115081714, 0.0157975238, 0.0156450141, 0.00653252378, -0.0135352872, 0.0151493549, -0.00599238323, -0.00101752952, 0.011120542, -0.0113365976, 0.00218121475, -0.0135607058, 0.0022368175, -0.000371545233, -0.004727819, -0.00662148837, 0.0057763271, 0.0144503489, -0.0164202731, 0.0118894475, -0.00681212591, 0.00110252225, 0.00750477705, 0.00756832259, 0.0251769051, 0.0155052124, -0.0193560962, 0.00725694746, 0.00716162892, -0.0173734631, 0.0118386112, -0.00949376542, -0.00797501672, 0.0230290536, 0.00734591205, -0.00902988, -0.0147807887, 0.0087312134, -0.0033329851, -0.00542364689, 0.0127409631, -0.0173988808, 0.0319763236, -0.00671680691, 0.0235882569, 0.00887101516, 0.0155052124, 0.00165378337, 0.0159373246, 0.000663658, -0.011597136, 0.00365071488, 0.00840712897, -0.00929041766, -0.0105740465, -0.0118894475, -0.00681848079, -0.00949376542, -0.00733320275, -0.00157514529, -0.00752384076, -0.00354586402, -0.0103262169, 0.00937302783, -0.0229019616, -0.00185236451, -0.0270197392, -0.0236899313, -0.00234166835, -0.018085178, -0.0116797462, -0.00953824725, -0.00583034102, 0.000929359521, 0.0277568717, -0.00418132357, -0.0219360627, -0.00387630309, 0.00222728564, 0.0097479485, 0.0003381836, 0.0224063024, 0.00344736781, 0.00845796615, 0.00349820452, 0.0091951, 0.00510591734, 0.00310263108, -0.0068248352, -0.0197755, -0.0254819263, 0.0256852731, 0.0336539373, -0.00480407383, -0.0207541082, -0.00661513349, -0.0130904661, -0.00625292165, 0.0127346087, 0.03578908, 0.00425757887, -0.00700276392, -0.0221902467, 0.0145520233, -0.0022241082, -0.0383055, 0.00491210213, 0.00158308854, -0.0174243, 0.0105232093, -0.0221902467, -0.0168650951, -0.00275789434, 0.0122961421, -0.0112984702, -0.00134161394, 0.000512736384, 0.00866131298, 0.0116225546, 0.0103707, 0.0358144976, 0.0179835036, -0.0263842791, -0.0141072012, -0.0135988332, 0.0043338337, 0.00735862134, -0.0123279141, -0.0207286887, 0.00507732155, -0.00364118302, -0.0113937892, -0.000633076532, 0.00324084354, -0.0154416664, -0.00789876189, 0.0215929151, 0.00794959813, 0.00187619426, -0.0192162953, -0.0160008706, -0.00222569704, -0.0381275713, -0.00925864559, 0.00254342682, 0.0215166584, -0.00986868609, 0.0166236218, -0.00643085036, -0.0141961658, 0.0197246633, 0.00687567191, 0.0127663817, -0.00320430449, -0.00515039917, -0.0173099171, -0.00860412139, -0.0127028357, -0.00269117113, 0.00146314548, 0.0116352635, -0.0140563641, 0.0162296351, 0.00735226646, -0.00678670779, 0.00174274773, -0.0123787513, -0.00305179437, -0.00120419578, 0.000574296515, -0.0230544712, 0.0199788474, 0.0150858089, -0.00215579639, -0.0144757675, 0.0066977432, -0.00782886147, 0.00986868609, 0.00724423863, 0.00157355657, -0.0225969404, 0.0055539161, -0.00164901745, -0.00504237134, 0.0140182367, -0.0105931098, 0.00212084618, 0.00538869668, 0.0140436552, -0.0168396775, -0.00454353541, -0.0317729749, 0.00888372399, 0.0108917765, -0.00655794237, -0.0081211729, 0.0326880366, 0.0173607543, -0.0203092862, -0.0014639399, -0.01884773, -0.00733320275, -0.0144757675, 0.00809575431, 0.013293813, 0.00125026656, 0.00422898307, -0.00565558951, -0.0116034904, -0.00538234226, 0.00611312035, -0.0240966249, -0.0125312619, 0.00536645576, 0.013929273, 0.00232419325, -0.034187723, 0.0201059394, -0.0251006503, 0.00381593429, -0.018466454, 0.0102563165, -0.0286465157, -0.00794324372, 0.0122262407, 0.025049815, -0.0128426366, 0.00723152934, -0.00622114865, 0.0010786925, 0.0190637857, 0.0107329115, 0.0320779979, 0.00066961546, -0.0113493074, -0.0250625238, 0.0148697523, -0.0242491346, -0.0235120021, -0.00536645576, -0.0188985653, -0.0142597118, 0.0145647321, 0.000677161559, 0.0189366937, 0.0149841355, 0.0317983925, 0.0028643338, 0.0220885724, -0.0247447938, -1.00221396e-05, -0.0252531618, -0.0114827538, 0.0154925026, -0.0140436552, 0.0170303155, 0.0106947832, -0.0148570435, -0.0140563641, -0.00100879197, -0.00762551418, -0.00146076258, 0.0135098696, -0.00560793, -0.00212084618, -0.00186030776, 0.000969870074, -0.0231307261, -0.00316617708, 0.00628787186, 0.0148316249, 0.00526160467, -0.036551632, 7.04962877e-05, 0.0168015491, 0.00667867949, 0.000474608823, -0.00932219066, 0.00113508955, -0.00976065826, -0.0241601709, -0.0214149859, -0.0058049229, 0.00010842528, 0.000611629803, -0.0168650951, 0.0121436315, -0.0027706034, -0.00361576467, 0.0119593479, 0.0115145268, -7.98296e-05, 0.0173480455, 0.00368566508, 0.029205719, -0.0130523387, -0.00575408572, 0.00733955717, 0.0145011861, -0.00652616937, 0.0130904661, -0.00840077456, -0.0167888403, 0.0149332983, -0.0238424409, -0.000152510285, 0.00616713474, -0.0211099647, -0.0152383195, 0.00642449548, 0.0151112275, -0.00465474091, -0.011120542, -0.00465474091, 0.00189843529, -0.0161152538, -0.00486126542, -0.00754290447, 0.00125026656, 0.0293073934, -0.0160517078, 0.00199375418, -0.00594472373, 0.0126138711, 0.0206778534, 0.0067739985, -0.021021001, 0.0239059869, 0.00904258899, 9.55175055e-05, -0.0195721537, 0.00240839156, -0.0069837, -0.00158785447, 0.00868037716, 0.0133065218, -0.00862318557, 0.0149332983, 0.0123978155, 0.00343148131, -0.000157474817, 0.00294058886, -0.00688202633, 0.019877173, -0.0102817351, -0.00781615172, -0.0101101613, -0.036882069, -0.00656429678, -0.0124804247, -0.00142898958, -0.0144630587, 0.00179040723, 0.0133827776, -0.00602415623, 0.00521712285, -0.00486762, -0.00122564251, -0.0081847189, 0.0186825097, 0.0466935635, 0.000241077447, 0.0088265324, 0.0257996563, -0.00951918308, 0.0219996087, 0.00425440166, -0.0109489672, -0.0044450392, -0.0120228939, -0.0206015967, 0.00299619162, 0.00321224774, -0.0078097973, 0.00290087261, 0.00958272908, -0.0193306785, 0.0127155446, -0.016166091, -0.0151747735, -0.0310358424, -0.0245160274, -0.0122198863, -0.00833722856, -0.00311057433, -0.001126352, -0.00398433115, 0.0221521184, -0.000992905465, 0.0124931345, 0.0146664055, 0.0110951234, -0.00015628332, -0.019495897, 0.0175641011, -0.00503919413, -0.00332980789, -0.0438467078, 0.0133827776, -0.00253071752, 0.00642131828, -0.0106185284, -0.00163789687, -0.0191527493, 0.00823555514, 0.0220885724, 0.0101737073, -0.0111713782, 0.0226223581, -0.020194903, -0.0118322559, -0.00194927212, 7.40707474e-05, 0.00327261654, -0.0209828727, 0.000556027051, 0.00650075078, -0.0185554177, 0.00742852176, 0.026714718, -0.000317134021, -0.00810210872, 0.00906165224, 0.0101800617, -0.0164329838, -0.00681848079, -0.0150603903, -0.00108743, -0.00057826814, -0.00996400509, 0.000945246, 0.000759771268, 0.00447998941, 0.0142597118, -0.0156577229, -0.000915856042, -0.000700991252, 0.0210464187, -0.0212243479, 0.00519170426, -0.0326626189, 3.03829074e-05, 0.00122961414, 0.00985597726, 0.00895997882, -0.0261300951, -0.0241855886, -0.00916332658, -0.0161788, 0.034696091, 0.0189239848, 0.0417115614, 0.00697734533, -0.0278077088, -0.00308356737, 0.0109489672, 0.0257106926, -0.00793688931, 0.0146028595, -0.00332663045, -0.0193942245, -0.00307244668, -0.00362847373, 0.00627198536, -0.00368884252, 0.0130523387, 0.00247352617, 0.00681212591, -0.00761915976, -0.0106248828, -0.00248464663, 0.00426075608, -0.0251769051, -0.0082164919, 0.0322559252, 0.0273247585, -0.00890914258, -0.00676764362, -0.0147553701, -0.0243762266, 0.00907436199, 0.0330438949, -0.00140515983, -0.0114891082, 0.00787969772, -0.00475323712, -0.011660682, -0.0141580384, 0.00484537892, -0.0028500359, -0.00375556573, 0.00808304548, -0.0098114945, 0.00711714663, -0.00590659631, -0.0106121739, 0.016877804, -0.00597649673, 0.0104660178, -0.0135225784, 0.0175259728, -0.0102944439, 0.00985597726, 0.0188096017, 0.00329485768, 0.0225588121, -0.0221902467, -0.00985597726, -0.0175386835, -0.0201694854, 0.0105168549, -0.00834358297, 0.00173480448, -0.00315982243, 0.00301843276, -0.0141707473, 0.0291040465, 0.015721269, -0.00967804808, -0.0168142579, 0.0108028119, 0.0143359667, 0.0248973034, 0.0115145268, -0.0219996087, -0.00166490395, -0.0232959464, -0.0111014778, -0.00674222549, -0.00543635618, -0.00116368523, -0.000483743555, -0.0166617483, -0.00890278816, 0.0105740465, -0.00811481755, 0.0016585493, 0.03706, -0.0105994651, 0.018784184, 0.000858664687, -0.00284050405, 0.000866607937, 0.00782250706, -0.0252531618, -0.00376509759, 0.00339970831, 0.016166091, -0.00734591205, -0.00721882, -0.0180597603, 0.0162169263, -0.00229400885, 0.00489303842, -0.018148724, -0.00687567191, 0.00356810517, 0.00531879626, -0.013420905, 0.00435607508, 0.0068693175, -0.00263397978, -0.00703453692, -0.000920621969, 0.00480725104, 0.0231307261, -0.0023337251, -0.00443233, -0.00953189284, -0.00953824725, 0.0385596827, 0.0209955815, 0.0133827776, 0.000559998676, 0.0235882569, -0.00603686552, 0.028824443, -0.0196992457, 0.00735226646, -0.0202076118, 0.011756001, 0.00230830675, 0.0236899313, -0.00768906, 0.00236232067, -0.00766364159, 0.00505825784, 0.0295615774, -0.000139006763, -0.0198390465, 0.000892026292, 0.0122643691, 0.0126901269, -0.00274359644, -0.00963992067, 0.018974822, 0.0190129485, 0.000367772183, -0.0135607058, -0.0175513923, -0.0238678586, 0.00378733873, 0.019622989, 0.0318492316, 0.0118131926, 0.00527113676, -0.0267655551, -0.0357128233, -0.00814659055, 0.0107074929, -0.0110442862, 0.0171574075, -0.00493434304, -0.0102054803, 0.0221775379, -0.0153781204, -0.000152411, 0.00343465875, -0.00221775379, 0.00309309922, 0.0100910971, -0.00274518505, -0.0383817554, -0.00480089663, 0.00385723915, -0.0106058195, -0.0175895188, -0.0170176066, -0.00193497422, 0.0034283041, 0.0129570197, -0.0287227705, -0.00476276921, 0.00187937147, -0.01884773, 0.0232069809, -0.0275281053, 0.0204617959, -0.0163058918, -0.0192544237, -0.0103579899, -0.0108091664, 0.0238932781, 0.0151366452, 0.00248623546, 0.00670409808, -0.000490495295, -0.00725059304, 0.0115844272, -0.00587800052, -0.00346643175, 0.00358716887, 0.0250752326, 0.00541411527, -0.0147172427, -0.00507414434, -0.0138911447, -0.0116543276, -0.0150985178, -0.00470240042, -0.0133065218, -0.0148570435, -0.00981785, 0.0147807887, 0.00010306359, -0.00486126542, -0.0121309217, -0.012073731, 0.00359034631, 0.0128299277, 0.00913155358, 0.0125376163, -0.0270197392, -0.016102545, 0.0166109111, -0.0141580384, 0.0164711103, 0.00174592505, -0.0143740941, 0.0153654115, -0.0128235733, -0.0311883539, -0.00748571288, 0.00713621033, -0.0122643691, -0.000609246781, -0.000335204881, -9.09501396e-05, 0.0225588121, 0.0218470972, 0.00504237134, 0.00717433775, 0.0153272832, 0.0169794783, 0.0243508089, 0.00508367596, 0.00537916459, 0.0099703595, 0.0237407666, 0.0232705269, -0.0207286887, 0.00102229544, -0.00179676176, -0.03642454, 0.0213768575, -0.00022102076, 0.00619255286, 0.00478183292, -0.00617031194, 0.0127028357, -0.00147664908, 0.0140055278, -0.0124550061, 0.0148062063, -0.00142263493, 0.00800043531, -0.00756196817, -0.0103707, 0.0495658405, -0.00442597549, -0.0086358944, -0.00030085037, -0.0205253419, -0.00161724444, -0.00953824725, 0.0216183327, 0.0135225784, -0.001449642, -0.0380004793, -0.00667232508, 0.00775896059, 0.0190383662, 0.00600826973, 0.0126138711, -0.00940480083, -0.00480089663, 0.0145011861, -0.0044132662, 0.017767448, -0.0176149383, -0.0224698484, 0.00394938095, -0.00358399167, 0.0133954864, 0.00836900156, -0.00644673686, 0.024922723, 0.00088328874, -0.0118386112, -0.00613853894, 0.00380322523, -0.00801949948, -0.0219996087, -0.013865727, 0.00720611075, 0.00678035291, 0.0028643338, -0.00101276359, -0.00122961414, 0.00171415205, 0.00289928401, 0.00538869668, 0.0215929151, -0.00377145223, -0.0151366452, 0.00440691179, -0.0267401356, -0.0167761315, -0.00904258899, 0.00314234733, 0.00946834683, -0.0193688069, 0.0270705745, 0.0164965298, -0.00520759076, 0.00922687259, -0.0451938808, -0.0159500334, -0.0125630349, -0.0126392897, -0.00392714, 0.00470557762, -0.0265113711, 0.00171256345, -0.015848361, -0.0232705269, -0.00362847373, -0.00306609226, -0.00615124824, -0.00396526745, -0.00784792472, -0.00171574065, -0.00651981449, 0.00769541459, 0.00517264055, -0.00589388702, -0.0105232093, -0.000320907042, -0.00509003084, -0.0113874348, 0.0175895188, 0.00449587591, -0.0190892033, 0.0121245673, -0.0141580384, 0.011088769, -0.0140309464, 0.0163567271, 0.00874392316, -0.018466454, -0.0089536244, 0.0141707473, -0.00825461932, 0.0078733433, -0.0223173387, 0.00333616254, 0.0108600035, -0.0248973034, -0.000830863311, 0.00963992067, 0.03769546, -0.00507414434, -0.0170430243, -0.00124867796, 0.00398433115, 0.00708537363, 0.0201694854, -0.017131988, -0.000436481263, 0.0126075167, -0.000194708773, 0.00290563866, 0.018339362, -0.0047437055, 0.00103500474, -0.0184918717, 0.00710443733, -0.00204300229, 0.0190637857, -0.00823555514, -0.0112539884, 0.013230267, -0.00567465369, 0.0243126806, 0.0110188676, 0.00295806397, 0.0216310415, 0.0235501304, -0.00624656724, -0.00249735592, -0.0167888403, -0.0109044854, 0.039627254, 0.00814023614, -0.00383499824, -0.0158356503, -0.0248591769, -0.00845796615, -0.00542364689, 0.0167125855, -0.00732049346, -0.035661988, -0.00197945628, -0.0043179472, -0.000114779876, -0.00957637466, 0.000752622378, -0.0130904661, -0.0269943196, -0.00426711049, 0.0110824136, -0.00352044567, -0.00763822347, -0.00274200784, -0.00099052256, 0.00700911833, 0.0140055278, 0.0152764469, -0.01725908, -0.0227367412, -0.0080894, -0.000135928756, 0.00903623458, 0.00616395706, -0.00564288069, 0.009106135, 0.0271468312, -0.00972253084, 0.0123978155, 0.013865727, 0.000396963616, -0.0121499859, -0.0052203, 0.00753655, -0.0242237169, 8.0474987e-05, -0.020194903, -0.00236549811, -0.00525842747, 0.00405423157, -0.00142422365, 2.78758216e-05, -0.0118004829, -0.0151239363, 0.0155179212, 0.00114938745, 0.00726330234, -0.0192162953, -0.00659607, 0.00247352617, 0.00703453692, -0.0163186, -0.0082164919, -0.0189494025, 0.000780026545, 0.0057413769, -0.0165982023, -0.0306545664, -0.00288975216, 0.00370790623, -0.00830545556, 0.00946199242, 0.0124804247, -0.0134971598, 0.00224634935, -0.0126011623, 0.0151366452, -0.0231942721, 0.00960179325, 0.00359352352, 0.0139165632, -0.0304258019, -0.0123978155, -0.00353950961, 0.0077144783, -0.000514722196, -0.00865495857, 0.00836900156, -0.00356175052, -0.0111332508, -0.00979243126, -0.0194069333, -0.00650710566, 0.0187968928, 0.000962721184, 0.0153272832, 0.00183012336, -0.000565956114, 0.00336158089, -0.0171828251, 0.00518535, 0.0139674, 0.000210098806, 0.00402245857, -0.0140944924, 0.0264859535, 0.00264827744, 0.00658971537, 0.00259426353, 0.00200010883, -0.00117083418, 0.000433303969, -0.00247670338, 5.01417271e-05, -0.00579856802, 0.0142597118, -0.0065706512, -0.0341623053, 0.00238138461, -0.00465791812, -0.00528384605, 0.0336031, -0.0376192033, 0.0163948555, 0.0209066179, 0.0191019122, 0.00509956246, -0.00401292695, -0.0154925026, 0.00562063931, 0.00874392316, -0.0308833327, 0.00139086205, -0.0153399929, -0.000826891686, -0.00834358297, -0.0127219, -0.00848973915, 0.00267051859, -0.00117639441, -0.0216310415, -0.0109108398, 0.000974636059, 0.0256979819, -0.00678035291, 0.0151112275, 0.0133827776, 0.0129887927, -0.00579856802, 0.0231180172, 0.00766999647, 0.0209447462, -0.0083118109, 0.0234738737, -0.00665326091, 0.0141707473, -0.0117369369, -2.57658976e-05, 0.0173353348, 0.0186316725, 0.0112730516, 0.0152256098, 0.0129252467, 0.0401864611, 0.0104977908, 0.0201186482, -0.0121881133, -0.0274010152, 0.00435607508, -0.0004265522, 0.00216373964, 0.00236867531, -0.000545303687, -0.00371743809, -0.0148062063, -0.0135352872, 0.0134971598, 0.0104850819, 0.0148951709, 0.0270705745, -0.0243762266, -0.0153018655, 0.0247320849, 0.0152129009, 0.0274264328, 0.016102545, -0.0123596871, 0.0100656785, -0.00593519164, -0.029459903, -0.0167507119, 0.0142724207, -0.0104151815, 0.00425122399, -0.0220504459, 0.0155433398, -0.0100783883, 0.0082800379, 0.0210337099, -0.0146918241, 0.00796866231, 0.00483266963, 0.0219233539, -0.00702818204, 0.0112539884, 0.0056333486]
|
28 Nov, 2022
|
Passing Pointers to Functions In C++
28 Nov, 2022
Prerequisites:
Pointers in C++
Functions in C++
Passing Pointers to functions means declaring the function parameter as a pointer, at the function calling passing the address of the variable and that address will be stored by a parameter that is declared as a pointer.
To change the value of any variable in the function we have to pass the address of that variable in the function.
Example:
C++
// C++ program to change value of x
// by passing an argument to a function
// without a pointer
#include <iostream>
using namespace std;
void fun(int x) { x = 5; }
// Driver code
int main()
{
int x = 9;
cout << "value of x before calling fun: " << x << endl;
fun(x);
cout << "value of x after calling fun: " << x << endl;
return 0;
}
Output
value of x before calling fun: 9
value of x after calling fun: 9
In the above code, the address of the value of the element x does not get affected by the value change in the function as the address of both the variables are different.
Another case can be where we want to change its value in the function. In such cases we use pointers.
Example:
C++
// C++ program to change values of x
// by passing an argument to a function
// with a pointer
#include <iostream>
using namespace std;
void fun(int* ptr) { *ptr = 5; }
// Driver code
int main()
{
int x = 9;
cout << "value of x before calling fun: " << x << endl;
fun(&x);
cout << "value of x after calling fun: " << x << endl;
return 0;
}
Output
value of x before calling fun: 9
value of x after calling fun: 5
In the above code, the actual value of x is passed as we are passing the address which is stored by a pointer ptr.
Example:
C++
// C++ program to swap two values
// without passing pointer to
// swap function.
#include <iostream>
using namespace std;
void swap(int x, int y)
{
int temp = x;
x = y;
y = temp;
}
// Driver code
int main()
{
int a = 2, b = 5;
cout << "values of a and b before swapping: " << a
<< " " << b << endl;
swap(a, b);
cout << "values of a and b after swapping: " << a << " "
<< b << endl;
return 0;
}
Output
values of a and b before swapping: 2 5
values of a and b after swapping: 2 5
Example:
C++
// C++ program to swap two values
// without passing pointer to
// swap function.
#include <iostream>
using namespace std;
void swap(int* x, int* y)
{
int temp = *x;
*x = *y;
*y = temp;
}
// Driver code
int main()
{
int a = 2, b = 5;
cout << "values of a and b before swapping: " << a
<< " " << b << endl;
swap(&a, &b); // passing address of a and b
cout << "values of a and b after swapping: " << a << " "
<< b << endl;
return 0;
}
Output
values of a and b before swapping: 2 5
values of a and b after swapping: 5 2
Function Pointer on Array
An array is a type of Data structure with continuous memory blocks which can store data with a similar data type. Also, the name of the array represents its first memory block address. So, we can use this property to access the elements of the array.
To know more about it, refer to the article – Array in C++.
Example:
C++
// C++ program to display element of
// array by passing argument to a
// function with pointer.
#include <iostream>
using namespace std;
void display(int* ptr, int n)
{
for (int i = 0; i < n; ++i) {
cout << *(ptr + i) << " ";
}
}
int main()
{
int arr[] = { 1, 2, 3, 4, 5 };
int n = sizeof(arr) / sizeof(int);
// ptr will store the address of first block of array
int* ptr = arr;
// passing argument to a function as pointer.
display(ptr, n);
return 0;
}
Output
1 2 3 4 5
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++
|
https://www.geeksforgeeks.org/passing-pointers-to-functions-in-cpp/?ref=ml_lbp
|
Pandas
|
Passing Pointers to Functions In C++
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0423634872, 0.00536386948, -0.0137909446, 0.0279207975, 0.0160068814, -0.00696716411, -0.0325090885, 0.0260698386, -0.00167335779, -0.0217161756, -0.0202953685, 0.011796602, 0.0219508037, -0.0350117944, -0.0240885299, -0.0119595388, -0.0196436234, 0.0367845409, -0.0181446075, -0.00567019, 0.0661131069, -0.0157461818, -0.0506536961, 0.00679119304, 0.00483921356, -0.00664455025, 0.0113599319, -0.000284731505, -0.023840867, 0.0137518402, 0.00923524052, 0.0223809555, -0.0176623147, -0.0428848825, -0.00312675117, -0.0343079083, -0.0199043211, -0.0132108908, -0.0174798258, -0.0214945823, -0.00303713628, 0.0103171384, 0.0147685632, -0.0288853813, -0.0187181439, 0.0240494255, 0.0257309303, -0.00435040426, 0.00837493595, -0.0288071707, -0.00435366295, -0.0177535601, 0.0369409621, -0.00229251641, 0.0269822832, 0.00234465604, -0.0193307847, -0.00390721718, -0.0393654555, -0.0211817436, 0.0154203093, 0.0153942397, 0.000282083813, -0.0330826268, 0.0167368371, -0.0105713196, -0.0326915756, 0.0334736742, 0.0101672374, -0.0520875379, -0.00791219622, 0.00586571358, -0.0215076171, 0.00618181052, -0.0421288572, -0.0402518287, 0.0372016579, 0.0394436643, -0.024974905, 0.0381662436, -0.0189788416, 0.0289375205, -0.00563108502, -0.00669994857, 0.00179067208, -0.00678467564, 0.00138658949, -0.0441623069, 0.00552028837, -0.00840100553, -0.0575622022, -0.00481314398, 0.00589504233, 0.0166455917, 0.00595044065, 0.00586571358, 0.0150292618, 0.0214294065, -0.0248445552, 0.0697107464, -0.0251704287, 0.0448140539, 0.00834234804, 0.00267378776, 0.0233455412, -0.0145209, 0.0162806138, 0.0205299985, -0.0215597562, 0.0115424208, 0.00360089634, -0.00333205122, -0.00449378835, 0.010460523, 0.00211002748, -0.0148728425, 0.0259655584, -0.0521136075, 0.00262327748, 0.0193829257, 0.0193698891, 0.0125917317, 0.0291200094, 0.0241276361, -0.0274254698, -0.00698019937, 0.0316227153, -0.0141689572, -0.0167368371, -0.0220811535, -0.0203735791, 0.00626653759, 0.0175450016, 0.00801647548, 0.00832931325, -0.0264348164, 0.000339111575, 0.00286279409, -0.00519441534, -0.0364456326, -0.0222506076, -0.00342492503, 0.0195914842, -0.00672601815, 0.0159808118, -0.00928738, 0.0107668433, 0.0181576423, -0.0556330346, 0.000450926746, -0.0367063321, -0.00873991288, 0.0138430838, -0.0199303906, 0.0519050471, -0.0226677246, 0.00346402987, 0.0567279682, -0.0188484937, -0.0537560061, -0.00828369148, -0.00400497904, -0.0495587625, 0.0115033165, -0.000749915198, -0.00343470112, 0.0278425869, -0.0162154399, -0.0418681614, 0.0438494682, 0.00714313565, 0.0145730395, 0.0719527528, 0.0317791328, -0.0181576423, -0.0229023527, 0.0157461818, 0.0365759842, 0.0167759415, -0.0465607308, 0.00571907079, 0.0115033165, -0.0186399352, 0.0144687602, -0.0101998243, 0.00826413836, -0.00198130775, -0.0371234491, 0.00574839953, -0.0282597058, -0.0143905506, 0.00449052965, 0.0285725426, 0.0184053052, 0.000224648684, 0.0171409193, -0.0479945727, -0.0132499952, 0.00446771877, 0.0322744586, 0.025926454, -0.0132108908, -0.0204387531, -0.00486528361, -0.0105061447, -0.00206114654, -0.00332553382, -0.00977618899, 0.0458047055, 0.00259557832, 0.0130740236, 0.0457264967, 0.039756503, -0.0231109113, -0.00808165, -0.00492719933, -0.0331347659, 0.0574057847, -0.0033059814, -0.0208819397, -0.0105908718, 0.00293448614, 0.0598042086, 0.00311697507, -0.0748204365, -0.0230587721, -0.00303876563, -0.0321962498, -0.0498716, 0.00377035048, -0.0242710188, 0.0357938893, 0.00111204153, -0.00799040589, 0.00617855182, -0.0186399352, -0.0293546375, -1.71719785e-05, -0.0149119478, 0.0441623069, -0.0137127349, 0.0351942815, -0.00933300238, 0.0191482957, 0.0133282049, 0.0276600979, -0.0390004776, -0.0153812049, -0.0273994, 0.00582009135, 0.0309188291, 0.010845053, 0.00475122826, -0.00946335122, -0.0228632484, 0.0189788416, -0.0186008289, -0.00230718078, 0.0130479541, 0.00873339549, -0.000238905632, 0.00891588442, 0.000437484472, 0.0241537057, 0.0209862199, -0.0354810506, 0.026343571, -0.00671950076, 0.00578424521, -0.0415553227, 0.0198782515, -0.0380098261, 0.0146903535, -0.00585919619, 0.0288071707, 0.0173885822, -0.0319616236, -0.0179751534, -0.00600258028, 0.00900061149, 0.00507384213, -0.00189821015, 0.0320919715, 0.0283639841, -0.00909185596, -0.00070347829, -0.0247533116, -0.00849876739, -0.0245186836, 0.0198521819, -0.0151596107, -0.0521396771, 0.033969, -0.0112556526, 0.0752897, 0.0116597349, -0.0400432721, -0.030214943, -0.0127416337, 0.00952200871, 0.0239190776, -0.0282075647, 0.0183531661, -0.00100857683, -0.0196305886, -0.02586128, -0.00301595451, -0.0391569, 0.00819896441, 9.99004333e-05, 0.0131326811, -0.0411903448, -0.0299542435, -0.0111318212, -0.0059276293, -0.000446853315, 0.0198391471, 0.0217292104, -0.0209862199, -0.0197609384, -0.0293024983, -0.00761891, -0.00362370745, 0.00895499, 0.0191091914, -0.0284943338, 0.0205691028, 0.023840867, -0.0334476, -0.053156402, -0.0494805537, -0.00707144383, -0.0253659524, -0.0084857326, -0.000578017207, -0.0258743148, -0.033317253, 0.0181446075, -0.0113208275, 0.0166064873, -0.0212990586, -0.0056995186, -0.0178969447, 0.00712358346, -0.0216770712, -0.0630368665, -0.0150031922, 0.0103692785, 0.0158895664, -0.00665106764, 0.000960510632, 0.00580053916, 0.0156549383, -0.0111578908, 0.0273211915, -0.00723438, -0.00413206918, -0.00819896441, -0.0237365887, -0.0156027982, 0.0605863035, 0.0258352105, -0.0121485451, 0.0173234083, -0.0217943843, -0.0398086421, -0.00180533633, -0.0176753514, -0.00101427967, -0.0189136676, -0.0287811011, 0.00524329627, -0.00226481725, 0.00576795172, -0.0200346708, -0.0063447468, 0.00992609095, 0.0240624603, -0.0209340807, -0.00767105, 0.00289375195, -0.0386094302, -0.00733214198, -0.0113338623, -0.00376709155, 0.0160199162, -0.0328479968, -0.00841404, 0.0436669812, 0.0102389287, -0.0102845514, 0.0497151837, 0.0121680973, 0.000765394187, 0.0211817436, 0.00414836314, -0.000324854627, -0.013764875, -0.0325872973, -0.0496369712, 0.0544859618, 0.00301758386, -0.0111057516, 0.0121485451, 0.00159270421, 0.044996541, -0.0306842, 0.00242449506, 0.019004913, 0.0225113053, 0.0338386521, -0.0214815475, -0.0188615285, -0.00229577511, 0.0341514871, 0.0386876389, -0.0292503592, 0.0667387843, -0.0236323085, -0.0046567251, 0.0309188291, -0.00906578638, -0.010994954, 0.051201161, 0.0176101755, 0.0296674762, 0.0282597058, -0.00480010919, 0.00186888152, -0.00997823104, -0.0576143414, 0.0319616236, 0.0150422966, 0.021155674, -0.0327958576, -0.0378794745, 0.0271126311, 0.00669994857, -0.0366020538, -0.0417899527, 0.0249488354, 0.0356635377, 0.000975174888, -0.0148858782, -0.0167889763, 0.0286246818, -0.0320919715, 0.0198782515, -0.00748856086, 0.00112752046, -0.0443708636, -0.0159808118, -0.015198716, 0.0233846456, 0.035037864, 0.0193438195, 0.00782095175, -0.037723057, -0.0189788416, -0.00975011941, 0.0148076685, -0.0119204335, -0.0103757959, 6.56837728e-05, 0.00263631251, 0.00683029788, 0.0189918764, -0.00804906245, -0.0253659524, -0.0278165173, 0.0150422966, -0.00986743346, 0.0199825317, -0.00663151499, 0.0107081858, 0.00887026265, -0.00143791456, 0.0185486898, -0.0219508037, -0.0504972786, 0.00563434372, -0.0361588672, -0.0213642325, -0.0242188796, 8.24229517e-07, -0.0198130775, 0.03707131, 0.0102845514, -0.0131652681, -0.00864215102, 0.0351682119, 0.0332911834, -0.0288071707, -0.0177796297, -0.0193829257, -0.024909731, -0.027060492, 0.0213772673, 0.0344903953, 0.0541731231, 0.0302670822, -0.0383226611, -0.00157152244, 0.0434323512, -0.000976804295, -0.0320919715, -0.0362631455, -0.024974905, 0.00764498, -0.0205299985, 0.0110731637, 0.0190440174, 0.0313880853, 0.0534431674, 0.0185617246, -0.044579424, -0.0261741169, -0.0315705761, -0.00662499759, 0.0168802198, 0.00925479271, -0.00565063767, 0.000960510632, 0.0189397372, 0.0151074715, 0.0290678702, 0.0187442135, -0.00140777125, 0.00102731457, -0.0345425345, 0.0089875767, 0.0133216875, -0.0036953995, 0.0261350125, -0.0153551344, -0.0303192213, 0.00740383426, 0.0340211391, -0.013230443, 0.0041027409, 0.0038387836, 0.0179621186, 0.0181837119, -0.00705189118, 0.0100825103, 0.0407471582, -0.0309448987, -0.0106364945, -0.000806535652, 0.0136736305, 0.02032144, 0.0396000855, 0.0166195221, -0.00218823715, -0.00837493595, 0.00103057327, -0.0110731637, -0.0075341831, -0.0262392927, -0.00111692969, 0.0133086527, 0.00179393077, 0.0336040221, 0.0209080111, -0.00196175533, -0.0203996487, 0.0280250758, 0.0313620158, -0.00611011824, 0.0258743148, 0.00385833601, -0.0147424936, 0.0240754951, 0.0202823337, 0.0238147974, 0.0229153875, -0.0105973892, 0.0142471669, -0.016919326, 0.017584106, -0.0197218321, -0.0457786359, 0.00711706607, -0.000356423581, 0.0105517674, -0.0210513938, -0.0203344747, 0.0176232103, -0.0208428353, -0.0107212206, -0.0246099271, 0.0335258134, 0.00991957355, 0.0117835673, -0.0180272926, -0.0103236558, -0.0134129319, -0.0130675063, -0.00925479271, -0.0230066329, -0.00282531884, 0.0288071707, 0.00152264151, -0.0444230065, 0.0180794336, -0.0193177499, 0.0108841574, 0.0018265181, -0.032352671, 0.0238017626, -0.0465868, -0.00749507872, 0.000794315361, 0.00784702133, 0.0183010269, -0.0136866653, -0.0139603987, 0.0137388045, -0.00967842713, 0.00782095175, 0.0195263084, -0.0214163717, 0.0314923637, -0.0191222262, 0.007032339, 0.0235149935, -0.0171018131, -0.0293546375, -0.00784702133, -0.0235801693, -0.00228762836, -0.0484116897, 0.0119334683, 0.000782095129, 0.00752114831, 0.0170366392, -0.00394306285, 0.0475253165, -0.0387397781, 0.0585007183, 0.0195784494, -0.00109737727, -0.00494675199, 0.100577436, -0.00859652925, -0.0148207033, 0.0125591448, 0.0336822309, -0.0424416959, 0.0185747594, 0.0147424936, 0.00141917681, -0.00246197032, 0.0171539541, 0.00830976106, -0.0125852143, 0.0250922199, 0.0282857753, -0.00895499, 0.00544207869, -0.0315445028, -0.0196827278, -0.0202692989, 0.0139343282, 0.00303061865, -0.0340211391, -0.0325612277, -0.00837493595, 0.0282336343, 0.0094959382, -0.0231369808, -0.0137779098, -0.0132499952, 0.0154854842, -0.00231858622, 0.000849713804, -0.0392351076, 0.0213381629, 0.0362631455, -0.00965887494, 0.0301888734, -0.00352268689, 0.00100368878, -0.0222636424, -0.0155767286, -0.00735169463, -0.0377491266, -0.0268519334, -0.0264348164, -0.0038257488, -0.0291982181, -0.0305799209, 0.00462413765, 0.00392676936, -0.0155767286, -0.0441101678, -0.00249292841, 0.0169453956, -0.0142471669, -0.0190570522, 0.00402779, -0.0406950191, -0.0157852881, -0.026578201, -0.0148598077, 0.0227980744, -0.00686288485, 0.0079382658, -0.0321180411, -0.0230718069, 0.0269822832, -0.00548444223, -0.0159286708, 0.0347250253, -0.011829189, 0.0109232627, -0.0159808118, -0.00268356409, -0.0090331994, -0.0578750409, -0.00496304547, -0.0106495293, 0.0180272926, 0.0214685127, 0.0293807071, -0.00466976, -0.0271647722, -0.00367258838, -0.0301106628, -0.000219760594, -0.027477609, 0.00253529171, 0.00112344709, -0.0152638908, -0.0213381629, 0.00186399347, -0.00665106764, -0.0232803654, -0.0298238955, -0.0157592166, -0.00472515821, 0.0272429809, 0.00498585682, -0.0132174082, -0.00435040426, 0.0173625126, -0.000852157827, -0.00928738, -0.00436018035, 0.0329262055, -0.0203475095, 0.0332390442, 0.0388962, -0.0246229619, 0.00422005495, -0.0169453956, 0.0207515918, 0.00146724307, 0.021220848, 0.00513901701, -0.010845053, 0.0293546375, 0.0184574462, 0.0172582325, -0.0114251068, -0.0121746147, -0.0353507027, 0.0102389287, 0.00543882, -0.0123505862, 0.0232803654, 0.0180142578, 0.0225504097, -0.00134504074, -0.01364756, -0.0116662523, -0.0109493323, 0.032352671, 0.0109558497, 0.00923524052, -0.0356635377, 0.0039691329, 0.00550073572, -0.00111855904, 0.00521070883, -0.0198130775, 0.020621242, 0.0294589177, 0.0183140617, -0.00546163134, 0.0373580791, 0.0173625126, -0.00468931207, 0.0117249098, 0.00535083422, -0.0351421423, -0.0186660048, -0.0244144034, -0.0294849873, -0.0477078035, 0.0119269509, -0.012396208, -0.013530246, 0.00376383285, 0.0299021043, -0.0124222776, -0.0195784494, -0.0047414517, -0.00741035165, 0.0168411154, -0.00206766417, 0.000597976905, 0.0105648022, 0.032248389, -0.0245186836, 0.0297196154, 0.00644576736, -0.00965887494, -0.00694761192, 0.0220550839, 0.0204257183, -0.00144524663, 0.0146903535, -0.0149771217, -0.0355071202, 0.0300063845, -0.00581031526, 0.00713661825, 0.0431195125, 0.00432759337, 0.0161502641, -0.013764875, 0.00849225, 0.0339950696, -0.0216118954, 0.00026151308, 0.0105322143, 0.0003132454, 0.0125004873, 0.00420376146, 0.00538993906, -0.0245968923, -0.00283672428, 0.00477729784, -0.0128915347, 0.00578424521, -0.00370517583, 0.021155674, 0.00990002137, 0.0131783029, 0.00665106764, 0.0106299762, -0.00279273139, 0.019070087, 0.0155115537, 0.0254571978, -0.0416856706, -0.00839448813, 0.00859001186, -0.00693457713, 0.0441883765, 0.0542774051, -0.00975663681, 0.00532150595, 0.0196827278, -0.0157722514, -0.00302084256, 0.0137779098, 0.000305098569, -0.0330826268, 0.0135172112, 0.0231369808, -0.000708366395, 0.00845314469, -0.00369865843, 0.000107945423, -0.0129436748, -0.0294589177, 0.0340472087, 0.0221593622, 0.0285725426, -0.0339429304, -0.0295892674, -0.0240754951, -0.0409296453, 0.0121746147, -0.00787960831, -0.0415031835, -0.00814682432, -0.00116825465, 0.0615769587, 0.00971101504, 0.0159026012, -0.0178839099, 0.0111644082, -0.0326915756, -0.0037931616, -0.0131652681, -0.00415162183, 0.0173103735, 0.00230392208, 0.00255647348, -0.0123701384, 0.025392022, 0.0139473639, 0.0202823337, 0.0106821163, 0.0409557149, -0.0198261123, 0.0307102688, 0.0205821376, 0.000831790792, -0.0167889763, -0.0465607308, 0.00306972349, 0.0430673733, -0.0177405253, -0.00740383426, 0.027477609, 0.00599606289, 0.00553984055, -0.000211002756, 0.0102063417, 0.015615833, 0.0122528244, -0.0277383085, -0.0307884794, -0.0138039794, -0.0224722, -0.00996519532, -0.00931345, -0.00679119304, 0.00271126325, 0.00819896441, -0.004379733, 0.0188484937, -0.026878003, -0.0357938893, -0.0599606298, -0.0152508551, -0.00369865843, 0.0266955141, 0.0303713623, 0.00264120055, -0.0184574462, -0.0176362451, -0.000743805082, 0.0315184332, -0.000518952729, 0.00993260834, -0.0145209, 0.0285725426, 0.0102649992, -0.054642383, 0.00449704705, 0.00312675117, -0.0283900537, -0.0181055032, -0.0111969952, -0.00443513133, 0.00975011941, 0.0027894727, 0.00442535523, -0.00212958, -0.00806209724, 0.00578750391, 0.0253529176, -0.0300585236, -0.0328740664, -0.00969146285, 0.0126503892, -0.00293448614, 0.0619940758, 0.0289375205, 0.00245871162, -0.0102715166, -0.0116923228, -0.0252616741, 0.00927434489, 0.0326394364, 0.00588200707, 0.0105126621, 0.0158895664, 0.0172712673, 0.00456548063, -0.00222897111, 0.019135261, -0.0152508551, 0.012663424, 0.00813378952, -0.00770363724, -0.00272266869, 0.0157070775, -0.0122397896, 0.00140288321, 0.0562065728, 0.00714313565, -0.0185747594, -0.0347771645, -0.0194220301, -0.0201780554, -0.00314793293, -0.0244404729, 0.0228762832, 0.0257830694, 0.0125265578, -0.00313163945, 0.0100303702, -0.0205430333, 0.00738428161, -0.0248575918, -0.0262392927, -0.00939165894, -0.0186660048, 0.0293285679, 0.0165282767, -0.0139343282, 0.0118226716, 0.0250270441, -0.00210025138, -0.0181315728, -0.0217813496, 0.0113599319, 0.0289375205, 0.0122593418, 0.0122137191, 0.0257700346, 0.00913096126, 0.0283118449, 0.000400823774, -0.0185486898, 0.015615833, 0.00302247191, 0.00122935581, 0.00345099485, -0.0226025507, -0.0102519635, -0.0542252623, 0.0366020538, 0.00263631251, 0.0199825317, -0.0144948298, 0.00463065505, 0.00963280536, 0.00725393277, 0.000686369953, 0.0062013627, -0.00581683265, -0.00564412, 0.00287419977, -0.00357156782, -0.02896359, 0.0282336343, 0.0165413134, -0.00791871361, 0.0079382658, 0.0124874525, -0.0237626582, -0.00544207869, -0.0139343282, 0.000345221692, -0.0242840536, -0.00445142481, -0.000628527487, 0.0227589682, 0.0098152943, 0.0215858258, 0.0073060724, -0.0137779098, 0.00171409186, 0.0256266519, 0.00187214022, 0.00281228381, -0.0233976804, 0.000322614243, 0.00942424685, 0.00864866935, 0.0182488877, 0.0127742207, -0.0261219777, -0.0195002388, -0.0301106628, 0.0111578908, 0.0149901574, -0.00514227571, -0.0170366392, 0.0433020033, 0.00142080616, 0.0129827792, -0.0225634445, 0.00231043948, 0.00524329627, 0.014781598, 0.014664284, 0.00332879252, 0.000817533815, -0.0075341831, 0.0634539872, -0.00594718195, -0.0435105599, 2.7037273e-05, 0.0308666881, -0.00810120255, -0.000417524745, 0.00486528361, 0.00967191, 0.0066217389, -0.0131196463, 0.000794722757, 0.0262653623, 0.0213772673, 0.0228371788, -0.00481314398, 0.00946335122, -0.0150683662, -0.00278784335, -0.01865297, -0.0165543482, 0.00261513074, 0.0175450016, -0.00587874837, 0.0265521295, -0.0133607918, -0.0132891005, -0.0376187786, 0.00933952, 0.00508361869, 0.0282597058, -0.0191743653, 0.0152899604, -0.0141037824, 0.00505429, 0.0413989052, 0.0253659524, 0.0254702326, -0.00111448555, 0.0362631455, -0.0059276293, 0.011144856, -0.0234498195, 0.0177796297, -0.000168028258, -0.0200607404, -0.00148598081, -0.0097631542, -0.0331347659, 0.00250759255, -0.0209340807, -0.0202823337, 0.0313620158, -0.00286605279, -0.00888981484, 0.0162154399, 0.000722216, -0.0224461313, 0.0435887687, -0.00524981366, -0.0123114809, 0.000506732496, -0.0143123409, -0.0196566582, 0.0181967467, -0.00723438, -0.0238669366, -0.00559523888, -0.00267052907, 0.0142471669, 0.0150683662, 0.00310719898, 0.0215076171, 0.0136084557, -0.0323005281, 0.0292503592, 0.00246197032, 0.0243883338, 0.00907882117, -0.0319876932, -0.0169453956, 0.00935255457, 0.0179490838, 0.0474992469, -0.00941121206, -0.00711054821, 0.00770363724, 0.00971101504, -0.0122593418, -0.00483921356, 0.00399194378, 0.0216510016, -0.0170627087, 0.0254180916, -0.0075341831, 0.00826413836, 0.0119660562, 0.0164239984, -0.0190831218, -0.00709099602, 0.00788612571, -0.00908533856, -0.00476426305, -0.00585919619, 0.000858675281, -0.0194611344, 0.00940469466, -0.00254506804, 0.00819244701, 0.000642377126, 0.0347510949, -0.0105126621, -0.0197348669, -0.0299542435, 0.00997171365, 0.00108760106, 0.0119139161, 0.00814682432, 0.00778184691, 0.00890285, -0.0327958576, 0.004246125, 0.0110014714, -0.013230443, -0.00117151334, 0.0131652681, -0.0188875981, 0.00697368197, 0.0216510016, 0.0189397372, -0.00536061032, 0.0196957625, 0.0158374272, -0.00498259766, -0.0249227658, -0.0115098339, 0.00812075473, 0.0114511764, -0.0176492799, -0.0134259667, 0.0110340593, 0.0142602017, 0.00174993789, 0.00892891921, -0.0205691028, 0.019135261, 0.0241406709, -0.0121615799, 0.0194089953, -0.0264739208, 0.00720179267, -0.0215336867, -0.00743642123, -0.0225504097, -0.00256787916, -0.0337865092, 0.0215076171, -0.00293611549, 0.0173885822, -0.0226286203, 0.0136866653, 0.0151465759, 0.0216118954, 0.0183922704, -0.0133738276, -0.00709751341, -0.00707796123, 0.0176362451, -0.0182358511, 0.0119921258, 0.0170496739, 0.00562456762, 0.0109884366, -0.00589504233, 0.00769712, -0.0104670404, 0.0322744586, -0.0119921258, 0.0156027982, 0.0127220815, -0.0344382562, 0.0207776614, 0.024909731, 0.00232021557, -0.0101085799, 0.00525958976, -0.0186008289, 0.020686416, 0.0177274905, -0.00710403081, -0.00595044065, -0.00390069955, -0.00321310759, 0.00211491575, 0.0326915756, -0.0154594146, -0.0172973387, -0.0209340807, -0.0240363907, 0.00429826463, -0.0181837119, 0.00803602766, -0.0397304334, 0.00312023377, -0.0241276361, -3.87292403e-06, -0.00551377097, -0.00244404725, -0.0142080616, 0.000557242776, -0.0027161513, 0.0188484937, -0.0104735577, -0.0280250758, -0.00654678838, 0.000243793722, -0.00378990266, 0.00717572309, 0.0183270965, 0.0183270965, 0.0174276866, 0.00339233782, 0.00564412, -0.00191450375, -0.00928738, 0.0094959382, 0.00241797743, -0.0165152419, -0.00884419307, 0.00966539234, -0.0211687088, 0.00101916771, 0.0274254698, 0.00429174723, -0.0181446075, -0.00160899782, 0.026343571, -0.0222766772, -0.0252486393, 0.0301888734, 0.00130267721, -0.0391569, 0.011796602, -0.00454592798, 0.0277383085, -0.000192265055, -0.0138561195, -0.00596347544, -0.0332129747, 0.0207646266, 0.00116418127, -0.00246197032, -0.0046599838, 0.00578098651, -0.000595125544, 0.0245056488, 0.0195914842, 0.0150814019, -0.00698019937, -0.0188093893, 0.00728000235, -0.000343388645, -0.018001223, 0.0124222776, -0.0213772673, 0.0178057, -0.0171539541, -0.0277383085, 0.0098022595, -0.0105126621, 0.0070258216, 0.0214554779, 0.00285138865, -0.00623395, 0.00363022508, -0.0297717564, 0.0423374176, 0.0295371264, -0.00891588442, -0.00714313565, -0.0105256969, 0.0354289114, -0.0120312301, 0.025444163, -0.019604519, 0.0156288687, -0.00308927591, 0.0184313767, 0.0215076171, 0.0110014714, -0.000839937595, 0.00419398537, 0.0164370332, 0.00499563292, 0.0266955141, 0.0390786864, -0.0157070775, -7.82095158e-05, -0.0018265181, 0.00267052907, -0.0296414066, -0.00514879311, 0.00724741491, 0.0135041764, -0.00297196163, -0.0147424936, -0.0111057516, 0.00751463091, 0.00814682432, 0.000520174741, 0.00506080734, -0.0279990062, -0.0076645324, 0.00768408505, 0.00825762097, -0.0175450016, 0.0113403797, -0.0228893179, 0.00404082518, -0.00290841633, -0.000465183693, -0.0180272926, -0.00893543754, 0.0113664493, -0.00855090655, -0.0151856812, -0.00512598176, -0.0120507833, -0.00277317897, -0.0254311282, 0.0240363907, 0.00407015346, 0.00827065669, -0.0157983229, -0.00581031526, -0.00705189118, -0.0369148925, -0.00541275041, -0.0165152419, -0.00748204347, -0.0126503892, 0.0310752466, 0.0108646052, -0.012813326, 0.0324830189, 0.0199694969, -0.00499563292, 0.0158765316, 0.00995216053, 0.0261741169, -0.0412164144, -0.0127611859, 0.0210644286, -0.000581683242, -0.00297359098, 0.0138691543, 0.00769060245, 0.00103220262, -0.00757328793, -0.00731259, 0.00670646597, -0.0140516432, 0.0153029952, -0.0244144034, 0.0280250758, 0.00945031643, -0.0148076685, 0.00291819265, 0.00614922307, 0.0378794745, -0.012813326, -0.0182488877, 0.00416465662, -0.0132369604, 0.00402779, -0.0153942397, -0.0075341831, 0.0126047665, -0.00288723456, -0.0386094302, -0.0244144034, -0.00217194343, -0.00732562458, 0.00943728164, -0.0084792152, 0.0103692785, 0.00187539903, 0.0198261123, 0.00654352922, -0.00573536428, 0.0369409621, 0.0174407214, 0.043927677, 0.0165934525, 0.0121355094, 0.000722216, -0.0229023527, 0.00499237422, -0.010460523, -0.00305017107, -0.00580053916, 0.0166846961, -0.00545511348, 0.0127611859, -2.90739808e-05, 0.00814682432, -0.0348814428, -0.0192395411, 0.0329783447, -0.0262653623, -0.0167498719, -0.00909185596, -0.0164761376, -0.00139799505, -0.00357482652, -0.00977618899, -0.00432433467, 0.0231369808, 0.0135563156, -0.00769060245, 0.0245317183, -0.0147294588, -0.0127611859, -0.016867185, -0.0132369604, -0.0301888734, -0.00599280419, 0.00873991288, 0.00827717409, -0.00444164872, 0.00302084256, -0.0122006843, -0.00294263312, 0.000908370945, 0.0206473116, 0.00143791456, 0.0107668433, 0.0209601503, 0.0129567096, 0.0188875981, -0.00967842713, -0.0281032864, 0.0144948298, -0.00855090655, 0.00109411858, -0.0194220301, -0.00844011, -0.00922872312, -0.00664455025, -0.0228502136, 0.00678467564, -0.0177405253, -0.00577772781, -0.00673905341, 0.0149119478, -0.0165022071, -0.00643599126, -0.00187865773, -0.00255810283, -0.00306157675, -0.00187539903, -0.0119204335, -0.00882464, -0.00698019937, 0.0404864587, 0.0164891724, 0.0172582325, 0.00784050394, -0.00970449764, 0.0182879921, 0.000963769329, -0.0185747594, 0.00399520295, 0.00752114831, -0.00433085207, -0.014781598, -0.0177796297, -0.0108646052, 0.0254311282, 0.00518138055, 0.00538668036, 0.0165022071, -0.0021198038, 0.0098022595, 0.0189918764, 0.0164370332, -0.00681726262, 0.023123946, 0.00205788785, 0.0104344524, -0.00388114713, -0.000274751656, -0.000286360882, -0.0153681701, 0.011711875, 0.00229414576, 0.0155245885, 0.0158374272, -0.00110878283, -0.00201226561, -0.00840100553, -0.012278894, -0.000407544896, -0.00870080851, 0.0226155855, 0.011144856, -0.00568974204, 0.00181674189, 0.00842055771, 0.00392676936, -0.00455570407, -0.0442144461, -0.0110666463, 0.0114642112, -0.0143905506, 0.011444659, -0.0141168172, -0.0142993061, -0.0108646052, 0.0179751534, 0.0258743148, -0.00555287581, 0.00208232831, -0.00778184691, -0.00363348378, 0.0217292104, 0.0170105696, -0.00524003757, 0.00167009898, -0.00319192582, 0.000257847, 0.0115554556, -0.00861608144, -0.00786657352, -0.0126178022, 0.00771667203, 0.0126699414, -0.016867185, -0.00156174623, 0.00385507732, -0.00641318038, 0.0195393432, -0.0373320095, 0.0201128796, -0.00375405676, 0.00530195329, -0.018118538, 0.0060677547, 0.00756677054, -0.025392022, 0.0326915756, -0.0173755474, -0.00931345, 0.00463391375, 0.0158113576, 0.012246307, -0.0243883338, -0.00198130775, 0.00884419307, -0.00321147824, -0.01531603, 0.000496141613, 0.0208167657, 0.0105126621, 0.0123440688, 0.00731910719, 0.00532476464, 0.0105908718, 0.00478055654, -0.00425916, 0.0121355094, 0.0235149935, 0.0259003844, 0.00776229426, 0.030814549, 0.0231630523, 8.57453269e-05, 0.000787390571, -0.0116532175, -0.0108646052, 0.00727348495, 0.00333693926, -0.0055626519, -0.0125004873, -0.0139473639, -0.0217813496, 0.0098152943, 0.00203018868, 0.007032339, -0.00519115664, 0.00784050394, 0.026878003, -0.0185617246, -0.0281814951, -0.0353246294, -0.00500215031, -0.015733147, 0.00833583064, -0.00111041218, -0.0162545443, 0.00700626895, -0.00838797074, 0.0324048102, 0.00913747866, -0.0156679731, -0.0391829684, 0.00148353679, 0.0133738276, -0.0419724397, -0.00213609729, 0.000892891956, -0.0240624603, -0.00289049326, 0.0021198038, 0.00497282157, 0.00632193591, -0.00975011941, -0.000377809, 0.0149771217, -0.0150422966, -0.00851832, -0.0163588244, -0.0305538513, -0.000447668019, 0.0163588244, 0.0043764743, 0.00378338527, -0.0253529176, -0.00933300238, -0.00595369935, 0.0173103735, 0.0127872555, -0.00016364934, 0.0176623147, -0.0265130252, -0.0132825831, -0.00257113785, -0.0147685632, -0.00484573143, -0.0087203607, 0.00814030692, -0.0141168172, 0.00809468515, -0.0187963527, -0.0245317183, -0.00841404, 0.0154724494, 0.00353572192, -0.0109362975, 0.00507384213, 0.00247989339, 0.0237105172, -0.000846455048, -0.0183140617, -0.0138952238, -0.0209080111, 0.0156549383, 0.0218986645, -0.0163979288, -0.00536386948, 0.011711875, 0.00323266, -0.0109884366, 0.012096405, 0.00917006563, -0.00303713628, 0.0103692785, 0.00741035165, -0.00874643121, -0.00704537379, 0.0270865615, -0.0170496739, -0.0133868624, -0.00336300908, -0.016867185, 0.0173234083, 0.0218204539, -0.00446445961, -0.00125379628, -0.00458177412, 0.00740383426, 0.00241146, 0.0250009745, -0.0161633, -0.00152264151, -0.0224200618, 0.00530521199, 0.0167759415, 0.0179099794, 0.0130609889, -0.00125053758, 0.00129615981, 0.00466976, -0.00348684099, -0.0171800237, -0.00245382357, 0.00883115735, 0.00072588207, -0.00617529312, -0.00808165, 0.0126829762, -0.00201226561, -0.00619810401, -0.00827717409, -0.00960673578, -0.0111969952, -0.00343470112, 0.00787960831, 0.00641969778, -0.0079447832, 0.0123831732, -0.00332227512, -0.00563760241, -0.0163588244, -0.0158765316, -0.00768408505, 0.0238669366, 0.024909731, 0.0133216875, -0.000504288415, 0.0221202578, -0.00761239277, 0.0137909446, 0.0119073987, 0.00391699327, -0.015198716, 0.00519115664, -0.0254832674, -0.00700626895, -0.0153551344, 0.00413206918, 0.00286442344, 0.00535409292, 0.000751544547, -8.59871852e-06, 0.00974360202, -0.00209047506, 0.0128915347, -0.00404734258, 0.0035194282, -0.00052180409, -0.0412946232, 0.00152671488, -0.0157983229, -0.015850462, -0.0154985189, 0.00683681527, -0.00212143315, -0.0131000942, 0.0347771645, -0.0075276657, 0.00855090655, -0.00708447862, -0.00275362679, -0.00827717409, -0.00406689476, -0.000904297514, -0.00138658949, 0.0163066834, -0.00415162183, 0.00518789794, -0.00112589111, 0.00916354824, -0.0209862199, -0.0058363853, 0.00472189952, 0.00257113785, 0.0130414367, 0.00690198969, -0.025509337, 0.0213772673, 0.0136997, 0.00171083317, -0.00208558701, -0.0224591661, 0.0182879921, -0.0154333441, -0.000390640227, -0.00622091535, -0.0180272926, 0.021038359, -0.000827717362, -0.0295110568, -0.0121094398, -0.0340993479, 0.0170496739, -0.00259883702, 0.00167987519, 0.00320659019, -0.00324732414, -0.00932648499, 0.029797826, 0.0137127349, 0.0105908718, 0.0155636938, -0.00774274208, -0.00701278634, 0.0118031194, -0.00419724407, -0.0190831218, 0.00890285, -0.00920265261, -0.0068824375, -0.0021230625, 0.00204811175, -0.00935907196, 0.0102389287, 0.0119334683, -0.00870080851, -0.00284161232, -0.00120410067, 0.0051553105, 0.00954807829, 0.00840752292, -0.00536386948, 0.00332227512, 0.0122854114, -0.00778836431, 0.0157201122, 0.00255158544, -0.0181055032, 0.01016072, -0.0113534145, -0.000169759456, 0.00135481695, 0.0184965506, -0.00526610715, 0.0127416337, 0.00280413707, 0.0024000546, 0.00303876563, -0.0160981249, 0.00270311628, -0.00353572192, -0.0278165173, 0.000263957103, 0.0141689572, 0.0119204335, -0.0112556526, 0.00090755627, -0.00253855041, 0.00581683265, 0.0222766772, 0.00358134415, 0.0124027254, 0.0264999904, -0.00467953598, -0.00357482652, 0.00612967089, -0.0100759929, 0.0131457159, -0.0110601289, -0.0158895664, 0.0117640141, 0.0282075647, 0.00356830913, -0.00260698376, -0.00572232949, -0.00694109453, 0.00852483697, -0.00758632319, -0.00247337599, 0.00449378835, -0.014064678, 0.0266433749, 0.00784702133, 0.0110014714, 0.0262783971, 0.00162203272, -0.0154724494, -0.0102519635, -0.00692805974, -0.0152117508, -0.00032872436, -0.0052889185, 0.0276861675, -0.00897454191, -0.0122202365, -0.0214685127, -0.0115359034, 0.0171148498, 0.0081663765, 0.0297456849, -0.0119334683, 0.0138039794, 0.0122202365, 0.0271908417, 0.00256299088, -0.0113143101, -0.0102910688, 0.00330435205, 0.0401475504, 0.0163588244, 0.0119986432, 0.0165022071, -0.00248315209, 0.00346728857, 0.0124092428, 0.00904623419, 0.00987395085, -0.00758632319, -0.0182879921, -0.0225895159, 0.00448401226, 0.0063447468, -0.0122984461, 0.000896150712, 0.00368888211, -0.00175808475, 0.00874643121, -0.00445794221, 0.0174146518, 0.0011829189, 0.00440906128, 0.00799040589, -0.00966539234, -0.00847269781, -0.023123946, 0.000868451491, -0.0238147974, 0.0205821376, 0.0116727706, 0.0113729667, -0.0138821891, 0.0120051606, -0.00237561413, -0.00524003757, -0.000153771311, -0.00290189893, 0.00281065446, -0.0183401313, -0.0052889185, 0.0153290648, -0.00214424427, -0.0231369808, 0.0227459334, 0.0187051091, -0.0210905, 0.00518789794, -0.00254018, -0.0136997, -0.00618181052, -0.00954807829, 0.000787390571, 0.00183140615, -0.0415813923, -0.00101998239, -0.0244665425, -0.027060492, 0.00304365368, 0.0012863836, -0.00676512299, 0.0320659019, 0.031231666, -0.0345164649, -0.00171083317, -0.00628283108, 0.00681726262, 0.00616877573, 0.0137127349, -0.0144296559, 0.0253007784, -0.0161633, 0.00692154188, 0.010727739, 0.013347757, 0.00279761944, -0.00997171365, 0.00657937536, 0.0051520518, -0.0130153671, 0.0100825103, -0.00138333079, -0.0106886337, -0.0189658068, -0.00341189, 0.00511294696, -0.00354223931, 0.00832279585, -0.00182488863, -0.0177405253, 0.00933952, -0.00705840858, -0.0225504097, -0.0102128591, -0.00417117402, -0.000357645593, 0.00464043114, 0.00384856, -0.0333433226, 0.00681074522, -0.0172582325, 0.0171669889, 0.008759466, -0.0017629728, -0.0115945609, 0.00186725217, -0.024909731, 0.0117900847, 0.00771015463, -0.00917658303, -0.0113012753, 0.0122658592, -0.00484899, -0.00339559652, -0.00598954549, -0.0159286708, -0.000850528479, 0.00126846053, -0.0143384114, 0.0207646266, 0.0126829762, -0.00219149585, 0.00274222111, 0.00188517524, -0.0180924684, -0.00239516632, 0.00756025314, 0.0213251282, 0.00892891921, 0.000580868567, 0.0237887278, 0.0311013181, -0.00663803238, -0.0117509793, 0.0220029429, -0.00098332169, -0.0148728425, 0.017584106, -0.0200346708, -0.00285138865, 0.00644250866, -0.0104214177, -0.0166586265, 0.00429500593, -0.00672601815, 0.0110601289, -0.00943728164, -0.00228925771, 0.00679771043, 0.00135563163, 0.0136214904, -0.0287811011, -0.0205430333, -0.00774274208, -0.010043405, 0.00725393277, -0.0187702831, 0.0179881882, 0.00627631368, -0.0038290075, 0.0102584818, -0.00192753866, -0.0106430119, -0.0059797694, 0.0143253766, 0.00736472942, 0.0350900032, -0.0124027254, -0.00895499, -0.0112100309, -0.00153812044, -0.0119008813, 0.0205951724, 0.00225178222, -0.0239712168, -0.0055691693, -0.00979574211, -0.00895499, 0.0169714652, 0.0117640141, -0.00879205298, -0.0162545443, -0.00327502354, -0.005706036, 0.0112556526, 0.0132043734, -0.000402656791, 0.0107342564, 0.0230066329, -0.00797737, 0.00105908723, -0.00326850591, -0.00750811351, 0.00308927591, 0.00286442344, 0.000244201074, -0.00434062816, 0.000249496487, -0.00352594559, -0.00885722786, 0.0120181954, 0.0151596107, -0.0271908417, -0.00729955453, -0.00987395085, 0.00859001186, 0.0042428663, 0.00895499, -0.0123701384, 0.000135746464, -0.0148598077, -0.0254311282, 0.010010818, -0.00019297791, -0.00919613522, -0.00459806761, 0.0113338623, 0.00471538212, 0.000851343153, -0.0272429809, 0.011144856, -0.0033825615, 0.0199825317, -0.0158634968, 0.0284161232, 0.024375299, -0.0167368371, -0.0184965506, -0.0067520882, -0.00885071047, -0.000164769532, 0.0103823133, 0.00639036903, 0.0334997438, -0.0024424179, -0.00762542756, -0.0199434273, 0.00539319776, 0.0282336343, -0.0167238, 0.00250107516, 0.00374428043, 0.0412164144, 0.00332553382, -0.0194220301, 0.00614270568, -0.027477609, 0.0131587507, -0.00327176461, -0.00771667203, 0.00318377907, 0.0158634968, 0.00640666299, -0.00496304547, -0.0114837643, 0.018118538, 0.0276600979, 0.00638059294, -0.0111253038, 0.00179230142, 0.046065405, -0.00461436156, -0.00527914241, -0.0288332421, -0.011177443, -0.0211296044, 0.00655656448, 0.0087138433, 0.00787960831, -0.0239060409, 0.0183010269, 0.0213120934, 0.0120442649, 0.00407015346, 0.0042363489, -0.0114381416, 0.02752975, -0.007032339, -1.83430839e-05, 0.00649464829, 0.00763194542, 0.0232282262, -0.000306116941, -0.0192004368, -0.0113990372, -0.00444490742, 0.00318214973, -0.00973056722, 0.00726045, 0.00414836314, 0.0167759415, -0.0129892966, -0.00592111191, 0.00672601815, -0.00667387852, -0.00855090655, -0.00135400228, 0.00453941058, 0.0106886337, -0.0207906961, -0.018001223, -0.0232151914, 0.0112165483, -0.00496630417, 0.00486528361, -0.00375405676, -0.00466650119, 0.00988046918, -0.0169975348, -0.0162806138, 0.00822503399, 0.00455570407, 0.0133412397, -0.00505429, 0.029797826, 0.0064816135, -0.00218334887, 0.0165934525, 0.000538097753, 0.00384856, 0.00109004509, 0.00227133464, 0.0137779098, 0.0199694969, -0.0114251068, -0.0146251796, -0.000670483685, 0.00642295647, -0.00200900692, -0.00152345619, 0.00485224882, 0.0146903535, -0.0177144557, -0.00857046, -0.0257439651, -0.00633171201, -0.00412229309, 0.00699975155, -0.00945683382, 0.00197153143, -0.00164239982, 0.00456873933, 0.005706036, 0.004112517, -0.00739731686, 0.0165282767, 0.0184053052, 0.0176753514, -0.0165022071, 0.0083619, 0.00830324367, 0.00714965304, 0.0114967991, 0.00494349329, -0.0177535601, 0.00308927591, 0.00314630358, 0.0101998243, -0.00761239277, -0.0102910688, -0.00132141495, 0.0103953481, -0.00205462915, 0.0110340593, -0.012963227, 0.00252225692, 0.0082185166, 0.0193047151, 0.0120442649, -0.0168150458, -0.000768652884, 0.0132239256, 0.00896802451, -0.0167759415, -0.0220941883, -0.0227850396, 0.0013898483, -0.0214815475, -0.0084792152, -0.00404082518, 0.00538668036, -0.00185421726, 0.000793500687, 0.0264478512, -0.00359763764, 0.00110959751, -0.000621602696, 0.000293285673, 0.013347757, -0.0209992547, 0.0151726464, 0.00943728164, -0.0119204335, -0.0165022071, -0.00558220409, -0.0103041036, 0.00759284059, -0.000908370945, -0.0167629067, 0.00367910601, 0.0183531661, 0.00207581092, 0.00705189118, 0.00652723573, 0.00153486175, 0.00466976, -0.0123571036, -0.0142993061, -0.00154708198, -0.0326133668, 0.00274547981, 0.0202692989, -0.0111578908, -0.0206473116, -0.0200998448, -0.00386811234, 0.00562456762, 0.00578424521, 0.0135172112, 0.0200346708, 0.00478381524, -0.00455244537, 0.0083619, -0.0355592594, -0.00640340429, -0.0109232627, -0.00019297791, -0.00610685954, -0.0201128796, -0.00407015346, 0.00844011, 0.00772970729, -0.00377686787, 0.00691502448, -0.00514553441, -0.000978433643, 0.0186138637, -0.0191613305, 0.014781598, -0.00656634057, -0.00627305498, 0.0266824793, -0.0157070775, 0.00185095856, 0.0209340807, 0.00960673578, 0.0138039794, 0.00869429111, -0.0043829917, -0.00338582019, 0.00665758504, 0.00660870411, -0.0279990062, -0.0164631028, 0.010010818, 0.02342375, 0.004513341, 0.00239679567, 0.00869429111, -0.00127986609, -0.000117212439, 0.00984136388, -0.00703885639, -0.000613048556, 0.00398868509, -0.00840100553, -0.00102405588, 0.00193079736, -0.0328219272, 0.00502822, 0.0133868624, -0.0147946337, -0.000290637952, 0.0118943639, -0.00865518674, -0.0181446075, -0.0278947279, 0.00436995644, 0.0120377475, 0.0133738276, -0.0170366392, -0.0174146518, 0.00290026958, 0.0160199162, 0.0113534145, 0.00317889103, -0.0298499651, 0.0113925198, -2.67954147e-06, -0.0261871535, -0.0119986432, 0.00781443436, -0.00798388757, 0.0231109113, -0.00573862297, -0.00439928519, -0.00230718078, -0.00501192641, -0.00884419307, -0.0286507532, -0.0610555634, -0.00771667203, 0.0303452928, 0.0138821891, -0.00823806878, -0.00679119304, 0.00524655497, -0.00502822, 0.0112491352, 0.0152899604, 0.00171898, -0.00902016368, -0.00596021675, 0.00178415456, -0.00371821062, -0.0111187864, 0.0189788416, 0.00270474562, 0.0112165483, -0.02896359, 0.00701278634, -0.0220420491, 0.0258221757, -0.00977618899, 0.01326303, 0.00860956404, 0.0116597349, -0.00779488171, 0.0128654651, 0.00375079806, 0.0076645324, 0.00393328676, 0.0196305886, -0.0103953481, 0.000917332422, 0.00819896441, -0.0218595602, -0.0240885299, 0.00204485306, -0.0089875767, 0.00306157675, -0.00789264403, -0.0166064873, -0.0186269, 0.00172712677, 0.0229153875, 0.00616225787, -0.00117721618, -0.00150471844, 0.0171148498, 0.00314630358, 0.00913096126, -0.0114772459, -0.0163588244, -0.0363934934, -0.0123114809, -0.0138952238, -0.00601887377, 0.0560501516, 0.0169453956, -0.0029931434, -0.0181967467, 0.00192916801, -0.00267541711, 0.0270865615, 0.00733214198, 0.0071626883, 0.0131196463, 0.0213511977, -0.0160068814, -0.0255745109, 0.00870732591, -0.0022990338, 0.0161893703, 0.00888981484, 0.00587874837, 0.00510642957, 0.0145991091, -0.0123049635, 0.00384856, 0.00734517677, -0.021272989, -0.00293774484, -0.00999126583, -0.00415488053, -0.0198652167, -0.0347771645, -0.0248706266, 0.0103627611, -0.00789264403, 0.0104474882, 0.00107130746, 0.00137192523, 0.0185877942, 0.0329262055, 0.0235671345, -0.0104735577, -0.03683668, 0.00418095, 0.00539971516, 0.00831627846, 0.011979091, 0.0178057, -0.00545185478, 0.0269301422, -0.0264869556, 0.000706737046, 0.0111969952, 0.0116336653, 0.00840100553, 0.0315184332, -0.00774925947, -0.00490112975, -0.00443839, 0.0306842, 0.0119986432, -0.00159922161, 0.00414184574, -0.0184053052, 0.00332390447, -0.0143253766, -0.022224538, -0.00508036, -0.00644250866, 0.0139864683, 0.00888329744, -0.0071626883, 0.00417769141, -0.00802951, 0.00234302669, -0.00530195329, 0.0191482957, -0.00255321478, -0.00940469466, -0.00123994669, -0.02586128, -0.00941121206, 0.0303713623, 0.0126764588, 0.0225634445, 0.0135432808, -0.00196664338, -0.0126764588, -0.00506406603, 0.00254180934, 0.00862911623, -0.0209731851, 0.00188517524, 0.00161714468, -0.000455407484, -0.0155115537, -0.0190831218, -0.00330109335, -0.00441883784, 6.47163397e-05, -0.0142602017, 0.0382965915, 0.00445468351, 0.0149901574, -0.0266173054, -0.00361393136, -0.0180142578, -0.00705840858, 0.00609056605, 0.0142080616, 0.0205691028, 0.0100368876, -0.0331608355, 0.00434388686, 0.000645228487, 0.0282597058, -0.00751463091, -0.0101476843, -0.00499563292, -0.0028562767, 0.0156940427, -0.00246359967, -0.00325221242, -0.00446120091, 0.00762542756, 0.0199564621, 0.00685636746, 0.00812727213, -0.00062241737, 0.0163197182, -0.0102193765, 0.00359763764, 0.00791871361, -0.00399846165, 0.00338907889, 0.00550725358, 0.0251834635, 0.00298010837, 0.021038359, -0.0239190776, 0.0172582325, -0.00388766476, 0.00577772781, 0.000482699339, 0.0108841574, -0.00497608026, -0.00650442485, 0.0131326811, -0.0042493837, 0.0175450016, -0.00224037678, -0.00159270421, 0.0173494779, 0.00343796, -0.0203344747, 0.00687592, -0.0278686564, -0.00412229309, 0.00745597389, -0.0156940427, 0.00738428161, 0.000824051327, -0.00231206883, 0.0119204335, 0.00894847233, 0.0108189825, -0.000791464, 0.0238278322, 0.0123831732, 0.0221202578, 0.00358460285, 0.0291982181, 0.0233716108, -0.00873339549, 0.017466791, -0.00276829093, -0.0123440688, 0.00136866653, -0.0335258134, 0.0192265064, -0.000361108, 0.00455570407, 0.010343208, -0.00215239101, 0.0200607404, -0.000650116592, 0.00150879193, -0.0057092947, 0.00400823774, 0.004513341, 0.000902668166, 0.0234367847, -0.0200998448, -0.00116744, 0.00539319776, -0.0183010269, 0.0141298529, -0.00533128204, -0.0105582848, 0.00612315349, -0.0138039794, -0.00618506921, -0.00982181169, 0.0170887783, 0.0155636938, 0.0104865925, 0.00786005612, -0.0108385356, -0.00140614191, 0.0224982705, -0.0146121448, 0.00872687809, -0.0193438195, 0.00134504074, 0.00200574822, 0.00224200613, -0.0119204335, 0.00896150712, 0.014898913, -0.00656308187, 0.022407027, -0.00998474844, 0.00912444387, -0.0107668433, 0.0119595388, -0.0272951201, -0.0055626519, -0.00741035165, -0.00301432516, 0.00242123613, -0.0263175014, 0.00220778934, 0.0168411154, 0.00520745, -0.0213642325, 0.026878003, 0.00592111191, 0.00257439655, -0.00398542639, -0.00936558936, -0.0199303906, -0.0130218845, -0.0147424936, 0.00149005419, 0.0106299762, 0.026343571, 0.00398868509, 0.00572232949, -0.00220941892, 0.000872524921, -0.0208558701, -0.0052889185, -0.0160720553, 0.00445142481, -0.00977618899, -0.0163066834, 0.0149901574, -0.0090397168, 0.0112752048, -0.00640340429, -0.00450682314, -0.0103041036, 0.0016929101, -0.0125852143, -0.0132043734, -0.0112686874, -0.00031609679, -0.0176623147, -0.00134585542, -0.00192916801, 0.00645228522, 1.22075071e-05, 0.0159547403, -0.00833583064, 0.00553984055, -0.0155897634, 0.0195002388, -0.0168150458, 0.0195132736, -0.00162936491, 0.0146512492, -0.0282597058, -0.021038359, -0.00712358346, -0.00034685104, -0.0112491352, 0.0126243196, -0.0195263084, -0.00489461236, 0.00189495133, -0.0276861675, 0.0111318212, -0.00549095962, 0.0181837119, 0.00111855904, -0.0229935981, -0.00638059294, 0.0151856812, -0.0125786969, 0.0135041764, -0.0272690505, 0.00473493431, 0.00982181169, -0.00796433538, -0.00655982317, 0.00755373575, 0.00975011941, -0.0188484937, -0.017936049, -0.0286768228, -0.00663803238, -0.0028562767, -0.00709099602, -0.0272429809, 0.00169942761, -0.0131196463, 0.00885071047, -0.0073060724, 0.0542774051, 0.0348814428, 0.00913747866, -0.0100629572, -0.00287908781, -0.00861608144, -0.0148337381, 0.0282597058, -0.0029621853, 0.014064678, -0.0260828733, 0.00083219813, -0.00415488053, -0.00635126419, 0.00696064672, 0.0110861985, 0.00169453945, 0.0170366392, 0.00312512182, 0.00176623161, 0.00665106764, -0.00789264403, -0.000162630982, -0.0175319668, 0.00405386, 0.00763846282, 0.00889633223, -0.00959370099, -0.032248389, -0.00353246322, 0.00890285, 0.0154594146, 0.009026682, -0.00991957355, -0.0233976804, -0.00087415427, 0.00942424685, 0.0122267539, -0.000282083813, -0.00509013608, 0.0262001883, -0.010310621, 0.00908533856, 0.0150814019, 0.00644902606, 0.00887026265, 0.000195014611, 0.020686416, -0.0152769256, -0.0125395926, -0.0189397372, 0.00536061032, -0.0114707286, -0.0271387026, -0.00123750267, -0.0038290075, -0.00174667919, -2.70118144e-05, 0.00178904261, 0.0143253766, -0.000959695899, -0.00136214902, 0.0121811321, 0.00367584731, 0.00795130059, 0.0104149, -0.0063447468, 0.00691502448, -0.00390069955, -0.00484899, 0.0177274905, -0.0121485451, -0.0110731637, 0.0278425869, 0.0247402769, -0.0204257183, 0.000544615206, 0.0254702326, -0.00657937536, -0.0133412397, 0.00328805833, 0.0209340807, -0.0145339351, 0.00332879252, -0.0260828733, -0.0103888307, -0.0186269, -0.0187963527, 0.00936558936, 0.0109428149, 0.00855090655, 0.000882301072, 0.00567019, 0.00865518674, -0.00472189952, 0.00132385897, 0.000505510485, 0.00478381524, 0.0123114809, -0.00867473893, 0.0206342768, 0.0211165696, -0.0148467729, 0.0116336653, -0.0281814951, 0.00487180101, 0.00800344069, -0.0131587507, 0.0113990372, -0.0104149, 0.0111187864, -0.00318540842, -0.00201389496, 0.0354028419, 0.00459806761, -0.00140206853, -0.000164260346, -0.0133607918, -0.00982832909, -0.00846618, -0.00694109453, 0.00727348495, 0.00261676, -0.00659892801, -0.00257113785, -0.0233194698, 0.0290157311, -0.0114055546, -0.000519360066, 0.00566693116, 0.0033727854, -0.0155897634, -0.00818593, -0.00349987578, -0.00129534514, 0.0187963527, 0.00741035165, -0.0115359034, -0.00659241062, 0.0235280283, -0.0251573939, 0.00253692106, -0.00053850509, 0.000971101457, -0.0269301422, 0.00185584661, 0.0126894936, -0.0271387026, 0.0282597058, -0.0134390015, -0.0113925198, 0.0121746147, -0.00722786272, -0.00776881166, 0.02032144, 0.00866822153, 0.00731259, -0.0212990586, 0.0219247341, -0.00197316101, -0.0128328782, 0.00393328676, 0.0158374272, 0.0236844476, 0.00304039498, -0.0270865615, 0.0113273449, 0.0144296559, 0.0192265064, 0.00398868509, 0.0212990586, 0.0175058972, -0.00630238326, 0.00677164039, -0.00255484413, 0.00627305498, -0.00467627728, -0.00413532835, -0.0235541, -0.0112295831, -0.007390799, -0.00748204347, 0.00320170214, 0.0334476, -0.0012863836, -0.00492394064, -0.00604494382, 0.0120312301, 0.0215988606, 0.0259525236, 0.0161763355, -0.00329294638, -0.0102975862, -0.0030355067, 0.000601235661, -0.00813378952, 0.00714313565, -0.0289375205, -0.0087138433, 4.0632287e-05, 0.0204908922, -0.0141428877, 0.0153551344, 0.0203735791, 0.0018297768, 0.0127155641, 0.0143905506, -0.00825110357, -0.00767105, 0.0156549383, -0.0114316242]
|
22 Oct, 2024
|
std::function in C++
22 Oct, 2024
The std::function() in C++ is a function wrapper class which can store and call any function or a callable object. In this article, we will learn about std::function in C++ and how to use it in different cases.Table of ContentWhat is std::function in C++?Example of std::functionMember Functions of std::functionApplications of std::functions in C++More Examples of std::functionstd::function in C++ - FAQsWhat is std::function in C++? std::function is a template class in C++ that is used to wrap a particular function or any other callable object such as a lambda, or function object. It is generally used to write generic code where we need to pass functions as arguments in another function (callbacks). It avoids the creation of extra overloads of the function that may take similar callback functions as arguments.std::function is defined in the <functional> header file.DeclarationTo create a wrapper object, we first declare it using the following syntax:std::function< rtype (atype...)> name();where,name: Name of the wrapper.atype: Types of the arguments that function takes.rtype: Return type of the function you want to store.InitializationThe above syntax only creates an empty instance of std::function. To wrap a particular function inside this wrapper object, we use assignment operator as shown:std::function< ret_t (args_t)> name = f;where f is the function to be wrapped.We can also initialize it at the time of declaration:std::function< ret_t (args_t)> name(f);Example of std::function
C++
// C++ Program to illustrate the working
// std::function
#include <bits/stdc++.h>
using namespace std;
int f(int a, int b) {
return a + b;
}
int main() {
// std::function wrapping traditional
// function
function<int(int, int)> calc = f;
cout << "Sum: " << calc(8, 2) << endl;
// std::function wrapping a lambda
// expression
calc = [](int a, int b) { return a * b; };
cout << "Product: " << calc(8, 2);
return 0;
}
OutputSum: 10
Product: 16
Member Functions of std::functionstd::function contains some member functions to provide some basic functionality. The following table lists some useful member functions of std::function class template:FunctionDescriptionswap()Swaps the wrapped callable of two std::function objects.operator boolChecks if the std::function contains a callable.operator ()Invoke the callable with the given arguments.target()Returns a pointer to the stored callable. If there is no callable stored, returns nullptr.target_type()Returns the typeid of the callable. If no callable is stored, it returns typeid(void).Applications of std::functions in C++Apart from the applications shown in the above examples, std::function can also be used for:Callbacks: Used for event-driven systems where functions are passed and called later when an event occurs.Function Wrapping and Higher-Order Functions: Allows passing functions as parameters and returning them.Stateful Callbacks: Enables callbacks with preserved states, making it easier to manage state without global variables.Replacing Function Pointers: Provides a safer and more flexible alternative to traditional function pointers, supporting multiple callable types.More Examples of std::functionThe following examples demonstrates the usage of std::function in C++ for different applications such as callbacks, state preserved callbacks, function composition.Example 1: Passing std::function as Argument (Callback)
C++
// C++ program to pass the std::function
// as arguments
#include <bits/stdc++.h>
using namespace std;
// Functions for simple math operations
int add(int a, int b) {
return a + b;
}
int sub(int a, int b) {
return a - b;
}
int mul(int a, int b) {
return a * b;
}
int divs(int a, int b) {
return a / b;
}
// Using std::function as parameter
void func(int a, int b,
function<int(int, int)> calc) {
int res = calc(a, b);
cout << "Result: " << res << endl;
}
int main() {
// Calling all the arithmetic functions
func(8, 2, add);
func(8, 2, sub);
func(8, 2, mul);
func(8, 2, divs);
return 0;
}
OutputResult: 10
Result: 6
Result: 16
Result: 4
Example 2: Wrapping Member Functions of a ClassWe can also wrap a member function of a class using std::function object but we have to add one extra argument as shown in the below program.
C++
// C++ program to demonstrate usage of
// unction with member functions
#include <bits/stdc++.h>
using namespace std;
class C {
public:
int f(int a, int b) {
return a * b;
}
};
int main() {
C c;
// Wrapping member function of C
function<int(C&, int, int)> calc = &C::f;
// Call the member function using function
if (calc)
cout << "Product: " << calc(c, 4, 5);
else
cout << "No Callable Assigned";
return 0;
}
OutputProduct: 20Example 3: Composing Two Functions into One
C++
// C++ program to demonstrate usage of
// std::function for function composition
#include <bits/stdc++.h>
using namespace std;
// Composed function
function<int(int)> cf(function<int(int)> f1,
function<int(int)> f2) {
// Returning a lambda expression that
// in turn returns a function
return [f1, f2](int x) {
// Apply f1 first, then f2
return f2(f1(x));
};
}
int main() {
auto add = [](int x) { return x + 2; };
auto mul = [](int x) { return x * 3; };
function<int(int)> calc = cf(add, mul);
cout << calc(4);
return 0;
}
Output18Explanation: In this example, we composted two lambda functions add() and mul() into one function cf() which takes two function wrappers and returns another function wrapper. Then we created a wrapper for this using this composed function and use it to perform the addition and multiplication operator at one call.std::function in C++ - FAQsHow do you clear the contents of a std::function?We can assign nullptr to the std::function to clear its contents.What is the difference between std::function and function pointers?std::function is more flexible than function pointers. It can store lambdas, functors, and member functions, whereas function pointers can only store the address of functions. Also, it is safer to implement as compared to function pointer.Does std::function introduce any performance overhead?Yes, std::function does introduce some overhead compared to direct function calls due internal reference to the function among other things. However, this overhead is usually negligible.Can std::function handle overloaded functions?Yes, std::function wrapper can handle overloaded functions, but you'll need to explicitly cast the function to the correct type to resolve ambiguity.Example:function<void(int)> calc = static_cast<void(*)(int)>(f);function<void(int)> calc = static_cast<void(*)(float)>(f);
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++
|
https://www.geeksforgeeks.org/std-function-in-cpp/?ref=ml_lbp
|
Pandas
|
std::function in C++
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0480882041, -0.00244967593, -0.0135797253, 0.0546916761, 0.0306209493, -0.025202373, -0.0407125503, 0.00591450278, -0.00882682111, 0.0415646099, -0.0110035716, 0.0308073368, -0.0105642276, -0.036558751, -0.0113696912, 0.00764858071, -0.0196107216, -0.00740893837, 0.00892001577, -0.0266002845, 0.0168282092, 0.0278251227, -0.0457982905, -0.0144317867, 0.0099451514, 0.00107090117, -0.00670665363, -0.0117025282, -0.0199169312, 0.0369581543, 0.00712269917, 0.0122550363, -0.0299286488, -0.0297422614, -0.000640294049, -0.020622544, 0.0195308402, -0.00429691793, -0.0158030726, -0.0150974588, 0.0224731136, 0.0601768196, 0.0238044597, -0.00302215456, 0.00215677987, 0.0348812565, -0.0278251227, 0.0110901091, 0.00902652275, 0.000268349337, 0.0306742024, -0.0143252788, 0.0402865186, 0.0169480294, 0.0533337034, 0.000585792062, 0.0243636239, -0.0279582571, -0.000193877204, -0.00818111841, -0.0216077399, -0.000681482546, 0.0201832, -0.0270529427, 0.0150575191, 0.0375705734, -0.0463308282, 0.0264005829, 0.0422569104, -0.0430024639, -0.0354137942, 0.0312067419, -0.0343753435, -1.34304692e-05, -0.0337895527, -0.0195574667, -0.010750616, 0.0332836397, -0.0227260701, 0.0103312423, 0.00169164105, 0.0231387857, -0.01995687, 0.00507908361, -0.00144284579, 0.00670998171, -0.0152971614, -0.0225929357, 0.0359995849, 0.0372776762, -0.048354473, 0.00611753296, 0.0205826033, 0.00963228568, -0.0262275077, 0.0342954621, -0.0347747467, 0.0108970637, -0.0387954116, 0.0703483, -0.00641042925, 0.0497657, -0.000899490376, -0.00806129724, 0.0138726216, -0.00726914685, 0.0394344553, -0.00613417476, 0.010917034, 0.00615747366, -0.0223532934, -0.0389551707, -0.0322185643, 0.0314197578, -0.0454255119, 0.0279848855, -0.0114029748, -0.0390616804, 0.0307807103, 0.0109503176, 0.00945255347, 0.0372244231, 0.04510599, 0.00430357456, -0.0250958651, 0.0458781682, 0.0291564688, -0.028011512, 0.00483278465, -0.00634386204, -0.0367717668, 0.0175471343, 0.0295292456, -0.0123216035, 0.0050291582, -0.0234183688, -0.0017340777, 0.00554838264, -0.0371179171, -0.0207556784, -0.0240840428, -0.0129806194, 0.00171743578, 0.00471629202, 0.0175205078, -0.0274257194, -0.0201299451, 0.037490692, 0.00115494232, 0.00173574185, -0.0118223494, -0.0368516482, 0.0202098265, -0.00593447313, 0.0385557674, -0.035067644, 0.0148578165, 0.0231387857, -0.0213148426, -0.0179065987, -0.00394411152, -0.0361859724, -0.028730439, 0.00219838438, -0.0145649211, 0.0473692752, 0.0418575071, 0.011522796, -0.0481947102, 0.0406859219, 0.0271195099, 0.0316061452, 0.0337096713, 0.0263872705, -0.0161092822, -0.0290499609, 0.0224864278, 0.0405261591, 0.0480882041, 0.0142054576, 0.0299552754, -7.41601107e-05, -0.000994348782, 0.0340291932, 0.0154436091, 0.0208888128, 0.00630059326, 0.00874028355, 0.0467834845, -0.0336031616, -0.00686974311, 0.0461178124, 0.0157365054, -0.0138859348, 0.020835558, 0.0427628197, -0.0603898354, 0.007941477, -1.27023895e-05, 0.0526946597, 0.00123898347, -0.0305943228, -0.0094059566, 0.0102846446, -0.00890670251, -0.0162690431, -0.0112698404, -0.0189184211, 0.0266535394, 0.0250026714, 0.031313248, 0.0132269189, 0.0130338734, -0.027345838, -0.0068431166, -0.00744222198, -0.0334434025, 0.0185855851, -0.0231787264, -0.0427894481, -0.0214213505, -0.00318524428, 0.0325913392, -0.0114362584, 0.00159428641, -0.00300384848, -0.00342821493, -0.000790486461, 0.0209820066, 0.00628727954, 0.0345351063, 0.0330173708, -0.0227926373, -0.00151690189, 0.0123149473, -0.00541191967, -0.043614883, -0.0270662569, -0.0466503501, 0.0191713776, 0.00649030972, 0.00800138712, -0.0176935829, -0.0034681554, -0.00719592301, 0.0168814622, 0.000925285218, -0.00357799139, -0.0216343664, -0.00436348515, 0.0188518539, 0.0130871274, 0.0112764975, 0.0122217527, -0.0114761991, 0.0172142982, -0.0162823573, -0.00453323172, -0.0136329792, -0.0275588538, -0.0321919359, 0.0191181228, -0.0077750585, 0.0501917303, -0.0261476282, -0.00708275847, 0.026294075, -0.0155634303, -0.0100050624, -0.0279848855, 0.0338694304, -0.0193311386, 0.00167167082, 0.00677654892, 0.00935936, 0.0197172277, -0.0317126513, 0.0315528922, 0.0174406283, -0.0197172277, 0.0209686924, -0.012181812, 0.0220737103, 0.0391149335, 0.0452124961, -0.0241239816, -0.0269331224, -0.028064765, -0.0294759925, -0.00665007113, -0.0174006876, -0.015603371, 0.0167616419, 0.0116026774, 0.0506177582, 0.0248695351, -0.0266402252, -0.0319789201, 0.00325680408, -0.0124281114, 0.00788822304, -0.0324315801, 0.028730439, -0.0463840812, 0.00635384675, 0.00508906879, 0.0400735028, -0.0113097811, 0.0194775853, 0.00622071233, 0.0186787788, 0.00216177246, -0.0380498581, 0.0327244736, 0.00115993491, 0.0245899539, -0.0128275147, 0.0298487693, -0.013952502, -0.0399403684, -0.0310203526, 0.0224598013, 0.0044000973, 0.00794813316, 0.0458515435, -0.0128275147, -0.00165170059, -0.000137191, 0.00785493944, -0.0405527875, -0.0027841765, 0.0076152971, -0.0218074415, -0.00641375734, -0.00805464108, -0.00907312054, -0.0453988835, 0.0292629767, -0.00986527093, -0.0108571239, -0.0135264713, 0.0198503621, -0.0148977572, -0.0111100795, 0.0245633256, -0.0410853252, -0.0337629244, 0.0202497672, -0.0238710269, 0.0417243727, 0.00129306945, -0.00331338635, 0.00989855453, 0.0115094827, -0.00098269945, -0.00630059326, -0.0210752, 0.00943924, -0.0219805166, -0.0117624383, 0.00802801363, 0.0466503501, -0.00734902779, -0.0118955728, -0.0406592935, -0.022326665, -0.0110701388, -0.0401267558, 0.0238843393, -0.0143652195, 0.00367118558, -0.00749547593, 0.0238044597, -0.00286072888, -0.0489668921, 0.0108770933, 0.0251091775, 0.0141655169, -0.0312866233, 0.012294977, -0.00871365704, 0.0128940819, 0.0165353119, 0.0209553801, 0.0053153974, -0.00552841276, -0.031259995, 0.0132801728, 0.0109969145, 0.00729577383, -0.0109569747, 0.043162223, 0.0475024097, -0.0234982502, -0.00390749937, -0.0237245783, -0.0186787788, -0.0226195622, -0.0217009336, -0.0364788696, 0.0170811638, -0.00438012695, 0.00154768932, 0.0277186148, -0.0325380862, 0.00320854294, -0.0254287012, 0.0268399268, -0.00144700625, 0.0167217012, 0.0188385397, -0.060762614, -0.0352540314, -0.0191048086, 0.0192778837, 0.0210752, -0.00898658298, 0.0308073368, -0.0018056375, 0.0014594876, 0.0379167236, -0.0130471867, -0.00448330631, 0.0222068448, 0.0263606422, 0.0155634303, -0.0149909519, -0.0160693415, -0.00496259052, -0.0288902, -0.00598107, 0.016375551, 0.00120569987, 0.012627813, 0.017414, -0.0207157377, 0.0118889166, 0.0132602025, -0.0398871154, -0.0432421044, 0.0104976604, 0.0330972522, 0.0532538258, -0.0368250199, -0.014391846, 0.0350143909, -0.0166684464, 0.00703616161, 0.0283842888, -0.00451326137, -0.0343753435, -0.0145516079, -0.0300617833, 0.0144184725, 0.0308872182, 0.00434684334, 0.0319522955, -0.0369581543, 0.0201965123, -0.0385557674, 0.0268665552, 0.0143119656, 0.00385424565, 0.00540193496, 0.00579135353, 0.00596775673, 0.0253355075, -0.0192512572, -0.0276387352, -0.000817113381, -0.00140706589, -0.0139658153, 0.0142453983, 0.020675797, 0.0145782344, 0.022552995, -0.0113230944, -3.65079941e-05, -0.0147912493, -0.0501384772, 0.0310203526, -0.00207523489, -0.0145249804, -0.0470497534, 0.0115560796, -0.00657684729, 0.00804798398, 0.00632056314, 0.0115494234, -0.00726914685, 0.0217275601, 0.0109037207, 0.000458482129, -0.0162157901, -0.00989189744, -0.00335332681, -0.021887321, 0.0163356103, 0.025202373, 0.0117291547, 0.0394877121, -0.00906646345, -0.00470630685, 0.0442273021, 0.0187986, -0.0505911335, 0.0100982562, 0.0123482309, -0.0112032732, -0.0228192639, 0.00113414007, 0.0174539406, 0.00296723656, 0.0506177582, -0.00530874077, -0.0201832, -0.0141655169, -0.0277186148, -0.0209953208, 0.013453247, 0.0223532934, -0.0101115694, -0.00627063774, -0.000656519784, 0.0229523983, 0.0162424166, 0.0172941796, 6.48510904e-05, -0.014777936, -0.0206891112, -0.00486939633, -0.00337329693, -0.0288369451, 0.0171743575, -0.00884013437, -0.0148445033, -0.00113497209, 0.00617744355, -0.0106507652, 0.0267067924, -0.0192778837, 0.00492930692, 0.0077018342, -0.00571147259, 0.0117025282, 0.00854723901, 0.00793482, -0.0362392291, -0.00268765399, -0.00682314625, -0.00742225163, 0.0173341203, 0.0239642207, 0.0067865341, -0.035120897, -0.0119488267, -0.0256150886, -0.0462775715, -0.00537197944, -0.0339226872, -0.00864709, 0.0112498701, 0.0313398764, 0.0161225945, 0.0222467855, -0.0309937261, 0.0268133, -0.0106307948, -0.00814117864, 0.0269730613, 0.0233518016, -0.00933938939, 0.0209021252, 0.0116226468, -0.00848732796, 0.0163888652, 0.0172142982, 0.00791485, -0.00193377945, 0.0114495726, -0.0206624847, -0.0100782858, 0.00825434271, 0.00388752925, 0.00660347426, -0.0135730682, -0.0250159837, -0.0284907967, -0.00710272882, 0.000437263836, -0.00595111493, 0.0144584132, -0.00750878919, 0.00572478632, 0.00638380228, 0.00299053499, 0.00131553586, -0.00838747714, -0.0213680975, -0.0173208062, -4.62850621e-05, 0.0178533439, 0.0155634303, 0.00154685718, -0.00067565788, -0.00195042137, 0.00348146865, -0.0250692386, 0.00448996294, 0.0159894601, -0.0245766398, -0.00363457343, 0.0186787788, 0.0181728676, -0.0134931877, -0.00324515486, -0.0188917946, 0.0294759925, -0.0325913392, 0.0178400315, 0.0135597549, -0.0193045121, -0.00232652645, -0.0154036684, 0.00828096922, 0.0361327194, -0.00897992589, -0.00428027613, -0.00115411018, -0.0288103186, 0.022606248, -0.0455053933, 0.0105509143, -0.0112898108, 0.0222600978, 0.00983864442, -0.00764192361, 0.0101781376, -0.0332836397, 0.0566620678, -0.000832091, 0.0438545235, 0.0127276639, 0.0877623, -0.00926616509, -0.00328509533, -0.0165619384, 0.0102114212, -0.0157897584, 0.0127942311, -0.0132402321, 0.0133334259, 0.0328309834, 0.0301682912, -0.000483028824, -0.0156433117, 0.0173208062, 0.0204894096, -0.00735568441, 0.0122750066, 0.0116692446, -0.022766009, -0.0126211559, 0.026573658, -0.00373109616, -0.0101049133, -0.0258281045, 0.00989189744, 0.0375173204, 0.0258414187, -0.0192645714, 0.008707, 0.0215811115, 0.00634719, -0.0147113688, -0.0317392796, -0.0174539406, 0.0241772365, 0.0158696398, -0.0295292456, -0.022552995, -0.0249094758, 0.0125213051, -0.0254553277, 0.00268931803, -0.0154302958, -0.0221003368, -0.0115827071, -0.0238843393, -0.0068031759, -0.0155234896, -0.0423101634, -0.0096589122, 0.0275322273, -0.0219672024, 0.0117291547, -0.00508906879, -0.0027924974, -0.0224331729, 0.00776840141, 0.0244035646, -0.0242970567, -0.0146847423, -0.0216077399, -0.00726249, 0.00437347032, 9.92788555e-05, -0.0249094758, -0.0293694846, -0.000242138485, 0.0192645714, -0.00160177518, -0.00544853183, 0.0118290056, 0.0191580635, 0.0284109153, 0.00605096575, 0.011356378, 0.00714932568, -0.0497657, 0.00170745072, 0.000121173252, 0.0114828562, -0.00750213256, 0.0111500192, -0.0136130089, -0.027345838, 0.00197538408, -0.0432154797, 0.00357799139, 0.00962562859, -0.0130605008, 0.0322984457, -0.00570148742, -0.0205293484, 0.00746884895, 0.0408723094, -0.000788406236, -0.0304079335, -0.00282078842, 0.0111433631, 0.0138193676, -0.00267933309, 0.0224598013, -0.0221535917, -0.010364526, 0.0269996896, 0.00660014572, -0.026520405, 0.0264138971, -0.00509239687, 0.0382895, 0.0116492743, -0.00305543817, 0.00542856194, -0.00167333498, 0.000847484684, -0.0115960203, 0.00279083312, 0.0176403299, -0.00424366398, -0.0162024759, -0.000114308503, 0.0335499085, -0.0135264713, -0.023817772, -0.0617744364, 0.00166834251, 0.00304878154, -0.0126078427, 0.0221802182, 0.0145649211, 0.0166684464, -0.00958568882, 0.0154569224, -0.0127542913, 0.0101049133, 0.0222467855, 0.0396474712, 0.0240307879, -0.0151507128, 0.0379433483, -0.0245633256, -0.00539195, 0.0207157377, -0.0199834984, 0.0087602539, -0.00393412635, 0.010031689, 0.00701619126, 0.0220204554, 0.00538862124, 0.0170279108, 0.0390350521, 0.00503248628, -0.0248162821, -0.0525082722, -0.0236979518, 0.00471629202, -0.0358664505, 0.00592448795, 0.00311867706, -0.01334674, -0.0192778837, 0.0619874522, -0.0244035646, -0.0137128597, -0.00387088745, -0.00274756458, 0.00789487921, -0.0364522412, -0.00740228174, -0.0225663073, 0.031313248, -0.0204494689, 0.000808376411, 0.00521887466, 0.0135464417, 0.0160826556, 0.0125812162, 0.0157365054, -0.0055849948, 0.0148045635, -0.00828096922, -0.0456651561, 0.0226195622, 0.00855389517, 0.0211018287, 0.031259995, 0.00152688695, 0.0290765874, -0.00234649656, -0.0349078812, 0.000479284412, -0.00503914291, 0.00593114458, 0.0282777809, -0.0253088791, 0.00224664574, 0.0207823049, -0.00418042531, -0.0299020223, 0.00445667934, -0.000174219051, 0.007002878, 0.00234649656, 0.00531872548, 0.0380764827, -0.00900655333, -0.0288369451, -0.0194775853, 0.0200500656, 0.015882954, 0.0232053548, 0.0179065987, 0.0118489759, -0.0299819037, -0.022326665, -0.00864043273, 0.0211018287, 0.0203296468, 0.0288902, -0.00020791874, -0.0132602025, 0.00483278465, 0.0285706762, 0.0192911979, -0.00472627673, 0.0273192115, -0.0261076875, -0.00873362739, -0.025854731, 0.00553506939, 0.0267600473, 0.00319356518, -0.00404396234, -0.00380432, -0.0346948653, 0.0117557812, 0.0101248836, 0.00894664228, -0.000654855627, -0.0275322273, -0.0350143909, 0.00159095798, -0.00370446919, -0.007941477, -0.0467834845, -0.00921956822, -0.0189317353, 0.0420971476, 0.0186521523, -0.00624068268, -0.0346682407, 5.74662845e-05, -0.0208621863, -0.0118290056, -0.00811455119, -0.000318482838, -0.0215145443, -0.0017507195, 0.0049892175, -0.00328343106, 0.00245633256, 0.0340025686, 0.0181063, 0.0110901091, -0.00110668107, 0.00353805092, -0.00571147259, 0.00978539, -0.0127742607, -0.0390084274, -0.0449196026, 0.0180530455, 0.0334700271, 0.0017590404, -0.0129073961, 0.0205293484, -0.0123149473, -0.00463308254, -0.00511236722, -0.0100849429, 0.0216609929, -0.0185323302, 0.00586457737, -0.0121884691, 0.00800804421, -0.0124281114, -0.0159628335, -0.0218740087, -0.00518226298, 0.0203163344, 0.00155434594, -0.0146314884, 0.0145782344, -0.0164154917, -0.0126610966, -0.0788689107, -0.0162424166, -0.0108837504, -0.00537197944, 0.0229390841, 0.000739728916, -0.0359197035, -0.00157181988, -0.0308073368, -0.00233651162, -0.0091596581, 0.00873362739, -0.0164820589, 0.0169214029, -0.00118156918, -0.0595377758, -0.0205959156, -0.0136995465, -0.0179199111, -0.0320321769, 0.017866658, 0.0223000385, 0.0263207033, 0.00577471172, 0.0136329792, 0.000204174328, 0.0267201066, 0.00460645603, -0.00152355863, -0.0359729566, -0.0299819037, 0.00865374599, 0.0112964679, -0.0268266145, 0.042177029, 0.0263739564, -0.00194210035, 0.0124414247, -0.000809624558, -0.0350942686, -0.0140456958, -0.0167882685, 0.0283576623, 0.0207689907, 0.00423700735, 0.0121285589, -0.010144854, -0.0138859348, -0.00906646345, -0.0294759925, -0.0280381385, 0.0154702356, 0.0142054576, 0.00343154324, 0.0308605917, -0.00778837176, 3.34461583e-06, 0.0429492109, 0.0202897079, -0.0320854299, -0.00778171513, -0.0043834555, -0.010144854, 0.00151606987, -0.050777521, 0.00492597884, 0.0194775853, 0.0313665, -0.0104111228, 0.00418375339, -0.050724268, 0.0195308402, -0.0194376465, -0.0304611884, -0.0211284552, 0.00351475249, 0.0214479771, 0.0245633256, -0.0148445033, 0.00541524822, 0.0182128083, -0.0150575191, -0.0257615373, -0.0125412755, -0.0178799722, 0.0276387352, 0.016814895, -0.00192213024, 0.0227260701, 0.016322298, 0.00270928838, 0.0035646779, 0.00630392134, 0.0118290056, -0.00347481202, 0.00118323346, -0.00388087239, -0.0169214029, -0.00907312054, -0.0477420539, 0.0124347676, 0.0311801136, -0.0140856365, -0.0149776377, -0.0143252788, -0.00724252, 0.000413341215, -0.0066434145, -0.00395409623, -0.0209420659, 0.0286771841, -0.00135630835, 0.00384093216, 0.0136063518, 0.00543521857, 0.028730439, -0.00344818505, -0.010311272, 0.010144854, 0.00464972435, 0.0157631319, 0.0236180704, -0.000482612784, -0.0164687447, 0.000339909166, -0.0077351178, 0.0242304895, 0.00790819246, 0.00743556535, 0.00517560588, 0.023764519, 0.0059111747, 0.0239109676, -0.00149942795, -0.0158696398, -0.0154702356, -0.0160160884, -0.0206624847, -0.00565821864, 0.00815449189, -0.00129889406, -0.0442805551, -0.0149909519, -0.0279848855, 0.0203296468, 0.0116625875, -0.0117890658, -0.0143385921, 0.0228059497, -0.0170012843, -0.0261076875, -0.0316327699, 0.00852061156, 0.0132801728, 0.00762195373, 0.00119155436, -0.0154569224, -0.00134299486, 0.017414, 0.0776440725, -0.0130338734, -0.0249094758, 0.00277751987, 0.0178932846, -0.0072891172, -0.00123815145, 0.0123282606, 0.0120553346, 0.0242438037, 0.0063571753, -0.00123981561, -0.0121485284, 0.0300351568, 0.00121402077, 0.0197039153, 0.0245500132, -0.00702284789, -0.00202697376, -0.0220870245, -0.0343220904, 0.00946586765, 0.0113097811, -0.0145649211, 0.0135863815, -0.00109253544, -0.00772180455, -0.0419373848, -0.0285440497, 0.0183459427, 0.0127742607, -0.0181196146, 0.00763526699, -0.0103312423, -0.00437347032, 0.0439077765, 0.025801478, 0.00775508815, 0.0165752526, 0.0250958651, -0.00327677443, 0.0047029783, -0.00990521163, 0.0101515101, 0.0156299975, 0.00810789503, -0.0162690431, 0.00613417476, -0.0204760954, 0.0229790248, -0.00679319073, -0.0325114615, 0.021394724, -0.0106041674, -0.00903983694, 0.00712269917, -0.0142853381, -0.0242171772, 0.0410586968, -0.0219405759, -0.0138060544, 0.00700953463, -0.00362126, -0.0303546805, 0.00947918091, 0.00656686211, -0.0134931877, -0.0266002845, -0.0160560273, 0.00860714912, 0.0333102681, 0.000751378189, 0.0193045121, 0.0100782858, -0.0177734643, 0.0266535394, 0.0155767435, -0.00242970581, 0.0108238393, -0.0202231389, 0.0253355075, 0.0163489245, 0.0125945294, 0.0067865341, -0.0191181228, 0.0110235419, 0.00928613544, -0.00226328755, 0.0057281144, 0.00202697376, 0.00918628462, -0.0142720249, -0.00563159212, 0.0286239311, -0.0194243323, -0.0178267173, 0.0243103709, 0.00863377657, -0.00310869189, -0.0148445033, -0.0192645714, -0.0059045176, -0.007941477, -0.00802801363, -0.00566820381, -0.021061888, 0.00401733536, -0.0060476372, 0.00579801, 0.00566487573, 0.0283310339, -0.00742225163, -0.0139791286, -0.0195042137, 0.0288369451, -0.0197039153, 0.0179864783, 0.00977873337, -0.00223166798, -0.00668335473, -0.0395675898, 0.0248162821, 0.0101049133, -0.00437347032, -0.000123357488, 0.0313398764, -0.0223399792, 0.0114096319, -0.00197039149, 0.00403397717, -0.0214080382, 0.000936934492, -0.00469299313, -0.0121618425, 0.00554172602, 0.0256284028, 0.0176270157, 0.0315528922, 4.0252402e-05, -0.0077750585, -0.0136995465, 0.0450261086, -0.0279848855, -0.0152838472, -0.00860049296, 0.0106441081, 0.019024929, -0.0345883593, -0.00765523734, -0.0348013751, -0.029715633, -0.0116226468, -0.00580799533, 0.00625732448, 0.0110967653, -0.0248562228, 0.0214879178, -0.0238710269, 0.0146714281, -0.0321386829, 0.0128807686, 0.028011512, 0.0205559768, 0.022326665, -0.0214080382, -0.00931276288, -0.009372673, -0.0269198082, -0.0334966555, -0.0146048609, 0.0272659585, 0.0057281144, 0.00853392575, -0.0189450476, 0.0230722185, -0.0187986, 0.0213148426, -0.0094059566, 0.0226328745, 0.0151640261, 0.00555171119, 0.00602101069, 0.0158696398, 0.0055849948, -0.0133866798, 0.0364256166, -0.018252749, 0.0175205078, 0.0213015303, 0.0200766921, 0.000681482546, -0.00179898075, 0.00982533, -0.00389085757, 0.0359995849, 0.00489602331, 0.00760864, -0.0416178629, -0.0224731136, 0.0101581672, -0.0077351178, 0.00341157313, -0.0284109153, -0.0251091775, -0.00231820554, -0.0130005898, -0.0408456847, 0.00898658298, 0.00771514792, -0.000132614499, 0.00153936842, -0.00846735761, -0.0177734643, 0.00794813316, -0.0101049133, -0.00645702612, 0.00973879267, -0.0272526443, -0.00448330631, 0.00747550558, 0.0105442572, 0.0182128083, 0.00139874499, -0.0131070977, 0.0219672024, 0.00925950892, -0.00375106628, -0.00581465196, 0.00508241169, 0.0165752526, -0.0195574667, 0.000372776762, 0.0132468892, 0.00126810675, 0.0194509588, -0.00539195, 0.0318990424, -0.0443604365, -0.0246964619, 0.0121751558, -0.0106640784, -0.0172276124, 0.0161891617, -0.00632056314, 0.00385424565, 2.51317488e-05, 0.0209287535, -0.0131403813, -0.00200533937, 0.0111034224, -0.00973879267, -0.00346149853, 0.00188884663, -0.00324848318, 0.00670665363, -0.00166834251, 0.038875293, 0.00169247307, 0.00955906138, -0.0354670472, 0.0195042137, -8.36251493e-05, 0.00306209479, 0.0140456958, -0.0105509143, -0.00991852488, -0.0405261591, -0.0198370498, -0.000141143435, 0.0162823573, 0.0115893632, 0.00310037099, 0.00245466852, 0.0040572756, -0.0233384892, -0.0075420728, 0.0134133073, 0.00829428341, -0.0118356626, -0.00195374968, -0.00862046238, 0.0530408099, -0.00367784221, 0.0350410156, -0.022606248, -0.0177202094, 0.00726249, 0.0230855327, 0.0350410156, 0.00467635132, 0.00391082792, 0.0141255772, -0.010311272, -0.0170012843, 0.0225396808, 0.0293961111, 0.00318191596, -0.012514649, 0.00945921056, -0.0120420214, -0.0264538378, -0.0177468378, -0.0137661137, 0.0110301981, -0.0044167391, -0.0185323302, 0.0130072469, 0.0018938391, 0.0385291427, -0.0193843916, -0.0122017823, -0.0373575576, 0.00255285529, -0.00824768562, 0.00352140912, -0.00220836955, 0.0113164373, -0.00456984388, 0.0191980042, -0.0169347152, 0.00165669317, -0.0157498177, -0.000806712254, 0.0316327699, -0.00286572147, 0.00858717877, -0.021780815, -0.00423035072, -0.00115827064, -0.00809458084, 0.0039873803, -0.0261609405, 0.015603371, -0.0206891112, 0.0102447048, -0.00171410746, 0.00938598625, 1.48216213e-05, -0.0139791286, -0.0130871274, -0.00377436471, 0.0146181751, 0.000712269917, -0.0135198142, 0.0242304895, 0.0208754987, 0.0331505053, 0.0152838472, 0.00374108111, -0.0144983539, -0.0184258241, 0.0118423188, -0.0060476372, -0.000395867304, 0.0184125099, -0.0017257568, -0.0104377493, 0.0357333161, -0.00250792224, 0.0263739564, 0.00875359774, -0.00909309089, 0.00353139429, -0.0134332776, 0.0197305419, -0.034242209, -0.0157897584, -0.0144717265, -0.0105043165, 0.0236313846, -0.0193311386, 0.00953909103, 0.0195974074, 0.00477953069, 0.00331837893, -0.015603371, 0.00417376868, -0.00230322802, 0.00981867407, -0.0206624847, -0.0100050624, -0.0128674554, -0.0254686419, 0.00865374599, 0.000359671336, 0.0177068971, -0.00419041049, 0.0230189655, -0.00660347426, 0.00315362494, 0.0515497029, 0.0134199634, 0.0481947102, 0.00525881536, 0.00226661586, -0.00163006631, -0.0276653618, -0.00487272488, -0.00285240798, 0.0150974588, 0.00515230745, 0.00414714171, -0.0120087378, 0.016655134, 0.0075753564, -0.00412051473, 0.0123615442, -0.0156166842, 0.0317392796, -0.0286505576, -0.0123216035, 0.00949915126, -0.0156832505, 0.0169214029, 0.00406393269, 0.0111433631, -0.011855633, 0.0172009859, -0.000601601787, 0.00111333781, 0.00805464108, -0.0538662449, -0.0149110705, 0.00129473361, -0.0193977058, -0.0117957219, 0.00255451933, 0.000365912, -0.0340824462, 0.00854058191, 0.0234050564, 0.00730243046, -0.0203030203, 0.0042569777, 0.0197837949, 0.0355735533, -0.0033583194, 0.00156599528, 0.00806129724, 0.0247364, -0.00670332508, -0.00831425376, 0.0206491705, -0.0159228928, 0.00990521163, -0.00793482, 0.015656624, 0.00875359774, 0.010031689, 0.000483860931, 0.017587075, -0.020675797, -0.000942759099, 0.0126877241, -0.028224526, 0.00435682852, -0.00628395146, 0.00485275453, 0.00268432568, 0.0118290056, 0.00381763349, -0.0188917946, -0.0227393825, -0.0158696398, 0.0230855327, 0.0210086331, 0.00461976929, 0.00271428097, -0.0220870245, -0.00652692188, -0.00972547941, 0.00312533393, -0.00637714565, 0.0123815145, 0.0435882546, -0.00502250111, 0.00567486044, -0.00963894185, 0.000837499567, 0.00816780515, 0.00613750331, 0.0338428058, -0.00764192361, 0.00910640415, -0.00300052017, 0.0152305942, -0.0219538882, 0.00811455119, 0.0155767435, -0.0117358118, 0.00084873283, 0.0202630796, -0.00392081263, 0.0055849948, 0.00171077915, -0.00285740057, 0.0120020807, 0.0122616934, -0.0107772425, -0.00326179666, -0.00406726077, 0.0108171832, 0.00750878919, -0.0144717265, 0.000978539, 0.00374440942, -0.00697625102, -0.0159894601, 0.0105043165, -0.00117657671, 0.00934604649, -0.0330173708, 0.0176935829, 0.000269389449, 0.0104976604, 0.0114628859, -0.015550117, -0.0108304964, 0.00760198338, 0.0294493642, 0.0238843393, -0.00927282218, 0.0184524506, -0.016322298, 0.00616745837, 0.0375705734, 0.0139125613, -0.00297222915, 0.0146714281, 0.00660014572, 0.00740228174, -0.000244218711, -0.00111084152, 0.00491932221, -0.00315362494, -0.0131137539, 0.00339493132, 0.00112498703, -0.0185722709, -0.00782831199, -0.00720923627, 0.0499254614, -0.00921291206, 0.0257881638, -0.0179465394, 0.0110634817, 0.0212482754, 0.00902652275, -0.00836750679, 0.0268133, 0.0139924427, 0.00310536358, -0.00626065256, 0.0145382937, 0.00271927333, 0.0269996896, -0.00429358939, 0.000256908097, -0.00290066935, 0.0115960203, 0.0145382937, 0.00250792224, -0.00849398505, -0.0151640261, 0.00273591513, 0.00547183026, 0.00709607219, 0.00927282218, 0.020396214, 0.000647782872, 0.0160160884, 0.0250292979, 0.00986527093, -0.0118489759, 0.0126145, -0.00339493132, 0.0148178767, -0.00453656027, 0.00336830434, -0.0121551855, -0.00254952675, -0.000137503041, 0.0090864338, -0.0114096319, -0.0125213051, -0.0332037583, 0.00798807386, 0.0174406283, 0.009372673, 0.00315528898, -0.00441008247, -0.00289900508, -0.0077351178, -0.0154835498, -0.0447598398, 0.0120553346, 0.00831425376, -0.00224331743, -0.00834753737, -0.023764519, -0.00721589336, -0.0134599041, 0.012401484, -0.00243469817, 0.00200533937, 0.000477620226, 0.013340083, -0.00485608308, -0.0200633779, -0.00694962405, -0.0129207093, -0.0269331224, -0.00238976534, -0.0216343664, -0.00480282912, 0.0271993913, -0.00546517363, -0.0296357535, 0.0177068971, 0.00528544188, -0.00854723901, -0.0179598518, 0.000189716753, 0.00766189396, 0.0357865691, 0.00306875166, -0.0053153974, -0.00899323914, -0.0192512572, -0.00792150665, 0.000502583, 0.00526214344, -0.0088001946, 0.0227526966, -0.01483119, -0.0207823049, 0.00230489206, -0.0114429155, 0.0145116672, 0.00119987526, 0.0127942311, -0.00214513065, -0.00680983299, -0.0130272163, -0.0106907049, -0.00582796521, -0.00159844686, -0.0153770419, 0.00101182261, 0.0116293039, -0.00695628067, 0.0284641683, 0.00728246057, -0.00593114458, -0.00240807142, -0.0189051069, 0.0183725692, 0.012627813, -0.0145516079, 0.0209820066, 0.0117757516, 0.00415712688, 0.00175404781, -0.00118989008, -0.0182394348, -0.0255884621, 0.017374061, 0.00821440201, -0.00584460702, -0.00607759273, -0.0123615442, -0.0180530455, -0.00894664228, -0.0150175784, -0.00711604208, 0.00987192802, 0.0307008289, -0.00716263941, 0.0176935829, 0.00949249417, -0.00121818122, 0.00489269523, -0.00163838721, -0.0141388904, -0.000711853849, -0.0196240339, 0.0059444583, 0.0125479326, 0.0127875749, 0.00121568493, -0.00546184555, -0.00332170725, 0.00182893605, 0.0169746559, -0.0182793755, -0.0278517492, -0.00195042137, -7.44201388e-05, -0.00159844686, -0.0147912493, 0.00686308648, 0.010364526, 0.00273425109, -0.0225130543, -0.0101049133, -0.0157365054, 0.00891335867, 0.00198037666, -0.0111300489, -0.00716929603, 0.00814117864, 6.59432117e-05, 9.79267134e-05, -0.00846070144, -0.0277452432, -0.0211018287, 0.010417779, 0.0219672024, 0.0186388381, 0.00242804154, 0.0278783776, -0.0127343209, 0.00226661586, -0.00755538652, 0.00360794668, 0.000187428494, -0.00193211529, -0.0291564688, 0.00341157313, -0.0110035716, -0.000783413707, 0.0370646603, 0.0267067924, -0.00512900902, -7.66433823e-06, 0.0060875779, -0.00563159212, -0.00540859159, 0.00992518105, 0.0110701388, 0.0225263685, -0.0250692386, 0.0187986, 0.0211683959, -0.0140190693, -0.0143385921, 0.0126544395, -0.00506244181, -0.0242438037, 0.0279848855, -0.0116559304, -0.00540193496, -0.00695628067, -0.00578469643, -0.00339825964, -0.00138875993, -0.0134266205, 0.00560829323, 0.00752875954, -0.00410054438, 0.0111167356, -0.0292629767, -0.021061888, -0.0144317867, 0.000391498819, 0.0138859348, -0.00487938151, 0.0263340157, -0.0122217527, 0.00999174919, 0.0102713313, 0.0113430647, 0.0123082902, 0.00535866618, -0.00891335867, 0.016522, -0.00931276288, -0.0219006352, 0.0198636763, 0.0115427664, 0.0167350136, 0.0122150956, -0.00041583748, 0.0029272961, -0.0269198082, -0.00964559894, -0.00330839376, -0.0122816628, -0.00144783838, -0.00900655333, -0.0165619384, 0.022832578, 0.0257082842, 0.00344485673, 0.0168015808, -0.0275588538, -0.00108754297, 0.0163489245, -0.00559498, -0.00987192802, 0.00953909103, -0.0144317867, -0.00433353, -0.022992339, 0.00271760928, 0.0034382, 0.00865374599, -0.00318025192, -0.0034215583, -0.00167416711, -0.00778171513, -0.0134066502, 0.00832091, 0.0090464931, 0.00882682111, 0.0129606491, 0.011303124, 0.00237978017, 0.0233784281, 0.0134599041, -0.0279316306, -0.0109103769, 0.00237145927, 0.0255218949, 0.00523218838, -0.0155234896, 0.00640710071, -0.0094059566, -0.0188784804, 0.0139791286, 0.0106840488, -0.0254819542, -0.011083452, -0.015656624, -0.020675797, -0.0039873803, 0.00598772708, 0.0195574667, -0.0033583194, 0.000153832822, 0.00395409623, -0.00120237155, -0.00436015707, -0.00317193102, -0.00234816084, 0.021834068, 0.0171876717, 0.00315695326, -0.0091596581, -0.0255485214, 0.00768852094, -0.00826765597, -0.00512900902, 0.00633720495, 0.0181329269, 0.00441008247, -0.00263606431, -0.00807461143, -0.0339226872, 0.00875359774, 0.00503914291, -0.0291298423, 0.00324681913, -0.00903318, 0.0026660196, 0.0177068971, 0.0146314884, 0.00993183814, -0.0190515555, -0.00844073109, 0.00310702785, -0.0198636763, 0.00179065985, 0.00184224953, 0.0193577651, 0.0206491705, -0.0183725692, -0.00429358939, -0.0320854299, -0.0289700795, 0.0136995465, 0.0225130543, 0.014777936, -0.016095968, 0.0151640261, 0.0079015363, 0.011742468, 0.0104244361, 0.00838747714, -0.0276653618, 0.00396075333, 0.0222600978, 0.031153487, -0.00783496909, 0.012681067, -0.0135198142, 0.00884679146, -0.0027042958, -0.0260544326, 0.00827431306, -0.0129606491, -0.00923953857, 0.00387754408, -0.00483278465, -0.00756204315, -0.00143618905, -0.00340658054, -0.0121751558, 0.0166151933, 0.0292097218, 0.0152439075, 0.00862046238, 0.00892667193, 0.0163888652, 0.0068764, 0.00477620214, -0.0228059497, -0.0257482249, 0.00626730965, -0.00839413423, 0.0111300489, 0.0205160361, -0.00582796521, -0.0109103769, 0.0133866798, -0.00288236327, -0.00185556291, 0.0127010373, 0.0281979, -0.0193444509, -0.00374440942, -0.00519224769, 0.0137661137, -0.0106773917, -0.00505911326, 0.0120619908, 0.00672662351, -0.00850729831, 0.00931941904, 0.00493263546, -0.00786825269, -0.00825434271, 0.00588454772, 0.00366452872, 0.0239509083, -0.0448663458, 0.00591783132, -0.000282494904, -0.0100583164, 0.0184258241, -0.000181915893, -0.0108304964, 0.0272526443, 0.0198503621, -0.0309404712, -0.0124281114, -0.0109969145, 0.000839995861, -0.00180397334, -0.00478285924, -0.0125679029, 0.0475024097, -0.0126477834, 0.00575807, 0.0277186148, 0.00194709294, 0.0109103769, 0.000492597872, 0.0020203169, 0.0207423642, -0.0335232839, 0.00593780121, -0.0211284552, -0.0161891617, -0.0189716741, -0.00487272488, 0.00484942645, -0.00782165583, 0.0138326809, -0.0306209493, -0.0105708838, 0.0187986, 0.0137528, -0.00714932568, -0.00259778812, 0.000630725, -0.00873362739, -0.00823437236, 0.000239642206, -0.00892001577, -0.00991186779, -0.0122816628, 0.0077750585, 0.00303380378, -0.014391846, -0.0105176307, 0.00756204315, -0.0025694971, -0.00397739513, 0.00774843153, 0.0136995465, 0.00555836782, 0.013619666, -0.00740228174, 0.00617411546, -0.0142054576, 0.0088001946, -0.0139125613, -0.00330007286, -0.011908886, 0.0189849883, -0.0159894601, 0.000147696148, 0.0110901091, 0.0123349167, -0.0114761991, -0.0236979518, -0.00222833967, 0.0346948653, 0.0254020747, 0.00381763349, 0.00767520722, 0.0292896032, -0.0211950224, -0.00303879636, 0.0096921958, 0.0134798745, 0.000983531587, 0.0278783776, -0.0182128083, 0.00253454922, -0.0036279168, -0.000303921232, -0.0223133527, 0.0322984457, 0.0113430647, 0.0174273141, -0.00449329149, 0.0121418722, 0.0182128083, 0.0122150956, -0.026081061, -0.0167616419, -0.0133866798, -0.0220071431, 0.00378102157, 9.41823e-05, -0.0247763414, 0.0261476282, 0.00296723656, 0.010530944, 0.000463474687, -0.00968554, -0.00648365309, -0.013672919, 0.018745346, -0.0152838472, 0.0285706762, 0.00718926638, 0.00264272094, -0.00836085062, 0.00546850218, -0.00538862124, 0.0147379963, 0.0197704826, -0.0160560273, -0.0042336788, -0.0294493642, -0.0268133, 0.0067166388, 0.0180663597, 0.013672919, -0.00788156595, -0.00543189, -0.00590784615, -0.00675990712, -0.00249294471, 0.00378102157, 0.00475956034, 0.00653690705, -0.00219505606, 0.00308539346, -0.00527212862, -0.00788156595, -0.00658017583, -0.0169879701, -0.00543189, 0.00462975446, 0.00732240081, -0.0110568255, -0.00792150665, -0.0051722778, 0.018359255, -0.0278783776, -0.0151374, -0.0164421182, -0.00530874077, 0.0079015363, 0.0143652195, 0.00956571847, 0.00551509904, -0.00508574024, -0.00455320207, -0.008707, -0.000428110827, -0.0194243323, -0.020835558, 0.0101847937, -0.0102047641, 0.00613750331, -0.0202497672, 0.02966238, -0.00486606825, 0.00231487723, -0.00663010124, 0.0485674888, 0.0243769381, -0.0124880215, -0.0100183757, 0.0154835498, -0.0233384892, -0.00266269129, 0.0210485738, -0.00573809957, 0.0180397332, 0.0123149473, -0.0229390841, -0.0101315398, 0.00734902779, 0.00438678358, 0.00530208368, 0.00548181543, 0.00738896802, 0.0285440497, 0.011689214, -0.0284641683, 0.0116958711, -0.0207956191, -0.00831425376, -0.00925950892, 0.00459979894, -0.00877356716, -0.0105376, 0.00437679887, 0.00138875993, 0.0045265751, -0.00355136441, 0.0147646228, 0.0200234372, 0.018306002, 0.00238144444, 0.0158163849, -0.00257448945, -0.013067157, -0.0191447493, 0.00526214344, -0.0288902, -0.0043535, 0.00903318, -0.0072558336, -0.00873362739, -0.00206358568, 0.0130605008, 0.0102247344, 0.00222667563, 0.0116958711, 0.00703616161, 0.0350942686, -0.0270928834, -1.98791749e-05, -0.0121019315, -6.59952202e-05, 0.00996512175, -0.0207823049, 0.000673993723, 0.00753541617, -0.00388420071, -0.0135131581, 0.00519890478, 0.00294060959, 0.0141522037, 0.0269996896, 0.00227992935, 0.00271760928, 0.0027209376, -0.0207689907, -0.0129073961, -0.00146614434, -0.00437679887, 0.0212749019, -0.00117740873, -0.0319522955, -0.0153237879, -0.00925285183, 0.00291731115, 0.0224598013, -0.0100649726, -0.010970288, -0.0107239885, -0.0337096713, -0.020675797, 0.0130139031, 0.00502582965, 0.0145649211, -0.00414714171, -0.00352806575, -0.0038342753, -0.00141205848, 0.0260144938, 0.00785493944, 0.00525548682, 0.0198370498, -0.000128038009, 0.0332303867, 0.0157365054, -0.0109902583, -0.00562160695, 0.00354137924, 0.0231920406, 0.00272759423, 0.00132968137, -0.00748216221, 0.00748881884, -0.0176270157, -0.011522796, -0.0106507652, -0.00754872942, -0.00956571847, 0.0288902, 0.00537530798, -0.0176802687, -0.0199169312, 0.0192512572, -0.000574558857, -0.0135264713, 0.007941477, 0.00218340685, 0.0152039668, 0.0354137942, -0.0118290056, 0.00462309783, 0.00751544582, -0.00744222198, 0.00997177884, 0.0150841456, -0.0139658153, -0.00245799683, 0.00919294171, -0.00869368669, -0.0115361093, -0.0184790771, -0.00141621893, -0.0182793755, 0.000483028824, 0.0219938289, 0.00496259052, 0.00595111493, 0.0169080887, -0.00623402558, 0.0159761477, 0.00388087239, 0.00722255, 0.0282511543, 0.00678986264, -0.0205959156, -0.0131470375, -0.00404729042, 0.000867870927, -0.00580799533, -0.0180530455, -0.00702284789, -0.00125728955, 0.00219172775, 0.00612751814, 0.0034049165, 0.00691634044, 0.00419373857, -0.0034847972, 0.00111833028, 0.0119421696, -0.0152971614, 0.00493596401, 0.00193544372, -0.0162823573, 0.0028973408, 0.00402066391, -0.0259878654, -0.00818111841, 0.0249893572, -0.0188518539, -0.00397739513, -0.0116625875, 0.00218507089, -0.0220470838, 0.0193977058, -0.0119288564, -0.00380099169, -0.0146181751, -0.00878688134, -0.000627396628, 0.00927947927, -0.00417044, -0.00113830052, -0.011689214, -0.00796810351, -0.0183858834, -0.00704947487, 0.0212882161, 0.00618742872, 0.0103046149, 0.0202231389, 0.00414714171, 0.00117657671, -0.0164154917, -0.0129473358, -0.0111633325, -0.0123548871, 0.01047769, 0.00226495182, -0.00852726866, 0.00215677987, -0.000822522, -0.000911971729, 0.00278916908, -0.00406726077, 0.0187586602, -0.022766009, 0.0197571684, -0.0265070908, 0.0061974139, -0.00462975446, -0.0145249804, 0.00436015707, -0.0139791286, -0.00400735, 0.00238643703, -0.0109370044, -0.00775508815, 0.0225663073, 0.00987858418, -0.00868703052, -0.00821440201, -0.00375106628, -0.0195707809, -0.0150708323, -0.0234183688, 0.022326665, 0.0108038699, -0.00590784615, -0.0125945294, -0.0170412231, 0.00312366965, 0.0125679029, -0.0199435577, -0.0122350659, 0.00711604208, 0.00145615928, -0.00460978411, -0.00575141283, -0.0239509083, 0.0255352091, 0.0125745591, -0.000656935852, 0.0130471867, 0.00538529316, -0.0146181751, -0.0122284098, -0.0258281045, 0.00608092127, -0.00592448795, 0.0273724664, -0.0179864783, -0.012514649, -0.000241306392, 0.00463641109, 0.00688971346, 0.00839413423, -0.0178932846, 0.0112631842, -0.0071293558, -0.0141655169, -0.00596775673, 0.00923953857, 0.00230489206, -0.00943258405, 0.000941927, 0.00327344611, -0.00704947487, -0.020622544, 0.00316693843, 0.0116958711, -0.0696027502, -0.0158297, 0.0248429086, 0.00368117052, -0.00433353, 0.00548847206, -0.0157764461, -0.0047029783, 0.0163489245, 0.00706944522, -0.00154768932, 0.00277086301, 0.00544520374, -0.0102646742, -0.0109969145, -0.00658350391, 0.0109769441, -0.00630392134, 0.01196214, 0.00334167737, -0.00299386354, -0.00479284441, 0.0147646228, -0.00877356716, 0.00373775279, 0.00987858418, 0.0193178244, -0.0125878723, -0.000374857, -0.000419581891, 0.010311272, 0.00834088, 0.020342961, 0.0228592046, 0.000567070034, -0.0212882161, 0.000996845076, -0.0214346647, -0.00417044, -0.00503914291, 0.0161225945, -0.0024596611, -0.00580799533, -0.017587075, 0.00183226436, 0.0230988469, 0.00748881884, -0.00793482, -0.00891335867, 0.00224997406, -0.00625732448, 0.0117025282, -0.001005998, 0.000986859901, -0.0271993913, -0.00104843464, -0.00277751987, 0.00705613149, 0.0198769905, 0.00299719186, 0.00684977323, -0.00822105911, 0.000422702229, 0.0060875779, -0.00571480114, 0.0129673062, -0.0156699382, 0.00895995554, 0.008707, -0.00638380228, -0.00404063379, -0.00263772858, -0.0110102277, -0.00267600478, 0.0145649211, 0.0105642276, 0.00321686384, 0.000103127277, 0.00628727954, 0.0108304964, -5.46059709e-05, -0.0034215583, -7.14558118e-05, -0.0174273141, 0.0196373481, -0.00672995206, -0.00446000788, -0.03562681, -0.00327011757, -0.00595111493, 0.0133134564, 0.00278084818, 0.000429358945, 0.00795479, 0.0125013357, 0.0267201066, -0.0186255258, -0.023271922, 0.0172542389, 0.0135730682, -0.00484277, 0.00905315, 0.0230189655, -0.00819443259, 0.0344552249, -0.0196240339, -0.00324349082, -0.0184790771, 0.00989855453, 0.0308872182, 0.024203863, -0.00708275847, -0.000183476062, 0.00619075727, 0.0164554324, 0.00995846558, -0.00563159212, -0.00888007507, -0.00746884895, 0.00913968775, 0.00538862124, -0.0254287012, -0.021061888, -0.00701619126, 0.0176669564, -0.000796727138, -0.00200700341, -0.0113497209, 0.00222501135, -0.0240041614, 0.00971882325, -0.00520223286, 0.0065002949, -0.00956571847, -0.0138992481, -0.0260544326, 0.00316028157, 0.00657684729, -0.0135331284, 0.0165486261, 0.0155634303, -0.011742468, -0.00410720101, -0.01483119, 0.00198869756, 0.00158180494, -0.00781499874, 4.10194843e-06, 0.00290732598, -0.00909974705, -0.0196373481, -0.00884679146, -0.00326845353, 0.017813405, 0.00486606825, -0.0103512118, 0.0180397332, 0.0165086854, -0.000358839257, -0.0266535394, 0.0150175784, -0.0171743575, -0.010144854, 0.021115141, 0.00418042531, 0.0212615896, -0.000284367095, -0.0293162297, -0.0081478348, 0.00165170059, 0.0258813594, 0.0121884691, -0.0155101763, 0.0127542913, -0.0126544395, -0.00200533937, 0.000193877204, -0.00816114899, 0.00180896581, 0.00799473, 0.0240574144, -0.019903617, 0.00919294171, 0.00243303413, 0.00368117052, 0.0013604688, 0.00183725695, 0.0222467855, 0.00577138318, -0.0113630351, 0.0119288564, 0.0165086854, -0.00326512521, 0.00787490886, 0.00414048461, -0.0307008289, 0.000890337396, 0.0142986514, -0.00217841426, 0.0151640261, -0.0103445556, 0.00231654127, 0.0101714805, -0.00573144294, -0.00200866768, -0.00408057449, -0.00366452872, 0.0204494689, -0.000416045514, -0.0141388904, 0.00467968, -0.0261210017, -0.00684977323, 0.0128075443, -0.009372673, -0.00366452872, -0.00589453289, 0.00809458084, -0.00432021637, 0.00881350785, 0.0252556261, -0.00690968381, 0.0224065464, -0.0126544395, 0.0214746054, -0.0012531291, 0.0188784804, 0.0275588538, -0.00229490688, 0.014112263, 0.0246831477, -0.0139125613, 0.015550117, 0.00343487156, 0.00322352047, -0.00765523734, 0.0048460979, -0.0021551156, 0.00210519019, 0.0312067419, -0.0130538438, 0.0197837949, -0.0168548357, -0.0106773917, -0.00487938151, 0.0075753564, 0.0125612458, -0.0139391888, 0.00752210245, -0.00816114899, -0.00919959787, 0.0105708838, 0.0046696947, 0.00157681247, 0.00496924762, 0.00798807386, -0.00651028, -0.0117091844, -0.0119821103, 0.0189583618, 0.0123282606, 0.0158163849, -0.00758201303, 0.000288319541, 0.0126610966, -0.0150841456, 0.0118689463, -0.0128674554, -0.00990521163, -0.0039307978, 0.00706278859, -0.00443005236, 0.00620074198, 0.0146581149, 0.0104111228, 0.0260144938, 0.00558832334, -0.0172009859, 0.0219538882, -0.00585792074, -0.023484936, -0.0236047581, -0.0224864278, 0.011689214, 0.00319855777, 0.00134049857, 0.00770849129, 0.00934604649, -0.00393412635, -0.0185988974, 0.019743856, -0.000258780288, 0.00991852488, -0.0105841979, -0.0223133527, -0.0148711307, 0.00249294471, 0.00560496515, -0.00580799533, -0.00108754297, 0.0279582571, -0.0012423119, -0.00153936842, -0.0234982502, -0.0091596581, -0.0245899539, -0.0142187709, -0.0220737103, -0.00608424935, 0.00816780515, -0.0188385397, -0.0121684987, 0.0197837949, 0.0133600533, 0.00503248628, 0.0144184725, -0.0144584132, -0.00732240081, -0.0160427149, 0.013952502, 0.00551509904, -0.00308705773, -0.00190049584, 0.00916631427, 0.0025062582, 0.00200533937, 0.00185889134, 0.0190116148, -0.011469542, 0.0170279108, -0.00824102946, 0.0184923913, -0.0220737103, 0.0138726216, 0.00584793556, 0.00929279253, -0.0152971614, -0.0228991453, 0.00812120829, 0.0059111747, -0.0129406797, 0.0194376465, -0.0217941273, -0.00746219233, 0.00925950892, -0.0154036684, -0.00646035466, 0.00127060292, 0.0383960083, -0.0253754482, -0.0266002845, -0.012408141, -0.00534868101, -0.0103911525, 0.00607759273, -0.0154702356, -0.0201565716, 0.00724252, -0.00788822304, 0.0035180808, 0.0201832, 0.0181196146, -0.00558166625, -0.0407125503, 0.0051323371, -0.00764192361, 0.0266002845, 0.0174273141, -0.0238044597, -0.000161113625, -0.00289900508, 0.00103678543, -0.00931941904, 0.0792949423, 0.0480083227, 0.0106707355, -0.00439011212, 0.00389751419, -0.00640710071, -0.00331837893, 0.028064765, -0.0136130089, -0.0160294, -0.0126677537, 0.00384758878, 0.00253954181, 0.00714932568, 0.00435017189, -0.00291897519, 0.00586124882, -0.009372673, -0.0232586078, 0.00363124511, 0.00532205403, -0.00807461143, -0.0105908541, -0.0168282092, -0.00312533393, 0.0110435123, 0.00344485673, -0.0269597489, -0.0278517492, -0.00706944522, -0.00217675, 0.00704281824, 0.00758867, -0.00306875166, -0.0333901495, -0.00933938939, -0.0157365054, 0.0050125164, 0.00826765597, 0.0102313906, 0.0179065987, -0.000949415844, 0.00769517757, -0.00188385404, 0.00620739907, -0.0163356103, -0.0114895124, 0.00710272882, 0.012681067, -0.0317925327, 0.0111433631, -0.0129207093, -0.00376105122, -0.0258147921, 0.0144983539, -0.000877023907, 0.0167749543, 0.0164687447, 0.00750213256, 0.0258414187, -0.0108704371, 0.0267467331, 0.00434351526, -0.00472960528, 0.00119737897, -0.00132801721, -0.000134070666, 0.00479950104, -0.0287038106, -0.000107443753, 0.0136329792, 0.000522969174, -0.0125945294, -0.0066600563, 0.0202630796, -0.00035301462, -0.00575474137, 0.0226728152, -0.0124414247, -0.00816780515, -0.00954574812, 0.0119288564, -0.023484936, 0.0142853381, -0.00673660869, 0.00310702785, -0.0338960588, -0.00221835473, -0.0198104233, 0.0273990929, 0.00465638144, -0.0168947764, 0.00573477102, 0.00626398111, -0.01405901, 0.012847485, -0.00375772291, 0.00858052261, 0.0199169312, 0.00042041397, 0.0342155807, -0.000961065118, -0.0103312423, 0.0176536422, -0.0248562228, 0.0240574144, 0.0136862332, -0.0051889196, -0.0030704157, -0.00560829323, 0.0159628335, 0.00416711159, 0.00133467396, 0.0244035646, 0.00925285183, -0.0122483792, -0.0119421696, -0.0153903551, 0.013672919, -0.0147379963, 0.00772846118, 0.0187719725, -0.0165885668, 0.00828096922, -0.0107373027, 5.4241933e-05, 0.0327777304, -0.0122284098, 0.0159228928, 0.00300551276, -0.00398405176, -0.00824768562, 0.00205526478, -0.0203296468, -0.00114662142, 0.00113081164, -0.0100450022, 0.017094478, -0.0139658153, 0.0158430133, -0.0120087378, -0.0112831537, -0.0179199111, 0.0189184211, -0.0152305942, -0.00561162177, -0.017533822, -0.0115427664, -0.00112831534, -0.00782165583, 0.00568817416, -0.030381307, -0.00395742478, -0.0285973027, 0.0264538378, 0.00296557229, 0.00377769326, -0.00380432, 0.015882954, -0.005155636, -0.00925950892, 0.0104244361, 0.00347481202, 0.00957903173, 0.00273591513, -0.0233118609, 0.0110901091, 0.00437014177, 0.0334966555, 0.00805464108, 0.00165752531, 0.01157605, -0.00309537863, 0.0172409248, 0.00778837176, -0.00880685076, 0.00575807, -0.0151374, -0.0320055485, -0.0196240339, -0.00670332508, -0.00947918091, 0.0139258746, 0.0464905873, 0.0276653618, -0.0138459941, 0.00671331026, 0.00863377657, 0.021834068, 0.0140989497, 0.0125878723, -0.0162024759, 0.00791485, -0.010637451, -0.000718510593, -0.00706944522, 0.00415712688, -0.0289168265, 0.0109037207, -0.0119554838, 0.0150442049, -0.0121751558, -0.0019404362, 0.00673993723, 0.000331172225, 0.0091596581, -0.00335665513, -0.00161176024, -0.00217675, -0.00172742095, -0.000331172225]
|
11 Jan, 2025
|
Virtual Function in C++
11 Jan, 2025
A virtual function (also known as virtual methods) is a member function that is declared within a base class and is re-defined (overridden) by a derived class. When you refer to a derived class object using a pointer or a reference to the base class, you can call a virtual function for that object and execute the derived class’s version of the method.
Virtual functions ensure that the correct function is called for an object, regardless of the type of reference (or pointer) used for the function call.They are mainly used to achieve Runtime polymorphism.Functions are declared with a virtual keyword in a base class.The resolving of a function call is done at runtime.Rules for Virtual FunctionsThe rules for the virtual functions in C++ are as follows:
Virtual functions cannot be static.A virtual function can be a friend function of another class.Virtual functions should be accessed using a pointer or reference of base class type to achieve runtime polymorphism.The prototype of virtual functions should be the same in the base as well as the derived class.They are always defined in the base class and overridden in a derived class. It is not mandatory for the derived class to override (or re-define the virtual function), in that case, the base class version of the function is used.A class may have a virtual destructor but it cannot have a virtual constructor.Compile time (early binding) VS runtime (late binding) behavior of Virtual FunctionsConsider the following simple program showing the runtime behavior of virtual functions.
C++
// C++ program to illustrate
// concept of Virtual Functions
#include <iostream>
using namespace std;
class base {
public:
virtual void print() { cout << "print base class\n"; }
void show() { cout << "show base class\n"; }
};
class derived : public base {
public:
void print() { cout << "print derived class\n"; }
void show() { cout << "show derived class\n"; }
};
int main()
{
base* bptr;
derived d;
bptr = &d;
// Virtual function, binded at runtime
bptr->print();
// Non-virtual function, binded at compile time
bptr->show();
return 0;
}
Outputprint derived class
show base classExplanation: Runtime polymorphism is achieved only through a pointer (or reference) of the base class type. Also, a base class pointer can point to the objects of the base class as well as to the objects of the derived class. In the above code, the base class pointer ‘bptr’ contains the address of object ‘d’ of the derived class.
Late binding (Runtime) is done in accordance with the content of the pointer (i.e. location pointed to by pointer) and Early binding (Compile-time) is done according to the type of pointer since the print() function is declared with the virtual keyword so it will be bound at runtime (output is print derived class as the pointer is pointing to object of derived class) and show() is non-virtual so it will be bound during compile time (output is show base class as the pointer is of base type).
Note: If we have created a virtual function in the base class and it is being overridden in the derived class then we don’t need a virtual keyword in the derived class, functions are automatically considered virtual functions in the derived class.
Working of Virtual Functions (concept of VTABLE and VPTR)As discussed here, if a class contains a virtual function then the compiler itself does two things.
If an object of that class is created then a virtual pointer (VPTR) is inserted as a data member of the class to point to the VTABLE of that class. For each new object created, a new virtual pointer is inserted as a data member of that class.Irrespective of whether the object is created or not, the class contains as a member a static array of function pointers called VTABLE. Cells of this table store the address of each virtual function contained in that class.Consider the example below:
C++
// C++ program to illustrate
// working of Virtual Functions
#include <iostream>
using namespace std;
class base {
public:
void fun_1() { cout << "base-1\n"; }
virtual void fun_2() { cout << "base-2\n"; }
virtual void fun_3() { cout << "base-3\n"; }
virtual void fun_4() { cout << "base-4\n"; }
};
class derived : public base {
public:
void fun_1() { cout << "derived-1\n"; }
void fun_2() { cout << "derived-2\n"; }
void fun_4(int x) { cout << "derived-4\n"; }
};
int main()
{
base* p;
derived obj1;
p = &obj1;
// Early binding because fun1() is non-virtual
// in base
p->fun_1();
// Late binding (RTP)
p->fun_2();
// Late binding (RTP)
p->fun_3();
// Late binding (RTP)
p->fun_4();
// Early binding but this function call is
// illegal (produces error) because pointer
// is of base type and function is of
// derived class
// p->fun_4(5);
return 0;
}
Outputbase-1
derived-2
base-3
base-4Explanation: Initially, we create a pointer of the type base class and initialize it with the address of the derived class object. When we create an object of the derived class, the compiler creates a pointer as a data member of the class containing the address of VTABLE of the derived class.
A similar concept of Late and Early Binding is used as in the above example. For the fun_1() function call, the base class version of the function is called, fun_2() is overridden in the derived class so the derived class version is called, fun_3() is not overridden in the derived class and is a virtual function so the base class version is called, similarly fun_4() is not overridden so base class version is called.
Note: fun_4(int) in the derived class is different from the virtual function fun_4() in the base class as prototypes of both functions are different.
Limitations of Virtual FunctionsSlower: The function call takes slightly longer due to the virtual mechanism and makes it more difficult for the compiler to optimize because it does not know exactly which function is going to be called at compile time.Difficult to Debug: In a complex system, virtual functions can make it a little more difficult to figure out where a function is being called from.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++
|
https://www.geeksforgeeks.org/virtual-function-cpp/?ref=ml_lbp
|
Pandas
|
Virtual Function in C++
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0664463714, 0.0167251974, -0.00891169067, 0.0197168, 0.0280730873, -0.00892431289, -0.0515262336, 0.0140870353, 0.00649442617, 0.0265078619, 0.00602422701, 0.030395681, -0.00973848347, -0.0620031506, -0.0187574681, 0.0331979394, -0.0121936165, -0.00384048419, -0.00590746617, 0.000234507796, 0.0144909639, 0.0174446981, -0.0315317325, -0.036479868, -0.0222287346, -0.0200576149, 0.00459154043, -0.0095806988, -0.01808846, 0.0306228921, 0.0294111036, 0.00659540854, 0.0041939225, -0.00697409222, 0.0357982367, -0.00514378725, 0.00612520939, -0.0376411639, -0.0123072211, -0.012565989, -0.00112027267, 0.0115498537, 0.015311446, -0.00464518694, -0.0140239205, 0.0536216162, 0.0243241191, 0.00996569358, -0.0161571726, -0.0120105855, 0.0389034413, 0.0053836205, 0.0204741675, 0.0288304556, 0.038373284, -0.00183661608, 0.0394336, -0.0410745628, -0.00810383167, -0.0694758445, -0.00645655766, -0.0056707887, 0.0141627714, -0.0301937163, 0.00757998601, 0.0209664553, -0.0694758445, 0.0293606129, -0.00362589676, -0.0353690609, -0.0227841381, 0.00167409773, -0.00703720609, 0.00807227474, -0.00621356908, -0.0252708271, -0.0133801587, 0.0527632684, -0.0315569788, 0.0237434693, -0.0387267247, 0.0312287845, -0.035672009, 0.00644709077, 0.0228724983, 0.00588537659, -8.55489925e-05, -0.0427155271, 0.0364041291, -0.0176592842, -0.0349146388, 0.00417183246, 0.0281740706, -0.0124586951, -0.000910418807, -0.0127490191, -0.0356972516, -0.00833735336, -0.0398880206, 0.0522078648, 0.00776932808, 0.00246144435, -0.0209664553, -0.0289061926, 0.00987733435, -0.0351670943, 0.0139103159, 0.00278963684, 0.0245008375, 0.0615992211, -0.0187195987, -0.0435233824, -0.006169389, 0.0262554064, -0.0260534417, 0.00696778065, -0.0116445245, -0.0865923464, 0.0262806509, 0.023579374, 0.0211305525, 0.028047841, 0.0228724983, 0.00609680824, -0.0536216162, -0.00393831078, 0.0108997803, -0.0184797663, -0.00281803822, 0.00947971642, -0.0178864952, 0.0133170448, 0.0453915559, 0.00118417561, 0.0286284909, 0.0185428802, 0.0348389037, 0.0161066819, -0.000502150389, 0.0147307971, 0.00892431289, -0.0124334497, -0.0066143428, 0.0194012299, 0.00349966879, -0.0201712195, -0.0121873049, 0.0253086966, -0.00180032558, -0.00580332801, -0.0162329096, -0.061801184, 0.0477646403, 0.0316579603, 0.0218879208, -0.0218248051, 0.0457449965, 0.0273157209, 0.00440219836, -0.00514063193, 0.0180379692, -0.0384742692, -0.0296383128, 0.00349335745, 0.00068005285, 0.0176971536, 0.0108303549, 0.0227210242, -0.0378431268, 0.013619992, -0.00442113262, 0.0153366914, 0.0431194529, 0.022922989, -0.00939766783, 0.00328823715, 0.0158542264, 0.00691728946, -0.00653860578, 0.0231249537, -0.00279121473, -0.022847252, -0.0216985773, -0.00505858334, -0.00364167523, 0.0253591873, 0.0240842849, -0.00870341435, 0.0160940588, -0.00555718364, -0.0308753476, 0.0333746597, 0.015235709, 0.00230050366, 0.000702537247, 0.00894324761, -0.0421601236, -0.0076683457, -0.00449055806, 0.00751687214, -0.00526685966, -0.0223802086, -0.0234910138, 0.0224433225, -0.00660171965, -0.0102560176, 0.00165042991, -0.0105147846, 0.0467548184, -0.00925250631, 0.0546819307, 0.0320113972, -0.0106662586, -0.014503587, -0.00125360093, -0.0218248051, -0.0539245643, 0.0223044716, -0.0351418518, -0.0485977456, 0.0154755423, 0.00373003469, -0.0136452373, -0.00869710278, 0.00341130933, -0.00658909697, 0.0210169479, -0.0162834, -0.0153493136, 0.0208276063, 0.0444069803, 0.0186691079, -0.00606525131, -0.0560956821, -0.00591062196, -0.0162960235, -0.00715081114, -0.00902529527, -0.0133675355, 0.044381734, 0.0343087465, 0.0247028023, -0.0336523615, 0.0141627714, 0.0519554093, 0.0251319781, -0.000411818561, 0.0228220057, -0.0361264274, -0.0197294224, 0.0178233813, 0.0202343334, 0.0154755423, 0.00245039933, -0.00879177358, -0.00897480454, -0.0146171926, 0.014061789, -0.0176340397, 0.0227967612, -0.0155134108, 0.0477393977, 4.72430156e-06, 0.031052066, -0.00598320318, -0.0290829111, 0.0321376249, -0.00752318371, -0.00302946987, -0.00679737283, 0.0142385084, -0.0238318294, 0.00527317123, 0.00786399934, 0.0126859052, 0.0161445495, -0.0272652283, 0.046653837, 0.0430942103, -0.00185555033, 0.0290071741, -0.0248669, -0.0114867399, 0.0193633623, 0.058216311, -0.0257883631, -0.0274924394, 0.00394777814, 0.0172301102, 0.0161697958, -0.0258514769, -0.00597058, -0.0147560425, -0.0412512831, 0.0410493165, -0.00250720186, -0.0194517206, -0.0132034393, 0.00869710278, -0.0262049139, 0.0354952887, -0.0370605141, -0.0031493865, -0.00763678877, -0.0206382629, -0.00485661905, 0.0189468097, 0.00285275071, 0.0271642469, -0.0326425396, -0.0254980382, -0.0103759347, -0.0273409653, -0.0162707772, 0.010357, -0.0125091858, -0.00234783906, 0.015311446, -0.0180505905, -0.0231501982, -0.0333494134, 0.0212441571, -0.0115498537, 0.00620725751, 0.0482190624, -0.0190351699, 0.0270380192, -0.033399906, -0.0328697488, -0.0419834033, -0.0168388039, -0.0222161133, -0.065184094, 0.0336523615, 0.0136452373, -0.0372372344, -0.0283255428, 0.0218121838, -0.0317084529, -0.0296383128, -0.0101234782, 0.0202469565, 0.00107845967, -0.00505542802, -0.00297424523, -0.0525108129, -0.000698592572, -0.00253560324, 0.0390044264, 0.0460227, 0.000848882715, 0.00571181299, 0.0210800618, -0.016548479, 0.0403676853, -0.000355016, 0.00135063869, -0.0101045445, -0.00138614024, -0.0192371346, 0.0315317325, 0.0188710727, -0.0167378206, 0.00887382217, -0.04291749, -0.0203226935, -0.00156838179, -0.0269875284, 0.0284012798, -0.00123545574, -0.00931562, -0.0413270183, 0.0187069774, -0.0162707772, -0.0334251523, 0.0305976458, -0.0227210242, -0.0158794709, -0.0173942056, 0.0209285878, -0.0197546687, 0.0555402823, 0.0135063864, 0.0028306609, 0.000667035638, -0.0128500015, -0.0452400818, -0.0303704347, -0.0330212228, -0.0194895901, 0.0178233813, 0.0242988728, 0.0371614955, 0.00630824, -0.0111901043, -0.0038373284, -0.0403929316, -0.0067090136, -0.0469315387, -0.039989002, 0.0122504188, 0.0239706803, 0.0163591374, 0.013695728, -0.0553888083, 0.0283002984, -0.0185176339, 0.0134685179, -0.0182020646, 0.0199692547, 0.0255232845, -0.035672009, -0.0154881645, -0.0361516736, -0.000712398789, -0.0153240683, 0.0374896899, 0.0393578634, -0.0217490699, 0.0203226935, 0.00929668546, 0.0276439134, 0.00260345079, 0.060639888, 0.0210421924, 0.0245260838, 0.0103128208, -0.00845727, 0.0182651784, 0.0209664553, -0.0075421175, 0.00740326708, 0.0439273119, 0.00222476688, -0.00891800225, -0.0426650345, 0.0286032446, 0.0118780462, -0.0177350212, -0.00501124794, -0.00207644911, 0.0306986272, 0.0307491198, -0.0273409653, -0.0351923406, -0.0116445245, -0.00544989, -0.0132034393, 0.0132160624, 0.00713187689, -0.0165863484, -0.0309258383, -0.00975741725, 0.0252329595, 0.0609428361, -0.00879808515, 0.00905054156, -0.0214839913, -0.0068036844, -0.0209538341, 0.0140996575, -0.0115940338, -0.00923357159, -0.0124397604, 0.0356972516, 0.0218374282, -0.00998462737, -0.000470987899, -0.00576230418, -0.0373382159, 0.0483452901, -0.0406706333, -0.0434728935, 0.0255359057, 0.0282245614, -0.0160561912, -0.0108934687, 0.012521809, 0.0018602839, -0.0402162112, 0.0222918484, 0.0050270264, -0.00715712272, -0.0263058972, 0.0074474467, 0.0160309449, 0.0337280966, 0.00531103928, 0.0235541277, -0.013771465, -0.00210327259, -0.0112910867, 0.0310015753, -0.0427155271, 0.008753906, -0.00515956571, -0.0170029, 0.0128310677, 0.0247911625, 0.0498852693, -0.00753580639, -0.0253718104, -0.0357729904, 0.0153998053, -0.00100903434, -0.0467800647, 0.00207329355, -0.0301937163, -0.0028543286, -0.030244207, -0.0173437148, 0.0195653271, -0.00913258921, 0.0260029491, 0.0271894913, 0.0101487245, -0.00943553634, -0.0324910656, -0.00423494633, -0.0216354635, 0.00757998601, -0.0252708271, 0.00475879246, -0.00257189362, 0.000477693742, 0.0280730873, 0.0341572724, 0.00431383867, -0.0117455069, 0.000426413666, -0.0162202865, 0.011316332, -0.00980159733, 0.0319609083, -0.0249300133, -0.0179874767, 0.00965012424, 0.0417057, -0.0141627714, 0.0120989457, 0.0116129676, 0.00573074725, -0.020878097, -0.0246396884, 0.000453237095, 0.00230997079, -0.0278206319, -0.00823637098, -0.00293322117, -0.0235541277, 0.00061220536, 0.0120926341, 0.00853300653, 0.0116571477, -0.0415794738, -0.000702142774, -0.0108934687, 0.00241410872, -0.0128689352, -0.0169902761, -0.023655111, -0.0158668477, 0.0376159176, 0.0312540308, 0.0153998053, -0.00752318371, 0.0309510846, -0.00165042991, 0.00242988719, 0.0301432256, -0.00144767633, -0.0294363499, 0.00532050664, -0.012338778, 0.031632714, 0.0140870353, -0.0121115679, -0.00790817849, -0.0116571477, 0.0169524085, -0.000938820071, -0.0118464893, 0.008312108, 0.00987102278, -2.28788085e-05, -0.0263563879, -0.0160688125, -0.00280383741, -0.0420843847, -0.00201017945, -0.00479981629, 0.0274671931, 0.00393831078, -0.00119048695, 0.0173058473, -0.0173437148, 0.00181452627, 0.0073906444, -0.028047841, -0.0176214166, 0.043876823, 0.0299160145, 0.035672009, 0.00557296211, 0.0273914561, 0.0172427334, -0.00232890504, -0.0450128727, 0.0330464691, -0.000991678, -0.0530157238, -0.00434855139, 0.0194138531, 0.0219131652, 0.0323648378, -0.0133927818, -0.00396671193, 0.0211179294, -0.0285779983, 0.000416552095, 0.0208276063, -0.0119411601, 0.007946047, 0.00596426893, -0.0168892946, -0.00725179352, -0.00631770678, -0.0185428802, 0.00113684009, -0.0214082543, 0.000879650761, -0.0443312414, 0.0182146877, 0.00121257687, 0.0145288324, 0.00800916087, -0.00869710278, 0.0333241671, -0.0145540778, 0.0312287845, -0.0226579104, 0.012414515, 0.0055193156, 0.0904801637, -0.0228220057, 0.0198682733, -0.00396986771, 0.0169650316, 0.0110386312, 0.00901898462, -0.00742220134, 0.00195337692, -0.00133170444, 0.0225695502, -0.0134306494, -0.0462246612, 0.0332231857, 0.000880439708, 0.0154124284, -0.00156364823, 0.00728335045, -0.0160940588, -0.00399511354, 0.0279216133, -0.00121336582, 0.000865450129, 0.0120168971, -0.0130014746, -0.00740957819, 0.00932824239, -0.0155134108, 0.013695728, -0.00541833322, -0.00633979682, -0.00789555628, -0.0292848758, 0.00106110342, 0.0471082553, -0.010249706, 0.00906316377, 0.00559820794, -0.00828686263, 0.016624216, 0.00855825283, -0.00254191458, 0.0109439604, 0.0249047671, 0.00889275596, -0.00116681925, 0.00507120648, -0.0135695, -0.00569287874, 0.0114930514, 0.00100745657, 0.0232006907, -0.0300169978, -0.0126227913, -0.0204615444, 0.0200071242, 0.0152230859, 0.0152609544, -0.0211810432, -0.00161887298, 0.0185176339, -0.0222287346, -0.00493866717, -0.00145714346, -0.0393578634, -0.00691097835, -0.0129383607, 0.00330401561, 0.00601476, 0.00456945039, 0.00703720609, 0.0163717605, 0.0274167024, -0.00163622934, -0.00631770678, 0.0479666069, -0.0179117415, 0.0140239205, -0.000120409597, -0.00358802848, -0.0122630419, -0.000315964251, -0.00106899266, -0.0161066819, 0.0115814107, -0.0199692547, -0.000904107408, -0.021534482, 0.00102481281, 0.0273914561, -0.00847620424, -0.0527632684, 0.013329667, 0.0415542275, -0.0311025567, -0.0198682733, -0.0276944041, -0.00116366358, 0.0110765, 0.0142763769, 0.0227841381, -0.0384995118, -0.00313045224, 0.0315317325, -0.0032203896, -0.01560177, 0.00859612, 0.0109060919, 0.0369847789, 0.0343339927, -0.0335008875, 0.00164254068, -0.00670270203, 0.00999725051, -0.00140507449, 0.0283002984, 0.0174446981, -0.0144026047, 0.0209538341, 0.0116950162, 0.0268865451, -0.00972586, -0.0145667009, -0.00925250631, -0.0237939619, 0.0160561912, -0.015311446, -0.00282750512, -0.00741588976, 0.00517534418, -0.00824899413, -0.0257504936, 0.00378052588, 0.0173184685, 0.0267603174, 0.0233016722, 0.00988995656, -0.0493046232, 0.0118212439, -0.0300169978, -0.00882964209, -0.00773777114, -0.0119285379, 0.0187322218, 0.0052984166, 0.015526033, 0.012231485, 0.00176403509, 0.0257631168, 0.0145793241, 0.0575094372, 0.0290829111, 0.0110196965, -0.0547324233, -0.0138850706, -0.0127363959, -0.0301179793, 0.0165989697, 0.00410240702, 0.00965643488, -0.0153493136, 0.0120042739, -0.0210926849, -0.0259019677, -0.0234405231, -0.0190477911, 0.00562029798, 0.00824268255, -0.00500178104, -0.0168892946, 0.0378431268, -0.00812276639, 0.00237624045, -0.0169145409, -0.0226200409, 0.0330212228, 0.049506586, -0.00339237507, 0.0102749523, -0.00472092396, 0.00762416609, -0.0226705335, -0.0114046922, 0.0193254929, 0.0153619368, 0.0197168, 0.0134937642, 0.0274671931, 0.00484715169, 0.000407085026, -0.0131024569, -0.00396040082, 0.00995938201, 0.0329202376, -0.0202217121, 0.0153240683, 0.015084235, -0.0261544231, -0.013695728, -0.00622303598, 0.00966905802, 0.00692360103, 0.00657016272, -0.0289061926, 0.0327940099, -0.00909472071, -0.0175835472, 0.0218626745, -0.00275019067, 0.0276944041, 0.0265835989, 0.000654412841, 0.0066143428, 0.00785768777, -0.0112279728, 0.00468621124, 0.0187574681, 0.0104706055, 0.0324153267, -0.00052266242, 0.00362905255, 0.0216733329, 0.00177192432, 0.00941029098, 0.00282277167, -0.00361958542, -0.037944112, -0.022342341, -0.016851427, -0.0131150801, 0.0146045694, 0.0184166525, -0.00485661905, 0.017280601, -0.0126606598, 0.0464771166, 0.00730859628, 0.0322891, 0.0110133849, -0.00737171, -0.0290071741, -0.0153619368, -0.0320113972, -0.00451580342, -0.0334503949, 0.00778826233, -0.0287294723, 0.0338038355, 0.0279721059, -0.0285779983, -0.00259556132, 0.0503396913, -0.0265078619, -0.0186943542, -0.00940397941, 0.0168009344, 0.0116887046, 0.000379472651, 0.00920832623, -0.0128184445, -0.00527948234, -0.0012891026, 0.0153366914, 0.0214713681, 0.00521952426, -0.00120468764, -0.00934086554, -0.00701196026, -0.00889906753, -0.0314812399, -0.0145288324, 0.0165106114, 0.0472597294, 0.0111080566, -0.0108114211, -0.0122377956, -0.000759339775, 0.00944815949, 0.00348704611, -0.0264321249, 0.004979691, -0.000338843063, -0.0261291768, -0.00334188389, 0.0185176339, 0.00699933758, -0.00180663704, -0.0159930773, -0.0149075165, 0.015816357, -0.025195092, -0.0197168, -0.0059863585, -0.0372624807, -0.000832315302, -0.0561461747, 0.00386572978, -3.28882888e-05, 0.00722023658, 0.0106725702, -0.0047114566, -0.0227210242, -0.0138724474, 0.0184292756, 0.0277953856, -0.0127363959, -0.00896849297, -0.00409294, 0.0264321249, 0.0260281954, -0.0481180809, -0.0170533918, -0.0264321249, -0.0140239205, -0.0181137044, 0.0102875745, 0.00581279537, 0.0471082553, -0.00251666899, 0.0524603203, -0.00732121896, 0.00743482402, 0.0270380192, 0.0226705335, -0.00128279114, -0.0368080586, 0.000920674822, 0.0243746098, 0.00378368166, 0.00814801175, 0.0357477441, -0.0113100205, -0.00620410172, -0.00499231368, -0.0300169978, 0.0205877721, -0.0232511815, 0.0159173403, 0.00944815949, 0.0125407428, 0.00722654816, -0.00156207045, -0.0007017483, -0.00123545574, -0.00725179352, -0.00424756901, -0.00251193554, 0.0179874767, 0.00416236557, 0.00343655492, -0.0153619368, 6.36070326e-05, 0.0239201896, 0.0211557988, -0.00153288024, -0.0138093336, -0.00122993323, -0.0280730873, 0.000418524432, -0.00801547244, 0.00237308466, 0.0256873798, 0.0076431, 0.000773145934, 0.0266340896, -0.0325668, 0.00472723506, 0.00641553383, -0.0318094343, -0.000335687364, 0.0104516707, 0.0361011811, 0.0175330564, -0.035520535, 0.0185428802, 0.00403298158, -0.00298055657, -0.0187448449, -0.0111585474, -0.019628441, -0.00194548769, 0.020360563, 0.011316332, -0.0241473988, 0.00781350769, 0.00616307789, 0.00882964209, -0.00045165926, 0.00674057053, -0.00304051489, 0.0101992153, -0.0264573712, -0.0186186172, 0.000645340187, -0.0463761352, 0.017722398, 0.0183282923, -0.0118023101, -0.00247248914, 0.000579465, 0.0120547656, 0.00889906753, -0.0231880676, 0.00249300129, -0.0153366914, 0.0355457813, -0.0393073708, 0.0339553095, -0.00840046722, -0.00295057753, 0.0284770168, 0.00694253528, -0.021534482, 0.0080407178, 0.00788924471, 2.3655406e-05, 0.00361011829, -0.00238886313, -0.0208907202, 0.0199818779, -0.00218058727, 0.000942764687, 0.0106851924, 0.00971323811, 0.000385981286, 0.00470514549, -0.00325352442, 0.0208149832, -0.00417814404, -0.0346621834, 0.00309416163, -0.011423626, -0.00707507459, -0.00488186441, -0.0025624265, 0.000519112276, -0.0306733828, -0.0084446473, -0.011057565, 0.0306733828, 0.0176845305, -0.0154124284, 0.00797129236, 0.00537730893, -0.0234152768, -0.00497338, -0.0247911625, -0.0196031947, 0.0321376249, 0.0380198471, 0.00884857681, -0.0148317795, 0.00361642963, 0.00876021665, 0.0663453937, 0.00654491736, -0.00336081814, 0.0189594328, 0.0162455328, -0.010325443, -0.00227525807, 0.00522899115, -0.00290955347, 0.0133044217, 0.024021171, -0.00693622371, 0.00646918034, 0.0317084529, -0.00891169067, 0.0289566834, 0.00496391254, -0.00490395445, 0.00788293313, -0.0426650345, -0.0241600219, 0.0283002984, 0.0128121329, -0.0330212228, 0.02211513, -0.0210674386, -0.00826161727, -0.0375401825, -0.00212851819, 0.00170407677, 0.0188584495, -0.0218500514, 0.00492604403, -0.0045599835, -0.00247406703, 0.00924619474, 0.0180758368, 0.00576230418, -0.00873497128, 0.00715712272, -0.0366313383, -0.0123198442, -0.0182651784, 0.00547198, 0.015892094, -0.00710032, 0.00824899413, -0.00749793788, -0.0227210242, 0.00665221084, 0.0155512784, -0.00590746617, 0.0334503949, 0.0073906444, -0.000680841797, 0.0352428332, -0.00320461113, -0.0151221035, 0.00552562671, 0.00321250036, -0.0142511316, -0.0131403254, -0.00902529527, -0.0150968581, 0.00744113559, 0.034056291, 0.000301171909, 0.00288588554, -0.00145635451, 0.0179748554, 0.0110954335, 0.0183661617, 0.00281488243, 0.00313045224, -0.00959332101, 0.0175456796, 0.0293858573, 0.0195653271, 0.0222918484, -0.029512085, -0.00226263539, 0.00817956869, 0.0245765746, 0.0282245614, -0.00935348868, -0.015159972, 0.00849513803, 0.00490079867, 0.00808489788, 0.0188836958, 0.00954914186, 0.0162707772, -0.0255863983, 0.0275176838, -0.0078513762, -0.00231943792, 0.00654491736, 0.0300927348, -0.00458522886, -0.0214208774, -0.0159804542, 0.0068920441, -0.0272652283, -0.00112106162, 0.00789555628, -0.0310773123, 0.00660171965, -0.0045284261, 0.0092146378, 0.00182241551, 0.0218121838, -0.00987102278, -0.000182142932, -0.00877284, 0.0084067788, -0.0165737253, -0.000246933341, 0.0227462705, -0.0199566334, 0.00275492412, -0.0287042279, 0.0329454839, 0.00951758493, -0.0147812888, 0.00859612, 0.045845978, -0.0125028742, 0.0288557, -0.00114946289, 0.00813538861, -0.00700564915, 0.00731490739, 0.0114488713, -0.00310047297, -0.0165989697, 0.00126859057, -0.00118733128, 0.0228220057, 0.00176403509, -0.0281235781, -0.00444637798, 0.0270380192, 0.00691728946, 0.00797129236, -0.018896319, 0.00813538861, 0.000508067373, -0.0273914561, -0.01560177, -0.0370605141, -0.0363788828, -0.0215597264, 0.00524161384, 0.0187195987, 0.007946047, -0.0373634622, 0.0229103658, -0.0176214166, 0.0347379223, -0.0193002485, -0.012856313, 0.00386572978, 0.0109376488, 0.00352807017, -0.00784506463, -0.0107293725, -1.26227915e-05, -0.00958700944, -0.0398122817, -0.0122693526, 0.049355112, -0.0183156691, 0.00233521638, -0.0264068786, 0.0449623838, -0.00592008885, 0.00233679428, -0.014945385, 0.0123577127, 0.0146298148, -0.00735277589, 0.0125786113, 0.00867185742, -0.00409294, -0.0209412109, 0.0302189626, -0.020714, 0.00846358109, 0.0116950162, -0.0171669964, 0.0237056017, 0.0150463674, 0.0059800474, -0.00969430339, 0.0258262306, -0.00980790891, 0.0014958008, -0.0171417501, -0.00494497828, -0.00366376503, -0.0294111036, 0.00588537659, -0.0229861028, 0.02080236, 0.00149343396, 0.00751687214, -0.0269370358, -0.0163717605, 0.00596426893, -0.0183409154, -0.00244251, 0.0336523615, 0.00146818836, -0.00581279537, -0.00636819797, -0.0111964159, 0.0127111506, 0.0241726451, 0.0215849727, 0.00264447485, 0.00678475, 0.00912627764, 0.00271232217, 0.00624512602, 0.0119664064, -0.00184923888, -0.00615045521, -0.00119206484, -0.00749162678, 0.0122377956, -0.0162076633, 0.0122125503, 0.01560177, -0.00800916087, 0.0168640483, 0.00269496581, 0.03486415, -0.0274419487, -0.0337785892, 0.0137083512, -0.0211179294, -0.00327877, -0.0069867149, 0.000725810474, -0.00617254479, -3.35046352e-05, 0.0159299616, 0.00103033532, -0.00978266355, 0.0275681764, -0.0197294224, -0.0183535386, -0.000369413872, 0.00864661206, -0.00492604403, -0.0100414306, 0.0186059941, -0.00119285379, 0.0301179793, -0.0416804552, 0.0528137572, -0.0132413078, -0.0105210962, 0.00311940722, 0.00790186692, -0.0105210962, 0.00301526929, 0.00166620838, 0.0205877721, 0.0103633115, 0.0201964658, 0.0202090889, 0.00232417136, 0.0164474975, 0.0274924394, -0.0333241671, 0.0211179294, 0.00747269252, -0.00362905255, -0.0111206789, -0.0236424878, 0.0123198442, -0.00060352718, -4.80997369e-05, 9.45230131e-05, 0.00281646033, 0.00730859628, 0.0219131652, 0.0182273109, 0.00351544726, -0.00468305545, 0.0241852682, -0.00466727698, 0.00790186692, -0.00226579094, 0.0214082543, 0.0112532182, 0.00162360654, 0.0111648589, 0.00681630708, 0.00307996105, -0.0189089403, -0.0266340896, 0.00888013374, -0.000802336144, -0.0219005421, 0.012231485, -0.0066143428, 0.0209285878, -0.00271074451, -0.0122441072, -0.0147812888, 0.00241253106, 0.00201017945, 0.0088107083, 0.00762416609, 0.0169524085, 0.0135442549, 0.0105337193, -0.0185933709, -0.0133927818, -0.00359749538, 0.0137209743, -0.0113857575, -0.0185681265, 0.0285275076, -0.0537730902, -0.0147055518, -0.0145414555, 0.0101234782, -0.00786399934, 0.00378368166, 0.0130898347, 0.00515325461, 0.00960594416, 0.00478403782, 0.0201333519, -0.00932193082, 0.014503587, -0.000281646033, -0.0338038355, 0.0248037837, -0.00827423949, 0.00577808265, 0.0145793241, 0.00149658963, 0.0194895901, -0.0089053791, 0.00459469575, -0.0190604143, -0.0266845804, -0.00887382217, 0.00135537225, -0.000537257525, 0.00418445515, -0.0197799131, -0.0234026555, 0.0139608067, -0.0183282923, 0.00891800225, 0.0156143922, -0.0355457813, -0.0104895392, -0.0253086966, 0.00614414364, -0.0405696519, -0.0138219567, 0.0160183217, -0.000576703751, 0.0135190096, -0.0166368391, -0.00581279537, 0.0267855637, -0.000506489479, 0.011392069, -0.0263563879, 0.0191740189, 0.0218121838, -0.00872866, -0.0154250506, -0.0220015254, 0.00139639631, 0.0103001976, -0.0182020646, -0.0096185673, 0.01677569, -0.0149327619, 0.029587822, -0.00710663153, -0.0101929037, 0.0405444056, 0.0184166525, 0.0229734797, 0.0146045694, -0.00578754954, 0.00602422701, -0.0088107083, 0.00569287874, -0.0326172933, 0.00688573252, 0.0140996575, 0.0278711226, 0.00340815354, 0.0140239205, 0.0157153755, -0.0276439134, -0.00560767483, -0.0304714181, 0.0092146378, -0.0193507392, 0.0057496815, 0.0195905715, 0.012856313, -0.000620094594, 0.0159299616, -0.0212567803, 0.00546251284, 0.0158037338, -0.0279973503, -0.0148948934, 0.00340499799, 0.00852669589, -0.0174699426, -0.0194769669, -0.030395681, -0.0352175869, 0.0228220057, -0.00651967153, -0.010476917, -0.00550669245, -0.0041087186, 0.00813538861, -0.000308666698, 0.0218374282, 0.0142006399, 0.0219889022, 0.0219510347, -0.00145714346, 0.00126070122, 0.0278711226, 0.00627983874, -0.0181263275, -0.00498600258, -0.0117770638, -0.00324721308, -0.0294615943, -0.0133927818, 0.00725810509, 0.0113100205, 0.000383614504, 0.0290576648, -0.00588537659, -0.00755474064, 0.000999567332, -0.00862136669, -0.0133170448, 0.00297108945, 0.0158542264, 0.00681630708, -0.00450002495, -0.0115182968, -0.0102686407, -0.0127111506, -0.00781350769, 0.0317589417, 0.0168766715, 0.0066143428, 0.0041939225, -0.0138093336, 0.00119758735, -0.00216007512, 0.000820481451, -0.00694253528, 0.0067658159, 0.0206256416, 0.00548460288, 0.0100161852, -0.00557927368, -0.0112847751, 0.0160183217, 0.0144404732, 0.0292091388, -0.00199913466, 0.0164853651, -0.000407085026, 0.0540255457, -0.014061789, 0.00793973543, 0.00984577741, -0.00390044251, -0.0070813857, -0.00143426459, -0.0194390975, -0.0137462197, 0.020726623, 0.00491026556, 0.00553825, -0.024096908, 0.0225569271, -0.0183282923, -0.00269181025, 0.00393199967, 0.0063050841, 0.0103506884, 0.00567710027, -0.00786399934, -0.00686679827, -0.0122567303, 0.00821743719, 0.0160814356, 0.00473985821, -0.0379693545, 0.00388150825, -0.00461047469, 0.0140870353, 0.00592008885, 0.00766203413, 0.0243367422, 0.0171796195, 0.0149580073, 0.0179369859, -0.00892431289, -0.0126922168, 0.0114110028, 0.0217616912, 0.0271642469, 0.0500367433, -0.000200879891, 0.00640606647, 0.00709400885, 0.00152025744, 0.00760523183, -0.00722023658, 0.0184166525, -0.0208149832, -0.0205625277, -0.0181263275, 0.00824268255, -0.00805334095, -0.00391937653, 0.00184450531, 0.0152862, -0.0330464691, 0.0230239704, 0.00110054959, 0.0245134607, 0.0127553307, 0.0461741686, -0.0210169479, -0.00724548195, -0.000690308865, -0.0264321249, 0.00582541805, 0.0123829581, -0.00763047719, 0.0103065092, -0.00609996403, 0.00457891729, -0.0241600219, 0.0165737253, 0.0158037338, -0.0128121329, 0.00253086956, 0.00540886587, -0.00784506463, 0.0205246583, 0.00551616, 0.00537099782, 0.0138598243, 0.0106473239, -0.0240716636, 0.0204362981, 0.0158542264, 0.00843202416, 0.0107104387, 0.0265078619, 0.030900592, -0.0066206539, 0.00693622371, -0.00640291069, -0.0025624265, 0.0129004922, -0.0173310917, -0.0109060919, 0.00812276639, -0.0162455328, -0.00123387785, -0.00470514549, -0.000151769345, 0.00470830128, -0.024753293, -0.0123450896, 0.00287326286, -0.0165611021, -0.0354700424, 0.00529526081, 0.00769990264, 0.0180253461, -0.00395408925, -0.00596426893, 0.00499862526, 0.00213325163, 0.025409678, 0.00802809559, -0.0149580073, -0.0271137562, -0.00549091399, -0.00446846802, -0.0208528508, 0.003789993, 0.00514694303, -0.00881702, -0.00749162678, -0.00316674262, -0.00777563918, 0.0141501492, -0.0201459751, -0.00171038823, 0.00375843607, 0.00487870863, 0.000786163204, -0.00445900112, 0.00156522612, 0.00410240702, -0.00164727424, 0.00197231118, 0.0183282923, -0.0157532431, -0.00145635451, 0.0195274577, 0.0113731353, -0.00850776117, -0.00777563918, 0.0109881395, -0.0235541277, -0.0202722028, -0.0122567303, -0.00450633653, 0.00376474741, 0.0176340397, 0.0144152278, -0.004156054, -0.0101802815, -0.0147055518, -0.00268076523, -0.0204741675, -0.00716343382, -4.9209164e-05, 0.0123450896, 0.0181137044, -0.00243146508, 0.00664589973, 0.0104327369, 0.00156522612, 0.000376316952, -0.0242610052, 0.00881702, 0.00289535266, -0.00505227223, -0.00854563, 0.0103317546, -0.000420496741, 0.0130014746, -0.0150337443, -0.00590746617, -0.0303451903, 0.0173184685, 0.0185050126, -0.0048376848, -0.000633111864, 0.00925881695, -0.0209033415, -0.0169650316, -0.00759260869, -0.015235709, 0.0191992652, 0.0133675355, -0.0239706803, 0.00571181299, -0.00425703637, 0.00466096541, -0.00135379436, 0.00654491736, -0.0169776548, -0.0118906694, -0.0262049139, -0.00543726748, 0.00660803122, 0.0294111036, -0.00943553634, 0.00555087253, -0.000444164471, 0.00597058, 0.00725179352, -0.00376474741, -0.0470830128, -0.00403298158, -0.00144530961, 0.00934717711, -0.00994676, 0.0324910656, 0.0150211211, -0.0116508361, -0.0245260838, -0.00651967153, -0.00711294264, 0.010066676, 0.00456313882, -0.00736539857, 0.0162329096, 0.0233142953, 0.0141627714, -0.000380853278, -0.00331348274, -0.0192750022, -0.01808846, 0.00655754, 0.00362274097, -0.00187448447, -0.0104138032, 0.0168766715, -0.00994044822, -0.00908209849, -0.0142132631, -0.00102402398, -0.0130014746, 0.0405696519, -0.00468936702, -0.0251572225, -0.0181137044, -0.0109187141, 0.01560177, 0.0283255428, -0.0364546217, -1.98587077e-05, -0.0102181491, -0.00929668546, -0.0232006907, -0.000791291241, -0.0140870353, 1.53963538e-05, -0.0102623291, 0.0293353666, 0.0126227913, 0.0145793241, -0.000338054117, 0.00665221084, -0.0138219567, -0.0361769199, 0.0310773123, -0.0142385084, 0.0156143922, -0.00896849297, -0.0188584495, 0.0128310677, -0.000596426893, -0.00082994852, -0.0107419956, -0.00267603179, -0.0092146378, 0.0270885099, -0.00271547795, -0.00884857681, -0.00828055106, 0.0275681764, 0.0145540778, 0.00177508, -0.000159954434, -0.00842571352, -0.00331348274, 0.00682893, -0.00359749538, -0.00104769168, -0.00192182, -0.00934717711, 0.0404686667, -0.00659540854, 0.00511854189, -0.0252455827, -0.00626721559, 0.0219005421, -0.00380261592, -0.022342341, 0.023806585, -0.00391622074, -0.0119664064, -0.0075421175, -0.0221782438, 0.00657647429, -0.00810383167, 0.00270285527, 0.0323143452, 0.0394336, 0.0133927818, -0.00649442617, -0.0047019897, -0.00414343132, -0.00513432035, 0.0151978405, -0.0161445495, -0.0160940588, -0.00763047719, -0.00651336042, -0.0337280966, 0.00140823016, -0.00744113559, 0.0101865921, 0.0064881146, -0.0131781939, 0.00568656763, 0.0123450896, -0.0078513762, 0.0250562411, -0.0146550601, 0.0108051095, 0.00059603242, 0.00384048419, 0.012080011, 0.0116697708, -0.0046073189, 0.00867816899, -0.00431068335, -0.00335766235, 0.000299002364, 0.0189846773, -0.0100729875, 0.0279721059, 0.00532681774, -0.0243367422, 0.00116918609, -0.00133722695, -0.0248542763, -0.000152163804, 0.00367323216, -0.00673425896, -0.00752949482, -0.0142511316, 0.0109881395, -0.00985208806, 0.0176845305, -0.00812907796, -0.000362313556, -0.00120863225, -0.00644077919, 0.00874759443, 0.0106473239, 0.00915152393, 0.021685956, 0.0196789317, -0.0351166055, -0.0100161852, -0.0066206539, 0.0216480866, 0.00173563382, 0.0107861748, -0.00204489217, -0.00486608595, 0.000734488654, -0.0136326142, -0.00143742037, 0.00372372335, -0.0127553307, 0.00141059689, 0.00113762903, 0.0076683457, -0.0224054549, -0.0053930874, -0.00054869696, -0.0198556501, -0.00952389557, 0.00674057053, -0.0200323705, -0.0178738721, -0.0111585474, 0.0191235282, 0.0369847789, -0.0207392462, -0.0039256881, -0.0155639015, 0.00499862526, 0.00930299703, 0.0261291768, 0.0191613976, -0.00433908449, 0.00826792791, -0.00549722556, 0.00266656466, 0.0284265261, 0.000955387484, -0.0273409653, 0.00792711321, 0.0260029491, 0.00601160433, 0.00680999598, 0.020714, -0.0103001976, 0.014793911, 0.0106788818, -0.0173815843, 0.000264289702, 0.00742851244, 0.0107356841, -0.00259713922, 0.00782613084, 0.00755474064, -0.0209285878, 0.020726623, -0.0149075165, 0.00610311935, 0.00237939623, -0.00836891, -0.00151710166, -0.00121967716, 0.00859612, 0.0187448449, -0.0218121838, -0.0247785393, -0.0205499046, -0.002672876, 0.0126164798, 0.00843202416, 0.0158416033, 0.0151978405, 0.00326930289, 0.00524161384, -0.00290955347, 0.0105147846, 0.0235919971, -0.00451895921, -0.00779457344, 0.0156522617, 0.00933455396, 0.00971954875, -0.0110512534, -0.0186059941, 0.0297140498, -0.00925250631, -0.0137588419, 0.0121494364, 0.00231628213, -0.0143142454, -0.000470987899, 0.00162834011, 0.0351670943, 0.0120547656, -0.0401909687, 0.01058421, -0.00807227474, -0.0242231358, 0.00236046198, -0.0100729875, 0.00495129, 0.0304966643, 0.0190856606, -0.00942922477, 0.00232890504, -0.017356338, -0.017204864, 0.00852038432, -0.00302000274, 0.00504911644, 0.0336776078, -0.00564238755, 0.0173942056, 0.00807858631, 0.00592640042, -0.00195022125, 0.0134054041, 0.00169303187, -0.010066676, -0.00563292066, 0.00298213447, -0.00338606373, 0.0126669705, -0.0132791763, -0.00574337, 0.00424441369, 0.00127805758, 0.00834366493, -0.0202722028, -0.018896319, -0.00209853915, -0.00773777114, -0.00978266355, -0.00211747317, -0.022190867, -0.00260502845, -0.00146108808, -0.00697409222, 0.00995307, 0.0203731842, 0.00813538861, 0.00804702938, 0.0038152386, -0.00386888557, 0.019338116, -0.0088107083, -0.00894324761, -0.013329667, -0.00165831915, 0.0124650067, -0.00675319321, 0.0119159147, -0.0153745599, 0.0157784894, -0.00958700944, -0.00280383741, -0.008753906, 0.012155748, -0.0140491668, 0.0179874767, 0.0145414555, -0.010874535, 0.020575149, 0.00350282458, -0.00527632656, 0.00553509407, 0.027139, 0.0155891469, 0.0198051594, -0.00370794488, 0.0029174427, 0.0277448948, -0.00675319321, 0.0118591124, 0.0149201388, 0.0128310677, 0.0226579104, 0.024753293, 0.00131198135, 0.00778826233, 0.0167378206, 0.00881702, -0.0138219567, 0.0127995098, 0.0243114959, 0.00435801875, 0.020650886, 0.0150589896, 0.00699933758, -0.00451580342, -0.028779963, -0.0134180272, -0.00323143462, -0.00249931263, 0.00811014324, 0.00146739942, -0.0179369859, 0.0281740706, -0.020726623, 0.0155639015, 0.00164411857, -0.00444953376, -0.0146171926, 0.0116508361, 0.010325443, -0.0346116945, 0.0215975959, 0.00152183522, 0.0127174621, -0.0169902761, 0.0011786531, 0.00945447, 0.0164096281, 0.00989626814, -0.0166873299, 0.00495444564, -0.0231628213, -0.00894955918, 0.00891169067, 0.0225695502, -0.00449055806, -0.015816357, -0.00888644531, 0.00147371087, -0.000331348274, -0.00132697087, 0.00407716166, 0.0134558957, 0.0291838925, -0.00125438988, 0.0101487245, -0.00568656763, 0.00424756901, -0.00297424523, -0.00775039382, 0.00302473642, 0.015816357, 0.015159972, -0.016548479, 0.0073906444, -0.00309573952, 0.0102370838, -0.021534482, -0.00630824, -0.0251446, 0.00278805895, -0.00954283, 0.0151852174, 0.0144026047, 0.00836259872, -0.00283855014, 0.00558242947, 0.000338645827, 0.00960594416, -0.000387164677, -0.00619147904, 0.0188710727, -0.014503587, 0.0129888523, -0.00856456347, 0.00795235857, -0.00376474741, 0.00822374877, 0.000279082, 0.024753293, 0.0249552578, -0.0211305525, -0.033096958, -0.00377421454, -0.0140112983, -0.0115435421, 0.00482821744, 4.49686922e-05, -0.00379946013, 0.0138093336, -0.0207013767, -0.0157911126, -0.00790186692, 0.021534482, 0.0134180272, 0.0148570249, -0.00212851819, 0.0310773123, 0.0197925363, -0.0237813387, 0.0203731842, -0.0129762292, 0.000985366642, 0.00606840663, 0.00504911644, 0.0120989457, -0.00869710278, 0.000598399201, -0.0119474716, 0.0146803064, -0.00271547795, 0.00743482402, 0.00751056056, 0.0284265261, 0.00355331576, 0.0241978914, -0.00160151662, -0.00551616, -0.0196915548, -0.012490252, -0.00821112562, -0.0139229391, 0.0122062387, -0.0196158178, 0.00039505391, 0.00799653865, 0.00780088501, 0.0219889022, -0.000955387484, 0.0103506884, 0.00190919719, 0.0486734845, -0.00289535266, -9.15275632e-06, -0.0206887554, 0.0264573712, 0.00645655766, -0.0570550151, -0.00646918034, -0.0236172415, 0.00156995968, -0.0166873299, -0.00663327659, -0.00142400863, 0.0143773593, 0.011240596, 0.00867816899, 0.0131908171, 0.00876652822, -0.0106978156, 0.0130519662, -0.00641553383, -0.0176466629, 0.00411187438, -0.0134306494, -0.0187322218, -0.0139103159, 0.022998726, 0.00477457093, 0.00196284405, 0.00373319048, -0.00480928365, -0.00191708643, -0.0136452373, -0.0141880177, -0.00204173638, 0.000840204535, 0.00701196026, -0.0136073688, 0.0192497559, 0.0104642939, 0.00819219183, 0.00923988316, 0.0100856097, -0.000308666698, 0.00813538861, -0.00941029098, -0.00204647, -2.67494688e-05, 0.00237308466, 0.0054278, 0.0123955812, -0.00198808964, 0.0378683731, -0.00195968826, 0.000592482276, 0.00315254205, -0.00208276045, -0.0148317795, -0.00858349819, -0.00595480157, -0.0113731353, -0.00147686654, 0.0158794709, -0.0174573194, -0.00277701416, -0.0211305525, 0.0123072211, -0.00799022708, -0.00553193828, -0.0242610052, -0.00625459291, 0.0201712195, -0.0106031448, 0.0127174621, 0.016548479, 0.0150589896, 0.0193759836, -0.000730938511, -0.00509960763, 0.0084067788, -0.0128247561, -0.0156775061, -0.00581279537, -0.00162360654, -0.0029411104, -0.015084235, 0.00238886313, 0.0206256416, -0.00167251984, 0.0098584, -0.00581910694, -0.00108792679, 0.000775512715, -0.00488817599, 0.00450002495, -0.00311625167, 0.00146976626, -0.0159173403, -0.014137526, -0.0224433225, -0.00399511354, -0.00419076672, -0.0162581559, -0.014061789, 0.00109976064, -0.00209538336, -0.00832473114, 0.00757998601, -0.00205909275, 0.00405507162, -0.00113447336, 0.0141501492, 0.022190867, -0.0064881146, 0.0141753945, -0.0024188424, -0.0176845305, -0.0133170448, 0.00906947535, -0.00635873107, -0.0135568781, -0.000427991501, -0.0335008875, 0.00774408225, 0.0112595297, -0.00155891466, -0.0159173403, 0.000478482689, -0.00109502708, 0.00400773622, -0.00685417559, -0.0198935196, -0.00214903, -0.0206130184, -0.0102244606, 0.0161319263, -0.0229356121, -0.00536468625, -0.0131403254, -0.00947340485, 0.00994044822, 0.00615992211, -0.00127884652, -0.000968010281, 0.0299412608, -0.0115056746, 0.0136831058, -0.0160309449, -0.0245387051, -0.0139229391, 0.0118023101, -0.0291838925, -0.021534482, 0.0177350212, -0.00400458043, 0.016472742, -0.0112090381, 0.0103065092, 0.0056139864, -0.0147307971, 0.0301179793, -0.0416552126, 0.000682419632, 0.0186691079, -0.0192245115, 0.0155386562, 0.00470830128, 0.0087160375, 0.000467437727, -0.0244377237, 0.0217238236, -0.00889906753, -0.0138345789, -0.0122567303, -0.00991520286, 0.00344286626, -0.0376411639, -0.010110856, -0.00876021665, 0.00891169067, 0.00561714219, 0.00282908301, -0.000603132765, -0.0113289552, 0.00350282458, 0.00721392501, -0.00293953251, 0.00717605697, -0.00298055657, 0.0300169978, -0.0303704347, 0.00445900112, -0.00827423949, 0.0123703349, -0.0116319023, 8.86060734e-05, -0.00195653271, 0.00950496178, -0.010142413, -0.00896849297, -0.0197168, 0.00220425497, 0.00642815651, 0.0201964658, 0.000796813692, -0.00932824239, 0.0143016223, 0.00227368018, 0.0159173403, 0.0119285379, -0.0146676833, 0.00110922777, -0.0165611021, -0.0181768201, 0.0034018422, 0.0167504437, 0.0145162102, -0.00283855014, -0.00255769305, 0.00413711974, -0.0245891977, -0.000558953, -0.00281961588, 0.0146676833, 0.0133927818, -0.00341130933, 0.0243619867, 0.0405191593, -0.014137526, 0.00885488838, -0.013619992, 0.00618516747, 0.0219762791, 0.0248795208, 0.00142874219, 0.00222476688, 0.00939766783, 0.00523214694, -0.01677569, -0.0028322388, 0.0186438616, -0.0120295202, -0.00582226226, -0.00404244894, -0.0181389507, -0.0157784894, 0.0254223011, -0.0177981351, 0.0211305525, 0.0130772116, 0.0198556501, -0.0174194518, 0.0229734797, 0.00478088204, -0.0177981351, 0.00186975091, -0.00182714907, -0.01058421, 0.0120358318, 0.00322354538, -0.00583804073, -0.0236172415, -0.00737802126, 0.00905054156, 0.00114157365, 0.0164096281, -0.000865450129, -0.00957438722, 0.0136452373, 0.0081606349, 0.0143016223, -0.0186564848, -0.0101929037, 0.0230618399, -0.00696146954, -0.00416236557, -0.012704839, -0.0100603644, -0.03016847, -0.00337344105, 0.00582226226, 0.0135947457, 0.021231534, 0.0181768201, -0.00908841, -0.0123135326, 0.00598951429, -0.00408662856, 0.0236172415, -0.00477772625, -0.00694253528, 0.0133675355, 0.021610219, -0.0140996575, -0.0123703349, 0.00259871711, -0.0172679778, -0.0103380661, 0.0177855119, -0.00699933758, -0.00966274645, -0.00806596316, -0.0050270264, 0.0188584495, -0.0098268427, 0.0194138531, -0.00775039382, -0.00974479504, 0.0180253461, -0.000506095, 0.00164569635, -0.0278458782, 0.00432646181, 0.00166305271, 0.0420843847, 0.0144909639, 0.0225316826, 0.0200071242, -0.00031478086, 0.000874128309, -0.0120168971, -0.00499231368, 0.0284517705, 0.0046546543, 0.00176719076, 0.00151710166, 0.015159972, 0.00787031, 0.0136452373, -0.0253465641, -0.00931562, -0.015892094, 0.0234531462, 0.0332989246, 0.0189341865, 0.0166368391, -0.00713818846, 0.00518165575, 0.0163970049, 0.0141880177, 0.0125344312, -0.0126669705, -0.0192876253, 0.0217869375, 0.00917045772, -0.0233774092, -0.0117518185, 0.0100098737, 0.00913258921, -0.00978266355, 0.0047019897, -0.00639659958, 0.00915152393, -0.00763047719, 0.0102118384, 0.0019076193, 0.00352807017, 0.000414579787, 0.00489448709, -0.0336271152, 0.00500178104, -0.0160940588, 0.000738827744, 0.0144530963, -0.011606656, 0.00753580639, 0.0156901293, -0.0125407428, -0.00731490739, -0.00452527078, -0.0231501982, 0.000912785588, 0.00972586, -0.00374581339, -0.00868448056, -0.0116634592, -0.00592955621, -0.000338843063, 0.00192655355, 0.00530788349, 0.0305219088, 0.0346621834, 0.00245355512, -0.00780088501, -0.00380892726, -0.0105274078, -0.00747269252, -0.00608734088, -0.00835628808, 0.010249706, -0.00995307, -0.0270632636, -0.00983315427, -0.0100792991, 0.0214208774, -0.000511617516, 0.00424441369, -0.0103128208, -0.00315727573, -0.00352491438, 0.0280730873, -0.00587275345, 0.00667114509, 0.0108492887, 0.0271642469, -0.0177855119, -0.0114299376, -0.0143016223, 0.000714371097, -0.0281740706, -0.0121494364, 0.00959963258, -0.00434855139, -0.00191077497, 0.00213798531, 0.0251067318, -0.0188458264, 0.0105147846, 0.00141848612, 0.00763047719, 0.00549091399, 0.0164222512, -0.00953020714, 0.00580017269, 0.0138598243, 0.0133422902, -0.00345548918, -0.0181263275, 0.0163212698, 0.00619147904, -0.00573390303, 0.023213312, -0.00276281335, -0.0215849727, 0.00256400439, -0.00470830128, -0.0260534417, 0.0229482334, 0.0136578605, -0.00256873807, 0.00460416311, 0.0118843578, -0.00694253528, 0.0300674886, 0.00177192432, -0.0193002485, 0.0215597264, -0.0125596775, 0.0347631685, 0.00209380547, 0.00881702, 0.00797129236, 0.0295625776, 0.00048282175, 0.00977004, -0.0364546217, 0.00164411857, -0.0117202615, 0.00438957568, -0.0404686667, 0.00306576048, 0.00473670242, 0.000885962159, 0.011347889, -0.00650704885, 0.0228724983, -0.014137526, -0.00778195076, 0.00801547244, -0.00566447759, 0.0199313872, -0.00718867965, 0.00324090174, -0.0190730374, -0.00759892026, -0.0123640243, -0.0092146378, 0.0163591374, -0.00162045087, -0.000460337411, -0.00382470572, -0.00172774459, -0.000416157651, 0.00644077919, 0.0217112, -0.00230050366, -0.0189468097, -0.0156522617, 0.00212220685, -0.0173815843, 0.00646918034, -0.0139355613, 0.00242673163, -0.00273125642, -0.00650704885, -0.00587590924, -0.0148317795, 0.00467358856, -0.0167378206, 0.00977004, -0.012597546, 3.84107589e-05, -0.00191393076, -0.0191740189, -0.0231754445, 0.0107546179, -0.0160056986, -0.0109565826, 0.00127174624, 0.00514378725, 0.0111269904, -0.00264447485, 0.000537257525, -0.0126795936, 0.0132413078, -0.00142953114, 0.00107609294, -0.00114709616, -0.031052066, -0.0194390975, -0.00214745244, -0.0116255907, -0.00788924471, -0.0081606349, 0.0158542264, -0.00362274097, 0.00562660908, -0.0140112983, -0.00261607347, 0.00621672487, -0.0010263907, -0.0102244606, -0.00146029913, 0.00195653271, -0.0299917515, 0.00466727698, 0.0180001, 0.0139734298, 0.0202090889, 8.61406879e-05, 0.000460731884, 0.0171543732, -0.014793911, 0.0110260081, -0.0115182968, 0.00493551139, -0.00345548918, 0.0107293725, 0.0138472021, 0.00322827883, 0.00565185491, 0.0127174621, 0.00253244746, 0.0207518693, -0.00471776817, -0.00642815651, -0.019918764, -0.0146550601, -0.0162202865, -0.0138850706, -0.0134937642, -0.0234026555, -0.000533312908, -0.00032286733, -0.0121809933, 0.0178233813, -0.0221403763, -0.00478719361, 0.00757998601, -0.0235541277, -0.0025782052, -0.00758629758, 0.0123955812, -0.0211053062, -0.0107230609, -0.00556033943, 0.00452211499, 0.00550984824, 0.0035596271, -0.0290071741, 0.00268549891, 0.0202848259, -0.0111143673, -0.00310047297, 0.00800916087, 0.0162834, 0.00405191584, -0.0294868406, -0.00627983874, -0.00345233339, 0.00286221784, 0.00563607644, -0.0305219088, -0.00331032695, -0.000450475869, 0.000227407465, -0.0225064363, 0.0109313373, 0.0325415544, 0.00760523183, 0.00448740227, -0.00085046055, -0.0191235282, -2.07585745e-05, 0.0374644436, -0.0127679529, 0.0107987979, 0.00691728946, 0.0182778016, 0.00388150825, 0.00866554584, -0.000133426845, -0.0274167024, -0.00293164328, 0.0109313373, -0.00712556578, 0.0117455069, -0.0231501982, -0.0052100569, -0.0116445245, 0.0068036844, -0.00409294, 0.0134054041, 0.0166873299, -0.00792711321, -0.028047841, 0.00881702, 0.00136089465, 0.0253718104, 0.00668376777, -0.00663958816, -0.0479666069, -0.010874535, -0.00271705585, 0.000721471384, 0.0187448449, 0.0210295692, 0.0177855119, 0.00210642838, -0.0144909639, 0.0120232087, 0.0207392462, -0.0034491776, -0.0060747182, -0.00954283, 0.0275429301, -0.0195653271, -0.00766203413, 0.00189341872, 0.0198177826, -0.00332294987, 0.00965012424, 0.00266025332, -0.0314812399, 0.0169145409, 0.0206382629, 0.0266845804, 0.0168766715, 0.03120354, 0.00399195775, -0.00418445515, 0.0139103159, 0.00450318074, -0.0180632137, -0.00341130933, 0.00345548918, 0.00121415476, 0.0151852174, -0.00547513552, -0.0163338911, -0.00904423, 0.0101045445, -0.00483137323, 0.0141627714, 0.000322472857, 0.0131529486, -0.00732121896, -0.0150716128, 0.00756105175, -0.0307996105, 0.00340499799, -0.0203984305, 0.00278805895, -0.00311940722, 0.0155134108, -0.007946047, 0.00513747614, 0.0137588419, -0.0107735526, -0.00327245868, -0.0143647362, -0.00449371384, 0.00100508973, -0.00954914186, 0.00266656466, 0.0175330564, 0.0126859052, 0.015967831, 0.000300580228, -0.0150589896, 0.00418445515, -0.00734015321, -0.00421916787, 0.01574062, 0.0022847252, 0.00721392501, -0.0104138032, -0.0142385084, 0.00719499076, -0.00496706832, 0.0126795936, -0.0154250506, -0.00512485299, 0.00391306542, 0.00173563382, 0.00665221084, -0.0108492887, 0.00424441369, 0.0175456796, -0.019186642, -0.00418129936, -0.0123450896, 0.0163338911, 0.0152483322, -0.00883595366, 0.0130898347, 0.00244882144, 0.0118086208, -0.0124208266, 0.0230997074, 0.00290955347, -0.00858349819, 0.00192339777, -0.000881228596, 0.0164601188, -0.0264321249, 0.0264826156, -0.0113794459, 0.00491973292, -0.000136286704, 0.0199313872, -0.000170309067, 0.00301211351, -0.000304524845, -0.00573074725, 0.018820582, -0.0142385084, 0.00742851244, -0.0204236768, 0.011057565, -0.0200071242, 0.0029411104, -0.010142413, 0.011240596, -0.00657016272, 0.0328697488, -0.000130369765, 0.0140365437, 0.00984577741, -0.00426650327, -0.0105905216, 0.00147765549, 0.00509645185, -0.00128200219, 0.0060747182, 0.0169145409, 0.0170533918, 0.00886119902, 0.021383008, 0.00744113559, 0.00464834273, -0.00239359681, 0.00238097389, 0.00816694554, 0.0105147846, -0.0109565826, -0.0100414306, -0.00446846802, -0.00503333798, 0.0121115679, 0.021307271, 0.0243493635, -0.00174194516, -0.00787031, -0.00367954373, 0.0163212698, 0.0362526551, 0.00485661905, 0.00524161384, -0.00335135101, -0.00127016834, -0.0126669705, -0.00957438722, 0.00152499101, -0.00467674434, -0.00971954875, -0.0042507248, -0.00358802848, 0.00489133177, -0.00728335045, -0.0165737253, 0.00753580639, -0.0173310917, 0.0169145409, 0.00125596777, -0.0145162102, 0.0146803064, -0.00273125642]
|
16 May, 2022
|
Virtual Functions in Derived Classes in C++
16 May, 2022
A virtual function is a member function of a base class that is overridden by a derived class. When you use a pointer or a reference to the base class to refer to a derived class object, you can call a virtual function for that object and have it run the derived class’s version of the function.
In C++, once a member function is declared as a virtual function in a base class, it becomes virtual in every class derived from that base class. In other words, it is not necessary to use the keyword virtual in the derived class while declaring redefined versions of the virtual base class function.
For example, the following program prints “C::fun() called“ as “B::fun()“ becomes virtual automatically.
CPP
// C++ Program to demonstrate Virtual
// functions in derived classes
#include <iostream>
using namespace std;
class A {
public:
virtual void fun() { cout << "\n A::fun() called "; }
};
class B : public A {
public:
void fun() { cout << "\n B::fun() called "; }
};
class C : public B {
public:
void fun() { cout << "\n C::fun() called "; }
};
int main()
{
// An object of class C
C c;
// A pointer of class B pointing
// to memory location of c
B* b = &c
// this line prints "C::fun() called"
b->fun();
getchar(); // to get the next character
return 0;
}
Output
C::fun() called
Note: Never call a virtual function from a CONSTRUCTOR or DESTRUCTOR
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions in Derived Classes in C++
|
https://www.geeksforgeeks.org/virtual-functions-in-derived-classes-in-cpp/?ref=next_article
|
Pandas
|
Virtual Functions in Derived Classes in C++
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Virtual Functions in Derived Classes in C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0262638628, 0.0195407625, -0.0113810068, 0.022133477, 0.0217518657, -0.0327288136, -0.0523930378, 0.00819903892, -0.00633026427, 0.0383632, -0.0125931855, 0.0359388404, -0.0201468524, -0.0665800124, -0.0228405818, 0.0247374158, -0.0154664973, -0.00554178748, -0.00656596571, -0.0182387941, 0.0208988525, -0.00446148962, -0.0336940661, -0.033626724, 0.00840668101, -0.0255006403, -0.0109545, -0.00905205403, -0.0227171183, 0.0268026087, 0.0139063783, 0.0170939583, 0.0135359913, 0.000160466312, 0.0162409451, -0.00563999638, -0.00580274221, -0.0235476848, -0.0124023799, -0.00554739917, 0.00229247613, 0.0165888835, 0.0210335385, -0.0334920362, -0.00780059164, 0.0612374507, 0.0178908538, 0.000637305551, -0.0194285251, -0.030304458, 0.0196642261, 0.00780059164, 0.0176439285, 0.0275433846, 0.0427405089, -0.00611701095, 0.0492952503, -0.0254557449, -0.039283555, -0.0507319048, -0.0159491245, 0.0079184426, 0.0245353859, -0.0204611197, 0.00743020372, 0.0212580152, -0.0512706526, 0.018710196, -0.0143441102, -0.0240190886, 0.00290698302, -0.0104213664, -0.0222569406, 0.00106907391, -0.00270074443, -0.00418369845, -0.00340083358, 0.0489360876, -0.0427854024, 0.0103820823, -0.035018485, 0.0311125759, -0.0386101231, 0.00584763801, 0.0414834358, 0.0100790383, -0.0104382019, -0.038812153, 0.00978160556, 0.00176214811, -0.0510012805, -0.00173549133, 0.0466464162, -0.0106290076, -0.00777253229, -0.00938877, -0.0370387807, -0.0150175421, -0.0315839797, 0.0796894953, 0.00973671, 0.0149950944, -0.00713277142, -0.0179806445, 0.0149501991, -0.0416854657, -0.00437450456, -0.0151971243, 0.0157134216, 0.0495197289, -0.0429649875, -0.0282168165, -0.000492096704, 0.0444016419, -0.0164990928, -0.00319319195, -0.00156853627, -0.0443567447, 0.0196193308, 0.03715102, 0.0397998542, 0.0147144971, -0.00439414615, -0.0143216616, -0.0633475408, -0.0161062572, 0.0121891266, -0.0100846495, 0.00768835284, 0.019866256, -0.00875462126, -0.0128064388, 0.026914848, -0.0059654885, 0.0293167569, 0.033357352, 0.0386325717, 0.00262077432, -0.0149277514, 0.0386774652, 0.0161623769, -0.00522190705, 0.00482907146, 0.0268924, -0.0160052422, -0.0263536535, -0.000353376614, -0.00592059316, 0.00933826249, -0.0087882923, -0.0112912161, -0.0308881, 0.0508665927, -0.0132441698, 0.0124472752, -0.0137492446, 0.0362531096, 0.0154440496, 0.0158256609, -0.00164570042, 0.0278352052, -0.0190805849, -0.0392386615, -0.00389749, 0.00784548745, 0.0391264223, 0.00383295259, 0.0336042754, -0.0566132143, 0.0209549703, -0.0141084082, 0.0102979038, 0.0455240272, 0.0459729843, -0.0185193904, -0.00443904195, 0.00930459052, 0.00809241273, -0.0221783724, 0.0321227238, -0.0231660735, -0.00270775938, -0.0166562274, -0.0127503201, 0.0116391564, 0.02176309, -0.00200346136, 0.0107019627, -0.020236643, -0.0117289471, -0.0258149076, 0.0427854024, 0.0153654823, 0.00658841338, -0.00261937128, 0.0259944908, -0.0389019437, -0.0154216019, -0.00755927851, 0.00872656144, -0.0035523558, -0.0517645031, -0.0395978242, 0.0372632593, -0.020337658, -0.0118075144, 0.00219286419, -0.00776692, 0.0605640188, -0.00876584463, 0.0406528674, 0.0416181199, -0.0177898388, -0.00896787457, 0.00016344765, -0.00541551877, -0.0691839531, 0.0179020781, -0.0138278119, -0.0226946715, 0.0296983682, 0.0100509785, -0.0129299015, -0.0252986103, -0.00376560935, 0.0111845899, 0.0289575923, 0.00551092159, -0.00821587536, 0.0226385519, 0.0200009421, 0.0153093627, -0.0113810068, -0.0472749546, 0.00456250459, -0.00654351804, 0.0194621962, -0.00552775757, -0.0298106074, 0.0535603203, 0.0238844026, 0.0105167693, -0.0363429, 0.0149950944, 0.0689594746, 0.0299228448, -0.011897305, 0.0179581977, -0.0344348438, 0.000739372626, 0.00865921844, 0.0353327505, 0.0250516851, 0.0248945504, 0.0178235099, -0.0024047147, -0.0147930644, 0.0127278725, -0.0442894027, 0.0320553817, 0.00105644704, 0.05050743, -0.0103259636, 0.043077223, 0.00195716275, -0.0494299382, 0.00966375507, -0.0116728283, -0.00909133721, -0.00475892238, -0.00602722, 0.00266847573, -0.0163756311, 0.0106009478, 0.0018701778, 0.0163307358, -0.0240864307, 0.0354674384, 0.0297432635, -0.00491044438, 0.0245353859, -0.00311181881, -0.00735724857, 0.0264434442, 0.046062775, -0.00615068246, -0.0196417775, -0.00952906813, 0.0419772863, 0.0148267364, -0.0233007614, -0.00225880439, -0.0118860817, -0.0384529904, 0.0210559852, 0.0267352648, -0.0266005788, -0.0242211185, 0.0169031527, -0.014882856, 0.0604742281, -0.0361408703, -0.00636393623, -0.0206631497, 0.0195070915, 0.000373544521, 0.0190132409, -0.00138965575, 0.01538793, -0.0253659524, -0.0324145444, -0.0147593934, -0.0323920958, 0.00304166949, -0.0305962786, -0.000937193399, 0.0148940794, 0.0172510929, -0.025523087, -0.001940327, -0.0198438074, 0.01877754, -0.00725623406, 0.00676799566, 0.0622251518, -0.011661604, 0.0194734205, 0.000753402477, -0.0232109688, -0.0327737108, -0.0129299015, -0.0107300226, -0.0278127566, -9.52275514e-05, 5.61632078e-05, -0.0501931608, -0.0160725862, 0.00254220725, -0.0328635, -0.0211008806, -0.0143216616, 0.0261516236, -0.0252761617, -0.00692513, -0.0437731035, -0.0563887395, -0.000211149105, -0.0086030988, 0.00652107038, 0.0185642857, 0.000454216119, -0.00235981937, 0.0232783128, -0.0242884606, 0.056164261, 0.0211121049, 0.00579713052, -0.0193836279, 0.013558439, -0.0168245863, 0.0144563485, 0.011016231, -0.0324145444, 0.00741336821, -0.0295412336, -0.0281270258, 0.0067231, -0.0148491841, 0.0404957347, -0.00942244101, -0.0157022, -0.023390552, 0.0269821901, -0.0334920362, -0.00762662152, 0.0326839201, -0.0593069457, -0.0144563485, -0.02718422, 0.00418650452, -0.00453444477, 0.0472300574, 0.0081822034, -0.0163531825, 0.0330430828, -0.0139849456, -0.0480381772, -0.00994996354, -0.0360510796, -0.00934387464, 0.0157358702, 0.0198774785, 0.0365898274, 0.0233232081, 0.0255006403, 0.00816536788, -0.0367694087, 0.00864799414, -0.0634822249, -0.0536052175, 0.0033419081, 0.0395978242, 0.0270046387, -0.0111004105, -0.0131094838, 0.0136145577, -0.0164878704, 0.00900154654, -0.0147481691, 0.0375101827, 0.0249843411, -0.0530664735, -0.00320441579, -0.0620455705, -0.0189010017, -0.0318309031, 0.0443118513, 0.042807851, -0.0394631363, 0.0424262397, 0.0424711369, 0.021909, 0.00032829828, 0.0387897044, 0.0262414142, 0.0213702545, 0.0382509604, 0.0176439285, -0.0140410652, 0.00205677468, -0.0368143022, 0.0120544396, 0.0261516236, 0.0349062458, -0.0239292979, -0.025253715, 0.0113529479, 0.00383295259, -0.0117738424, -0.0309554413, -0.00365898269, 0.021628404, -0.00444184756, -0.0248721018, -0.000417738513, -0.0063863839, -0.0140635129, -0.0227171183, 0.0155113926, 0.00801384542, -0.00914745685, -0.0211906731, -0.0164878704, 0.0245353859, 0.0236150287, -0.0186316296, 0.0232783128, -0.00476172799, 0.0175653622, -0.0209325235, -0.0157022, -0.0265781321, -0.00880512875, -0.0270944294, 0.00975354575, -0.00307253515, -0.0135135427, -0.00105995452, -0.0210223142, -0.0386101231, 0.0398896448, -0.0349511392, -0.0246925205, 0.00245943107, 0.028778011, -0.00813169591, -0.0169368237, 0.00881074, -0.012031992, -0.018474495, 0.00333629618, -0.0113641713, -0.00148435717, -0.0272964593, 0.00988823175, 0.00301361, 0.0458831936, 0.00514614582, 0.0098265009, -0.0208539553, 0.0075761145, -0.0232783128, 0.0369040929, -0.0703063384, 0.0148604074, -0.013356409, 0.0023037, 0.0262189675, 0.0387223624, 0.0473647453, 0.0212018955, -0.023861954, -0.0316737704, 0.00399850495, -0.00497498177, -0.0393060036, -0.0267128181, -0.0202815384, -0.00150961091, -0.0111228582, -0.0122003499, 0.0167011227, -0.0177000482, 0.00882196426, 0.0145685868, -0.0159266759, -0.0112350965, -0.0331104249, -0.0151297804, -0.0193836279, 0.00743581587, -0.0337389633, 0.00728990557, 0.00743581587, -0.0184520464, 0.0171388537, 0.0495646223, 0.00881635211, -0.00888369512, 0.0043660868, 0.00169340183, 0.0213365834, -0.00999485888, 0.0137043493, -0.00823271088, -0.0325941257, 0.00974232145, 0.00621802546, -0.0140522886, 0.0035186843, -0.00202029711, 0.00458495226, -0.00292662485, -0.0216059554, -0.00772202481, 0.0226834472, -0.00406023627, 0.00468035508, -0.00437169848, -0.0259720422, 0.0129523491, 0.0105448291, 0.0113417236, 0.0202703141, -0.030102428, -0.0122789172, -0.0101407692, -0.00123252161, -0.0247823112, -0.0312697105, -0.0267352648, -0.0200570617, 0.0418201499, 0.0299003981, -0.00465229526, -0.00676799566, -0.00575223472, 0.00349904248, -0.0136819016, 0.024916999, 0.0137155727, -0.0137716923, 0.0180367641, -0.0178122874, 0.0328859463, 0.0398671962, -0.00394519139, -0.00979282893, 0.00662208488, -0.00130898424, -0.0133115137, -0.0312023666, 0.0181153305, 0.00279614748, -0.00200065528, -0.00574662304, -0.0100173065, -0.00442220597, -0.0361184217, 0.00869850162, -0.000861432229, 0.0439077914, 0.0108590974, -0.00304728164, 0.0273638032, -0.0240864307, -0.0224365219, -0.0192601662, -0.0196305532, -0.0117850667, 0.0361633189, 0.0235476848, 0.0251639225, -0.00248187897, 0.0277454145, 0.032504335, 0.00468877284, -0.0419997312, 0.00763223367, -0.00478978781, -0.0297432635, 0.0154103776, 0.00771080097, 0.010269844, 0.0237946101, -0.00150119304, 0.00395080354, 0.0123911556, -0.0188336596, 0.00736847287, 0.0160725862, -0.0104887094, 0.00713838311, 0.000317425147, 0.00125005888, -0.02399664, 0.00195295387, -0.0190020166, 0.00726184575, -0.0193611812, -0.00797456224, -0.0376673192, 0.012031992, 0.0155899599, 0.00718327891, 0.000201152856, -0.0177224949, 0.0261516236, -0.00530889211, 0.03057383, -0.0263087582, -0.00532572763, 0.00389749, 0.0640658662, -0.0247149691, -0.00753683085, -0.00615068246, -0.0131319314, 0.0109713357, 0.0015559094, -0.0133339614, 0.00973671, -0.0302820094, 0.00740775606, -0.0218977761, -0.0390366316, 0.0278576538, 0.00157134223, -0.0144787962, -0.006880234, -0.00271477434, -0.0474096388, -0.00865360629, 0.0240190886, 0.00679044332, -0.0211906731, -0.0021844462, -0.0301248748, -0.00127040211, 0.0148379598, -0.0238395073, 0.00258569978, -0.00668942835, -0.00578029454, 0.00226862542, -0.0126605285, -0.0331553221, 0.014882856, -0.0149501991, -0.0166898984, -0.00246504322, -0.00574101089, -0.0120207677, 0.0105392169, -0.0183622558, -0.00578590669, 0.0154889449, 0.000972969516, -0.0198550317, -0.00886686, -0.015253243, -0.0202815384, 0.00683533866, 0.00909133721, 0.0149053037, 0.00321563962, -0.0159266759, 3.71133137e-05, 0.0135472147, 0.0180928838, 0.0135023193, -0.0270719826, -0.00721133826, 0.0109881721, -0.00865360629, -0.00895103905, 0.00101856643, -0.0229191482, -0.018710196, -0.00220408803, -0.00747509953, 0.00655474188, 0.0167011227, 0.00304447557, 0.00693074148, 0.0332226641, -0.0116728283, 0.0032100277, 0.0334695876, -0.00820465107, 0.0032521172, -0.00899593439, -0.0126156332, -0.00759856217, -0.00388626615, 0.00171164062, 0.00366178853, -0.00533975754, -0.0162072722, -0.0047757579, -0.0263985489, -0.000812327839, 0.00892859139, -0.0129860211, -0.034569528, -0.00101155159, 0.0196193308, -0.0223916266, -0.0226722229, -0.043997582, -0.0111453058, 0.0174755696, 0.0361857675, 0.00750315934, -0.0380264819, 0.007677129, 0.0405181833, -0.0079184426, 0.00183089427, 0.00801945757, 0.0103876945, 0.0384978838, 0.0582743473, -0.0119085293, 0.00359725137, -0.0147481691, 0.0157358702, 0.00340083358, 0.0366347209, 0.0160838105, -0.00422859425, 0.00983211305, 0.0221222546, 0.0298555028, 0.00233596866, -0.0196642261, -0.00855259132, -0.0321227238, 0.00636954792, -0.0283290558, 0.0139961699, -0.0174755696, 0.028778011, -0.0182163455, -0.0102866795, -0.00302483374, 0.0268026087, 0.0171276294, 0.0139400503, 0.01877754, -0.0469606854, 0.00258429674, -0.0138278119, 0.0149950944, 0.000768835307, -0.00720572658, 0.0109881721, 0.000341275882, 0.00132231251, 0.0102305599, 0.00242996844, 0.00872094929, 0.00835056137, 0.0481279679, 0.0248272065, 0.00747509953, -0.0287555624, -0.0210223142, -0.0210672095, -0.0425609276, 0.0192601662, 0.0111116339, 0.00980966538, -0.0103933066, 0.0185530614, -0.0105672767, -0.0246027298, -0.0173970032, -0.0211121049, 0.0108647095, 0.00438292231, -0.028441295, -0.0246251766, 0.0362531096, -0.0303493533, 0.00043667882, -0.00998924673, -0.0200570617, 0.0242660139, 0.0337614119, 0.00956274, -0.00527522, 0.00743020372, 0.0027035505, -0.0401365682, -0.0203825533, 0.0133788567, -0.013491095, 0.0157919899, 0.0189683456, 0.040675316, 0.00138193939, 0.0290249363, -0.0158144366, 0.00113080523, 0.00958518777, 0.0202927627, -0.034569528, 0.0151410047, 0.00611701095, -0.0115044694, -0.016880706, 0.00736847287, 0.000308831892, 0.00861993432, -0.0154440496, -0.00939999335, 0.0278352052, -0.00399850495, -0.0108310375, 0.022066135, 0.0279474445, 0.0209661946, 0.025523087, 0.0137492446, -0.00152223778, -0.0180704352, -0.0146359308, 0.0014619095, 0.0149614224, 0.0236823726, 0.0251863711, 0.00962447096, -0.0113080516, 0.0283739511, -0.00249590888, 0.0106907394, 0.00938315783, -0.0285086371, -0.0403834954, -0.0203601066, -0.011218261, -0.0104269776, 0.0141533036, -0.00163728243, 0.000350395276, 0.0018084466, -0.0225038659, 0.0481728613, 0.0181377791, 0.0194397476, 0.0224477462, 0.0102530085, -0.0170378387, -0.0129299015, -0.0110106198, 0.00536781736, -0.0393284522, 0.0102417842, -0.0294738915, 0.0243782531, 0.00266286382, -0.0248272065, -0.011594261, 0.0276556239, -0.0254557449, 0.00761539768, -0.0104662618, 0.0115044694, 0.00913623255, 0.000450007152, 0.00242996844, -0.00165973022, 0.0191591512, -0.0143777812, 0.0126156332, 0.0280372351, 0.0209549703, 0.00450919103, 0.0140186176, 0.00382734067, -0.0370387807, -0.0395753756, -0.0119758723, 0.0108871572, 0.0314492919, 0.0214263741, -0.00782304, -0.0181602258, 0.0138165876, 0.0102810673, -0.0184183754, -0.0171051826, -0.000680447323, -0.00121428282, -0.0301922187, 0.0165552124, 0.0252088197, 0.00849647168, -0.000512790692, -0.00815975573, -0.0194060765, -0.00131740212, -0.000155292801, -0.00144507363, -0.0283739511, -0.0284637418, -0.0202141944, -0.0451424159, 0.00782304, 0.000240085661, 0.00107258139, 0.00847402401, 0.0156011833, -0.0328186043, 0.0154328253, -0.00819903892, 0.0356021263, 0.00200767023, -0.00147453637, -0.0191928223, 0.0288902484, 0.0226161033, -0.03735305, -0.0238170587, -0.028710667, 0.00928214286, 0.00437450456, 0.00581396604, -0.013491095, 0.0391039737, 0.00927653071, 0.0403161533, -0.0155675123, 0.0237497147, 0.00471683266, -0.000908432237, -0.00386943016, -0.0191367026, -0.00327737094, 0.0206855983, 0.0111060226, -0.0095515158, 0.0225038659, -0.0234803427, -0.0128850061, 0.00460178778, -0.0121330069, -0.0144900205, -0.0154664973, 0.0233232081, 0.0161399301, 0.0273413546, 0.0128962304, -0.0272066686, 0.0130421408, 0.00991068, 0.00491325045, -0.00138965575, 0.0132553941, 0.00236823712, 0.021909, 0.0220773574, -0.0215947311, 0.00849085953, 0.0418650471, 0.0339634381, -0.00157274515, -0.0218528807, -0.00160361081, -0.0223242827, -0.023659924, -0.0128962304, -0.00171865558, 0.0104157543, 0.00551933935, -0.00950662047, 0.0155001683, -0.0139737222, 0.0256353263, 0.0141420802, -0.0352878571, 0.00670065219, 0.02176309, 0.0487565063, 0.0160838105, -0.0167909134, 0.0237946101, 0.0170715116, 0.00345695298, -0.0129523491, -0.0417752564, -0.00194453599, -0.017520465, 0.00406865403, 0.0106458431, 0.00026551474, -0.00663330918, -0.00202170014, -0.00613384647, 0.00105995452, 0.00613384647, 0.00506477291, 0.0214039255, -0.00598793617, -0.0284861904, -0.00437731063, -0.0388346, 0.0243109092, 0.0224252976, -0.00830005389, -0.0149614224, 0.00060819363, -0.00358322146, 0.0111621413, 0.00682972698, -0.00253940118, -0.0131319314, 0.0284861904, -0.0332226641, 0.0152981393, -0.00881635211, -0.00953468, 0.0270719826, -0.00202450599, -0.032706365, 0.00676238351, 0.00227002823, 0.00257587875, -0.0110891862, 0.00163728243, -0.0415283293, 0.023861954, -0.0095515158, 0.00306692324, 0.0175878089, 0.0062741451, 0.0136145577, 0.00351307215, 0.00190805842, 0.0081822034, -0.0044671013, -0.0224140752, -0.000649230904, 0.019866256, -0.00250993855, -0.00909133721, -0.000481223542, 0.00356357964, -0.0213590302, -0.0141308559, -0.00174390932, 0.0296085775, 0.00419492275, -0.0220885817, 0.00656035356, 0.0197203457, -0.0174082275, -0.00554459309, -0.023727268, -0.0149053037, 0.0155001683, 0.0542337559, 0.00211149105, -0.00652107038, -0.00789599493, -0.00184211822, 0.0531562641, 0.00598232448, -0.00568208564, 0.0152981393, -0.00505916076, -0.00367301237, -0.0150399897, 0.0177112725, 0.00885563623, 0.0102193365, 0.0215947311, -0.00640883157, 0.0177000482, 0.0276556239, 0.00556142908, 0.020101957, 0.00987700839, -0.00582519034, -0.000942103856, -0.0207192693, -0.0302371141, 0.0203937776, -0.00017949428, -0.0292943083, 0.0127503201, -0.0154216019, -0.00854136702, -0.0293167569, 0.00101085007, 0.00480381772, 0.0283066072, -0.00026481325, 0.0182387941, -0.0168694817, 0.00153065566, 0.0149838701, 0.0230762828, 0.000918253092, 0.0109657235, 0.00310901273, -0.0296983682, -0.0102754561, -0.0242211185, 0.0196978971, 0.0085918745, -0.0128513342, 0.0214824937, -0.03057383, -0.00693074148, 0.0195407625, 0.012166678, -0.0156685263, 0.0347940065, 0.0073348009, -0.0231436267, 0.0323023051, -0.0021830434, -0.0106177842, 0.0216508508, -0.000454917608, -0.0148267364, -0.00493289204, -0.015253243, -0.0312921591, -0.00482065324, 0.0252761617, 0.0146247065, -0.00115114846, 0.00755927851, 0.0235027894, 0.0197540168, 0.0219314471, -0.00423701201, 0.00548286177, -0.0123125883, 0.0117289471, 0.0205845833, 0.0243782531, 0.0101295458, -0.0355572291, -0.015286915, 0.00480101164, 0.0121779023, 0.0245802812, -0.00996679906, -0.00185474497, 0.00135949161, -0.00417528069, 0.0261740722, 0.0107524702, -0.00141420797, 0.0197989121, 0.00344292307, 0.0347940065, -0.000150294669, -0.0082495464, 0.0235476848, 0.0347266644, 0.00206659571, -0.0218865518, -0.0111677535, 0.000940700877, -0.00258990866, 0.00555020524, 0.0134798717, -0.00855259132, -0.0035186843, 0.00584763801, 0.013760468, -0.00330262468, 0.0102530085, -0.00410513161, -0.00842912868, 0.00332787842, 0.00968620274, 0.00113782007, 0.0220436864, 0.0312248152, -0.00785671081, -0.00796895, -0.0196978971, 0.0295636822, 0.0161511526, -0.00713277142, 0.00882757641, 0.0396876149, -0.0018322973, 0.0191367026, -0.00462423591, -0.00924847182, -0.0114876339, -0.00662769703, -0.00155170041, 0.0101968888, -0.00159519294, -0.00526960846, -0.00773886032, 0.00620680163, 0.00556423515, -0.0241537746, 0.00225038663, 0.0112126488, 0.0147369457, 0.0421568677, -0.0131094838, 0.00892297924, -0.010101486, -0.0198550317, -0.0169256013, -0.0280821305, -0.0333349034, -0.010269844, -0.0127503201, 0.0296310242, 0.00501987711, -0.0173184369, 0.0249394458, -0.0033419081, 0.0385652259, -0.0235027894, -0.0186653, 0.0200233888, 0.00592059316, 0.00805874076, -0.0176214799, 0.00944489, 0.00244540139, 0.00447832514, -0.0269597434, -0.0162521675, 0.0270046387, -0.0215610601, -0.00385540049, -0.0130870361, 0.0227283426, -0.0175990332, -0.000123988721, -0.0202703141, -0.00685217464, -0.00601599598, 0.0113697834, 0.0271617733, 0.0213141348, -0.00294065475, -0.00247346098, 0.0346593186, -0.0257924609, 0.0168694817, -0.00305289356, -0.0102810673, 0.0123687079, 0.0128962304, -0.00700369664, -0.0268699527, 0.0222457163, -0.0100958738, 0.00324931135, -0.0160725862, -0.00610578712, -0.00669504, -0.0293616522, 0.010135157, -0.0143777812, 0.011661604, 0.00558948889, 0.00875462126, -0.00991629157, -0.00948978495, -0.000718327879, -0.0246925205, -0.0107749179, 0.0239292979, -0.0026249832, 0.0113136638, -0.00660524936, 0.0082607707, 0.00522751873, 0.042314, 0.00758733833, -0.00925969519, 0.00882196426, 0.0100453664, 0.00704859244, 0.00282140099, 0.0209325235, 0.00232474459, 0.010948888, 0.0122789172, 0.00377963926, 0.0129411258, -0.0219202247, 0.0102305599, -0.00652668206, -0.00823832303, 0.0275882799, 0.00927653071, 0.0383407511, -0.0152644673, -0.0296534728, 0.00668942835, -0.0138390353, -0.0309778899, -0.00773324864, -0.00360847521, -0.0105111571, -0.000164412209, 0.0266679227, 0.0157358702, -0.0120432153, 0.0306860693, -0.0126268575, -0.0258822516, -0.0205621347, 0.00677360734, -0.0155113926, -0.0118187387, 0.0160501376, 0.00798017345, 0.0248721018, -0.0320553817, 0.0314044, -0.00782304, -0.0086030988, -0.0138951549, 0.0209100749, -0.0153430346, -0.00436328072, -0.0100734262, 0.0235027894, 0.00409951946, 0.00954029243, 0.0218753293, 0.00257026684, 0.00580835436, 0.037891794, -0.042314, 0.0142430952, 0.00657718955, 0.0114932461, -0.00432399707, -0.018541839, 0.015455273, 0.0100509785, 0.00748071121, -0.0234578941, -0.0123238126, 0.0209100749, 0.0127054239, 0.0424262397, -0.00941121764, -0.0148491841, 0.0195519868, 0.000418089272, 0.00372071401, 0.00617874227, 0.0149726467, -0.00882757641, -0.00331946043, 0.00685217464, 7.72956555e-05, -0.00800262112, -0.0209549703, -0.037891794, -0.000725342776, 0.00741898, -0.0137043493, -0.0204050019, -0.0203601066, 0.0218865518, -0.0102305599, -0.00986578409, -0.00711032376, 0.00279474445, 0.0126829762, 0.00933826249, 0.0135808866, 0.0100734262, 0.0160276908, 0.00806996506, -0.00681850268, -0.00296871434, 0.00637516, 0.0299003981, -0.00590936933, 0.00193892408, 0.0147818411, -0.0313370526, -0.0195070915, -0.00182247639, 0.0187438671, 0.00465229526, 0.0127278725, -0.00063905929, 0.006728712, 0.0128401108, 0.01538793, 0.0194397476, -0.0122115742, 0.020303987, -0.00973109808, -0.0126829762, 0.0153093627, -0.00572698144, 0.00929336715, 0.0224140752, 0.000321984844, 0.0172735397, -0.00892859139, -0.00712154759, 0.00449235504, -0.0230762828, 0.000351622904, 0.00212131208, -0.0167235713, -0.016813362, -0.0145236915, -0.0402712561, 0.0130870361, -0.0209100749, 0.0101127094, 0.000499813119, -0.0472749546, -0.00480662379, -0.00341205741, -0.0155450646, -0.0286208764, -0.00283262506, 0.00652668206, -0.00222513289, 0.0179581977, -0.0199560467, -0.0138502596, 0.0140747372, 0.00313426647, 0.00688584615, -0.0261291768, 0.0228181332, 0.0281494744, -0.016779691, -0.0092148, -0.0115381414, 0.00365337078, 0.0133115137, -0.00358041539, -0.00944489, 0.0152420197, -0.00368143036, 0.0328410529, 0.00776692, 0.00120446191, 0.0316064283, 0.0127952155, 0.0370387807, 0.0263985489, -0.00201187935, -0.00488519063, -0.00196978962, 0.0154216019, -0.0454342365, 0.0165327657, 0.0166225564, 0.0213029105, -0.0023977, 0.0168245863, 0.0120881116, -0.0237497147, 0.00346817682, -0.0215273891, 0.00167235709, -0.0242435653, -0.00321563962, 0.0162970629, 0.011150918, -0.00046789521, 0.00732918922, -0.00620680163, -0.00560632441, 0.00415283302, -0.0150175421, -0.0133339614, 0.00277089374, -7.26153894e-06, -0.0118860817, -0.0222569406, -0.0193499569, -0.0542786494, 0.02399664, 0.0106290076, -0.00377122127, -0.0225038659, 0.00823271088, 0.0106121721, 0.00814853143, 0.0294289943, 0.0373979434, 0.023861954, 0.0118075144, 0.0150961094, 0.015320587, 0.0427180603, 0.0118411863, -0.0188336596, 0.000167919658, -0.0191142559, -0.0117850667, -0.0291596223, -0.0148604074, -0.000810924801, 0.00714960694, 0.00740214437, 0.0236823726, -0.0203937776, -0.0102193365, -0.00846841186, -0.00421737041, -0.0207641646, 0.0115381414, 0.0300350841, 0.0159940198, 0.000366529595, -0.0150287664, -0.00918674, -0.0154103776, -0.011150918, 0.0204947926, 0.0223804023, 0.00470560882, -0.00821587536, -0.0120432153, 0.00890614372, -0.00594304083, 0.00814292, 0.00988823175, -0.00622363761, 0.0300799794, 0.0180479884, 0.00307814707, -0.00118482008, -0.00270214747, 0.0154777206, 0.0161399301, 0.0227732379, 0.00128232746, 0.00956835132, -0.0115605891, 0.0303718, 0.00524716079, 0.0117401714, 0.0207529403, 0.015758317, -0.0211233292, 0.00022640657, -0.00739653222, -0.0302146655, 0.0203152094, -0.0100846495, 0.0114707984, -0.0209998656, 0.0118187387, -0.0114876339, 0.00213113287, -0.0016218496, 0.00943927746, 0.0118748574, 0.0120432153, -0.00508160843, 0.00244119228, -0.0133451847, 0.003804893, 0.0212804638, -0.0017523272, -0.0315166339, 0.0194060765, -0.0119870966, 0.0230089389, 0.0147706168, 0.0126156332, 0.0249843411, -0.00195295387, 0.0151634524, 0.0190132409, -0.00230229693, -0.0100734262, 0.00542393653, 0.0127615435, 0.0149053037, 0.0313370526, 0.0166562274, -0.00496375794, -0.00792966597, -0.00333629618, -0.00923163537, -0.0063414881, 0.00772202481, -0.0110330675, -0.0104269776, -0.0076434575, 0.0145012438, -0.00192770024, -0.00258008786, -0.0114483507, 0.0384754352, -0.0361408703, 0.0194734205, 0.00485151913, 0.0122901406, 0.0133900801, 0.0571968555, -0.0195183158, -0.017015392, -0.0194173, -0.0218753293, 0.00868166611, 0.00850769598, -0.00390029582, 0.0139512746, -0.00923724752, 0.00395360915, -0.0185193904, 0.0221783724, 0.0158481095, -0.00357199763, 0.0161287058, 0.0132217221, -0.00657157786, 0.0186428539, -0.00364775863, 0.00200205832, -0.000880372536, 0.00636954792, -0.0033419081, 0.00777253229, 0.0241313279, -0.00627975678, 0.0115044694, 0.0161174815, 0.0264883395, -0.00415283302, 0.0141645279, -0.00861432217, -0.00320441579, 0.0151859, -0.00969742611, -0.0152420197, 0.00458775833, -0.0144563485, -0.00393396756, -0.0162184965, 0.000299887848, 0.00461301161, -0.0125931855, -0.0125033949, 0.0126268575, -0.00945611298, -0.0255904309, 0.00735163689, 0.0147481691, 0.0110106198, -0.00353832589, 0.000869850162, 0.0140410652, -0.00150961091, 0.0154664973, 0.00710471161, -0.00575223472, -0.02060703, -0.0131992744, 0.0045119971, -0.0180143155, 0.00221390906, 0.00297713233, -0.0181938987, -0.015118557, 0.00469438499, 0.000174846893, 0.015623631, -0.0270270854, -0.00795211364, -0.0087995166, 0.0002495558, -0.00230790884, -0.0147818411, 0.00353832589, -0.00157555123, 0.00850208383, 0.00338960974, 0.0322574116, -0.00931020267, -0.0126380809, 0.0126156332, 0.0194509719, -0.00918674, -0.00843474083, 0.00514053367, -0.0142992139, -0.0173745546, 0.00242295349, 0.00881635211, 0.0202141944, 0.0118187387, 0.00686339848, -0.00893981475, -0.0122003499, -0.00492447428, 0.00186035701, 0.00138895423, 0.000801103946, 0.0113417236, 0.0212692395, 0.0342552587, -0.00341486349, 0.00678483117, 0.00821026322, -0.0249618944, -0.00449796719, -0.015051214, 0.0312697105, -0.0115493657, 0.00560632441, -0.0186540764, 0.0202141944, 0.00692513, 0.00835056137, -0.00276387879, -0.000421246, -0.0392611064, 0.00745826354, 0.0162633918, -0.00288734143, -0.000285331887, 0.00501426542, -0.00238647591, -0.0121554546, 0.00186175993, -0.0141308559, 0.0274984892, 0.0154103776, -0.00743581587, 0.0236374773, -0.0194285251, 0.00026551474, 0.000712715962, -0.000983491889, -0.0241762232, -0.0105111571, -0.0220100153, -0.0123911556, 0.0109545, 0.0239741933, -0.0140635129, 0.0228854772, 0.00950662047, 0.00219567027, 0.00909133721, -0.00125005888, -0.024916999, -0.015320587, -0.00936632231, 0.00373193785, -0.00164850638, 0.00533975754, 0.00711032376, -0.00823832303, -0.0160838105, 3.3649696e-05, -0.004169669, 0.017284764, 0.0166001078, -0.0106795151, 0.00872094929, 0.0208539553, 0.0124472752, -0.00976476911, -0.0247598644, -0.0320778303, -0.0289575923, 0.00856942683, 0.0176214799, -0.00627975678, 0.00166674517, 0.0225038659, -0.00648739841, -0.0176888239, -0.0146134831, 0.00067062641, -0.00599916, 0.0168582574, -0.00594304083, -0.0211121049, -0.0125707379, -0.00798017345, 0.00938877, 0.0225936566, -0.0316513218, -1.4325783e-05, -0.0107973656, 0.00157976011, -0.0159603469, 0.00598793617, -0.016678676, 0.00696441345, -0.0107805301, 0.0252088197, 0.00205817772, 0.00577468285, -0.00510966824, 0.00248328201, -0.0142430952, -0.018945897, 0.0123574845, 0.00157134223, 0.00713838311, 0.00020308196, -0.00342328125, 0.00573820528, -0.0249394458, 0.005118086, 0.0127839912, -0.00597110065, -0.0222457163, 0.0212804638, 0.0100509785, -0.0194173, -0.00704298029, 0.0209100749, 0.0109713357, 0.00258008786, -0.000580835447, -0.0177000482, -0.0134013044, 0.00481784763, 0.0125707379, -0.00462143, -0.0114427386, -0.0267577134, 0.0102193365, -0.00638077175, -0.00529205613, -0.0131207071, -0.00158817798, 0.0309554413, -0.00567927957, -0.0112294853, 0.0278576538, -0.0192377176, -0.00107117835, -0.011897305, -0.0207529403, -0.00191787933, 0.0111228582, -0.00134616322, 0.0231436267, 0.0431670174, 0.0101632169, 0.000320406514, -0.00238647591, -0.0127615435, -0.0078511, 0.022661, -0.00635271193, -0.0112743806, -0.00300799799, -0.00804751739, -0.0357817076, 0.00649301056, -9.95241862e-05, 0.00786232296, 0.0107524702, -0.0146696018, 0.00523874257, -0.00344853499, -0.000601880194, 0.0136145577, -0.0079184426, 0.0113136638, -0.00601038383, 0.00584202586, 0.0111004105, 0.0149501991, 0.00477856398, -0.0018982375, -0.0200233888, -0.00783426315, 0.0151073327, 0.00992751587, -0.0175316893, 0.0254332963, 7.46212172e-05, -0.00781181548, 0.00954029243, 0.0119870966, -0.0274984892, 0.00186877488, 0.0155113926, -0.0148940794, -0.000337417674, -0.0011574619, 0.00705981627, -0.0101070972, 0.00933265, -0.0145685868, 0.00431557931, -9.49754485e-06, -0.00241313269, 0.00116658129, 0.0166674517, -0.000529626501, 0.0161848255, 0.0161399301, -0.0312472619, -0.0124697229, -0.00142192445, 0.011594261, 0.011695276, 0.0106233954, -0.00177898386, -0.00756489, -0.00368423644, -0.00727868173, 0.00223775976, -0.0039031019, 0.00187719276, 0.0107693058, -0.00677921949, 0.0155899599, -0.0189346746, -0.00822709873, -0.00642566709, -0.0276331753, -0.015253243, -0.00431557931, -0.0296759196, -0.0286208764, 0.0127390958, 0.0141420802, 0.0421119705, -0.0216620751, 0.00488799671, 0.00022623119, -0.00198101369, 0.0047084149, 0.0105616646, 0.0193611812, -0.011218261, 0.0210335385, -0.00971987378, -0.00327737094, 0.0396202728, 0.00356638571, -0.0255679823, 0.0127839912, 0.02176309, 0.0131656034, 0.0117401714, 0.0147706168, -0.00705981627, 0.0154216019, -4.57065926e-06, -0.00468596676, 0.00115535746, -0.00125777523, 0.00360847521, 0.00228405814, 0.00801384542, 0.0136145577, -0.0127278725, -0.00269793859, -0.0140410652, 0.00567366788, -0.00324089336, -0.00260674441, -0.0122227976, -0.00828883052, 0.00696441345, 0.0265556835, -0.0277454145, 0.00201468519, -0.00122971553, 0.00998924673, 0.000749193539, -0.00198101369, 0.0186316296, 0.0173521079, -0.00906327739, 0.00932142697, -0.00483187754, 0.00168919284, 0.0062741451, 0.00195295387, -0.00416125078, 0.0175653622, 0.0066164732, 0.0165327657, -0.0114483507, -0.0314268433, 0.00465229526, -0.00839545671, -0.0097591579, 0.0151859, -0.00705420412, 0.00904644188, -0.00142122293, -0.00696441345, 0.0085357558, 0.000977178453, -0.0332451127, 0.00810924824, -0.010236172, -0.0154216019, 0.000131880515, -0.0122340219, -0.0146134831, 0.0272066686, 0.0354225449, -0.0202254187, -7.06314822e-05, -0.00927653071, -0.00952906813, 0.00482345931, 0.00690829381, -0.000737268187, 0.0278127566, -0.0166450031, 0.0196193308, 0.00649862271, 0.0111958133, -0.00432119099, 0.0101744412, 0.0121330069, -0.00742459204, -0.00484590698, 0.00456811627, -0.0101239337, 0.00624608528, -0.0201244038, -0.000963850121, 0.00872656144, 0.0144226765, 0.00623486144, -0.0158930048, -0.0167909134, -0.0175653622, -0.00127531262, -0.0117064994, 0.000947715773, -0.0250067897, 0.0101070972, 0.0173633322, -0.0206182543, 0.00646495074, 0.0143441102, 0.013457424, 0.0085357558, 0.00219146116, -0.00459056394, 0.0150848851, -0.00622924976, 0.0062741451, -0.00379647501, -0.00930459052, 0.00656035356, -0.00721133826, 0.00620680163, -0.0167460181, 0.0110555151, 0.00502548926, 0.00396202737, 0.000967357541, 0.0107412469, -0.0111565301, 0.0208427329, 0.0198438074, -0.0356021263, 0.0287331156, 0.0082495464, 0.00814853143, 0.0114202909, 0.0220100153, 0.0142879905, 0.0158593319, -0.00219847611, 0.00713277142, 0.0259720422, -0.0214824937, 0.000930879964, 0.00332787842, 0.0232783128, 0.0150063187, 0.015623631, 0.00923724752, 0.0150399897, 0.0114146788, 0.00550531, -0.00368143036, 0.0123238126, 0.0364102423, 0.00578029454, 0.00538745895, 0.00148435717, -0.00268671452, -0.00241172966, -0.0186989717, -0.00235420745, -0.0102081122, -0.0122564696, 0.0162746161, 0.00100593967, -0.0218865518, 0.015556288, -0.00096876052, 0.0183959287, -0.00624047359, -0.00251555047, -0.0242435653, 0.00973109808, 0.00442501204, -0.0166450031, 0.0241986699, 0.00788477063, 0.00766590517, -0.00954590365, 0.00617313, 0.00800823327, 0.0139176026, 0.00739092054, -0.00891736709, 0.00237384904, -0.00687462231, -0.0102979038, 0.0280596819, 0.0107468581, -0.0072674579, -0.0128064388, -0.00809241273, -0.00363092287, -0.00717766676, -0.00652668206, -0.00954029243, 0.00775008416, 0.0108759329, -0.00338119175, 0.00448113121, -0.0038385645, -0.00726184575, 0.000505775795, 0.00574662304, 0.0171164069, 0.0145012438, 0.0113024404, -0.0100229187, -0.000361969898, -0.00469157891, 0.0156124076, -0.0281719211, -0.000487887737, -0.0146920495, 0.0101127094, -0.0179694202, 0.0148491841, 0.0253659524, 0.0103484113, -0.0107749179, -0.00613945862, -0.0128513342, -0.00489922054, -0.00179581973, -0.00382734067, 0.0167347938, -0.0145236915, -0.000916850113, -0.0104662618, 0.0165664367, -0.00317635597, 0.0259271469, -0.00225319248, 0.0148940794, 0.0155899599, -0.0285535324, -0.0256802216, -0.000464738492, -0.00632465258, -0.0217518657, 0.0140747372, -0.00881074, 0.00711032376, -0.00382453483, -0.00212552096, -0.00458775833, -0.000416335533, 0.0138278119, 0.0225824323, 0.0149053037, 0.00689707, 0.0214712694, 0.015152229, -0.0195856579, 0.0125819612, -0.0110106198, 0.00436889241, -0.00210307329, 0.0152756916, 0.00283683394, -0.0149053037, -0.0113136638, -0.0039031019, 0.0127054239, -0.0128625585, 0.00202731206, 0.0196754485, 0.0243782531, -0.00232755067, 0.0249394458, -0.00837300904, -0.0011897306, -0.0138390353, -0.0142992139, -0.00263901311, -0.00916990452, 0.023592582, -0.011594261, 0.0150287664, 0.0240639839, -0.000697984593, -0.00057627575, -0.00520787714, 0.0146696018, 2.92215282e-05, 0.02738625, 0.00583641417, -1.06045873e-05, -0.0262189675, 0.0154328253, 0.00410513161, -0.0380489305, -0.00276387879, -0.0181938987, -0.00970303826, -0.0100565907, -0.0133339614, 0.00478137, 0.0242435653, 0.0034962364, 0.0141308559, 0.00711032376, 0.00973671, 0.020674374, 0.00555020524, -0.00318758, -0.00689145783, 0.0154664973, -0.00292101293, -0.0102193365, -0.0085918745, 0.0266679227, 0.00515456358, 0.00512369815, 0.00902960543, -0.00774447247, -0.000126531624, -0.0157358702, -0.0126044098, 0.00377683318, -0.00238787895, 0.0192040466, -0.0129074538, 0.0214151498, 0.0102137243, -0.0104382019, 0.02080906, 0.0146359308, 0.0142543186, 0.0228518061, -0.0188336596, -0.0170378387, 0.00284946081, 0.00796333794, 0.00342328125, 0.0215386115, 0.00145489455, 0.026914848, -0.023525238, -0.00650423439, -0.00468596676, 7.33936104e-05, -0.0177449435, -0.0111284703, -0.0101632169, -0.0106514553, -0.0050058472, 0.00804190524, -0.0202141944, -0.00428190734, -0.0144563485, -0.00396763906, -0.000217287161, -0.00172987941, -0.0234354474, 0.00987139624, 0.00258289371, -0.015623631, 0.0108871572, 0.00923163537, 0.0129860211, -0.000468947459, -0.0168021377, -0.00305289356, 0.0035186843, -0.016813362, -0.00485432521, -0.00205537165, -0.000820745714, -0.0126493052, -0.00308375922, -0.0140073933, 0.0113753956, -0.0072337864, 0.0257924609, -0.0147481691, -1.88745216e-05, 0.0128064388, -0.0117064994, 0.0227171183, -0.00406023627, 0.00570453331, -0.00368984835, -0.0260618329, -0.0218416564, -0.003364356, -0.0242435653, -0.0085245315, -0.0101295458, 0.0109432759, 0.00619557779, 0.0139512746, 0.00155731244, 0.000480171322, 0.00332787842, -0.00160361081, 0.0103820823, -0.00242996844, -0.00644811522, 0.0147032738, -0.00826638285, -0.00507038459, -0.0268699527, -0.00136159605, -0.00435205689, -0.0122452453, -0.00659963721, -0.0215610601, 0.00475892238, 0.0183173604, -0.002923819, -0.00789599493, 0.00480381772, -0.00364214671, -0.0103091272, -0.0258822516, -0.0195407625, 0.0050844145, -0.0283964, -0.00319599779, 0.00998363551, -0.0311574712, 0.00735724857, 0.00404901197, 0.00631904043, 0.0100902617, 0.0122452453, 0.0123574845, 0.00246223714, 0.016914377, -0.0192713905, 0.00982088875, -0.0115830367, -0.0161960479, -0.0215610601, 0.0177337192, -0.0286882203, -0.0193948522, 0.0162072722, 0.00987700839, 0.0127278725, 0.00331946043, 0.0134798717, 0.00812047254, -0.0129299015, 0.0228293575, -0.04121406, 0.00316793821, 0.0142992139, -0.00520507107, 0.00345975882, 0.00289295334, -0.00590375718, -0.000843894959, -0.0248272065, 0.0160838105, -0.0140073933, -0.011695276, -0.0208876282, 0.00797456224, 0.0118524097, -0.0497891, -0.00604966749, -0.00415283302, 0.0115605891, 0.000740775606, 0.0116054844, 0.0114932461, 0.00584763801, -0.00349343056, -9.9874931e-05, 0.00175092416, -0.00191367033, -0.0134349763, 0.0306411739, -0.0312921591, 0.00500304159, -0.0192040466, 0.00940560549, -0.00817098, 0.00297993841, 0.0110611273, 0.0229415968, -0.00902399421, -0.00330543052, -0.0120095443, 0.00994996354, -0.00447551953, 0.0146022588, -0.00652107038, 0.000375298259, 0.0183734801, 0.0066838162, 0.0218192097, 0.023592582, -0.02718422, 0.00489922054, -0.019046912, -0.0120095443, 0.0103764702, 0.0197764635, 0.023525238, 0.00665575685, -0.00340083358, 0.0128513342, -0.0142094232, 0.00180704356, 0.018811211, 0.0126829762, -0.00049841014, -0.00156573032, 0.0209886432, 0.0258822516, -0.00993312802, 0.00216901349, -0.0218192097, 0.00317355013, 0.0389692858, 0.0242435653, -0.00814292, -0.00657157786, 0.00204835692, 0.00342889316, -0.0134013044, -0.00454005646, 0.0158705562, -0.017049063, 0.00017949428, -0.00670065219, -0.0151410047, -0.00884441193, 0.0159042273, -0.0141420802, 0.00401253439, 0.0302820094, 0.0187438671, 0.00213393895, 0.0287555624, -0.00904083, -0.0126380809, 0.0146247065, 0.011117246, -0.0114483507, 0.00868727732, -0.0011525515, 0.00980966538, -0.0200458374, -0.0317411125, 0.00761539768, 0.00713838311, 0.0207304936, 0.000231317012, -0.00381611683, 0.00218584924, 0.00087195466, 0.0266679227, -0.0254557449, -0.00882196426, 0.018710196, -0.00972548593, 0.00900154654, -0.00621802546, -0.0113585591, -0.0198325831, 0.0069924728, 0.0170041677, 0.000531731, 0.0167011227, 0.0261516236, 0.00931581482, -0.0103652468, 0.0112687685, -0.00707104, 0.011964649, -0.000621171203, 0.00312304264, 0.0244007, 0.0158256609, -0.00575223472, -0.00717766676, -0.0248496551, -0.0296534728, 0.00124234241, 0.00745826354, -0.0134798717, -0.0257026684, -0.00427910173, 0.0177224949, 0.0219538957, 0.000446148944, 0.013524767, -0.0123013649, -0.0212916862, 0.011897305, 0.01379414, -0.00396483298, -0.0254332963, 0.0144675728, -0.0154440496, 0.0192040466, 0.00648739841, 0.03077586, 0.0276556239, 0.0188336596, -0.00982088875, -0.0149277514, -0.00713277142, 0.0316513218, 0.00686901, 0.0160052422, -0.00642566709, 0.0174306743, 0.00812608376, 0.00772763649, -0.0215498358, -0.012099335, -0.014882856, 0.018541839, 0.0168470331, 0.0202590916, 0.0221559256, 0.00143595424, 0.0125595136, 0.00490202662, 0.0239517447, 0.00953468, -0.0215498358, -0.0254781917, 0.0197427925, 0.0223579556, -0.0403610468, -0.0183510333, 0.01199832, 0.0118075144, -0.00619557779, 0.00882196426, -0.00841790438, 0.0125931855, 0.000705701, 0.0213141348, -0.0238170587, 0.00432119099, 0.0101127094, 0.0145910345, -0.0308656506, 0.00377963926, -0.0143665578, 0.000501216098, 0.0129299015, -0.00585324969, 0.0126044098, 0.00560632441, -0.0226161033, -0.0075312187, -0.00378805725, -0.0210110899, 0.00507599674, 0.00856381468, 0.00601038383, -0.0224365219, -0.0133451847, -0.0181041081, 0.0010683724, 0.00600477215, -0.000197996138, 0.0291371737, 0.0334246941, -0.00478417566, -0.0174082275, 0.00121428282, -0.0206407029, -0.00125216332, -0.0128737828, -0.0151859, 0.0122452453, 0.0082495464, -0.0162858404, 0.000609947369, -0.00348220672, 0.0120544396, 0.00522751873, 0.0066838162, -0.00671748817, -0.00254781917, -0.0113192759, 0.0131880511, -0.0103427991, 0.017015392, 0.00743581587, 0.0393957943, -0.00685217464, 0.00507880235, -0.0124248276, 0.0142655428, -0.0304840393, -0.00801384542, 0.00749754719, -0.00368984835, -0.00428471342, 0.00106696947, 0.0273189079, -0.0443567447, -0.00113922311, -0.00754805468, -0.00310340081, 0.00308937114, 0.00750877103, -0.00667259237, 0.0164429732, 0.00344853499, -0.0049076383, -0.00192208821, -0.0142543186, 0.0125258425, -0.00160361081, -0.00478417566, 0.0160613619, -0.0114764106, -0.0242660139, 0.00254080421, -0.00523874257, -0.016779691, 0.0286882203, -0.00195716275, 0.00296871434, -0.0125482902, 0.0146471541, -0.00892859139, 0.0342777073, -0.00867605396, 0.00637516, 0.0228854772, -0.010202501, 0.0271393247, 0.0215947311, 0.0134125287, 0.006880234, 0.0190693606, 0.00513772806, 0.0227058958, -0.0469157882, 0.00484871306, -0.016813362, 0.0140073933, -0.0442669541, -0.00216480461, 0.0123462602, -0.00169620779, 0.0326165743, -2.74897211e-05, 0.0231660735, -0.0115044694, -0.0140186176, 0.00830566604, -0.00215358054, 0.00645933906, -0.00318196812, 0.0124809472, -0.0135359913, -0.020438673, -0.0192713905, -0.00909133721, 0.018844882, -0.00043632806, -0.000829163648, 0.011083575, -0.00206799852, 0.0108759329, -0.00949539617, 0.0277678613, -0.00220128219, -0.0163082872, -0.0178122874, 0.00129214837, -0.0227283426, 0.00314549031, 0.000133721929, -0.00417528069, -0.00212411792, -0.00071902934, -0.000296029641, -0.00450077327, 0.000237104323, 0.00104732765, 0.0187438671, -0.0107019627, 0.00515456358, 7.30867e-05, 0.00423420593, -0.0282392651, 0.0122227976, -0.0186653, -0.003804893, 0.00112379028, 0.0123238126, 0.00587008568, 0.0137829157, 0.0173970032, -0.0134462, 0.0217406414, 0.0109376647, 0.00308937114, 0.00329981861, -0.00567647396, -0.00987700839, 0.0037066841, -0.00194453599, -0.0116391564, -0.00979844108, 0.0129972454, 0.00189262559, 0.00769396499, -0.0178235099, 0.00149558112, 0.000879671075, -0.0180030931, -0.0112912161, 0.00193752104, 0.0205284636, -0.0150961094, 0.0016583273, 0.00993873924, 0.0173184369, 0.00647617457, -0.00948978495, 0.0105167693, -1.22322681e-05, -0.0246027298, -0.00117780513, -0.0296310242, 0.0109264404, -0.0137829157, 0.0123462602, 0.0196530018, -0.00234578946, -0.0140971849, 0.00445587747, 0.00236262521, 0.016914377, 0.00189964054, 0.00179581973, -0.00613384647, -0.0254332963, -0.0197315682, 0.00839545671, -0.0136819016, 0.00275966967, 0.00578029454, 0.00809802394, 0.00985456072, 0.0130421408, -0.0225936566, 0.0192826129, 0.00340083358, -0.0244904906, 0.000602230954, -0.00966375507, 0.0120881116, -0.0171388537, -0.0118187387, -0.0186204053, -0.00363653479, 0.0186540764, 0.00977038126, -0.0438853428, 0.0263087582, 0.0232558642, -0.0183734801, -0.00252116239, 0.00876023248, 0.0113361115, 0.00332226651, -0.0238395073, -0.013558439, -0.00505635468, -0.0124921706, 0.00465510134, -0.0291596223, -0.0107917544, -0.0114202909, 0.000313742319, -0.0208764039, 0.00288453535, 0.0214263741, -0.00205116277, 0.00573259313, -0.00557265291, -0.0246700738, -0.00823832303, 0.0260618329, -0.0104718739, 0.000393887807, -0.0181714501, 0.0217406414, 0.0146920495, 0.00896226242, 0.00366459461, -0.0283290558, 0.00463545974, 0.011083575, -0.00272178929, 0.0198774785, -0.0048094294, 0.0046074, -0.0230762828, 0.00348501257, -0.0061113988, 0.00489922054, -0.000345835579, -0.00821026322, 0.00104101421, -0.00797456224, 0.00763784582, 0.0250965804, 0.00360286329, -0.012099335, -0.0501033701, -0.00905205403, -0.0121105593, 0.00685778633, -0.00132020807, 0.010814202, 0.0108927684, 0.00130056625, -0.0155787356, 0.00516859349, 0.014882856, -0.00420053443, -0.00476172799, -0.0180367641, 0.0270719826, -0.0152307954, -0.0116054844, -0.00749754719, 0.00416125078, -0.00568208564, 0.0125707379, 8.53189704e-05, -0.0216620751, 0.00938315783, 0.0179133, 0.0286657717, 0.0229303725, 0.0382958539, 0.010915217, -0.00251414767, 0.0178908538, 0.0173296593, -0.0104943216, 0.00653790589, -0.00277229655, 0.00505916076, 0.0175429136, -0.00691951765, -0.017183749, 0.0057017277, 0.0123238126, -0.0160164665, 0.0128625585, -0.00204555085, 0.0320104845, 0.00390590774, -0.0251863711, -0.0161736012, -0.0267801601, 0.00416125078, -0.0182163455, 0.00238507311, -0.00254501333, 0.00249731168, -0.0162297208, 0.00170322275, 0.0144563485, -0.00128793938, 0.00043667882, -0.0160725862, -0.013861483, 0.00281859515, -0.0105167693, 0.0178908538, 0.0110555151, -0.00265164, 0.025523087, -0.00118482008, -0.0162746161, 0.00456811627, -0.00798017345, -0.0087995166, 0.00501426542, 0.00120376039, 0.0185193904, -0.00409951946, -0.00987139624, 0.0140635129, 0.00553336926, 0.0190805849, 0.000566454837, 0.00256746099, -0.00762662152, -0.00191367033, -0.0195519868, -0.0179020781, 0.00113290967, 0.0184183754, -0.00499462336, 0.00513492199, 0.00183931214, 0.0103876945, 0.00895103905, -0.0255904309, 0.0179133, 0.0123238126, 0.00811486, -0.0103820823, 0.0303269047, -0.0111116339, -0.0128737828, -0.00326334103, 0.00503390701, 0.00103890977, -0.0245353859, 0.00863115862, -0.0145349158, 0.00295187859, -0.00740775606, 0.00496936962, -0.00414722087, 0.013693125, -0.00776692, -0.0141757512, 0.00408829562, -0.0127390958, 0.0185081661, -0.02399664, -0.00274564, -0.0200795084, 0.00195155095, -0.0168358088, 0.00694757747, 0.00758172618, 0.022066135, 0.00270495331, 0.00514053367, 0.0103708589, -0.013726797, 0.00235280441, 0.000660805497, 0.0034064455, -0.00145770051, 0.00676799566, 0.00346537074, 0.02176309, 0.000358111691, 0.0302595608, -0.00542393653, -0.00770518882, -6.5501823e-05, 0.0055249515, -4.48516475e-05, 0.0086030988, -0.00309498305, -0.00303605758, -0.00519945938, -0.0220324621, 0.00423981808, -0.000379156467, 0.0283964, -0.0176776, -0.0119534247, -0.0165327657, 0.0116167087, 0.0244455952, 0.0198213607, 0.0159379, -0.006880234, -0.0124360509, -0.0116279321, -0.0129972454, -0.00475892238, -0.00201749126, 0.0184183754, -0.0214937162, 0.00410513161, 0.0155450646, -0.0150624374, -0.0128064388, 0.00237946119, -0.00957957562, 0.0199560467, -0.00853014365, -0.00847963616, 0.00685778633, 0.0112519329]
|
03 Jan, 2023
|
Default Arguments and Virtual Function in C++
03 Jan, 2023
Default Arguments are the values provided during function declaration, such that values can be automatically assigned if no argument is passed to them. In case any value is passed the default value is overridden and it becomes a parameterized argument.
Virtual function is a member function that is declared within a base class and is redefined(Overridden) by a derived class. When you refer to a derived class object using a pointer or a reference to the base class, you can call a virtual function for that object and execute the derived class’s version of the function. A virtual function also falls under runtime polymorphism.
To see the combined application of default arguments with virtual functions let’s take a sample
Example:
CPP
// C++ program to demonstrate how default arguments
// and virtual function are used together
#include <iostream>
using namespace std;
// Initialization of base class
class Base {
public:
// Initialization of virtual function
virtual void fun(int x = 0)
{
cout << "Base::fun(), x = " << x << endl;
}
};
// Initialization of Derived class
class Derived : public Base {
public:
// NOTE this virtual function will take an argument
// But haven't initialized yet
virtual void fun(int x)
{
cout << "Derived::fun(), x = " << x << endl;
}
};
// Driver Code
int main()
{
Derived d1; // Constructor
// Base class pointer which will
// Edit value in memory location of
// Derived class constructor
Base* bp = &d1
bp->fun(); // Calling a derived class member function
return 0; // Returning 0 means the program
// Executed successfully
}
Output:
Derived::fun(), x = 0
If we take a closer look at the output, we observe that the ‘fun()‘ function of the derived class is called, and the default value of the base class ‘fun()‘ function is used.
Default arguments do not participate in the signature( function’s name, type, and order) of functions. So signatures of the ‘fun()‘ function in the base class and derived class are considered the same, hence the ‘fun()‘ function of the base class is overridden. Also, the default value is used at compile time. When the compiler sees an argument missing in a function call, it substitutes the default value given. Therefore, in the above program, the value of x is substituted at compile-time, and at run-time derived class’s ‘fun()‘ function is called.
Example:
CPP
// C++ program To demonstrate how default arguments
// and virtual function are used together
#include <iostream>
using namespace std;
class Base {
public:
virtual void fun(int x = 0)
{
cout << "Base::fun(), x = " << x << endl;
}
};
class Derived : public Base {
public:
virtual void fun(int x = 10) // NOTE THIS CHANGE
{
cout << "Derived::fun(), x = " << x << endl;
}
};
int main()
{
Derived d1; // Constructor
// Base class pointer which will
// Edit value in memory location of
// Derived class constructor
Base* bp = &d1
bp->fun(); // Calling a derived class member function
return 0; // Returning 0 means the program
// Executed successfully
}
Output
Derived::fun(), x = 0
The output of this program is the same as the previous program. The reason is the same, the default value is substituted at compile time. The fun() is called on ‘bp’ which is a pointer of Base type. So compiler substitutes 0 (not 10).
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions in Derived Classes in C++/Default Arguments and Virtual Function in C++
|
https://www.geeksforgeeks.org/default-arguments-and-virtual-function-in-cpp/?ref=next_article
|
Pandas
|
Default Arguments and Virtual Function in C++
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Virtual Functions in Derived Classes in C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Default Arguments and Virtual Function in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0570343547, 0.0069677243, -0.0140970182, 0.0528873838, 0.0411735289, 0.0103405062, -0.0210176185, 0.0158204362, -0.0178535301, 0.00625412166, -0.0126092248, 0.0255685188, -0.00756014884, -0.0568727851, -0.000501962262, 0.0162108988, -0.0377805494, 0.0168302506, -0.0242220983, -0.0165878963, 0.0319640152, 0.0100173652, -0.0386153273, 0.00359494169, -0.00109985692, 0.0104414877, 0.0161301121, 0.0182305276, -0.0159954708, 0.00842185784, 0.0206675492, 0.0106501831, 0.0159685425, -0.00710909814, 0.014514409, -0.00719661545, 0.00514332484, -0.0225121435, -0.00351079041, 0.0140162334, -0.0246933457, 0.0107915569, 0.00397193944, -0.0281671081, -0.0287595335, 0.0232796036, 0.00348386215, 0.0136527, -0.0272919349, -0.0276554693, 0.0496290438, -0.0229026061, 0.0141508756, 0.0399886779, 0.0359763466, -0.00203982648, 0.025581982, -0.022943, -0.0326102935, -0.0616121851, 0.0168302506, 0.000305889815, 0.0175303891, -0.0173688196, 0.0102058649, 0.00517698517, -0.0513793901, 0.0261878707, -0.037295837, -0.0527258106, -0.00728413276, 7.37901355e-05, -0.000754416047, 0.033014223, -0.0124880467, 0.00114614016, -0.00744570326, 0.0682365745, -0.0439740792, 0.0150933694, -0.0325833671, 0.0058030705, -0.0217985418, 0.00270462129, 0.033768218, -0.0211387966, 0.0146894436, -0.0305637363, 0.0184459556, -0.003413175, -0.0213138312, -0.00368919107, 0.0442702919, -0.000477979134, -0.028921105, 0.0438663661, -0.0368649811, -0.00113856653, -0.0557956509, 0.0497906171, -0.0220139697, 0.0239662789, -0.00553715276, 0.0131208636, 0.00781596918, -0.0184594207, 0.0107646286, -0.00512649445, 0.0437855832, 0.0466130637, -0.0561726466, -0.0244779177, -0.0143797668, 0.0194826983, -0.00351752248, -0.012959294, -0.00234277104, -0.053856805, 0.047824841, 0.0181228146, 0.00899408665, 0.0434893705, 0.0164667182, -0.0287326053, -0.0347645693, -0.0180285648, 0.0215157941, -0.0217716135, 0.0159685425, 0.013975841, -0.0292442441, -0.00453407, 0.0343606398, -0.0170052852, 0.00954611879, 0.0116599984, 0.00650657527, -0.0584346317, -0.0177592821, 0.0243298113, -0.0269553307, 0.0154165104, -0.00901428238, 0.0190787725, -0.00990292, -0.0362187028, -0.0120437276, 0.0128583116, -0.00842859, 0.00201626401, -0.036649555, -0.0389115401, 0.0211118683, 0.0145951938, 0.0478517711, -0.000198386595, 0.0178535301, 0.00155932282, -0.011390714, -9.66687585e-05, 0.0333642922, 0.00120757055, -0.034710709, 0.0115186237, -0.00704850908, 0.00596800726, -0.00299241859, 0.0302405953, -0.0720604062, 0.0330950059, -0.00758707756, 0.00972788502, 0.0657053, 0.066136159, -0.0354916342, -6.72684109e-05, -0.00867094565, 0.0413620248, 0.0122793512, 0.00259690778, -0.0188364182, -0.00636183517, -0.0377536193, -0.00233435584, 0.0202636234, 0.00863055326, 0.00483028218, -0.0161974337, -0.0163590051, -0.0504099689, -0.0233199969, 0.0208425839, 0.0144336233, 0.0363264158, -0.0237912443, 0.0296212435, -0.0482018404, -0.0327987932, -0.0381036885, 0.0213407595, 0.00288133905, -0.0467746332, -0.0110608414, 0.0360840596, -0.0148914065, -0.00431864243, 0.00266927783, 0.0358147733, 0.0428700149, -0.0226063933, 0.0328526497, 0.0497906171, -0.00587039161, -0.0119966036, -0.00933742337, -0.00207348703, -0.0345760696, 0.0153626539, -0.0303213801, -0.00718315132, -0.00102916989, -0.0117071234, -0.00930376258, -0.0108386818, -0.00472930074, -0.0116263377, 0.0336335748, -0.0403387472, -0.0293788873, 0.0140431616, 0.0330950059, 0.0368380547, -0.0341452137, -0.0148914065, 0.0309138056, 0.00536885, -0.0132958982, -0.019361522, -0.0042849821, 0.0525103845, 0.00831414387, 0.0173822846, -0.035168495, -0.0162647553, 0.0250299498, 0.0189575944, -0.000458624359, -0.00728413276, -0.015591545, -0.0123264762, 0.0198058393, 0.032556437, -0.00334922015, -0.00365553051, -0.0153491898, -0.00130434451, -0.0101722041, 0.0164128616, -0.0091825854, 0.0104145594, 0.0132420417, 0.0648974478, -0.00593098067, 0.0516756028, -0.000371738191, -0.0336874314, 0.027413113, -0.00251612253, 0.00204992457, -0.00997024123, 0.00170322147, -0.0192134157, -0.01483755, 0.00636520097, -0.0065200394, -0.0151202977, -0.00929029845, 0.0182439927, 0.0563880727, -0.0207214057, 0.00385749363, -0.0140162334, 0.0101318117, 0.014083554, 0.0274939, 0.00561120594, -0.0181901362, 0.00205329061, -0.0250434149, -0.0164263248, -0.0191595592, 0.0141643398, -0.000979520613, -0.0425468758, 0.0248683803, 0.012036996, -0.0177054238, -0.0140970182, 0.00349732628, -0.0175707825, 0.0245990958, -0.0473132022, 0.0286518205, -0.0199404825, -0.000266969873, 0.000427278021, 0.0225929301, 0.002674327, 0.0248010587, -0.0160627924, -0.0106367189, -0.0115657486, -0.0292981025, 0.0247472022, -0.00528806495, -0.00753322057, 0.000489760307, -0.0164532531, -0.0172611065, -0.0031253777, -0.0207617991, 0.0104212919, 0.00240840903, 0.0136661641, 0.0447819345, -0.0249222368, -0.00805159193, -0.0126765454, -0.024289418, -0.0664593, -0.0433816575, -0.0233065318, -0.0320447981, 0.0231853537, -0.0239393488, -0.0378882624, 0.0106434515, -0.0111012338, -0.0422237366, -0.0274400413, -0.0104616843, 0.0107713612, 0.0198462326, 0.0121851023, 0.0167898592, -0.0469092764, -0.0116330702, 0.00268947426, -0.00187489006, 0.0343337134, 0.00119663088, -0.00824009068, 0.00732452562, -0.0255281255, 0.00624402333, -0.011020449, 0.0148106217, 0.00418063439, 0.00334080495, -0.0311023053, 0.0467207767, 0.0231449623, -0.0204117298, 0.0146625154, -0.0463437811, -0.0299174543, 0.00664121704, -0.0263090488, -7.35797585e-05, 0.00133884652, -0.021812005, -0.0319909416, 0.0150125846, 0.00397530524, -0.0367303416, 0.0194153786, -0.0151472259, 0.00866421312, -0.0343337134, 0.016237827, -0.0172880348, 0.00495819189, 0.00600166759, -0.00257671159, 0.0264302269, -0.00270967046, -0.0530220233, -0.0186479185, 0.00531499321, -0.0140162334, 0.00359157566, 0.0489558354, 0.0117003908, 0.0285441056, -0.00421092892, -0.0152010834, 0.00193547888, -0.0181901362, -0.0195904132, -0.0396655351, 0.0209772252, 0.0585423484, -0.00975481328, -0.00384066347, -0.0351415649, 0.0359494165, -0.0231853537, -0.00825355574, 0.00773518346, 0.0146355871, 0.0220678262, -0.0390731134, -0.0135382544, -0.0033946617, -0.0323948674, 0.0103068464, 0.0174630694, 0.0582192056, -0.052671954, 0.00513659278, 0.0398001783, 0.00326170283, 0.0084420545, 0.030105954, 0.0606427602, 0.0244509894, 0.0152818682, -0.00237306557, 0.0359763466, 0.00638876343, -0.0411196686, 0.0194826983, 0.0202097651, 0.00670517236, -0.0285441056, -0.0337412879, -0.00317250239, 0.038803827, -0.0113301249, -0.00230237842, 0.0173688196, 0.0142047321, 0.000302103028, -0.0283017512, -0.0431931578, 0.00363533432, -0.0145817297, -0.00766113028, -0.0112762684, 0.0277901106, -0.0421160199, -0.014729836, -0.019024916, 0.0187825598, 0.029998241, -0.00362860225, 0.0302944519, -0.037511263, 0.00538568059, -0.0127169378, -0.0133093633, 0.00392144872, 0.0118821571, 0.0249222368, 0.047824841, 0.0333642922, 4.28908425e-05, -0.0197250545, -0.0122658871, -0.0253934842, 0.0168167874, -0.0147433, 0.0193884503, 0.0226467866, 0.0505984686, -0.0156319384, -0.058596205, 0.00285272766, -0.0140431616, -0.00872480217, 0.034602996, 0.0117071234, 0.0294327438, -0.0491712615, -0.00894022919, 0.00840839371, 0.0343875699, 0.035168495, -0.00258680969, 0.011235876, 0.0187556315, 0.0101924, 0.029998241, -0.0453474298, -0.0150933694, -0.0088998368, 0.000803644478, 0.0103405062, 0.00482691592, 0.0293788873, 0.0334181488, -0.0298097413, -0.0279786102, 0.0204117298, -0.00639886176, -0.0525103845, -0.0258243382, -0.0229026061, 0.0053284578, -0.0312908031, 0.00103421893, 0.00562803587, -0.00113267591, 0.0156050092, 0.0222159326, -0.0106434515, -0.0373766236, -0.0369996242, 0.00388105609, -0.00568862492, 0.0100712227, -0.0243163481, -0.00828048401, 0.0275073629, 0.00826028734, 0.0383729748, 0.044297222, -0.00819296669, -0.0181901362, -0.0202501584, -0.0105693983, 0.024518311, -0.00874499884, 0.0117609799, -0.0035747455, -0.0114311064, 0.0127842594, 0.0218523983, -0.0150799053, 0.0182305276, -0.0156319384, 0.00496155815, -0.0166821461, -0.0127169378, -0.000695089402, 0.00836126879, -0.00408975128, 0.00777557632, 0.00976827834, 0.0127236703, 0.0095057264, -0.0128650442, -0.00738511421, 0.0017840066, -0.0330950059, 0.00383056514, -0.026228264, 0.0226333216, 0.00278035761, -0.0263763703, -0.00586702581, -0.00984233059, 0.0451589301, 0.0288133901, -0.00710236607, -0.0138142705, 0.0225660019, 0.00191023352, -0.0117071234, 0.0230507124, 0.00557754515, -0.0396116786, 0.0301328823, -0.000549086952, 0.00955285, 0.0374304801, 0.0123197436, 5.38305067e-05, 0.00277194241, 0.0212465096, -0.0173822846, -0.0281940363, 0.0253126975, -0.00265413057, 0.0056583304, -0.0230641775, -0.0377805494, 0.0104212919, -0.0231988188, -0.000102506747, 0.0167629309, 0.0385614708, 0.00383729744, 0.00175371219, 0.0234950315, 0.00575931184, -0.0152280116, -0.00318260049, -0.0136392359, -0.0152818682, 0.00231079361, 0.0145682655, 0.0183651708, -0.00523420842, 0.0179747082, -0.0120100677, 0.0187287033, -0.039342396, 0.0104347561, 0.00404935842, -0.0226467866, 0.0225121435, -0.0056381342, 0.0163859334, 0.00346703175, -0.00192201475, 0.00921624526, 0.00595117686, -0.00700811669, 0.016655216, 0.00852283929, -0.0291634593, 0.00518371724, 0.00517025311, 0.0100039011, 0.0174765326, -0.00939801242, -0.0170187503, 0.00577277644, -0.0116465343, -0.0330680795, -0.0302136671, 0.0192538071, 0.000775874592, 0.0201693736, 0.000883588218, -0.00698118843, 0.0403656736, -0.0160897207, 0.0138815911, -0.01945577, -0.00335595221, -0.00800446793, 0.0795465, -0.0298366696, -0.00995004456, 0.0135719152, 0.037295837, -0.0158608295, 0.0156588666, -0.0168437157, -0.01483755, 0.0169110373, 0.0192268789, -0.000216268731, -0.0443780087, 0.0230372474, -0.00479325559, -0.00766786234, 0.000145476486, 0.0127775269, -0.0453474298, -0.004140242, 0.0166013595, -0.00630797818, -0.0172476415, 0.00694752764, -0.0133632198, 0.00456099818, 0.00205329061, 0.000177033202, 0.000937445031, 0.00591078447, -0.021394616, 0.00151135656, 0.00609591696, -0.0303483102, 0.0402310342, -0.0141374115, -0.0149183348, -0.00298400363, 0.0134036122, 0.0060689887, -0.00863728486, -0.019671198, -0.00838819705, 0.0311830901, -0.00448694499, -0.0366764851, 0.0135045936, -0.014298982, 0.00128330663, 0.0144605525, 0.00594781106, 0.0172880348, -0.0187556315, -0.00301934709, 0.000775033084, -0.0192134157, -0.0138142705, 0.0199135542, -0.0441356525, -0.020102052, 0.0136459675, 0.00712256227, -0.0275612194, -0.000125280189, -0.0341990702, -0.0146086579, 0.00671863649, 0.00303449435, 0.0230507124, 0.0195230916, 0.0186209902, -0.00279550487, 0.032367941, -0.0100779543, -0.0126428846, 0.000540671812, -0.0243432764, -0.0034316883, -0.0118283005, -0.00199775095, -0.024841452, 0.033121936, 0.00277025928, -0.00552368863, -0.0126159564, -0.0225660019, 0.00554388482, -0.0146894436, 0.0151202977, 0.00866421312, -0.0110608414, -0.0271438304, -0.0196981262, 0.0265244767, -0.0180958863, -0.00351415644, -0.0416043811, 0.00208358513, 0.0188768096, 0.0484172665, 0.0161166489, -0.0480402708, 0.00154501712, 0.022458287, 0.000340181461, -0.00276689325, 0.0318563, 0.00978847407, 0.022458287, 0.053210523, -0.0237104576, -0.00817277, -0.0288403183, 0.012636153, 0.0154030463, 0.0419813804, 0.00574584771, 0.0124072609, 0.037511263, 0.0194423068, 0.0398271084, -0.00674893102, -0.00458456064, -0.0283017512, -0.0226198584, 0.00349396025, -0.0217716135, 0.043543227, 0.0170726068, 0.0302675236, -0.0312638767, -0.0199135542, -0.010529005, 0.0131679885, 0.0200347304, 0.0162782185, 0.00112510228, -0.058057636, 0.0115320887, -0.0203982648, 0.0091018, -0.00433883863, -0.0170052852, -0.0117205875, 0.0208291188, -0.00166871946, -0.00490433536, 0.00900081825, 0.0405272469, 0.0225660019, 0.0439471528, 0.0210176185, -0.0116263377, -0.0203713365, 0.020856047, -0.0269687958, -0.055903364, 0.0042883479, -0.012360137, -0.0124880467, -0.0127236703, 0.0242220983, -0.024181705, -0.0412543118, -0.000374052324, -0.0159281492, 0.021394616, -0.00854976755, -0.013868127, -0.00438596355, 0.0268476177, -0.0257839449, 0.00573575, -0.0151337618, 0.00896715838, 0.00346029969, 0.0128785083, 0.00199775095, 0.00196913932, 0.0198462326, -0.00922971, 0.00721007958, 0.0146759795, 0.00701484876, 0.0167763941, 0.00703504495, 0.00729759689, 0.0181228146, -0.00351415644, -0.0150260488, -0.00519381557, 0.00474949693, -0.00634837104, 0.0371073373, -0.0078765573, 0.0148914065, 0.0206810124, -0.0444587916, -0.0165071115, -0.00834780466, 0.00110995513, 0.0278170388, -0.00982213486, -0.0316408724, 0.0395847522, -0.00696099177, 0.000241093352, 0.0158608295, 0.0105626658, -0.00818623416, 0.0247337371, 0.00968749262, 0.0166686811, -0.00972788502, -0.0122860838, -0.00722354371, 0.0182036, 0.0347645693, 0.0540991612, -0.000938286539, -0.0049177995, 0.00600166759, 0.00138344662, 0.0147029078, -0.0142855179, -0.0178669952, -0.0420621634, -0.0128381159, -0.0127505986, 0.00434893696, 0.0120167993, 0.000642074097, -0.0287595335, 0.00530489534, -0.0292981025, 0.0439471528, 0.00227713306, 0.0165071115, 0.0185132772, 0.00431864243, -0.0341990702, 0.00130686897, -0.00794387888, -0.00758034503, -0.0229699276, -0.0047528632, -0.024289418, 0.0239393488, 0.0175573174, -0.0212869029, -0.0261205509, 0.0309676621, -0.0499252565, 0.0107107721, -0.00875846297, -0.00265076454, 0.00638539763, -0.00744570326, 0.00801119953, -0.0397463217, 0.000225946133, 0.000327979535, 0.00937108416, -0.00792368222, 0.02182547, -0.0198193043, 0.00523084216, 0.000356380566, -1.64883877e-05, -0.0228622127, -0.0264975484, 0.00437249942, 0.0622584671, 0.00118653278, 0.00483028218, -0.00508610206, 0.0164801814, 0.0139489127, 0.0126226889, -0.00955958292, 0.00201289798, 0.0199404825, -0.0275612194, -0.0255011972, 0.00813910924, -0.00781596918, 0.00981540233, 0.00253631896, -0.0200616606, 0.0093508875, 0.00325665367, -0.0101116151, -0.0140566258, -0.00403252803, -0.000610938121, -0.0437317267, 0.0118619613, 0.00395510904, 0.0195500199, -0.00243028835, -0.0184055623, -0.0134642012, -0.0172476415, 0.00778230838, 0.0252992343, 0.0228083562, 0.0112224119, 0.00866421312, 0.0287595335, 0.00757361297, -0.0370534807, -0.00303786038, -0.0348722823, -0.00522747589, 0.00717641925, 0.0312100183, -0.00263898354, 0.0206136927, -0.0108656101, 0.0138546629, -0.0121918339, -0.00644262042, -0.00092145626, 0.0337412879, -0.0333912186, -0.051271677, -0.0201289803, 0.0145009449, -0.0168437157, 0.0155107593, 0.0113166608, -0.0295943134, -0.00869787391, -0.0243028831, -0.0100173652, -0.0322063677, -0.021179188, 0.0272111502, 0.0157127231, 0.0191864874, 0.0115859453, -0.0160762556, 0.00180925208, 0.010481881, -0.00908160396, -0.0137334848, 0.0333373621, -0.00620699674, 0.0144740166, 0.0187960248, -0.00420756266, 0.00984233059, 0.0391808264, 0.0315600857, -0.0121177807, -0.0165878963, -0.00961343944, -0.0131814526, -0.0105626658, -0.00450377539, -0.0105828624, 0.0202905517, 0.0126428846, 0.0190383811, 0.0151606901, -0.0189845245, -0.0017739085, -0.00553378649, -0.0334720053, 0.00774864759, 0.0264032986, 0.0141778039, 0.0254877321, -0.0202636234, 0.0131275961, 0.0120908525, -0.0105222734, -0.0171803199, 0.0105693983, -0.0114984279, -0.0129929539, 0.0207887273, 0.00579633843, -0.0175438542, -0.00249256031, -0.00185637677, 0.00700138463, 0.00967402849, 0.00134978618, 0.0118686929, 0.02182547, -0.022943, -0.022148611, 0.00801793206, -0.045509, 0.00420083059, 0.0397463217, -0.0160223991, -0.00847571436, 0.00213070982, -0.0167494658, 0.000973630056, -0.00485384464, 0.0100712227, -0.00912872795, 0.0250434149, -0.0213272944, 0.0191057, -0.00887964107, 0.00407292088, 0.0241413135, -0.0149991205, -0.0180958863, -0.00335258618, 0.00360167376, 0.0221082177, -0.0186344553, -0.00953265466, -0.0215965789, -0.000378470286, -0.0112291435, 0.0213272944, 0.0412812419, -0.00717641925, 0.0152145475, -0.0088998368, -0.00937108416, 0.0168571807, -0.0152549399, -0.0258512665, -0.0105155408, -0.00603869418, -0.00451050745, -9.2198221e-05, 0.011713855, -4.77295398e-05, -0.020425193, -0.00691386731, -0.016655216, 0.0343606398, 0.0175977107, -0.0192134157, 0.00879212376, 0.00615987182, -0.0246529523, -0.00810544938, -0.0355993472, 0.0023781145, 0.00982213486, 0.0144740166, 0.0254338756, 0.00622382713, -0.0203848, 0.0196846612, 0.0828317627, 0.00676912721, -0.0090546757, 0.00766786234, 0.014191268, -0.0264840834, 0.0186075252, -0.0146759795, 0.0145009449, 0.0132151134, 0.0170726068, -0.00534192193, 0.00766113028, 0.00976827834, -0.00835453719, 0.0262417272, 0.0224448238, 0.00272481772, 0.00641569169, -0.030752236, -0.0174092129, 0.00402579596, 0.011175287, -0.0275208279, 0.0158742927, -0.00170069688, 0.00485047838, -0.0217312202, -0.00371611957, 0.0031354758, 0.0346568525, -0.0378882624, 0.0250299498, -0.0191595592, 0.0113166608, 0.00215763832, 0.0106367189, 0.00871807057, 0.00688357279, 0.0120437276, -0.0130737396, -0.00440615974, -0.0146759795, 0.0229160711, 0.0157800429, 0.00403926056, -0.00977501, -0.0170726068, -0.0195904132, -0.00523420842, -0.00300251693, -0.0355454907, 0.00739184627, 0.0230641775, -0.0130400788, 0.0451589301, -0.0138142705, -0.0270091873, 0.0216100421, -0.00661765505, -0.0119831394, -0.0167494658, 0.0100846868, -0.042896945, 0.0220543612, 0.00148695277, -0.0100981509, -0.0178266019, 0.0114580356, 0.00175707822, 0.0244779177, 0.0228083562, -0.0119158179, 0.0129727582, -0.00714949099, 0.0187421683, 0.0324487239, 0.0225121435, 0.0239258856, -0.0331488624, 0.0118956221, 0.015591545, 0.0463976376, 0.0149317989, -0.0263629053, -0.0171399284, 0.0071360264, 0.00879212376, 0.00801793206, -0.00615650602, -0.00138428819, -0.00805159193, -0.0165475029, 0.0164532531, 0.00495819189, -0.00958651118, 0.0345760696, 0.0213272944, -0.00609928323, -0.0132757025, -0.00702831289, 0.0100577585, -0.0286787488, 0.00566506246, 0.012420726, -0.025595447, 0.029782813, -0.00675566308, 0.026551405, -0.013760414, 0.0206136927, -0.00185805978, -0.0215157941, -0.00429844623, 0.000211324848, -0.00361513812, 0.016884109, 0.0320178717, -0.0025481, -0.00677922508, -0.0253934842, 0.00628778199, 0.0162782185, -0.015052977, 0.000740531075, 0.0244375244, -0.0111954836, 0.0113839824, 0.00986252725, -0.0181901362, -0.0252453778, 0.0140431616, -0.0107107721, -0.00675229682, -0.00816603843, 8.82536333e-05, 0.00878539123, 0.0215157941, -0.0230372474, -0.0124543859, -0.0247068089, 0.00776884425, -0.00228386512, 0.0216504354, -0.0120504601, 0.00661765505, -0.00189340324, -0.0232526753, 0.0128717767, -0.00303954352, -0.0273188651, -0.0395847522, -0.00306142285, 0.0140162334, -0.00511976238, -0.015901221, 0.0217716135, -0.0098019382, 0.0050423434, -0.0301598106, 0.00474949693, 0.0229026061, 0.0272111502, 0.0110002523, 0.00915565714, 0.005025513, 0.00141205813, -0.0225929301, -0.0325295106, -0.0167494658, 0.0369726978, -0.0094787972, -0.000836042746, -0.0327718668, 0.0296212435, -0.00927683432, 0.0103674345, -0.0235892814, -0.00576267811, -0.00427488377, -0.00333407288, 0.017314963, 0.0244509894, 0.000746421632, -0.00906814, 0.0215157941, -0.0243298113, 0.029782813, 0.0169648938, -0.0269149374, 0.00660419045, 0.0162782185, 0.0093508875, -0.0103607029, 0.0215292573, -0.00479998766, -0.00165862124, -0.0238854922, -0.0160089359, 0.00229228032, -0.0464514941, 0.00834107306, -0.023225747, 0.0273861848, -0.0189575944, -0.0167629309, -0.0193211287, -0.0168167874, 0.0151606901, -0.0223505739, 0.0172611065, 0.00633154064, -0.0196846612, -0.00293519581, -0.0192538071, -0.0146894436, 0.0059242486, 0.00586702581, 0.00389452023, 0.0184190273, 0.0158339012, 0.0248818435, 0.00480335392, -0.0152549399, 0.00462495303, 0.0100375619, 0.0103943637, 0.00261205505, 0.0199808739, -0.0195096266, -0.0239932071, -0.00413014367, 0.025595447, 0.00508946786, 0.0283556078, 0.0148914065, 0.0348722823, -0.0159820076, -0.0336874314, 0.000279382162, -0.00803812779, -0.0257031601, -0.00599830179, -0.00523757422, -0.0166013595, -5.31204823e-05, 0.00816603843, 2.9689616e-05, 0.00331387646, 0.0149991205, -0.0161570422, -0.014622122, -0.00160476449, 0.00449367706, -0.0134574687, 0.0137334848, 0.0226467866, -0.000504486787, 0.0175303891, -0.027628541, 0.0330680795, -0.0260666925, -0.0099298479, 0.00854976755, -0.000988777261, 0.0138008064, -0.0139354486, 0.00560783967, 0.00657053, 0.00899408665, 0.0298905261, 0.0208425839, 0.00530152908, 0.0243028831, 0.0119427461, -0.0221082177, 0.0176650323, -0.00168723275, 0.0120908525, -0.00708217, -0.0308868773, 0.0328257233, 0.00268947426, 0.0150933694, -0.0181362797, 0.00435566902, 0.019361522, 0.000862550398, 0.0254338756, 0.0173418913, -0.000484711229, 0.0264302269, -0.0142316604, -0.000753574481, -0.021179188, 0.021179188, -0.00875173, -0.00599830179, 0.00257839449, -0.00968076102, 0.0170860719, -0.029351959, -0.00635173684, 0.0217042919, 0.00174866314, 0.00486057671, -0.0154569028, -0.00937781576, 0.0118350331, -0.00346703175, -0.000307993614, -0.0147433, 0.0097952066, 0.00106535491, 0.00721681165, 0.00545636751, 0.0301867388, 0.00244375248, 0.00422102725, -0.0135113262, 0.00450714119, -0.0227814279, -0.00577614224, -0.00679268967, -0.00568525912, 0.000559605833, -0.0236162096, 0.000872648554, -0.00340139377, 0.000281065208, -0.00729759689, 0.0108588785, -0.0121716382, 0.0192403439, 0.00858342834, -0.00875173, -0.0180285648, 0.00197923766, 5.85903144e-05, -0.0156454016, -0.0101250792, 0.0117205875, -0.0140970182, -0.00457109651, 0.015806973, -0.00179578783, 0.00495482609, -0.00251948857, -0.0047528632, 0.00659072632, -0.0308330208, 0.00859016, -0.00412677787, 0.0173688196, -0.00286955782, -0.0151741551, -0.0374843366, 0.015806973, -0.00176044425, 0.017732352, -0.0074389712, -0.0399078913, 0.0116263377, -0.0120100677, 0.0138008064, -0.0338220745, -0.00285777659, 0.0126630813, 0.00594107853, 0.00388105609, -0.00630797818, -0.00600503385, 0.0153087964, 0.0115724811, -0.00352088851, -0.0243567396, -0.00532172574, 0.00229901238, -0.0107040396, -0.0272246152, -0.0247202739, -0.000260448141, 0.00608245283, -0.0106299864, -0.0099635087, -0.00113351748, -0.00643252209, 0.0282478947, -0.0215696506, -0.0146355871, 0.0290826745, 0.0197250545, 0.0302675236, 0.0131208636, -0.000950067712, -0.014406695, -0.0143797668, 0.0186748467, -0.0158204362, 0.0333373621, 0.00600839965, 0.0311292335, -0.00908160396, 0.0188229531, 0.0148914065, 0.00131107657, -0.0103876311, -0.00411331328, 0.0128044551, -0.0117340516, 0.00700138463, 0.0175707825, -0.00189508626, 0.00545300124, -0.0104347561, 0.00673546642, -0.0155511526, -0.00209200033, -0.00783616491, 0.0130535429, -0.000116233925, 0.0013556768, -0.00318596652, -0.00238148053, -0.0353300646, -0.00975481328, 0.000907992071, -0.00282075023, -0.0313715898, 0.0171668567, 0.0125688314, 0.0240605269, 0.0159954708, 0.0155511526, 0.00777557632, 0.00883251615, 0.00588385575, 0.0308330208, 0.0150125846, 0.00368245901, -0.0124476543, -0.00417053653, -0.00496155815, -0.00548666203, 0.00699465256, -0.0140162334, -0.00488413917, 0.0216504354, 0.00701484876, 0.00801119953, 0.0237912443, -0.0183651708, 0.00365553051, 0.00142047321, -0.0179073866, -0.0301598106, -0.000881063635, 0.0242624898, 0.00613967562, -0.00834107306, 0.00304122642, -0.0181497429, -0.0247606654, -0.00792368222, 0.0180689581, 0.0239124205, 0.0112291435, -0.013544986, -0.00969422515, 0.0195634849, -0.00966056436, -0.033014223, -0.00464178342, 0.00741204293, 0.0111416262, 0.0136930924, -0.00364543241, -0.00904794317, 0.00454416778, -0.00235455227, 0.010697308, 0.0267668311, 0.00135988428, 0.0334720053, -0.00583336502, 0.0351415649, -0.00223000837, 0.00957978, 0.00611274736, 0.0110406447, -0.0384268314, -0.00165273075, -0.0267129745, -0.00995004456, 0.044189509, 0.0111416262, 0.000249087723, -0.0180151016, 0.0265244767, -0.0125351716, 0.000616407953, -0.00557754515, 0.00456099818, 0.00279550487, 0.0239258856, -0.00287629, -0.0116936583, -0.0156454016, 0.00253463583, 0.0184728839, 0.00307993591, -0.0387499705, 0.00824682321, 0.0202501584, 0.0161839705, 0.0170456786, -0.00351752248, -0.0104953451, -0.00708217, 0.0204117298, 0.031829372, -0.00048176595, -0.0110002523, -0.00568862492, 0.0222428609, 0.0206944775, 0.0291365311, 0.00989618804, 0.000435062, 0.00537894852, -0.00774191553, 0.00631134445, -0.00244543562, 0.0167360026, 0.0028005538, -0.0109598599, -0.00319269882, 0.0170456786, 0.00355454907, -0.00079354638, -0.0106299864, 0.0250972714, -0.027413113, 0.0182978492, -0.0115657486, 0.0150395129, -0.000332187075, 0.0315331593, -0.0138142705, -0.0225929301, -0.00627768366, -0.00464178342, 0.00108639279, -0.00661765505, 0.00766786234, 0.0125149749, -0.0302675236, 0.00869787391, -0.0161839705, 0.00525440462, 0.00737838214, -0.0166417528, 0.00186142582, 0.00768132694, 0.00626085373, 0.00941820908, 0.00753322057, 0.00139859389, 0.00508946786, -0.00351415644, -0.00271471962, 0.0131343286, 0.0252049845, 0.0194288418, 0.00260363985, 0.0100375619, 0.00228218199, -0.00359830773, 0.00342832226, -0.00552368863, 0.000296843558, 0.00856996421, 0.00538904639, -0.00180588593, 0.016560968, -0.00431527663, 0.0119562102, 0.0102597214, -0.00523420842, -0.00906814, -0.0174496043, -0.00526113668, -0.00305805658, -0.00515678898, -0.0311830901, -0.00291331648, 0.00229396322, -0.00243365439, -0.00370265543, -0.0148914065, -0.00705524161, -0.00130097847, 0.0213542227, 0.0121043166, -0.00782270078, -0.0288133901, -0.00514332484, -0.000351121125, -0.0376728363, 0.0190922376, 0.0110877696, -0.0285441056, -0.00549002783, 0.00997697283, -0.00017261527, 0.013544986, -0.0329603627, -0.000768300961, 0.0114311064, -0.00635846891, -0.000990460278, -0.0040190639, 0.00471920241, 0.00142720528, -0.00718988338, -0.00183113141, 0.0309407339, -0.00854976755, -0.0141508756, 0.0106636472, 0.0265648682, 0.00945186894, -0.00494472776, 0.00560447387, -0.0212869029, 0.00283253123, -0.0214215443, -0.0198327675, 0.0100577585, 0.00203309441, 0.0158877578, -0.00219466467, -0.014191268, -0.0210984033, 0.0117071234, -0.00719661545, 0.0131949168, -0.00550349243, 0.0244644526, 0.0205194429, -0.0131545244, -0.00362187019, 0.0056213038, -0.0247202739, -0.0195769481, -0.0243971329, 0.0157531146, 0.0166686811, 0.00196745642, -0.00349396025, -0.00236633327, -0.0047360328, 0.00957978, 0.00484038051, 0.0162782185, -0.0264975484, 0.0350069217, 0.00272313459, -0.00480671972, -0.00364543241, 0.0222024675, -0.0170322154, 0.00481345179, 0.0145682655, -0.023118034, 0.0176111758, 0.0349799953, -0.0124274576, 0.014083554, -0.00500531681, -0.00826702, 0.00420419686, -0.00689030485, -0.00393827865, -0.011989871, -0.0167225376, 0.00827375147, 0.0208425839, 0.0117677115, -0.00409648335, 0.00378007442, -0.00850264262, 0.0127371345, -0.00285272766, -0.0186748467, -0.0233469252, -0.0127236703, 0.00639886176, -0.010266453, -0.0104482202, 0.000833938946, 0.0148510141, -0.0125419032, -0.00164768158, -0.00834107306, -0.00669844029, 0.00926337, 0.0161839705, -0.0115186237, 0.00796407461, 0.017624639, 0.00418400066, 0.00242019026, -0.0162512902, -0.0231718905, -0.0060891849, 0.00435903529, 0.00539241266, 0.000421387434, -0.0230641775, 0.00738511421, 0.00232089171, -0.0016249608, -0.0205059778, 0.0111550903, -0.0192268789, 0.00733798975, -0.0141104832, -0.0220543612, -0.00337446551, -0.00103169447, 0.013497862, 0.0282209665, -0.0191057, -1.02822314e-05, 0.00126311032, 0.000964373408, 0.00853630342, -0.00169059879, -0.000764514145, 0.0130333463, -0.0151741551, 0.0184728839, -0.0177592821, 0.00365553051, -0.00259522488, 0.00735145388, -0.0115792127, -0.0099298479, 0.0331488624, -0.00883924775, 0.00722354371, 0.00299410173, 0.00160897209, 0.00465188129, -0.0184728839, 0.00449704332, 0.00478315726, 0.0153491898, -0.0104280235, 0.00306815491, -0.0115724811, -0.0220543612, -0.00423112512, 0.00368245901, 0.00498175435, 0.00499185268, 0.00435566902, -0.00589058781, -0.0099567771, 0.00564150047, 0.00549002783, -0.0126630813, 0.0011124796, -0.0294327438, 0.0119629428, -0.0191999506, 0.0124005293, -0.0163186118, -0.00515678898, 0.0217716135, -0.00976154581, -0.00618680054, 0.00997697283, -0.0182036, 0.014729836, -0.00612957776, -0.00867094565, -0.00203141128, -0.000482607458, -0.0117340516, 0.0449165739, 0.0250434149, 0.00668161, -0.0110743055, -0.00492453156, -0.00661092298, 0.00182944839, -0.000494388631, -0.0207348689, -0.0216773637, -0.00292173168, -0.000279802916, -0.0226063933, -0.00576941, -0.0099298479, 0.00323982351, 0.0291365311, 0.00313210976, 0.00476969313, 0.00510966452, 0.000502383, -0.00135988428, 0.00198933575, 0.0031354758, -0.00416717026, 0.0134776654, 0.0175707825, 0.0122254947, 0.00132958987, 0.00529479701, -0.00752648851, -0.000168618077, -0.0100173652, 0.00482691592, -0.00685664453, 0.0263763703, 0.00136072584, -0.0116869267, -0.00350405835, 0.0160493273, -0.0290557463, -0.00421766099, 0.00345356762, -0.00657389639, 0.00995004456, -0.0025211717, -0.0112695368, -0.00587039161, -0.00513995858, -0.000907992071, 0.0333912186, 0.0122456914, -0.0162782185, -0.00057727762, 0.00752648851, 0.0109598599, 0.00696099177, 0.00560447387, -0.0170322154, 0.010589594, 0.00262215314, 0.007418775, -0.00450040912, 0.023441175, -0.00256156432, 0.00999716949, -0.00476296106, -0.0115051595, -0.0015004169, -0.0155646168, -0.00537558226, -0.00178064057, -0.0228622127, 0.0109396633, 0.0023865297, -0.00324823847, 0.0126563488, -0.0278978255, -0.00195062615, 0.0184728839, -0.0249895565, -0.0292981025, -0.00170995353, 0.0101250792, 0.0341721438, -0.0236162096, 0.00150967354, -0.00834780466, -0.00457446231, 0.00899408665, -6.12200383e-05, -0.00260532298, -0.0111618228, 0.0174899977, 0.000366689113, 0.008603625, 0.0248953085, -0.0148914065, -0.0251645911, 0.0195230916, 0.0230911057, 0.0143124461, 0.00914892461, 0.0138546629, -0.0113435891, -0.00681288587, 0.00437249942, -0.0019270638, -0.00805159193, -0.00250097527, -0.000835621962, 0.000525103824, 0.00361850415, -0.00150883209, -0.00762073789, 0.0104953451, 0.0137873422, -0.00644262042, 0.0185671337, -0.00846898276, 0.0206944775, -0.000159256248, 0.0134507371, 0.00908160396, -0.0066849757, -0.0151068335, -0.0222428609, -0.00511639658, -5.52242636e-05, 0.00469227415, 0.0321525112, 0.00509283412, -0.0094787972, 0.012252423, -0.00100729056, 0.0160223991, 0.00821989495, 0.0147971567, -0.00990965217, 0.0129996864, 0.00626085373, 0.0181901362, -0.000286114286, -0.0192268789, 0.00999716949, -0.0152414758, -0.00777557632, 0.0150395129, -0.00560110761, -0.00570882112, -0.0101048825, -0.0105088092, 0.0230507124, 0.00306142285, -0.0261070859, 0.00780923665, -0.027736254, -0.00241345796, -0.00119578931, 0.00211219653, -0.0176650323, 0.0181766711, 0.0207079407, -0.0364879854, 0.0264032986, -0.0081593059, -0.0216908287, 0.00683644833, 0.00968749262, -0.00143982796, 0.0343067832, -0.0147702284, 0.00834107306, 0.0248953085, 0.0362187028, -0.003547817, -0.0126092248, 0.0103001138, -0.022471752, -0.00560447387, 0.0155780809, -0.00988945551, 0.0225794651, -0.0062507554, -0.00779577252, 0.00420756266, 0.0037093875, 0.015376118, -0.0164263248, -0.000957641285, -0.00720334752, -0.017301498, -0.0213811509, 0.00718988338, -0.0156319384, -0.0068061538, -0.00986926, -0.000790601072, 0.00269115716, 0.0154030463, 0.00294697704, 0.0230911057, -0.0097952066, -0.00681961793, 0.0319909416, 0.0100240977, 0.00213239295, -0.00440279394, 0.00839493, 0.0115253562, 0.00972115342, 0.0180151016, -0.00735145388, 0.0224313587, 0.0104145594, -0.000901259948, 0.00378007442, 0.0204925146, -0.000990460278, 0.016237827, 0.00970768929, -0.00436576735, 0.0249357, 0.00529479701, 0.0107040396, -0.00218961574, 0.0260666925, 0.0113637857, 0.0151741551, -0.00403252803, 0.00707543781, 0.024827987, -0.00596800726, 0.0106771113, 0.00275511225, 0.0165744312, 0.0020886343, 0.00863055326, 0.0124274576, -0.00131023512, 0.00538568059, 0.0172476415, -0.00373968179, 0.00870460644, 0.00671190443, 0.0160897207, -0.0148644783, 0.009189317, 0.00265244767, -0.000968580949, -0.028059395, -0.0120235318, -0.0111550903, 0.00566842873, 0.00200616592, 0.00063912879, -0.0163724683, 0.029998241, -0.0194423068, 0.0149587272, -0.000211009276, 0.00448357919, -0.0277093258, 0.00900081825, 0.0212869029, -0.0115724811, 0.037295837, 0.0128111877, -0.0207079407, -0.0057997047, 0.0116330702, -0.00903447904, -8.60578075e-06, 0.0047393986, -0.0259859078, 0.00619689841, -0.0100442944, -0.0153626539, 0.00221317797, 0.00756014884, 0.00136325031, -0.018594062, -0.019348057, -0.00807178859, 0.00589395408, 0.00171752716, -0.00867767725, 0.00379353878, 0.0106905755, -0.0054765637, 0.00830068, -0.00132454082, -0.00457782857, -0.00218624971, -0.00267601, 0.00908160396, 0.00927683432, 0.00593098067, -0.0231853537, -0.0184459556, -0.0102327932, 0.0101520075, -0.0168167874, -0.0049177995, 0.000495650922, -0.00557081308, -0.00207853597, 0.00881231949, 0.0154569028, -0.00791695062, 0.00218793261, 0.0026558137, -0.00152734527, 0.0141374115, -0.00525103835, 0.000724542304, 0.020856047, -0.0189575944, 0.00129003881, 0.00725047244, 0.0099231163, -0.00780250458, 0.020425193, -0.0136594325, 0.0342529267, 0.00333912182, -0.0259993728, -0.0244509894, -0.00308835111, -0.00367572694, -0.00544963544, 0.00700138463, -0.00288807112, 0.0200078022, -0.00225188769, -0.0167494658, -0.0100039011, 0.000707291299, 0.00655706599, 0.0312908031, 0.012144709, 0.00907487143, 0.0341182873, 0.00366562884, -0.0278170388, 0.0199270174, 3.07678019e-05, 0.0124947783, -0.00257334555, 0.00300251693, 0.019132629, 0.000924822292, -0.00760727376, -0.000691723311, 0.00986252725, -0.0168033224, 0.0471785627, -0.00256493036, 0.0119427461, 0.0119090863, 0.0274265781, 0.00346703175, -0.00214585708, -0.0154569028, -0.00029179448, -0.0146355871, 0.00736491801, 0.0249895565, -0.00983559899, 0.0162108988, 0.0048807729, -0.0087719271, -0.00450040912, -0.00960670784, 0.00573238358, 0.0164128616, 0.0241278484, -0.00661092298, -1.78295468e-05, -0.0125822956, 0.0177188888, -0.00160055689, -0.0157800429, -0.00790348649, -0.0259589795, -0.00556744728, -0.0103001138, 0.00284431246, 0.0156050092, 0.0087315347, 0.00227208389, 0.00234277104, 0.00350069231, 0.0200212672, -0.0102058649, -0.00923644193, -0.0209099036, -0.0055102245, -0.00965383183, -0.00221149507, -0.0254338756, -0.0091018, 0.0190518443, -0.0028375804, 0.00430854456, -0.00144403556, -0.00955958292, -0.0203982648, -0.0169648938, -0.00906814, -0.00454416778, -0.00472256867, 0.00418063439, 0.00222159317, -0.00402579596, 0.0140431616, 0.00277530844, 0.0110945022, 0.00301934709, 0.00733798975, 0.015591545, -0.0159685425, 0.00260027382, -0.00182439922, 0.0122456914, -0.0128246518, 0.00527460082, 0.0163320769, 0.00630124612, -0.00192033174, 0.0147836925, 0.0181228146, -0.007418775, -0.000868440955, 0.00374304783, 0.00624738913, -0.00954611879, 0.0128717767, 0.00875846297, -0.0063954955, 0.00815257337, -0.0111012338, 0.00314220786, -0.00374978012, -0.0034232731, -0.0210176185, -0.0165071115, 0.0120504601, -0.0157800429, 0.00328694819, 0.017961245, 0.00183113141, -0.000570545497, 0.00795061048, 0.000815004925, -0.00811891351, -0.00145834126, -0.00596464099, 0.00169817242, 0.00817950256, 3.7184338e-05, -0.00796407461, 0.00468217582, -0.00385076157, 0.00312201167, 0.000761568896, -0.0104280235, 0.00577614224, 0.018378634, -0.00148106215, 0.00429508, 0.0163590051, 0.010051026, 0.000881905202, -0.0214754, -0.00526786875, -0.00929703098, -0.00483701425, -0.00351079041, 0.00652340567, -0.00160644751, 0.00394501071, -0.00446338253, 0.026982259, 0.00368919107, -0.00477642519, 0.00701484876, 0.0275746845, 0.000167881764, -0.0215292573, 0.0171533916, 0.00930376258, -0.00869787391, -0.0208425839, -0.00736491801, -0.00635510311, -0.0184863489, 0.00433547283, -0.0098019382, 0.0124745825, -0.00161570415, 0.0114984279, -0.0153491898, 0.00927683432, -0.0127707953, 0.00780250458, -0.011713855, -0.0284633208, 0.000492284831, -0.0271034371, 0.00850264262, 0.0102395248, -0.0115724811, -0.0007409518, -0.000681625155, 0.0019085505, 0.0166148245, 0.0220139697, -0.00315903826, 0.0114984279, 0.0189979877, -0.0163455401, 0.00198428659, -0.0125149749, -0.0242490266, -0.0186479185, 0.0247202739, -0.00544290338, -0.0145951938, 0.0160762556, -0.00571218738, 0.0145682655, 0.00394837698, 0.0161839705, 0.0145682655, -0.00314220786, 0.00744570326, -0.0120437276, 0.00290321838, 0.00309003424, 0.000430433691, -0.00409984915, -0.00861708913, 0.00714275893, 0.00426478591, -0.0132420417, -0.0184459556, 0.00378680648, -0.0232796036, -0.0179747082, 0.00686337659, 0.000185132769, -0.0372419804, -0.0182305276, -0.00339971087, 0.0101991324, 0.0121514415, 0.00580643676, 0.00892676506, -0.00477305939, -0.0187556315, 0.0133362915, -0.0114176422, -0.0205329061, -9.53013e-05, 0.0197385196, -0.00828048401, 0.000725804595, -0.0192942, -0.003278533, 0.00328526506, 0.00796407461, -0.00535202, 0.004140242, -0.0213272944, 0.0144740166, -0.00924990606, 0.0134843979, -0.00316745322, 0.0187556315, -0.017638104, -0.00526786875, 0.0157127231, 0.000413182686, 0.0160358641, 0.0106636472, -0.0165071115, 0.00676576095, 0.000486815028, -0.0167494658, 0.00701484876, -0.0017924218, 0.0179073866, 0.000994667877, 0.0041436078, 0.00562803587, -0.0171937849, -0.00628778199, 0.000995509326, 0.0115118921, -0.0425738059, 0.00584346335, 0.0293788873, 0.00883251615, 0.00376324425, 0.0127573302, -0.0132824341, -0.00125974428, 0.0133564873, 0.0384537578, -0.00446338253, -0.0140162334, 0.0136661641, 0.0139085194, -0.00838146545, 0.00356128113, 0.028274823, -0.0201559085, 4.23911952e-05, -0.0063921297, 0.00859689247, -0.0263898335, 0.0348992087, -0.0273861848, 0.0156992581, 0.0307791643, 0.0245990958, 0.00395174325, 0.0214888658, -0.00162916828, 0.00187825609, -0.00854976755, 0.00881231949, -0.0177996736, -0.00422102725, -0.0147163719, -0.0152010834, -0.0142585887, -0.00418063439, -0.00186815788, -0.00848917849, 0.0280324668, -0.0137806097, -0.00269957236, 0.00577614224, 0.0126832779, 0.0161435772, 8.29678811e-06, -0.00665468164, 0.00316913635, -0.0164397899, 0.0122726196, 0.00762747, -0.00539914472, -0.0305906646, -1.5502239e-05, -0.00149368483, 0.000397825061, 0.0524834543, 0.0250972714, 0.000429802545, 0.00100476597, -0.00319269882, -0.00205833977, 0.00171921018, 0.00154838315, 0.00272481772, 0.0322063677, 0.0196442697, 0.0040190639, -0.0100981509, -0.00412004534, -0.01326897, 0.00747936359, 0.00816603843, -0.00391808245, -0.0252992343, -0.00230911048, 0.0141778039, 0.0242355615, 0.004756229, -0.0195096266, 0.00257839449, 0.00112257781, 0.0173688196, -0.0110945022, -0.00525777042, -0.0207079407, 0.0262686573, -0.00862382073, 0.0317755155, 0.0147567643, 0.0194153786, 0.0172341783, 0.0157935079, 0.00970768929, -0.0174630694, -0.0014718055, 0.0259455163, 0.00790348649, -0.00131107657, 0.00548666203, 0.0257570166, 0.00739184627, 0.0183651708, -0.0314523727, 0.00413014367, -0.0126294205, 0.0154838311, 0.0204521213, 0.0316408724, -0.00776211219, -0.01285158, 0.000999716925, 0.0118350331, 0.0154972952, 0.00834780466, -0.00392481452, -0.022148611, 0.0378344059, 0.000972788548, -0.0188094899, -0.01483755, 0.0115792127, 0.00446001673, 0.00885944441, 0.00408638502, -0.00270462129, -0.0098019382, 0.00133800495, 0.00629451405, -0.0119696744, 0.00521737803, -0.00127068395, 0.0010266453, -0.0227814279, 0.0056381342, -0.00531835947, -0.00320111378, 0.0106636472, 0.00839493, -0.00605552457, 0.00434220489, -0.0168437157, 0.00216773641, 0.0115186237, -0.0218793266, 0.0063954955, 0.0194423068, 0.00622382713, -0.0128111877, 0.00491443323, -0.0210310817, 0.0149856554, 0.00618343428, -0.00305637368, 0.0284902491, 0.00452397158, 0.016978357, -0.012144709, -0.00373631576, -0.0272246152, -0.000385412772, -0.00740531087, -0.0158742927, 0.0121851023, 0.00750629231, -0.0250299498, -0.0149856554, -0.0133632198, 0.0226737149, 0.000392144866, -0.0159550775, 0.00305637368, 0.017624639, -0.00306815491, 0.0171399284, -0.00275679515, 0.011774444, 0.0100779543, 0.0351415649, -0.0166013595, 0.00280560297, -0.00868441, 0.0199000891, -0.0269418657, -0.00756014884, 0.0274535064, -0.0174496043, 0.00397867151, 0.0237508509, 0.0261205509, -0.0201155171, 0.0215831138, -0.0030984492, 0.0253126975, -0.00767459488, 0.0106097907, -0.0148779424, 0.0211926531, 0.00412004534, 0.0194423068, 0.0119831394, 0.00630797818, 0.00559100974, -0.00276352721, -0.00959997531, 0.0110271806, 0.00472930074, -0.00862382073, 0.0175169259, -0.017113, -0.00509283412, 0.00691386731, -0.00396184111, 0.00322972517, -0.00348049589, 0.0142316604, -0.00930376258, 0.00830068, 0.00310013234, -0.0141104832, 0.0150395129, -0.0116734626, 0.045024287, 0.000298526575, 0.0142047321, 0.000377208024, 0.0123197436, 0.0165475029, 0.0153087964, -0.0309407339, 0.00450377539, -0.00898735411, 0.0152010834, -0.0344145, -0.00136745791, 0.0087315347, 0.0197519828, 0.0201155171, 0.00615313975, 0.00294361101, -0.00881231949, -0.00288638822, -0.00231079361, -0.0018025199, 0.0167763941, -0.00970768929, 0.00559100974, 0.00497502228, -0.0197654478, -0.00871807057, -0.0059276144, -0.00140280148, 0.00610601529, -0.00352762081, -0.00155679823, 0.0123197436, -0.0041436078, 0.0106636472, 0.0249222368, 0.0108858068, -0.00574921397, -0.00017061668, -0.00763420202, -0.0227679648, 0.0104616843, -0.0123668686, -0.000298105821, 0.00503561134, -0.0044465526, -0.0103270421, 0.00287965592, 0.01246785, 0.000498596171, -0.017638104, 0.0025127565, 0.0228487495, -0.00817277, -0.000768721744, -0.0348184258, -2.82169676e-05, -0.0177458171, -0.0114782313, 0.0106232548, 0.0153087964, 0.0101991324, 0.00211724569, -0.0031051815, -0.005348654, 0.0141508756, 0.0116196061, 0.00968749262, 0.0125486357, -0.0290557463, 0.00072832912, 0.0105828624, -0.0191595592, 0.00157278695, -0.0299713109, 0.0208695121, -0.00990292, 0.00933069177, 0.00396184111, -0.0139893051, 0.00193379587, -0.0200347304, -0.0178939234, 0.00180420291, 0.0127573302, -0.031910155, 0.00437249942, 0.0203982648, 0.0115859453, 0.011606141, -0.00283589726, -0.0138008064, 0.00193379587, -0.0125890281, 7.84710501e-05, -0.0028274823, 0.00426815171, -0.0385076143, 0.0182439927, 0.018701775, 0.0011983139, 0.00819296669, -0.00683981413, 0.00586029375, 0.0292173158, -0.014514409, 0.0127977235, 0.00404599262, -0.00358820963, -0.0183382425, -0.00373968179, -0.00941147655, -0.0120706568, 0.0185536686, -0.00892676506, -0.00229901238, 0.00499521848, -0.0272784717, 0.010374167, -0.000263393449, -0.0273457933, -0.026335977, 0.000876014587, 0.0198596958, -0.000781344424, -0.0114041781, -0.0122052981, -0.0124274576, 0.0114715, 0.00533855567, -0.0184998121, 0.00383729744, 0.0178939234, -0.0100106336, 0.012575564, 0.00465524755, 0.0240470637, -0.0113368575, -0.0327180102, -0.0208425839, -0.0128919724, 0.0166956093, 0.0114041781, -0.0252049845, -0.00649647694, -0.0152953323, -0.0104684168, -0.0199404825, 0.0591347702, 0.0389115401, 0.00264739851, -0.00125217065, -0.00467207795, -0.0128044551, -0.00577277644, 0.0326641537, -0.00257334555, 0.00538568059, 0.00290658441, 0.00551359029, -0.017638104, 0.00556744728, 0.00836126879, -0.012945829, 0.0201828368, -0.00917585287, -0.00747263152, -0.00571555318, 0.00396857318, -0.00585692748, -0.0116263377, -0.023118034, 0.00436576735, -0.00507600373, -0.000589479576, -0.00529816328, -0.0261609424, -0.00378344045, 0.0206810124, 0.0139354486, -0.00487404084, 0.00102412084, -0.0414697379, -0.00398876937, -0.00412677787, 0.0134440046, 0.00549676, 0.0220005047, 0.0152010834, -0.0154299745, 0.00449367706, 0.00821316242, 0.00323140831, -0.00603869418, 0.00151219813, -0.0123332087, 0.0154165104, -0.0214215443, -0.0078698257, -0.00319269882, 0.00707543781, -0.0183113143, 0.014191268, 0.0149587272, 0.0141508756, 0.00774864759, 0.0191460941, 0.042789232, 0.00390798459, 0.0123668686, -0.00682971627, 0.0121918339, 0.00520054763, 0.00956631452, -0.00840166118, -0.0149991205, -0.00279213861, 0.00502887927, 0.0168033224, -0.00263393437, -0.0195230916, 0.0247068089, 0.0168302506, -0.00441962387, 0.00858342834, 0.0105222734, 0.0145413373, 0.010529005, 0.00215090625, 0.0193884503, -0.00766786234, -0.0121177807, -0.0239797421, -0.00122019323, -0.020748334, 0.00254978309, -0.00452733785, 0.0155511526, 0.0160627924, 0.00396184111, 0.0108656101, -0.0203713365, -0.00867094565, -0.00780250458, -0.0112560717, 0.0206271559, 0.0194826983, 0.0119831394, 0.0231584255, 0.0107309688, -0.0165340398, 0.00756014884, -0.0117475158, 0.00949899387, 0.0237104576, -0.00344010349, -0.009512458, -0.0137469498, -0.0111887511, -0.0109463958, 0.0144605525, 0.00939128, -0.000592845608, -0.00435903529, -0.007418775, 0.00285777659, -0.00872480217, -0.00503561134, 0.00266759493, 0.00738511421, -0.034710709, 0.00390125229, -0.00670180609, 0.000813742634, 0.0163455401, -0.0091018, 0.0246529523, 0.0247068089, 0.0267533679, -0.0104549518, 0.0167360026, 0.000560447399, -0.0142047321, 0.00970095675, -0.00813237764, -0.000358273974, -0.0205329061, 0.0114580356, -0.015591545, -0.00821316242, 0.00422775932, 0.0116196061, -0.0197654478, 0.0111887511, 0.00430854456, -0.000247194315, 0.036649555, 0.00130602752, -0.00455763191, -0.00314725703, 0.00395510904, -0.0184998121, 0.00879212376, -0.0135315219, -0.0235623512, -0.00822662655, 0.0156723298, 0.00706197368, 0.0147971567, 0.00014694914, 0.00200616592, -0.00504907547, 0.00343000516, -0.0139893051, 0.00179578783, 0.00519718183, 0.00850937515, 0.0225794651, 0.0025312698, 0.013868127, -0.00826702, 0.00521064596, 0.00361177186, 0.0156319384, 0.00202972838, 0.0149856554, -0.0161301121, -0.0214350075, -0.00733125769, -0.02182547, 0.0165340398, 0.0497098304, 0.0161839705, -0.010374167, -0.00733798975, -0.0136392359, 0.0208695121, 0.0125621, 0.019361522, 0.0194019135, 0.00320447981, -0.0114849638, -0.0263090488, -0.0144201592, 0.00325665367, 0.00328189903, 0.00833434053, -0.0107646286, 0.0128852408, -0.00486394251, -0.0239393488, 0.00175202917, -0.00521401176, 0.0134036122, 0.0114378389, -0.0156992581, 0.00150378293, 0.00501204887, 0.00907487143]
|
01 Dec, 2021
|
Can Virtual Functions be Inlined in C++?
01 Dec, 2021
Virtual functions are member functions that are declared in the base class using the keyword virtual and can be overridden by the derived class. They are used to achieve Runtime polymorphism or say late binding or dynamic binding.
Inline functions are used to replace the function calling location with the definition of the inline function at compile time. They are used for efficiency. The whole idea behind the inline functions is that whenever an inline function is called code of the inline function gets inserted or substituted at the point of the inline function call at compile time. Inline functions are very useful when small functions are frequently used and called in a program many times.
By default, all the functions defined inside the class are implicitly or automatically considered as inline except virtual functions.
Note: inline is a request to the compiler and its compilers choice to do inlining or not.
Can virtual functions be inlined?
Whenever a virtual function is called using a base class reference or pointer it cannot be inlined because the call is resolved at runtime, but whenever called using the object (without reference or pointer) of that class, can be inlined because the compiler knows the exact class of the object at compile time.
C++
// CPP program to demonstrate that
// virtual functions can be inlined
#include <iostream>
using namespace std;
class Base {
public:
virtual void who() { cout << "I am Base\n"; }
};
class Derived : public Base {
public:
void who() { cout << "I am Derived\n"; }
};
int main()
{
// Part 1
Base b;
b.who();
// Part 2
Base* ptr = new Derived();
ptr->who();
return 0;
}
Output
I am Base
I am Derived
Explanation: In Part 1, the virtual function who() is called through the object of the class. Since it will be resolved at compile-time, so it can be inlined. In Part 2, the virtual function is called through a pointer, so it cannot be inlined.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions in Derived Classes in C++/Default Arguments and Virtual Function in C++/Can Virtual Functions be Inlined in C++?
|
https://www.geeksforgeeks.org/inline-virtual-function/?ref=next_article
|
Pandas
|
Can Virtual Functions be Inlined in C++?
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Virtual Functions in Derived Classes in C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Default Arguments and Virtual Function in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Can Virtual Functions be Inlined in C++?, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0407299325, 0.00157442107, -0.0285340808, 0.0254640914, 0.0346740596, 0.00105333759, -0.0554700866, -0.0050991266, -0.0106976526, 0.0331600942, -0.0225202665, 0.0282186717, -0.0217212271, -0.0695584, -0.0215530097, 0.0219525285, -0.0308050327, 0.00514118141, -0.00397416484, -0.00583508285, 0.0375337787, -0.00373235042, -0.0353469364, -0.0377861038, 0.00882096309, -0.0254220366, -0.0154025164, -0.00979873445, -0.00810077786, 0.0043710554, 0.0349263884, 0.00859492, -0.00428957446, -0.0153604615, 0.00490462361, -0.037954323, 0.0182201788, -0.0563532338, -0.0245809443, 0.00109539228, -0.0298588034, 0.0186407249, 0.0281345621, -0.0191874355, -0.00968308374, 0.0584559664, 0.00147322705, -0.00744893029, -0.00681811059, -0.0336647481, 0.0633763596, -0.0008332078, 0.0321507826, 0.0136887897, 0.0102665918, 0.00104545231, 0.0367978215, -0.0294382572, -0.0213637631, -0.0550074838, -0.0218473915, -0.00981976092, -0.00901021, -0.00677079894, 0.0169480257, 0.002560077, -0.0530729704, 0.00246019708, -0.00236163149, -0.0254851189, -0.00889981538, -0.00177943753, -0.0196290091, -0.000326087844, -0.00209879, -0.00453927414, -0.0333913937, 0.0446620397, -0.049792707, 0.00934664626, 0.00306736119, 0.00552493, -0.0245178621, 0.0134364618, 0.0430008806, -0.00686542178, 0.00819014385, -0.0172739476, 0.0162541233, -0.0130159147, -0.0507599637, -0.0128161553, 0.0273775794, 0.00420020847, -0.0122063626, 0.0134469755, -0.0465124473, -0.00521477684, -0.018251719, 0.0761189237, 0.0236557424, 0.00808500685, -0.00886301789, 0.00596650364, 0.00409507193, -0.000417918112, 0.0173896, -0.0247701909, 0.0242865626, 0.0255061463, -0.0353259072, -0.0570681617, 0.0167482644, 0.0447882041, 0.00385062909, 0.00619254773, 0.0052515748, -0.0570681617, 0.032634411, 0.0469750464, -0.0151922433, 0.0065132142, 0.00791153125, 0.00241945661, -0.0226674583, 0.0108290734, 0.0219315011, -0.0349474177, 0.0359777547, 0.00660783704, -0.0185671281, -0.0188509971, 0.0203229114, -0.012332527, 0.0451246426, 0.0036429842, 0.0378702134, -0.0065132142, -0.0104978923, 0.041318696, 0.0154655986, -0.00997220911, -0.0152658392, 0.0349684432, 0.00734379375, -0.0217422545, -0.0414028056, 0.00833207835, 8.84626206e-05, -0.036167, -0.0136572486, -0.0558065251, 0.0448723137, 0.0192610305, 0.0184725057, 0.00709672272, 0.0159282, 0.0177365504, -0.00804295205, -0.0193661675, 0.0171898399, -0.000864748785, -0.0376599394, 0.00271778181, 0.00934664626, 0.00693376083, 0.000233107625, 0.0561850145, -0.0440312214, 0.0164328553, -0.0180414449, 0.0265995674, 0.0468909368, 0.0317302346, -0.0354941264, -0.0160543639, 0.0200075, -0.0315199606, -0.000328059134, 0.0044577932, -0.0123850955, -0.0240552612, -0.0460919, 0.00703364052, 0.00472589163, 0.0327605754, 0.00306473277, -0.00111313409, -0.00240105786, -0.0244758073, -0.040898148, 0.0309942793, 0.00326974923, -0.00678131264, -0.0206908882, 0.023634715, -0.0605166443, -0.0127951279, -0.00448407745, 0.0111339688, -0.00899443869, -0.0300690755, -0.0232982766, 0.014635019, 0.0108395871, -0.0219945833, 0.0021631862, -0.0396995917, 0.052231878, -0.0260949116, 0.066446349, 0.0277560707, -0.017011106, -0.00240237196, -0.0153920026, -0.0213006809, -0.0478581935, 0.00406615902, -0.0422228724, -0.0176419262, -0.00366138318, 0.0156443305, -0.0171057303, -0.0136887897, 0.0106240567, 0.00152579532, 0.0347371437, -0.0173790846, -0.0105504608, 0.00942549855, 0.0257795025, 0.019807741, -0.0133523522, -0.0548392683, -0.00120381441, -0.0188404843, 0.000886433234, -0.0479843579, 0.0146665601, 0.0329708457, 0.0109447232, 0.00915740058, -0.033412423, 0.0168744288, 0.0202808566, 0.0256953929, 0.0188509971, -0.00309627387, -0.00980924722, 0.0108711272, 0.00859492, 0.00735430745, 0.0167903192, -0.00979347713, 0.0245388895, -0.00232746219, -0.0118068438, 0.028492026, -0.029837776, 0.0224992391, -0.0344007052, 0.0309101697, 0.0133102974, 0.0462180637, -0.0225833487, -0.0412976667, 0.0205647256, 0.013394407, 0.000857520674, 0.021153491, -0.00204096478, 0.0183358286, -0.035367962, 0.0180940144, 0.0324872173, 0.00946755335, -0.0324872173, -0.00169795658, 0.0125638274, -0.0151501885, -0.00126492511, -0.0285551082, -0.00673925783, 0.00716506131, 0.0308681149, -0.029375175, -0.0176419262, -0.0196079817, 0.0239290968, 0.00171898387, -0.0240762886, -0.0024956807, -0.0474376492, -0.0190717857, 0.010508406, 0.0256112833, -0.0183463413, -0.0162330959, 0.0195764415, 0.00119132944, 0.0343165956, -0.0513066761, 0.0112075647, -0.00458132848, -0.0111339688, -0.0142355, 0.0177575778, -0.021121949, 0.0313727707, -0.0222469103, -0.0246440265, 0.00192794297, -0.0138464943, -0.0123115, -0.0126794772, -0.00878416561, 0.0189351067, 0.0133102974, -0.0129528325, -0.00601381529, -0.0193346273, 0.043694783, 0.00483891321, 0.0118068438, 0.0556383058, -0.0204175338, 0.0305527057, -0.00618203403, -0.0195449, -0.0504655838, -0.029480312, -0.010329674, -0.029627502, 0.0148242647, 0.0210904088, -0.045503132, -0.0303003769, 0.000849635398, -0.0360618643, -0.0277770981, -0.0102455644, -0.00887353159, 0.00837938953, -0.0184935331, -0.00913637318, -0.0655632, -0.00570366206, 0.00303582032, 0.0257584751, 0.0205752384, 0.000475414708, -0.0153289204, 0.00845824182, -0.00551441638, 0.00979873445, 0.0116281118, -0.027251415, -0.0110498602, 0.0189981889, 0.00402147602, 0.0336437225, -0.00928356405, -0.0339381061, -0.00112101936, -0.0415710248, -0.0116070844, 0.00466806628, -0.00681285374, 0.0669510067, -0.00201468077, -0.0258846376, -0.0237188246, 0.023739852, -0.036145974, -0.0183358286, 0.0204701014, -0.0193030853, -0.0283658635, -0.0136677623, 0.0156863853, -0.00247202511, 0.041171506, 0.0152237844, -0.0044893343, 0.0251907371, -0.0148768332, -0.0124902315, -0.0227725934, -0.0174106266, -0.0259687472, 0.0268518962, 0.0287233274, 0.035998784, 0.00999323651, -0.0152763529, -0.00034005128, -0.0703994855, -0.0111234551, -0.0407719836, -0.0524421521, -0.00201205234, 0.0209957846, 0.0214268453, -0.0251907371, -0.0156758726, 0.0343796797, 0.00493353652, 0.0407930128, -0.017011106, 0.00444990769, 0.0115334885, -0.0490357243, -0.000637719349, -0.0553439222, 0.0146981012, -0.0193977077, 0.0247912183, 0.0146875875, -0.0158756319, 0.00980924722, 0.0230459496, 0.0100931162, -0.0179152824, 0.0233823862, 0.00195291289, 0.0156338178, 0.0177365504, 0.00260607433, 0.0237188246, 0.0407089032, -0.0201021247, 0.000582522654, 0.0454190262, 0.0275878515, -0.0197131187, -0.0162856635, 0.0162541233, 0.0313727707, -0.0278612077, -0.0143406363, 0.0107291928, 0.039152883, 0.00242734188, -0.0218053367, -0.00787999, -0.00223415345, 0.000575294485, -0.0460498445, 0.0279873703, 0.0203229114, -0.0236136876, -0.0272303876, -0.0190928113, 0.0249384083, 0.0457554609, -0.0058193123, -0.000781296578, -0.0117122205, 0.00662360759, -0.0402463041, 0.00142197288, -0.00427906075, -0.00435528485, -0.00431060186, 0.0195238721, 0.0112706469, -0.0128687238, -0.00842670072, -0.00959371775, -0.0503814742, 0.0274196342, -0.00833733473, -0.0120801991, 0.0186932925, 0.00862120371, -0.0126584508, 0.0165695325, 0.00195948407, -0.0197762, -0.0134259481, 0.00779062416, 0.020165205, 0.0255061463, 5.17880035e-05, 0.0119330073, 0.0152658392, 0.0352417976, 0.0272303876, 0.0238029324, -0.00907854829, 0.0225412939, -0.0157284401, 0.0321297534, -0.0702312663, -0.00206987746, 0.012616396, -0.0166956969, 0.0117017068, 0.0245809443, 0.0286181904, 0.00249042385, -0.0104978923, -0.0124271493, 0.01722138, -0.00610318128, -0.025905665, 0.0150345378, -0.0157704949, 0.0392159633, -0.0219525285, 0.00152185268, 0.0172844622, 0.0114073241, 0.01328927, 0.032844685, 0.00174658233, 0.00175709592, -0.04152897, 0.00261133118, -0.00544607732, 0.00903649349, -0.0336226933, 0.0119540347, 0.00996169541, -0.0137203308, 0.0375758335, 0.058540076, -0.0152658392, 0.00970936753, 0.00598753104, -0.0131841339, 0.0196920913, -0.0102140233, 0.0146770738, -0.0260528568, -0.0308050327, 0.0149294017, -0.000839778862, 0.00685490854, 0.0137939258, -0.0087631382, -0.011375783, 0.000862777466, -0.00460498454, 0.000179225099, 0.00771702873, -0.00878416561, -0.00301742135, 0.00814808905, -0.0037507494, -0.00754355313, 0.000102015387, 0.0163802877, 0.0051963781, -0.0295854472, -0.0124586904, -0.0106398268, -0.0155812483, -0.00993015524, -0.0256953929, -0.0107134227, -0.0252117645, 0.0672033355, 0.0161069315, -0.0220366381, 0.00481262943, 0.0134469755, -0.0109657506, -0.0192505177, 0.0161174461, 0.0107554775, -0.0033643723, 0.00976719335, -0.0109762643, 0.0188825391, 0.0235716328, 0.00607689703, 0.0107081663, 0.000331016112, 0.00172424072, -0.00880519301, -0.0277350433, 0.00457081525, -0.0105557181, 0.0124166356, -0.012437663, -0.011586057, 0.0185250752, -0.00173606863, -0.000132242174, -0.000987627194, 0.0206698608, 0.01222739, 0.0102087669, 0.0162015557, -0.000390648289, -0.0149714565, 0.0184409656, -0.0199969877, -0.0154340575, 0.00589816505, 0.0364613831, 2.14380161e-05, -0.0101772258, 0.0297746938, 0.0190507583, 0.00101325428, -0.0289125741, 0.0319194794, 0.0103927562, -0.0388164446, 0.00293331197, 0.0338960513, 0.00393211, 0.0162961781, -0.0247701909, 0.0132261878, 0.00413449807, -0.00574571686, -0.00810603425, 0.0183148012, -0.0102455644, 0.00334071647, -0.00477057463, 0.005120154, -0.00219078455, 0.00786422, -0.0310573615, 0.000801009708, -0.0214058179, -0.0051122685, -0.0355361812, 0.00229854952, 0.017715523, 0.00770651503, -0.00796935707, 0.0052410611, 0.0145403957, -0.021153491, 0.0248963535, -0.0305316783, 0.0106398268, 0.0058823945, 0.0613156818, -0.0132577289, 0.00958320405, -0.0287443548, -0.00241551409, 0.0153184067, 0.0194502771, -0.00497559085, 0.00663937815, -0.0305316783, 0.0104873786, -0.0157599803, -0.0194502771, 0.011659652, -0.00449721934, -0.00567212142, 0.00340905529, 0.00851081, -0.00710723642, 0.00831105094, 0.0305527057, -0.0177365504, 0.00227489392, 0.00267966976, -0.0109972917, 0.00344322459, 0.0142985815, -0.0117017068, 0.00619780459, 0.0199654456, -0.0331600942, 0.0128897512, -0.0171688125, -0.00489673857, 0.0494983271, -0.00370606617, -0.00144694292, -0.0247701909, 0.00538299559, -0.00142197288, -0.00571417576, 0.00187011785, -0.00627665687, -0.0108606135, 0.00558275497, 0.000630819763, 0.0147506697, 0.00104019558, -0.0113442428, -0.0128687238, 0.0132367015, 0.0110078054, -0.0073595643, -0.000198445385, -0.0294382572, 0.0224151295, 0.0192294903, -0.00685490854, -0.00736482115, 0.00176366698, 0.00609266758, -0.0346320048, -0.0154971397, 0.00248122448, -0.0260738842, -0.0104505811, -0.00219998392, 0.00438682595, -0.023739852, 0.0285551082, -0.00765920337, 0.00795358606, 0.0251697097, 0.0136677623, 0.000784582109, 0.0154655986, -0.00555647071, 0.0221417751, -0.0213006809, -0.013678276, -0.0207960252, 0.00637653656, 0.00225386652, -0.015024025, -0.00155733631, -0.0174631942, -0.000281897577, -0.0187458619, -0.0148978606, 0.0266416222, -0.0193346273, -0.0437368378, -0.00349053624, 0.0431901291, -0.00841093063, -0.0197236314, -0.0326974913, -0.00871057, 0.0168534014, 0.0214689, 0.0183883961, -0.0338750221, 0.01148092, 0.0478161387, 0.00232483377, -0.00356676, 0.00782216527, 0.00270989677, 0.0514748953, 0.0267047044, -0.00321192411, 0.000494799286, -0.0205962658, 0.0110393465, -0.0102981329, 0.0395944566, 0.0293331202, -0.0124586904, 0.0226254035, 0.0223099925, 0.0449143685, -0.0109762643, -0.0214058179, -0.0242655352, -0.0410453416, 0.0117753027, -0.0318564, -0.00412135571, 0.00211061793, -0.00774857, -0.0206803754, -0.0389005542, -0.0129212923, 0.00257584755, 0.0386692546, 0.00833733473, -0.0162751507, -0.0433162935, 0.0310363341, -0.00873685442, 0.00962525886, -0.025905665, -0.00124981173, 0.0145088546, -0.00918894168, 0.00190560147, 0.0129528325, 0.0232562236, 0.0404986292, 0.0196290091, 0.0460077897, 0.0399939753, -0.00460235588, -0.0152973793, -0.0271462779, -0.0244968347, -0.0238449872, 0.0344427601, 0.0126058822, -0.00426854705, -0.0104663512, 0.0184514783, -0.00953589287, -0.023319304, -0.01328927, 0.00180309324, 0.0218053367, 0.00323295151, -0.0109342095, -0.0179257952, 0.0189140793, -0.0127425594, 0.00484942691, -0.0227095131, -0.00269149779, 0.0300270226, 0.029732639, -0.0106293131, -0.00752778258, 0.0126374234, -0.0121748215, 0.0106976526, -0.0158861447, 0.0252327919, 0.02083808, 0.0235506054, 0.00505181495, 0.0243496429, 0.0032355797, 0.0202913694, -0.0185881555, -0.00951486547, -0.00226700865, 0.0440312214, -0.0145193683, 0.047479704, 0.0220997203, -0.0121327676, -0.0219104737, 0.00682862429, 0.00189245935, 0.036608573, 0.00609266758, 0.0101088872, 0.0273144972, -0.0213953052, -0.0223730747, 0.0147822099, 0.00353521924, 0.0136677623, 0.0272934698, 0.00235111802, 0.0138149532, -0.000124192651, -0.0132367015, 0.0126479371, 0.0131631065, 0.0211745165, 0.0125217726, 0.0172739476, -0.0142565267, 0.0170952156, 0.00259818905, 0.00626088632, 0.00342745427, -0.00630819798, -0.0413607508, -0.0181150418, -0.0161805283, -0.00330129, 0.020449074, -0.00335911545, -0.021616092, 0.026473403, -0.0210904088, 0.0389215797, -0.00304107694, 0.0145509094, 0.00795884337, 0.0265995674, -0.056311179, 0.00108027889, -0.0191243533, -0.00020370222, -0.029627502, 0.00467069494, -0.0299218856, 0.0233613588, 0.020943217, -0.0244758073, -0.0111024287, 0.0381015167, -0.0227936208, -0.025443064, 0.00324346498, 0.00420020847, 0.00792204496, -0.00783267897, 0.018461993, -0.0301531851, -0.0229828674, 0.0218053367, 0.0123220133, 0.0280925073, 0.013005401, -0.00180440745, 0.00548813213, -0.0114283515, -0.0161910411, -0.0117227342, -0.0232351962, 0.0058193123, 0.0465545, 0.00501764566, -0.00058613671, -0.000699158583, 0.000506955665, 0.0165905599, -0.00604009954, -0.0228146482, -0.00178600848, -0.018461993, -0.011764789, 0.00102245377, 0.0167903192, -0.0146875875, -0.0089366138, 0.00228409329, -0.0224361569, -0.0102718491, -0.0176419262, 0.00647641625, -0.00817963, 0.00498347636, 0.00131420791, -0.0325713269, 0.00810603425, -0.0251907371, -0.0166115873, 0.0118909534, 0.00567212142, -0.00596124679, -0.00113284716, 0.0064921868, 0.0186407249, -8.66555856e-05, 0.0189035665, 0.0120381443, 0.018251719, 0.00778011046, -0.0433162935, 0.00236426, -0.032991875, -0.00100996881, -0.0168744288, -0.00124521193, 0.00947806705, 0.0518954396, -0.00931510516, 0.0398257561, -0.0133838933, 0.0224992391, 0.0268518962, 0.0192400031, -0.00236951676, -0.0319825634, -0.00928356405, 0.0475638136, 0.0164223425, -0.0158861447, 0.0300270226, -0.0100668324, -0.0248332713, 0.00978822075, -0.0203123968, 0.0233613588, -0.0251066275, 0.037386585, 0.00698107248, 0.0141934454, 0.0359357, -0.0305316783, 0.0155181671, 0.0111024287, -0.0103822425, -0.00877890829, 0.0236767698, -0.00418969477, 0.017011106, 0.0307840053, -0.00968308374, -0.00389794051, 0.0378912427, 0.0341063216, 0.0010382242, -0.0172318947, -0.0187563747, -0.0215004403, -6.02071486e-05, -0.0194082223, 0.0052831159, -0.00757509423, 0.00416341051, -0.0108395871, 0.0372393951, -0.00607689703, 0.0255482011, -0.000674188661, -0.0382487066, -0.0190192163, 0.0338750221, 0.0336016677, 0.0222469103, -0.02657854, 0.0167482644, 0.0108816409, -0.00881570671, 0.00951486547, -0.0376599394, 0.0209642444, 0.0108711272, 0.00784319267, 0.00827425253, -0.0195764415, 0.0135941664, -0.0030016508, 0.00639756396, 0.00336962892, 0.0276509337, -0.010702909, 0.0326974913, -0.0238449872, -0.0171477851, 0.0086369738, -0.043484509, 0.00293068355, -0.00344585301, 0.0065027005, 0.00243522716, 0.0140567673, -0.00157047843, 0.0135415979, -0.00299113709, -0.00116767373, -0.0301111303, 0.0304055139, -0.018178124, 0.0051858644, -0.00853709411, -0.00596650364, 0.00975668, 0.00515695196, -0.0262421034, -0.00322506623, 0.00667091925, -0.020732943, -0.0139936851, -0.000948858098, -0.0117332479, 0.0128582101, 0.00343271089, -0.0124692041, 0.0132472152, -0.0072859684, 0.0207434576, -0.0073490506, -0.00359304436, 0.0165064503, -0.0103086466, -0.0250225179, -0.0235716328, -0.00198971084, -0.00322243781, 0.000109243527, -0.00146139914, 0.00944652595, -0.0305737332, -0.0210588668, -0.00620831782, 0.0138149532, 0.0193136, -0.0118173575, 0.00492302282, 0.0013457489, -0.00842670072, -0.00775382668, -0.0524000973, -0.0108395871, 0.0121853352, 0.0395524, -0.00984078832, 0.00710197957, -0.0129843736, 0.00600855844, 0.0345058404, 0.00880519301, -0.00503078802, 0.023887042, 0.0182412062, 0.00447619194, 0.0155286808, 0.00579302851, 0.0073280232, -0.0106345704, 0.032066673, -0.0254640914, 0.00322243781, 0.0330339298, 0.0140567673, 0.00579828536, -0.0125428, -0.0174211394, 0.00268886937, -0.0451246426, -0.0169059709, 0.0131315654, 0.0232351962, -0.00531202834, 0.0296695568, -0.0218894463, -0.0253169015, -0.0433583483, 0.0149399154, 0.00731225265, 0.017789118, -0.0164749101, 0.007264941, -0.0116175981, 0.00554070063, 0.00719134556, 0.0127320457, -0.0110814013, -0.000493813597, 0.00233797589, -0.033202149, -0.0128582101, -0.00674977154, 0.0153289204, 0.0140147125, -0.00179257954, -0.000711643544, -0.0112285921, -0.0333072841, 0.000864748785, 0.0337698869, -0.0287443548, 0.0360408388, 0.0215950646, -0.00402147602, 0.021616092, -0.0208591074, -0.0237819068, 0.0211009216, -0.0179468226, -0.00598753104, -0.0218894463, 0.0126374234, -0.029480312, 0.014246013, 0.0112916743, 0.0121432813, -0.00950960815, 0.00595599, 0.015307893, 0.032003589, -0.00743315974, 0.0139200902, -0.00743315974, -0.0172634348, 0.0189456213, 0.0194818173, 0.0255271737, 0.0362300836, -0.028471, -0.00636076601, -0.00649744365, 0.0118278712, 0.0188089442, -0.000526340271, -0.026788814, 0.00384800066, -0.00754881, 0.01148092, 0.005934963, 0.0109972917, -0.00314358529, -0.0211745165, 0.0220997203, 0.00142591551, 0.00770651503, 0.00677605579, 0.0142249865, -0.00754355313, -0.0140567673, -0.00568263512, 0.0166221019, -0.0240552612, -0.0136887897, -0.00180572167, -0.0258846376, -0.00846875552, -0.00284657418, 0.0134049207, 0.00412661256, 0.0151817296, 0.0133733796, -0.0102876192, 0.0164118279, 0.00550390268, 0.0161805283, 0.0247491635, 0.0249173809, 0.0113337291, 0.00306210434, -0.00847926922, 0.0163172055, -0.00178075163, -0.00764343329, 0.0138149532, 0.0526524261, -0.0081954, 0.0217422545, -0.0106082857, -0.0125217726, -0.00309101702, 0.00705992477, -0.01148092, 0.0171582978, -0.00700735627, 0.00280189118, 0.0124902315, 0.0109762643, 0.00360618648, -0.0269780587, 0.00763291959, 0.0185986701, 0.0162646361, 0.0124586904, -0.0195449, -0.00206199219, 0.00702312682, -0.000768811617, -0.0271252505, -0.0250435453, -0.029480312, -0.00902072247, -0.0139200902, 0.0103769852, 0.0132261878, -0.0382907614, 0.0282607265, -0.00052009779, 0.0238449872, -0.0123009859, -0.016727237, 0.000768811617, 0.00617677718, 0.0151501885, -0.00902072247, -0.00173475442, -0.00125703984, -0.00276772189, -0.0434424542, -0.018178124, 0.0457554609, -0.0131946476, -0.0297957212, -0.00690221973, 0.0218684189, -0.0156443305, 0.00659206696, -0.0147927236, -0.000575951592, -0.00348527939, -0.0162225813, 0.0344637893, 0.0236136876, -0.00437631225, -0.0125007452, 0.00884724781, -0.0277560707, 0.0203859918, 0.000183660552, -0.0167798065, 0.00475743273, 0.0106818816, 0.00256927637, -0.0220366381, 0.0285761356, 0.0159597397, -0.00835836213, -0.0066341213, -0.00801666826, -0.00921522547, -0.0140252262, 0.0119330073, -0.0231931414, 0.0188720245, 0.0163277183, -8.24254748e-05, -0.0284289457, 0.0066551487, -0.00413712626, -0.00924676657, -0.00303844851, 0.0186196975, -0.000597964565, -0.0218684189, 0.00800615456, 0.000429417414, 0.0105346907, 0.00625037262, 0.0302372947, -0.0022170688, 0.015024025, 0.00161910406, -0.00177418068, 0.00804295205, 0.0226254035, -0.0132472152, 0.00621883152, 0.00393999508, 0.00407930138, 0.0127110183, -0.0225833487, 0.01722138, 0.00336700049, -0.0267047044, 0.0226674583, -0.00319615356, 0.0292910654, -0.013394407, -0.01722138, 0.0333493389, -0.0186827797, -0.0255271737, -0.00970936753, -0.0100142639, -0.0122063626, -0.000114253948, 0.013468002, 0.00415026862, -0.00484154187, 0.032066673, -0.0212481134, -0.000206330631, -0.0158230625, -0.0015441943, -0.0102876192, -0.0225412939, 0.0217843093, -0.00791678857, 0.0324661918, -0.0311414693, 0.029627502, -0.0154761123, -0.0147296423, -0.00936767366, 0.0123850955, -0.00419495162, 0.0089786686, 0.00998272281, 0.014456287, 0.0245178621, 0.0238029324, 0.0140462536, -0.00768548762, 0.0204070192, 0.0377019942, -0.0418443792, 0.0100247776, 0.00107436499, 0.00717031816, -0.00623460207, -0.026115939, 5.34923674e-06, 0.0135836527, 0.00788524747, -0.0160859041, -0.0240342338, 0.0215950646, -0.0138780354, 0.0246650539, 0.00186617521, -0.00915740058, 0.0161595, 0.0111129414, -0.0119330073, -0.0174631942, 0.0195974689, -0.0016887571, 0.00370343775, -0.00094491546, 0.0110393465, -0.013678276, -0.0295223668, -0.0167167243, 0.00238660141, 0.00544082047, -0.0195659269, 0.000890375813, -0.00299902237, 0.0174211394, -0.00541453669, -0.0327185206, -0.0111444825, 0.0241814256, 0.0128056416, 0.00272303866, -0.00236688834, -0.010224537, 0.00281240488, -0.00841618702, -0.0121222539, -0.0114914337, -0.000924545224, 0.0177786034, -0.0117227342, -0.0086685149, 0.0173790846, -0.0086685149, -0.0214583855, -0.00762240589, -0.00307524647, -0.0150555652, -0.0116070844, 0.00706518162, 0.00518849259, 0.0143932048, 0.0177050084, 0.00773805613, -0.00125506858, 3.31221454e-05, 0.00323295151, -0.0183042865, -0.0128792375, -0.0246650539, 0.0251276549, 0.0105820019, -0.0152448118, 0.0106976526, -0.0115124611, -0.00937293097, -0.00374549255, -0.0177680906, 0.0072964821, -0.00928356405, -0.000226372315, -0.00411084248, -0.0308891423, -0.0437788926, 0.0121537941, -0.0127741005, 0.00917317066, -0.0188825391, -0.0364824124, -0.0161595, -0.0164749101, 0.00877365191, -0.0287864096, -0.00162041828, -0.000572008954, 0.00611895183, 0.0073385369, 0.00713877706, 0.00848452654, 0.0183148012, -0.00200810959, 0.00806923676, -0.0266205948, 0.00597176049, 0.0290177092, -0.0067287446, -0.00329603348, -0.0181886367, 0.0293962024, 0.0164854228, -0.014172418, 0.00929933507, 0.0346320048, 0.00503078802, 0.0165590197, 0.00955166295, -0.0218894463, 0.0287653822, 0.0128161553, 0.011197051, 0.0231090318, -0.00672348775, -0.00993541162, 0.00951486547, 0.00506232865, -0.0395313725, 0.0139306039, 0.0108395871, 0.00479685888, -0.0100405486, 0.0177050084, 0.00204622163, -0.0293962024, -0.00923625287, -0.0104453247, -0.00332757435, -0.0232351962, -0.00661309389, 0.00629768427, 0.0191033259, 0.0215004403, -0.0066656624, -0.0265575126, -0.0139831714, 0.0118594123, -0.0270831957, -0.0153920026, 0.00428957446, 0.012616396, -0.0320246182, -0.0288705193, -0.0323820822, -0.0481525771, 0.0236136876, 0.00894187, -0.0319825634, -0.0152132707, -0.00841093063, 0.0129107786, -0.0127110183, 0.0207434576, -0.00257321913, 0.017326517, 0.0143721774, 0.0144668007, 0.0284289457, 0.024623, -0.00203833636, -0.0212481134, -0.00289914268, -0.0207434576, 0.00373235042, -0.0286602452, -0.00990387052, -0.00536196819, -0.00228672172, 0.00644487562, 0.0238660146, -0.0140988221, -0.011586057, -0.0089155864, 0.0156758726, -0.0117122205, 0.0105399471, 0.012048658, 0.00457081525, 0.00471012108, -0.00017363971, -0.0172318947, -0.0052620885, -0.0169269983, 0.029059764, 0.0155286808, 0.00993015524, -0.00939921476, -0.00637653656, 0.00917842798, -0.0104926359, 0.00966205634, -0.00616626348, -0.00807449315, 0.0245388895, 0.0250856, 0.000857520674, -0.00481262943, -0.0124061229, 0.00952012185, 0.00547761843, 0.0182622336, -0.0118278712, -0.00367189688, 0.0037507494, 0.0329708457, -0.00470223604, 0.0186827797, -0.00552493, -0.0144352596, -0.0226674583, 0.00358778751, -0.0231931414, -0.0131315654, 0.00762766274, -0.00911534578, 0.000397219323, -0.0158020351, 9.27338e-05, -0.00477583148, 0.012826669, -0.0017426397, -0.0120276306, 0.00355098979, 0.00423437776, 0.00446305, -0.0123535544, -0.0152658392, 0.0113232154, 0.0271042231, -0.00403724657, -0.0407930128, 0.0185986701, -0.0117542753, 0.00390056893, 0.0267047044, 0.00014990184, 0.00210536108, -0.00235374621, 0.0142985815, 0.0187563747, -0.00957794674, -0.0210588668, -0.00922573917, 0.0239290968, 0.0174526814, 0.0374917239, 0.00854235142, 0.000187931728, 0.00280189118, -0.000250356592, -0.000233764731, -0.00296222465, 0.0119330073, 0.00871057, -0.00891032908, -0.0101561984, 0.0201757196, -0.00133720657, 0.00355624664, -0.00498873321, 0.0133733796, -0.0209852718, 0.0371552855, -0.00950435176, 0.0261579938, 0.0089576412, 0.0490357243, -0.0208170526, -0.00699158572, -0.0246860813, -0.0074909851, 0.00973039493, 0.00876839459, 0.0188299697, -0.00387954176, -0.0151081337, 0.0089155864, -0.0271883328, 0.0224151295, 0.0105925156, -0.0101194009, 0.0127741005, 0.000712300651, -0.00481525762, 0.0135310842, 0.0016112189, 0.0140567673, 0.00605587, 0.00605061324, -0.0106661115, 0.0131736202, 0.0182937738, -0.00521214865, 0.0109447232, 0.0294172298, 0.0221207477, -0.00160990469, 0.0181255545, -0.00384800066, 0.000522397633, 0.0113968104, -0.020943217, 0.00843195803, -0.00200285274, 0.00491776597, 0.0110603739, -0.0072859684, 0.00662886444, 0.0124902315, -0.0128897512, -0.0089050727, -0.00173344021, -0.0107554775, -0.0330339298, 0.0132051604, 0.0110603739, 0.00732276635, 0.00059960736, -0.00451561809, -0.00168087194, 0.000338737096, 0.0259477198, 0.00797987, -0.00218947022, -0.0199654456, 0.0193871949, -0.0103822425, -0.00711249327, 0.0121012265, -0.00372183672, -0.0235085506, -0.0159387141, 0.0129212923, -0.0185986701, 0.0133523522, -0.015486626, 0.0172424074, -0.00255613425, -0.00111904799, 0.00763817644, -0.00263761519, -0.000702444115, -0.00383223, -0.00650795735, 0.0087421108, 0.0145088546, -0.00480211573, -0.0126584508, 0.00294119725, -0.00290177111, -0.0165169649, -0.00486519746, 0.000781296578, -0.0116701657, -0.00681811059, 0.00227883644, -0.00308576017, 0.00659206696, 0.00333808805, 0.0252958741, -0.00656578271, -0.0143406363, 0.00249436661, -0.00408981508, 0.00424489146, -0.00707043847, -0.000511555409, 0.0252538193, 0.0251486823, -0.00453138864, 0.00542505, 0.0124166356, -0.0151501885, -0.0191348661, -0.0105609745, 0.00542505, 0.00325135025, 0.00268098409, -0.00673925783, 0.01148092, -0.0058613671, 0.0139936851, 0.00519900629, 0.00565635087, -0.0447882041, -0.00620831782, 0.00169532816, -0.0073385369, -0.0172739476, -0.0105031496, 0.0141513906, -0.00861069, -0.00440785335, -0.0164433699, 0.000629834132, 0.017610386, -0.0089786686, 0.0100668324, 0.00304370536, 0.0103244167, 0.00551967323, 0.0163066909, -0.0364193283, 0.000384405808, -0.015307893, -0.0066761761, 0.0167903192, 0.0162120685, -0.0089261, 0.0223099925, 0.00238922983, 0.00381908822, 0.00789050385, 0.00488096802, -0.0354100168, 0.000573980273, -0.0119330073, -0.0159282, -0.00604535639, 0.00208170526, -0.00306998962, 0.00475217588, -0.0183463413, -0.0252327919, 0.00183069159, 0.0132682426, 0.0111760236, -0.0108921546, 0.0119540347, 0.0382487066, 0.00620306144, -6.39444261e-05, 0.00560903922, -0.0269360039, -0.039720621, -0.00483102817, 0.00811654795, -0.0145403957, -0.00856863521, 0.00224860967, -0.00754355313, -0.0120171169, -0.020943217, 0.00780113786, -0.0178416856, 0.0225623213, -0.00296485308, -0.0222469103, -0.0032355797, 0.00384800066, 0.0154130301, 0.0154971397, -0.0192925725, -1.07806118e-05, -0.00878942199, -0.00256796228, -0.0106187994, 0.00178732269, -0.0132577289, 0.00781690888, -0.0118068438, 0.0152658392, 0.0124586904, 0.00426854705, -0.0149083743, 0.00887353159, -0.0248542987, -0.0351997428, 0.017294975, -0.00300427922, 0.0142355, 0.00308576017, -0.0109762643, 0.00352470553, -0.0155707346, -0.00194765604, -0.0145824505, 0.003729722, 0.00213033101, 0.0342114605, 0.00254299236, -0.0113337291, -0.00833207835, 0.0100510623, -0.000584822497, 0.00640807766, 0.0155812483, -0.0314148255, -0.0181465819, 0.0123430407, 0.0120276306, -0.00390845444, -0.00775908353, -0.00568263512, 0.0264523756, -0.0297116116, -0.00123469834, -0.00981450453, -0.0217212271, 0.0267257318, -0.00131420791, -0.0138359806, 0.0351787172, 0.000522397633, -0.0136467349, -0.0149399154, -0.0292490106, 0.0158861447, 0.00203176541, 0.00319878198, 0.0272934698, 0.0296905842, -0.00018563187, -0.0150029976, -0.00560903922, -0.0136151938, -0.00328026293, 0.0148978606, -0.00802192464, -0.00463126879, -0.0169059709, -0.0193346273, -0.0317722894, 0.0043474, -0.00927830767, 0.026788814, 0.00430008816, -0.00733328, 0.00192531454, 0.00309364544, -0.00553018693, 0.00156259316, -0.00691273343, 0.0128371827, -0.00802718196, 0.00806397945, 0.010613543, -0.0128582101, -0.00882096309, 0.00185828994, -0.00546184788, -0.00418706611, 0.00674451469, -0.000818094413, -0.0158440899, 0.021332223, -0.0157179255, 0.000218487054, -0.000171339852, 0.00435791351, -0.0233403314, 0.0132261878, 0.0132787563, -0.00628191372, 0.000533239858, -0.0248753261, 0.00861594733, -0.00456292974, 0.00382434484, 0.000247892458, 0.0143616637, -0.00131420791, 0.00215792935, 0.00181097852, 0.014067281, 0.0200390425, 0.0104558375, 0.021332223, -0.0258425847, -0.0121643078, -0.00154682272, 0.0145403957, 0.00364824105, -0.00613472238, 0.00764343329, 0.00587713765, 0.000486585457, -0.0223730747, 0.00287023, 0.00557224127, -0.00123206992, 0.018251719, -0.00539350929, 0.0136572486, -0.0021421588, -0.00187406049, 0.0106713679, -0.0079641, -0.00597701734, 0.00418969477, -0.0361880288, -0.0283658635, -0.00118738681, 0.0317722894, 0.0431901291, -0.00714929076, -0.00722288666, -0.0180519596, -0.0143090952, 0.0160543639, 0.0089786686, -0.00167561509, -0.00538299559, -0.000617677695, 0.0002853474, -0.00809026416, 0.0173790846, 0.00220129825, -0.0145088546, 0.0127110183, 0.00914163049, 0.0248332713, 0.00714403391, 0.0235085506, -0.00932036247, 0.00742264604, -0.0015008254, -0.00371657987, 0.0107239364, -0.00165064505, 0.00752252573, -0.00683388114, 0.0294592846, 0.00612946553, -0.0133733796, 0.0162961781, -0.000523383263, 0.0108501, -0.00531991338, -0.00773279928, -0.0107081663, -3.92208904e-06, 0.0133208111, 0.0309311971, -0.0315409899, -0.0174947362, 0.00182412053, -0.00398993492, 0.00292016985, 0.000492827967, 0.020480616, 0.0100142639, 0.0143721774, 0.0022722655, -0.0123535544, 0.00779062416, 0.0230459496, -0.00534882629, -0.00975668, 0.010986778, 0.00389268366, 0.00916265696, -0.00801666826, -0.0282186717, 0.0125217726, -0.0113127017, -0.0317722894, 0.00392685318, -0.0022617518, 0.0025929322, 0.0059139356, 0.000600921572, -0.00113416137, 0.0221838299, -0.0320456438, 0.00987758674, -0.0127846142, -0.0150660789, 0.010224537, -0.0162330959, -0.0072754547, 0.0225623213, 0.0167798065, -0.00286760158, 0.0106398268, -0.0238660146, 0.00118475838, 0.0126269097, -0.0166431293, 0.00911008939, 0.0155707346, 0.000273190963, 0.0119330073, 0.00341168372, 0.0233823862, 0.00687593548, 0.0329498202, 0.0256112833, 0.0185881555, -0.00475743273, 0.0130369421, 0.000569052, -0.0036429842, -0.00756983738, -0.0117858164, 0.00212244573, 0.00214084471, -0.0162751507, -0.0181676093, 0.00155470788, -0.0050886129, -0.00297799497, 0.00394525193, 0.00356676, -0.0106450841, 0.00241945661, 0.0151501885, -0.013751871, 0.018072987, 0.0180204194, 0.0111655099, 0.00802718196, -0.000167725782, 0.00717557501, 0.00324083655, -0.00994592533, 0.0117542753, -0.00424226327, 0.0151817296, 0.0157599803, -0.00698107248, 0.0141829317, -0.0218894463, 0.0137098171, 0.000376520562, 0.0100931162, 0.00376651972, 0.00475480407, -0.0174211394, 0.0107765049, 0.00289651426, -0.0221838299, 0.00666040555, 0.0165590197, -0.00354573294, 0.00305159064, 0.0226674583, -0.00681811059, 0.0100773461, -0.00318038301, 0.00135100575, 0.0257164203, -0.0264103208, 0.0135415979, 0.00975142233, 0.0044367658, -0.00153105217, 0.0284079183, 0.00202650856, 0.014246013, 0.0223520473, 0.0131525928, -0.00116767373, 0.0169164836, 0.00985655934, -0.00171635544, 0.00370606617, 0.00195028447, -0.0145719368, 0.00601381529, -0.0248122457, -0.0162646361, -0.0127951279, -0.00117621606, 0.00471012108, 0.00322769466, -0.0277981255, 0.0273775794, 0.00220524077, 0.0153289204, -0.0067287446, 0.00343796774, -0.000364364125, 0.0118909534, 0.0300270226, -0.0265995674, 0.0163487457, 0.00568263512, 0.0081954, -0.008700056, -0.00773279928, 0.0112075647, 0.0192610305, 0.00262184464, -0.00723865721, 0.00265995669, -0.00924676657, -0.026010802, 0.0106398268, 0.00028321179, -0.0130684832, -0.014456287, -0.0215319823, 0.00453664549, -0.0086474875, 0.00393736688, -0.000320009625, 0.00197262596, 0.0121853352, -9.77442105e-05, 0.00906277727, 0.00560903922, -0.00786947645, 0.00029257554, 0.0067287446, 0.0194292497, 0.019702604, 0.00788524747, -0.0234034136, -0.00801141094, -0.0102297943, 0.00946755335, -0.022856703, 0.00196999754, -0.0157389529, 0.00861594733, -0.0113862967, 0.0248753261, 0.0180519596, -0.0058823945, 0.00126821059, -0.00180309324, 0.0124481767, 0.0228987578, 0.017505249, -0.00847401284, 0.0273775794, -0.0207855124, 0.00966205634, 0.0146139916, 0.00709146587, 0.00313307159, 0.0198497958, -0.0197446588, 0.0233823862, 0.00424751965, -0.0238029324, -0.0306788683, 0.00716506131, -0.029480312, -0.0183148012, 0.013857008, -0.0106661115, 0.00754881, 0.00443939446, -0.0145088546, -0.0146139916, -0.00203570793, 0.023066977, 0.0321087278, 0.0216371194, 0.00640282081, 0.00856337883, 0.00724391406, -0.02657854, 0.0239080694, -0.0134259481, 0.000364364125, 0.0142249865, 0.017011106, 0.0171898399, 0.00448407745, -0.00508598471, 0.00231826282, 0.0157599803, -0.0131525928, 0.00559852552, 0.00829528, 0.0269360039, 0.00329340505, 0.0246650539, -0.0108816409, -0.0104610948, -0.00390845444, -0.0109552369, 0.0233613588, 0.00670246035, 0.0236977972, -0.000176103858, 0.0165800471, 0.0220786929, 0.0136257075, -0.00333020277, -0.0135626253, 0.00759612164, 0.00885250419, 0.0498347618, -0.0120066032, -1.41072005e-05, -0.0293331202, 0.0227936208, 0.00567737827, -0.0518533848, 0.0234875232, -0.01722138, 0.000417261, -0.0174526814, 0.0072964821, -0.00418969477, 0.0192715451, -0.00477320282, 0.02009161, 0.0156758726, 0.000435659924, 0.000338737096, 0.008700056, -0.00779062416, -0.00336962892, -0.00270726834, 0.00786947645, -0.0135626253, -0.0148347784, 0.0327816, 0.00575097371, 0.00433425745, 0.00174789643, -0.0022407244, -0.0145719368, -0.0150871063, -0.0205752384, -0.00323032308, 0.000756983762, 0.0044052247, 0.00362984207, 0.0173054896, 0.0117332479, -0.00364035578, 0.00196736911, 0.00175052485, 0.00602432899, 0.00484942691, -0.0201336648, 0.00385851436, -0.0113547565, 0.00485994061, -0.00641333451, 0.0210273266, -0.000954114948, 0.0325713269, -0.00385588594, 0.00370080932, 0.0106976526, 0.00397153618, -0.0203965064, 0.00597701734, -0.000139223892, -0.00453401729, 0.00677079894, 0.0214373581, -0.0142670404, 0.0129738599, -0.00885250419, 0.0315409899, -0.0136677623, -0.000352864823, -0.0209747571, -0.0198603105, 0.0227305405, -0.0183989108, 0.00903649349, 0.00916265696, 0.0215530097, 0.00425803335, 0.000835836225, -0.0120381443, -0.00297799497, -0.00785370637, -0.0190717857, -0.00169532816, -0.00721237296, 0.00108947838, 4.43955869e-05, -0.000216844302, 0.00393473823, 0.00663937815, -0.000274998, -0.00161910406, -0.00410821382, 0.000219965543, 0.00427643256, 0.0154971397, -0.00979347713, 0.0117963301, -0.0144352596, -0.00365875475, -0.00844247174, -0.0119119799, -0.0104085263, -0.0103927562, -0.0157915223, 3.93235641e-05, 0.0123430407, -0.0129423188, 0.00636602286, 0.00178075163, 0.00740687549, -0.011197051, 0.0183883961, 0.00372446515, 0.0118173575, 0.0148558058, -0.00380331767, -0.00753303943, -0.0252748467, 0.00986181572, -0.0032881482, -0.0156863853, 0.000583179761, -0.0230038948, 0.0194923319, 0.00421335036, -0.00093965861, -0.0103612151, 0.00600330159, 0.00819014385, -0.0065132142, -0.0149714565, -0.00961474515, 0.00392685318, -0.0233403314, -6.96530187e-05, 0.0207539704, -0.0218473915, 0.00088183349, -0.00087263406, -0.00461812643, 0.0179152824, 0.0105136633, -0.0118278712, 0.00551441638, 0.0129528325, -0.0134154344, 0.00877365191, -0.0118909534, -0.0184830204, -0.0346740596, 0.0165379923, -0.032634411, -0.0175998714, 0.0308260601, -0.000702444115, 0.00633973861, 0.00326449238, 0.0145193683, 0.00598753104, 0.0073385369, 0.0156338178, -0.0298167486, 0.0173580572, 0.0120381443, -0.0118804397, -0.00160990469, 0.00823745504, -0.0032776345, -0.0223941021, -0.0295013394, -0.00389268366, -0.00403987523, -0.0118383849, -0.0247281361, 0.012332527, 0.0172003526, -0.0346950889, -0.0029569678, -0.00275195134, 0.00318038301, 0.00226700865, -0.00679182634, -0.00264550047, 0.0012918663, -0.0160017945, 0.0028807437, -0.00407404453, 0.0149819702, -0.00735430745, 0.0306157861, -0.0328236558, 0.0182622336, -0.00541979354, -0.0187458619, -0.0101667121, 0.0261369664, -0.0146139916, 0.00468909368, -0.0105557181, -0.00707043847, -0.014456287, -0.000136349074, -0.0157074127, 0.0243286155, 0.00801141094, 0.0182201788, 0.0342745408, -0.00114467507, 0.00821642764, 0.00278612063, -0.0261369664, 0.0109972917, -0.0015336806, -0.0104821222, 0.00834784843, 0.0305316783, 0.0212586261, 0.00669194665, -0.00492039416, 0.00273092394, -0.00984078832, -0.0018872025, -0.00502290251, 0.0166431293, -0.0150450515, 0.0155181671, 0.0414448604, 0.0259897746, -0.0147716962, -0.00235900306, -0.0152973793, 0.0134154344, 0.0110498602, 0.0308260601, 0.00742264604, 0.0100668324, -0.00375863444, 0.00800089724, -0.015486626, -0.0103769852, 0.0201546922, -0.0285761356, -0.0128476964, 0.00187143206, -0.0115965707, -0.00952537917, 0.0154340575, -0.0161384735, 0.0050465581, 0.034022212, 0.01222739, -0.000998798, 0.0391108282, 0.00576674426, -0.00502815936, 0.00344322459, 0.0219104737, -0.0108290734, 0.0125217726, -0.00185303309, 0.00404513208, -0.00331706065, -0.0199233908, 0.0058403397, -0.0173054896, 0.03458995, 0.0192610305, -0.00446305, 0.0157074127, 0.00581405591, 0.0306788683, -0.0025167081, -0.00675502839, 0.0255692285, 0.0132156741, -0.00558801182, 0.00842144433, 0.00372709357, -0.0335596129, 0.00837413222, 0.00657629641, 0.017862713, 0.0277770981, 0.00370343775, 0.00285445945, 0.00288862898, 0.0116491383, 0.00352207711, 0.0165064503, -0.00280977646, 0.00378229027, 0.00438682595, 0.017431654, -0.00645013247, 0.00741213234, 0.000540796551, -0.0208801348, -0.00551967323, 0.00934664626, -0.00436842721, -0.0209116749, -0.000319023966, 0.0036324705, 0.00574046, -0.00297799497, 0.0124061229, 0.00399256358, -0.0014127735, 0.0067077172, 0.00686016539, -0.00619780459, -0.0289546289, 0.00864223111, -0.00743841659, 0.0420126, -0.0110708876, 0.0183883961, 0.0201441776, 0.00391896814, -0.0111129414, -0.00546710473, -0.0200075, 0.0445779301, 0.0193661675, 0.00611895183, -0.00698632933, 0.0319825634, -0.00196868344, 0.0337278321, -0.0113337291, -0.0112075647, -0.0112916743, 0.0191558935, 0.0442414954, 0.0408140384, 0.0173160024, 0.00648693, -0.0043815691, 0.011197051, 0.00550390268, -0.00243917, 0.00819014385, -0.0238239598, 0.00155996473, 0.0185881555, -0.0382066518, -0.010808046, 0.0223099925, 0.000503998715, -0.00318038301, 0.0175893586, -0.0141303632, 0.0131631065, -0.00377966184, 0.0167062115, -0.0116386246, -0.00499136141, -0.000906146364, 0.00150739646, -0.0343165956, 0.017042648, -0.0164433699, -0.000173146895, 0.0154655986, -0.00778536731, 0.00365612633, 0.00473114848, -0.0089786686, 0.017505249, -0.00887878891, -0.018072987, -0.00510438345, 0.00455767289, -0.00906803459, -0.0249594357, -0.0186091829, -0.00780113786, -0.00566686457, 0.00784844905, 0.0117227342, 0.0259897746, 0.0430639647, 0.00197656872, -0.00850029662, 0.0143721774, -0.0243075881, -0.0312255789, -0.0247701909, -0.011659652, 0.000277297862, 0.00350367813, -0.0132261878, -0.0253379289, 0.00382697326, 0.00468120864, -0.0119645484, 0.0117753027, 0.0051438096, -0.00197919714, -0.00994066801, 0.0321718082, 0.00285183103, 0.00244442676, -0.00148505496, 0.0228987578, -0.0217843093, -0.0106030293, -0.0163172055, 0.0104295537, -0.0186932925, -0.0075120125, 0.0138464943, -0.00448407745, 0.00153105217, 0.00230774912, 0.00949383806, -0.0247491635, 0.0100563187, 0.00595073309, -0.00847401284, -0.00551967323, 0.0121222539, -0.0107397065, 0.0174211394, -0.00906277727, 0.00272566709, -0.0140252262, -0.0108711272, 0.0292910654, 0.020554211, 0.00109144964, 0.0109236958, -0.0143616637, -0.0211955439, 0.0260528568, -0.00598753104, -0.0204385612, 0.0264313482, 0.00337225734, -0.010240308, -0.0033433449, 0.0232141688, -0.00534094078, 0.0165485051, 0.00269412622, 0.00253773551, 0.0190717857, -0.0050886129, 0.00484942691, 0.0102823628, 0.0040977, -0.00615575, 0.0305527057, -0.00167824351, 0.0263892952, -0.0457134061, 0.0205121562, -0.00938344467, 0.0147086149, -0.0359146744, 0.00628717057, -0.00190165883, 0.00850555301, 0.0245388895, 0.0191874355, 0.0089050727, -0.018178124, 0.00507547101, 0.00531991338, -0.00761714904, 0.0151607022, -0.00618729088, 0.0193451401, -0.00394262373, -0.0223730747, -0.0142880678, -0.023739852, 0.0145403957, 0.00327237765, 0.00484679872, 0.00253642118, -0.000657103956, 0.00764343329, -0.00173344021, 0.0199654456, 0.00848452654, 0.00979347713, -0.0125743411, 0.0121537941, -0.016727237, 0.00640807766, -0.00188063143, -0.00863171741, 0.0106871389, -0.0109972917, -0.00688644918, 0.011197051, 0.00437631225, -0.00902598, 0.00309627387, -0.00572994631, -0.00400044862, -0.00337751419, 0.00114861771, -0.0144773144, 0.000392291055, -0.00885776151, -0.0113442428, -0.00198576809, 0.0148558058, 0.0365244672, -0.00507021416, -0.00548813213, -0.023634715, 0.00974090863, 0.00784319267, 0.0103349304, -0.00496507762, -0.0225412939, -0.0146034779, 0.00720185926, -0.00234191841, -0.000760269235, -0.00707569532, 0.00071427197, 0.0028492026, 0.00544607732, -0.0158546045, -0.00219866983, 0.00597176049, -0.0152448118, 0.00765920337, 0.010224537, 0.0168113466, -0.0189035665, -0.00285183103, 0.0162120685, 0.0143721774, 0.00927830767, -0.000251835096, 0.00818488654, 0.0127530731, -0.029732639, 0.00711249327, -0.00821642764, 0.018356856, -0.0152658392, 0.00982501823, 0.0181255545, -0.000414632581, 0.00296485308, 0.00457081525, -0.00302004977, 0.0181886367, 0.00531202834, 0.0188930519, -0.0052410611, -0.0156653579, -0.00379806082, -0.0112811606, -0.00501501746, -0.0300059952, 0.000396890769, 0.00473114848, -0.0146560464, 0.0253169015, -0.00272303866, 0.008894559, 0.0032881482, -0.0210904088, -0.017294975, -0.0165695325, 0.00857914891, -0.0122379037, -0.00444990769, -0.0154025164, -0.00189508777, 0.0166010745, 0.00408192957, -0.0434004, 0.0204911288, 0.02296184, -0.02296184, -0.010702909, -0.0007339851, 0.0123220133, 0.00615049293, -0.024623, -0.0100195212, -0.0121117402, -0.00628191372, 0.0162330959, -0.0225202665, 0.00276246504, -0.00464178203, -0.00621357467, -0.0179468226, 0.00626614317, 0.0296485294, 0.010913182, -0.00423963461, -0.000717557501, -0.0198708232, -0.0111549962, 0.020449074, -0.0108395871, -0.00451824674, -0.00533831259, 0.00960423145, 0.00434214296, 0.0188720245, -0.00906277727, -0.0280714799, 0.00105793739, -0.00607164064, -0.0199128781, 0.00396365114, -0.0107554775, -2.67769865e-05, -0.0216791742, -0.00404776027, -0.00533042708, 0.0181150418, 0.00541453669, -0.00854760781, -0.0121432813, -0.00303844851, 0.00793781597, 0.0230459496, 0.00590867875, -0.00311992946, -0.0207434576, -0.0155286808, -0.0096568, 0.0299218856, 1.18792068e-05, 0.0270201135, 0.00407930138, 0.00350893498, -0.0221207477, 0.0184830204, 0.00873685442, -0.00117753027, -0.010135171, -0.011375783, 0.029732639, -0.0117332479, -0.00652898476, 0.00880519301, -0.00558275497, 0.0058929082, 0.0155707346, 0.00603484269, -0.0349053629, 0.00650795735, 0.0146981012, 0.0316251, 0.00851081, 0.0370711759, -0.0110498602, 0.00283080386, 0.0109552369, 0.0130895106, -0.0182201788, -0.00965154264, 0.0143196089, 0.011197051, 0.00618203403, 0.00205410691, -0.0169480257, -0.00642384822, 0.00641859137, 0.000755012443, 0.0114178378, 0.00212638825, 0.020869622, 0.000154830122, -0.0110078054, -0.00153236638, -0.0331390649, 0.0104505811, -0.0239290968, -0.00175183907, -0.0171582978, 0.0197236314, -0.0158440899, -0.00812706165, 0.0291438736, -0.000711643544, 0.00931510516, -0.0161910411, -0.00646064617, 0.0136467349, -0.00464966753, 0.00158362056, 0.0176419262, -0.0052726022, 0.0271462779, 0.000412989815, -0.0126584508, 0.0138464943, -0.00718083186, -0.00360618648, 0.00787473377, -0.00871582702, 0.0114388652, -0.00570891891, -0.0275878515, -0.012048658, 0.023739852, 0.00566686457, -0.00341168372, 0.00549338898, -0.0126374234, -0.0119119799, -0.00138123252, -0.00806923676, -0.010240308, 0.0157074127, -0.00786422, -0.0130264284, -0.00840041693, 0.00226569432, -0.00426854705, -0.0230459496, 0.0212796535, 0.0144037185, 0.00493616471, -0.0125217726, 0.0305316783, -0.0141303632, -0.0118804397, -0.000144809281, 0.00707043847, 0.0185355879, 0.00903649349, 0.0187353473, -0.00682336744, 0.0138254669, 0.0059244493, 0.0218263641, -0.00825848244, 0.00494930707, -0.00338277104, -0.00382434484, 0.00682336744, -0.0159282, 0.0139831714, -0.01796785, 0.00244179834, -0.0193871949, 0.0105294334, -0.0147927236, -0.00609266758, 0.00636602286, 0.0338539965, 0.0206488334, -0.000729385356, 0.0140252262, -0.0145193683, -0.00374286412, -0.00981976092, 0.00589816505, 0.00483102817, 0.00251013716, 0.0188615117, 0.0137308436, 0.00491250912, 0.0248963535, 0.00482577132, -0.00570891891, 0.00939395837, 0.0096568, 0.0175367892, 0.010135171, -0.00652372791, -0.00571417576, 0.00477057463, -0.0137728984, 0.0258846376, 0.0109236958, 0.0378702134, 0.00678131264, -0.00269938307, -0.00597176049, 0.0156233031, 0.00782216527, 0.0102297943, 0.0205016434, -0.000942944142, -0.00770125818, -0.018251719, 0.00472852, 0.00342219742, 0.00221444038, -0.00994066801, -0.0117858164, -0.0072754547, -0.000367978209, -0.0139306039, -0.00251145125, -0.0173475444, -0.0051096403, 0.0230038948, -0.0132261878, -0.00163750304, 0.00357990223, 0.0266416222]
|
09 Dec, 2022
|
Virtual Functions and Runtime Polymorphism in C++
09 Dec, 2022
A virtual function is a member function that is declared in the base class using the keyword virtual and is re-defined (Overridden) in the derived class. It tells the compiler to perform late binding where the compiler matches the object with the right called function and executes it during the runtime. This technique falls under Runtime Polymorphism.
The term Polymorphism means the ability to take many forms. It occurs if there is a hierarchy of classes that are all related to each other by inheritance. In simple words, when we break down Polymorphism into ‘Poly – Many’ and ‘morphism – Forms’ it means showing different characteristics in different situations.
Class Hierarchy
Note: In C++ what calling a virtual functions means is that; if we call a member function then it could cause a different function to be executed instead depending on what type of object invoked it. Because overriding from derived classes hasn’t happened yet, the virtual call mechanism is disallowed in constructors. Also to mention that objects are built from the ground up or follows a bottom to top approach.
Consider the following simple program as an example of runtime polymorphism. The main thing to note about the program is that the derived class’s function is called using a base class pointer.The idea is that virtual functions are called according to the type of the object instance pointed to or referenced, not according to the type of the pointer or reference.In other words, virtual functions are resolved late, at runtime.
Now, we’ll look at an example without using the concepts of virtual function to clarify your understanding.
C++
// C++ program to demonstrate how we will calculate
// area of shapes without virtual function
#include <iostream>
using namespace std;
// Base class
class Shape {
public:
// parameterized constructor
Shape(int l, int w)
{
length = l;
width = w;
}
int get_Area()
{
cout << "This is call to parent class area\n";
// Returning 1 in user-defined function means true
return 1;
}
protected:
int length, width;
};
// Derived class
class Square : public Shape {
public:
Square(int l = 0, int w = 0)
: Shape(l, w)
{
} // declaring and initializing derived class
// constructor
int get_Area()
{
cout << "Square area: " << length * width << '\n';
return (length * width);
}
};
// Derived class
class Rectangle : public Shape {
public:
Rectangle(int l = 0, int w = 0)
: Shape(l, w)
{
} // declaring and initializing derived class
// constructor
int get_Area()
{
cout << "Rectangle area: " << length * width
<< '\n';
return (length * width);
}
};
int main()
{
Shape* s;
// Making object of child class Square
Square sq(5, 5);
// Making object of child class Rectangle
Rectangle rec(4, 5);
s = &sq // reference variable
s->get_Area();
s = &rec // reference variable
s->get_Area();
return 0; // too tell the program executed
// successfully
}
Output
This is call to parent class area
This is call to parent class area
In the above example:
We store the address of each child’s class Rectangle and Square object in s and
Then we call the get_Area() function on it,
Ideally, it should have called the respective get_Area() functions of the child classes but
Instead, it calls the get_Area() defined in the base class.
This happens due to static linkage which means the call to get_Area() is getting set only once by the compiler which is in the base class.
Example: C++ Program to Calculate the Area of Shapes using Virtual Function
C++
// C++ program to demonstrate how we will calculate
// the area of shapes USING VIRTUAL FUNCTION
#include <fstream>
#include <iostream>
using namespace std;
// Declaration of Base class
class Shape {
public:
// Usage of virtual constructor
virtual void calculate()
{
cout << "Area of your Shape ";
}
// usage of virtual Destuctor to avoid memory leak
virtual ~Shape()
{
cout << "Shape Destuctor Call\n";
}
};
// Declaration of Derived class
class Rectangle : public Shape {
public:
int width, height, area;
void calculate()
{
cout << "Enter Width of Rectangle: ";
cin >> width;
cout << "Enter Height of Rectangle: ";
cin >> height;
area = height * width;
cout << "Area of Rectangle: " << area << "\n";
}
// Virtual Destuctor for every Derived class
virtual ~Rectangle()
{
cout << "Rectangle Destuctor Call\n";
}
};
// Declaration of 2nd derived class
class Square : public Shape {
public:
int side, area;
void calculate()
{
cout << "Enter one side your of Square: ";
cin >> side;
area = side * side;
cout << "Area of Square: " << area << "\n";
}
// Virtual Destuctor for every Derived class
virtual ~Square()
{
cout << "Square Destuctor Call\n";
}
};
int main()
{
// base class pointer
Shape* S;
Rectangle r;
// initialization of reference variable
S = &r
// calling of Rectangle function
S->calculate();
Square sq;
// initialization of reference variable
S = &sq
// calling of Square function
S->calculate();
// return 0 to tell the program executed
// successfully
return 0;
}
Output:
Enter Width of Rectangle: 10
Enter Height of Rectangle: 20
Area of Rectangle: 200
Enter one side your of Square: 16
Area of Square: 256
What is the use? Virtual functions allow us to create a list of base class pointers and call methods of any of the derived classes without even knowing the kind of derived class object.
Real-Life Example to Understand the Implementation of Virtual Function
Consider employee management software for an organization.Let the code has a simple base class Employee, the class contains virtual functions like raiseSalary(), transfer(), promote(), etc. Different types of employees like Managers, Engineers, etc., may have their own implementations of the virtual functions present in base class Employee.
In our complete software, we just need to pass a list of employees everywhere and call appropriate functions without even knowing the type of employee. For example, we can easily raise the salary of all employees by iterating through the list of employees. Every type of employee may have its own logic in its class, but we don’t need to worry about them because if raiseSalary() is present for a specific employee type, only that function would be called.
CPP
// C++ program to demonstrate how a virtual function
// is used in a real life scenario
class Employee {
public:
virtual void raiseSalary()
{
// common raise salary code
}
virtual void promote()
{
// common promote code
}
};
class Manager : public Employee {
virtual void raiseSalary()
{
// Manager specific raise salary code, may contain
// increment of manager specific incentives
}
virtual void promote()
{
// Manager specific promote
}
};
// Similarly, there may be other types of employees
// We need a very simple function
// to increment the salary of all employees
// Note that emp[] is an array of pointers
// and actual pointed objects can
// be any type of employees.
// This function should ideally
// be in a class like Organization,
// we have made it global to keep things simple
void globalRaiseSalary(Employee* emp[], int n)
{
for (int i = 0; i < n; i++) {
// Polymorphic Call: Calls raiseSalary()
// according to the actual object, not
// according to the type of pointer
emp[i]->raiseSalary();
}
}
Like the ‘globalRaiseSalary()‘ function, there can be many other operations that can be performed on a list of employees without even knowing the type of the object instance. Virtual functions are so useful that later languages like Java keep all methods virtual by default.
How does the compiler perform runtime resolution?
The compiler maintains two things to serve this purpose:
vtable: A table of function pointers, maintained per class.
vptr: A pointer to vtable, maintained per object instance (see this for an example).
The compiler adds additional code at two places to maintain and use vptr.
1. Code in every constructor. This code sets the vptr of the object being created. This code sets vptr to point to the vtable of the class.
2. Code with polymorphic function call (e.g. bp->show() in above code). Wherever a polymorphic call is made, the compiler inserts code to first look for vptr using a base class pointer or reference (In the above example, since the pointed or referred object is of a derived type, vptr of a derived class is accessed). Once vptr is fetched, vtable of derived class can be accessed. Using vtable, the address of the derived class function show() is accessed and called.
Is this a standard way for implementation of run-time polymorphism in C++? The C++ standards do not mandate exactly how runtime polymorphism must be implemented, but compilers generally use minor variations on the same basic model.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++
|
https://www.geeksforgeeks.org/virtual-functions-and-runtime-polymorphism-in-c-set-1-introduction/
|
Pandas
|
Virtual Functions and Runtime Polymorphism in C++
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0537431799, -0.0194086395, -0.0126721151, 0.0240652226, 0.0236554425, -0.00125727744, -0.0373271704, 0.0179930385, 0.00798448827, 0.0235561021, -0.00226775603, 0.0210105032, -0.0139573319, -0.066210404, 0.0111571737, 0.0270454362, -0.00145207788, -0.00032091621, -0.0169375464, 0.0130881034, 0.0308948774, 0.0114986561, -0.0319627859, -0.0290322453, -0.0221529193, -0.00269926619, 0.0210601743, -0.0185642447, -0.0160931516, 0.0512099974, 0.0343469568, 0.0179433674, 0.00585177308, -0.00721459975, 0.00668685371, -0.00967327598, 0.0182165541, -0.0303733405, -0.011616623, -0.0174218304, 0.0104121203, 0.0243011564, 0.0319379531, -0.0103562409, -0.0229352247, 0.0558293276, 0.0230594, 0.0207869876, 0.00413504615, -0.0178564452, 0.0185269918, -0.00463174796, 0.0454234183, 0.0347194858, 0.0167016126, -0.0175335892, 0.0222522598, -0.0185269918, 0.010120308, -0.0553326271, 0.00298642204, 0.0298021324, 0.0288335644, -0.00292899087, 0.0280388407, 0.0146402977, -0.0728165433, 0.0227737967, -0.0206876472, -0.0479069278, -0.0275918078, 0.0034117233, -0.0310687236, -0.00827009231, -0.0178936981, 0.0106418449, -0.000874661549, 0.0482794568, 0.00951184705, 0.0232580807, -0.0143174417, 0.00654405169, -0.0243011564, 0.00925107859, 0.00106946193, -0.00358867343, -0.00996508822, -0.0340489373, 0.0163663384, 0.0143174417, -0.0401335396, -0.00747536821, 0.0321117975, -0.003136985, -0.028535543, 0.0318882838, -0.0335274, -0.00654405169, -0.0280636754, 0.0571207553, 0.0194458924, 0.00742569799, -0.0293054301, -0.0122002484, 0.0269709304, -0.0279643349, 0.0222646762, -0.000560342218, 0.00987816509, 0.03844475, -0.0354893729, -0.0307707023, 0.00065425, 0.0188871026, 0.00356073398, 0.0115545355, -0.00367249199, -0.0897540897, 0.0140318377, 0.0150997471, 0.0180551261, 0.010927449, 0.0265487339, 0.0162794143, -0.0538425222, 0.00438650139, 0.012628654, -0.0390904658, 0.0353403613, 0.00372526655, -0.00967327598, -0.0121505782, 0.0194707271, -0.0222522598, 0.0240155514, 0.00845635496, 0.0319131166, -0.0298518036, -0.00527746091, 0.0240900572, -0.00492045656, -0.0194458924, -0.000725262857, 0.00382150267, -0.0283616967, -0.0192844644, -0.0320372917, 0.0308203734, -0.0137959039, -0.0118153039, -0.0212961081, -0.0364331082, 0.0425673798, 0.0189491902, 0.0177819394, -0.0203027036, 0.0301994942, 0.0201785285, 0.00743190711, -0.00573691074, -0.000443151512, -0.00913932081, -0.0342724547, -0.00744432444, 0.00753745623, -0.00221032486, 0.0212340206, 0.0347691551, -0.0618394278, 0.0222522598, -0.0148265613, 0.0443058386, 0.0568724051, -0.00211564102, -0.039140135, 0.00210477575, 0.0192596279, 0.0134978825, -0.00539853238, 0.00721459975, 0.0061156461, -0.0189367719, -0.00596042676, -6.70354e-05, -0.00311525422, 0.0334032252, 0.0187877622, -0.0029786611, 0.0100520113, -0.0081148725, -0.0268219206, 0.0275669731, 0.0258781854, 0.0136468932, 0.00131703692, 0.00575243263, -0.0320124589, -0.0181544665, 0.0175460055, 0.0128770052, -0.0246240124, -0.0470377, -0.0358122289, 0.0066620186, -0.0129142581, -0.0218052268, -0.00627707411, -0.0295537822, 0.0516073592, -0.0037904589, 0.0431137532, 0.0368801393, -0.0259278566, -0.00477455, -0.00798448827, -0.0131501909, -0.0503407679, 0.0171734784, -0.0127155771, -0.0391153, 0.0116538759, 0.0176577643, -0.00920761749, -0.024003135, 0.00594180031, -0.00488009909, 0.0398603529, 0.00772992847, -0.0187505092, 0.029628288, 0.0312177353, 0.00750020333, -0.0231587403, -0.0342972875, 0.000745053345, -0.0241769813, -0.0324346535, -0.0112192612, -0.0204020441, 0.0269460957, -0.00415367214, 0.0149631547, -0.00480248965, 0.0147148035, 0.0295786168, 0.0475840718, -0.0173845775, 0.0332790501, -0.00931316614, -0.00346139353, 0.0226247851, 0.030721033, 0.0107101416, -0.0102693187, 0.0153480982, 0.0140815079, -0.0167388655, 0.00976019818, -0.024325991, 0.0408040881, -0.0158075485, 0.0453985818, -0.00657509547, 0.0258533508, 0.00406054081, -0.0440326519, 0.0124361813, -0.00239503593, 0.000549864897, 0.00205820985, 0.0279891696, -0.014367112, -0.00175708404, -0.000752038206, 0.0166146886, 0.0164160077, -0.0170493033, 0.013435795, 0.038494423, -0.0082763005, 0.0277904887, -0.0332790501, -0.00613116799, -0.00157780561, 0.0367808, -0.0165153481, -0.0399348587, -0.00284982892, -0.00823283941, -0.015745461, -0.0127031589, -0.022339182, 0.0019992264, -0.00340241, 0.0278649945, 0.00515018124, -0.0142553532, -0.0168506224, -0.00694762217, -0.0283368621, 0.0432130918, -0.0473853908, -0.00030326, -0.0245495066, -0.00591386063, 0.00494218711, 0.0212340206, 0.00402328791, 0.0196197368, -0.023270499, -0.00354521209, -0.000704696286, -0.0243756622, -0.00677998504, -0.0129266754, 0.010523878, -0.0054513067, 0.0165401846, -0.0199301764, -0.00741948932, -0.0255553294, 0.0160186458, 0.00702212751, 0.0247357711, 0.0420210063, -0.0095677264, 0.0130260158, -0.0237423666, -0.0403818898, -0.0408289209, -0.016068317, -0.0332790501, -0.0614917353, 0.0306961965, -0.00579278963, -0.0360109098, -0.010766021, 0.023431927, -0.0320869647, -0.01452854, -0.00257353834, 0.011088877, 0.00876058545, -0.0132495314, -0.023916211, -0.0664090887, -0.00192472106, -0.0161676574, 0.00494839577, 0.0391649716, 0.000782306, 0.0134482123, 0.00306713628, -0.00477765454, 0.0382709056, 0.00768025825, 0.000892511802, -0.0236554425, -0.00101823953, 0.00101901568, 0.0383950807, 0.0094062984, -0.034967836, 0.00587350363, -0.0508623086, -0.0479814336, -0.00897168368, -0.0206876472, 0.0678991899, 0.00097633031, -0.0250213742, -0.0437346287, 0.0525510944, -0.00447963318, -0.0389166176, 0.0386682674, -0.02169347, 0.00352037698, -0.00455103396, 0.0194831453, -0.0128521696, 0.059256576, -0.0306216925, 0.00129142578, -0.00517501635, 0.0020194049, -0.0352161862, 0.00850602519, -0.00500117056, -0.0180178732, 0.0173100717, 0.0421948545, 0.0371284895, 0.0220039077, -0.00551649882, -0.0238044541, -0.0516073592, -0.00780443382, -0.0563260317, -0.0401583761, 0.0318882838, 0.0214575361, 0.0151121654, 0.019185124, -0.0271696113, 0.00484595122, -0.00524020847, 0.021854898, -0.00263873045, 0.0166891944, 0.00788514782, -0.0325588286, -0.0304478463, -0.0208366588, 0.000198292837, -0.0241148919, 0.0296779573, 0.0512099974, -0.0129142581, 0.00892201345, 0.0134109603, -0.00317889429, 0.00915794726, 0.0370788202, 0.0115421182, 0.0275421385, 0.0321117975, -0.000835080631, 0.0373023376, -0.018415235, -0.0472612157, -0.00202406151, 0.0281630158, 0.0070780064, 0.00913932081, -0.0210229214, 0.0336267389, 0.0104742078, -0.011697337, -0.0239658821, 0.00668064505, 0.0488009937, 0.0247233529, -0.0285107065, -0.0293799359, 0.00165774371, 0.0129763456, -0.0322608091, -0.0170120504, 0.0119208535, -0.0216065459, -0.030721033, -0.00581452, 0.0188250132, 0.0616407469, -0.0109647019, 0.00556306494, -0.0380722247, -0.021085009, -0.0386682674, 0.00202871813, 0.00222584675, -0.0182786416, 0.00610633288, 0.0281133447, 0.0287838932, 0.0172604024, 0.0103003625, -0.00438339729, -0.0386682674, 0.0155095272, -0.0379232131, -0.00657509547, 0.0229352247, 0.0267474148, -0.0165029317, 0.0108094821, -0.00904618949, 0.0205758885, -0.0369298086, 0.0160558987, 0.0110950861, 0.00844393764, -0.0204517134, -0.00172604015, 0.0112627232, 0.0497695617, 0.0137959039, 0.00449825963, -0.00421265559, 0.012181622, 0.00627397, 0.0191602875, -0.0440326519, -0.00187039434, -0.0126845324, -0.0207000654, 0.016714029, 0.0322359726, 0.0535941683, -0.0191354528, -0.0318882838, -0.0385440923, 0.00281568081, -0.0195203964, -0.020762153, 0.0320869647, -0.0297276285, -0.0220659953, -0.0174963363, 0.00661855703, 0.0308203734, -0.000967017142, 0.0521040633, 0.021333361, 0.00169189193, -0.0209856685, -0.030596856, -0.00290415576, -0.0208863281, 0.0112440968, -0.00980986841, 0.0110826679, 0.0184400696, -0.0153108463, 0.0328320153, 0.0291564204, -0.00635778857, -0.00303609227, -0.00268684863, -0.0229724776, 0.0171486437, 0.00434614439, 0.0214823708, -0.0160186458, -0.0190982, 0.0256049987, 0.0198432542, -0.00917036459, 0.00905860681, 0.00207838835, -0.000305782305, -0.0177322701, -0.0269709304, -0.00718355598, 0.025778845, -0.0159689765, -0.00371595356, 0.00220877258, -0.013274367, -0.0188250132, -0.00697866594, -0.00656888681, 0.012467226, -0.037799038, 0.00527746091, -0.00841910299, -0.00436477084, -0.00829492696, -0.0130260158, -0.0375010185, -0.0194707271, 0.0416733176, 0.0202406161, 0.00404191436, -0.00764921401, 0.0354893729, -0.000276484643, -0.028610047, 0.0136220586, -0.00661234837, -0.0298766382, 0.0297772978, -0.0112378877, 0.0316399299, 0.0366317891, -0.0269460957, -0.00985953864, -0.0200295169, -0.00218238542, 0.00890959613, -0.0113186017, -0.0162421633, -0.00684828172, -0.012790082, -0.00650059, -0.00524020847, -0.00664339215, -0.0228731371, -0.0158572178, -0.00949322153, 0.0527001061, 0.0216810517, 0.00140240765, 0.0088164648, -0.00659372192, -0.0114241512, -0.000553357298, -0.0178936981, -0.0183034763, 0.0341731124, 0.0434366092, 0.0153232636, -0.00992162712, 0.012423764, 0.0153853511, 0.0081955865, -0.0513093397, 0.0230345652, 0.00590765197, -0.0534451604, 0.00585798174, 0.00716492953, 0.033750914, 0.0160558987, -0.035613548, 0.00222895131, 0.0335522331, -0.0146651333, -0.00449825963, 0.0180178732, -0.0217307229, 0.0017850236, -0.00275824941, 0.00336826197, -0.00178191916, -0.0211222619, -0.0191354528, 0.0158572178, -0.0119829411, -0.0160310641, -0.0490493439, 0.0274924673, -0.0105735483, 0.0297772978, 0.0146278804, 0.00230035209, 0.0358619019, -0.0171983149, 0.0327575095, -0.035290692, 0.0119891502, -0.00851223432, 0.0996384621, -0.0257291757, 0.00747536821, -0.0123244235, 0.0171734784, 0.0239783, 0.00841910299, -0.00899651926, -0.0214575361, 0.00907723326, 0.0124051375, -0.0157578774, -0.0202654507, 0.0189864431, 0.00301436149, -0.0114365686, -0.00679240283, 0.00707179774, -0.0109398663, -0.00174156216, 0.0170244686, -0.0113248108, -0.0170244686, 0.0182041358, -0.00209080591, 0.00805899315, 0.0212588552, -0.0381467305, -0.001492435, -0.0119332708, -0.0187505092, 0.00776718091, -0.0254559889, -0.022823466, 0.0272441171, -0.0227737967, -0.0136593105, -0.0116600841, -0.000864572299, 0.0262010414, -0.0129887629, -0.0061560031, 0.00792860892, 0.00422196882, -0.0127279945, -0.0257291757, -0.00472487975, -0.0246861, -0.00772992847, 0.0103251971, 0.00800311472, 0.01732249, -0.0289329048, -0.0259526912, -0.00658751326, 0.0118898097, 0.00504773622, 0.0249965396, -0.0111447563, -0.0100085493, 0.00992162712, -0.0136220586, 0.00433993572, -0.00164687831, -0.014205683, -0.0109150317, -0.0248847809, 0.00797827914, -0.0123368418, 0.0159938112, 0.0267225802, 0.0217431393, 0.0442810021, 0.017930951, -0.0108529432, 0.0243011564, 1.71226457e-05, 0.00997129735, -0.0031261195, -0.0233698394, -0.0245370902, 0.00103764201, -0.00946217682, -0.0113868983, -0.00210943213, -0.01732249, -0.00949943, -0.00118975702, -0.00110593857, 0.00670548, -0.00868608, -0.0434862785, -0.00011583251, 0.0276911482, -0.0382709056, -0.0249841213, -0.020923581, 0.00849360786, -0.0081521254, 0.0208863281, 0.0320869647, -0.0383950807, 0.0235809386, 0.0189616065, 0.0105176698, -0.0100209676, 0.0130632687, 0.0177446865, 0.0373768434, 0.0240155514, -0.0339247622, 0.00521226879, -0.0180054549, -0.0119022271, 0.00300504849, 0.013435795, 0.0166271068, -0.0108901961, 0.0325339958, 0.013435795, 0.0299014729, -0.0221280847, -0.00827009231, 0.00221498148, -0.0111758, 0.0140690906, -0.015137, 0.00845014676, 0.0123616764, 0.022426106, -0.0116538759, -0.0269460957, -0.0105487136, -0.0124982698, 0.0334528945, 0.0197314955, 0.021494789, -0.0393636525, -0.00220877258, -0.0124796433, 0.0101886038, 0.00730152242, -0.00246488466, 0.0161676574, 0.00725185219, 0.0241893977, -0.000607296068, 0.0328320153, 0.0318386108, 0.0120512377, 0.0669554621, 0.0242887381, 0.00103453756, -0.0426667221, -0.00959256198, -0.0122499187, -0.0258285161, 0.0114986561, -0.00286845537, 0.0147520555, -0.031813778, 0.00802174117, -0.0181793012, -0.0171362273, -0.0218921509, -0.015298428, 0.0242266506, 0.0132495314, -0.0123740938, -0.0120822815, 0.0274179615, 0.0160310641, -0.0130135985, -0.00346449786, -0.0048645772, 0.0220659953, 0.0512099974, 0.000440047123, 0.00659993058, 0.00411331514, 0.000870781078, -0.0290570799, -0.0081148725, 0.0117221726, 0.0163663384, 0.0250462089, 0.00715251174, 0.0130135985, 0.0135723883, 0.000936749333, 0.00820800383, -0.00632053567, -0.00309507572, 0.0296531226, -0.00970432, 0.00931316614, 0.0261265375, -0.0371284895, -0.023270499, -0.000101668738, 0.0105052516, 0.0150376596, -0.00384012912, -0.0242763218, 0.0199550111, -0.00983470399, -0.000423749065, 0.0230221469, -0.0111199208, 0.0189988595, 0.0220659953, 0.00202406151, 0.00519985147, 0.00049631414, -0.0254063178, -0.00112301263, 0.0157951303, 0.0238292888, 0.0283616967, 0.0152487578, -0.00446721539, 0.0348188244, 0.0150252422, 0.00735119265, 0.016838206, -0.00396740902, -0.0270206016, -0.00561273517, 0.00963602308, -0.00146449544, 0.0166891944, 0.00993404444, -0.00997129735, 0.0190236941, -0.0248226933, 0.0357625596, 0.0190982, -0.00685449038, -0.00294606504, -0.0130756861, -0.0343717933, 0.00345518487, -0.0282375216, -0.0220287442, -0.0278401598, 0.00335894874, -0.0345208049, 0.0184524879, 0.0152487578, -0.0208242405, 0.0157951303, 0.0195328146, -0.000559954147, -0.00117035455, -0.00776718091, 0.00391153, 0.005119137, -0.000529686338, 0.00135040912, -0.0158696361, -0.0182041358, 0.0104121203, 0.0107908556, 0.0273434576, 0.0183283109, -0.0082390476, -0.00671789749, -0.00187660311, -0.0148886489, -0.0191727057, -0.00273651886, 0.0190485306, 0.0317889415, 0.0229352247, -0.0270454362, -0.00143733202, -0.00384944212, 0.0161179863, 0.00852465164, -0.0228483025, 0.0116042057, 0.0099899238, -0.00264493935, 0.00625534356, 0.0276663136, 0.00218859408, 0.00605666265, -0.00209080591, -0.0077795987, 0.00681723794, -0.0144416168, -0.0127404118, 0.016391173, -0.0333038829, -0.0136468932, -0.0510609895, -7.90164e-05, 0.00800311472, 0.0111447563, 0.0223764349, -0.0151245827, -0.0394133218, 0.00730773155, 0.00676135905, 0.0314660855, 0.00546993315, 0.00249282434, 0.00554133393, 0.00584556442, 0.0154350214, -0.0198929235, -0.00491424743, -0.0373271704, -0.0104059111, -0.0163415037, 0.00385254668, 0.020762153, 0.049546048, 0.0135475527, 0.0533458181, -0.014205683, -0.0116787106, 0.0239286292, 0.0112316785, -0.0119767319, -0.0399100222, -0.0164656788, 0.0242142323, 0.00349243754, -0.0109957457, 0.00772992847, -0.0196197368, -0.0219294038, 0.00616221176, -0.0310687236, 0.0191727057, -0.0204020441, 0.0247854404, -0.00562515249, 0.0222770944, 0.00514707668, 0.000767948222, -0.020762153, 0.00520606, -0.000175009918, -0.0193589684, 0.031043889, 0.00178191916, 0.0173969958, 0.0112875579, -0.0233325865, -0.00515639, 0.0481056087, 0.0050353189, -0.0108156912, -0.00864261854, -0.0249592867, -0.0152487578, -0.0105983838, -0.0202530324, 0.000684517727, 0.0280636754, -0.00216065464, -0.0126472805, 0.0184524879, -0.0296034515, 0.00649438147, -0.00320062484, -0.0325836651, 0.00300349621, 0.00248971977, 0.0204268787, -0.00544199347, -0.0211346801, 0.0326830074, 0.0182041358, 0.00154365739, -0.00557858683, -0.012020194, -0.0110702505, 0.00582693797, 0.0184524879, 0.0272192806, -0.0304478463, 0.00524331257, 0.0151990876, -0.00676756771, 0.00447963318, -0.00338067953, -0.0055879, 0.0170989744, -0.0330306962, -0.00629880512, 0.0115234917, -0.0533954874, 0.0266232397, 0.0114427777, 0.0103562409, 0.0104121203, -0.0021373718, -0.000318781938, 0.0117470073, -0.0265735686, -0.000400466175, -0.023431927, 0.0201785285, -0.0130260158, 0.0197190773, -0.0047435062, -0.0158323832, 0.0245495066, -0.00797207095, -0.0248723626, 0.0126969507, 0.0186014976, 0.00717113819, -0.00406674948, 0.0123492591, -0.0146527151, 0.0281381812, -0.0132371141, -0.0160186458, 0.0144912871, 0.00564377895, -0.00557237817, 0.00761817, 0.0142801888, 0.0267474148, -0.0135103008, -0.040953096, -0.0246861, 0.0129390927, 0.0120698642, -0.0135599701, 0.015782712, -0.0169499628, -0.0262010414, -0.0114862388, -0.00938767195, 0.0366069525, 0.013435795, -0.0161800738, 0.00485526398, 0.022662038, -0.01452854, 0.00154753786, -0.0516570322, -0.020277869, 0.0317392722, 0.0449267142, -0.0029988396, -0.01193948, -0.00515328534, -0.00968569331, 0.0760451108, 0.0153480982, -0.0126348622, 0.0271696113, 0.0274924673, -0.00372837111, -0.0166022722, 0.00461622607, 0.0133861247, 0.000165890786, 0.033105202, -0.00172138365, -0.00217617652, 0.0412262827, 0.00724564353, 0.0120760724, 0.00421576, 0.00725185219, 0.0153605165, -0.0497695617, -0.0208739098, 0.0291067492, 0.0172479842, -0.0109088225, 0.0350175053, -0.00675515039, -0.0248972, -0.0501172543, -0.00199767412, -0.00653163437, 0.019185124, -0.00671168882, 0.0162918326, -0.000745053345, -0.00669306237, 0.0128149176, 0.0184649043, 0.0103997029, -0.005038423, 0.00830734428, -0.0301249903, 5.59275068e-05, -0.0121381609, 0.00275824941, 0.00229103887, 0.0134233776, -0.0139821675, -0.00969190244, -0.0184028167, -0.00812729, 0.0130881034, -0.0178936981, 0.0408289209, 0.00188746839, -0.00534886215, 0.0247854404, -0.0123182153, -0.0280636754, 0.00772371935, -0.000814126, -0.00543268071, -0.00190764701, -0.0173721593, -0.0147023853, 0.0176080931, 0.0300504845, 0.00579899829, -0.0125789838, 0.00835701451, 0.0107846465, 0.0192968808, 0.00810866337, 0.0106480541, 0.0136841461, -0.000735352107, 0.0214202832, 0.018738091, 0.0198184177, 0.0242763218, -0.041325625, -0.00705317128, 0.0226992909, 0.0167264473, 0.0304975156, -0.00425301259, -0.0063298489, 0.0130632687, -0.00763679668, 0.00317889429, 0.0123492591, -0.00344276731, 0.00459449552, -0.0144788697, 0.0223267656, -0.0248226933, -0.0266977437, 0.00568413595, 0.020936, -0.00325960829, -0.0223640166, -0.0120698642, 0.013882827, -0.0154971089, -0.00500737922, 0.00306713628, -0.030274, 0.00451378152, -0.0193589684, 0.0339744315, 0.00488630822, 0.0241893977, 0.000278618914, -0.00940008927, -0.0128770052, 0.0151866702, 0.00586729497, 0.0113993157, 0.0199053418, -0.00621498656, 0.0170244686, -0.0205510538, 0.0274179615, 0.0125168962, -0.0194831453, 0.0138331568, 0.0181793012, 0.00910206791, 0.0280388407, 0.00787273049, 0.00504152756, 0.000200233088, 0.00661855703, 0.00926349591, -0.000408227148, 3.91686553e-05, -0.00892201345, 0.0105797574, 0.0288832337, -0.00599147053, -0.0230221469, -0.00321304239, 0.0345456377, 0.0122126658, 0.0135599701, -0.0166271068, -0.0103997029, -0.00329375663, -0.016391173, -0.00890959613, -0.0223516, -0.0234567616, -0.0285603777, 0.010201022, 0.0242763218, -0.00295537827, -0.0297524631, 0.0227117091, -0.00529608736, 0.0448025391, -0.00589833874, -0.00933179259, 0.0166395251, 0.00610633288, 0.0126596978, -0.00624292577, -0.00251610717, -0.00276601058, 0.000355840573, -0.0393884853, -0.002617, 0.0392146409, -0.0215444583, -0.0174342487, -0.00839426741, 0.0254559889, -0.0206503943, 0.00985333, -0.0283865314, 0.00722701708, 0.0118153039, -0.00189988595, 0.0143174417, 0.00650059, 0.0105983838, -0.0178191923, 0.0433869399, -0.0297276285, 0.0230842363, 0.0109088225, -0.0184773225, 0.0167016126, 0.043188259, 0.000300931686, -0.0228979718, 0.0168133695, 0.000438882969, -0.000666279462, -0.0212836899, -0.0116414586, -0.0181793012, -0.0398106836, 0.00659993058, -0.0131626092, 0.00488320366, 0.00675515039, 0.00825146586, -0.0398851894, -0.0070345453, 0.000453240762, -0.0254808236, -0.00531781791, 0.00741948932, -0.00196663034, -0.00604114076, 0.0158820525, -0.000114474336, 0.00087155716, 0.0224881936, 0.0301746596, 0.0308452081, 0.0110143721, 0.0232084114, -0.00805278495, 0.00490803877, 0.0130756861, 0.0163787547, -0.00384633779, 0.000644936808, -0.00460691284, -0.000877765939, -0.00936283637, 0.00618704688, 0.022947643, -0.00899651926, 0.00817075185, 0.0155964494, 0.0423687, -0.0177198518, -0.0175956767, 0.0278898291, -0.0147148035, -0.0108715696, -0.0159317236, -0.0140566723, 0.0047435062, -1.14413706e-05, -0.00641987612, -0.00900893658, -0.0112689314, 0.0270206016, -0.0224881936, -0.0212961081, -0.0244253315, 0.00589213, -0.00804657582, -0.00491735199, 0.024524672, -0.0024322886, 0.0238292888, -0.0381964, 0.0392146409, -0.0109771192, -0.00168723532, 0.002458676, 0.0153108463, -0.00751262112, 0.0105797574, 0.00982228667, 0.00858053099, 0.0106542623, 0.0162421633, 0.026350053, -0.00901514571, 0.0111447563, 0.0249468684, -0.0494467057, 0.00634537078, -0.003136985, 0.0141187608, -0.00257509062, -0.0223267656, -0.00261855195, -0.00136437896, 0.00922003482, 0.000214202824, 0.0120077757, -0.0008110216, -0.000720606244, 0.0294544417, 0.00159876025, -0.0070780064, 0.032136634, 0.000717889925, -0.00761196157, 0.000502911, 0.0139076617, 0.0247854404, -0.0143919466, -0.00319752051, 0.0142181013, 0.000109720742, -0.025257308, -0.0258781854, 0.00525262579, -0.00149088271, -0.00681102928, -0.00451378152, -0.000267365482, 0.0170617215, -0.00302988361, -0.0116228322, -0.0252697244, 0.00552270794, 0.0165898539, 0.0109336572, -0.000816454296, -0.0017850236, 0.00770509336, 0.00601009699, -0.0178564452, -0.00496391766, 0.0122126658, 0.0372526646, -0.00394878257, -0.0173100717, 0.0247357711, -0.0299263094, -0.0169499628, -0.0181917194, -0.00409158459, -0.00911448523, -0.00292588654, 0.0228979718, 0.0150128249, 0.0151494173, -0.000610012386, 0.0125168962, -0.00908965059, 0.0130260158, 0.00371905789, -0.0267225802, 0.0241769813, -0.0215817112, 0.0105859656, 0.0291564204, 0.0132122794, 0.0106666805, -0.0103065707, -0.00446721539, -0.0174218304, -0.0183407292, -0.0124858515, -0.0101761864, -0.00913311169, -0.00193403428, -0.0442064963, -0.0238044541, 0.00692899572, -0.011213053, 0.00429647416, 0.00765542313, -0.025008956, 0.00379977189, -0.0172976553, 0.0246240124, -0.023270499, -0.00894684903, 0.00623050844, 0.0106790978, 0.0155964494, -0.0264493935, 0.00608149776, 0.015782712, 0.00732635753, 0.0133240372, -0.0234070923, 0.0136965634, 0.00789756514, -0.00754987355, -0.0132122794, -0.028858399, -0.01295151, -0.00107877515, -0.0106480541, -0.0178440269, 0.00385565101, -0.00489251688, 0.0300504845, -0.00521226879, -0.0105611309, 0.0449018814, 0.0268715899, 0.0368056335, 0.0088164648, 0.00432441384, 0.00946217682, 0.0110143721, -0.00805278495, -0.0351665169, 0.0211222619, 0.0132495314, 0.0287093874, -0.0226992909, 0.0177446865, -0.000123108417, -0.0187877622, -0.0205262192, -0.032782346, 0.00365697, -0.0385192558, 0.00394878257, -0.00117733947, 0.0232332461, 0.00718355598, 0.00361350854, -0.0210105032, -0.00105626835, 0.03245949, -0.0218052268, -0.00241055805, 0.00164998265, -0.00531160925, -0.0376997, -0.0191106182, -0.0154350214, -0.0508126356, 0.0132246967, -0.0133612901, -0.0126038184, 0.00835701451, -0.00370664033, 0.017930951, -0.0143422764, 0.0225378629, 0.0171113908, 0.00792860892, 0.0357873961, 0.00167016126, 0.0245619249, 0.0230842363, 0.0133612901, -0.0192844644, -0.00257198606, -0.0172355678, -0.00810866337, -0.00336826197, -0.00707179774, 0.00718355598, 0.014814144, 0.00183469383, 0.0292309262, -0.0134606306, 0.00139852718, 0.0107101416, -0.00892201345, -0.0176080931, 0.0042499085, 0.00894684903, 0.00895305723, 0.00740086287, 0.000612340693, 4.07147854e-06, -0.00122856186, -0.00204113568, 0.00949943, 0.00858053099, 0.0166022722, 0.00379356323, -0.0178564452, 0.00793481804, -0.00917657372, 0.0109895365, -0.00785410404, 0.0044485894, 0.0171983149, 0.0111509645, 0.0120822815, 0.00281568081, -0.0124796433, 0.0077795987, 0.00141094474, 0.0194583088, 0.00409158459, -0.00342724519, -0.0140815079, 0.0534451604, -0.00926970504, 0.0131874438, 0.00937525462, -0.00979124289, -0.000928988389, 0.00602872297, -0.0202654507, -0.0139821675, 0.0138331568, 0.000330811425, 0.00351416809, -0.00743190711, 0.0104493732, -0.0180799607, 0.00528056547, 0.00213426724, 0.0145037044, -0.00279550208, 0.0161676574, 0.0122561269, -0.00718355598, -0.00921382569, 0.0138083212, 0.0198680889, 4.45528312e-05, -0.0307707023, 0.0162669979, -0.000970897614, 0.0124920607, 0.013274367, 0.0125168962, 0.00903998, 0.0238913763, 0.0152735934, 0.0177198518, -0.000660070684, -0.01015756, 0.00743190711, 0.0064881728, 0.0246240124, 0.0527994446, -0.00381218945, 0.00330927852, -0.00450446829, 0.000567715091, -0.00165774371, -0.00666822726, 0.0234070923, -0.00598526187, -0.0165898539, -0.00539853238, 0.0206379779, -0.00189988595, -0.00137834868, -0.00163290859, 0.0156585369, -0.0307707023, 0.0291564204, 0.00511292834, 0.0105983838, 0.0133488718, 0.049819231, -0.0280388407, -0.0213085245, -0.00644471124, -0.0255553294, -0.0104183294, 0.0103562409, -0.00251300284, 0.00669927103, -0.0139821675, -0.00834459718, -0.0271199401, 0.00876058545, 0.00179899333, -0.0171858966, 0.00831976254, -0.00598526187, -0.0125231044, 0.0289825741, 0.00336826197, 0.00390221691, 0.00812108163, 0.0067427326, -0.0305223521, 0.0172107313, 0.0158199649, 0.00890959613, 0.0128770052, 0.0136593105, 0.00437408406, -0.00435856218, -0.00302988361, -0.00987816509, -0.00166860898, 0.00590765197, -0.0319876224, -0.00476213265, -0.00150097196, 0.00104850729, 0.000753202359, 0.000907257665, 0.00822042208, 0.00853706896, -0.00960497931, -0.0161552392, -0.00158323837, -0.0261762068, -0.0227986313, 0.00375631056, 0.0151494173, 0.0281133447, -0.00218859408, -0.0170865562, -0.00310749328, -0.00394878257, 0.0260520317, 0.0106108012, -0.0112254703, -0.0238168705, -0.00187660311, 0.00388359046, -0.0285603777, -0.00606908044, -0.00912690349, -0.0163663384, -0.00929454062, -0.000366317894, -0.0112316785, 0.0302243307, -0.00428716093, 0.0141808484, 0.000700815814, 0.0111199208, -0.00532092247, -0.00137990084, -0.00127357547, 0.00960497931, 0.00449515507, 0.0128894225, 0.0200295169, -0.015261176, -0.00620256877, 0.0115172826, 0.0221405011, -0.0100209676, -0.0044889464, 0.011088877, -0.0299759787, -0.0192347933, -0.0116476668, -0.0122250831, 0.00776718091, 0.0225130282, 0.0177571047, -0.0123492591, -0.00579278963, -0.0182041358, -0.0081955865, -0.012423764, -5.95654601e-05, -0.00253628567, 0.0064881728, 0.0194086395, -0.00773613714, 0.00813349895, 0.00319441617, -0.00831355341, -0.000397167751, -0.0217307229, 0.00561273517, 0.0067427326, 0.00473108841, -0.00445790263, 0.00412573293, 0.0120264022, 0.0226247851, -0.00350795942, -0.00731394, -0.0312922411, 0.012467226, 0.0268715899, -0.00923866127, -0.00292588654, 0.0141808484, -0.0173845775, -0.0225502811, -0.0124486, -0.00867987145, 0.00681102928, 0.0282375216, -0.0165029317, 0.000715949689, -0.00162669981, 0.00107489468, -0.0102693187, 0.0107349763, -0.0287590586, -0.00769888423, -0.0139945848, -0.00676756771, 0.00627707411, 0.00765542313, -0.00619636, 0.00539542781, 0.00820800383, 0.00386185967, 0.00044586786, -0.0178812798, -0.040953096, -0.0126721151, 0.0103314063, 0.00318820728, -0.00256267306, 0.0122809624, 0.0116849197, -0.000284439622, -0.0169872157, -0.00769267557, -0.00250213733, 0.0184649043, 0.00825767405, -0.0165153481, 0.0123244235, 0.0164532606, 0.02031512, -0.0123057971, -0.0145906275, -0.0449018814, -0.0377245322, 0.00335584441, -0.005038423, 0.0012960824, -0.00433683116, 0.00512534613, -0.0155467791, -0.0144416168, -0.021085009, 0.000693442882, -0.00225999509, 0.0351665169, -0.00825146586, -0.0353651978, -0.0208863281, -0.00362903066, 0.0115048653, 0.0330306962, -0.0261762068, -2.37679778e-05, -0.00852465164, -0.0162545796, -0.0257291757, 0.00325339963, -0.0121940393, -0.00142646662, -0.0246985182, 0.0132246967, -0.00525573036, 0.00300194393, -0.00875437632, 0.00137058774, -0.0233822577, -0.0222770944, 0.0149631547, 0.00449825963, 0.00171517488, -0.00619325601, -0.0102755269, 0.0086984979, -0.00544509804, 0.00331238285, -0.000757470902, 0.00298952637, -0.001972839, 0.0175460055, 0.00913311169, -0.0059045474, -0.00666822726, 0.00766784046, 0.00458828686, 0.0148762316, 0.00620877789, -0.014975572, -0.00433372706, 0.0126348622, -0.000371556554, -0.00196818262, -0.0130011803, -0.0200419351, 0.0269460957, -0.0156585369, 0.00451067695, -0.00319752051, -0.0216313824, 0.0301746596, -0.0161552392, -0.000466822472, 0.0237672012, -0.0086984979, -0.0100582195, -0.0182662234, -0.0192720462, 0.00134730479, 0.00316182012, 0.00268840068, 0.0363586023, 0.0288087279, 0.0113061843, -0.019222375, -0.00825146586, -0.0103810765, 0.00885371678, 0.0187008381, -0.0111944266, -0.0190236941, -0.00935041904, -0.0182413887, -0.0416981503, -0.00562515249, -0.00622740388, -0.000440047123, 0.0049949619, -0.00119984627, 0.00866745412, -0.00878542, 0.000133100679, 0.0237299483, -0.00268684863, 0.00790377427, 0.00510982424, 0.00268219202, 0.0231835768, 0.00084749813, 0.00784168672, 0.0138455741, 0.00717113819, -0.00271323579, 0.00691036973, 0.00587039953, -0.00831976254, 0.0284362026, -0.00270237052, -0.0107536027, -0.00354210776, -0.00383392023, -0.0237175301, 0.00390532124, 0.00878542, -0.0216562171, -0.000516492699, -0.0156337023, 0.0144416168, -0.00510671968, 0.00868608, -0.00379666756, 0.015261176, -0.00112068444, -0.0109895365, 0.00967327598, 0.00428716093, 0.00136825943, 0.0198432542, 0.0115048653, -0.0170989744, 0.00215755031, -0.00379356323, 0.0107784383, 0.00928212237, -0.000557237829, 0.00123554678, -0.013112939, -0.00650679925, -0.00778580736, 0.00641366746, 0.00579589419, -0.0130260158, 0.00897789281, 0.00145673449, 0.00115948927, -0.0256546699, 0.00343034975, 0.000542491965, -0.00851223432, -0.0139697501, 0.0119456882, -0.0269460957, -0.0181668829, 0.00900893658, 0.0153108463, 0.0314660855, -0.0333038829, 0.00774855446, -0.00041560005, -0.0111820083, 0.0119705237, 0.00653784303, 0.0114365686, -0.00993404444, 0.00664339215, 0.00548235094, 0.00265270029, 0.0160931516, 0.00226620375, -0.0241397284, 0.00771130202, 0.0196569897, 0.000548312673, -0.00497633545, 0.0139945848, -0.0151121654, 0.0169499628, 0.0164035913, -0.00187815528, -0.000218665387, 0.00626155222, 0.00697245728, 0.000679085089, 0.0163663384, -0.00180209777, -0.000758247, 0.0173845775, -0.00750020333, 0.00203337474, 0.0121071162, -0.000142898905, 0.00834459718, 0.00363523932, 0.0120450286, 0.00801553205, -0.0277408194, -0.0238665417, -0.0145906275, -0.00173224893, -0.00322856451, -0.00339309708, 0.0147768911, -0.00311215, -0.00233294815, 0.00680482, -0.00576795451, 0.0185394101, 0.0133364545, -0.00496702222, -0.000950719113, -0.00171983137, 0.00602251431, -2.29433736e-05, 0.00237485743, -0.0217307229, 0.0197066609, -0.000591386051, -0.0254311543, 0.00720839109, -0.0111447563, 0.00787273049, 0.0029119167, 0.00394567801, 0.027517302, 0.0110267894, -0.0244253315, 0.0126348622, -0.0137710692, -0.0173100717, -0.0124734342, -0.00241211, 0.00895305723, 0.0231463239, 0.0212836899, -0.0114055248, -0.00129530625, -0.0195576493, -0.00180985872, 0.00628328323, -0.0116414586, 0.00993404444, 0.0239534639, -0.0108653614, 0.0172355678, -0.00106946193, 0.0146278804, 0.0211222619, 0.016552601, 0.0126100276, -0.00570897106, -0.0127031589, 0.00330927852, 0.00457276497, 0.0117470073, -0.0137462337, -0.00405743625, 0.00708421553, 0.00129763456, 0.0191230346, -0.0133488718, -0.0212216023, -0.00156150758, -0.010201022, -0.00300970511, 0.00534575759, -0.0153853511, 0.00206441851, 0.0108094821, -0.0169375464, 0.0055879, 0.00792240072, 0.00385254668, 0.00619015144, 0.00372837111, 0.00673652394, 0.00571517972, -0.0204268787, 0.0123927202, 0.013597223, -0.00180054549, 0.0143795293, -0.00223981659, 0.00918899104, -0.00840047654, 0.0134482123, -0.0061560031, -0.0129639283, -0.00549476827, 0.00672410615, -0.0350423418, 0.0141187608, 0.0129390927, -0.0181544665, 0.0257291757, 0.00475281943, -0.00912690349, -0.00125106866, 0.0331300385, 0.0144912871, 0.0166146886, -0.00343345408, 0.00343655841, 0.0187753439, -0.00043228615, 0.0122126658, 0.00864882767, 0.00792860892, 0.0037904589, 0.0181172136, -0.00879783835, -0.00658130459, 0.0113061843, 0.00758712646, -0.0165029317, 0.0127155771, 0.0127279945, 0.0200916044, 0.0103189889, -0.00173380121, 0.000842841575, 0.00171207043, -0.0306216925, -0.0117842602, -0.000813349907, -0.00746295089, 0.00149631547, 0.017161062, -0.0168133695, 0.0337757505, -0.007487786, 0.00513465935, 0.00731394, 0.00335584441, -0.0140815079, 0.00443617161, 0.00970432, -0.0301001538, 0.0170368869, 0.0013085, 0.00276601058, -0.0166767761, -0.0051967469, -0.0100085493, 0.0195203964, 0.00572138885, -0.0177943576, -0.00902135391, -0.0167388655, -0.0155343618, 0.010039594, 0.00943734217, -0.00788514782, -0.0108715696, -0.0219542384, 0.0037904589, -0.0039580958, 0.00400466146, -0.000520761241, 0.0165774357, 0.0368056335, -0.00212340197, 0.0045324075, -0.00629880512, 0.0109957457, -0.0119891502, 0.000792783278, -0.00314008933, 0.0155343618, 0.018738091, -0.0227986313, 0.019222375, 0.00458828686, 0.00427163905, -0.0264493935, -0.016391173, -0.0247854404, -0.0109522836, -0.00592627842, 0.00319131184, 0.0147893084, 0.000701979909, 0.00171207043, 0.00293519977, 0.00126736681, 0.00414435891, 0.00184400694, -0.00736361044, 0.0122250831, -0.0111944266, 0.000110011781, -0.00131005212, 0.0018052021, -0.0158075485, 0.011858765, -0.013112939, 0.033428058, 0.0250710435, -0.0113061843, -0.0301249903, 0.00510982424, -0.0074505331, -0.00845635496, 0.0135848057, -0.0187753439, -0.00272565335, 0.008741959, -0.0144664524, -0.012709368, -0.00458518229, 0.0123244235, 0.014814144, 0.0123244235, -0.00254249456, 0.0197314955, 0.0139076617, -0.0162918326, 0.0220039077, -0.0220784135, -0.0064074588, 0.00422507338, 0.00557548227, 0.0059976792, -0.00595111353, -0.00226620375, 0.00371595356, -0.00226620375, -0.0120822815, 0.00590144331, 0.00120295072, 0.019185124, -0.0027908457, 0.033676412, 0.00377183245, -0.0116725024, -0.0181047954, -0.0137959039, -0.00833838806, -0.0208118223, 0.0207745694, -0.0166022722, -0.00512534613, 0.014814144, 0.0136593105, 0.0157206245, -0.00859294832, 0.011697337, 0.00535196625, 0.0458456129, -0.0109584928, -8.82204222e-06, -0.0126100276, 0.0226372033, 0.00125882972, -0.0374513455, -0.00727668731, -0.0238789599, -0.00360419555, -0.0145533746, -0.0177819394, 0.0134233776, 0.0103748674, 0.00984091312, 0.0150004067, 0.00880404655, 0.00247730222, 0.00250058528, 0.00859294832, -0.00441444106, -0.0137959039, -0.0062894919, -0.0190982, -0.0127031589, -0.0145533746, 0.0146651333, -9.03425644e-06, -0.00122700969, -0.0119829411, -0.0061156461, -0.00027706672, -0.0126783242, -0.0242142323, -0.0117097544, 0.0202902853, 0.00471556652, 0.00105937268, 0.0137338163, 0.0119022271, 0.00187349867, -0.00148001744, 0.0099899238, -0.00203492679, 0.000724486774, -0.0124734342, 0.000499030517, 0.00585177308, 0.00847498141, 0.0147644738, 0.00830734428, -0.00273031, 0.0383950807, -0.0198556706, -0.00594490487, 0.0104555814, -1.90871415e-05, -0.00735740177, -0.0015552988, -0.0163539201, -0.0126410713, -0.00354210776, 0.0289825741, -0.008822673, -0.00592006976, -0.0131501909, 0.00763058802, -0.00929454062, -0.00303143566, -0.0212712716, -0.00984091312, 0.0352410227, -0.00678619416, 0.00895305723, 0.0201164391, -0.00109584932, 0.0215817112, 0.000652309682, 0.000263679016, 0.00651300792, -0.0166022722, -0.00218238542, -0.0199177582, -0.0101451427, -0.00406674948, -0.0140690906, 0.00438650139, 0.0221280847, -0.00666822726, 0.000543268048, 0.00291036465, 0.00227862131, 0.00253628567, -0.0114676123, 0.00112611707, -0.00252386811, -0.00341482763, -0.0058641904, -0.0225378629, -0.0112813488, -0.00101047859, -0.00385565101, 0.00263252179, -0.0267474148, 0.00822042208, -0.010927449, -0.00850602519, -0.0082763005, 0.00302057038, 0.00300970511, -0.000940629805, 0.0146527151, 0.0163415037, -0.00720839109, 0.0192347933, -0.000766396, -0.0182289705, -0.0240652226, 0.00413504615, -0.0116228322, -0.00773613714, -0.00583004206, -0.019830836, 0.0145782102, 0.0126224449, 0.00393326068, -0.0196942426, 0.0113620628, 0.0044082324, 0.00772992847, -0.0019123035, -0.0235561021, -0.00616221176, -0.0202157795, -0.00924487, 0.017161062, -0.0113993157, -0.0056655095, -0.016875457, 0.00355142076, 0.00393015612, 0.00851844344, 0.0018160675, -0.000797827961, 0.0215444583, -0.00784789491, -0.00220256392, -0.0114676123, -0.0191230346, -0.020079188, 0.0208118223, -0.0295786168, -0.0135227181, 0.021854898, 0.00297555677, 0.012504478, -0.00510982424, 0.00425301259, 0.00471246243, -0.00474661076, 0.0238044541, -0.0369049758, -0.000248933182, 0.00369422277, -0.0103500327, 0.0124548078, -0.00955530908, -0.00516570313, -0.011616623, -0.0134606306, -0.00641366746, 0.00818316918, -0.00702212751, -0.0107908556, -0.0145657929, -0.0134109603, -0.0300256498, -0.0192844644, -0.0151742529, -0.00357315154, 0.0018052021, 0.000830424, -0.00993404444, -0.00668064505, -0.00410710648, 0.000474971486, -0.00084749813, 0.0116911288, 0.00447032, 0.0296531226, -0.0242390689, 0.00451688562, -0.010120308, 0.00281723286, 0.00282965042, 0.0056624054, -0.00257509062, 0.0071959733, -0.00470004464, -0.0110392068, -0.0317144357, 0.00256267306, 0.00787273049, 0.0150004067, 0.0116849197, -0.0103376145, 0.0108218994, 0.00357315154, 0.0249965396, 0.0241397284, -0.0230097305, -0.00799069647, -0.000733411871, -0.0328071825, 0.00787893869, 0.029951144, 0.0054885596, 0.0070780064, 0.00743811578, -0.00434304, -0.0139821675, 0.0026263129, 0.000783082098, 0.0163539201, 0.0131377736, 0.00447032, 0.025580164, 0.0285603777, 0.00339620141, 0.00280947192, -0.0189616065, 0.00393946934, 0.023916211, 0.0159193054, 0.000804812822, 0.0101886038, 0.0202406161, 0.00256112078, 0.000312961201, -0.00331548741, 0.0137834866, -0.00322235562, -0.00663718348, -0.00283741136, -0.00634847535, -0.0136841461, 0.0265239, -0.0231711585, 0.00794723537, 0.0198556706, 0.018899519, -0.00922624394, 0.0168878753, 0.00260303, -0.0175708402, -0.00632674433, 0.00325339963, -0.0185145754, 0.0167512819, 0.00376872811, -0.00957393553, -0.0115793701, -0.0100458022, -0.00611875067, -0.0069041606, 0.0197190773, 0.00241676671, -0.00635778857, 0.0128397522, 0.0188622661, 0.0135103008, -0.0286845528, -0.0147520555, 0.00765542313, -0.00809624605, -0.00133721554, -0.0080714114, -0.0272192806, -0.0343966298, -0.00343966275, 0.0326830074, 0.0158199649, 0.028535543, 0.0227986313, -6.37854901e-05, -0.0152487578, 0.00497323088, -0.0173349082, 0.0265984032, 0.000524641713, -0.00945596863, 0.016999634, 0.0183407292, -0.0195700675, -0.00984712131, 0.00187505083, -0.0170617215, -0.00872333255, 0.00192161673, -0.00430578738, -0.00725185219, -0.00764300535, -0.0168009531, 0.0260023605, -0.000807917211, 0.00835080631, -0.0019790479, -0.00044586786, 0.0209608339, -0.00495150033, -0.000227008437, -0.0196818262, 0.0122375013, -0.00972915441, 0.041872, 0.00232984382, 0.0269709304, 0.0204144605, -0.00652542524, -0.00300349621, -0.00832597073, -0.0108777788, 0.0179061145, 0.00473729754, 0.00344897597, -0.00316958106, 0.0217431393, 0.00129220181, 0.030721033, -0.0136468932, -0.00730773155, -0.0169127099, 0.0133737074, 0.0140690906, 0.0311432295, 0.0293054301, -0.00982228667, 0.00362903066, 0.00712146796, 0.00521226879, 0.0122747533, -0.0105176698, -0.0182041358, 0.0175460055, -0.00222274242, -0.0294792764, -0.0172479842, -0.00894684903, 0.0178191923, -0.00502290111, 0.00069965166, -0.00926970504, 0.0135351354, -0.00483353343, 0.0291067492, -0.0071152593, 0.00269616162, -0.0011602653, 0.0148017257, -0.0263003819, 0.0018719465, 0.00124485989, -0.00573380617, 0.0189864431, -0.00293985615, -0.00664960081, 0.0192596279, -0.00776718091, -0.00505704945, 0.000191696017, -0.0264493935, 0.00792860892, 0.0131874438, -0.00729531376, -0.0114489859, -0.00518432958, -0.01036245, 0.0130881034, -0.0156337023, -0.00113387802, 0.0217679739, 0.0278649945, 0.00988437422, -0.00394878257, 0.00712146796, -0.0253690649, -0.0127652474, -0.00429647416, -0.0244501662, 0.00697866594, -0.00820800383, -0.0237423666, 0.000114571354, -0.00546062, 0.0137089808, 0.0054885596, 0.00865503587, -0.0151245827, -0.00791619159, -0.0061156461, 0.0150873298, 0.000215949054, 0.0120946988, 0.00108808826, 0.0308452081, -0.0316896029, -0.0221032482, -0.00352969021, 0.0095304735, -0.0233946741, -0.00949322153, 0.0190982, -0.00818316918, -0.00700350106, 0.00288397726, 0.0118028866, -0.0218921509, 0.0161179863, 0.00337447063, 0.0013387677, 0.00687311683, 0.0153356809, -0.0118773915, 0.0146278804, 0.0102320658, 0.0116849197, -0.00614979444, -0.0182041358, 0.0133240372, -0.00423749071, -0.00702833617, 0.0121071162, -0.0189243536, -0.035290692, 0.0110019539, -0.00795965269, -0.0295786168, 0.0261513721, 0.00472177565, -0.00231276965, -0.00393015612, 0.00718355598, -0.00490493421, 0.0260520317, 0.00457276497, -0.0173721593, 0.0176080931, -0.000892511802, 0.0234443452, 0.00259526912, 0.021532042, 0.016838206, 0.0345456377, -0.00496081356, -0.00574622396, -0.029504111, -0.0073698191, -0.00370974466, 0.00588592142, -0.0381964, 0.00309818, 0.0109522836, -0.00364455255, 0.0227613784, -0.000818782544, 0.0253690649, -0.01452854, -0.0139573319, 0.0082390476, -0.00717734685, 0.0197190773, -0.00751883, 0.00174777093, -0.00663097482, -0.0143919466, -0.0201909449, -0.0293551013, 0.0110578332, 0.000874661549, -0.0120077757, -0.0152860107, 0.00376872811, -0.00433372706, -0.0140566723, 0.0239286292, -0.0054109497, -0.00250679394, -0.0178440269, 0.014205683, -0.0255056582, -0.000492433668, -0.0206379779, -0.00499185733, -0.00234070909, -0.0077423458, 0.0120015675, -0.015422604, 0.00412573293, -0.0161428228, -0.00530850515, -0.0195452329, -0.000804036739, -0.00452930341, -0.00909586, -0.0205758885, 0.00122468139, -0.0103127798, -0.0129887629, -0.0156709552, 0.0010686859, 0.017645346, 0.00221187714, -3.94354392e-05, -0.016229745, 0.0133364545, 0.0103872847, 0.00557237817, 0.00189057284, -0.024847528, -0.00817696, -0.00613427255, -0.00639504101, -0.00721459975, -0.0156957898, 0.0132495314, 0.0010197917, -0.00118587655, -0.0214823708, -0.000263679016, 0.000809469377, -0.0119891502, -0.0156088676, -0.0038711729, 0.00987816509, -0.0237796195, 0.00343966275, 0.00776097225, 0.0120139848, 0.00411021104, -0.00334032252, 0.00786031224, 0.000821886933, -0.0143050235, 0.00121304, -0.00644471124, 0.0112316785, -0.0126472805, 0.0034986462, 0.013274367, -0.00465037441, 0.00460691284, 0.0172976553, -0.00573070161, 0.023109071, -0.00366628333, 0.00588281685, -0.00184090261, -0.0279891696, -0.00386806857, -0.0144416168, -0.0086984979, -0.010281736, 0.0118463477, 0.00349554187, -0.0105921747, 0.0205510538, -0.0164284259, -8.20237765e-05, -0.000436554692, -0.0155964494, -0.00502600567, -0.00338688819, 0.0143422764, -0.0150128249, -0.0147520555, 0.0104183294, -0.000610788527, 0.0143422764, -0.00880404655, -0.0213954486, 0.00605666265, 0.0186263323, -0.012181622, -0.0138704097, 0.00286069443, 0.00839426741, -0.00341482763, -0.018738091, -0.00280326325, -0.00202561379, 0.00487078633, 0.0100892643, -0.0270702709, 0.0118898097, -0.014205683, -0.00722701708, -0.00440512784, 0.0137710692, 0.0351913534, 0.0113372281, -0.000487001, -0.00679861149, -0.0201661102, -0.00790377427, 0.0374016762, -0.00880404655, 0.000849050353, -0.0153108463, 0.00277687586, -0.0081521254, 0.00269771391, -0.0103562409, -0.020762153, 0.00702212751, 0.0198184177, 0.00373457978, 0.0148638142, -0.0328568518, -0.0108964052, -0.0185642447, -0.000588281662, -0.00534265302, 0.00921382569, -0.00546372449, -0.00867987145, -0.0240900572, 0.00920140836, 0.0148389786, 0.0214823708, 0.00548545504, -0.00386806857, -0.0452247374, -0.000601863372, -0.00241987105, -0.00512845, -7.48933817e-05, 0.0141187608, 0.0204144605, -0.00296624354, -0.0102258567, 0.0130508505, 0.0206752289, -0.0183531474, 0.0149507364, -0.00907102413, 0.0225254465, -0.00422196882, -0.0115607437, 0.00696624862, -0.00272254902, -0.00778580736, 0.0119767319, 0.00553512527, -0.00390532124, 0.00789756514, 0.0257043391, 0.0304478463, 0.00957393553, 0.0280388407, -0.0257043391, 0.0053705927, 0.0176329296, 0.0267225802, -0.0223019291, -0.00361971743, -0.00792240072, -0.00309507572, 0.0103872847, -0.00102832878, -0.0225254465, -0.0088164648, 0.0104245376, -0.00767404912, 0.0142181013, 0.00697866594, 0.0296531226, -0.016229745, -0.0181172136, 0.011778051, -0.0146775506, 0.00894064, -0.0273931269, 0.0177198518, -0.0180427078, 0.00895305723, -0.00892201345, 0.00335894874, 0.0100271758, -0.0123678856, 0.0012960824, -0.0218176451, -5.84801364e-06, 0.00461312197, -0.00278618908, 0.00556306494, 0.0159565583, 0.0113061843, 0.0208614934, -0.00307179289, -0.0198556706, -0.002418319, -0.014367112, -0.00571207562, 0.00989058334, -0.0145782102, 0.0105362954, -0.00845635496, 0.00630811835, -0.00580210285, 0.00450136373, 0.0176080931, -0.0147520555, -0.0241769813, 0.0033248004, -0.0140690906, 0.0043709795, -0.01036245, 0.0116787106, 0.00054288, -0.0307458676, -0.00484284665, -0.00489562145, 0.0149010662, 0.00298642204, -0.00900893658, 0.0184897408, 0.00037000436, 0.0187877622, -0.0319379531, 0.017161062, -0.018576663, -0.0130632687, 0.00257509062, 0.00357936043, 0.00817696, -0.00844393764, 0.0210601743, -0.00415988127, 0.00441754516, -0.000853706908, 0.0178936981, -0.0162421633, 0.00343034975, -0.0114924479, -0.00922003482, 0.0121133253, -0.0193962213, 0.00316182012, -0.00397361768, 0.0216562171, -0.00471867109, 0.00393015612, -0.0223516, 0.00720218197, -0.00281723286, 0.0283368621, 0.0116290404, 0.0192720462, 0.0107473945, -0.0217803922, -0.00386496424, 0.00139697501, -0.00825146586, 0.00482422, 0.00216375897, 0.024847528, 0.0183779821, 0.00784789491, 0.0112813488, -0.00224602525, 0.0113993157, -0.00416298537, 0.00196197373, 0.00125494925, 0.00292588654, -0.0108839869, -0.000979434699, -0.000311409, -0.0140815079, 0.013597223, 0.0184524879, 0.0186387505, -0.00814591628, 0.00203337474, -0.00586729497, 0.0146527151, 0.0249841213, 0.00496391766, -0.000213038686, -0.0112689314, 0.00239037932, -0.0151866702, 0.00370664033, 0.00931316614, 0.0012091595, 0.0114303594, -0.0107225589, 0.00317889429, 0.00459139096, -0.00242918427, -0.0182662234, 0.00122856186, -0.00594180031, -0.000879318162, 0.0110640423, -0.0130011803, 0.0143919466, 0.00937525462]
|
18 Mar, 2024
|
Difference between Inheritance and Polymorphism
18 Mar, 2024
Inheritance is one in which a new class is created that inherits the properties of the already exist class. It supports the concept of code reusability and reduces the length of the code in object-oriented programming.
Types of Inheritance are:Single inheritanceMulti-level inheritanceMultiple inheritancesHybrid inheritanceHierarchical inheritanceExample of Inheritance:
C++
#include <iostream>
using namespace std;
class A {
int a, b;
public:
void add(int x, int y)
{
a = x;
b = y;
cout << "addition of a+b is:" << (a + b) << endl;
}
};
class B : public A {
public:
void print(int x, int y)
{
add(x, y);
}
};
int main()
{
B b1;
b1.print(5, 6);
return 0;
}
Java
class A {
int a, b;
public void add(int x, int y)
{
a = x;
b = y;
System.out.println("addition of a + b is:" + (a + b));
}
}
class B extends A {
public void sum(int x, int y)
{
add(x, y);
}
// Driver Code
public static void main(String[] args)
{
B b1 = new B();
b1.sum(5, 6);
}
}
C#
using System;
class A {
private int a, b;
// Method to perform addition and print the result
public void Add(int x, int y)
{
a = x;
b = y;
Console.WriteLine("Addition of a + b is: "
+ (a + b));
}
}
class B : A {
// Method to call the Add method from base class
public void Print(int x, int y) { Add(x, y); }
}
class Program {
static void Main(string[] args)
{
B b1 = new B();
b1.Print(5, 6);
}
}
JavaScript
// Define a class A
class A {
constructor() {
this.a = 0;
this.b = 0;
}
// Method to calculate and print the sum of two numbers
add(x, y) {
this.a = x;
this.b = y;
console.log(`Addition of a + b is: ${this.a + this.b}`);
}
}
// Define a class B that extends class A
class B extends A {
// Method to call the 'add' method from the base class
sum(x, y) {
this.add(x, y);
}
}
// Driver Code
const b1 = new B();
// Call the 'sum' method to calculate and print the sum of 5 and 6
b1.sum(5, 6);
Python3
class A:
def __init__(self):
self.a = 0
self.b = 0
def add(self, x, y):
self.a = x
self.b = y
print("addition of a + b is:", self.a + self.b)
class B(A):
def sum(self, x, y):
self.add(x, y)
# Driver Code
b1 = B()
# custom sum
b1.sum(5, 6)
Outputaddition of a+b is:11
Here, class B is the derived class which inherit the property(add method) of the base class A.Polymorphism: Polymorphism is that in which we can perform a task in multiple forms or ways. It is applied to the functions or methods. Polymorphism allows the object to decide which form of the function to implement at compile-time as well as run-time.
Types of Polymorphism are:
Compile-time polymorphism (Method overloading)Run-time polymorphism (Method Overriding)Example of Polymorphism:
C++
#include "iostream"
using namespace std;
class A {
int a, b, c;
public:
void add(int x, int y)
{
a = x;
b = y;
cout << "addition of a+b is:" << (a + b) << endl;
}
void add(int x, int y, int z)
{
a = x;
b = y;
c = z;
cout << "addition of a+b+c is:" << (a + b + c) << endl;
}
virtual void print()
{
cout << "Class A's method is running" << endl;
}
};
class B : public A {
public:
void print()
{
cout << "Class B's method is running" << endl;
}
};
int main()
{
A a1;
// method overloading (Compile-time polymorphism)
a1.add(6, 5);
// method overloading (Compile-time polymorphism)
a1.add(1, 2, 3);
B b1;
// Method overriding (Run-time polymorphism)
b1.print();
}
Java
class A {
int a, b, c;
public void add(int x, int y)
{
a = x;
b = y;
System.out.println("addition of a+b is:" + (a + b));
}
public void add(int x, int y, int z)
{
a = x;
b = y;
c = z;
System.out.println("addition of a+b+c is:" + (a + b + c));
}
public void print()
{
System.out.println("Class A's method is running");
}
};
class B extends A {
public void print()
{
System.out.println("Class B's method is running");
}
// Driver Code
public static void main(String[] args)
{
A a1 = new A();
// method overloading (Compile-time polymorphism)
a1.add(6, 5);
// method overloading (Compile-time polymorphism)
a1.add(1, 2, 3);
B b1 = new B();
// Method overriding (Run-time polymorphism)
b1.print();
}
}
Outputaddition of a+b is:11
addition of a+b+c is:6
Class B's method is running
Difference between Inheritance and Polymorphism:S.NOInheritancePolymorphism1.Inheritance is one in which a new class is created (derived class) that inherits the features from the already existing class(Base class).Whereas polymorphism is that which can be defined in multiple forms.2.It is basically applied to classes.Whereas it is basically applied to functions or methods.3.Inheritance supports the concept of reusability and reduces code length in object-oriented programming.Polymorphism allows the object to decide which form of the function to implement at compile-time (overloading) as well as run-time (overriding).4.Inheritance can be single, hybrid, multiple, hierarchical and multilevel inheritance.Whereas it can be compiled-time polymorphism (overload) as well as run-time polymorphism (overriding).5.It is used in pattern designing.While it is also used in pattern designing.6.Example :
The class bike can be inherit from the class of two-wheel vehicles, which is turn could be a subclass of vehicles.
Example :
The class bike can have method name set_color(), which changes the bike’s color based on the name of color you have entered.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/Difference between Inheritance and Polymorphism
|
https://www.geeksforgeeks.org/difference-between-inheritance-and-polymorphism/?ref=next_article
|
Pandas
|
Difference between Inheritance and Polymorphism
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, Difference between Inheritance and Polymorphism, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0429965109, -0.0139261484, -0.0209582876, 0.0284550507, 0.0192253683, -0.0222014692, -0.0245245881, -0.0369187333, 0.0110316696, 0.0192881543, 0.0182082187, 0.00753443548, 0.0234320946, -0.0690656602, -0.00470274361, -0.00658007385, -0.0127206389, 0.0253408179, -0.0101338159, 0.0157972, -0.003139348, -0.00307342177, -0.0479441248, -0.00613742555, -0.0119106863, 0.0178314969, 0.0120802112, 0.0127897039, -0.0504053719, 0.0254538339, 0.00111211406, 0.0107868, 0.0269230492, -0.0257426538, 0.0219000932, -0.0093427, 0.0022650396, -0.0394302122, -0.0121304411, 0.00417847233, 0.00553781027, 0.0353867337, 0.0336287, -0.012513442, -0.0157720856, 0.0243613422, 0.015106543, -0.00866460055, -0.0202927459, -0.0120613752, -0.00606836, 0.00575442519, 0.0295349862, 0.0322725, 0.0289071165, 0.0335282385, -0.0072895661, -0.0236330125, -0.0255291797, -0.0598234162, -0.0117474403, -0.0490491763, -0.0204685498, -0.0145916902, 0.00834438764, -0.00446729222, -0.00378605374, 0.00513911294, 0.0332519747, -0.0414393954, 0.00708864816, 0.0356629938, -0.00597731862, 0.0213852394, 0.00294784782, 0.0216489453, 0.0259686876, 0.0186351705, 0.0101966029, 0.00683122128, -0.00355688133, 0.0419165753, 0.0141019514, -0.00344386487, -0.0287313145, -0.0143782143, 0.00954361819, -0.0339049585, 0.051636, -0.00250519975, -0.0200667139, -0.0115151284, 0.0644947663, -0.0140014924, -0.0413640514, 0.0291331504, -0.00744025502, 0.00839461666, -0.00356316, 0.00469960412, 0.0188360885, 0.0231432747, 0.00714515615, -0.00941804424, 0.0404096879, -0.00718910713, 0.0170152672, 0.00499470299, -0.0184593666, 0.0289322324, 0.00122199126, -0.0392292924, -0.0329254828, 0.0195393022, -0.00653612288, -0.00943060126, 0.0132731637, -0.0631385669, 0.0378228649, 0.00537142484, 0.0305395778, 0.0205062218, 0.0053934, 0.0019259901, -0.0485217646, -0.0017517563, 0.0111070136, -0.0368936174, 0.0284801666, 0.00799905881, 0.00278303213, -0.0111572435, 0.0269481633, -0.00978220906, 0.00195581396, 0.0211215336, 0.020041598, 0.0139010334, -0.0231181588, 0.027400231, 0.0240599643, 0.00181454315, -0.0196397621, 0.00144488493, 0.0146168051, 0.0160106756, 0.00691912323, 0.0461609736, -0.00965035614, 0.00637915544, -0.0288066585, -0.0495012403, 0.0272495411, 0.0325487629, 0.00942432322, 0.0195016302, 0.0117599983, 0.0340054184, 0.0206945837, 0.000254091, -0.0197276641, -0.0321218111, -0.00577640068, 0.0207196977, 0.00501353899, 0.012620179, 0.00823137071, 0.00404975889, -0.0392041802, 0.0306902677, -0.0342816822, 0.0165004134, 0.0117160473, 0.017429661, -0.0335282385, -0.0393046401, 2.6144884e-05, -0.0398320481, -0.0205564518, 0.0129969008, -0.0186602846, -0.0247003902, 0.00638543395, 0.0146042472, 0.0179445129, 0.0198281221, 0.025818, -0.00321312272, -0.0119609162, -0.00442334171, -0.0413640514, 0.0103786848, 0.0498277321, 0.0340556465, -0.0139512634, 0.0136750005, -0.042368643, 0.0138508035, -0.000494447304, 0.0490491763, 0.0314185955, -0.0561064295, -0.0310921036, 0.0369940773, 0.010058471, -0.0446792021, -0.0185095966, 0.00984499604, 0.0883538127, 0.00725817261, -0.0106109967, 0.0293340683, -0.0144033292, 0.0183589086, 0.014842838, -0.00696935272, -0.0288317725, -0.00875878148, -0.0277769528, -0.0241101943, -0.0282541327, -0.00581093319, -0.00735863205, 0.000662010047, -0.0338798463, 0.012406704, 0.0027500689, 0.035085354, -0.037672177, 0.0312427916, 0.0487226844, 0.0403343439, -0.00250049075, -0.0405603759, -0.0129341139, 0.0022462036, -0.00530549837, 0.00698818872, -0.0226535369, 0.0284550507, -0.0102782259, -0.00268885167, -0.0465125814, -0.00989522506, 0.0181579888, -0.00604324508, 0.0240222923, 0.00470902212, -0.00132872909, 0.00234352332, 0.0234320946, 0.0193383843, 0.0085201906, -0.00347839762, -0.00690028723, 0.0042600953, 0.0309414156, 0.0315441713, -0.0278522968, -0.00951222517, -0.0057701217, 0.0441015624, -0.0145289032, 0.0257049818, -0.00261978596, -0.0216740593, 0.0319711193, -0.0101903239, -0.0126955239, -0.000144311911, 0.0288066585, -0.0178314969, -0.0426449031, 0.0182207767, -0.0158474296, 0.00271082716, 0.027550919, 0.00288506085, 0.0994043201, 0.0335031226, 0.0123501951, 0.0113958335, 0.00549385929, 0.0207573697, 0.0273248851, -0.0345328301, -0.00970686413, 0.00325864344, -0.0350602381, -0.00615312252, 0.0104979798, -0.0349848941, -0.0428458229, -0.0202801879, 0.00796138681, -0.0130471308, -0.01488051, -0.0116846533, -0.00166856346, -0.00561315427, 0.0184342526, -0.0484464206, 0.0203806479, -0.0148302801, -0.00670564733, -0.0148553951, 0.0305395778, 0.0322222672, 0.0259686876, 0.00122199126, -0.00961268414, 0.00860809255, -0.027400231, -0.00338421715, -0.00696307421, 0.00859553553, 0.0305898078, -0.0170906112, -0.00895342, -0.00178314978, -0.0455582179, 0.00571675273, -0.00315347523, 0.025240358, 0.0265212134, -0.0217494033, -0.0325487629, -0.0254036058, -0.0360899456, -0.0303637758, -0.0551520661, -0.0489487164, 0.0110881776, 0.0177687109, 0.0207071397, -0.0287564285, -0.0188988764, -0.0102970619, -0.0487729125, -0.0211968776, -0.00465565315, 0.0229674708, -0.0171533972, 0.00593022862, 0.00913550332, -0.0496770442, -0.0399827361, -0.00377349649, -0.0148553951, 0.0306400377, 0.00112388667, 0.0206192378, -0.0157218557, -0.0272997711, -0.0136247706, 0.0030059258, 0.0246376041, -0.0208452716, 0.0382247, 0.0138508035, -0.00229957257, -0.0202174019, -0.00602754857, -0.0219503213, -0.042745363, -0.0303637758, -0.00294627831, 0.0227288809, 0.0682619885, -0.00704469718, -0.0359392576, -0.0291331504, 0.0318455473, -0.0382247, -0.0351104699, 0.0370694213, -0.0134615246, 0.0182835627, 0.0112953745, 0.0180449728, -0.000198956186, 0.0139135905, -0.0203680899, 0.0212596655, -0.0252780318, -0.0307656117, -0.0231683888, -0.00409684936, 0.00322097121, -0.0270486232, 0.0184091367, 0.0266216714, 0.0497272722, 0.0103786848, 0.00995173305, 0.000255660649, -0.0455833338, -0.0368936174, -0.0254161619, -0.0294094123, 0.0499030761, -0.0111509645, 0.00682494277, 0.00331829092, -0.019815566, -0.0208201557, 0.012306245, 0.0297610201, -0.0218121912, 0.00874622352, -0.0236832425, 0.0222642571, -0.0147926081, 0.0349848941, -0.0164627414, -0.0281034447, -0.015068871, 0.0617823713, -0.0409622155, 0.0104038, 0.035236042, 0.0133987376, 0.00939920824, 0.00279715913, 0.00965663511, 0.00781069789, 0.00608091708, -0.00172664144, 0.00441078423, 0.0152572319, -0.0280783288, -0.0120927691, 0.057512857, 0.0329506, 0.00111211406, -0.0324734151, 0.0188360885, 0.0205062218, 0.0134489676, -0.00838833861, 0.0185598265, 0.0379986688, 0.0241729803, -0.0193383843, -0.0508072115, -0.0141396243, -0.0304391198, -0.0322222672, -0.0378982089, 0.0227288809, -0.017505005, -0.0280281, -0.0285303965, -0.0153325759, 0.0151191009, 0.0164250694, 0.0550516099, -0.0457089096, 0.00753443548, -0.00163560035, -0.0171408411, 0.00186006376, -0.0331515148, -0.00883412547, 0.0276513789, 0.0154707078, -0.0085013546, 0.0337793864, -0.0270235091, -0.0238716025, -0.0126327369, -0.00488482555, -0.00808696076, -0.00361338956, 0.00188360887, -0.014955854, 0.042820707, 0.0152446749, -0.0162241515, 0.0105419308, 0.0280532148, 0.0214731414, -0.00342188939, -0.0245873742, -0.017630579, -0.000206804558, 0.0417407714, 0.0480445847, -0.00887807645, 0.045081038, -0.0111132925, -0.00915433932, -0.0118981292, -0.0151316579, 0.0143530993, 0.00742141902, -0.000857826846, 0.0237962585, 0.032573875, 0.0484213047, -0.0280029848, -0.0495263562, -0.0208076, 0.0321469232, 0.0322222672, 0.0011780404, -0.022314487, -0.0166259874, -0.00216301088, -0.0107993577, -0.0236706845, 0.017492447, 0.00138759182, 0.042368643, 0.0329003669, 0.010140094, 0.00170623569, -0.00568849873, -0.0281285588, -0.0197527781, 0.0234572086, -0.000983400852, 0.0255166218, -0.0132857217, -0.0167515613, 0.0324734151, 0.0497775041, -0.0117725553, -0.017492447, -0.0261947215, -0.0117913913, -0.00375466025, -0.00042695133, 0.0139638204, -0.00976965111, -0.0286559686, 0.0317953192, 0.00856414158, -0.000101930709, 0.0108181937, -0.00565396575, 0.0311172176, -0.037295457, -0.00828787871, 0.0105670458, 0.0153451338, -0.0123753101, 0.00511085894, 0.0167264473, -0.0260942616, -0.00837578066, 0.0166762173, 0.0537958704, 0.0235325526, -0.0297107901, -0.0123941461, -0.0147800511, -0.00577640068, 0.0250268839, -0.00410312787, -0.0184970386, 0.0186477285, 0.0503802598, 0.0349095501, -0.00903504342, 0.000652199553, -0.00278617139, -0.0156967398, 0.00661146734, 0.0373456851, -0.0140517224, -0.010020799, 0.0123313591, 0.00368873402, 0.027550919, 0.0157469697, 0.0374963731, -0.00686889375, -0.00436683325, 0.0126578519, -0.0226786509, -0.0102091599, -0.0130094588, -0.00139073119, -0.014955854, -0.0110316696, -0.0302382018, 0.0183714647, -0.00306086452, 0.00764117343, 0.00644194242, 0.0204811078, 0.00837578066, 0.00634148298, 0.00873994548, 0.0103912419, -0.0113393255, -0.00555978529, -0.0515355393, 0.00624416349, -0.00328061869, 0.0322725, 0.0375717171, 0.0128964419, -0.00590825314, -0.00169995695, -0.00157124375, -0.0483961888, -0.00286151585, 0.0133359507, -0.00378919323, 0.0314437114, 0.00123925763, 0.0219126493, 0.00643566344, -0.0183714647, 0.0143154273, 0.0240599643, 0.00515167043, -0.0102342749, 0.00548130181, -0.0282541327, 0.00841345266, 0.032448303, 0.0130722458, -0.0156716257, 0.0115465224, -0.00864576455, 0.0206945837, -0.0102782259, -0.0310921036, 0.00304673729, -0.00297139306, 0.0216238294, 0.0295098722, -0.00818742, -0.0280783288, 0.0354369618, -0.00785464887, 0.0328752548, -0.0229046829, -0.0138005745, 0.0189742204, 0.0657002777, -0.00929247, 0.0511588156, -0.00508574396, 0.0205187798, 0.0254663918, -0.0110191116, -0.015144215, -0.000466585625, -0.0209834035, 0.0154204778, -0.0135619836, 0.00877761748, -0.00651728688, -0.0530424267, -0.0284048226, 0.020016484, 0.0168520212, -0.0355876498, 0.00881528948, 0.0370945372, -0.00997057, -0.00841973163, 0.0151693299, -0.00331829092, 0.00746537, -0.00346584036, 0.00787348486, -0.0164878555, -0.00836950168, -0.00126201799, 0.00305144629, -0.0257426538, -0.0218373053, 0.0161613636, 0.00249892101, -0.0229297988, -0.0229925849, -0.0265212134, 0.0411380194, 0.0133736227, 0.00688772975, -0.00917317532, -0.000209159072, -0.0209457297, -0.0057324497, -0.0138633614, -0.0295852162, -0.0229674708, 0.000341207895, -0.00237648655, 0.020016484, -0.0215987153, -0.0291833803, -0.00669309031, 0.00296354457, 0.0134740816, 0.0532935746, -0.0237334725, -0.0441517904, 0.0170529392, 0.0117223263, 0.00571047422, 0.0110818986, -0.019966254, 0.00740886154, -0.00410312787, -0.0140517224, 0.0428458229, 0.00960012618, 0.0143279843, 0.0297107901, 0.00831927266, 0.0191500243, 0.000840560475, 0.00431032479, -0.0153702479, 0.0344323702, -0.00122513063, 0.00229329383, -0.0030106348, -0.0123941461, 0.0355123058, 0.0107805217, -0.0164125115, 0.00121257326, -0.0147423791, 0.00182396127, 0.0132480487, 0.0104791438, 0.00785464887, -0.0278020669, 0.0262951795, 0.0538461, -0.0235451106, -0.0121116051, -0.035236042, 0.00301377429, -0.0196020901, 0.0365420133, 0.0181831047, 0.00803673081, 0.0239971764, 0.017467333, -0.00296668406, -0.0162618235, 0.0278271809, 0.00232782657, -0.0137629025, 0.0371447653, -0.00103598484, 0.00107915094, -0.012488327, -0.00203743693, 0.00737118954, 0.0393297523, 0.019853238, -0.0188486464, 0.0216866173, 0.0130722458, 0.0144786732, -0.0187607445, -0.0130094588, -0.034708634, -0.029886594, 0.0102154389, -0.0152823469, 0.0375717171, 0.0279276408, 0.0370191932, 0.00295569631, 0.00257897447, -0.00239689229, -0.0064921719, -0.00585488416, -0.0117913913, 0.000824078859, -0.0179319568, 0.017505005, -0.0345328301, 0.00858925655, 0.00232625706, -0.0192881543, 0.00603382709, 0.00873994548, 0.00266687619, -0.00340619264, 0.0156590678, 0.0477180928, 0.0148553951, 0.0539465584, 0.0306902677, 0.00035788567, -0.0342565663, -0.000368677196, -0.000526625663, -0.0543986224, -0.0259435736, -0.00523957191, 0.0123125231, -0.0166259874, 0.00513283396, 0.0113016535, -0.0230930448, -0.0145791322, -0.0127520319, 0.0114900144, -0.000977122108, 0.00513911294, -0.0432225466, 0.00653612288, 0.00312836049, 0.00738374656, -0.00458658766, 0.0170152672, 0.0123188021, 0.0309163, -0.00693168072, -0.0284801666, 0.0262449495, -0.00431032479, -0.0039932509, 0.00870855153, -0.00523643242, 0.00480634207, 0.0165632013, 0.0272244271, 0.0178817268, 0.0129969008, 0.000463838689, 0.0267974753, -0.0143907713, 0.0179821867, 0.0145037882, -0.00544363, 0.0316195153, 0.0101526519, -0.0286810845, -0.0243236683, 0.00822509173, 0.000252521306, 0.0235702265, -0.000959855679, -0.0220256671, 0.0530926548, 0.0133108357, -0.00966291316, 0.0228293389, -0.00911666732, 0.00850763358, 0.0786092803, 0.000882156834, 0.0234697666, -0.00766628794, -0.0140642794, 0.00218341663, 0.00159321912, 0.0319208913, 0.022703765, 0.0315441713, -0.00494761253, 0.022540519, 0.0252905879, 0.00966291316, 0.00657379488, -0.012588786, -0.0343570262, -0.00954361819, -0.0168394633, -0.00513597345, 0.0303888898, -0.00786092784, -0.00270454842, 0.0203053039, -0.0176431369, 0.0135243116, -0.00128320849, -0.00336852041, 0.00779814087, -0.0194514, -0.047818549, -0.00189145724, 0.042368643, 0.0358387977, 0.00355374208, 0.0278020669, -0.00767884543, -0.0163371675, 0.0311172176, -0.0134615246, -0.0052992194, 0.0369187333, 0.00120080065, 0.0107491277, 0.006278696, 0.000797786866, -0.0278774109, 0.0141396243, -0.000367499946, -0.0233944226, 0.0187230725, 0.00140878244, 0.00968802813, 0.0264207534, 1.86276156e-05, 0.00713259913, 0.00231997832, -0.0208829436, 0.00862065, 0.00301691354, -0.0329003669, 0.0293340683, 0.0303637758, -0.00411254587, -0.0146921491, 0.00225876085, -0.029961938, 0.000125868231, -0.0139387054, 0.0189239904, 0.00566652324, 0.0104791438, 0.00881528948, 0.00837578066, 0.00202331, 0.00926107727, -0.0309163, 0.0111760795, -0.00558490027, 0.00565710524, 0.0102342749, 0.017505005, -0.0103472918, -0.0116030304, 0.0121178841, -0.0584672205, -0.0143656572, 0.00914178137, 0.0255166218, 0.0177059229, -0.0109814396, -0.0243738983, -0.014867953, -0.027400231, 0.0505309477, -0.000642389117, 0.0265714433, -0.00987011, 0.00455205468, 0.0203053039, -0.0212596655, 0.0158097576, 0.0188612025, -0.0011372288, -0.00159714336, 0.00205470342, 0.0243990142, 0.0207573697, 0.0077793044, 0.0253157038, -0.00127143599, -0.00828787871, 0.015043756, 0.0285555106, -0.0087901745, -0.0363159776, 0.000955931493, 0.0101714879, 0.0119420802, 0.0139889354, 0.0233818647, 0.00195424422, -0.029886594, -0.025051998, -0.0291582644, 0.00953733921, -0.00957501214, 0.0433983468, 0.000833496917, -0.00291488483, 0.00718910713, -0.0142275253, -0.00656123739, 0.00170780532, -0.0257928837, -0.0210336316, 0.0295349862, 0.0235325526, 0.00935525727, -0.00731468108, 0.00325864344, 0.00112624117, 0.0293842983, 0.00455205468, 0.0395306721, -0.0119546372, -0.0185598265, -0.00578267919, -0.0293340683, -0.017618021, 0.00176588329, 0.0449554659, 0.0170654971, 0.0172789712, -0.00668681134, -0.0223772731, 0.0206443537, 0.0283797067, -0.0393297523, -0.0313683674, -0.00373582426, 0.0227163229, 0.0138508035, -0.0187984165, 0.0319711193, 0.0240474064, -0.00931130629, -0.00406231638, -0.00620335201, 0.00715771364, 0.0131224748, 0.0174171031, 0.0185221545, -0.0137252295, -0.00589569565, -0.00262920395, 0.00555036729, -0.00217870763, -0.00302162254, -0.000150688706, 0.0383000486, -0.0257426538, -0.00532119488, -0.00770396041, -0.0558552817, 0.0225279629, -0.00705725467, 0.0115151284, 0.0038519802, 0.0180575307, -0.00788604282, 0.00653612288, -0.00314562675, -0.00594592514, -0.0212471075, 0.0177812669, 0.00798650179, -0.007484206, -0.0072895661, -0.00308283977, 0.0243236683, -0.00541537534, -0.0168771353, 0.00612486806, -0.00284267962, 0.00498528499, -0.00322725, 0.0142275253, 0.00263391295, 0.0513095073, -0.0160734616, -0.00760978, 0.0231307168, -0.00300749554, 0.00843856763, 0.00664913934, 0.017555235, 0.0155586088, -0.0168645773, -0.010083586, -0.00188674824, 0.00447043171, 0.00269983942, 0.0233944226, -0.00411568535, -0.0157218557, -0.032523647, -0.0126892449, 0.00664286083, 0.0230428148, 0.0154330349, -0.00481262058, -0.00361652905, 0.00353176659, -0.0137001155, -0.00407173438, -0.0446289741, 0.000216615023, 0.0191249084, 0.0235953405, 0.00322411046, -0.00485343207, -0.00732095959, -0.00151159614, 0.0694674924, 0.0137126725, 0.0160483476, 0.0135243116, 0.0106486687, -0.0109877186, 0.0025067695, 0.0241980944, 0.00589569565, 0.0204308778, 0.0189114325, -0.0057418677, 0.00560373627, 0.0261947215, -0.00685005775, 0.0300623979, -0.0022320766, -0.003120512, 0.00555664627, -0.030012168, -0.0322222672, 0.022666093, 0.00232939632, -0.00469646463, -0.00990150403, 0.00226660934, -0.00831927266, 0.0111698005, 0.0277267229, -0.0102091599, 0.0204811078, -0.017555235, 0.0253784899, -0.0153828058, -0.000453243381, -0.0183337927, 0.0131852617, -0.0147047061, -0.0114900144, -0.0060118516, -0.00916061737, 0.00296668406, -0.0143907713, 0.0140391644, 0.00558490027, -0.0147298211, -0.0268225893, 0.0208955016, 0.00778558338, -0.00275163865, 0.00191500236, -0.0256547537, 0.0177059229, 0.00954361819, -0.0306400377, 0.00127849949, -0.000128124651, -0.0141772963, 0.00911666732, -0.00349723385, -0.0127206389, -0.0308660697, 0.00354118459, -0.029961938, 0.000357689481, 0.0116909323, 0.00572931, -0.0050198175, 0.00968174916, -0.00924851932, 0.00468390761, 0.0237083565, 0.0116155883, -0.00828787871, 0.0136247706, -0.00782953389, -0.00440764474, 0.00609975355, 0.0243990142, -0.0344072543, -0.00780441938, 0.0134112947, -0.00669936882, 0.00656123739, -0.0122246211, 0.0161739215, 0.00389279169, 0.00655495888, -0.00691284472, 0.00318329898, -0.0178691689, 0.000320213498, -0.00535258837, -0.019928582, -0.0132857217, 0.00722050061, 0.0166887753, 0.0395557843, -0.0118479, -0.0405101478, 0.0135494266, 0.0184342526, 0.00442648074, 0.0147926081, -0.0255919658, -0.0219252072, -0.00284111, -0.00548130181, -0.000990464352, 0.0222014692, 0.0266970154, 0.0072330581, -0.00274379016, 0.00613742555, 0.00207196968, -0.014955854, 0.0060024336, 0.00580151519, 0.0175677929, -0.0201295, -0.0305144638, -0.00717654964, -0.0106172757, -0.0340305343, -0.00323352846, 0.00549699832, 0.00710120564, 0.0234823246, 0.00085390266, -0.00325864344, -0.0198657941, -0.0227916669, -0.0127269169, 0.040083196, 0.00230114209, -0.00331829092, 0.00723933661, -0.0138633614, 0.0262449495, -0.0206694677, -0.00467762863, 0.00745281251, -0.0151191009, -0.000749911764, -0.0132354917, 0.0138884764, -0.0163497254, -0.00595220411, 0.00274379016, -0.0434988067, -0.052138295, -0.0377977528, -0.0154079208, -0.00153357151, -0.00370129151, -0.00582663, 0.00176745304, 0.0232060608, 0.00958129, -0.00228073634, -0.0119483592, 0.0220758952, -0.00593964662, -0.000490915554, -0.00931758527, 0.00688145123, 0.00243613403, -0.0245120302, -0.0249138661, 0.00863320753, 0.0251022279, -0.00342502887, 0.0111321285, -0.0101526519, 0.027500689, 0.0116407024, -0.00158066174, -0.00431974279, 0.00416277582, 0.00507632596, -0.0205941238, -0.000501903298, -0.00140721281, 0.0191374663, -0.0191625804, 0.0180324148, -0.00878389645, 0.00380802923, 0.0126955239, -0.00307028252, -0.00287093385, -0.00244869152, 0.00747792702, 0.0114460634, -0.0077604684, 0.0168394633, -0.00619393401, -0.0362155214, -0.0246627182, -0.0339300744, -0.0334026627, 0.0160483476, 0.000286073104, 0.0249892101, 0.00715771364, -0.0137001155, -0.0144158863, 0.0155962817, 0.0253157038, -0.0126578519, 0.00674959831, 0.00862065, -0.00464623515, 0.000342385145, 0.00428521028, -0.0169775952, 0.0127708679, 0.0148930671, -0.00515167043, 0.0024926425, 0.00395243941, 0.00563826924, 0.0106863407, -0.0129843438, 0.00579523668, -0.00509830145, 0.00329003693, 0.00184593664, 0.00832555164, -0.00367931603, -0.0364164375, 0.0128148189, 0.0364917815, 0.00967547111, -0.000907271577, -0.0313683674, 0.0178942848, -0.0241729803, -0.00631008949, 0.024976654, -0.0287061986, 0.00388337369, -0.00691912323, 0.00905388, 0.00808696076, 1.86521429e-05, 0.0197653361, -0.00713259913, -0.00252403598, 0.00638229493, -0.0251022279, -0.0186351705, -0.0137001155, 0.0011348743, 0.0246878341, 0.0103661278, 0.00280029862, -0.00949338824, -0.000782090123, -0.0231683888, 0.0306651518, -0.00293842983, 0.0157218557, 0.00936153624, 0.00930502824, 0.0181077607, 0.0212345514, -0.0151191009, 0.0202801879, 0.0217368454, 0.030012168, 0.0392544083, 0.00925479829, 0.0168143492, 0.00942432322, -0.0452568419, 0.00361966831, 0.00049366249, 0.00838833861, -0.00653612288, -0.0200290401, 0.00534631, 0.0190118924, -9.17278303e-05, -0.0130094588, -0.0114397844, -0.00119766127, 0.012475769, 0.0148051661, -0.0257677697, -0.00258996221, 0.00689400826, -0.00463681715, -0.00963152, 0.0170906112, 0.0562571175, 0.0143656572, -0.0187607445, 0.00659891, 0.0202676319, 0.00207040017, -0.0131852617, 0.00626613898, 0.0174045451, 0.0130848028, -0.0109814396, 0.00073303777, 0.034934666, 0.00300906505, -0.0035097911, -0.00236706855, -0.0292336103, 0.017492447, 0.00739002554, -0.00733979605, -0.00590197463, 0.00305929477, -0.00992034, -0.00285994611, 0.00331201218, -0.000687909662, -0.00081936986, -0.00443275971, 0.0114021124, -0.0169148073, 0.00577326119, -0.0205941238, -0.0260691475, -0.00409998884, -0.012494605, -0.0204057619, 0.000911195762, -0.0340054184, 0.00590825314, -0.00624730252, 0.0139261484, -0.00295726582, 0.00753443548, 0.0177938249, -0.035236042, -0.0222391412, 0.0168520212, -0.00720166462, 0.0101966029, 0.00742141902, 0.0103849638, 0.0143154273, -0.0140391644, 0.00851391163, -0.00413452135, -0.0210085176, -0.0263956394, -0.0299117081, -0.00342816813, -0.0308158416, -0.000437939074, -0.0194137283, 0.0120174242, -0.0237460285, -0.00763489446, 0.0130345738, 0.00968174916, 0.00367617654, -0.0231181588, -0.0102279959, -0.022515405, 0.0159353316, 0.0161362495, 0.0264960974, 0.0327747948, 0.0015053174, -0.00951850321, 0.0268225893, -0.00349409436, 0.00625044201, -0.0267221313, 0.00320370472, -0.00140014931, 0.00437939074, -0.0176682509, -0.027350001, 0.0109563246, 0.00565710524, -0.00842601061, -0.00171251444, 0.0188235305, 0.00413138233, 0.00604638457, -0.0202927459, 0.0010108701, 0.00596790062, -0.00129027211, 0.0369689651, 0.0170654971, -0.0369438492, -0.0111572435, -0.0329506, 0.0158976596, -0.00836322363, 0.0187733024, 0.0258682277, -0.00853274856, -0.0367178172, 0.0144535583, 0.0221135672, -0.00983243808, -0.00937409326, -0.00924224127, 0.00555664627, -0.0386516526, 0.0132982787, 0.00415649684, -0.0146795921, -0.0223772731, 0.00622218801, 0.010058471, 0.0270737372, 0.014867953, -0.000244476745, 0.00135619834, -0.00073303777, -0.00387395546, -0.0184468087, -0.00501667848, -0.022427503, -0.0385511965, 0.027576033, -0.0213601254, -0.0120425392, -0.0216489453, 0.0034815371, 0.00951850321, -0.0318706632, 0.0188486464, -0.00289918808, 0.0170152672, 0.00914806, 0.000655338925, 0.0190118924, 0.0123125231, 0.00357885682, -0.0112577025, -0.012563671, -0.0196648762, -0.0135619836, -0.00440450525, -0.00213318714, -0.00922340434, -0.00671192631, -0.00182710064, 0.0156213958, -0.00732723856, -0.0102719469, -0.00457089068, 0.00595220411, -0.00304202829, 0.0172413, 0.00278146239, 0.00266059744, 0.022578191, -0.0157720856, 0.000362594699, -0.00389279169, -0.00504493248, 0.00463681715, -0.00116469816, 0.00473727612, 0.0148051661, -0.00674959831, 0.00346584036, -0.00798650179, -0.00943060126, -0.00251618749, -0.0137880165, 0.0147172641, -0.00288976985, 0.0194011722, 0.012343917, -0.00183651864, -0.00425695581, 0.00938665122, -0.000327080837, 0.000599223073, 0.0318455473, -0.00988266803, 0.0266970154, 0.00951222517, -0.000999882352, -0.0111823576, 0.0182584487, -0.00308283977, 0.00103990908, -0.0172538571, -0.0141647384, 0.020167172, -0.017655693, 0.0114083914, -0.00251461775, -0.00444531674, -0.00279872888, 0.0126892449, -0.0102279959, 0.0126578519, 0.022465175, 0.0205941238, -0.00728328759, 0.00221794937, 0.0134991966, 0.00968802813, -0.00122513063, -0.00351293059, -0.0161990356, -0.00816230476, 0.0168771353, 0.0152195599, 0.0119546372, 0.025202686, 0.0107868, -0.000267629424, 0.00472785812, 0.035236042, -0.00139465544, -0.00257426547, -0.0240725204, -0.00228230609, 0.00187733013, 0.0139763774, -3.76476528e-05, 0.0197025482, -0.0247506201, -0.0133736227, -0.0121932281, -0.00170623569, 0.0163999554, -0.017542677, -0.00281285588, 0.00475925161, 0.00244241278, -0.00562885124, 0.0165757574, -0.0119671952, 0.0126955239, -0.0386265405, 0.0027312329, -0.0171157252, 0.00155476213, 0.00125495438, 0.0316948593, 0.00269199093, -0.00939920824, -0.00097241305, -0.00214888388, 0.00309225777, 0.0150563139, -0.0106423898, 0.0163371675, 0.000646313303, -0.00152415351, 0.00267001567, 0.0177059229, 0.0305395778, -0.0296605602, 0.00641682744, 0.0115967523, 0.00605580257, 0.0115590794, 0.00636345847, 0.0186477285, -0.00765373046, 0.00833183, -0.00768512394, 0.0253533758, 0.00959384814, 0.00611545, -0.0167515613, 0.000707138155, -0.00439194823, 0.00556292478, 0.0151818879, -0.0167766772, -0.00454263669, 0.00586744165, 0.00183651864, -0.00395557843, 0.0178566128, 0.00752815697, 0.0292084944, 0.00828160066, 0.00136247708, -0.00091825932, -0.0126955239, -0.0085766986, -0.00120080065, -0.0203178618, -0.0181077607, 0.00517364591, 0.0059741796, 0.00415021833, 0.0195141882, -0.00166699383, -0.000708315405, -0.0239218324, 0.017592907, -0.00509202247, -0.0179696288, -0.0196899921, -0.0232060608, 0.00639485195, -0.0150939859, -0.0203304179, 0.0182710066, -0.0197025482, -0.00259310147, -0.00808068179, 0.0122497361, 0.0153953629, 0.00357885682, 0.00634462247, 0.00323352846, -0.00458030868, -0.000351606985, -0.00526782591, 0.00452694, 0.00245810952, -0.000536043663, -0.0130722458, 0.0143028703, -0.022703765, -0.030087512, 0.000872738776, -0.0042789313, 0.00727073, -0.00490052253, -0.00747164851, -0.0155083798, -0.0240850784, -0.0217996333, -0.0192253683, 0.00512655545, 0.00850763358, -0.0177561529, 0.00101008522, -0.00741514, -0.0244366862, -0.0165255293, 0.00660518836, 0.000177275069, -0.0123690311, 0.00315661449, 0.0108558657, -0.0127269169, 0.00634462247, 0.0128022619, -0.0137629025, -0.00132166559, -0.0246124901, 0.00696307421, 0.0138884764, 0.0103975208, -0.0117223263, -0.0138884764, -0.0107428497, 0.0147549361, -0.00847624, 0.00934897829, 0.010008242, 7.46085716e-05, 0.00400894741, -0.0166762173, -0.0111698005, 0.00770396041, 0.00478122709, -0.02490131, 0.00577326119, 0.007503042, 0.00380175048, 0.00535572786, -0.0133359507, -0.0108307507, 0.0241855383, -0.00294470857, -0.0230679307, 0.0209206156, -0.00275791739, -0.010039635, -0.0234823246, -0.0089848144, -0.00577326119, 0.0227288809, 0.0134489676, -0.0012306245, 0.0229800288, 0.0135368686, -5.00578863e-05, -0.0203429759, -0.027400231, -0.00705725467, -0.0107428497, 0.00733979605, 0.00358513556, 0.0209959596, 0.00893458445, 0.00513597345, -0.0230930448, 0.00278774113, -4.44413963e-05, 0.00229957257, 0.0217242893, -0.0106863407, 0.0112451445, 0.00464937463, 0.0194388442, 0.014867953, 0.000113605158, -0.00776674738, -0.0104038, 0.00260251947, -0.00685005775, -0.00650472939, -0.0087336665, 0.0136624426, 0.00535572786, 0.00900365, 0.00735863205, -0.00223364611, -0.0141772963, 0.00241729803, -0.0248761941, -0.00932386424, -0.0182710066, -0.0229046829, 0.0116281454, 0.0258682277, -0.022276815, -1.00189354e-05, 0.0055283918, -0.0090413224, 0.00120001577, -0.00883412547, -0.00941804424, 0.00161676423, 0.0142526403, 0.0052709654, -0.0139512634, 0.00200761319, 0.00246909726, 0.00303261029, -0.0396562442, 0.010039635, 0.0148553951, -0.0220507812, -0.00830043666, 0.00766000943, -0.00602754857, 0.0291582644, -0.01006475, 0.0212094355, -0.00541851483, -0.000780128, 0.00460856315, 0.0159604456, 0.0389781445, -0.00346584036, -0.000285484479, 0.0182961207, -0.0241478663, 0.00916689634, 0.0122246211, -0.0215736, -0.0134112947, 0.00779814087, -0.0190244503, -0.00448612822, -0.00819997769, -0.00210807216, 0.0161739215, -0.0360899456, 0.00607777806, -0.000620021252, -0.00478122709, 0.0122685721, -0.0292084944, -0.0106423898, 0.00779814087, -0.00973825809, -0.0108872596, 0.0118165063, 0.00108150544, 0.0086771585, -0.00148569653, -0.0196648762, 0.0211592056, 0.0264207534, -0.0109437676, 0.00703213969, 0.00702586118, -0.00369187328, 0.0026401917, 0.0245120302, -0.00093552575, -0.0195895322, -0.000100361038, -0.00324608595, -0.0454828739, -0.0133861806, -0.0042130053, -5.47914351e-05, 0.00036357576, -0.0147172641, 0.0153576909, -0.0158851016, 0.0144284442, 0.0158474296, 0.000928462192, 0.00664913934, 0.00973825809, -0.0256673098, 0.000539575471, 0.00631636847, 0.00213632639, 0.012563671, -0.00622846652, 0.0140014924, 0.0284801666, 0.0105984388, 0.000781697687, 0.0190746784, 0.00763489446, -0.0243236683, 0.00995173305, -0.00680610677, -0.0239846203, -0.00766628794, 0.0152697889, -0.0323980711, -0.0133610656, 0.0169650372, 0.00745909102, 0.00446729222, 0.0332268588, -0.00309539726, 0.0206945837, 0.00439194823, -0.0183589086, 0.00405917689, 0.00916689634, 0.00734607456, 0.0293591842, 0.0177310389, -0.0167013314, 0.00332456967, 0.0112577025, 0.00271082716, 0.00195581396, -0.0206694677, -0.0110944565, -0.0259938017, -0.00818114076, -0.00447043171, -0.00854530558, 0.0111698005, -0.00624416349, 0.0220884532, 0.00125338475, -0.00512655545, -0.0131601477, -0.0128399339, 0.00306086452, -0.00420672633, 0.00967547111, 0.0164125115, 0.00717654964, 0.00228858483, 0.0248385221, 0.0189239904, 0.00565710524, -0.0107679637, 0.00862065, -0.0123564741, -0.00354746333, 0.00632578647, -0.0115402434, 0.022389831, 0.0173292011, 0.0262449495, -0.00265588844, -0.00637287647, 0.012588786, 0.000720480399, -0.0173292011, 0.00135384384, 0.0190370064, 0.00951222517, -0.00804928876, 0.0225656349, -0.00685005775, 0.00840089563, 0.0108747017, -0.00545304781, 0.0205187798, -0.0065298439, 0.00317388098, 0.0140014924, 0.00179727678, 0.00958129, 0.00221637986, 0.0323478431, 0.000584703579, 0.00654240139, 0.00220225262, -0.00717654964, 0.00158066174, 0.0225656349, -0.0088278465, -0.0131727047, -0.00327120069, -0.0131978197, -0.00887807645, 0.00845740363, -0.0116407024, 0.00488168653, 0.010121258, 0.0226912089, -0.00695679523, 0.0232311767, -0.0122999661, -0.00205313368, 0.0362406336, 0.00311423326, -0.000926107692, 0.00904760137, -0.00041086218, 0.00665541785, 0.0141521813, -0.0146419192, -0.0018757605, -0.00720794313, -0.0106612258, 0.0310418736, 0.00177687104, 0.00231212983, -0.0190495644, 0.0197402202, 0.00230428157, 0.0171031691, -0.0105544887, 0.0186100565, -0.00718910713, -0.0167766772, 0.00172193244, -0.00843856763, -0.00976337306, 0.0339049585, 0.0171157252, -0.00361966831, 0.00474983361, 0.0255166218, -0.00787976384, -0.0104477508, -0.000256837928, 0.0161488075, 0.0112388665, 0.0211717635, 0.00820625573, -0.00860809255, 0.0144786732, 0.0189365484, 0.0166511033, 0.0190244503, 0.0128085399, -0.00617195852, 0.00851391163, 0.0030153438, -0.0115590794, 0.00422556233, -0.0148553951, -0.00460228417, 0.00763489446, 0.0209708456, -0.00329945493, 0.00377977523, -0.00272809342, -0.0286057405, -0.00242200703, 0.00302162254, 0.00141113694, 0.0159102157, -0.00353176659, 0.00558176078, 0.0042412593, 0.00935525727, -0.0125950649, 0.00619079452, -0.0182961207, 0.00226190034, -0.00215673214, 0.00126280275, 0.0110128336, 0.00438566925, -0.00384884072, 0.0103221769, 0.0108684227, 7.882707e-05, 0.00865832251, 0.0213350095, -0.0264207534, -0.00994545501, -0.000848408847, 0.00920456834, -0.00874622352, -0.000865675218, -0.0050103995, 0.000345720706, 0.0171282832, -0.0139638204, -0.0253784899, 0.0138131315, 0.0265714433, -0.00231683883, 0.029735906, -0.00793627184, 0.0293591842, 0.00260565896, -0.00572931, 0.00903504342, 0.0121743921, -0.00233253557, 0.00739630405, 0.0260942616, -0.00832555164, -0.0105858818, 0.0202676319, -0.0106109967, -0.0226409789, 0.0216615014, -0.000842130103, 0.0356127657, 0.0147172641, 0.0129215568, 0.0277769528, 0.00656123739, -0.00780441938, -0.0391288362, -0.00596790062, -0.0207824837, 0.0141647384, 0.0207699277, -0.0171659552, 0.0244241282, -0.00410940684, 0.00929874927, -0.00570733473, 0.00378605374, -0.0129717868, 0.00359455356, 0.00545304781, -0.0128838848, 0.00949966721, -0.00474983361, 4.80957933e-05, -0.00287878211, 0.00399011141, 0.00458030868, 0.0153953629, 0.0141647384, -0.0254915059, -0.00608719606, -0.00745281251, -0.0233441927, 0.0237585865, 0.0117788343, 0.00925479829, -0.0147172641, -0.017316645, -0.0121492771, 0.0111760795, -0.0114209484, 0.00531805586, 0.0277518369, 0.0256547537, 0.0143028703, 0.000676137104, 0.00544676883, 0.00588627765, 0.00585174467, -0.0111635216, 0.00798022281, 0.0192253683, 0.00826904271, -0.0212973375, -0.00687517226, -0.00408743136, 0.00759722246, -0.0186226126, -0.012538556, -0.0381995887, 0.00874622352, -0.00631322898, 0.02508967, 0.00387395546, 0.00116862229, -0.0034815371, 0.00910410937, 0.0203429759, -0.00628183549, -0.0027594869, -0.0126390159, 0.0241980944, -0.00786720682, 0.0301126279, 0.0119985882, -0.00185849413, -0.0183337927, 0.00306871277, -0.00621904852, 0.017517563, 0.0315441713, 0.0163371675, -0.0216740593, 0.0154330349, 0.00625672098, -0.0109249316, -0.000344935863, -0.0132103767, 0.00584860565, 0.0116783753, -0.0224902891, -0.0190118924, 0.0121367201, 0.0345328301, 0.0308660697, 0.00509516196, 0.00838206, 0.0231181588, -0.0153325759, 4.18170966e-05, -0.0120048672, -0.0243864562, 0.0138884764, 0.00234509306, 0.000441470824, 0.0195393022, 0.0234572086, 0.00784209184, 0.00813719071, -0.01251972, -0.0103221769, -0.0117788343, 0.017580349, 0.0217494033, -0.0114900144, 0.0177184809, -0.00392104592, -0.00535886735, -0.00826276466, 0.0087148305, -0.00330573367, -0.00524585089, 0.0168269053, -0.0143279843, -0.00405289838, 0.0163748395, -0.020154614, -0.0107491277, -0.0158976596, 0.000907271577, -0.00133422296, 0.0204057619, -0.0211089775, -1.83210395e-05, -0.020016484, 0.00278460188, 0.00537456386, -0.00340933213, -0.0177938249, -0.00289133959, -0.00927991327, -0.0375717171, -0.0115402434, 0.000694973161, -0.00145665754, 0.0201420579, 0.0054750233, 0.0184719246, 0.00153985026, -0.0221637972, 0.0131099178, -0.00312208175, -0.00133500784, -0.00398069341, 0.0207573697, -0.00713887764, -0.0199536961, 0.0146293622, -0.00688145123, -0.0188612025, -0.0211340915, -0.00963152, -0.0189491045, -0.017467333, 0.00018296513, -0.0171157252, -0.00737746805, 0.00632578647, 0.0195393022, 0.0199160241, 0.00102656684, -0.017618021, 0.0110567836, 0.00172978081, 0.00930502824, 0.0186226126, -0.0121178841, -0.00180826453, 0.017530119, -0.0111698005, -0.0019668017, 0.0202801879, 0.00891574845, -0.000262724207, -0.00602440909, -0.0182458907, 0.0192504823, -0.0235451106, -0.0115653584, 0.00920456834, 0.000874308462, -0.0235953405, 0.00212847791, 0.0326743349, 0.0218749773, 0.0153702479, 0.00731468108, -0.0308409557, -0.00272495416, 0.0219000932, -0.0140266074, 0.00175960467, 0.0240348484, -0.00454577617, -0.022590749, -0.00483145658, 0.0292838383, -0.000897853577, 0.0016246126, -0.00321469246, -0.00104932708, -0.020054156, -0.0145289032, -0.00715143513, 0.00574500719, -0.0218247473, 0.00215830188, 0.00912294537, -0.00742769754, 0.0131601477, -0.000556057, 0.0116846533, -0.0173292011, 0.0219000932, -0.0119295232, 0.0166259874, 0.00824392773, -0.000361025042, 0.0161362495, -0.0207322557, -0.00693795923, 0.00494133402, -0.00453635817, -0.00850763358, -0.00272966316, 0.0109437676, 0.00997684803, 0.00258054421, -0.00845740363, -0.00320527446, -0.0142275253, 0.00428207079, 0.010102422, -0.00343130738, -0.00155868637, 0.0104665868, -0.00969430711, -0.0168520212, -0.000106345418, 0.01488051, -0.0128336549, -0.0107051767, -0.00534944935, -0.0247631781, 0.0184216946, 0.0184970386, -0.0110881776, -0.0233316347, 0.0119734732, -0.032573875, 0.00785464887, -0.00478750607, -0.019966254, 0.00906015839, -0.0242232103, 0.0115528014, 0.0144410012, 0.0233441927, -0.0089283064, -0.0120048672, -0.000122336467, 0.0145414602, 0.00253188424, -0.0104100779, 0.0118541783, 0.0301377419, 0.00159557373, 0.0181831047, -0.0265463274, -0.0153074609, -0.00470588263, 0.00311737275, -0.0181705467, -0.0204559918, -0.00355374208, 0.00800533779, -0.00170780532, -0.0160609055, 0.0218498632, 0.00813719071, 0.00397755392, 0.0203304179, -0.0290829204, -0.00708864816, 0.0147298211, -0.000437546638, 0.0133359507, 0.00952478219, -0.0107616857, 0.00668681134, 0.00989522506, -0.00204685493, -0.0131475898, -0.0129592288, 0.00826276466, -0.00835066568, -0.000142546021, -0.0106549477, -0.00689400826, -0.0078986, -0.0116909323, -0.000583133893, -0.00814346876, 0.0225279629, 0.00764117343, -0.00660518836, -0.000667503919, 0.00949338824, 0.00530549837, 0.00458030868, 0.00020543109, -0.0258933436, -0.000176392117, 0.0214229114, 0.0209582876, 0.0131224748, -0.00447984971, 0.00950594619, 0.00851391163, -0.00789232086, 0.000452850974, -0.0236581266, -0.0110756205, -0.00685633626, 0.0307153817, -0.00658635236, -0.0158976596, 0.00883412547, -0.00364792254, 0.000410077337, 0.00818114076, -0.00195424422, 0.00244084327, 0.0190244503, -0.0107679637, 0.000501118426, -0.00282070437, -0.00789232086, -0.00879645348, -0.00939292926, 0.0167766772, -0.00221481, -0.0128399339, -0.00243142503, -0.0161236916, -0.0335533544, 0.000925322878, 0.0203304179, 0.0299870539, -0.0119106863, 0.0284801666, -0.0015100264, 0.00943688, 0.0134991966, 0.0387269966, 0.00153906539, 0.0118541783, 0.022314487, 0.00654868037, 0.022615863, 0.00429462828, 0.0118792932, -0.00554408878, -0.0115025714, -0.0182082187, -0.00428207079, -0.0122371791, 0.0456586778, -0.0208829436, 0.0203555338, 0.0114397844, 0.0208703857, -0.000679668854, 0.0197402202, -0.0368182734, -0.00384884072, -0.0134489676, -0.00340619264, 0.003096967, 0.017618021, -0.00328061869, 7.76498127e-05, -0.0376219489, -0.0044829892, -0.00788604282, -0.0104226358, 0.0231181588, -0.0102656679, 0.00786092784, 0.0223647151, 0.00899737142, 0.0192755982, 0.000352391828, -0.0279527549, 0.00543107232, 0.0134112947, 0.00749676349, -0.00220853137, 0.00726445159, 0.00566652324, -0.00903504342, 0.00894086342, 0.0114146695, 0.00963152, 0.00425695581, -0.0151818879, -0.0018208219, 0.0161362495, -0.00618137652, 0.000351606985, -0.0285806246, 0.0010610997, 0.0319208913, 0.0145414602, 0.0172789712, -0.00964407716, 0.00541537534, -0.0088090105, 0.0129717868, -0.00623788452, -0.00591139263, -0.00130361435, 0.0107930787, -0.00121414289, 0.0189616624, 0.0147674931, -0.00902876537, 0.0033999139, 0.00390848843, 0.0219000932, 0.00744653353, 0.00363536505, -0.0113707185, 0.00511085894, 0.012500884, 0.0317953192, -0.00304045854, 0.0243990142, 0.0285555106, 0.00951222517, 0.0184468087, -0.00211121165, 0.010033357, 0.00978220906, -0.00900365, 0.0183337927, 0.00944315922, 0.0120174242, -0.00993917603, 0.0210587475, -0.000501903298, 0.00149903877, -0.00402778341, -0.00731468108, -0.00774791092, -0.00966919214, 0.00828787871, -0.00419416931, 0.0192379244, -0.00486285, 0.0171282832, 0.00939292926, -0.00997057, -0.040083196, 0.00755327148, 0.0240850784, -0.0280281, 0.00804928876, -0.012482048, 0.0116030304, -0.0226033069, 0.0116658174, -0.0127708679, -0.0111949155, -0.0162367076, 0.00580465468, -0.00817486271, 0.000311384094, -0.00654240139, -0.00192128099, 0.00786720682, 0.0154204778, -0.0256296378, -0.00310010626, -0.00816858374, -0.00813091174, -0.00248950301, 0.0159604456, -0.00902876537, -0.0221637972, -0.00279558939, -0.0177687109, 0.0135619836, 0.0115967523, -0.0141396243, -0.00631008949, -0.0115088504, -0.0193509422, 0.0104038, -0.0164501835, -0.0148553951, 0.0289573465, 0.00747164851, -0.00539967883, -0.00315033575, 0.0183714647, -0.0290578064, 0.0131601477, -0.0208076, -0.0145289032, 0.00128477823, 0.00130518398, -0.00792371482, -0.000709885091, -0.00899109337, -0.0122999661, 0.0180575307, -0.00167484221, 0.0102217179, -0.00854530558, -0.0130596878, 0.00725817261, 0.00444845622, 0.0194388442, -0.00232625706, 0.000363379542, -0.0195518602, -0.00364164379, 0.00408743136, 0.00836322363, -0.00481576, 0.0117788343, 0.00917317532, -0.000925322878, -0.00165914546, 0.0122936871, 0.0151191009, -0.00949338824, 0.00309539726, -0.00825020671, 0.000785229437, -0.00446729222, 0.0194890723, -0.00565396575, 0.0243236683, 0.0121932281, 0.0159730036, 0.0116093094, 0.0047247191, -0.0135243116, 0.00395871792, -0.000591767137, 0.0122309, -0.0167515613, -0.0205438938, -0.0142149683, -0.00208452716, -0.0209331736, -0.0171157252, -0.00732723856, 0.0137126725, -0.0186979566, 0.00963779911, -0.0180449728, 0.0067621558, 0.00204999442, 0.0013813132, 0.0217745192, 0.00259310147, 0.0329254828, -0.00860809255, 0.0266970154, 0.00541223632, 0.0230804868, -0.00430404628, 0.0209834035, -0.0136624426, 0.0211089775, -0.000185123441, -0.017517563, -0.0318204314, 0.0086959945, -0.00278931088, -0.000581171829, 0.0159855597, 0.00502295699, -0.00331515167, -0.0186351705, -0.00939292926, 0.00258211372, 0.00385511946, 0.00838833861, -0.0115841944, -0.0187356304, -0.0121681131, -0.0209582876, -0.0316195153, 0.00187419087, 0.00497900601, -0.0190746784, 0.0019809287, -0.00887179747, 0.00668681134, 0.00705725467, 0.0286057405, 0.0239595044, -0.00393674243, 0.00352862733, -0.0086771585, -0.00835694466, -0.0168394633, 0.00428521028, -0.0060401056, 0.00318643823, 0.00529608037, -0.00789232086, 0.00199819496, -0.00116783753, -0.00786092784, -0.00353176659, -0.000809167, -0.00196837122, 0.0105607668, -0.0257928837, -0.0135117546, -0.0105921607, -0.0204057619, -0.0086959945, 0.00633520447, -0.00543735083, -0.0137252295, 0.0151191009, -0.0186351705, -0.0169524793, -0.0210587475, 0.00798650179, 0.00469332561, 0.0187984165, 0.0143154273, -0.0331766307, -0.0232186187, 0.0259184577, -0.0252152439, -0.0072330581, -0.0127331959, 0.0112011945, 0.00253345398, 0.0044829892, -0.00639171293, -0.020003926, -0.0115779154, -0.0097257, -0.00901620742, -0.00286308536, 0.00782953389, -0.0262700655, 0.0158474296, 0.0237209145, 0.0117411623, 0.0238464884, -7.14692214e-05, 0.0153074609, 0.00536828535, 0.0132229347, 0.00371070951, 0.00144880917, 0.0373708, -0.024938982, -0.00408743136, 0.0158599857, -0.0107365707, -0.0170403812, 0.010102422, 0.000905701949, 0.0132982787, -0.00362594705, 0.00328375818, 0.0123313591, -0.0375466049, 0.012456933, 0.0131099178, -0.00569163822, -0.0171031691, 0.000270180142, -0.00508888345, -0.00900992937, 0.000406153151, -0.00244398252, 0.00567594124, 0.0110002756, -0.00745909102, -0.0254287198, -0.00416277582, 0.0152823469, -0.00244869152, -0.0219377652, 0.0161362495, 0.00851391163, 0.0111258496, -0.00732095959, 0.00054546172, 0.00623160601, 0.00361338956, 0.0107930787, -0.00296511431, -0.0333022065, -0.00259153196, -0.0138382465, -0.0164753, -0.0337793864, 0.000854687532, 0.00730840256, 0.00221010111, -0.00159949786, -0.0047341371, -0.00282855262, -0.00757838646, -0.0259435736, 0.0631385669, 0.0107742427, 0.00991406105, -0.0139638204, -0.00185535476, -0.0376219489, -0.00613428606, 0.027550919, -0.00447043171, 0.012563671, -0.00168739958, -0.00978848711, -0.0111949155, -0.000177078851, -0.0153953629, -0.0166511033, 0.0176431369, -0.00519876042, -0.0035097911, -0.0166511033, -0.00232782657, -0.00606836, 0.0007479497, -0.0045300792, 0.0087336665, 0.00587372, 0.00709492667, -0.0114837354, 0.00758466497, 0.000731075706, 0.00625044201, 0.0240097344, -0.00679354928, 0.0163748395, -0.0243738983, 0.00650472939, 0.00171722344, -0.00533375237, 0.00600557309, 0.0106047178, 0.00604638457, 0.00314876623, -0.00549385929, -0.0183337927, 0.00456147268, 0.0148553951, 0.000975552422, -0.00611545, -0.000740493764, -0.0158474296, -0.012532278, -0.0248259641, -0.00258996221, -0.000842130103, -0.00687517226, 0.00127692986, 0.0089471424, -0.0191374663, 0.0072142221, 0.0242608823, 0.0206317957, 0.0280281, -0.00658007385, -0.00432602176, 0.0143656572, -0.00430404628, 0.000462269, -0.0181328747, 0.000563512964, 0.000447749509, -0.00639799144, 0.0158851016, -0.00295255682, -0.0137126725, -0.00926735532, 0.015068871, 0.0160609055, 0.0139387054, 0.00945571624, 0.00772279641, -0.0277518369, 0.00307656126, -0.00993289705, -0.0161864795, -0.000550170778, -0.00272024516, -0.0119985882, -0.0120927691, -0.0238716025, 0.0201043859, 0.00742769754, -0.00403092289, -0.00919201132, -0.00308283977, -0.00136326195, -0.00862692855, -0.00888435543, -0.00756582897, 0.0230679307, 0.0179821867, 0.0191123504, 0.00301220454, 0.0206443537, -0.0132982787, -0.0128462128, 0.0173668731, -0.00497586653, -0.00144174567, -0.000615312252, -0.000742455828, 0.010001963, -0.0121743921, 0.0221010111, 0.0138884764, -0.00795510784, 0.0047780876, 0.00128477823, 0.00201232219, -0.000671035668, -0.0128838848, 0.0167264473, -0.000789938495, -0.00193854747, 0.000776596251, -0.0011780404, 0.0271993112, 0.0128964419, -0.00114664692, 0.0241353083, 0.000846839161, -5.69497352e-05, -0.0212596655, 0.0161990356, -0.0241855383, 0.0116407024, 0.0268477052, -0.010071029, 0.0137126725, 0.00390848843, 0.0364415534, -0.0107177347, 0.0254663918, -0.0121178841, 0.0169273652, -0.0265463274, -0.00567280222, -0.0320213512, 0.000765608507, 0.0152195599, -0.00914806, -0.0194011722, 0.00355060282, 0.0213475674, 0.00461170217, -0.00377663574, -0.0018757605, -0.000909626135, -6.79374571e-05, 0.0133233937, -0.00173762918, 0.00455205468, 0.0121995071, -0.00353804533, -0.00455205468, 0.0035097911, -0.000813091174, -0.00727700908, 0.00971942209, 0.00921084732, 0.0186602846, 0.0144786732, 0.0158599857, -0.00483145658, 0.0108747017, -0.00996429101, 0.00442962, 0.00391162792, -0.00983243808, 0.00854530558, -0.00863948558, 0.00439194823, -0.00151865964, 0.00987011, 0.0345830582, 0.00211278116, 0.00351606985, 0.00668681134, 0.00413766084, 0.00938037224, 0.029735906, 0.0167264473, 0.0267974753, 0.00319585647, -0.00943060126, -0.00359141431, -0.0122120641, -0.00606522057, -0.00439194823, -0.00402150489, -0.00993917603, 0.00988894608, 0.00544990832, -0.0184970386, -0.0154958218, 0.00482203858, 0.020041598, 0.014918182, -0.00546560483, 0.0021316174, 0.0144158863, 0.00318800798]
|
15 Jan, 2023
|
How Does Default Virtual Behavior Differ in C++ and Java?
15 Jan, 2023
Let us discuss how the default virtual behavior of methods is opposite in C++ and Java. It is very important to remember that in the C++ language class member methods are non-virtual by default. They can be made virtual by using virtual keywords. For example, Base::show() is non-virtual in following program and program prints “Base::show() called”.
Example:
CPP
// C++ Program to Illustrate How
// Default Virtual Behave
// Different in C++ and Java
// Importing required libraries
// Input output stream
#include <iostream>
using namespace std;
// Class 1
// Superclass
class Base {
// Granting public access via
// public access modifier
public:
// In c++, non-virtual by default
// Method of superclass
void show()
{
// Print statement
cout << "Base::show() called";
}
};
// Class 2
// Subclass
class Derived : public Base {
// Granting public access via public access modifier
public:
// Method of subclass
void show()
{
// Print statement
cout << "Derived::show() called";
}
};
// Main driver method
int main()
{
// Creating object of subclass
Derived d;
// Creating object of subclass
// with different reference
Base& b = d;
// Calling show() method over
// Superclass object
b.show();
getchar();
return 0;
}
Output:
Base::show() called
Output Explanation: Adding virtual before definition of Base::show() makes program print “Derived::show() called”. In Java, methods are virtual by default and can be made non-virtual by using the final keyword. For example, in the following java program, show() is by default virtual and the program prints “Derived::show() called“.
Let us see what happens in the case we use the same concept in a java programming language via the example proposed below.
Example:
Java
// Java Program to Illustrate
// How Default Virtual Behave
// Different in C++ and Java
// Importing required classes
import java.util.*;
// Class 1
// Helper class
class Base {
// Method of sub class
// In java, virtual by default
public void show()
{
// Print statement
System.out.println("Base::show() called");
}
}
// Class 2
// Helper class extending Class 1
class Derived extends Base {
// Method
public void show()
{
// Print statement
System.out.println("Derived::show() called");
}
}
// Class 3
// Main class
public class GFG {
// Main driver method
public static void main(String[] args)
{
// Creating object of superclass with
// reference to subclass object
Base b = new Derived();
;
// Calling show() method over Superclass object
b.show();
}
}
Output
Derived::show() called
Note: Unlike C++ non-virtual behavior, if we add final before the definition of the show() in Base, then the above program fails in the compilation.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?
|
https://www.geeksforgeeks.org/g-fact-43/
|
Pandas
|
How Does Default Virtual Behavior Differ in C++ and Java?
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00115292519, -0.0142279733, -0.0192083679, 0.0561865941, 0.0160291363, -0.000551530393, -0.02268981, 0.00778488955, -0.0114113912, 0.0085222777, -0.00332127092, 0.00594746228, -0.00496528484, -0.0680815205, -0.0113993026, 0.0449202619, -0.0141433552, 0.0338473469, -0.0124872532, 0.00689639663, 0.0134905847, -0.0176973268, -0.0218798909, -0.0102569545, -0.0184588917, 0.01446974, -0.000294653233, 0.00368089881, -0.0353946537, -0.00996683445, 0.00705958949, 0.000886226248, -3.66427739e-05, 0.00810523052, 0.0088547077, 0.016270902, -0.00728322333, -0.0675979853, -0.00389244477, 0.0138653237, -0.0194864012, 0.0294471905, 0.00782719906, -0.0281658266, -0.0415355302, 0.0213359166, -0.0211425032, 0.0178907402, -0.0197765213, -0.0426718332, 0.0230887253, -0.00556063559, 0.00203688489, 0.0315505601, 0.0139378533, 0.00717442855, 0.0169599373, -0.0308494382, -0.017225882, -0.0710794255, 0.00101844245, 0.0112179779, -0.00020625726, -0.0084981015, 0.000543975213, 0.0332429297, -0.0687101111, 0.0124147227, -0.0294713676, -0.0470478125, 4.80936396e-05, 0.0150983343, -0.00675133662, 0.0329044573, -0.0178423859, 0.0368452519, 0.0157994572, 0.0372320786, -0.0233667567, 0.0236689653, -0.0271504074, -0.000246488751, -0.0257481597, 0.0128257265, 0.0432278961, -0.0314055, -0.00303266174, -0.0274405275, 0.00965253729, -0.0034542426, -0.0100151878, 0.00854041055, 0.048232466, -0.027513057, -0.0122394422, 0.0286010075, -0.0275855865, -0.000822762493, -0.0538172796, 0.0527535044, 0.0228953119, 0.000978399883, -0.0239349082, -0.0190028679, 0.00845579244, -0.0473379306, -0.00409190217, 0.0104805892, 0.0547843464, 0.0833128244, -0.0440740809, -0.00543673, 0.0049622627, 0.0320824496, -0.00361139094, 0.0014966873, -0.0139378533, -0.048546765, 0.0616505221, 0.0089695463, -0.00521913962, 0.0331945755, -0.00801456813, -0.0142158857, -0.0419707075, -0.004336691, 0.006624409, -0.00419163099, 0.0221458357, -0.00592630776, -0.0145060057, -0.0475555211, 0.0114416117, -0.0167665239, 0.0187006593, 0.00329105, 0.0370386653, -0.0225689262, -0.0342825241, 0.0324692763, 0.0267394036, -0.0125597827, 0.00414025551, 0.0149532743, -0.0466368087, -0.0146873305, -0.000642192957, 0.015485161, -0.000622171618, -0.0385859758, -0.0228469577, -0.0380782634, 0.0255063921, 0.0263767522, 0.018422626, 0.0249019749, 0.0222667176, 0.00491088722, -0.0157873686, 0.00774258049, 0.046395041, -0.0228227824, -0.0302208439, 0.0116289807, -0.00203386275, 0.0173225887, -0.00118163507, 0.0234392863, -0.087567918, 0.0168269668, -0.0426960103, 0.0161500201, 0.0438323133, 0.0246722978, -0.0375705548, 0.00220309966, 0.00446664076, 0.0124147227, -0.041051995, -0.0117438203, -0.0331945755, -0.0145180933, -0.0174072068, -0.0179390926, 0.0121427355, 0.00640681898, 0.0110668736, -0.0038682681, -0.0494171232, -0.0212029442, -0.0293746609, 0.00979759824, 0.0102206897, 0.00875800103, -0.0033484695, 0.0166577287, -0.0167786125, 0.0135147618, -0.031695623, 0.0534788072, -0.00779093383, -0.0285526533, -0.010952034, -0.00173467642, 0.00957396347, -0.0312362649, 0.000336206896, -0.0152433943, 0.0591845028, 0.0332187526, 0.00487764413, 0.0343067, -0.00438504433, -0.0199699346, 0.00618318468, -0.0106316935, -0.0413904674, 0.0290845409, -0.0378606729, -0.00822007, 0.0171291754, -0.0196556374, -0.00669089518, -0.0194864012, -0.00481720269, -0.0306560248, 0.00950143393, 0.00237686932, 0.012027896, -0.0200424641, 0.0143125923, 0.0268844627, -0.0212875623, -0.0228953119, 0.00394684216, -0.00214870204, -0.0161258429, 0.00760960858, -0.0189666022, 0.0404475778, 0.0201633479, 0.0176852383, -0.0433004275, -0.00836513, 0.00478698174, 0.0242129415, 0.0181929488, 0.00274103065, -0.0122575741, -0.0178302974, 0.00335149164, -0.0019552887, 0.00836513, 0.0184830688, -0.0249986835, 0.00643099565, -0.0203688499, 0.0181083307, -0.0208886471, 0.0227865167, 0.000894537, 0.0809918642, 0.00839535054, 0.0243217349, -0.00858876389, -0.0298098419, -0.0107827969, 0.00111137156, 0.00283773732, 0.0301724914, 0.0209974423, -0.0214084461, -0.00727113523, -0.00514660962, 0.0119493222, -0.0137444399, -0.00231189467, 0.0359990709, 0.0490786508, 0.0107707093, 0.0327352174, 0.0147719486, 0.017636884, 0.00607439, 0.016270902, -0.0212150328, -0.0251437426, 0.0304867886, -0.0160895772, -0.00712003093, -0.0426960103, -0.0354671814, -0.000429891516, -0.0280691199, 0.00812336337, 0.00322758616, -0.0337748155, 0.00996683445, 0.00800248, -0.0238623787, 0.0294471905, -0.0528502129, 0.0564283617, -0.0295680743, 0.000428002706, -0.00157903915, 0.0352495946, 0.0123905465, 0.013829058, -0.00875195675, -0.00019983534, -0.0191479269, 0.00346935284, -0.0175280906, -0.00666067423, -0.00896350201, 0.02951972, 0.0182654783, -0.0278515294, -0.00155184034, -0.00263525755, 0.0250953902, 0.00397101883, 0.028528478, 0.0572503693, -0.0105349869, -0.00794808194, -0.0399882197, -0.0292296, -0.0642132536, -0.0138169704, -0.0326626897, -0.0395046882, -0.00699914759, -0.0076640062, -0.0125839598, -0.00831073243, -0.028238358, -0.0272712894, -0.0503841937, -0.0111575359, 0.0331220441, 0.00475676078, -0.0060471911, -0.0172017049, -0.0509160794, -0.0153280124, -0.000474467262, 0.00692661759, 0.0502874851, 0.000821251422, 0.000635015487, 0.00275916304, -0.0539623387, 0.0373529643, -0.00561503274, -0.00535211153, -0.0168269668, 0.00723487, -0.000181608382, 0.0471445173, -0.0170324687, 0.00378969382, 0.00204897323, -0.0317923278, -0.0232942272, 0.00162134832, -0.0441949628, 0.0350803547, 0.0122394422, -0.0287702437, -0.0313813239, 0.0339440517, 0.00956791919, 0.0167907011, 0.0287218913, -0.0454521514, -0.0046932972, -0.0180358, 0.0227744281, -0.0240437035, 0.0771719515, -0.00722882617, 0.00392871, 0.0123361489, 0.0119614098, -0.0248536225, -0.0428652465, -0.0175643545, -0.0138895, -0.0182896554, 0.0461532734, 0.0207798518, 0.0379815586, -0.0135510266, -0.000150159816, -0.00895745866, -0.00818984862, -0.01446974, -0.0274163503, 0.0187248345, 0.0388519168, 0.00167725689, -0.0139982952, -0.026497636, 0.0123603251, -0.0210216194, 0.0110729178, -0.00421883, 0.00985199492, -0.004575436, -0.0349836498, -0.01432468, 0.00489879912, -0.0536238663, -0.00684199901, 0.0184468031, 0.0617472306, -0.026932817, 0.013333437, 0.0209732652, -0.0236931425, 0.0027697403, 0.00774258049, -0.0124026341, 0.039021153, 0.0293263067, 0.0241524987, 0.0380782634, -0.00894537, -0.0378123224, 0.0172500573, 0.0185676869, 0.0244063549, -0.0101602478, -0.010414103, 0.0241041463, -0.0134664085, -0.035854008, -0.0160895772, -0.00406470336, 0.0108130183, 0.0202842299, -0.0103899259, -0.0352979451, -0.00676946901, -0.00856458768, -0.0136235571, -0.00214870204, 0.0104443235, -0.046249982, -0.0128257265, 0.0140587371, -0.00943494774, 0.0294230133, -0.00928988773, 0.0201029051, -0.0186764821, -0.00771840382, 0.000107472879, 0.0187369231, 0.000623682688, 0.00991848111, 0.00531282462, 0.0106981788, 0.0398673378, -0.0145785352, -0.0164038744, -0.011592716, -0.0173346773, 0.0123119717, -0.0358781852, -0.0291812476, 0.000273309764, 0.0426234789, -0.0119191008, -0.0247327387, -0.00569058489, -0.00637659803, -0.0306318477, 0.0116833784, 0.0476764031, -0.0038320031, -0.0450895, -0.0353221223, 0.00157148391, 0.0554612949, 0.0487885326, -0.0416805893, -0.0249745063, 0.00536722178, 0.0113207288, 0.028528478, -0.0616021678, 0.0183138326, 0.00734970951, -0.014699419, 0.00117710186, 0.0289878342, 0.0538656339, -0.0175280906, -0.0448960848, -0.0315505601, 0.00377760548, 0.00904207677, -0.0215535071, -0.0461532734, 0.029108718, -0.0178786516, -0.0375705548, -0.00529771391, 0.0139257647, -0.0167181715, -0.00844974816, 0.00794203766, -0.0157873686, -0.0160291363, -0.0251679197, -0.00380782643, -0.045234561, 0.00113932579, -0.0113630379, 0.0264251065, 0.00832886435, 0.00840743911, 0.00563618727, 0.0546392873, -0.0332429297, 0.0011778574, 0.00182836107, -0.0125718713, 0.0213721804, 0.0147115067, 0.0188215412, -0.0115080979, -0.0469027497, 0.00563618727, 0.0208161175, 0.00732553285, 0.00684199901, 0.00207919418, -0.0216623, -0.00550019369, 0.00921131298, -0.0083469972, 0.0246118549, -0.012958698, 0.00336358, 0.00695079425, -0.00367183262, 0.0261108093, 0.0193413403, 0.0136960866, 0.0134059666, -0.0268361103, 0.00953165442, 0.00160774891, 0.00469934149, 0.0128378151, -0.0405684598, -0.0121004265, -0.00388035644, 0.02951972, 0.0394321568, -0.00436086766, -0.00237838039, 0.00121487794, 0.00618922897, -0.000747965882, 0.00562712131, -0.0164401401, -0.0310912039, 0.00876404531, 0.0138169704, 0.0307769086, 0.0312362649, -0.00908438582, -0.0164280515, -0.0066848509, 0.0061771404, -0.0238986444, -0.0349111184, 0.016645642, -0.0165489353, -0.0131521113, -0.0238623787, -0.0194743127, -0.000982177444, -0.0275614094, 0.00466609839, 0.0252646264, 0.0520282052, 0.0254338626, 0.0192083679, 0.00614994206, 0.00169538939, -0.022750251, -0.00969484728, -0.0196072832, -0.0269569941, 0.0377881452, 0.0181204192, 0.0355638899, -0.00851623435, 0.02893948, 0.00751894619, 0.015340101, -0.0576855466, 0.00409190217, -0.0180599764, -0.0609252229, -0.0108130183, -0.00854645483, 0.00949539, 0.00187067024, 0.000567774114, 0.0341374651, -0.0118526155, -0.00637055421, -0.0108432388, 0.0155818677, -0.0210578851, -0.0123240603, 0.0104080588, 0.0197886098, 0.00512847723, -0.00598070491, -0.0206106156, 0.00248415349, -0.0225931033, -0.0376672596, -0.0520282052, 0.0110366521, 0.0110850055, 0.00351468427, 0.0155697791, -0.0121971332, 0.0352012403, 0.0185072459, 0.0158357229, -0.0144213866, -0.0047053853, -0.00791786145, 0.0534304529, -0.0134059666, 0.0047386284, 0.00413723383, 0.015920341, 0.00318829902, 0.00709585426, -0.0175160021, -0.01403456, -0.00294955447, 0.00330918236, -0.0128378151, -0.0081112748, 0.00224238657, -0.0184347145, -0.0215776823, 0.0192567222, 0.0141675323, -0.0336055793, 0.0117015112, -0.00407679193, 0.00880635437, -0.00198550941, 0.0107767535, -0.00729531189, 0.0108734602, 0.0156664867, 0.0197765213, -0.0109459898, -0.0237898491, -0.0407860503, 0.0210820604, -0.0117438203, -0.0199336689, 0.0334121659, -0.0199336689, 0.00124132121, -0.00144606736, -0.0107707093, 0.0249261521, 0.0108674159, 0.00825029053, -0.00242068968, 0.0321308, -0.0168753192, -0.017721504, -0.000659947691, -0.0208402947, -0.0142158857, 0.0228469577, 0.0267635807, 0.0104926769, -0.0182775669, -0.0191358384, -0.00430344837, -0.0149774505, -0.0254338626, 0.0242492054, -0.018942425, -0.0381749719, 0.0414388217, -0.00283320411, 0.00063614879, 0.0090299882, -0.00218950026, 0.0221458357, 0.00563618727, -0.00376249524, 0.0158357229, -0.00182382797, 0.0133455247, -0.0131400228, 0.0128378151, 0.00602603657, -0.0156423096, 0.0409794636, -0.0024977529, -0.0170203801, -0.0176127087, 0.0181204192, -0.00768818287, 0.0226414576, 0.000779697788, -0.0170203801, 0.00570871774, 0.02239969, -0.00290422305, -0.00846788101, 0.0220733043, -0.0101179387, -0.0154488953, -0.0381749719, -0.00226203026, 0.0174192954, -0.0145180933, 0.00339077879, -0.0450653248, 0.000441224343, 0.00915691629, 0.0281174742, 0.039601393, -0.0409311131, 0.00293897721, 0.0278757066, -0.00341193331, -0.00450895, 0.0258448664, 0.00179814023, 0.0286493599, 0.0341374651, -0.0142037971, 0.00844370387, -0.0141554438, 0.0178544745, 0.00928988773, 0.0371837281, 0.0143972104, -0.00015299303, 0.0407860503, 0.0160412248, 0.035854008, 0.00477791531, -0.0126081361, -0.00857667532, -0.0256756302, 0.000231944985, -0.00612274325, 0.02893948, 0.00229980634, 0.0300757848, -0.0355638899, 0.00492297579, -0.0112119336, -0.000383426959, 0.0120339403, 0.0174797364, -0.00035112843, -0.0500940718, 0.00547601702, -0.00504083699, 0.020453468, -0.0212754738, -0.0110487407, -0.00725300284, 0.00915691629, 0.0108009297, 0.0209732652, -0.00529771391, 0.0360474251, 0.0313571468, 0.0418014713, 0.00876404531, -0.000620660605, -0.0463708639, 0.000377382792, -0.0326143354, -0.0590877943, 0.00438202266, 0.00611669896, 0.00133802788, -0.00927175488, 0.0358298346, -0.0150862457, -0.00678760186, -0.0120158074, -0.0216502137, 0.0217710957, 0.0120339403, -0.0186764821, -0.0112965517, 0.0453312658, -0.0212996509, 0.0266185198, -0.00656396756, -0.0104564121, 0.0327593945, 0.019728167, -0.00743432762, -0.0142763266, 0.0198369622, -0.0200666413, -0.00224389764, 0.00262468029, -0.00596861681, 0.00349352951, 0.0195831079, 0.0298098419, 0.018422626, -0.00327896164, 0.000781208859, 0.0110064317, -0.0166577287, 0.00831677672, 0.0190270431, 0.00274103065, 0.0254822168, -0.00403146073, -0.0464917459, -0.0105047654, 0.00293142186, -0.00652165804, 0.0295438971, 0.017286323, -0.00944099203, 0.0287218913, 0.00489577698, -0.0102629988, 0.0172742344, 0.016935762, -0.0144939171, 0.0512545519, 0.0130795818, 0.0143125923, -0.0152917476, -0.0297131352, -0.00637659803, 0.0083469972, 0.0107223559, -0.00737388618, 0.0223513357, -0.0144334752, 0.023705231, 0.00970693491, 0.0230161957, -0.0136477333, -0.00752499048, -0.0165852, 6.06777903e-05, 0.00302208448, -0.0229557529, -0.0039831074, -0.00401937217, 0.00708376616, 0.0124751646, -0.0064007747, 0.0431070141, 0.00085827196, 0.0152796591, 0.0111152269, -0.00933219679, -0.0024282448, -6.24721506e-05, -0.00587795442, -0.0119311893, -0.0437597819, 0.0158357229, -0.0385376215, -0.0120097632, 0.0121850446, -0.0313571468, -0.00751894619, 0.0552678816, -0.0149774505, 0.0146873305, -0.0229557529, 0.0257723369, 0.000654659059, -0.00774862431, 0.0160291363, -0.0207556766, 0.0101844249, -8.1974038e-05, 0.0249986835, 0.0105954278, 0.00416443218, 0.00894537, 0.0341616422, 0.0115080979, 0.0149049209, -0.000800852373, 0.00737388618, 0.0291328933, 0.0389244482, 0.0301241372, 0.000366616616, -0.0125839598, 0.00979155395, 0.00281809364, -0.0184830688, 0.0182171259, 0.00438202266, 0.023040371, -0.0240074396, -0.00485044532, 0.0252162721, -0.00415536622, -0.00181476166, 0.00382293691, -0.00788159668, 0.0108371945, -0.0225931033, -0.0319373868, -0.00454521505, -0.0231975205, -0.0122515308, -0.04537962, 0.0146389771, 0.0188940726, -0.0102448659, 0.0161621068, -0.0121669117, -0.0201754365, 0.00733157666, 0.0178786516, 0.040616814, 0.0292054247, 0.00234967074, 0.0170445554, 0.0274163503, 0.0161621068, -0.0403992236, -0.0105108097, -0.0259899255, -0.0153280124, 0.00687826425, 0.00974320062, 0.0131279351, 0.0208402947, -0.00758543191, 0.0440015495, -0.0155818677, -0.00512243295, 0.00899372343, 0.00572987227, -0.0302208439, -0.0389002711, -0.0170203801, 0.0209611785, -0.00653374661, -0.00271232077, -0.00883657485, -0.0316714458, -0.0271020532, -0.018591864, -0.0151104219, -0.00653979089, -0.0151104219, 0.0330736935, 0.0192809, -0.0135872914, 0.0276339408, 0.00670902757, 0.00276067411, 0.0176852383, -0.0036537, 0.0101058502, 0.0319857411, 0.00488671055, 0.00596559467, 0.00564223155, -0.0210578851, 0.00017509202, 0.0329528078, 0.0112058893, -0.0118888803, -0.0342341736, -0.0111575359, -0.0205864385, -0.00132820616, -0.0280449428, -0.00342099951, 0.0375222, 0.00999101158, 0.00612878706, 0.0209128242, -0.0323483907, 0.00391359953, -0.00141584652, -0.0492720641, -0.0135872914, 0.0202963185, 0.00819589291, 0.0104503678, -0.0146268886, 0.00980968587, 0.0334846973, 0.00410399074, 0.0114295231, -0.0351770632, 0.0298098419, -0.0217106547, 0.024490973, -0.00100635411, -0.0389969759, -0.0105470745, -0.00614087563, -0.00445455266, 0.0236568768, 0.00239953515, 0.00861294102, 0.0323000401, -0.00548508344, -0.0139378533, 0.00672716, -0.0417047665, 0.0109701669, 0.0212875623, -0.000679213495, -0.0014898876, 0.0203325842, -0.00427020527, -0.00135616038, -0.0243217349, 0.00350259594, -0.00438806647, 0.019957846, -0.0099487016, 0.00608647801, -0.0171896163, -0.00105168542, 0.00395590859, -0.00601697, -0.0189061612, 0.00524331629, 0.0119916312, 0.00452708267, -0.00936241727, -0.00474467268, -0.0159445181, 0.0302691981, -0.00523727247, -0.00974924397, 0.0120702051, 0.0178907402, 0.0170687325, -0.0165731106, 0.00169538939, 0.00676342519, -0.0244184416, -0.0320824496, -0.0060895, 0.013829058, -0.0251920968, -0.0104382792, 0.00359930261, -0.00350561785, -0.0211908557, 0.00241917861, -0.00982177444, 0.0391903929, -0.00768213859, -0.0101723364, -0.0035358388, 0.00592026347, -0.00538535463, -0.00656396756, -0.0317923278, -0.0118163498, 0.0168632306, 0.0328319259, 0.0180962421, 0.0213600937, 0.00565432, 0.0069205733, 0.0866975561, 0.0150016276, -0.00190542429, 0.000752499036, 0.0060592792, -0.0175885316, -0.00675738091, 0.0132850837, 0.00983386301, 0.0107767535, 0.0259173959, 0.0137323514, 0.0170203801, 0.00343611, -0.0082926, 0.00131913985, 0.00912669487, -0.00465098815, -0.000937601726, -0.0115141422, -0.0345001146, 0.0237294063, -0.0123663694, -0.00892119296, 0.0159928706, -0.00939263869, 0.00400124, -0.0201391708, 0.00289364578, 0.00741619524, 0.0432278961, -0.0064733047, 0.00354792713, -0.00974320062, 0.0116048045, -0.00835304148, 0.00685408758, -0.00197039917, -0.00779697765, -0.00025404396, -0.019232545, -0.00111968233, -0.00558179, 0.0231733434, 0.0194017813, -0.0024645098, -0.00479604816, -0.0112602869, -0.0134301437, -0.0163796972, 0.00748872524, -0.0190391317, -0.0176006202, 0.0118888803, -0.0183863621, 0.0187369231, 0.00164099189, -0.0115504069, 0.0201875232, -0.00643099565, 0.00237989146, -0.0126444018, 0.0109036807, -0.0187006593, 0.0114053469, 0.0197402555, -0.0141433552, -0.0147356838, 0.0182050373, 0.014264239, 0.0163676087, 0.0100695854, -0.00572987227, 0.0133576132, 0.00447268505, 0.0175885316, 0.0224963967, 0.0325659811, 0.0116954669, -0.0385618, -0.0201029051, 0.00988221634, 0.0348627679, 0.0226051919, -0.0226414576, -0.00748268096, 0.00458450196, -0.00687826425, 0.00790577289, 0.0160774887, 0.0033484695, 0.0103959702, -0.00831073243, 0.0113690821, 0.00516776461, -0.0142763266, 0.0229436643, 0.0454763286, -0.00345726451, -0.00678155757, -0.0161379315, 0.0137081752, -0.0204776451, 0.00328500569, -0.00388942263, -0.0130191399, 0.0258690435, -0.0122998841, 0.0121548241, -0.00207617204, 0.0226535443, -0.0104020145, -0.0111575359, 0.00104790775, 0.0135752037, -0.0143609457, 0.00524936058, 0.0142400619, -0.00173920963, -0.0171896163, -0.00491390936, 0.00330313831, 0.00745850429, -0.00344215427, -0.00165459118, 0.0221216585, 0.00769422716, 0.012275707, 0.00380782643, -0.0318648592, -0.00968880299, -0.0166214649, -0.0180599764, -0.00865525, -9.28346562e-05, -0.0198974032, 0.0172379706, 0.0076640062, 0.00175129797, -0.0211545918, -0.0175522659, 0.0130312284, 0.00695683854, 0.0157269277, -0.00468120864, -0.00499852747, -0.0105410302, -0.0283592399, 0.013248818, -0.0139015885, -0.0360716, -0.0111938007, -0.00247055409, 0.00542464154, -0.00507105747, -0.0227139872, 0.00860085245, -0.00230433932, 0.00964045, -0.0255547464, -0.0109882988, 0.0135752037, 0.020308407, -0.00689035235, -0.00102675322, 0.00266850065, -0.00105017435, -0.0166577287, -0.0334846973, -0.0101360716, 0.0209974423, -0.0326626897, -0.0190391317, -0.0265943427, 0.0154368076, 0.00903603248, -0.00299488567, -0.0253129788, -0.00330313831, 0.00791786145, 0.00565432, 0.0114839207, 0.00617109658, -0.000564374262, -0.0152433943, 0.00217438978, -0.0341132879, 0.0280691199, 0.0178907402, -0.0202358775, 0.00194773346, 0.0142158857, 0.0071321195, -0.0303659048, 0.0178786516, -0.00241313432, 0.00634637754, -0.0440015495, -0.0121125141, -0.00977946538, -0.0295922514, 0.00629198, 0.00282111578, 0.013478497, -0.00547903916, -0.022049129, -0.0228106938, -0.00103053078, 0.0205501746, -0.0211908557, 0.0193413403, 0.0236810539, -0.00763982954, -0.00218647812, 0.00366578833, 0.013248818, 0.00243580015, 0.0368210785, 0.000343762105, -0.00593839586, -0.00306741567, 0.0199820232, -0.0032306083, 0.0129707865, 0.0296406038, -0.00795412622, 0.0184951574, 0.0168994963, 0.0258690435, -0.0114053469, -0.0100212321, 0.023124991, 0.0326143354, 0.0130070513, 0.0138169704, 0.0310186744, 0.0324209221, -0.0197402555, -0.0158840753, 0.00150726456, -0.00526749343, -0.0112119336, 0.00456636958, -0.010081674, 0.00376853929, -8.92459284e-05, 0.0214568, 0.0134301437, 0.000337340171, 0.00514358794, -0.00129420764, -0.0215776823, 0.00591724133, 0.00263374671, 0.00174374273, 0.010081674, 0.0162829906, 0.00115216966, 0.00739806285, -0.0152917476, 0.0411970541, -0.00670902757, -0.00301301829, 0.0167181715, 0.0107465321, 0.0214326233, 0.00309310341, 0.0113207288, 0.0217952728, 0.0121185584, 0.0240799692, 0.0299065486, 0.0073678419, 0.010952034, 0.0315747373, -0.0387068577, 0.031695623, -0.0136960866, -0.00747059286, 0.00183893833, -0.0200787298, -0.00240255706, 0.011447656, -0.00826237909, -0.000587417686, 0.00194471132, 0.0361924842, 0.00831677672, 0.0430586599, 0.00495017413, -0.00300546293, 0.0131279351, 0.0054941494, -0.00351166213, -0.0185676869, 0.0260141026, -0.00914482772, 0.000761187519, 0.018942425, 0.0199215803, 0.012463076, -0.00556970155, -0.0011257265, 0.0148082133, -0.00337869045, -0.0182533897, -0.0213359166, -0.0123663694, 0.0101602478, 0.020598527, 0.00236478099, -0.0148807438, -0.000468045328, 0.0129466094, -0.000361516839, -0.00634637754, 0.0236085244, 0.0165005811, 0.00217287871, -0.0073074, 0.0349594727, 0.00656396756, 0.0064733047, -0.0274163503, 0.00492297579, 0.008322821, -0.0137686171, -0.0169115849, -0.00854645483, 0.0220128633, -0.0386585034, 0.00702332426, -0.0143609457, 0.0119251451, 0.00981573, -0.0085585434, 0.00843161531, 0.0225447491, 0.0188215412, -0.00866733864, -0.031115381, 0.0177094154, -0.0212875623, 0.0148928324, 0.0230887253, -0.00431855861, 0.0145785352, -0.0177819449, 0.00148611, 0.0236085244, -0.0158478115, -0.00768213859, -0.0149653619, 0.00314296782, 0.00536722178, -0.0257239826, -0.0227139872, 0.0121608675, -0.00596257253, 0.0128861684, 0.00335149164, 0.00863711722, -0.00401937217, -0.00184347155, -0.0108251069, -0.0537689254, -0.00631011231, 0.0129103446, 0.0164280515, 0.0159928706, 0.0021683455, -0.0113267722, 0.0203446727, 0.0218073614, 0.0183138326, -0.00944099203, 0.0191600155, 0.0274888799, -0.0313813239, -0.0224963967, -0.00378667191, 0.0261349864, 0.0238382015, -0.0197523441, -0.00114234793, -0.0144576523, -0.0157269277, 0.0095618749, -0.0149774505, 0.00721673761, 0.0313813239, 0.0124026341, 0.016561022, 0.0227139872, -0.00212603644, 0.0117921736, -0.0171654392, 0.00927175488, -0.0188457184, 0.004336691, 9.11819516e-05, 0.000382293685, -0.00826842338, 0.0113993026, 0.0102629988, -0.00774862431, -0.0190512203, -0.0250228588, -0.00312483544, -0.00439411076, 0.00315203401, 0.0332429297, -0.00312181329, -0.00185707095, -0.0124872532, 0.00156392867, 0.02239969, 0.0021819449, -0.0204172023, 0.00859480817, -0.00468423078, 0.0156181324, -0.0362166613, -0.00292991078, -0.0111031383, -0.0338473469, 0.0209732652, -0.00512847723, -0.017721504, -0.00200062, 0.00932010822, 0.0379090272, 0.00948330108, 0.0284317713, 0.0124872532, 0.0176247973, 0.0138774114, 0.0248052683, 0.018072065, 0.00428531552, 0.0014558892, -0.0169236735, -0.0173588526, -0.0122696627, 0.00376249524, -0.0129224332, -0.0109157693, 0.0121971332, -0.00535513368, -0.000751365733, 0.0200303756, 0.0058960868, -0.00855249912, -0.00134709419, -0.0157027505, -0.0304142572, 0.00817776, 0.0155214258, 0.0110910498, -0.0239832625, -0.00825029053, -0.0152675705, -0.00512847723, -0.00863711722, 0.00559085608, -0.00181929488, -0.00611367682, -0.00843766, -0.0108795036, 0.0185555983, -0.01475986, -0.00551228225, -9.56678632e-05, -0.00204444, 0.0180962421, 0.02181945, 0.0139136771, -0.0100635411, 0.00166214642, -0.00360232475, -0.00274103065, 0.0227986053, -0.000501666043, 0.00667276233, -0.00359023642, 0.0539139882, 0.0112361098, -0.00550321583, 0.0227865167, 0.02239969, -0.0237898491, -0.00488671055, -0.00509825628, -0.0113751255, 0.0182533897, -0.00620131707, -0.00105395191, -0.0176006202, 0.0125718713, -0.0249503292, -0.0147356838, -0.0037594731, 0.0132609066, 0.00221065478, 0.0285768304, -0.0064612166, 0.0100212321, -0.0103597054, 0.0153763657, 0.0123784579, 0.0117559088, -0.0274647027, 0.00835908577, 0.00390755525, 0.0105470745, 0.0120822936, 0.00161077105, 0.000645215041, -0.00024932198, 0.0150862457, 0.0323242135, 0.0103657497, -0.0144818285, 0.00797225907, 0.0204051137, 0.00214416883, 0.0313329734, 0.0117982179, -0.013683998, -0.00402239431, 0.00280298339, -0.0095376987, 0.00103581941, 0.0145060057, -0.0376914367, -0.0183500964, 0.00205199537, 0.00135540485, 0.00927779917, -0.0241404101, -0.012958698, 0.00847996864, -0.0183500964, 0.0095981406, 0.0138048818, 0.0103415726, 0.0153280124, 0.0368694291, -0.0265943427, -0.00682991091, 0.00139922509, -0.000998043339, -0.00407679193, 0.0101904692, 0.00167876796, -0.00427020527, -0.0188336298, -0.00698705902, -0.0114234788, 0.00388035644, -0.0113328164, -0.00610158872, 0.000505443604, 0.00825029053, 0.00830468815, 0.00115821382, -0.00436086766, 0.0204292908, 0.000758543203, -0.00197039917, 0.00166063546, 0.000852227793, 0.00777280098, 0.0181204192, 0.0103778383, 0.0100030992, -0.00254006195, 0.00557574583, 0.0114053469, 0.00275614113, 0.0246964749, -0.000803118921, -0.00256574969, -0.00086356065, 0.00487160031, 0.00163645868, 0.0246843863, -0.00646726089, -0.0103778383, 0.00412816741, 0.00189333595, -0.00741015095, 0.00138184812, 0.000496755121, -0.0191721041, 0.00578124775, -0.0157631934, 0.0103234407, -0.00596861681, 0.0261349864, -0.00311879115, -0.0201029051, 0.0148686552, 0.0115806274, -0.0103657497, -0.02181945, -0.00214265776, -0.0111817122, -0.0253129788, 0.0168390553, 0.0160412248, -0.000983688515, -0.00878217723, -0.00965253729, -0.0114597445, 0.0215414185, -0.0292054247, -0.00167574582, -0.0061650523, 0.00698101521, -0.00276822946, 0.00974320062, 0.0165368468, 0.00108719489, -0.000926268869, 0.0211666804, 0.0315505601, -0.0112481983, -0.00586586585, 0.0245876797, 0.019232545, 0.000274820806, 0.00359930261, -0.000646348286, -0.0286977142, 0.00904812105, -0.0304626115, 0.00174223166, -0.00167423475, 0.00342704379, 0.00974924397, 0.0107525764, 0.00434575742, -0.0181687716, 0.00296768686, -0.0071442076, 0.00316714449, -0.0146873305, 0.0260866322, 0.0120520731, -0.00551228225, 0.0113690821, 0.00242371182, -0.0136356447, -0.00743432762, -0.0160533134, 0.00696892664, 0.0164764039, 0.0168027896, -0.00433971314, -0.00272289803, 0.00913273916, 0.012179, 0.011302596, 0.0127411084, -0.0150378924, 0.0195831079, 0.00931406394, -0.0128982561, -0.0140224714, 0.0148565676, -0.0250470359, -0.00240406813, -0.000953467621, -0.0242612939, -0.000805385527, 0.0152675705, -0.0127411084, 0.0137444399, -0.00585377775, -0.00229678419, 0.00394382, -0.00288004638, -0.00399217336, -0.00743432762, 0.0121971332, -0.0125718713, 0.00695683854, 0.0244667958, 0.0142037971, 0.00236629206, -0.00652770232, 0.0246843863, 0.00161228201, -0.0294230133, -0.0340407602, -0.00589910895, 0.00536117796, 0.00154201861, -0.0144576523, -0.00696892664, 0.0154368076, -0.00325478497, -0.0108915921, 0.00621945, -0.0047386284, 0.0129949627, 0.0245876797, -0.00111590466, 0.00709585426, 0.0157148391, 0.00476280507, -0.00491390936, 0.00222727633, -0.0309219677, -0.0097734211, -0.00169992249, 0.00865525, 0.0212029442, -0.0145785352, 0.0138048818, 0.00588399824, 0.00173920963, -0.0262558702, 0.00456636958, -0.0237414949, 0.0154488953, -0.0206952337, -0.0273921732, -0.00194168929, -0.0131279351, 0.0250470359, 0.0181929488, -0.0273438208, -1.36229901e-05, -0.00874591246, 0.00427322742, 0.00247206516, -0.00904207677, -0.0103597054, 0.0107163116, -0.00620131707, 0.0190149546, -0.00120052299, 0.00178756297, -0.00270476565, 0.00016272036, -0.0189907793, -0.00601697, 0.0124026341, -0.0234513748, 0.00394079834, 0.0025340179, 0.0175039135, 0.0103476169, -0.0151225105, 0.00982781872, -0.00637055421, 0.00974320062, -0.0215293299, 0.0265943427, -0.00180116238, -0.0232942272, -0.011592716, 0.0125356065, 0.0145785352, 0.0108795036, 0.0183500964, -0.0197644327, -0.00853436626, 0.00186462607, 0.00944099203, -0.0197886098, -0.000287098024, -0.0265218131, 0.00937450584, -0.0180599764, 0.00504083699, 0.00426113885, -0.00838326197, 0.00862502865, -0.0380782634, -0.00414025551, 0.0187611, -0.00981573, 0.00456636958, 0.00199608668, -0.0110608293, 0.0107525764, -0.00733157666, -0.0207315, 0.0344034098, 0.037425492, -0.00660627661, -0.0181687716, -0.00029163115, -0.0109641226, -0.0176489726, 0.012027896, -0.0154005419, -0.0211787671, 0.0137927933, -0.00693870569, -0.0264009293, -0.0239349082, -0.00859480817, 0.000735877547, 0.0183138326, -0.00895141438, -0.00152010843, -0.00833490863, -0.00347841927, 0.00428229384, -0.0116471136, -0.0021094149, -0.013974118, -0.00978551, -0.00539442059, 0.0112965517, -0.00450895, 0.00799039099, 0.000227222976, 0.00880031, 0.00214416883, 0.00520705152, -0.0158236343, 0.0142884152, -0.0200908165, 0.0039377762, -0.00329105, 0.00427624956, -0.00601697, -0.00607439, 0.0117679965, -0.0128740799, -0.0046328553, -0.00381387048, -0.0187248345, 0.00563014345, 0.023040371, -0.000803874456, 0.0199336689, 0.0145422705, -0.0116833784, -0.00559690036, 0.00402239431, 0.011054785, 0.00846788101, 0.0138653237, -0.0145664467, -0.00643099565, -0.000694701681, 0.00248415349, 0.00624362659, 0.0109882988, 0.00213661371, 0.0125718713, -0.0105712516, -0.00684199901, 0.0153521886, 0.0023330492, -0.0108009297, 0.0114960093, -0.00847996864, -0.0039498643, -0.0167907011, -0.00513452152, 0.00700519187, -0.0171533506, 0.00727113523, 0.0278757066, -0.0198853165, -0.0300516076, 0.00751894619, 0.0194743127, 0.0364342518, -0.0232700501, 0.00160472689, 0.0141675323, -0.00864316151, 0.00150953117, -0.0128378151, 0.00542464154, -0.00626175897, 0.0305834953, -0.0101542035, -0.00399217336, 0.0165852, -0.008322821, -0.019232545, 0.0115141422, 0.0161016658, -0.00875800103, 0.00967067, 0.0146389771, -0.00221065478, -0.00464796601, 0.0146873305, -0.00629198, -0.00973715633, 0.0134664085, 0.0174918249, -0.00708981, 0.000489199942, -0.000565885333, 0.0140466485, 0.0223271605, -0.00686617568, 0.00698705902, -0.022460131, -0.0139862066, -0.00756125525, 0.0166698173, 0.0167423487, 0.0285043, -0.012813638, -0.00807501, -0.00133122818, -0.0176006202, -0.0117982179, -0.000463134435, 0.0218798909, 0.00292688888, -0.0235239062, -0.00256423862, -0.00346028665, 0.0037957381, -0.00602905825, -0.0093261525, 0.0122817513, 0.0163555201, 0.00474467268, -0.00297675328, 0.00113630376, 0.00174223166, -0.0015329523, -0.0177819449, -0.0216623, 0.0131521113, -0.00695079425, 0.0174434707, -0.0108251069, -0.018712746, 0.00921735726, 0.0113630379, -0.0136356447, 0.0101481592, -0.0189545136, -0.00111741573, -0.00459961267, 0.0180962421, -0.0163555201, 0.023765672, 0.0203809384, -0.0292296, 0.00421883, -0.0125476951, -0.0111514917, 0.0144576523, -0.00560596678, -0.0073074, 0.0176610611, -0.0129828751, 0.0286735371, 0.0138411466, 0.00975528825, 0.00733762095, 0.00423696218, 0.00446361862, -0.00107812858, -0.00353886094, 0.0007574099, -0.0103294849, 0.0151104219, -0.00264432398, -0.00513149938, 0.00806292146, 0.0264009293, 0.0353463, -0.00372320809, -0.0213721804, -0.00198248751, -0.00114310347, -0.010081674, 0.00667276233, -0.0198732279, 0.0103657497, -0.00372018595, 0.000483155745, 0.000305986061, 0.0132971713, 0.0145060057, 0.0185676869, 0.00113857037, -0.00192053465, 0.0184105393, 0.00687826425, -0.0168753192, 0.0130191399, -0.00980364159, 0.020308407, 0.0189182479, -0.00521611795, 0.00117936847, 0.0112058893, 0.00136296009, 0.0176489726, 0.00475978293, 0.00823215768, -0.0284075942, 0.0115383184, 0.000441602082, -0.0194501355, 0.0219524223, 0.00294502126, 0.00858272, 0.00925362296, 0.0325659811, 0.010371794, 0.0119674541, -0.0178907402, 0.00614692, 0.0274647027, -0.0126927551, 0.014554359, 0.00293746614, 0.0173346773, -0.0207798518, 0.00649748137, 0.00326385116, 7.87158569e-05, 0.00376551715, 0.0116954669, -0.00867942628, 0.00918713678, 0.0169478487, 0.00343006593, -0.00618620683, 0.0101421149, -0.0061197211, 0.00568454107, -0.0208644718, -0.00767005049, 0.00355094927, -0.0107042231, -0.000211545906, 0.00643704, -0.023040371, 0.0147840371, -0.00771235954, 0.00719256094, 0.00147326617, 0.00482022483, -0.015920341, 0.00450592814, 0.0222183652, -0.026207516, 0.02210957, 0.0155576905, -0.00200364203, -0.00988826063, 0.00623153802, -0.000226845208, 0.00128438591, 0.0247569159, -0.0180599764, -0.00693266187, -0.0041463, -0.0189907793, 0.00297373114, 0.0182050373, 0.00987617206, -0.00722882617, -0.0209370013, 0.00279996125, -0.00110608293, -0.000218345594, -0.0130674932, -0.00315203401, 0.0284317713, -0.000429513748, 0.0123663694, -0.00665463, 0.0046328553, 0.00444246409, 0.023535993, 0.0204897318, 0.0143730333, 0.0187852774, -0.0121004265, -0.00827446766, -0.0202117, 0.000775920169, -0.025071213, -0.00782719906, -0.0106075164, -0.0150137153, 0.0016908563, 0.0305109639, 0.0259899255, -0.0134422313, 0.0199941099, 0.0157148391, 0.00530980248, 0.00135162729, 0.0139378533, 0.00187822548, 0.0301241372, 0.00465098815, -0.0221458357, 0.014844479, 0.00687222, -0.00898767915, 0.012318016, -0.0128015494, 0.0123421932, -0.00404354883, -0.0379090272, -0.0218798909, -0.0202721432, -0.0153038353, -0.0102871759, 0.0114537, -0.00860689674, -0.0152554819, -0.00745850429, -0.00361139094, -0.0124268113, -0.0157631934, -0.00973111205, 0.0279965904, 0.0367001928, -0.00708376616, 0.0285526533, 0.0017679194, -0.00403146073, 0.0131883761, 0.00791786145, 0.0247569159, 0.0106437812, 0.0108492831, 0.0175885316, 0.0166819058, -0.00402843859, -0.00450895, -0.0106014721, -0.0142037971, 0.0196314603, 0.0154126305, 0.000788764039, 0.00493808603, 0.0177819449, 0.0071442076, -0.0112421541, -0.00289666792, -0.00496830698, -0.0120097632, 0.00223180931, 0.0275855865, 0.00312181329, 0.0152071286, 0.00657001138, 0.0189182479, 0.00815962814, -0.0106135607, -0.016645642, 0.00207617204, 0.00935637299, 0.00655187899, -1.33042549e-05, 0.00151330885, 0.0245030615, 0.0032668733, -0.0106921345, -0.00400728406, 0.000996532384, -0.00352979475, -0.0144213866, -0.00568756275, 0.00980968587, 0.0124751646, 0.0155818677, 0.0143609457, 0.00239349087, 0.0264009293, 0.0044696629, -0.0147840371, 0.0056603644, -0.00771235954, -0.00424905075, -0.000448024017, -0.00996683445, -0.0168269668, 0.0447268486, -0.0166698173, -0.0100091435, 0.00358117, -0.00139242539, -0.010619605, -0.0185676869, -0.00893328153, -0.0147235952, 0.000165175807, 0.0177094154, 0.0124751646, 0.0173951183, 0.0121125141, -0.00946516823, -0.00696892664, 0.0109641226, -0.00671507185, 0.013103758, -0.0315747373, -0.0121185584, 0.00232549408, 0.00203839596, 0.00254610623, 0.00305986055, -0.00857667532, 0.0226535443, -0.0365551338, -0.000588928699, 0.00844370387, -0.0131762885, 0.0024871754, 0.0224117786, -0.00505292509, -0.019957846, 0.0100091435, 0.0220370404, -0.00510430057, 0.00511034485, -0.019377606, -0.00815358385, -0.000975377741, 0.0104624564, -0.0197886098, 0.00612274325, 0.00376551715, -0.00613483135, -0.00725300284, 0.00580542441, 0.00698705902, -0.00411607884, 0.0011370593, 0.0011982565, -0.00201875251, -0.00852832198, 0.00101466489, 0.00136144902, -0.000120127857, 0.00447268505, -0.0122877955, -0.00229980634, -0.00703541283, -0.0275855865, -0.00477791531, -0.00627989136, 0.0180962421, 0.0209853537, -0.00570267346, 0.00895141438, 0.0147235952, 0.0120218517, 0.0150016276, -0.0237414949, -0.00891514868, -0.0120097632, -0.0165852, -0.00329709402, 0.000791030587, 0.0192204565, 0.00802665669, -0.00317318877, 0.000719633885, -0.0137807047, -0.00221367693, 0.00739201857, 0.012463076, -0.0037957381, -0.0124389, 0.0186643936, 0.00158508332, 0.00282111578, -0.00874591246, -0.0100574968, -0.00317016663, -0.0257239826, -0.00225598598, -0.0163555201, 0.0119553665, 0.0114295231, 0.0135631151, -0.00244486635, 0.0148928324, -0.0237898491, 0.017431384, -0.0226777215, -0.00863711722, -0.00927779917, -0.0306560248, -0.0139862066, 0.0157269277, -0.0167181715, -0.013248818, 0.00904207677, -0.00225296407, 0.00326989545, 0.013538938, 0.00283924839, 0.0136356447, 0.0226656329, -0.0181445945, 0.0167423487, -0.0137807047, -0.0292779543, -0.015920341, 0.0197039898, -0.0350803547, -0.0232579615, 0.00911460631, 0.00295106554, 0.0228953119, -0.000972355658, 0.00628593564, -0.00569965132, -0.019957846, -0.00310368068, -0.0159686934, -0.00725904666, 0.00704145664, -0.0140950019, 0.00690244092, 0.00379876024, 0.00564827584, -0.0020640837, -0.0214809757, -0.0115383184, -0.00213056942, -0.00153521891, -0.0152554819, 0.0152071286, 0.00940472726, -0.0345001146, -0.0106437812, 0.00499852747, -0.0154609839, -0.00188729179, 0.00131460675, 0.00636451, -0.00281204958, -0.0141433552, -0.0108976364, -0.00922340155, -0.00558179, -0.00975528825, 0.0182292126, -0.0114295231, -0.00450895, -0.0188457184, 0.00600186, -0.00976737682, 0.00765796192, -0.0152071286, 0.0204051137, -0.00118314603, 0.0145301819, 0.00355094927, 0.00895141438, -0.00150424254, 0.0129345218, -0.00524936058, -0.00892119296, 0.0214930642, -0.00857063103, 0.00808709767, 0.00393173192, -0.0166214649, -0.00731344428, 0.000550397148, 0.00556365727, 0.0248536225, 0.00160321582, 0.0257723369, 0.00387431215, -0.00053528673, -0.00528864795, -0.00596257253, 0.0078997286, 0.00382898096, 0.0136356447, 0.00762774097, 0.00891514868, 0.00304021686, 0.0154368076, 0.00493506389, -0.00327291735, -0.00965253729, -0.0164280515, 0.0164401401, 0.0245393254, 0.0114234788, -0.013683998, 0.0182292126, 0.00788159668, -0.0192929879, 0.0126444018, 0.015630221, -0.019957846, -0.0135752037, -0.00634637754, -0.0042792717, -0.00912065059, 0.0383683853, -0.0104745449, 0.00967067, 0.0305593181, 0.0159686934, -0.00216230145, 0.0155214258, 0.00479000388, -0.015195041, 0.00540650915, 0.0153884543, -0.021964509, 0.00643704, -0.00691452902, 0.00223332038, -0.0340165831, -0.0159928706, -0.00296466495, 0.00187369238, 0.0303175505, 0.00131989538, -0.0171049982, 0.00422185194, -0.00076269859, 0.00887284, -0.0236689653, -0.00699914759, -0.00134029449, -0.0278273541, 0.0195226651, -0.00613785349, -0.0218073614, -0.041051995, -0.00767005049, 0.00347841927, -0.00867338199, 0.0347902365, 0.000137315961, -0.0101904692, -0.0007279446, 0.00909043, -0.0201512594, 0.00387129025, 0.0130312284, 0.00152464164, 0.0266668741, 0.0198611394, 0.019667726, -0.00479302602, -0.000996532384, 0.00350561785, 0.019667726, 0.000394759787, -0.0197402555, -0.0191841926, 0.000927024405, 0.0120943822, 0.0200787298, -0.00036605, -0.00168934523, -0.00592630776, -0.0090299882, 0.0193292517, 0.00308101508, 0.00336962426, -0.0252162721, 0.0143609457, -0.0074282838, 0.0271987598, -0.000208712707, 0.0425993, 0.0321066268, 0.0111756679, -0.00380178215, -0.00363858975, -0.00283924839, 0.00844370387, 0.000155070709, -0.010081674, 0.0142884152, 0.0160895772, -0.00407981407, 0.0263042226, -0.01432468, 0.0023103836, 0.00113328162, 0.0194984879, 0.00629802421, 0.0132971713, 0.027077876, -0.000903603272, 0.00280902744, 0.00423091836, 0.00321549783, -0.00847392436, -0.0092657106, -0.051157847, -0.00098671054, 0.015690662, -0.0243942663, -0.0192809, -0.00686013186, 0.0146148, 0.0132971713, 0.0230041072, -0.00719860522, -0.00272592017, -0.0134664085, 0.00979759824, -0.0139257647, 0.014264239, 0.000112855967, 0.0194622241, -0.0234272, 0.0176731497, -0.0162346382, -0.00236327015, 0.0160654, -0.00853436626, -0.000232700506, 0.0110487407, -0.0250953902, 0.00318225496, -0.00279240613, -0.00902394392, 0.00867338199, -0.00354490499, 0.0165368468, -0.0252646264, 0.000807652075, -0.0111938007, -0.00127456407, -0.00476280507, 0.00153673, 0.0209007356, 0.0191358384, 0.00838326197, -0.00973111205, 0.00107888412, -0.0225568376, 0.00663045328, -0.0199457575, -0.0150741572, -0.00500154961, 0.0125476951, -0.0178182106, -0.00696288235, -0.0173105, -0.0103536611, 0.0194259584, 0.0103113521, -0.0085585434, -0.0051526539, 0.000424602855, 0.0107707093, -0.0178665631, 0.0193534289, 0.0069205733, 0.0235480815, -0.0198611394, -0.0105228983, -0.0176731497, -0.0029933746, -0.0107827969, -0.00961022824, -0.00241917861, -0.0111696245, 0.00255063921, 0.0165972877, 0.00991243683, -0.0240678806, 0.00773653621, 0.0167907011, 0.0236931425, -0.0105954278, 0.0236327, -0.031260442, -0.0151225105, 0.00163494772, 0.0148807438, 0.00241313432, -0.000840895, -0.000561352179, -0.00145437813, -0.0108371945, 0.0146752419, -0.00934428535, -0.0179753583, -0.00156090665, 0.000708301, -0.00504083699, 0.0172984116, 0.00612576539, 0.0149170086, -0.00737388618, 0.0227744281, -0.00249170861, 0.0143488571, -0.00596257253, -0.00846788101, 0.0256272759, -0.00264734589, 0.018422626, 0.00420371955, 0.000680724508, -0.00447570719, 0.00983990729, 0.00204746216, 0.0183984507, -0.0416080579, 0.014844479, -0.0293504838, 0.0108009297, -0.0342341736, 0.00637055421, 0.0343067, 0.00695079425, 0.0104382792, 0.0243821777, 0.017056644, -0.0191358384, -0.00144002319, -0.0137081752, 0.00153748551, 0.0121366912, 0.00489275483, 0.0146268886, -0.0238019377, 0.00347539713, 0.00699310331, -0.0124268113, -0.00278787292, -2.1190006e-05, 0.00353281666, -0.00194622239, 0.0103355292, -0.00666671852, -0.00327896164, 0.0261108093, -0.00023647811, 0.00077176484, -0.00557272369, -0.0046932972, -0.0243217349, 0.0018087175, -0.00567849679, 0.00214416883, 0.00706563331, -0.00676946901, 0.00105395191, -0.0107102674, -0.0152796591, -0.00710794283, -0.0132004647, -0.00892723724, 0.0117196431, -0.0028060053, -0.0103113521, -0.0165731106, 0.00928384345, -0.00922340155, -0.00483231293, 0.000620282837, 0.0030296396, -0.008135451, -0.00551832607, -0.00821402576, -0.00432460289, 0.030825261, 0.00751290191, 0.0108311502, 0.0064733047, -0.0202237889, 0.00902394392, -0.00439108862, -0.0226293691, -0.00788764, -0.0336055793, 0.0121427355, -0.0139620304, 0.0132125532, 2.70334895e-05, -0.00126398681, -0.00880635437, -0.0268119331, -0.0172621459, 0.00644308422, 0.0140587371, -0.0407135226, -0.0020278187, 0.01475986, -0.0017089888, 0.0121669117, -0.008322821, 0.00765191764, -0.00942285918, -0.0148082133, 5.13754349e-05, -0.000579106912, 0.00693266187, -0.013829058, 0.0153521886, 0.00721673761, -0.00824424624, -0.00108266179, 0.00222878717, 0.0119130565, 0.0413179398, 0.00291480054, 0.00251890742, -0.00287249126, -0.0161500201, -0.0160170477, -0.00896350201, 0.000235344822, 0.00542766368, -0.00285435887, 0.0103597054, 0.00962836109, 0.0121246027, -0.0207919404, 0.00321852, -0.00353886094, -0.0200303756, -0.0225205738, -0.00569965132, 0.0172742344, 0.000886226248, -0.00822611433, 0.00111666019, -0.00328198378, 0.0150016276, -0.00618922897, -0.0179753583, -0.00451197196, -0.00058515108, 0.00706563331, 0.00278787292, -0.00997892302, 0.0126081361, 0.0134664085, -0.0208644718, -0.0097734211, -0.00681177853, 0.0135147618, 0.0069205733, -0.0306802019, 0.00685408758, -0.0172137935, -0.0060592792, -0.0135147618, 0.00524936058, 0.0382475, 0.00911460631, -0.00883053057, -0.00653979089, -0.019377606, -0.00299941888, 0.0347418822, -0.00437597837, 0.00705354521, -0.00752499048, -0.00519496296, -0.00256121648, 0.00406168168, -0.0162346382, 0.00572987227, -0.0030296396, 0.00620736135, 0.00842557102, 0.0147719486, -0.00987617206, 0.00429136, 0.00437597837, 0.0109641226, -0.000195868852, 0.00513452152, -0.0106558697, -0.00893932581, -0.0120943822, 0.00871569198, 0.0152192172, 0.0330011621, -0.00757334381, 0.000876404461, -0.0401091054, -0.00501968246, -0.00989430491, 0.0100454083, 0.00997287873, 0.0240437035, 0.0058356449, -0.0106014721, 0.00643704, 0.00560596678, 0.00859480817, -0.00244637742, 0.00247206516, -0.00632220088, 0.0329044573, -0.0304626115, -0.00753707858, 0.0139257647, -0.0107767535, -0.0148807438, 0.00270627672, -0.000345084263, -0.00376249524, 0.00469934149, 0.0174555592, 0.0324692763, 0.023415111, 0.0182171259, 0.0080508329, 0.0123059275, 0.0177577678, 0.0186885707, -0.0129949627, -0.00717442855, 0.0100454083, -0.00340891117, -0.00372623024, 0.00281053851, -0.0126081361, 0.0022650524, 0.00232851598, 0.00880635437, 0.0142279733, 0.0195831079, 0.0147719486, -0.00983990729, -0.0221337471, 0.00134936068, -0.00469934149, -0.0164280515, -0.0253371559, 0.00514358794, -0.000862805115, 0.01446974, 0.00448175101, -0.000275765196, 0.0122938398, 0.0039498643, 0.00734366523, -0.0102569545, -0.0037957381, 0.0115564512, -0.00596257253, 0.00764587382, 0.0172621459, 0.00818380434, 0.00973715633, -0.00103959709, -0.0122636184, 0.0128378151, 0.00230887253, -0.00248868647, 0.00626780326, -0.0112240212, -0.00806896575, -0.023995351, -0.00667276233, -0.00300999614, -0.00670298329, 0.0161137544, -0.0113146845, 0.00871569198, -0.00344819832, 0.00242673373, -0.00572382798, -0.023826113, 0.0152313057, -0.000759676506, -0.0263042226, -0.0107102674, -0.000559463399, 0.00951956585, 0.00977946538, -0.0170324687, 0.0138774114, 0.0237898491, 0.00467516482, -0.00877613295, 0.0278515294, -0.00450895, -0.0245755911, 0.0115080979, 0.00273498637, -0.0140950019, -0.0186039526, 0.00119447883, -0.0182171259, 0.0112663312, 0.000276709616, 0.011054785, -0.00346028665, 0.00761565287, -0.00480511412, 0.014119179, 0.0316230915, -0.0150137153, 0.00657001138, -0.017431384, 0.0230524596, 0.00458450196, 0.00207012775, -0.0274163503, -0.014264239, -0.00609856658, 0.0181687716, 0.0057782256, 0.00726509094, 0.0172017049, -0.0107888412, -0.00365672214, -0.0174918249, -0.0224722195, -0.00540348701, -0.00570871774, -0.000912669522, 0.0195226651, 0.00460565649, 0.0277548227, -0.00905416533, -0.000657303375, -0.00476582721, 0.00566338608, 0.0030296396, 0.0248536225, -0.018011624, -0.010806974, -0.0117015112, -0.0255547464, 0.00326385116, 0.0144334752, 0.0122696627, -0.00443037599, -0.0256030988, -0.0203930251, 0.0193050746, 0.0168874077, 0.0148686552, 0.0176852383, -0.0209370013, -0.0055273925, -0.0212150328, 0.0047053853, 0.00532189058, -0.016270902, -0.00797830336, -0.0192446336, -0.00150197593, 0.015980782, -0.0136719104, -0.0162588134, 0.00802061241, -0.000634637719, 0.0240195263, -0.0148928324, 0.00192960096, -0.0151708638, 0.00137127086]
|
10 Nov, 2022
|
Comparison of Exception Handling in C++ and Java
10 Nov, 2022
Both languages use to try, catch and throw keywords for exception handling, and their meaning is also the same in both languages.
Following are the differences between Java and C++ exception handling:
Java
C++
Only throwable objects can be thrown as exceptions.
All types can be thrown as exceptions.
We can catch Exception objects to catch all kinds of exceptions. Because normally we do not catch Throwable(s) other than Exception(s).
There is a special catch called “catch all” that can catch all kinds of exceptions.
A special block called finally is always executed after the try-catch block.
There is no such block in C++.
There are two types of exceptions – checked and unchecked.
All exceptions are unchecked.
A special keyword throws is used to list exceptions that can be thrown by a function.
The keyword throw is used to list exceptions that can be thrown by a function.
Finding and handling the exception in Java is easier.
Finding and handling the exception in C++ is quite difficult.
The above points have been discussed in detail below:1) In C++, all types (including primitive and pointer) can be thrown as exceptions. But in Java, only throwable objects (Throwable objects are instances of any subclass of the Throwable class) can be thrown as exceptions. For example, the following type of code works in C++, but similar code doesn’t work in Java.
CPP
// CPP Program to demonstrate all types (including primitive
// and pointer) can be thrown as exception.
#include <iostream>
using namespace std;
int main()
{
int x = -1;
// some other stuff
try {
// some other stuff
if (x < 0) {
throw x;
}
}
catch (int x) {
cout << "Exception occurred: thrown value is " << x
<< endl;
}
getchar();
return 0;
}
Output
Exception occurred: thrown value is -1
2) In C++, there is a special catch called “catch all” that can catch all kinds of exceptions.
CPP
// CPP Program to demonstrate catch all
#include <iostream>
using namespace std;
int main()
{
int x = -1;
char* ptr;
ptr = new char[256];
try {
if (x < 0) {
throw x;
}
if (ptr == NULL) {
throw " ptr is NULL ";
}
}
catch (...) // catch all
{
cout << "Exception occurred: exiting " << endl;
exit(0);
}
getchar();
return 0;
}
Output
Exception occurred: exiting
In Java, for all practical purposes, we can catch Exception objects to catch all kinds of exceptions. Because normally we do not catch Throwable(s) other than Exception(s) (which are Errors)
catch(Exception e){
…….
}
3) In Java, there is a block called finally that is always executed after the try-catch block. This block can be used to do cleanup work. There is no such block in C++.
Java
// Java Program to demonstrate creating an exception type
class Test extends Exception {
}
class Main {
public static void main(String args[])
{
try {
throw new Test();
}
catch (Test t) {
System.out.println("Got the Test Exception");
}
finally {
System.out.println("Inside finally block ");
}
}
}
Output
Got the Test Exception
Inside finally block
4) In C++, all exceptions are unchecked. In Java, there are two types of exceptions – checked and unchecked. 5) In Java, a new keyword throws is used to list exceptions that can be thrown by a function. In C++, there is no throws keyword, the same keyword throw is used for this purpose also.6) In C++ if the exception isn’t caught then the exception handling subsystem calls the function unexpected(), which terminates the program or an application abnormally. If any exception arises in our C++ program then finding that particular exception is very time-consuming because in C++ unexpected() did not tell us that which type and on which line the exception has occurred.But in Java, if the system-generated exception isn’t caught then the java runtime system(JVM) handover the exception object to the default exception handler, which basically prints the name, description, and on which line the exception has occurred. So, in Java finding and handling the exception is easier than in the C++ language.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java
|
https://www.geeksforgeeks.org/comparison-of-exception-handling-in-c-and-java/?ref=next_article
|
Pandas
|
Comparison of Exception Handling in C++ and Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0257476419, 0.0116298087, -0.0152363041, 0.0455605462, 0.00775510771, -0.0204748549, -0.0795711726, -0.0241726544, -0.030198697, -0.0158411916, 0.00993498322, -0.0151906526, 0.0142547898, -0.0268889386, -0.0233965721, -0.0101232976, 0.00113344984, 0.00456233183, -0.00581775745, 0.000898057478, 0.00872520916, -0.0283497982, -0.0139352269, -0.00543542346, 0.0252682976, 0.0226204917, -0.0155102154, -0.0025693432, -0.0125086065, -0.00704179751, 0.0106026419, -0.00922738, 0.0188199747, -0.00459086383, 0.0064026718, 0.000984368, 0.0149623938, -0.00069476408, 0.0104257409, -0.00792059582, 0.0146656567, 0.0183976945, 0.0141977249, -0.00247375946, -0.0402877554, -0.000599537161, -0.0161493421, -0.0235791802, -0.0365214795, -0.0161949936, 0.0375029929, -0.0219014753, -0.00165915943, 0.000593474, 0.0259987283, 0.0459257588, 0.0195960552, -0.0236020051, 0.00555811264, -0.0360877849, 0.00225406, 0.0103515564, -0.020977024, -0.0256791655, -0.0243096091, 0.015555867, -0.0291030537, -0.0268889386, 0.0429355651, -0.0274824128, -0.0215819106, 0.0323443338, 0.000204006705, 0.0152705433, -0.0393290669, 0.00704750419, 0.0298106577, 0.0324812904, -0.0151335876, 0.0245378688, -0.0364073478, 0.0111048119, -0.0173819419, -0.0130792549, 0.00208001235, -0.061995212, -0.0193449706, -0.0163433626, 0.00814314838, 0.00302728824, 0.0224378835, 0.0161036905, 0.0214449558, 0.00200725463, -0.00366926729, 0.0254509058, -0.0117439376, -0.00615158677, -0.0385758132, 0.0466790162, 0.040424712, -0.0321389027, -0.0229971185, -0.0222666897, -0.0109963892, -0.00919884723, -0.0048876009, 0.00278476276, 0.0224949475, 0.0250856914, -0.0417942666, 0.00027373276, 0.0201324653, -0.0231454875, -0.00364073482, -0.00905618537, 0.0215933248, -0.036453, 0.0123944767, 0.00750972889, -0.0243324358, 0.0505365953, 0.0149281546, 0.0297650062, -0.0373888649, 0.0245606937, 0.0791146532, -0.00958118215, 0.0186716057, -0.0019787224, 0.0168911833, -0.0238987431, -0.000496107212, -0.00341532892, 0.00796054117, 0.00636272645, 0.0327780284, -0.000651965442, -0.00983797293, -0.0194705129, -0.0280758869, 0.0116183953, -0.017416181, -0.0185118243, -0.0389410257, -0.00346098072, -0.00686489651, 0.0273682829, -0.0278932787, -0.0268432871, -0.0285095796, -0.0399453677, 0.0313856453, 0.00183891354, 0.0178726986, -0.0070246784, 0.014996632, 0.0322302058, -0.0320932493, -0.0487105213, 0.00928444508, -0.0416116603, -0.00209142524, 0.0294682682, -0.00948987808, -0.0104771, 0.00229115225, -0.00573216, -0.0548278689, 0.0310889091, -0.028258495, 0.0126341488, 0.0102431336, 0.00232396438, -0.0381192937, -0.000495750515, -0.00096011546, 0.0381421186, 0.000447602099, 0.01045998, -0.00745837064, -0.00398312369, -0.0158982556, -0.0227574464, 0.0245835204, -0.0195504036, 0.00753826136, -0.0080461381, 0.0182835646, 0.0259987283, -0.0451496765, 0.00738989282, 0.00433407258, -0.00295881042, 0.0153960856, 0.013170558, -0.0355399624, 0.027756324, 0.00583487703, 0.0300617423, -0.0250856914, -0.0158868432, -0.00994069, -0.0121776303, 0.0130906673, -0.0232253782, 0.0378225558, -0.0411094911, 0.0395573266, 0.0373432115, -0.0185232367, 0.0402192771, -0.0192879066, -0.0224264711, 0.0247433018, -0.0147227217, 0.0080461381, 0.00204862677, -0.0556496046, -0.0393518917, 0.0233166814, -0.0111276377, -0.00260928855, -0.00633419398, -0.0407899283, -0.0240128729, -0.00451668, 0.00962112751, 0.00351804565, -0.00859396067, 0.0183406305, 0.0181009583, -0.0318878181, -0.0179525893, 0.00561517756, -0.00850836374, -0.0170053132, -0.0207031127, -0.02816719, 0.0400823243, 0.0402192771, -0.0114414943, -0.0661495253, 0.00913037, -0.0255650356, 0.0225862525, 0.00455947826, 0.00534982607, 0.0135015342, -0.0191737767, -0.00030815, -0.0493039973, -0.00200725463, 0.0382790752, -0.0215590857, 0.0346954055, 0.0127026271, -0.00596897909, 0.00683636451, -0.00318136322, 0.0167542286, 0.054006137, -0.00709315576, -0.0154759763, 0.00641979137, 0.00977520179, -0.0315454267, -0.00980373472, 0.00306152715, 0.0196188819, 0.0332801975, -0.0298106577, 0.00424276851, 0.00635131355, 0.0107738366, -0.0194591, 0.00149795134, 0.00899341423, 0.0519974567, 0.0413149223, -0.00346668717, 0.00790918246, 0.0119151324, 0.00821733288, -0.00475920504, -0.0660125762, -0.0341704078, 0.0162406452, -0.047112707, -0.0174504183, -0.018797148, -0.0356312692, -0.011960784, 0.0132961012, 0.0451040268, -0.0131363198, -0.0283041466, -0.00172050402, -0.0130564291, -0.0177243296, 0.0102031883, -0.0616756491, 0.0395801514, -0.015145001, -0.00121191388, -0.0140037043, 0.0325725935, -0.015555867, -0.00661381148, -0.0441225134, 0.0159439091, -0.0187629089, 0.00396885769, 0.00160780107, 0.00896488223, 0.0142091382, 0.0118808933, 0.0203378983, -0.0160808638, 0.00762956543, -0.00757820671, 0.0220840815, -0.00341818226, -0.00118195487, 0.0450355485, -0.0192879066, -0.0207031127, -0.0300160907, -0.0321845524, -0.0185460635, 0.00344956783, 0.00158782839, -0.0338280201, -0.0217873454, -0.0288976207, 0.0390551575, -0.021981366, -0.00380907604, 0.00622577081, -0.0249487348, -0.0367725641, 0.042136658, -0.0456061959, 0.0188542139, -0.013375992, -0.0426388271, 0.014585766, -0.0102944914, -0.000170481129, 0.0244465657, 0.000686917687, 0.00666516973, 0.0017789955, 0.00298448955, -0.0134216435, -0.0192080159, -0.0317508616, -0.0171536822, 0.0177357439, -0.00299019599, 0.0340791047, 0.0234193988, 0.00704179751, -0.0103458501, -0.00175188971, -0.018945517, 0.0132047972, -0.0205547456, -0.0203150734, 0.00207573245, 0.00218415563, 0.00473923236, 0.0280302353, 0.0142776156, -0.00652821455, 0.023510702, -0.0503996424, 0.0075725005, -0.0298563093, 0.0175987873, -0.0151335876, 0.0531387515, -0.0203036591, 0.00937004201, -0.0208400693, 0.00824015867, 0.0185803026, -0.0360877849, -0.019710185, 0.0183976945, 0.0119493715, 0.0413834, -0.0217074547, 0.0154074989, -0.0255878605, -0.0195618179, -0.00475635193, 0.0236248318, 0.00481341686, -0.00606598938, 0.0081203226, 0.0149167413, -0.0215590857, 0.00396885769, -0.0298563093, 0.0141863115, -0.0129993642, 0.000872378296, 0.0171080306, 0.032618247, -0.0237846132, -0.00550104771, -0.00249373214, 0.0049646385, -0.00122760679, -0.0070246784, 0.0236020051, 0.0726320893, -0.00197444251, -0.0252226461, -0.00597468577, -0.00495322561, -0.0023539234, -0.0385073349, -0.00589479506, 0.00892493688, 0.0341019295, 0.0255650356, 0.0204292014, -0.0284867529, 0.00323557481, -0.00838282052, 0.00321560213, 0.0473866202, 0.00457374472, -0.0440996848, 0.021890061, -0.0229742937, -0.0405160151, 0.0173933543, 0.00358367013, 0.0504452921, 0.0259530768, -0.0398312397, -0.0629539, 0.00875374209, -0.0159324948, 0.0196302943, 0.00337253022, -0.00723581808, -0.00655104034, 0.03942037, 0.0147455474, 0.00553814, 0.0324128121, 0.0413149223, -0.0153846731, -0.0414747037, 0.00166486588, -0.00037841103, 0.0222210381, 0.0305639133, 0.0234650504, -0.019710185, -0.0232710298, 0.0224036444, -0.0139694661, 0.0129537117, -0.0022084082, -0.00755538093, -0.0231569, -0.0310660824, -0.00619723834, -0.0231683124, -0.0152819566, 0.00186887255, 0.0233737472, -0.00647114962, 0.0188199747, -0.0458572805, 0.0316595584, 0.019504752, -0.00995781, -0.0635017231, 0.0157270618, -0.0243324358, 0.0472496636, 0.015350434, -0.00265636691, -0.0275052395, 0.033554107, -0.0088621648, 0.0427301303, -0.023099836, -0.00701326504, -0.00078820769, -0.049532257, 0.00866814516, 0.0166857503, 0.047706183, 0.00839423388, -0.0242183059, -0.00417714426, 0.0480713956, -0.00297022332, -0.0376627743, -0.0268661138, 0.039306242, -0.0373432115, -0.0666060448, -0.00957547501, 0.00189740502, -0.0191395376, 0.0383247286, -0.0123259993, -0.0161151029, -0.00187600567, 0.00962683372, 0.00265208702, -0.00368924, 0.00465934165, 0.0158183649, 0.0208058301, 0.0121548045, 0.00594615331, 0.00791489, 0.0177585687, -0.00947275851, -0.021536259, -0.0442138165, 0.000247161952, -0.00276051019, 0.00473637925, 0.0114129623, -0.0171308555, -0.0109621501, 0.0247433018, 0.0223237537, -0.0152933691, -0.00596897909, -0.0174047668, -0.00723581808, 0.00178612862, 0.00593474042, -0.0135928383, 0.0114414943, -0.0163205359, 0.0185232367, 0.0223009288, 0.0133874044, 0.0156129319, 0.0514039807, 0.00423420919, 0.0179069377, -0.0158183649, -0.00260786177, -0.0287834909, -0.0109450305, 0.0105227511, -0.0284182765, -0.0154645639, 0.020714527, 0.0522713661, 0.031910643, 0.00464507565, 0.00338679645, 0.019653121, 0.017530309, -0.00742983818, -0.00423135562, -0.00731570879, -0.027254153, 0.00439684372, 0.013729793, -0.0203835499, -0.00897629466, -0.0262726396, -0.0202237684, 0.00140165444, 0.00594044663, -0.0363616981, -0.0177813955, 0.0459485874, -0.00874232873, -0.011960784, -0.0280302353, 0.0163433626, -0.0482996553, -0.0746864229, -0.00196873606, -0.0163319483, 0.00326981372, -0.0040744273, 0.0119836107, -0.0165944472, -0.00641979137, 0.00885075238, -0.00869667716, -0.0382334217, -0.0187857356, -0.0028903326, 0.0198129024, 0.0348095335, -0.0166286863, 0.000108601467, 0.0282813199, 0.0234422237, -0.0288519692, 0.00543257, 0.0086282, -0.051769197, -0.0311345607, 0.00839994, 0.0106311738, -0.00110705732, 0.0112474738, 0.0258617718, 0.00860537309, -0.00905618537, 0.0150993485, 0.00587196881, -0.0214677826, -0.0257932954, 0.00139238138, 0.0288519692, 0.0165487956, -0.0200982261, -0.0135357734, 0.00406586798, -0.00500173075, -0.0162520576, -0.027756324, 0.00267919293, 0.0064140847, 0.0067564738, -2.06191217e-07, 0.0217302795, 0.019710185, 0.000987221254, 0.017975416, -0.00708174286, 0.00721869851, 0.0172449853, 0.0691169, -0.0116697541, 0.0262954645, -0.000633776071, 0.0579778478, 0.027961757, -0.0021128247, -0.0196302943, 0.0115099726, 0.0110819861, -0.0015835485, -0.00667658309, -0.0262726396, 0.0199156199, -0.00954694301, -0.0105170449, -0.00479344418, -0.00550104771, -0.0025721963, 0.0319334678, -0.00961542, -0.0107453037, -0.00409725355, -0.0316367298, -0.000326696056, 0.0227003824, 0.041246444, -0.0222895145, -0.050764855, -0.0177699812, 0.00952982344, 0.00418855716, -0.0180438925, -0.00356655079, 0.00820591953, 0.00195589638, 0.0201667044, 0.00174475659, -0.0415660068, 0.0322302058, -0.0150993485, 0.0136042507, 0.0108480202, 0.0139922919, -0.0192308407, 0.00948987808, 0.000295310398, -0.0231911391, -0.00384902139, 0.0208172426, 0.0315454267, -0.00627142284, -0.0252454728, -0.00720728561, 0.0185688902, -0.0328465067, -0.00425418187, 0.0193335582, 7.70375e-05, -0.0141292475, 0.0178498738, -0.0107909553, 0.0257932954, 0.00545254257, -0.00504167611, -0.00360364281, 0.0231683124, -0.00470499368, -0.00375771779, 0.0105798161, -0.0202808343, 0.0132618621, -0.0281443652, 0.0243780874, -0.0197216, 0.00270059216, -0.00479059108, -0.017324876, -0.0382790752, 0.00800048653, 0.0114357881, 0.00454806536, -0.00437401794, -0.0232367907, 0.00315283076, 0.0381649472, -0.00876515452, -0.0141406599, 0.0084741246, -0.0204292014, -0.0150536969, -0.0186259542, -0.00051607989, 0.036886692, -0.000330619252, 0.00443964219, 0.0142433764, 0.0249715615, -0.00444534887, -0.0470670573, 0.0276878458, -0.0115327984, 0.0126341488, 0.0212851744, 0.0300617423, 0.00134886941, 0.0322302058, 0.0164574906, 0.0266150273, 0.00449385401, -0.0405616686, -0.0124401292, 0.0128281694, -0.00994069, 0.0423877425, -0.0185574759, 0.0275280643, 0.00964395329, 0.0233280938, 0.00671082176, 0.0231569, -0.033439979, -0.0170966182, 0.0204634406, 0.0134558827, 0.00279760244, 0.0231112484, 0.0161949936, -0.0194362737, 0.0327780284, -0.00582917035, 0.012759692, -0.0372062549, 0.012462955, -0.00214849017, -0.00995781, 0.0187514964, -0.0244693905, 0.0172221605, 0.00397456391, 0.0131134931, -0.00250229193, -0.0453551114, 0.00369494641, -0.0019402036, 0.0154417381, 0.000674791401, -0.0100148739, 0.0265237242, 0.0295595713, 0.0457888059, 0.01013471, -0.0450355485, 0.00288890605, -0.01302219, 0.00481341686, -0.0232367907, 0.0414062254, -0.0153161949, 0.00935862865, -0.0170167275, 0.0463138, 6.35291872e-05, -0.0130107766, -0.0109164985, -0.0387584195, 0.0473866202, 0.00401165616, -0.0306780431, -0.0116868736, 0.0183063913, -0.00407728087, 0.0650995374, -0.0100091677, 0.00323272147, 0.0197672509, 0.036978, -0.0217302795, 0.00154217647, 0.0268204603, -0.0332801975, -0.0190254077, 0.00043262259, 0.0188428015, 0.00510730036, 0.0498061664, 0.0175074842, -0.0227346215, -0.0136613157, -0.000221482798, -0.0295367464, -0.0289889239, 0.00240528188, 0.0335769355, 0.00434833858, 0.0238759164, -0.0145058753, -0.021182457, -0.0120178489, -0.00978661515, -0.00907330494, -0.0112931263, 0.019710185, -0.0161835812, 0.032618247, 0.0325041153, -0.0254737306, -0.00723581808, -0.00789206289, -0.0121205654, 0.0585256703, 0.0167998802, 0.00344956783, -0.0426844768, -0.0443051197, 0.00578351878, 0.0185803026, 0.00508162146, 0.0192080159, -0.0103800893, -0.000780361297, 0.0229286402, 0.022803098, -0.00649968209, -0.00619723834, 0.0312715173, 0.00218272908, -0.0117096994, 0.0220270175, 0.0065795728, 0.00792630203, 0.00400880305, 0.0164917298, 0.00975808222, 0.00645973673, 0.0203264859, 0.0120863272, 0.00591191463, -0.0136042507, -0.0272085015, -0.0106140552, -4.32444285e-05, 0.0161265153, -0.0184547603, -0.0348780118, -0.0144716362, -0.00318992301, 0.00135885586, 0.0247433018, -0.0318193398, -0.0260672048, 0.0144602228, -0.020417789, -0.0127026271, 0.00232681772, -0.00890211, -0.0250628646, -0.000118231153, -0.0120406747, -0.000840279332, -0.023099836, 0.0178955253, -0.00393461855, 0.0103001986, 0.00318706967, -0.0033468511, 0.0318649895, 0.00243666745, 0.0114928531, 0.0243324358, -0.00440825662, 0.0244237389, 0.036453, 0.0119379582, -0.0101232976, -0.0289432723, -0.00395173812, -0.013729793, -0.00533841318, -0.000840992667, 0.0143689197, 0.0367953889, 0.00911895651, 0.00268489937, -0.0259074233, 0.0115556242, -0.0215933248, -0.00857684109, -0.00919884723, 0.0199270323, -0.0318421647, 0.0284411013, -0.00867955759, -0.0342617109, -0.0232938565, -0.0695734173, -0.030997606, 0.0126341488, -0.00151507067, 0.0256791655, -0.0110306283, -0.0357910506, 0.0102203079, 7.42288394e-05, 0.00846841838, 0.0185574759, 0.00443964219, -0.010665413, 0.0104999254, 0.0266378541, -0.033143241, -0.0156243453, -0.0321617275, -0.0253367759, -0.0138895754, -0.00734994747, 0.0177928079, 0.021832997, -0.014791199, 0.0181694366, -0.0065053883, -0.00102716661, 0.00112988323, 0.000232004124, -0.0235791802, -0.0156814102, 0.00138881488, 0.0484366119, -0.0150651103, 0.00335826422, 0.00165915943, -0.0330062881, -0.00701326504, -0.00983797293, -0.0110933995, 0.00765239121, 0.00238673575, 0.00930156372, 0.0168569442, -0.0295595713, -0.0151221752, 0.0312943421, -0.0128852343, 0.0427529551, 0.0126341488, -0.00311859185, 0.0362475663, 0.0186373666, -0.0186830182, 0.00705891708, 0.022803098, -0.0245378688, 0.0316367298, 0.0262041613, -0.0194819272, -0.0484366119, -0.00636843266, -0.0309747793, -0.0107966624, -0.0418627448, 0.0209656116, 0.00652821455, -0.0125770839, 0.00999775529, 0.0285780579, -0.00484480243, 0.00417999737, 0.00565226935, -0.0328693315, -0.0326638967, 0.0106825326, 0.0109164985, 0.0474779233, -0.0171765089, 0.00689342897, 0.0461996719, -0.0010121871, -0.00113202317, 0.00530132093, 0.0156243453, -0.0181922615, 0.0254280791, 0.0150308711, -0.00962112751, -0.0254052542, 0.0123602385, 0.00201153453, 0.00513583282, 0.0195732303, 0.0113901366, 0.0190254077, -0.00717304694, -0.00836570095, 0.00648256252, -0.00378339691, -0.00550675439, 0.0193677973, 0.00649968209, -0.0111105191, -0.00980373472, 0.0091417823, -0.0119151324, -0.00402306905, -0.0221183207, 0.00475635193, 0.007498316, 0.0105684027, 0.000512156694, 0.00627712905, 0.0162406452, 0.0157042351, -0.00537265185, -0.0141406599, -0.00210426492, 0.0170852039, -0.000500387046, 0.00863961224, 0.00338679645, -0.0077665206, 0.0381192937, -0.0138553362, 0.00197586906, 0.0133417528, -0.0182721522, -0.0156129319, -0.0162406452, 0.0166743379, -0.00210711802, -0.0323671624, -0.0211368054, -0.00409725355, 0.000100665893, -0.0373203866, -0.013227623, 0.00663663773, -0.00519575085, -0.0478887893, 0.0159439091, 0.0126569746, 0.0139009878, -0.000135885581, -0.0101290038, -0.0312258638, -0.00753255514, -0.00213565049, 0.0013802551, -0.00097652158, -0.0144488104, 0.00393176544, 0.012668388, 0.0319791213, 0.00596897909, -4.83992062e-06, 0.00141092739, 0.0846385285, 0.00777222728, 0.00627142284, -0.0225177743, -0.0237846132, 0.0213878918, 0.0125884973, 0.00994069, 0.0151335876, 0.012314586, -0.0172335729, 0.00581775745, 0.00960400794, 0.0276650209, 0.014791199, 0.000172531887, -0.00694478769, -0.0108936727, 0.0234650504, -0.0487105213, -0.0231226608, 0.015145001, -0.0208971333, -0.02380744, 0.00518148486, -0.00760103296, 0.0217416938, -0.0490757376, -0.00849124417, 0.0162862968, 0.009929277, 0.000166468759, -0.00436831126, -0.0181580223, 0.0196645334, 0.00511300704, 0.0168341193, -0.00349236652, -0.00360649615, -0.000813173538, -0.0252911244, -0.00752114225, 0.00647685584, 0.0183748696, 0.0323899873, 0.0113958428, -0.00879368745, 0.0117211118, -0.0129537117, 0.0186716057, 0.00561517756, 0.00051286997, 0.0225634258, 0.00922167301, -0.00614588, -0.0152248917, -0.00437401794, 0.00464792876, 0.016765641, 0.019447688, -0.00230256515, 0.0062999553, -0.0113330716, -0.00151792401, -0.009929277, 0.00147512532, -0.0144830486, -0.00534982607, 0.0112474738, 0.00438257726, 0.0343301892, 0.0229628794, 0.0166286863, 0.022746034, 0.00455947826, 0.0573387221, 0.0093643358, 0.0139466394, -0.0157270618, -0.018740084, 0.00208001235, 0.013581425, 0.0203493107, 0.000330619252, -0.00715022068, 0.0158640165, 0.00736706704, 0.010077646, 0.00124115963, 0.0067564738, -0.0171650946, -0.00187029922, 0.0118923066, -0.0121205654, -0.00117838837, 0.0149738062, 0.0312486906, 0.0390779823, 0.000385900785, -0.00790918246, -0.00275337719, -0.00251655816, -0.0165031441, -0.0182493273, -0.0208628941, -0.0468844473, 0.0242411308, -0.0210455023, -0.00309005962, -0.00817738753, 0.0100262873, -0.017062379, -0.00983226672, -0.00509303436, 0.0253596026, -0.0234650504, 0.0353345312, 0.0173591152, -0.0177129172, -0.0208857208, -0.0420225263, -0.00153076358, -0.0343986675, -0.00841706, 0.000699043914, 0.00835999474, 0.0145172877, 0.0148254381, 0.00429698033, -0.0262726396, -0.00371206598, -0.0152477175, -0.00289603905, 0.00690484233, -0.00161350751, -0.0132504487, 0.00998063572, -0.0148710897, -0.0103458501, -0.0233509205, 0.0213422384, 0.0136042507, 0.0158183649, 0.0186373666, -0.00297022332, 0.0111732902, 0.0163890142, -0.0282128416, 0.0168569442, -0.0101004718, -0.0212052837, -0.00718446, -0.00557237864, 0.00382048916, 0.00463080918, 0.0196987726, 0.0309291277, -0.0134216435, 0.0156699978, -0.00299019599, -0.0317508616, 0.0103059048, -0.0193107314, -0.00448529422, -0.0112018222, 0.00179183506, -0.00476776483, -0.0483453088, -0.0289432723, 0.00544683635, -0.00289175939, -0.00513297971, 0.000503953604, -0.00391179277, 0.0104771, 0.0221069083, -0.00686489651, -0.0263182912, -0.00501314364, -0.00313285808, 0.0093186833, 0.0159324948, 0.0186487809, 0.00429983344, -0.0243096091, -0.0152477175, -0.0254509058, 0.0157841258, -0.00204434688, 9.41569378e-05, 0.00574072, 0.0082972236, -0.00532985339, -0.0294226166, 0.0232824422, 0.00978661515, -0.00572074717, -0.0301073939, -0.019504752, 0.0167542286, -0.0269345902, 0.00626001, 0.0013074975, 0.0237389617, -0.000461868301, -0.0193677973, -0.0342617109, 0.0163433626, 0.00890211, -0.00570362806, 0.00287036, 0.00122618012, -0.0144031579, -0.00894776266, -0.00792630203, -0.00109707098, -0.023008531, 0.0177243296, 0.00674506044, -0.0147683732, 0.010636881, -0.00952982344, 0.00096011546, 0.00976949558, 0.0283954497, -0.00503026322, 0.00667658309, -0.00362646882, 0.00902194623, 0.00742983818, -0.0240585245, 0.00260786177, 0.0414062254, 0.0109621501, -0.000156393246, 0.0106482934, 0.0205205064, -0.0230655968, -0.0157613, 0.0184775852, -0.00457374472, 0.0188199747, -0.0106540006, -0.0244465657, 0.0244009122, -0.000126880041, 0.00821162667, -0.0273911096, -0.0112645933, -0.0127825178, -0.0357910506, -0.0111105191, -0.00493610604, 0.000219877853, 0.0345812738, 0.0200525746, 0.0143232672, -0.000174404326, 0.0128852343, -0.0303813051, 0.0245835204, 0.0282356683, -0.0134901209, 0.0247204769, 0.00182607397, -0.000126790881, 0.0029359844, 0.00533841318, 0.0165145565, -0.00655674655, 0.00693908101, 0.0302215237, -0.00729858922, -0.00160209462, 0.0156015195, -0.015498803, 0.023305269, 0.00665375683, -0.0105056316, -0.00588908838, 0.0011926546, 0.0123488251, -0.0290574022, 0.0240813494, 0.00359793636, -0.00945563894, 0.0125656715, 0.0223351661, 0.0178156346, 0.0182036739, 0.00887357816, 0.00729858922, 0.021182457, -0.0136841414, -0.00852548238, 0.0158069525, -0.000518219837, 0.00416573137, 0.021125393, 0.00681353826, 0.00481056375, -0.0333030224, 0.0172107462, 0.0123031735, -0.0088621648, -0.00463936897, 0.0279389322, -0.00199441519, 0.0090390658, 0.00136598886, 0.0085483091, -0.0163890142, 0.0128624085, 0.0146884825, 0.0088621648, -0.0089363493, -0.00473352615, 0.00126398553, -0.000743269164, 0.0043255128, 0.0053184405, -0.0107395975, 0.0329834595, -0.0156129319, 0.00349236652, 0.00979802758, 0.00966107287, -0.00738418661, -0.00709886244, 0.013375992, -0.0226889681, -0.0107624233, -0.00595186, -0.000442608929, 0.0262269862, -0.0167998802, 0.0171080306, 0.0347182304, 0.0129308859, -0.0178612862, -0.0255422089, 0.0120635014, -0.0127026271, -0.00477917772, 0.0305639133, 0.00602604402, -0.00224550022, -0.00314427097, -0.000610950112, 0.013672729, -0.0226204917, -0.00302728824, -0.00751543557, 0.00193164381, 0.0183063913, 0.0101803625, -0.0283269715, 0.00167057232, -0.020417789, 0.011698286, 0.0131477322, 0.0103287306, 0.00851977617, -0.00254509063, 0.00836570095, -0.0288976207, -0.0189112779, 0.00589479506, 0.0168911833, -0.00168483856, 0.00878798123, -0.0259987283, -0.0119721973, 0.0235791802, -0.00689913565, 0.002438094, 0.0393747203, 0.00909613073, -0.0248574317, -0.0172906369, -0.00015487746, 0.00998063572, -0.000557808555, -0.0121433921, 0.00314427097, -0.0121890437, -0.013729793, 0.0142205507, -0.0254965574, 0.0219585393, 0.032618247, 0.02928566, 0.01190372, 0.0132618621, -0.0148596764, -0.00779505307, -0.0236248318, -0.00888499059, -0.0160352122, 0.00930727087, 0.00442537619, 0.00394603144, 0.0472953171, 0.00466504833, 0.0183178037, -0.00333258486, -0.0108879656, -0.0195504036, -0.0244693905, 0.00764097832, -0.00794912782, 0.0196302943, 0.0129194735, -0.0161151029, -0.0166515112, 0.00508732768, 0.0144259846, 0.0257932954, -0.0424562208, -0.00347810029, -0.00935292244, -0.0150993485, -0.0175531358, -0.0255650356, -0.0058662626, -0.018945517, -0.00186316611, 0.00566368271, -0.00489901379, -0.0147113083, 0.0157613, 0.000815313484, 0.000328301, 0.0242639575, -0.0057920781, 0.015498803, 0.00363788172, -0.00957547501, -0.00691625522, 0.00833146274, -0.0284182765, -0.0103857955, -0.00874803588, 0.00193735037, 0.00269203237, -0.0124743674, -0.00782358553, 0.00689913565, -0.0165602081, -0.00792630203, 0.0105626965, -0.0152134784, 0.00521572353, -0.000378767669, -0.00895917509, -0.019299319, -0.00672794133, -0.0120977396, 0.0253596026, -0.0322758555, 0.00107567164, -0.0167199895, -0.00307294, 0.00229400536, 0.0302671753, -0.00849124417, 0.000155055794, 0.00275337719, -0.00855401531, -0.00109849765, 0.0174846575, 0.00272484473, 0.00540118432, 0.00135600253, 0.0327095501, -0.0263867676, 0.0286465343, 0.0030672336, -0.00230256515, -0.0239900462, 0.00500458386, 0.0386899412, 0.0167770535, -0.000669798232, -0.000790347636, 0.0380508155, 0.0006651617, -0.00120549416, 0.00149081822, -0.00835428853, -0.000758248672, 0.000905903871, 0.000598823885, -0.013170558, -0.00256648986, -0.00218130229, 0.0265237242, 0.00542401, -0.00260786177, -0.0101974821, -0.0114129623, -0.0108993789, -0.0110991057, -0.00303299469, 0.0140265301, -0.00482768286, 0.00586055592, -0.00398027059, 0.0245606937, -0.0101689491, 0.00852548238, -0.0148368506, -0.022449296, 0.0018902719, 0.00440825662, 0.0113216583, 0.00553814, 0.017324876, -0.00490186736, 0.020977024, 0.0465877131, 0.00850265659, 0.0156928226, -0.00260500866, 0.0181466099, -9.29086455e-05, 0.0261813346, 0.000919456768, -0.0199726839, 0.00141449401, 0.00314427097, 0.0040744273, 0.000442608929, 0.0287834909, -0.0340106264, -0.00691625522, 0.010813782, -0.0100319935, 0.00348665984, -0.0272085015, -0.00649968209, 0.021684628, -0.0302671753, -0.00319277612, 0.00460513029, -0.0139694661, 0.0267291572, -0.00523569621, -0.0112018222, -0.00751543557, -0.000913750264, 0.00994639657, 0.00738418661, -0.0115327984, -0.00206859945, 0.00399453659, -0.00422850251, -0.0136384899, 0.0100091677, 0.0184775852, 0.0167314019, -0.0176672656, 0.0138096847, -0.00541545032, 0.00496178539, 0.00449956, -0.0045195329, -0.000686204352, 0.0117096994, 0.000144712787, 0.00378910336, -0.00087665813, -0.00427130098, 0.0123716509, 0.00733853457, 0.00616299966, -0.0251085162, -0.00911895651, -0.0176672656, 0.00348951318, 0.0105969356, -0.0143689197, 0.00356369745, -0.0203949641, -0.0136270765, 0.00591762085, 0.0111333448, 0.000128395826, -0.00440825662, 0.00187885889, -0.0150194578, 0.00983797293, -0.0309291277, -0.00217844918, -0.018180849, 0.00895346887, -0.00882792659, 0.0120863272, 0.0252454728, 0.0226433165, -0.0114871468, -0.0331660695, -0.0113901366, 0.0177357439, 0.00633990066, -0.0282128416, 0.0160466246, -0.0253367759, -0.00409725355, -0.00635701977, -0.0167542286, 0.0132504487, 0.00400880305, -0.0176444389, -0.0191737767, -0.0136955548, -0.00707033, 0.00265922025, -0.0102088945, 0.0102488399, -0.0131363198, 0.00951841, -0.0129422992, 0.00243238756, 0.0156928226, 0.0343530178, 0.018180849, -0.0136156641, -0.00778364, 0.0260900315, 0.00202580076, 0.0144716362, -0.0165602081, 0.000893064309, -0.0232938565, -0.00484765554, -0.00576925231, 2.65262206e-05, -0.00480771, 0.0192879066, 0.00901624, 0.00442252262, 0.0100262873, 0.00947846472, -0.0119265458, -0.0170852039, -0.0144944619, 0.00209998502, 0.0178612862, 0.00493895914, 0.0105284574, 0.0106882388, -0.00577210542, -0.000126701707, 0.0102031883, -0.0242411308, -0.0126455622, 0.00680212537, 0.0126227364, 0.000895204197, 0.0192080159, 0.00455662515, 0.00704179751, -0.00251798471, -0.0187857356, -0.00147512532, -0.013170558, 0.012873821, 0.0036150557, 0.00353516499, 0.00643120427, -0.0081945071, -0.0146085918, -0.0129537117, -0.00309005962, 0.01045998, 0.0237617865, 0.0139352269, -0.00557808531, -0.000365036452, -0.00627142284, -0.0136156641, 0.0329149812, -0.000400880293, 0.00519860443, -0.00741842529, -0.0107738366, -0.00832004938, 0.0170966182, 0.0163319483, -0.00236961618, 0.0091874348, -0.0258161202, 0.00158497517, -0.0189569294, -0.0215248466, -0.00046864475, 0.00171051768, -0.0143346805, -0.0237617865, 0.00694478769, 0.0249487348, 0.0145287011, -0.00195304316, -0.00715592736, 0.00170338457, 0.00713880779, 0.0202009436, 0.0251769945, -0.0260672048, 0.00171194435, -0.00457945094, -0.0148596764, -0.0160922762, -0.0184547603, -0.0122232828, 0.00825157203, 0.00581205077, 0.0261585098, -0.00447388133, 0.0115156788, 0.00885075238, 0.0120406747, 0.0263639428, -0.0156129319, -0.02704872, 0.018797148, -0.0236248318, -0.00526993535, -0.0155102154, -0.0172335729, 0.0366356075, 0.0132732755, -0.0199384447, -1.23826185e-05, 0.0177699812, 0.0051415395, 0.00129109132, -0.013170558, -0.00743554486, 0.00614017341, 0.0200982261, -0.0197900757, -0.00813744217, 0.0071273949, -0.0141292475, -0.0244693905, -0.0148710897, -0.00742413197, 0.0136384899, -0.0331660695, 0.0129993642, -0.0127939302, -0.00227260613, -0.00972955, 0.00923879258, 0.00717875315, 0.00959830079, 0.00547822192, -0.0122232828, 0.0102488399, 0.000512513332, -0.00877656788, -0.00501029054, -0.00378339691, 0.0134672951, 0.00541545032, 0.0122689344, 0.0070532104, -0.0292400084, 0.00107210514, 0.00313000497, 0.000700827222, 0.00906759873, 0.0118010025, 1.83900265e-05, -0.0213422384, 0.000995067647, 0.0217987578, 0.00734424125, 0.00479059108, -0.0291258786, 0.00618011924, 0.00431980612, -0.0109450305, -0.00309005962, 0.000776794739, 0.000665518339, -0.0055124606, 0.00699043926, -0.0176672656, 0.0352888778, 0.0456290245, 0.00051286997, 0.00682495115, -0.00258931587, -0.00382904871, -0.00395173812, -0.00716163358, -0.00624289038, 0.00414290512, -0.0127254529, -0.00597468577, -0.00846841838, 0.0062371837, 0.00142876024, 0.0102659594, 0.0062999553, -0.00402877573, 0.0158526041, -0.0288063157, -0.00239101565, 0.0170737915, -0.0229742937, -0.0161379278, -0.0128966477, -0.0106540006, -0.0167884678, 0.0217873454, 0.00754967425, -0.00641979137, 0.00644261716, 0.00750402268, 0.0153390216, 0.0217645187, -0.0171993338, 0.0098550925, 0.00133103668, 0.0163433626, 0.0194591, -0.000567794894, -0.0125542581, -0.00532414671, 0.00208714535, -0.0251085162, -0.00370921264, 0.0077665206, -0.00554099306, -0.00104999251, 0.00898200087, 0.0211368054, 0.00768663, -0.0125656715, -0.0217987578, 0.0298106577, 0.0140037043, -0.00990645122, 0.00612876052, 0.00794912782, -0.00947846472, 0.00254937052, -0.00594615331, 0.000197586909, 0.00142376707, 0.000123135163, 0.0141634857, -0.012965125, -0.0163890142, -0.0244237389, -0.000758962, 0.00222267443, -0.0312258638, -0.00955835544, -0.0043255128, -0.0131020807, -0.013729793, 0.0156471711, -0.0129537117, -0.0248346049, -0.0088051, 0.0152705433, -0.0119950231, -0.0238302648, 0.00474779215, 0.0218558218, 0.0304726083, 0.0139922919, 0.0117667643, -0.00981514715, 0.000351840223, -0.000933009665, 0.00411722623, 0.0102431336, -0.00123331323, 0.000605600304, 0.00283469446, -0.000806753756, -0.000947275839, -0.0131134931, -0.0084741246, 0.0236020051, 0.0127482787, -0.00422850251, 0.0198699664, 0.0179411769, -0.00747549, -0.00595186, 0.0221982114, -0.00635131355, -0.00179896818, 0.00687631, 0.0335312821, 0.0112132356, -0.00617441256, 2.10649396e-05, 0.00696761347, 0.00243524089, -0.0153047824, 0.00980373472, -0.00284610735, -0.00522428332, 0.00832004938, 0.0113273654, -0.00591191463, -0.0232824422, -0.00605457649, -0.0169368368, 0.000723653124, -0.000947275839, -0.0113958428, 0.000417643081, 0.00996351615, -0.00281329523, -0.00711027533, -0.00396315102, -0.0107681295, 0.00600892445, -0.0161036905, 0.00461939629, 0.00370065309, 0.00307864649, -0.0107110646, -0.00209713168, 0.0131134931, 0.0117096994, 0.00956406258, -0.00426274119, -0.0229058154, 0.0131020807, -0.00565797603, 0.0112645933, -0.022597665, -0.00142876024, -0.00473067304, 0.0126227364, -0.0235563535, 0.0112531809, -0.0131249065, -0.00603745691, -0.00247233291, 0.0148140248, -0.0164803173, 0.0176330265, 0.0133075137, 0.00128752482, -0.00599751156, -0.0133988177, 0.0225291867, -0.00817738753, -0.0220498424, 0.00122261362, 0.0135357734, 0.00683636451, 0.00304440758, 0.0234422237, -0.000927303161, 0.00373774511, 0.0200754013, -0.0190254077, 0.00518433796, -0.0113045387, -0.00577210542, -0.00501599675, -0.00204006699, -0.00459086383, 3.84964551e-05, -0.0159096699, 0.00442537619, 0.0200982261, -0.00427415455, -0.0151107619, 0.0134216435, -0.00780646596, -0.00180039473, 0.00313856453, -0.0196873602, 0.00486762822, 0.0204292014, 0.0104828058, -0.0185688902, 0.0154417381, 0.018591715, 0.019093886, 0.0174846575, -0.0201096386, -0.00643120427, 0.00429412723, -0.0343758427, 0.0116640469, -0.021684628, 0.018740084, 0.0142890289, -0.0147341341, 0.0157042351, 0.00031456977, -0.0132047972, 0.00529846782, 0.00934150908, -0.00201296131, -0.0262726396, 0.0155102154, -0.00580349145, 0.00228687236, 0.0115099726, 0.00746407732, -0.0038376085, -0.0143689197, 0.0417257883, 0.0182150882, 0.0187743232, -0.0344671458, -0.00661951816, -0.00516151218, -0.0138895754, 0.0194933396, -0.0138667487, 0.00796054117, -0.0102887852, 0.0175645482, 0.00200154819, -0.000433335896, -0.0107624233, -0.0109050851, 0.0245606937, -0.00398027059, -0.00313571142, 0.00714451447, 0.0145515269, -0.00338679645, -0.00381192937, 0.0181466099, 0.00199013529, -0.00853118952, -0.0127711045, -0.00699614594, 0.00734994747, -0.00582631724, -0.00885075238, 0.0383932032, 0.0123031735, 0.000967248518, 0.0206574611, -0.0216960404, -0.0198699664, 0.00974667, 0.0194705129, -0.0129879508, 0.0100434069, 0.0067564738, 0.0140265301, -0.00318992301, 0.00182179408, 0.00494181272, 0.0241270028, 0.0265237242, -0.0188542139, -0.0214906074, 0.00775510771, -0.0350606181, 0.0036464415, 0.00547822192, 0.0249487348, 0.0109107923, 0.00100719393, 0.0117781768, -0.0157384742, 0.0021171046, -0.0033468511, -0.00406586798, 0.00828581, 0.0210112631, 0.00858254731, -0.0181351975, -0.0127254529, 0.00016459632, -0.00108922459, 0.00978661515, -0.00201866776, 0.0289204456, 0.00708174286, 0.00499887764, -0.0126455622, 0.0149852196, -0.0336225852, -0.0061344672, -0.0124287158, 0.00428556744, 0.00370635954, 0.0379823372, 0.0128509952, -0.00160780107, 0.0245606937, 0.0081488546, -0.00218130229, 0.00699043926, -0.00461369, -0.0165031441, 0.00991215743, -0.00868526381, -0.0152020659, 0.0195732303, 0.00935292244, 0.0063113682, -0.00431695301, -0.0164689049, 0.00645403, -0.00106425874, -0.0239900462, -0.0162748843, -0.00420567673, -0.0285552312, -0.0155330412, 0.0224378835, 0.00306152715, -0.017678678, -0.00821162667, -0.0196987726, -0.00573216, -0.0143004414, -0.0112360613, 0.0402649306, 0.00811461639, -0.00683636451, 0.0451268516, 0.00164631975, -0.0105912285, 0.0224835351, -0.0007668084, 0.00633990066, 0.0185118243, -0.0120977396, -0.00870809052, 0.0131249065, 0.0170167275, -0.00497034518, 0.00544112967, -0.00494466582, 0.00536409207, 0.038895376, -0.0131020807, -0.0140151177, 0.0133417528, -0.0140037043, -0.00200012163, -0.0180781316, 0.01157845, -0.0359508321, -0.009900745, 0.00934150908, 0.00197158917, 0.0135928383, 0.0146542434, 0.0149738062, 0.0170053132, -0.0201096386, -0.00892493688, -0.00579493167, 0.00467360811, -0.0141748991, -1.65956062e-05, 0.00215990306, 0.0166971628, 0.0168112926, -0.0109336181, -0.0252226461, 0.00898770802, -0.00180324807, 0.00315853721, 0.00097152841, 0.0119836107, 0.00469072722, 0.0226204917, -0.0143575063, 0.01157845, 0.0269802418, -0.0425703488, -0.00266635325, 0.0144031579, -0.00572645385, -0.0123031735, 0.00130464428, -0.011196116, -0.0269574169, 0.027254153, -0.000464008248, -0.0244693905, -0.00311573874, -0.00993498322, -0.00427130098, -0.0362475663, -0.0134330569, 0.00231683138, -0.00219842186, 0.00729858922, -0.00219984842, -0.00273768441, 0.00447958754, 0.00528420135, 0.0150536969, -0.00197158917, 0.00275480375, 0.00332973176, -0.0156357586, -0.00084384589, 0.0121776303, -0.00662522437, -0.0171308555, 0.0223579928, 0.0130906673, 0.0131020807, -0.0111904098, -0.00157356216, -0.00434833858, -0.0157384742, -0.00138881488, -0.00485621532, 0.0109849758, -0.0211596321, 0.00800048653, -3.13633536e-05, 0.0145515269, 0.00999775529, -0.00262498134, -0.00243238756, -0.0163547751, -0.00299019599, -0.00806896389, 0.00319848256, 0.000818166707, 0.00697902637, 0.00975237601, -0.00821733288, 0.0144259846, -0.0106939459, 0.0185574759, 0.0021171046, -0.00539833121, 0.00487904111, -0.00527849514, 0.000566724921, -0.0152020659, 0.00886787195, 0.00109207781, -0.0106197614, 0.00457089115, -0.0242867842, 0.0258389469, 0.00911325, 0.0130792549, 0.0324128121, -0.00190025824, 0.00838852674, 0.0148026124, -0.00390037987, -0.00622006459, -0.0123374118, 0.00132604351, -0.00894776266, -0.00782358553, -0.0180096552, -0.00107567164, 0.00846271124, 0.0171650946, -0.0103173181, -0.0126341488, -0.0131933838, 0.0145971784, -0.0081488546, -0.00139452133, -0.000933722942, -0.00541259721, 0.0145172877, -0.00132247701, -0.0126341488, 0.00980944093, -0.00285752048, -0.00168198533, -0.0124743674, -0.00938716158, 0.00226404634, 0.000529632787, 0.01915095, 0.00368068041, -0.017416181, 0.00299304933, -0.0169596616, 0.0174390059, -0.0182949789, 0.000116537041, -0.00948417187, -0.00235249684, -0.0169482492, 0.00320704235, -0.0155330412, -0.029080227, -0.00293027796, -0.000511443359, -0.00614588, 0.0127368653, -0.00274339085, 0.00815456174, 0.00859396067, 0.00135956914, 0.0248802584, -0.0283954497, -0.00833716895, 0.00434548547, 0.0193792097, -0.0156129319, -0.0210455023, -0.00519289775, 0.00149937789, -0.0115385046, 0.0078407051, -0.0125884973, 0.0032013359, -0.0182835646, -0.0208058301, -0.0276193693, -0.0038832603, -0.00520431064, 0.00564656314, 0.0239900462, 0.00305296737, 0.00782358553, 0.00330119929, 0.0090390658, 0.0056750956, 0.00733282836, -0.00485050911, -0.0129537117, -0.00433121901, -0.00660239859, -0.00319277612, -0.02816719, -0.00548678171, -0.0247661285, 0.00975237601, 0.0062371837, 0.0233395081, -0.029171532, -0.00375771779, -0.00892493688, -0.0088621648, 0.0111105191, 0.0116298087, 0.00424847519, 0.00358937657, -0.00559235131, -0.00901624, 0.0093186833, 0.0155444546, -0.00410010666, 0.00173334358, 0.000263389753, 0.000247518619, 0.00444534887, -0.00279046921, 0.0158640165, -0.011755351, 0.00426844787, -0.0202351827, -0.023510702, 0.00753826136, -0.00879939366, 0.0168569442, 0.0011077706, -0.0133075137, 0.0114243748, -0.00370921264, 0.0106197614, -0.00356655079, -0.00570077449, -0.00736706704, -0.0107681295, 0.0109450305, 0.00195304316, 0.00461654318, 0.00378910336, 0.0152020659, 0.00633419398, -0.00261071511, 0.00205861311, -0.00034577708, 0.012052088, -0.00150651101, -0.0114186686, -0.0182835646, 0.0125314323, 0.0225862525, 0.0011505693, 0.0270943716, 0.0145401135, 0.0191052984, 0.0193449706, -0.0287606642, -0.0030215818, 0.0119265458, -0.00374630489, -0.0275737159, 0.00191595103, 0.0191737767, 0.0092901513, 0.0212965868, -0.00868526381, -0.00651109498, 0.0169824883, -0.00264780712, -0.0254509058, -0.0114129623, 0.0166629255, -0.0233166814, 0.0140607692, 0.00374059845, -0.0065053883, 0.0133531662, 0.000449028739, -0.00898200087, -0.01302219, -0.0144602228, -0.000608096889, 0.00547822192, 0.00686489651, -0.0241726544, -0.00564085646, -0.00406872109, 0.00421138294, 0.0190254077, 0.0125542581, -0.00378339691, 0.015498803, -0.00149367144, 0.0178955253, -0.013581425, 0.0029787831, -0.0241041761, -0.00704179751, -0.0130450157, -0.00760103296, 0.0112817129, -0.00502740964, -0.011373017, -0.00932439, 0.0200525746, -0.000807467091, 0.00761244586, 0.0243096091, -0.0132504487, -0.00287606637, -0.00805755146, 0.0224721227, -0.00338964979, -0.0100890584, 0.0130564291, 0.00219699531, -0.0107281841, 0.00953553, 0.00127111864, -0.00072579307, 0.0209313724, -0.00885075238, 0.00826869067, -0.0055124606, -0.0137526197, -0.0105056316, 0.0152819566, 0.00272769807, -0.000343280495, -0.0419768766, 0.0133531662, -0.0377312526, -0.000155769099, -0.00548392814, 0.0221753847, 0.00196730928, 0.0138895754, 0.00587767549, -0.00513012661, 0.0105056316, 0.0110591603, -0.0158754308, -0.0236476585, -0.0019245107, 0.0211710446, -0.00659098569, 0.0238987431, -0.0196074694, -0.0110705737, 0.00555811264, 0.0315910801, -0.0175531358, 0.00112132356, 0.0225177743, 0.00174332992, 0.0112988325, -0.00158782839, -0.00701326504, -0.0118580675, -0.0159096699, -0.0236476585, -0.0199156199, 0.00327837327, -0.0180781316, -0.016765641, 0.00624859659, 0.00525281578, 0.0208286569, -0.0107567171, 0.012462955, 0.0062371837, -0.0344671458, 0.0121662179, 0.00781217264, 0.00741842529, -0.00473067304, 0.005244256, -0.027345458, 0.00799478, 0.00572645385, 0.00391749945, 0.0272313282, -0.00477917772, -0.00544968946, 0.0216161497, -0.0162977092, 0.00470499368, 0.00503026322, -0.0212851744, 0.00866814516, -0.0133075137, 0.012314586, -0.0138667487, -0.0283269715, -0.0031128854, -0.00673364755, -0.0159096699, -0.00602604402, 0.0442138165, 0.0365214795, 0.00229828525, -0.00839994, 0.0175417233, -0.0142547898, -0.00592332752, -0.00403733552, 0.00357796368, -0.0160466246, -0.0123716509, -0.00965536572, 0.0119493715, 0.000950842397, -0.0105684027, 0.0189112779, 0.00624859659, -0.0121319788, -0.027254153, 0.00750972889, -0.0124857808, -0.0217302795, 0.0247204769, 0.0119151324, 0.00113130989, -0.0250628646, -0.0153276082, -0.00230684504, -0.0108080748, -0.0236020051, -0.00319277612, -0.0141292475, -0.00663093105, 0.00637984602, 0.0207373518, 0.0078407051, -0.00227117958, 0.0034695405, -0.00465363543, -0.00580349145, -0.00680783205, -0.0210455023, -0.0200754013, 0.00308435294, -0.022243863, 0.000816740096, 0.00711598201, -0.0131134931, -0.00101646699, -0.00626571616, -0.0108480202, 0.0277791508, -0.0124287158, -0.00777222728, 0.00575783942, -0.00900482759, -0.0206003971, 0.00905618537, -0.00600321824, 0.00620865123, 0.0066822893, 0.000587054237, -0.00789777, -0.0109678563, 0.01352436, -0.0126798013, 0.0135015342, 0.00403448194, -0.00474493904, 0.0167199895, 0.0090390658, -0.0169596616, 0.00138382171, -0.0289204456, 0.0115556242, -0.0338736735, 0.030700868, -0.0267063323, -0.0064140847, -0.0123488251, 0.00850836374, 0.0383019, -0.0115385046, 0.0149053289, 0.0266150273, 0.0231797267, -0.00602033734, -0.00484194933, 0.0232025515, -0.0009372895, 0.00369209331, -0.000139808792, -0.000189027181, -0.0261356831, 0.013581425, -0.000547108881, 0.00614017341, 0.00999204814, 0.00657386612, 0.0166971628, 0.00675076712, 0.0103972089, -0.00699043926, 0.0169482492, 0.0123602385, 0.00865673181, 0.00557808531, -0.0091417823, -0.0152591309, -0.00978090893, 0.0145629393, 0.000387327396, 0.000896630867, 0.0146085918, -0.0067850058, -0.00143304, -0.0117895901, -0.013170558, 0.00458801072, -0.0013759752, -0.0248802584, -0.00919884723, 0.00395173812, -0.007292883, -0.00919314101, -0.00236818963, -0.0145515269, 0.00620865123, -0.018489, -0.00476491172, 0.00229543191, -0.00283326791, -0.00485336222, -0.000203293384, 0.00323842792, -0.0025336775, 0.00995210279, -0.00708744954, -0.0289660972, -0.0181237832, -0.0107738366, 0.00695620058, -0.0262269862, -0.00599751156, 0.0314313, 0.0104428604, -0.00302728824, -0.023362333, 0.000130089931, 0.00515295239, -0.0152477175, -0.0133417528, 0.000900910702, 0.00670511508, -0.0507192053, 0.0215933248, 0.0299704392, 0.00230113859, -0.0084741246, -0.0244465657, -0.0116526345, -0.00412007933, 0.00491898647, -0.013170558, 0.0211938713, -0.0206003971, 0.00797766075, 0.0110933995, 0.00162492052, 0.012668388, 0.00329834595, 0.0366812609, 0.00290745217, 0.0123716509, 0.0158982556, -0.00962112751, 0.0207830034, -0.0139808785, -0.00576069253, 0.000875944854, 0.00830863602, -0.00405730819, -0.00490186736, 0.00727005675, -0.0105341645, 0.0127254529, -0.0114300819, -0.00545254257, -0.0209313724, -0.00512156682, 0.000667301647, -0.00363502838, 0.0294454433, -0.0195618179, -0.0157498885, 0.0114871468, 0.0143689197, -0.0205547456, -0.00430554, 0.0150536969, -0.0218786485, 0.00671082176, 0.000924449938, 0.00868526381, -0.0294454433, 0.0124401292, 0.00947275851, -0.011698286, 0.00697331969, -0.0233965721, 0.0127368653, -0.00980944093, -0.0275965426, 0.0148482639, -0.00846841838, -0.00904477295, -0.0294682682, 0.0069504939, 0.0128624085, -0.0140493568, -0.000371991249, -0.0164460782, -0.0229058154, -0.000482197647, 0.0272769798, -0.0161493421, 0.000645902299, -0.0295139197, -0.0102602532, -0.0156699978, -0.00930156372, 0.00255365018, -0.00525852246, -0.0389410257, -0.016971074, 0.00764668453, -0.00563515024, -0.0107852491, -0.000531059399, -0.00656245323, 0.0240128729, 0.000511443359, 0.0211710446, -0.00564941624, -0.0230541844, 0.00176758249, 0.0131249065, 0.000903050648, 0.018443346, 0.0120635014, -0.0023467904, -0.0494409539, -0.00104071945, 0.000107888161, -0.00596897909, 0.000890924362, 0.0074070124, 0.0182949789, -0.0123488251, 0.00490472047, 0.00174190337, 0.017975416, -0.00147512532, 0.0207373518, -0.0105227511, 0.0233166814, -0.0264780726, 0.0111048119, -0.00887357816, -0.00758391339, -0.0136384899, 0.0190368202, 0.00979232136, 0.0197786633, -0.00111633039, 0.00337253022, 0.0390323289, 0.0208971333, -0.0139352269, -0.00584058324, -0.00861678645, 0.00485906843, 0.0147455474, -0.0120178489, 0.0110363346, -0.0109621501, -0.00800619274, 0.017062379, -0.00661951816, -0.0294226166, -0.0147683732, 0.013878162, 0.00963254, -0.0154189123, 0.00874232873, 0.0229857061, -0.0208286569, -0.0080176061, -0.00964395329, -0.0183520429, -0.0214107167, -0.0173933543, 0.0214563683, 0.00484765554, 0.0103230244, -0.00527564157, 0.0141977249, -0.00250657182, 0.0033354382, -0.00431695301, -0.00778934686, 6.6293258e-05, 0.0093928678, 0.00168198533, -0.00898200087, 0.00856542774, 0.00424562208, 0.0029787831, 0.0201438777, -0.00803472567, -0.00560947089, 0.00208571879, -0.00320989569, 0.017267812, -0.0144259846, 0.0058662626, -0.0158297792, -0.0127711045, 0.00991786458, 0.0091417823, 0.00610022806, -0.0116811665, -0.00237960252, -0.00919314101, -0.00541830389, 0.00709886244, -0.00846841838, -0.0092445, 0.0333715, -0.0174618326, -0.0081888, -0.00502455654, 0.0317736864, 0.0209998507, -0.00183178042, -0.00427700765, 0.0318878181, 0.0136841414, -0.0135015342, 0.0408584028, 0.00366926729, 0.00493325293, 0.00849124417, -0.0169596616, -0.0170966182, -0.0060317507, 0.0186716057, 0.00321845524, 0.00534697296, -0.00687060319, 0.00100291404, 0.0121776303, -0.0255878605, -0.000159335657, 0.014996632, 0.0509018116, 0.00837711431, 0.0112988325, 0.00982085429, 0.0173020512, -0.00353516499, 0.0105341645, 0.00500458386, 0.00706462376, -0.00319848256, 0.0197444241, -0.00352089875, 0.00440825662, 0.0162634719, 0.000972955, -0.0171536822, -0.00123973307, -0.0354714878, 0.00778934686, 0.00236676307, 0.000579207845, 0.0209656116, -0.00208571879, -0.000661238504, 0.00137740187, -0.000253581762, -0.0171993338, -0.00593474042, 0.000767521677, 0.0269802418, -0.018489, -0.0272085015, -0.0119721973, -0.0132961012, 0.00571789406, 0.0161493421, -0.000108868961, -0.0106711192, -0.00495322561, -0.00392891234, -0.0118352417, 0.0197672509, 0.0154189123, 0.0133531662, 0.000733996101, -0.012257521, -0.0198243149, -0.00595186, 0.012611323, -0.00495607872, -0.019858554, 0.00412007933, -0.00395459123, 0.00587767549, 0.0107909553, 0.0110591603, 0.000438685733, 0.0215134341, -0.00830863602, 0.00476491172, 0.0122689344, -0.0280074086, -0.0093643358]
|
11 Jan, 2025
|
Foreach in C++ and Java
11 Jan, 2025
Foreach loop is used to iterate over the elements of a container (array, vectors, etc) quickly without performing initialization, testing, and increment/decrement. The working of foreach loops is to do something for every element rather than doing something n times. There is no foreach loop in C, but both C++ and Java support the foreach type of loop. In C++, it was introduced in C++ 11 and Java in JDK 1.5.0 The keyword used for foreach loop is “for” in both C++ and Java.
Syntax:
for (data_type variable_name : container_name) { operations using variable_name}With the introduction of auto keyword in C++ and var keyword in Java, we no longer need to specify the data type for the variable in foreach loop. Type inference detects the data type of the container and automatically sets the same data type to the variable used for traversing.
The below code displays the use case of foreach loop for different containers along with auto/var keywords in C++/Java.
C++/Java Program for array:
C++
// C++ program to demonstrate use of foreach for array
#include <iostream>
using namespace std;
int main()
{
int arr[] = { 10, 20, 30, 40 };
// Printing elements of an array using
// foreach loop
// Here, int is the data type, x is the variable name
// and arr is the array for which we want to iterate foreach
cout<<"Traversing the array with foreach using array's data type: ";
for (int x : arr)
cout<<x<<" ";
// data type of x is set as int
cout<<"\nTraversing the array with foreach using auto keyword : ";
for (auto x : arr)
cout<<x<<" ";
}
Java
// Java program to demonstrate use of foreach
public class Main {
public static void main(String[] args)
{
// Declaring 1-D array with size 4
int arr[] = { 10, 20, 30, 40 };
// Printing elements of an array using
// foreach loop
// Here, int is the data type, x is the variable name
// and arr is the array for which we want to iterate foreach
System.out.print("Traversing the array with foreach using array's data type: ");
for (int x : arr)
System.out.print(x+" ");
// data type of x is set as int
System.out.print("\nTraversing the array with foreach using auto keyword : ");
for (var x : arr)
System.out.print(x+" ");
}
}
OutputTraversing the array with foreach using array's data type: 10 20 30 40
Traversing the array with foreach using auto keyword : 10 20 30 40 C++ Program for vector:
C++
#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector<string> value{ "This", "is", "foreach",
"example", "using", "vector." };
cout << "Traversing the vector with foreach using "
"vector's data type: ";
for (string v : value) {
cout << v << " ";
}
cout << "\nTraversing the vector with foreach using "
"auto keyword : ";
for (auto v : value)
cout << v << " ";
return 0;
}
OutputTraversing the vector with foreach using vector's data type: This is foreach example using vector.
Traversing the vector with foreach using auto keyword : This is foreach example using vector. Java Program for ArrayList:
Java
/*package whatever //do not write package name here */
import java.util.*;
class GFG {
public static void main(String[] args)
{
ArrayList<Integer> list = new ArrayList<>();
list.add(3);
list.add(24);
list.add(-134);
list.add(-2);
list.add(100);
for (int element : list) {
System.out.print(element + " ");
}
}
}
Output3 24 -134 -2 100 C++/Java Program for set:
C++
#include <iostream>
#include <set>
using namespace std;
int main() {
set<int> value = {6, 2, 7, 4, 10, 5, 1};
cout<<"Traversing the set with foreach using set's data type: ";
for (int v : value) {
cout<<v<<" ";
}
cout<<"\nTraversing the set with foreach using auto keyword : ";
for (auto v : value)
cout<<v<<" ";
return 0;
}
Java
import java.util.*;
public class GFG {
public static void main(String[] args)
{
Set<String> hash_Set = new HashSet<String>();
hash_Set.add("Geeks");
hash_Set.add("For");
hash_Set.add("Geeks");
hash_Set.add("Foreach");
hash_Set.add("Example");
hash_Set.add("Set");
System.out.print("Traversing the set with foreach using set's data type: ");
for(String hs : hash_Set) {
System.out.print(hs+" ");
}
System.out.print("\nTraversing the set with foreach using auto keyword : ");
for (var hs : hash_Set) {
System.out.print(hs+" ");
}
}
}
OutputTraversing the set with foreach using set's data type: 1 2 4 5 6 7 10
Traversing the set with foreach using auto keyword : 1 2 4 5 6 7 10 Note: We can use different data types in foreach for array, vector and set.
C++/Java Program for map:
C++14
#include <iostream>
#include <map>
using namespace std;
int main() {
map<int, string> mapExample;
mapExample.insert(pair<int, string>(1, "Geeks"));
mapExample.insert(pair<int, string>(2, "4"));
mapExample.insert(pair<int, string>(3, "Geeks"));
mapExample.insert(pair<int, string>(4, "Map"));
mapExample.insert(pair<int, string>(5, "Foreach"));
mapExample.insert(pair<int, string>(6, "Example"));
cout<<"Traversing the map with foreach using map's data type\n";
for (pair<int, string> mpEx : mapExample ) {
cout<<mpEx.first<<" "<<mpEx.second<<endl;
}
cout<<"\nTraversing the map with foreach using auto keyword\n";
for (auto mpEx : mapExample){
cout<<mpEx.first<<" "<<mpEx.second<<endl;
}
return 0;
}
Java
import java.io.*;
import java.util.Map;
import java.util.HashMap;
class GFG {
public static void main (String[] args) {
Map<Integer,String> gfg = new HashMap<Integer,String>();
gfg.put(1, "Geeks");
gfg.put(2, "4");
gfg.put(3, "Geeks");
gfg.put(4, "Map");
gfg.put(5, "Foreach");
gfg.put(6, "Example");
System.out.println("Traversing the map with foreach using map's data type");
for (Map.Entry<Integer, String> entry : gfg.entrySet())
System.out.println(entry.getKey() + " " + entry.getValue());
System.out.println("\nTraversing the map with foreach using auto keyword");
for (var entry : gfg.entrySet())
System.out.println(entry.getKey() + " " + entry.getValue());
}
}
OutputTraversing the map with foreach using map's data type
1 Geeks
2 4
3 Geeks
4 Map
5 Foreach
6 Example
Traversing the map with foreach using auto keyword
1 Geeks
2 4
3 Geeks
4 Map
5 Foreach
6 ExampleAdvantages of foreach loop:
Makes the code more readable. Eliminates the errors of over-running or under-running the data.Disadvantage of foreach loop:
Cannot iterate over the elements in reverse order.Each and every element will be accessed, cannot skip any elements in between.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java
|
https://www.geeksforgeeks.org/g-fact-40-foreach-in-c-and-java/?ref=next_article
|
Pandas
|
Foreach in C++ and Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0310732108, 0.0438114554, -0.0151820621, 0.0460400134, -0.0103134187, -0.0164482892, -0.00122428325, -0.00432099961, -0.0508010276, -0.00366256153, 0.00879394636, 0.0152706979, 0.0270212833, -0.0353530571, -0.0265401173, 0.00840141624, 0.010864228, 0.0231719539, 0.00388098578, -0.00691993069, -0.0349225402, 0.0177398399, -0.0550555512, -0.0163090043, -0.000658438, 0.0419121124, 0.029528413, -0.0122507466, -0.04044329, -0.0179550983, 0.030794641, -0.0138018746, -0.0121304542, -0.0255271364, -0.0368218794, 0.0240836367, 0.00820515119, -0.0175878927, 0.00857868791, 0.00468820566, 0.0199177507, 0.0104210479, 0.0085153766, 0.0130041512, -0.0353530571, 0.029528413, 0.0111364666, 0.00755937537, -0.012852204, 0.0252992157, -0.0153466715, 0.0338842347, 0.0195758697, 0.0238683783, 0.0330232, 0.0389238186, -0.00116018043, -0.0056157168, -0.0301615279, -0.0214498844, 0.0168788061, -0.0305920448, 0.000452280452, -0.0433302894, -0.0405192636, 0.00636595627, -0.0372777246, 0.0333777443, 0.0208294336, -0.0200950224, -0.0347959176, 0.0200190488, 0.00336183258, 0.000499368296, -0.0270212833, -0.0152327111, 0.00620451244, -0.00580881629, -0.0118708778, 0.0609814934, -0.0271985549, 0.00705288444, -0.0331245, -0.00599241909, -0.0102057895, -0.00804687291, -0.0334030688, -0.0280089416, 0.0400634222, -0.0162836798, -0.0240203254, 0.0103134187, 0.0130041512, 0.00497943768, -0.0314784, 0.0148781668, -0.0107059488, 0.00437798, -0.00950303394, 0.0601711087, 0.00326053449, 0.00806586631, -0.0251725931, -0.0154353073, -0.00313391187, 0.00524851074, -0.0256157722, 0.0195125584, -0.0219183899, -0.00134140917, 0.0159291364, 0.000637861842, -0.0120354872, 0.039860826, -0.0129408399, 0.0244001951, 0.0235898085, -0.0681736618, 0.00738210324, -0.00415639, 0.00480849715, 0.0375562944, 0.0278316699, 0.0515607633, -0.0725801289, 0.00479583489, 0.0432543159, 0.0180184096, 0.0282115377, 0.000583255838, 0.013725901, -0.0258183684, 0.00042774732, -0.0119721759, 0.00441596657, 0.00187243312, 0.0119975, 0.0120608117, 0.00860401243, -0.00895855576, -0.0280595906, -0.0414815955, -0.0342894271, 0.046698451, -0.0179930851, -0.0270972569, 0.0158405, 0.0642736852, -0.0117632486, -0.00907251611, -0.00975627918, -0.00730612967, 0.0323900878, -0.0268946607, 0.0305920448, -0.0335803404, 0.0222222842, 0.0276797228, -0.0214752089, -0.0632607043, 0.0361634418, -0.00493828533, -0.00187559868, 0.00834443606, -0.00568535924, 0.023564484, 0.0266414154, -0.0331498235, -0.0434822366, 0.0321115181, -0.026134925, 0.025311878, 0.045533523, -0.00214625476, 0.00551758427, 0.00277303718, 0.00936374906, -0.0111111421, -0.0039348, -0.010281763, -0.0271479059, -0.0212726127, 0.0106046507, 0.00207661232, 0.0254511628, 0.0301108789, 0.0326686576, 0.00930676796, 0.027401153, -0.00182494964, -0.0247294139, 0.0147642065, 0.0339095592, 0.0177651644, 0.0106616309, -0.0221336484, -0.027401153, 0.00101219025, -0.00601457804, 0.0527256913, -0.00966764335, -0.000469691062, -0.00988923293, 0.0248940233, 0.0522698499, -0.00313707744, -0.00607155822, 0.000639444625, 0.0789619163, 0.000129986118, -0.0138525236, 0.0474328622, -0.0263628457, 0.03084529, 0.00883826427, -0.0233998746, -0.0196265187, 0.027983617, -0.040975105, -0.038847845, 0.00588795543, -0.0163090043, 0.019639181, -0.0286167301, -0.0509023257, -0.049661424, -0.00876862183, 0.0116936062, -0.00384616456, -0.00674898969, 0.0385946, 0.0583477393, -0.028996598, -0.037733566, -0.00406458881, -0.0217537805, -0.0388984941, -0.0181956813, 0.013725901, 0.0485724658, 0.0111174732, 0.0305413958, -0.0513328426, 0.00205287058, 0.0121874353, 0.0141310934, -0.00921813212, -0.00901553594, 0.00059314823, 0.000591961143, 0.00478633819, -0.0085976813, 0.0114720166, 0.0212093014, -0.0355303288, 0.00849005207, 0.0223615691, 0.0155745922, 0.0255524609, 0.0310732108, 0.00750239473, 0.069490537, -0.0210193675, -0.0211333279, -0.0134979794, -0.0212093014, 0.0127192503, -0.0126749324, -0.000114356124, -0.0568282679, 0.0379868113, 0.00464705285, 0.0362900645, 0.000730454689, 0.00880027749, 0.0209180694, -0.0104527036, 0.00384299899, 0.0446724892, 0.0358595476, 0.0719216913, 0.000320513704, -0.0109085459, 0.000815925, 0.0116936062, -0.054802306, -0.0328459293, -0.0166128986, -0.0166508853, -0.0107312733, -0.0179550983, -0.0375309698, -0.0185249, -0.0100285178, 0.0462426096, 0.00826213136, -0.00635012845, -0.0152453734, -0.0332257971, 0.0103577366, -0.0269959588, -0.0532828309, -0.00511239143, -0.00378285325, -0.0104780281, -0.0249446724, -0.00735044759, -0.0218297541, 0.0172460116, -0.0459133908, 0.0195505451, -0.0145616103, -0.0378095396, -0.0121747721, 0.0251979176, -0.014498299, 0.0322128162, 0.0221716352, -0.0206901487, -0.0246407781, -0.0154099828, -0.00664136047, -0.0315037258, 0.0036467337, -0.00640077749, -0.00346629648, -0.0276290737, -0.00527383527, -0.0191960018, -0.0506744049, 0.027401153, -0.000570989214, -0.0032637, 0.00881927088, 0.0258436929, -0.0349225402, -0.057993196, 0.00563787576, 0.0157012139, -0.0322634652, -0.0201963205, 0.0181956813, 0.0147262197, -0.0093131, 0.0134346681, -0.0189174321, -0.00773664704, -0.0182210058, 0.014017133, 0.0370244756, 0.000722936471, 0.0134346681, -0.0172080249, -0.0525737442, 0.0252865534, -0.030060228, -0.0133207077, -0.000659229408, 0.0186768491, 0.0331245, -0.0100285178, 0.00761635555, -0.0100665046, 0.0171827, -0.0141564179, -0.0390504412, -0.0289206244, -0.02453948, 0.0248940233, 0.00405509211, -0.0495601259, -0.00387465465, 0.0216018334, -0.0111934468, -0.000193693166, -0.0179171115, -0.0181703568, 0.0176891908, 0.00966764335, 0.00821781345, -0.0129281776, 0.0570815131, -0.0105413394, -0.00389681361, -0.0285660811, 0.0100665046, -0.0440393761, -0.0206774864, -0.00398228411, 0.00829378702, 0.0101804649, 0.0557139888, -0.0263881702, 0.00371637614, -0.00577399507, 0.0401140712, -0.0157518629, -0.0028078584, -0.0223109201, -0.0119468514, 0.0220576748, -0.00533714658, 0.0109275393, -0.0425199, -0.058094494, 0.0195758697, -0.028996598, 0.00742642116, 0.0177651644, 0.0609308444, -0.00735044759, 0.0335550159, 0.00817982666, 0.00729346741, 0.0135233039, -0.00783794466, 0.00487813959, 0.0612347387, -0.0141564179, -0.0118772089, -0.0168028325, 0.0138778482, -0.0120861363, 0.0039221379, 0.0096169943, 0.00230611581, 0.00438431092, -0.00266382494, -0.0238303915, -0.00289332867, 0.00710353348, 0.0368218794, 0.0266920645, 0.0271732304, 0.0185375623, -0.050775703, 0.0384933, -0.0255271364, -0.0355050042, 0.0022523012, -0.0122000976, 0.0491549335, 0.0227161124, 0.0075847, -0.00743275229, 0.0130674625, -0.046065338, 0.0143083651, -0.0243495442, 0.00626782374, -0.00743908342, -0.027983617, -0.0164103024, -0.0137005765, 0.0242862329, -0.00312283239, 0.0338335857, -0.0147135574, 0.0229313709, 0.0384173281, 0.0404179655, 0.00490979524, 0.00407725107, -0.00203546, 0.0156379025, -0.0131940851, 0.00993988197, 0.0146882329, -0.0240203254, -0.000710274209, -0.0172586739, -0.0400127731, 0.026768038, 0.0287433527, -0.0119341891, -0.000632717798, 0.0412536748, -0.0137385633, 0.00376702542, -0.0547516569, 0.0117126, -0.011104811, -0.0328206047, -0.0198671017, -0.00259259972, 0.00424502604, 0.055916585, 0.0091928076, -0.00850904547, -0.0148275178, -0.0121431164, 0.00127018394, -0.00490979524, -0.024096299, 0.0023377717, 0.00429250952, -0.0774930939, 0.00580248516, -0.0141817424, 0.0218044296, 0.022792086, -0.00993355084, 0.00473885471, 0.031681, -0.0118772089, -0.0195885319, -0.0319342464, 0.00230295025, -0.0223235823, -0.0600191578, -0.012947171, 0.0180184096, 0.00995254423, -0.0164862759, -0.00181703572, 0.00315132248, 0.00211301632, -0.00249921554, -0.0562711284, -0.0177904889, -0.00277620275, 0.0542451628, 0.0426465236, -0.00537196826, -0.0297816582, 0.0203482676, -0.00261475868, -0.01037673, 0.0128458729, -0.0198417772, 0.0249699969, 0.00745807681, -0.0218930654, 0.0176258795, 0.000228712248, -0.0299336053, 0.00904719159, 0.0282621868, -0.00840141624, -0.00716051366, -0.00971196126, 0.0252105799, -0.00883193314, -0.0134853171, -0.00773664704, 0.0201076847, -0.00855336338, 0.00118154811, -0.00846472755, 0.0346186459, 0.0309719127, 0.0670087337, 0.00123061438, 3.04685873e-05, 0.0140931066, 0.0273758285, -0.00246281154, -0.00434632413, 0.0364926606, -0.0281608887, -0.00577082951, 0.0331498235, 0.0214752089, 0.0352770835, 0.0134220058, 0.00995254423, 0.0105729951, 0.00209402293, -0.00867365487, 0.0337322876, 0.0147768687, 0.00428934395, -0.0186388623, -0.014017133, 0.000354939257, 0.00907884724, 0.0118075665, -0.0137892123, 0.00135565433, 0.00411523785, -0.0215891711, -0.0276037492, 0.00141659146, -0.00295189163, -0.0219943635, -0.0029265671, -0.0184109397, 0.00697691087, -0.0543464608, 0.00326053449, -0.0313264541, 0.0222729333, 0.00129550847, 0.017359972, -0.00488447072, -0.00684395712, -0.0228553973, 0.0223995559, -0.0269959588, -0.00880660862, 0.0584996864, 0.0214625467, 0.0366192833, -0.00951569621, 0.0267427135, 0.030743992, -0.0110668242, -0.0309972372, 0.0179044493, -0.000340298517, -0.0272238813, 0.0101551404, -0.00626782374, 0.0215005353, 0.0196011942, 0.0201583337, -0.00903452933, 0.0319342464, -0.0259829778, -0.0138525236, -0.000287473085, -0.0303134751, -0.0109275393, 0.0439127535, 0.00373220397, 0.00693892408, -0.00528649753, -0.016296342, -0.0171067268, 0.00107312738, 0.0285407566, 0.00297563337, 0.0209687185, -0.0234252, -0.00452043, 0.0389238186, -0.0200190488, 0.00219532102, -0.00602724031, 0.0358089, -0.00429884065, 0.00828112476, 0.035783574, 0.0652360171, 0.00406458881, 0.00863566808, -0.0343654, 0.00918014534, 0.018183019, -0.0182843171, -0.0011079486, 0.00510289473, -0.0140424576, 0.0161190704, 0.00873696618, -0.023906365, 0.016536925, 0.016828157, -0.0232479274, 0.00120608124, -0.0139791463, -0.00170782371, 0.0149288159, 5.82662251e-05, -0.0260842759, -0.0150681017, -0.0220956616, -0.0369991511, 0.00786326919, 0.0525230952, 0.00112931617, -0.0117442552, 0.00901553594, -0.0107755922, 0.00787593145, -0.0228300728, -0.00335866702, 0.0305160712, 0.0240456499, 0.00874329731, -0.0113580562, -0.0253245402, 0.0158658251, -0.0412283503, 0.0214245599, 0.0177651644, -0.00223014224, -0.0047768415, 0.0138905104, 0.00823047571, -0.0520166047, -0.0089458935, -0.0144096632, 0.0291485451, 0.00872430392, -0.0172713362, -0.004412801, 0.00901553594, 0.0182843171, -0.0375056453, 0.0334283933, -0.0115479901, -0.0531308837, 0.00396012515, -0.00463439059, 0.0332257971, -1.28601175e-06, 0.00386199239, -0.0283888094, -0.0269453097, -0.00359291909, 0.00866099261, -0.0318329483, 0.0164482892, 0.0257170703, -0.0272492059, 0.0262362231, -0.0110984799, -0.00618868461, -0.0140044708, 0.00885092653, 0.0228933841, -0.00345679978, -0.00921180099, 0.0223615691, -0.00354227, -0.0166635476, -0.0196138564, -0.005188365, -0.00879394636, -0.0334537178, 0.0110794865, 0.00344097195, 0.00369105162, -0.0371764228, 0.00559988897, 0.0258563552, 0.00200063875, -0.013675252, 0.00556823332, 0.00327003119, -0.0183476284, -0.0250459705, 0.00445078779, 0.00796456821, -0.0199937243, 0.00735677872, 0.00615702895, -0.00119737594, 0.0277050473, 0.00714152027, 0.0108578969, 0.034719944, -0.00752771972, 0.00704655331, -0.00387782021, -0.0119088646, -0.0140931066, -0.00173156545, 0.0220576748, 0.0130168134, 0.0248813611, 0.00648308219, 0.0167901702, -0.0242862329, -0.00251504336, -0.016777508, 0.0151440753, 0.0274264775, -0.000554765691, 0.0287433527, 0.00160098576, 0.0172839984, 0.0234505236, -0.0205635261, -0.00854070112, 0.00769866025, 0.00405192655, 0.0362647399, 0.0112884138, -0.0159924477, 0.0415828936, 0.00437481422, 0.0137005765, 0.0132700587, -0.00724914949, 0.00666035386, 0.0119721759, 0.0248813611, 0.00512821926, 0.0023472684, 0.0435582101, -0.00278095109, 0.0135359662, 0.000972620619, -0.0368725285, -0.0173979588, -0.012510323, -0.0242735706, -0.0340615064, 0.0217537805, 0.0149921272, 0.0404179655, -0.018474251, 0.0152706979, 0.015764527, 0.00838875398, 0.00318139535, -0.00897754915, 0.0138525236, 0.00289491145, -0.00156299898, -3.56868259e-05, 0.0203989167, 0.00497627212, 0.0235771462, 0.000163521341, -0.0283888094, 0.0185628869, 0.0316050276, -0.0153340092, -0.0422666557, 0.0436848328, -0.000831752841, -0.0426465236, 0.0274264775, 0.00674265856, 0.0169294551, 0.0323900878, 0.026134925, -0.00161364803, -0.00643559871, 0.00719850045, 0.00205920171, -0.0204748902, 0.00695158634, 0.00806586631, 0.0124849984, 0.0165116, -0.00603990257, -0.0297816582, -0.00616652565, -0.0182716548, -0.00935741793, -0.0092751123, 0.0351251364, -0.0311998334, 0.0304654222, 0.0201203469, -0.00138651859, 0.0206268374, -0.0402660184, 0.00757203763, 0.018474251, 0.00522635179, -0.00194998959, -0.0312504806, -0.0283381604, -0.00478000706, 0.022500854, -0.0134346681, 0.0160810836, 0.00846472755, 0.00832544267, 0.0252738912, 0.00300095789, 0.00532765, 0.0189680811, -0.0027350504, -0.0221716352, -0.034669295, -0.00284584519, -0.00547959749, 0.0168914683, 0.000107332526, -0.00838875398, 0.0113327317, 0.0321115181, -0.00903452933, -0.00751505699, 0.0405445881, -0.0269453097, -0.03413748, -0.0205002148, -0.0140677821, 0.0307186674, -0.0102057895, -0.0322128162, -0.00864199921, -0.0182210058, 0.0210193675, 0.0163216665, -0.0132827209, -0.0301362034, 0.0351757854, -0.00785060693, 0.0155112809, -0.0266920645, 0.0192846376, -0.0188287962, -0.00930043682, -0.00432733074, 0.0343400761, 0.0233998746, 0.0338082612, 0.0233492255, 0.0100221867, 0.0371004492, -0.0128205484, 0.0394303091, 0.0179804228, -0.0131814228, -0.0118518844, -0.0240836367, 0.0221336484, 0.0138905104, -0.00816083327, 0.0140931066, 0.0143843386, -0.0185502246, -0.00226654625, -0.0023472684, -0.000817507796, 0.00699590426, 0.00344413752, -0.00956001412, -0.0145995971, -0.00131845882, -0.00745174568, -0.0332764462, -0.0121747721, 0.0265147928, 0.0403673165, -0.0123520447, -0.00217157928, -0.0154606318, -0.0413549729, -0.0203482676, -0.053434778, -0.0139538217, 0.0111617912, 0.00923079439, -0.0194872338, -0.015080764, -0.00873063505, 0.00989556406, 0.00556823332, 0.00256885798, -0.00557456445, 1.66686914e-05, 0.00183286355, 0.0536373742, -0.00821148232, -0.0465465039, 0.0132700587, 0.00390631, -0.03307385, 0.0153340092, -0.026717389, 0.0136625897, 0.0119025335, -0.00928777456, 0.00511239143, -0.0176891908, 0.0373283736, -0.00992722, 0.00154558837, -0.0178158134, -0.0243115574, -0.00875596, 0.00843940303, 0.0133713568, 0.0375309698, -0.00643559871, 0.0100601735, 0.0163976401, -0.0269199852, -0.023323901, -0.00258152024, 0.032542035, -0.0192213263, 0.016055759, -0.0302375015, 0.00131529325, 0.00339981937, -0.00573917385, -0.00842674077, -0.0032637, 0.00240899692, 0.01333337, -0.0115163345, 0.0112820826, 0.0155112809, -0.0185755491, 0.014548948, 0.00981325936, -0.0188414585, -0.00313707744, -0.0248813611, 0.0171953626, -0.0206901487, 0.0312251579, -0.0309972372, -0.00254511624, 0.0238177292, -0.00959800091, 0.00645142654, 0.0113770496, -0.00150681008, -0.00436531752, -0.0031133357, -0.0614879839, -0.0129281776, -0.00872430392, 0.019158015, 0.00645142654, -0.00956634525, -0.00133032969, 0.010617313, -0.0016983269, -0.00404243, -0.0399368, -0.0152073866, -0.000428143016, 0.0201456714, 0.00661603594, -0.016055759, 0.000427351624, -0.000248101365, -0.00284742797, 0.013675252, -0.0211966392, 0.00368788606, 0.0158405, -0.0109402016, -0.0160177723, -0.009699299, -0.0360874683, -0.012073474, -0.0107439365, -0.0249066856, 0.00696424861, -0.00622667139, 0.006983242, -0.00777463382, -0.0188034717, -0.00285850745, -0.0100538423, -0.0206901487, 0.00566953141, 0.0174992569, 0.00350428326, -0.0207914468, -0.0118708778, -0.00408674777, 0.0157771893, -0.013384019, 0.0223362446, -0.0109338704, 0.0127635682, -0.00428617839, -0.0121367853, 0.0244635064, -0.0337829366, -0.000995571, 0.022019688, -0.000637861842, 0.00565686915, 0.0334790424, -0.0126875946, -0.000822256145, -0.0194239225, -0.00228237407, 0.0068186326, 0.00593860447, -0.00232510921, 0.00276354048, 0.0070655467, 0.013725901, -0.0263121966, -0.00593860447, 0.00054566469, -0.00519153057, -0.00144112459, 0.00909150951, -0.00833810493, 0.0134220058, -0.00857868791, -0.0049414509, -0.0181576945, -0.0168661438, 0.0219183899, 0.0239570141, 0.00456791371, -0.00384616456, 0.00168408186, -0.0253372025, 0.0462172851, -0.0074137589, -0.0126432767, -0.00456158258, -0.00557139888, 0.0043494897, 0.000519944471, 0.0155239431, 0.0157898515, 0.0125483098, 0.028515432, 0.0120354872, 0.0133713568, 0.0335550159, -0.003103839, -0.00175689, 0.00463755615, -0.00814184, 0.0109085459, -0.00753405085, -0.0309972372, 0.0152960224, -0.0155492676, 0.00864199921, 0.0102691008, 0.0136246029, 0.00479900045, -0.0303388, -0.0305160712, -0.00864199921, 0.0194619093, -0.00449827127, 0.00669200951, -0.00757836876, 0.0248433743, 0.00844573416, 0.0149794649, 0.0276037492, -0.0251599308, 0.00127809786, -0.010427379, 0.000171929889, 0.0166888721, 0.0130294757, 0.00197214866, -0.00180120789, 0.0109212082, 0.00666035386, -0.0207787845, -0.0145869348, 0.0201330092, -0.0140297953, -0.00266699051, 0.0185882114, -0.00960433204, 0.00375119736, 0.0115733147, 0.00337766041, -0.0102057895, -0.00270814309, -0.0200570356, 0.00376385986, 0.0142957028, 0.000838875363, -0.0155366054, 0.0167521834, -0.0265907664, 0.0102121206, 0.00853437, 0.0118898712, -0.0345426723, 0.00719216932, 0.0374043472, 0.0223995559, 0.0147135574, 0.0311491843, -0.014498299, 0.00277462, -0.00999053102, -0.0014957306, 0.0216904692, 0.00256885798, 0.00207344675, 0.0196265187, 0.00574867055, -0.0236531198, -0.0137638878, -0.00836976059, 0.0102754319, -0.0102121206, -0.0147262197, 0.0282875113, -0.0117759109, -0.0059544323, -0.00223172503, -0.016777508, 0.00850271434, 0.010136147, -0.0103387432, -0.00981325936, -0.0117569175, -0.00117521698, -0.00166825403, -0.0197911281, -0.0112187713, -0.0284394585, 0.00255461293, 0.00341248186, 0.0181197077, 0.0219817013, 0.0232605897, -0.0251092818, 0.0255271364, -0.0100981602, 0.017942436, 0.00262425537, 0.00241691084, -0.00855969451, -0.0124723362, -0.00261950702, -0.0125039918, 0.0250333082, -0.0151694, -0.0113327317, -0.0297563337, 0.00647991663, -0.00500476221, 0.0335296914, 0.0120608117, -0.0224755295, -0.0253878515, -0.035302408, 0.0171953626, -0.0255651232, -0.00852170773, -0.0183223039, 0.0242229216, -0.00714152027, -0.00371954171, -0.00211776467, 0.0265401173, 0.00406775437, -0.00916115195, -0.03084529, -0.000283911824, 0.0157138761, -0.00503958343, 0.00148781668, -0.00272080535, -0.0349731892, -0.0225388408, -0.00223172503, -0.0161570571, -0.00838242285, -0.00814817101, -0.00735044759, 0.0215638466, -0.0130294757, 0.00402343646, 0.00350428326, -0.0205255393, -0.00338082598, 0.00874329731, -0.00971196126, -0.00179645955, 0.0245521422, -0.0202089828, -0.0300349034, -0.0130548, 0.000415085029, -0.00200063875, -0.0137132388, 0.0387718715, 0.0128838597, 0.0130674625, 0.0362140909, 0.0152706979, 0.0004780007, 0.0321621671, 0.0538906194, -0.00223489059, -0.000973412, 0.0208294336, -0.00322413049, -0.0336309895, -0.0174865946, -0.0060462337, -0.0203356054, -0.0370751247, 0.0195632074, 0.0134220058, 0.00276037492, 0.0167015344, -0.015764527, 0.00223014224, 0.0137638878, 0.00418171473, -0.0152327111, -0.00267965277, 0.00176638667, -0.0346186459, 0.00166983681, -0.0276037492, 0.0174992569, -0.0200570356, -0.0287180282, 0.0135866152, 0.0170814022, 0.0137132388, 0.0041753836, 0.00856602564, -0.00953469, 0.0044222977, -0.0130548, 0.0167395212, -0.0168408193, -0.00561255123, 0.0303388, 0.00788226351, -0.00261159311, 0.0281862132, -0.00498260325, 0.00110715721, 0.0170434155, -0.0112251025, -0.0159924477, -0.00613487, 0.00859135, -0.00436848309, 0.000152244014, -0.0182716548, -0.0141057689, 0.0348212421, 0.00907251611, 0.00805953518, -0.0131307738, 0.0226907879, -0.0386452489, -0.0419121124, 0.0117126, 0.0152327111, -0.0138525236, -0.0131181115, 0.00293448102, 0.0245014932, -0.000150562308, -0.0098829018, -0.00950936507, -0.0288446508, 0.00327636232, -0.0144603122, -0.0144729745, 0.00231402973, 0.00260842755, 0.00553657766, 0.00446661562, -0.00239633466, -0.0176258795, -0.0020971885, -0.0310225617, 0.00957900751, 0.0269199852, 0.0033238458, 0.026185574, 0.0123013956, -0.0168914683, -0.0200696979, 0.00564104132, -0.0219183899, -0.0111238044, -0.0225261785, 0.0369738266, 0.0125229852, -0.00609055208, 0.00521052396, -0.0325167105, 0.00660970481, 0.0207661223, -0.00548276305, -0.00647991663, 0.00237259292, 0.0255651232, -0.0112124402, -0.00291073928, -0.00408674777, 0.00173473102, 0.0353783816, 0.0208167713, 0.0116619505, -0.0115669835, -0.00592910778, 0.000906935078, 0.010085498, -0.00981325936, -0.0023076986, 0.0302375015, -0.00215733424, -0.0196518432, 0.0280342661, -0.010617313, -0.0213612486, -0.00581514742, 0.00788226351, -0.00658438029, -0.0155999167, -0.0163090043, 0.00752771972, 0.0348972157, -0.010769261, -0.00389997917, 0.0164229646, 0.00757203763, -0.00245173206, 0.00915482081, 0.006983242, -0.0216144957, -0.0164482892, -0.00193891011, 0.00495411316, -0.00330485241, 0.0155872544, -0.00563154463, -0.00659704255, 0.00178854563, -0.0158658251, -0.0068819439, -0.011541659, -0.0174739324, -0.0139284972, 0.0155366054, -0.0324154124, 0.0169041306, -0.0170180909, 0.0124280183, 0.00300570624, 0.0042481916, 0.0155112809, 0.00610954547, 0.0291232206, -0.0144349877, -0.0127192503, 0.0182083435, -0.0084140785, 0.0112630893, 0.0105856573, -0.00274296431, -0.00152976054, 0.00934475567, 0.00678697648, 0.00206869841, -0.0197911281, -0.022551503, -0.0270972569, -0.0149668027, 0.0101234848, 0.0110921487, 0.00938907359, 0.00383983343, 0.00669834064, -0.0063912808, 0.0238177292, 0.00822414458, -0.00141896564, 0.0249446724, 0.0174992569, -0.0244128574, -0.0194112603, 0.00163659838, 0.0524724461, 0.00920547, 0.0123900315, -0.0185628869, -0.00733778533, -0.0142197292, 0.0463185832, -0.0156379025, 0.000451489061, 0.012466005, -0.0157518629, -0.0267933626, -0.012560972, -0.000797723, -0.0065653869, -0.030743992, -0.00807852857, -0.00605889596, -0.0206648242, 0.0141690802, -0.0237417556, 0.0106426375, 0.022500854, 0.0203735922, 0.0557139888, 0.0256410968, -0.00111507112, 0.0152073866, -0.0376322679, -0.0197278168, -0.00897121802, -0.0158784874, -0.0159544609, -0.0045869071, 0.00923079439, 0.00135881989, 0.00785693806, -0.0002494863, -0.000840458146, -0.0210700165, 0.0118138976, -0.00926878117, 0.00899654254, -0.00698957313, -0.0201583337, -0.0510795973, 0.0144349877, 0.00794557482, 0.0369738266, 0.036315389, -0.00942072924, -0.0136372652, 0.00236784457, -0.00483382167, -0.0127509059, -0.000523901428, 0.0102754319, -0.012560972, -0.00325103779, 0.0265907664, -0.000602644926, -0.0254891496, -5.98984734e-05, 0.0152200488, -0.0153340092, -0.00125910447, -0.0145109612, 0.00914215855, 0.0203735922, 0.00709720235, -0.0024200764, 0.00305002439, -0.00497310655, -0.00370371388, 0.0194745716, -0.00497943768, -0.016055759, -0.00900287367, 0.00309592509, -0.00042141616, -0.0124723362, 0.0100475112, -0.00842041, 0.0113580562, -0.00495411316, 2.82922592e-05, -0.00929410569, -0.0112567581, -0.011782242, 0.010085498, 0.0285660811, -0.00164292951, -0.000644588668, -0.018183019, 0.00512821926, 0.0134473303, 0.0207407977, 0.0136499275, 0.00965498108, -0.0136879142, -0.017359972, -0.00932576228, 0.00729346741, -0.00917381421, -9.86272134e-05, -0.00103830616, 0.0261096, 0.00731879193, 0.00931943115, -0.00878761522, -0.00830011815, -0.00760369329, 0.00771765364, 0.038746547, 0.00705288444, 0.00999053102, -0.00619501574, 0.0503958352, -0.0182083435, -0.0153466715, -0.0156632271, -0.00948404055, -0.0154353073, 0.00567586254, -0.00159465463, -0.00984491501, -0.00510289473, 0.00299937511, -0.00342514412, 0.00177588337, -0.00304211024, -0.0075657065, 0.00326053449, -0.00590061769, 0.003491621, 0.0151060885, 0.00650207559, -0.010326081, -0.00561888237, -0.00556823332, 0.0205002148, 0.00728080515, -0.0110161752, -0.0243115574, -0.0250459705, 0.0106932865, 0.00674898969, -0.0231592916, 0.0133460322, 0.00807852857, 0.00861034356, 0.0201583337, 0.0206395, -0.0104020545, 0.0215765089, -0.00168566464, 0.000617681362, 0.00721749384, 0.00774297817, -0.005963929, -0.016828157, -0.0162077062, -0.0140677821, -0.00389048248, -0.00101693859, -0.0105729951, -0.025311878, 0.000601853535, 0.00319880596, 0.00329852127, -0.00342197856, -0.0194112603, -0.0163469911, 0.0100475112, -0.0172966607, 0.0145616103, 0.009699299, 0.00358025683, 0.00881294, 0.00168249907, 0.00567902811, -0.00513455039, 0.00676165195, 0.00234568561, -0.0210953411, 0.00679330761, -0.00598292239, 0.00302628241, 0.004339993, 0.0137765501, -0.0213106, 0.00543527957, 0.000465338409, 0.000232075661, -0.00461539719, -0.00347262761, 0.0035011177, -0.00312758074, -0.00197056588, 0.0237924047, -0.00964231882, -0.00990822632, 0.00458374154, 0.00452676136, 0.00100665051, 0.00193891011, 0.0136119407, -0.00507440465, -0.0190187301, -0.00710353348, 0.0209307317, -0.00889524445, 0.0160304345, 0.00329852127, 0.00143637625, -0.00426085386, 0.00349478656, 0.0114276987, 0.0430517197, -0.0122127598, 0.0152833601, 0.00541312061, -0.0078252824, -0.00790758803, 0.00646092324, -0.0221716352, -0.00809752196, -0.00676798308, -0.0124723362, -0.000251662626, 0.00637545297, 0.0108768903, -0.00738843437, 0.00201963214, 0.0186641868, 0.00799622387, 0.026768038, -0.0505477823, 0.00861667469, -0.000381055201, -0.0167395212, -0.00435582083, -0.00858501904, -0.0215765089, -0.000730454689, 0.00411523785, -0.00413106568, 0.0109655261, 0.000422207551, -0.019449247, -0.00272871926, -0.0112567581, -0.0103640677, -0.0150554394, 0.00658438029, -0.00562204793, -0.000604227709, 0.000196265188, 0.0119595136, -0.0139918085, -0.00495094759, 0.0053624711, -0.0144476499, -0.00269073248, -0.0233998746, 0.0103450743, -0.0154986186, 0.000654876756, -0.0144603122, 0.00342830969, -0.0122380843, 0.0104590347, -0.0151947243, 0.017942436, 0.0163343288, -0.0197911281, -0.00419437699, -0.00139126694, -0.0027350504, -0.0144349877, 0.00333650806, -0.00191358558, 0.0242482461, -0.00201171823, -0.00282368623, -0.00807219744, 0.00472935801, -0.0367205814, 0.00379235, -0.00488130515, -0.0179171115, -0.0162836798, -0.00172365154, 0.00886992, -0.00787593145, -0.0135359662, -0.00946504716, 0.00350428326, 0.0140931066, 0.0151694, -0.0190567169, -0.00971196126, -0.00527383527, -0.0190947037, -0.00992722, -0.00852170773, -0.00192783063, 0.00521685509, 0.0201456714, 0.0216398202, 0.00695158634, 0.00188192993, 0.00422603264, -0.000244144379, 0.0151440753, -0.0226401389, -0.00495094759, -0.00796456821, -0.000648149929, -0.00133666082, 0.0182463303, 0.012022825, -0.00811018422, 0.00145141268, 0.000293012854, 0.0208674204, 0.0102944253, -0.0380121358, 0.00591328, 0.00547010079, -0.0110668242, -0.00496044429, 0.0270972569, 0.00387782021, 0.0188414585, -0.0135612907, -0.000572572, -0.0113137383, 0.00288541475, 0.0192593131, 0.00770499138, -0.0190567169, 0.0026891497, 0.0123900315, -0.000974203402, 0.00200063875, -0.0105033526, -0.0160304345, -0.00361191249, -0.000741534168, 0.0305667203, 0.0110478308, 0.0314784, 0.000122962505, -0.0100095244, 0.0280849151, -0.0237670802, -0.0322128162, 0.01333337, -0.0229946822, -0.0141437557, -0.0338842347, -0.0139411595, 0.0248180497, 0.000601457839, -0.0219057277, -1.9389101e-05, -0.00431150291, 0.00383666786, -0.00646092324, -0.00268123555, 0.00389997917, -0.00989556406, -0.0207407977, -0.0143336896, 0.0113897119, -0.0185122378, -0.0306426939, 0.000791391882, -0.0100475112, -0.0149414781, 0.0256664213, -0.000139680662, 0.00719850045, -0.0150174517, -0.00861667469, 0.0222222842, 0.0146122593, -0.0159164742, -0.00752138859, 0.00891423784, -0.0327193066, -0.00807219744, 0.0178031512, -0.010667962, 0.00974994805, 0.0201583337, -0.0142197292, -0.00729979854, -0.0104020545, -0.0232985765, -0.0223362446, 0.0141690802, 0.00282052066, 0.0202976186, -0.00942072924, -0.0126306145, 0.0014593266, -0.0142703783, 0.00296613667, 0.0045140991, 0.0100665046, 0.000335154444, -0.0135992775, -0.0160177723, 0.00539096165, -0.00724281836, 0.0048591462, 0.018183019, 0.0066476916, 0.00617602235, 0.0170940645, 0.0116746128, 0.0262108985, 0.0272238813, 0.0116682816, 0.0128395418, 0.0158151761, -0.0113074072, -0.000806032622, 0.0149921272, -0.00623616809, 0.0132573964, -0.00761002442, 0.0142450538, -0.0192213263, 0.014738882, 0.00792658143, 0.00371321058, -0.000659229408, -0.00700856652, 0.00258310302, 0.00864833, -0.00122665742, 0.021969039, -0.0128648663, -0.00464705285, -0.0115606524, -0.0194365848, -0.0158278383, 0.0161570571, -0.0378348641, -0.0038240056, 0.0105540017, 0.00677431421, 0.024830712, 0.0198037904, 0.0174486078, 0.00384616456, 0.00333650806, 0.00727447402, -0.0143843386, -0.0288953, -0.000194484557, -0.0139158349, 0.0014134259, -0.0301615279, -0.0393543355, 0.0301362034, 0.0172206871, 0.00678064534, 0.00445078779, 0.0261096, 0.00775564043, 0.024830712, -0.0126052899, 0.00977527257, 0.0308706146, -0.0124723362, -0.0174992569, 0.0059449356, -0.00317189866, -0.0135233039, 0.00125673029, 0.00336499815, -0.00179804233, 0.0189807434, 0.027932968, -0.00555557106, -0.00990189519, -0.00636279071, -0.00439380761, 0.00202912884, -0.0111427978, -0.00435582083, -0.00717317592, -0.00854703225, -0.0183729529, -0.00145141268, 0.0125673031, -0.0166888721, -0.00965498108, 0.00769866025, 0.0102121206, 0.00112298504, 0.0143083651, -0.0047673448, 0.0206521619, -0.0142703783, -0.00109607773, -0.0094333915, -0.00184552581, 0.0146375839, 0.0270972569, -0.00518519944, -0.010231114, 0.0119595136, -0.0212219637, -0.0111871157, 0.0103577366, -0.00261792424, 0.00252612284, -0.000998736592, 0.0223362446, -0.00329535571, 0.029579062, 0.0159417987, -0.00186135364, -0.0125039918, 0.00434632413, -0.0228174105, 0.0165116, 0.0275277756, 0.00421653595, -0.0035739257, -0.0104843592, 9.36810102e-05, -0.0137638878, 0.00452992693, -0.0097816037, 0.00493511977, -0.00529916, -0.00821781345, -0.00558406115, 0.0164103024, 0.0020781951, 0.0149668027, -0.0187401604, -0.000787830621, -0.0168028325, 0.0113074072, 0.00904719159, 0.0126432767, 0.0239316896, 0.0186768491, -0.0277303718, -0.00635962514, 0.00171732041, -0.00264958, 0.0145616103, 0.00605256483, 0.011927858, -0.000845997885, -0.00598925352, -0.0127002569, 0.00905985385, 0.0187021736, 0.00657804916, 0.0163849778, -0.00435265526, 0.011927858, -0.00604306813, 0.024146948, -0.00932576228, 0.00241374527, 0.000230492878, 0.00374170067, -0.0271479059, 0.00308642839, -0.0160177723, -0.0342387781, 0.00567269698, 0.0138778482, -0.00504908, 0.0218930654, -0.00196898286, -0.00210826797, 0.00452992693, -0.00735044759, 0.00274454709, -0.00826213136, -0.00387782021, -0.00352011109, 0.00709720235, -0.00056861504, 0.0291232206, 0.0229820199, 0.00548909418, 0.0117379241, 0.0087622907, 0.012320389, -0.0117379241, 0.0140044708, -0.0175878927, -0.00437798, 0.0116049703, 0.0116682816, -0.00780628948, -0.0211206656, 0.00207661232, 0.0119088646, -0.0110225063, -0.0164103024, 0.0118455533, -0.0141437557, -0.0101234848, 0.00536563667, -0.0226781256, -0.000100951926, 0.00713518914, 0.0192339886, -0.014789531, -0.0151947243, 0.00236784457, 0.00950303394, -0.00742009, -0.0162077062, -0.0118582156, 0.0217031315, -0.0158025138, 0.0120987985, -0.0117569175, 0.0132700587, -0.00679330761, 0.00346629648, -0.000910100644, 0.0254638251, -0.0171573758, -0.000160256852, 0.000567823648, 0.0160430968, -0.00268598413, -0.00257993746, 0.0160430968, -0.00394113176, 0.00378918438, -0.00727447402, 0.000161641787, 0.0106236441, 0.0151820621, 0.00668567838, 0.0122064287, -0.0215891711, 0.00686928164, 0.0135233039, 0.0245014932, -0.00596076343, 0.0132700587, 0.00768599799, -0.0214625467, 0.0105983196, -0.0135612907, 0.00503641786, -0.000119698023, -0.00595759787, 0.0253245402, -1.46407492e-05, 0.00446345, 0.00786326919, 0.0178791247, -0.00549859088, 0.00804687291, 0.00512505369, -0.0111744534, -0.0107376045, -0.00800888613, -0.0243242197, 0.0128458729, 0.0131054493, -0.0108958837, 0.0114530232, 0.000443970843, -0.0022064005, 0.0161317326, 0.004339993, 0.00864199921, -0.0113137383, 0.0309719127, -0.0032637, 0.0250333082, 0.0111934468, -0.0140044708, -0.0188287962, -0.0147262197, 0.0228174105, 0.00513771595, 0.0254511628, -0.02453948, 0.00443496, 0.0143843386, -0.0311238598, 0.00587529317, -7.54295388e-06, 0.00336816371, -0.0143843386, 0.00186610199, -0.0104527036, -0.00135011459, 0.0049921, -0.00266699051, -0.0283634849, 0.0240836367, -0.00229345355, 0.00454892032, -0.000934633776, -0.00130975351, 0.00509023247, -0.00419754256, 0.00664136047, -0.0175245814, -0.00261159311, 0.0132953832, 0.0124343494, -0.00260842755, -0.0196518432, -0.00135961128, -0.00865466148, -0.00488447072, -0.0149794649, 0.0253878515, 0.02337455, -0.00149335642, -0.00586579647, 0.0221209861, -0.0197911281, 0.00952202734, -0.00814184, -0.00343147526, -0.028515432, 0.0107312733, -0.00343147526, -0.0143210273, 0.0048496495, 0.0137765501, -0.00766067347, -0.0017822145, -0.0032637, 0.00245489762, 0.0268946607, -0.0177145153, -0.0264894683, 0.00300570624, -0.0360621437, -0.00547959749, 0.000838875363, -0.00403293315, -0.00633430062, -0.00967397448, -0.00475468254, -0.00963598769, 0.0138905104, 0.000664373452, 0.00458057597, 0.00282052066, 0.014738882, 0.030743992, 0.0146755707, -0.0173979588, 0.0220070258, -0.00748973247, 0.0292245187, -0.00932576228, 0.0146249216, -0.003564429, 0.0124913296, -0.00226654625, -0.00693259295, 0.00565686915, 0.00779362721, 0.00634379731, 0.0299336053, -0.0163469911, 0.0166508853, -0.00196423451, 0.00539096165, -0.0166382231, -0.0186641868, 0.0142957028, -0.025894342, 0.00936374906, 0.0248560365, 0.0047673448, -0.000703943078, 0.0314530768, 0.0332764462, 0.0277303718, -0.00104226312, -0.0180817209, 0.0102501074, -0.00560305454, -0.00481799385, -1.09001867e-05, 0.0264641438, -0.0027619577, 0.0183349662, 0.00646725437, -0.015764527, 0.0065463935, 0.0142323915, -0.00943972263, -0.0015337175, 0.0286167301, 0.0100665046, 0.00958533864, -0.0190187301, -0.00353910448, 0.00802787952, -0.0336309895, -0.00618868461, 0.0147008952, -0.0174865946, 0.0136372652, 0.00174264493, -0.0232226029, -0.00901553594, 0.00770499138, 0.00807852857, -0.0125546409, -0.00783161353, 0.0121621098, -0.0004780007, 0.0029724678, 0.000106046507, -0.000495015644, -0.0058816243, 0.0254258383, 1.713858e-05, -0.0126622701, 0.00117679976, 0.00910417177, 0.0251092818, -0.0130674625, 0.0231592916, -0.0158278383, -0.00865466148, 0.0162710175, 0.0201836582, -0.0120164938, -0.000487101701, 0.0132067474, 0.00117600837, 0.0177018531, 0.00530549092, -0.0178158134, 0.00721116271, -0.0267427135, -0.0103893923, 0.00839508511, 0.000948087487, -0.0186895113, -0.0175372437, -0.0006050191, -0.0248686988, 0.00317664701, 0.00821781345, -0.0191200282, -0.0239696763, 0.00614753226, -0.0070655467, 0.0223489068, 0.00921813212, -0.00329219014, 0.00177588337, -0.00369738275, 0.0133460322, 0.00589428656, -0.0135233039, -0.0156505648, -0.00443496, 0.00729346741, -0.0014134259, 0.00283793127, 0.00778729608, -0.00411207229, -0.0139158349, 0.00914215855, 0.00106679625, -0.0210953411, 0.0202722941, 0.0240836367, 0.0139284972, 0.000993196853, -0.010471697, -0.00565686915, 0.0142957028, -0.0255777854, -0.0200950224, -0.0211713146, -0.0280595906, -0.0103197498, 0.0247167516, -0.00213200971, -0.00657804916, -0.0226781256, 0.00366256153, -0.0114213675, 0.00603990257, -0.0174612701, 0.013675252, -0.0324154124, -0.0137005765, 0.00237575849, -0.0164356269, 0.000946504704, 0.00115622347, 0.0262108985, 0.00831911154, -0.0129345087, 0.00162710168, -0.00987023953, -0.00551125314, -0.00686295051, -0.00514404709, -0.00635645958, -0.0105856573, -0.0252105799, 0.0171320513, 0.0172206871, 0.016587574, -0.0200190488, -0.0272492059, -0.0119721759, -0.0144603122, -0.00380184664, -0.00172681711, -0.0122824023, -0.00752771972, -0.025413176, -0.00476417923, 0.0314024277, -0.0135233039, 0.00836976059, 0.0167521834, 0.00451093353, -0.000372152019, 0.0216398202, -0.0372017473, -0.0173726343, 0.0187148359, -0.0126939258, 0.0108515657, -0.00877495296, -0.0353530571, 0.014257716, 0.0224628672, -0.00449510571, 0.00415005907, 0.000925137079, -0.00650207559, 0.0064735855, -0.0245268177, 0.00893323123, -0.00138177024, 0.006207678, 0.0037480318, 0.0215891711, -0.00772398477, -0.00273346761, 0.00693259295, 0.0108832214, -0.00423552934, -0.00578665733, -0.00300728902, 0.00667301612, 0.00120924681, -0.00650840672, -0.0122000976, 0.0169041306, -0.0150934262, -0.0115543213, 0.0227541, 0.0365939587, -0.00951569621, -0.00595759787, 0.000824630319, -0.0148275178, 0.0250079837, -0.00236942736, -0.00857235678, -0.0158911496, 0.0121367853, -0.0110604931, 0.00573917385, -0.00243273866, 0.00502692116, -0.00654006237, 0.00328269345, -0.0121114608, -0.0237924047, 0.00750872586, -0.000227129465, -0.0103577366, -0.000870531076, -0.011250427, -0.0210953411, -0.0133966813, 0.000817507796, -0.0163849778, -0.00440013874, -0.00529916, -0.0105540017, 0.0120038316, -0.00312599796, -0.0137765501, -0.00938274246, -0.0217411183, 0.00500792777, 0.00337766041, 0.00978793483, -0.00233460614, -0.00201171823, 0.0124343494, 0.00282843458, -0.0167648457, -0.00378285325, -0.005188365, 0.0163216665, -0.0107565988, -0.00060778897, 0.0083507672, -0.0164482892, 0.00866732374, 0.0266160909, 0.0208294336, 0.0127762305, 0.00717317592, 0.0207154732, -0.000690885121, 0.0105729951, 0.0254891496, 0.0131940851, -0.0270212833, -0.0177018531, -0.00685661938, -0.00889524445, 0.0132827209, -0.0222476088, 0.010813579, -0.00376702542, 0.000690885121, -0.00441913214, -0.0102184517, 0.0069009373, -0.00695791747, 0.00389364804, 0.0143336896, -0.00210985076, -0.0241596103, 0.00685661938, -0.00795823708, -0.000144330086, 0.00391580677, 0.00404876098, 0.0234505236, 0.00382717117, -0.00847739, -0.0269959588, -0.0209433939, 0.000202794166, 0.0337576121, -0.00459323823, -0.00133903499, 0.0248940233, 0.00108262408, 0.00485281507, -0.0116176326, -0.00567269698, -0.0180437341, -0.00372903841, -0.0192086641, 0.00371004501, 0.0249320101, 0.00811018422, -0.0210573543, -0.0113264006, 0.00635645958, -0.00943972263, -0.0120418184, -0.00174897606, -0.0143590141, 0.0039348, 0.0284141339, 0.0113897119, -0.0223615691, -0.000621242623, -0.00693259295, 0.025071295, 0.017600555, -0.00443496, 0.00904086, 0.00704655331, 0.00266540772, 0.00919913873, 0.0018281152, 0.0138398614, 0.0197911281, 0.0202849563, -0.00147198886, -0.00377335656, 0.0035739257, -0.00860401243, 0.00538779609, 0.00113010756, 0.0281608887, 0.000791391882, 0.0205888506, 0.0159417987, 0.0280342661, -0.00336183258, 0.000980534474, -0.0164356269, -0.000667143322, 0.0163343288, 0.00897754915, -0.00353593891, -0.00273979874, -0.0101931272, 0.0279076435, -0.00654006237, 0.00147990277, 0.0107059488, -0.00726814289, -0.000523110037, -0.00599558465, -0.00171890319, -0.00104542868, -0.0269706342, 0.00203387719, 0.0152453734, -0.000590774056, -0.00198639371, -0.0271985549, -0.00974994805, -0.00172206876, -0.0138525236, -0.000510447775, -0.0202343073, 0.0322887897, 0.0102374451, -0.00919913873, -0.00462805945, -0.00426085386, -0.0187781472, 0.0231339671, -0.00455525145, 0.00375436293, -0.0190567169, 0.0126242833, -0.0279582925, 0.000540124951, 0.00788859464, 0.000609371753, 0.0191960018, -0.0091928076, 0.0168788061, -0.0058563, -0.0243748706, -0.0162203684, -0.00717317592, -0.0156379025, 0.0189680811, -0.00710353348, 0.00380184664, -0.00409941, -0.0134346681, -0.00454258919, -0.0230073445, -0.000586025708, -0.0276290737, 0.0117695797, 0.0211080033, 0.0189680811, -0.00568219367, 0.0120418184, -0.0163090043, 0.00720483158, -0.0157771893, -0.00702756, -0.00754038198, -0.00345996534, -0.00185818807, -0.0265907664, -0.00949037168, -0.00923079439, 0.0125293164, 0.00899654254, -0.00716684479, 0.0166888721, 0.0106742932, 0.00769866025, -0.0160684213, 0.0109212082, 0.0129155153, 0.0071478514, -0.0152073866, 0.00454258919, -0.0158405, -0.0033143491, -0.0111364666, -0.0149794649, -0.0186895113, 0.0114720166, -0.0141057689, 0.0257677194, 0.0337069631, -0.0154859563, -0.00149414781, -0.00379235, -0.0145616103, -0.00340615073, 0.0105729951, -0.0123393824, 0.00145220407, -0.0212093014, -0.0102247829, -0.00905985385, -0.0290219225, -0.00164451229, -0.0159291364, 0.00445395336, 0.0260336269, -0.000675848685, -0.0226654634, -0.00836976059, -0.00538779609, 0.00724914949, 0.0175752304, -0.00568535924, -0.00471036462, -0.0120987985, 0.00572334602, -0.0029724678, -0.0128142172, 0.0144856367, 0.00849638321, 0.0110921487, 0.018474251, -0.00368472049, 0.0045140991, -0.00292181876, 0.00817349553, -0.00257044076, 0.0089458935, -0.00978793483, -0.0251979176, 0.0198417772, -0.0242229216, 0.000584047229, -0.00847739, 0.0039126412, 0.0186008736, -0.00367205823, 0.00813550875, 0.0260842759, 0.010231114, -0.0101488093, 0.0115353279, -0.00511872256, 0.00855336338, 0.027350504, -0.00806586631, 0.00286958693, -0.0173979588, 0.020221645, -0.0268946607, 0.0132067474, 0.00814184, 0.00456474815, 0.00933842454, -0.00788859464, -0.00625199592, -0.00769866025, 0.0257297326, -0.0100348489, -0.0165116, 0.00937641133, -0.0166128986, 0.00353277335, -0.00822414458, -0.000272238802, -0.0153973205, -0.0151567375, 0.00553024653, 0.00804054178, 0.0125419786, -0.0203609299, -0.00490662968, 0.0110288374, 0.00607472379, -0.0153593337, 0.0118582156, -0.00580248516, -0.00670467177, -0.00185977085, -0.0185755491, -0.0195505451, 0.00818615779, -0.00984491501, -0.00781262, -0.0182463303, -0.0222729333, -0.00949037168, 7.77047899e-05, 0.0247927252, -0.0254891496, 0.00729979854, -0.00349478656, -0.042089384, -0.00897754915, 0.00864833, -0.00974361692, -0.0190693792, 0.0019658173, 0.0110731553, -0.000616889971, 0.00732512306, 0.0021240958, -0.00551758427, -0.00157645263, -0.0154479695, -0.012947171, 0.0104780281, 0.00251979171, -0.0327446312, 0.0253878515, -0.0014680319, -0.00331751467, 0.00797723047, -0.0105983196, -0.0159671232, 0.0130674625, -0.00616019452, -0.00654006237, 0.00499843108, -0.00880660862, 0.00493828533, -0.00214625476, -0.024590129, -0.0213865731, 0.00795823708, 0.0123393824, 0.0116113015, -0.0078696, 0.000915640383, -0.0113327317, -0.00481166271, -0.0062899827, -0.0121747721, -0.0096169943, -0.00934475567, -0.0238683783, 0.00177588337, -0.00495727872, -0.00285692466, 0.0192719754, -0.029528413, 0.0073947655, -0.00380501221, -0.0131307738, 0.0089269, 0.0107819233, 0.0143083651, -0.0145109612, -0.00767966686, 0.0148528423, -0.00575500168, -0.0085153766, -0.00628681714, 0.0171700381, -0.00353593891, 0.00687561277, 0.0116049703, -0.00921813212, -0.00587845873, -0.00440963544, -0.0169421174, -0.0107882544, -0.00647042, -0.02666674, 0.00719216932, -0.00686295051, -0.0167015344, -0.0283381604, -0.00254036789, -0.010959195, -0.0178031512, 0.00805953518, 0.0155492676, 0.0246154536, 0.000152441862, -0.00683129486, -0.0292245187, -0.0240456499, 0.0356569514, 0.0197531413, 0.0278569944, -0.00306426943, -0.00121636933, -0.0137765501, -0.00253720232, -0.0132194096, 0.00842674077, -0.0303894486, 0.0141057689, 0.0138651859, 5.14713838e-06, -0.0196011942, -0.013573953, -0.00102643529, 0.00632163836, -0.000641423103, 0.0156379025, 0.00175055885, -0.0196771678, -0.00505224569, 0.0118835401, 0.00427035056, -0.00147278025, 0.0165116, 0.00718583819, -0.025071295, 0.00371004501, -0.0315543786, -0.0176765285, 0.00536563667, -0.0105540017, 0.00926245, 0.0208167713, 0.00809752196, 0.0216904692, 0.00457741041, 0.00469137123, 0.00072214508, 0.00585946534, -0.0125546409, 0.00945871603, 0.0141184311, 0.0104906904, -0.0148148555, -0.0094333915, 0.00291232206, 0.0114656854, 0.0174992569, -0.00166825403, 0.00115780625, 0.035251759, 0.0092751123, -0.0160684213, -0.0025577785, -0.0205635261, 0.0194745716, 0.00486864289, -0.00248497049, 0.0142957028, -0.0166002363, -0.00733778533, 0.00292815, -0.00808486, -0.0155366054, 0.00597659126, -0.0074960636, 0.0100285178, -0.0197404791, 0.0101488093, -0.00823680684, -0.0131181115, -0.0132827209, 0.00149652199, -0.0103134187, -0.0109338704, 0.00827479362, 0.00183128077, -0.0225641653, -0.00896488689, -0.00304052746, -0.0114530232, -0.00137464772, 0.0151947243, -0.000735203037, 0.00540362392, -0.0077493093, 0.00589745212, -0.0281102397, -0.00595759787, 0.00177588337, 0.0201076847, 0.00157724402, 0.00228712242, -0.0282621868, -0.00770499138, -0.00062519958, -0.00601774361, 0.00536563667, -0.00372270728, -0.00338715711, -0.0195378829, 0.00176638667, 0.00736944098, -0.00638494967, 0.0166002363, -0.0185502246, 0.0219943635, -0.00908517838, 0.00267173885, 0.00572334602, -0.0167395212, 0.0111807846, 0.020994043, -0.0190820415, -0.00453942362, 0.0226021521, 0.00862300582, 0.0191833396, -0.0178284757, -0.0111997779, -0.00334600476, 0.0122824023, -0.00625516148, 0.000747865299, 0.0177525021, 0.0075847, 0.00250712945, -0.0010074419, -0.0195505451, -0.0364673361, 0.00172681711, -0.00346313091, 0.00316398474, -0.000789413403, 0.0112440959, 0.0184109397, -0.0143083651, 0.0112061091, 0.00501742447, 0.0304147732, -0.0121114608, -0.00423236378, -0.0171320513, -0.0101614716, 0.000580881606, 0.00550175644, 0.00591961108, 0.0134979794, -0.0367459059, 0.0227667615, -0.0299336053, -0.00295822276, -0.00143083651, 0.00389681361, -0.015612579, 0.0163469911, -0.0273251794, 0.0247420762, 0.00877495296, 0.00761635555, 0.0168788061, 0.0104527036, 0.0342387781, 0.0147262197, 0.0125546409, -0.008679986, 0.0114656854, -0.00314657413, 0.0130168134, -0.00174897606, -0.0160810836, -0.00726181176, -0.00990189519, 0.0152706979, 0.00767333573, 0.00303419633, -0.00990822632, -0.0265654419, 0.00819248892, 0.0063722874, 0.003103839, 0.00171890319, 0.0470276698, 0.00512188813, -0.00154479698, -0.00236942736, -0.0136499275, 0.012364707, -0.0127698993, -0.019107366, 0.0206268374, -0.00295822276, -0.00717950705, -0.0101488093, -0.00483065611, 0.00847739, -0.00650840672, 0.00173473102, 0.00775564043, -0.00218582433, -0.0140677821, -0.0206015129]
|
12 Oct, 2021
|
Templates in C++ vs Generics in Java
12 Oct, 2021
While building large-scale projects, we need the code to be compatible with any kind of data which is provided to it. That is the place where your written code stands above that of others. Here what we meant is to make the code you write be generic to any kind of data provided to the program regardless of its data type. This is where Generics in Java and the similar in C++ named Template come in handy. While both have similar functionalities, but they differ in a few places.
Template in C++
Writing Generic programs in C++ is called Templates.
One of the major features of the template in C++ is the usage of metaprogramming. It Let the template signature of the provided code be different, were C++ provides the ability to implement them.
Template arguments can be both classes and in functions.
C++ requires template sources to be added in their headers.
Template specialization could be achieved i.e, Specific type and method of template can be implemented.
// CPP program to illustrate Templates
#include <iostream>
#include <string.h>
using namespace std;
template <class T>
class TempClass {
T value;
public:
TempClass(T item)
{
value = item;
}
T getValue()
{
return value;
}
};
int main()
{
class TempClass<string>* String =
new TempClass<string>("Generics vs Templates");
cout << "Output Values: " << String->getValue()
<< "\n";
class TempClass<int>* integer = new TempClass<int>(9);
cout << "Output Values: " << integer->getValue();
}
Output:
Output Values: Generics vs Templates
Output Values: 9
Generics in Java
One of the major features of Java Generics is that It handles type checking during instantiation and generates byte-code equivalent to non-generic code.
The compiler of Java checks type before instantiation, that in turn makes the implementation of Generic type-safe. Meanwhile, in C++, templates know nothing about types.
If Generics is applied in a class, then it gets Applied to classes and methods within classes.
Another major factor that leads to the use of generics in Java is because it allows you to eliminate downcasts.
Instantiating a generic class has no runtime overhead over using an equivalent class that uses as specific object rather than a generic type of T.
// Java program to illustrate
// Generics
public class GenericClass<T> {
private T value;
public GenericClass(T value)
{
this.value = value;
}
public void showType()
{
System.out.println("Type:" +
value.getClass().getSimpleName());
System.out.println("Value: " + value);
}
public static void main(String[] args)
{
GenericClass<String> Str =
new GenericClass<String>("Generics vs Templates");
GenericClass<Integer> integer =
new GenericClass<Integer>(9);
Str.showType();
integer.showType();
}
}
Output:
Type:String
Value: Generics vs Templates
Type:Integer
Value: 9
C++ Templates vs Generics in Java
Though both of the methods to create a generic type is similar, but they vary at some places, while the implementation property that they possess is the same.
Type erasure : Type erasure ensures tighter type check during compile time. Java generics simply offer compile-time safety and eliminate the need for casts. This is directly implemented in the Java compiler front-end and make sure type erasure is done.
In C++ when you use a template the compiler will emit the template code again after replacing the generic parameter in it with the type you used. This is more powerful in several ways but can lead to bloated executables.
Wrapper class: In Java, Even if we have to specifically specify the datatype within which the function call using any object, we don’t need to cast it similar to that of C++ with actual data types, rather we use wrapper classes to do the required.
Type Checking : Java Generics handles type checking during instantiation and generates byte-code equivalent to non-generic code C++ has “latent typing” and template metaprogramming and generates a new class for each instantiation
Java encourages software reuse and adds some basic support for generic programming. For Java, it is a serious step forward in the area of commercial software development.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java
|
https://www.geeksforgeeks.org/templates-in-c-vs-generics-in-java/?ref=next_article
|
Pandas
|
Templates in C++ vs Generics in Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0423424579, -0.0182639956, -0.0109666027, 0.0512986146, 0.0426941402, 0.00921405666, -0.019002527, -0.006265793, -0.0278297346, -0.0114824027, -0.0109548802, 0.000170528918, 0.0182757173, -0.0222966112, -0.0161773507, 0.0264933445, -0.00364283472, -0.000951005553, 0.0192252584, 0.0231758151, -0.0119688958, -0.0405137166, -0.00251305779, -0.0327063836, 0.0270794798, 0.0287206601, -0.0070160469, 0.00393004157, -0.0293536875, 0.0114706801, 0.0159546193, -0.000672957336, 0.000523126335, -0.0385442972, -0.00963021349, -0.00992328115, 0.0137976399, 0.026634017, -0.00405899109, -0.0267746896, 0.0388022, 0.0117109958, 0.0207726564, 0.0046744342, -0.0270794798, 0.0405137166, 0.0162945781, -0.0136686899, 0.0266809072, -0.0118399458, -0.00135397399, 0.0355198383, 0.0562221594, 0.0296819229, 0.00456013763, 0.024031572, 0.0187797956, -0.00335269747, 0.00992328115, -0.0260947719, -0.0357542932, 0.028697215, -0.020807825, -0.0313934386, -0.012426082, -0.00599910133, -0.0287206601, -0.00393297197, 0.0437960774, -0.0435147323, -0.0275952797, 0.0183226094, -0.0181936584, 0.006553, -0.00380988349, -0.011060385, 0.0265636798, 0.00106237142, 0.00018252639, 0.0487665087, -0.0102222105, 0.0348868109, 0.00439308863, 0.00056195783, 0.00866308901, -0.0382629521, -0.00274751219, -0.026634017, -0.0133404536, -0.00205587177, -0.0130004948, 0.0254383, 0.0116699664, -0.0129653271, -0.0267277975, 0.0360121913, -0.0190845858, -0.0163180251, -0.0349102542, 0.0573006496, 0.0234102681, -0.0220269877, 0.00447807834, -0.0297991503, 0.000641086197, -0.00400623912, 0.0339958854, 0.0249459445, 0.0144541115, 0.025578972, -0.00947781745, -0.0221559387, -0.0256258622, 0.0078776665, -0.0167517643, 0.00209250534, -0.00552433124, -0.0916247666, 0.02764217, -0.00117007387, -0.0561752655, 0.0316747837, 0.0133521762, 0.0215229113, -0.0477818, 0.0239846818, 0.00601375476, 0.010726287, 0.0198113937, 0.0211126152, -0.00820004195, 0.00160015107, 0.00373661658, -0.0225310642, 0.0229530837, -0.00992328115, 0.039810352, 0.0289785601, -0.0429754853, -0.0267277975, 0.00314168865, -0.0133052859, -0.0105035556, -0.0154739888, -0.0164000839, -0.0158842839, 0.0126253674, 0.0592700653, 0.00866895076, 0.00426706951, -0.0194597133, -0.0292599052, 0.0268215798, -0.0144775575, 0.0521426536, 0.0114765419, -0.0031328965, 0.0260947719, -0.0177013054, 0.00382746756, 0.0171151683, -0.0176075231, 0.0177481957, 0.012402636, -0.0309948679, -0.00712155132, 0.044968348, 0.0441712029, -0.0925625861, 0.0267277975, -0.0166697055, 0.0199872348, 0.0187563505, 0.029470915, -0.0387553088, -0.00337321218, -0.0166579839, 0.0226248465, 0.0230703093, 0.0281814151, -0.0023929, -0.0196238309, 0.0282517523, 0.0376768187, 0.0279235151, 0.0251335092, 0.0587073751, -0.0145244487, 0.0122502409, -0.0101401517, -0.0292599052, 0.0324250385, 0.0173144545, 0.0107907625, 0.000618007092, -0.0113651752, -0.0384270698, -0.0281110797, -0.0320733562, 0.0675228611, -0.00750254, -0.0274077151, -0.00730911503, -0.0020060502, 0.0017320317, -0.00526350038, -0.00105870806, -0.0108259302, 0.0352384932, -0.00371024036, -0.0195652172, 0.0174668506, -0.0162125193, -0.0302446131, 0.0167869329, -0.0320968032, -0.0151574751, 0.0021555149, -0.0415453129, 0.00147559715, 0.0094660949, -0.00138621149, 0.0458358303, -0.0289316699, -0.00737359, -0.0291192327, 0.0151574751, 0.00263175019, -0.00361352786, 0.024547372, 0.0533149242, 0.0452965833, -0.0113944821, -0.0114413733, 0.00342010311, -0.007426342, 0.00808281451, -0.0217221975, -0.0248521641, 0.0350509286, 0.0317685679, 0.00436671264, -0.0626931, -0.0279469602, -0.0112127801, 0.0156498291, 0.00369558693, 0.0283924248, -0.00771941, -0.0316278934, -0.00596686359, 0.00682262238, 0.0133170085, -0.00638302043, -0.0158256702, -0.00702190818, 0.0109607419, -0.00433447538, -0.00447221706, -0.0132818399, -0.0067991768, 0.0391304344, -0.0263292249, 0.0148644075, -0.0109724645, 0.0218745936, 0.0130708311, 0.00454841461, -0.0158960056, 0.0294943601, 0.016423529, -0.0228241328, -0.00633612927, -0.0191432, 0.0148292389, 0.0146885663, 0.00827037822, -0.0021232774, 0.0696329474, 0.0191549212, 0.0293771327, 0.000608848699, 0.0207609348, 0.0037454085, 0.0234102681, -0.053268034, -0.021323625, -0.000545472722, -0.0167517643, -0.00110266823, 0.00285448204, -0.0215580799, -0.0260244347, 0.0133404536, 0.0425769128, -0.0229179151, -0.0282986425, -0.0348164737, -0.011371037, -0.00477407733, -0.00345527125, -0.0502201244, 0.0360825285, -0.0243363641, 0.0165055878, 0.00857516844, 0.00832899194, -0.0294240229, 0.00468029547, -0.00743220374, -0.00189321907, -0.00350216217, 0.000442532619, 0.0678042, -0.00526057, 0.0178185329, 0.0207374897, 0.0373016894, -0.0132583948, -0.0195534937, -1.02344829e-05, 0.0390835442, -0.00698087877, 0.00618959544, 0.0492354184, -0.0115175713, -0.00852827728, -0.0115586007, -0.0266809072, -0.0469612107, -0.0175489094, -0.0184398368, -0.0471722186, -0.0132349487, 0.033339411, -0.0136217987, -0.0167986564, -0.0152981477, -0.00849897135, -0.0222497191, -0.00957746059, 0.0492823087, -0.00647680182, 0.0198465623, 0.017068278, -0.0414046422, 0.00250280043, -0.00135470671, -0.00282224454, 0.0152981477, 0.000787620142, 0.0106266439, 0.0113417301, -0.0252038445, 0.00424362393, -0.00684020622, 0.0224372838, -0.0205616485, -0.00128510303, -0.000822055619, 0.0211126152, 0.0237853955, 0.00506714499, 0.0166697055, -0.0101870419, -0.00831726845, -0.0389428698, 0.00920819584, 0.00616615, 0.00152688404, -0.025063172, -0.00411760481, 0.0336676463, 0.00572068663, 0.000599324, 0.0402558148, 0.000270355202, 0.015907729, -0.0053396984, 0.0274311621, -0.0223083328, 0.0208664387, 0.00738531258, 0.00496750185, -0.0133404536, -0.0241722465, -0.0042465548, -0.032049913, -0.00237824651, 0.0365748815, 0.0127543174, 0.0459530577, 0.0255555268, 0.0175371878, -0.0443822108, 0.0226131249, -0.00261123548, -0.0353322737, 0.0113065625, -0.0290488973, 0.020163076, 0.00589066604, -0.0277125072, 0.00985880662, -0.00589652732, -0.00239876122, -0.0101225674, 0.0189556349, 0.0187563505, 0.0114003439, -0.000732669898, -0.022999974, -0.0222379975, 0.0148057938, 0.00513162, -0.0133404536, 0.0229061916, 0.0565503947, 0.00570310233, -0.0369969, 0.0102691017, -0.0130004948, -0.0058349832, 0.00341717247, 0.0159663428, 0.0430223756, 0.017197229, 0.0427410305, 0.0219800975, -0.0218628701, 0.0216635838, 0.0419204421, -0.00952470861, 0.00215991098, 0.0295646954, -0.0366217718, 0.012789486, -4.37312337e-05, -0.0360356383, 0.00373368594, 0.00863378216, 0.0550498851, 0.0454372577, -0.0189790819, -0.05739443, -0.0070805219, -0.0146533977, -0.0111248596, -0.021171229, 0.0002443454, -0.0161070153, -0.00581739889, -0.0139617575, 0.000538878725, 0.0558939204, 0.0116230752, 0.0134225124, -0.0152278114, 0.0319092385, -0.0387787521, 0.0129770497, 0.0164469741, 0.00796558708, -0.0157318879, 0.00101401517, 0.0331987403, 0.0130708311, 0.0239495132, -0.00664092, 0.00135250867, -0.0470549911, -0.00463047391, 0.0042465548, -0.012660536, -0.015239534, 0.011165889, 0.0293536875, 0.0142313801, -0.014207935, -0.0322140306, 0.0128715448, 0.0286034327, -0.0102339331, -0.017841978, 0.00468029547, -0.0104976948, 0.0478286929, 0.0445697755, -0.0166110918, 0.00131221185, -0.0122854086, 0.00292774895, 0.0160249565, -0.0522833243, 0.0126136448, 0.0206085388, -0.0281345248, -0.0260244347, 0.00978847, 0.0400682501, 0.00746151, -0.0108435145, 0.0192252584, 0.0604423359, 0.00667022681, -0.0256024171, -0.0112127801, 0.0295412503, -0.0394586697, -0.0388490893, -0.0251804, 0.00682262238, -0.0261885524, 0.0296115875, -0.00866308901, 0.00454255333, -0.0145244487, -0.0107731782, -0.022097325, -0.0197410583, 0.00975916348, -0.00460409792, -0.0115644615, 0.0102339331, 0.00176133844, 0.00982363801, 0.0437726304, -0.0176309682, 0.026376117, -0.0493760891, -0.0388725363, 0.00136276602, 0.00588187389, 0.0152278114, -0.0155091565, -0.0392007716, 0.0357308462, 0.0138796987, -0.0269153621, 0.00375713129, -0.00193278317, 0.00426120823, 0.00936645176, 0.00362232, 0.0051081744, 0.0297757052, -0.0120744, -0.0344179, 0.00335269747, 0.0107380105, 0.0130825536, 0.0502670184, 0.0162594113, 0.00262149284, -0.0356370658, -0.00514041213, -0.0398572423, -0.00718016503, -0.00503197685, -0.0216518603, 0.0189204682, 0.00927853212, 0.0382395089, -0.000321092579, 0.00268010655, -0.0230351426, 0.0376064815, 0.0113768987, 0.0027680269, 0.0106969811, -0.00204414898, 0.0225427877, 0.00202070363, 0.0228475779, -0.0384505168, 0.00781319197, 0.00154739886, 0.00278854161, -0.00675228564, 0.00715085818, -0.0311824307, -0.0203271937, 0.0198348388, 0.00727394689, 0.00587015133, -0.00343768718, 0.00299222395, -0.00576757733, -0.0349571481, 0.0256727543, -0.0110838301, 0.0149347438, 0.024805272, 0.0098177772, -0.025321072, 0.0140438164, 0.00555070722, -0.0148057938, -0.0144072212, -0.0111600282, 0.0292599052, -0.0155677702, 0.0629275516, -0.0167283192, -0.0332456306, -0.0044604945, -0.00907924585, -0.0301508326, 0.00929025467, 0.0224138387, -0.0738531277, -0.0308541954, 0.00129829103, -0.000563423149, 0.0275014974, 0.00025826614, 0.0295412503, 0.0293536875, -0.039810352, 0.0062189023, 0.00438429695, -0.0448042303, -0.0223669466, 0.00942506548, 0.00805350766, 0.0157318879, -0.00131001382, -0.0131411674, 0.00868653413, -0.000629729766, -0.0231992602, -0.0483913831, -0.0231875367, 0.00940748118, 0.00516678812, -0.012531586, -0.00867481157, 0.0319561325, -0.00614856603, 0.00886237528, 0.00345527125, 0.00640646555, 0.00599617045, 0.0699611828, -0.00725050131, 0.0308776405, -0.0159428976, 0.0666319355, 0.00696915621, 0.00492940331, 0.0241722465, 0.00919647235, -0.000934154144, 0.00989983603, -0.00373954722, -0.0342303365, 0.00350216217, 0.00345527125, 0.00970055, 0.00223464333, -0.0048063146, 0.0152747026, 0.01487613, -0.0184750035, -0.0147002889, -0.000147999323, -0.00497922488, 0.00465685, 0.00077296677, 0.018850131, -0.00133932056, -0.0263995621, -0.0048063146, -0.0105797537, 0.00723291747, -0.0294943601, 0.00291602616, 0.0116582438, -0.00771941, -0.00230058352, 0.0117461644, -0.0117403027, 0.0251100622, -0.00391538814, 0.0151926428, -0.00376592344, -0.0188853, 0.00834657531, -0.0191314761, 0.00725636259, -0.0189673584, -0.0328001678, 0.00825279392, -0.000595660647, 0.00345527125, -0.00105284667, -0.0131411674, -0.0276187249, -0.0340896659, 0.00214818818, 0.0438664109, -0.0256727543, -0.0367858894, 0.0260009896, -0.0170800015, 0.0209016073, 0.013586631, 0.0151926428, -0.00134957791, -0.00282957125, 0.00723291747, 0.0176661368, -0.0484382734, 0.0245942641, 0.00309479772, -0.00846966449, 0.0121916272, 0.0192838721, -0.036668662, 0.0136569673, -0.0161539055, -0.00980605371, 0.0225545112, 0.0098177772, 0.0119806184, 0.0229765289, -0.0158608388, 0.0179709271, 0.0128481, -0.0139383124, -0.0205147583, -0.00850483216, -0.00125140022, -0.00123674679, 0.0084755253, -0.0218863152, 0.0406543873, -0.00536607439, -0.0234806053, -0.0280407425, 0.0327063836, -0.00504369941, -0.0349102542, 0.0125902, -0.00505249156, -0.00601961603, 0.0202451348, -0.00932542235, -0.00769010326, 0.0194362681, 0.0303852856, -0.00429051509, 0.0163649153, -0.0215346348, -0.00647680182, -0.0303618405, -0.00771354884, 0.0412405245, 0.0117930546, 0.0283455327, 0.00689295866, -0.0202685799, -0.00145434972, 0.0370672345, -0.0301977228, -0.00488251215, -0.00494405674, 0.0204444211, 0.0142548261, 0.0120392321, 0.0308073051, 0.0273608249, 0.0309245307, -0.00841105077, 0.0155794928, 0.000562690489, 0.0119278664, 0.0119454497, 0.0199286211, -0.0023929, -0.022226274, 0.00870998, 0.00313875778, -0.00234893966, 0.0117168576, -0.0200341251, 0.0340427756, 0.00729153072, 0.0260009896, 0.00729739247, 0.0136217987, 0.0120978458, 0.0185336173, 0.013176336, 0.0277828425, -0.0191432, 0.0165759232, -0.0119044203, -0.0386615247, -0.0287441052, 0.0161539055, -0.01474718, 0.00956573803, 0.00463926606, 0.0121681821, -0.00419966411, -0.0387084149, 0.033362858, -0.0118282232, 0.0170331094, 0.0096360743, 0.0416859873, -0.0026507997, 0.0273608249, -0.00715085818, 0.0383332893, -0.0112362253, 0.0286034327, 0.0241722465, 0.0132466722, -0.018850131, -0.0335269757, 0.0283220876, 0.00149318122, -0.0171151683, 0.0171151683, 0.0149347438, 0.0231758151, 0.0572537556, 0.015755333, -0.0103863282, -0.0490009636, 0.00135617203, -0.00138547877, -0.0136335213, 0.00565914251, 0.0232930426, 0.0335035287, 0.032542266, -0.0130591085, -0.0362232, 0.0052576391, -0.0286503248, -0.00555949938, 0.000646214874, 0.0332690738, -0.0286268778, 0.0259306543, 0.0250162818, -0.00699846307, 0.0145830614, 0.0034318259, -0.0143134389, 0.0598327555, 0.0118516684, 0.0105504468, -0.0269622523, -0.0341834463, -0.00736772874, -0.0242660269, 0.02001068, 0.0270325895, -0.00906166155, -0.00188735768, 0.0179474819, 0.0176544134, 0.00290283817, -0.0113593144, 0.0173379015, -0.00383625971, -0.0286503248, 0.0198465623, -0.0294005778, 0.00923164096, 0.000325122266, 0.00329701463, 0.0245942641, -0.0204561446, -0.0098001929, 0.00601375476, 0.00753184687, -0.0269622523, -0.0329408385, -0.0110896919, 0.00784836, 0.00291456096, -0.0171503369, -0.0278766248, -0.0282751974, -0.0158842839, 0.0130825536, 0.0221559387, -0.00999361742, -0.0333863, 0.0241253544, -0.0270560347, 0.0113475919, -0.0181116, 0.0128246536, -0.0127425948, -0.00553019252, 0.00374833914, -0.016423529, 0.0341600031, 0.0336910933, 0.0129653271, -0.0029511943, 0.011242087, 0.00647094054, -0.00760218315, 0.0163180251, -0.0212298427, 0.00524591655, -0.0214056838, 0.00852827728, 0.0359184109, 0.0240784641, -0.0092023341, 0.00635957485, -0.00353146903, -0.0103452988, 0.0199755132, 0.0185687859, 0.0143134389, -0.00394176412, -0.00639474299, -0.00648266356, -0.0195417721, -0.00512282783, -0.00745564885, 0.00499680871, 0.00387435849, 0.0130004948, -0.00603133859, 0.0108435145, -0.0124378046, -0.0328705, -0.00537486654, -0.0606767908, -0.00938403606, -0.0132232262, 0.0175254643, 0.0317451209, -0.0230468642, -0.0392476618, -0.0106852576, -0.00380402221, 0.019905176, 0.00504663028, 0.00342889526, -0.0206671525, 0.0294943601, 0.025321072, -0.0348868109, 0.0208898839, -0.00627165427, -0.023386823, 0.00290576881, -0.0139383124, 0.0192018133, 0.0173027329, -0.00974744, 0.0115879076, -0.00936059095, 0.0235157739, 0.00507886801, 0.0159897879, -0.0114589576, -0.0270794798, -0.0245942641, 0.00418794109, 0.000684313709, 0.0267746896, 0.0157905016, -0.0111365821, 0.000412493158, 0.00409122882, -0.0245708171, -0.00685779052, 0.00644163368, 0.0316747837, 0.00511989743, -0.0444291048, 0.0242660269, 0.0210422799, -0.0275718346, 0.0303618405, -0.00897374097, -0.0102808243, 0.0398338, -0.00668781111, 0.00546278665, 0.00711569, 0.000267424504, 0.00193571392, 0.0223552249, -0.00959504489, -0.00791283511, -0.0258603171, -0.0190845858, 0.000332815311, -0.00150636933, -0.0392242149, 0.0358011834, 0.0369265638, -0.00157963636, 0.0304087326, 0.033855211, -0.0327298306, 0.0279704072, -0.0132701173, -0.026634017, -0.0216284152, 0.0125081409, 0.0108142076, 0.0414280854, -0.0197879486, -0.0117051341, 0.024312919, -0.00373661658, -0.00652369298, -0.0232109819, -0.0105856145, 0.0308307502, 0.0252741817, 0.0160601251, 0.00190640707, -4.05715946e-05, -0.0292599052, -0.0176778603, 0.0275952797, -0.0135162948, 0.0450152382, 0.020420976, 0.0130239399, 0.0025863247, 0.00281491783, -0.0410295166, -0.0145361712, -0.00405019941, -0.0266809072, 0.0132115036, -0.0113417301, -0.00256141392, 0.00146900315, -0.018357778, -0.00614270428, 0.0210540015, 0.00307135214, 0.00740289688, -0.00930783805, -0.0062833773, -0.000243429575, 0.0328939483, -0.00535435183, -0.0205264799, -0.034371011, 0.00419380236, 0.0033351134, -0.0013158751, -0.0123557458, -0.0239260681, 0.0288613327, -0.0161890741, 0.00193278317, 0.0239612367, 0.000156608192, -0.0155560477, -0.00119132129, 0.00301273866, 0.0095716, -0.0228241328, -0.0245004818, -0.0138562536, -0.0114355115, -0.0304556228, 0.0136686899, 0.000890193915, -0.0145596163, -0.0198582858, -0.0134576811, -0.0246177092, 0.0103511605, 0.00881548412, -0.0191432, 0.00954229292, -0.0274546072, -0.00658816798, -0.0178654231, -0.0292833503, -0.0141962124, 0.0231758151, 0.0213939622, 0.0222497191, -0.00329994527, 0.0019474366, 0.0124143586, 0.0579571202, -0.0247114915, -0.0136804124, -0.00695157191, -0.0247583818, -0.00216723769, -0.0127777634, 0.0130356634, 0.000117044015, 0.010210488, -0.00352560752, 0.00051579962, 0.00928439293, 0.00620717928, 0.0110134939, -0.00468615675, 0.0211829524, -0.0177833643, 0.0198817309, -0.0355198383, -0.0124612497, 0.0341365561, 0.000682115671, 0.00532504497, 0.00738531258, -0.0239964053, -0.00219507911, -0.0100756763, -0.00326477713, 0.0125198634, 0.0179709271, -0.00929611549, 0.0269153621, -0.0191783682, 0.0135045713, -0.00163092325, 0.0328236111, -0.00441946508, -0.0218628701, -0.0321671404, -0.024031572, 0.0186977368, -0.00249254308, 0.00736772874, 0.0214642975, -0.0319561325, -0.0084755253, 0.0117051341, -0.00325598498, 0.0141962124, 0.0196824446, -0.0346289091, 0.0290488973, 0.0262823347, -0.0292833503, 0.0100991223, -0.00593169546, -0.00858103, 0.0101518743, -0.000844768423, -0.0125667546, 0.0139148673, 0.0267512444, 0.0216049701, -0.00438429695, 0.0119806184, 0.00163385388, 0.0148995752, -0.00547450967, 0.00625407044, 0.0202920251, 0.00896201842, -0.000704095757, -0.000340142, 0.00777802384, 0.0472660027, -0.00511110527, 0.0231640916, 0.00782491453, -0.0219449289, -0.00589945819, 0.0196003858, 0.0092199184, -0.006553, -0.0118399458, 0.00910269096, 0.0133404536, -0.00687537435, 0.000222182149, 0.00514041213, -0.0080066165, -0.0133521762, 0.0080242008, 0.000312117394, 0.00530746067, -0.00267277984, -0.00330287591, 0.024312919, -0.0116347978, 0.00753184687, -0.013586631, 0.0271967072, 0.00350216217, -0.00252917642, -0.00884479098, -0.032542266, 0.0054891631, 5.98041806e-05, -0.00313875778, 0.0247114915, 0.0245942641, -0.0110134939, -0.0158608388, 0.00490302686, 0.0251804, -0.0171151683, 0.0156381056, -0.00644163368, 0.00277535361, -0.0380988345, -0.0259775445, 0.0137273036, 0.0145947849, -0.00142504298, -0.0233399328, -0.00044070094, 0.000111274239, 0.0347930267, -0.0187797956, -0.0119102821, -0.012918436, -0.0301273875, -0.00455427635, -0.00658816798, -0.0210422799, -0.00812970567, 0.0227186289, -0.0220856015, -0.00192252581, -0.000635591161, -0.00732083758, 0.00839346647, -0.0216401387, 0.010726287, -0.0189556349, -0.000863085152, -0.0125081409, 0.000598957646, 0.00405019941, -0.0434209481, -0.0407716148, 0.00129829103, -0.032847058, -0.00552433124, 0.0163883604, -0.0120275095, 0.0266809072, 0.00190347643, 0.00749081699, -0.00658230623, -0.0237736739, -0.0157905016, 0.00197674334, -0.00835829787, 0.00805350766, -0.00138840952, -0.00176426908, -0.00855172332, -0.00650610868, 0.000741828291, 0.0394821167, -0.0180764329, 0.00995258801, 0.00339372712, 0.00272113597, -0.0205733702, 0.00440481165, -0.0198348388, 0.00904993899, 0.011060385, -0.00427586166, 0.00803006254, 0.00929025467, 0.00797731, -0.0127660409, 0.00501439301, -0.0225427877, -0.00015193742, 0.0144892801, -0.00791283511, 0.026118217, 0.0193073172, 0.00587894348, -0.0282986425, 0.00775457826, 0.0123557458, 0.02712637, -0.0180178192, 0.00616615, -0.0208195485, -0.00746737188, -0.00489423517, -0.00758459885, 0.0135749085, 0.0129887722, -0.0184984505, -0.0364107639, -0.0113007007, 0.026634017, 0.0110369399, -0.00161626982, -0.00576757733, 0.00541882683, -0.0186860133, -0.0168689918, 0.013176336, 0.0101108449, 0.00428172294, 0.0150285251, -0.0035490531, -0.00522247097, 0.00856344588, 0.00426413864, -0.00676987, 0.024055019, -0.0155677702, 0.0197293349, -0.00625993172, 0.00795972627, -0.00527229253, -0.0394821167, 0.0173144545, 0.0438195206, -0.0110896919, 0.00617787289, 0.00869239587, 0.0229530837, -0.0410529599, -0.0101694586, 0.0300570503, 0.00186244689, 0.00430223765, -0.00668194937, -0.00866895076, 0.0324015953, -7.57397502e-05, 0.0104625262, -0.00127997436, -0.00132539985, 0.00633612927, -0.00390366535, -0.0117227184, -0.0190728623, -0.00470081, 0.0375127, -0.000705561135, 0.0273139346, -0.0154153751, 0.00101841113, -0.0129653271, 0.0322609209, 0.0124729723, -0.022097325, 0.00866895076, 0.00502611557, -0.00712155132, -0.0210891701, -0.00735600572, -0.0254148543, 0.0191314761, -0.00102720316, 0.0358949639, 0.00231084088, -0.00614856603, 0.0229530837, -0.0123323, 0.0145947849, 0.0193776544, 0.010802485, 0.00213939603, -0.0197058897, 0.0295178052, -0.0122971321, 0.0121330135, 2.86199174e-05, 0.00587894348, 0.00958332233, -0.0065178317, 0.0248990543, -0.0131646125, 0.0317216776, 0.0143954987, 0.0027548389, -0.00221852446, 0.00495284842, 0.0197176132, -0.000952470873, -0.011886837, 0.0115761841, 0.0319326855, 0.00921405666, -0.0130122174, 0.0106793968, 0.00716844248, -0.0260009896, 0.00944265, 0.00998189487, 0.023902623, 0.0180529859, 0.00235919701, -0.00869239587, -0.0177364722, 0.000195439701, 0.00532504497, 0.00695157191, -0.025578972, 0.0132349487, -0.0163063016, 0.00961262919, -0.0143017164, 0.0233399328, -0.00753184687, 0.0140438164, 0.000254419632, -0.00225955411, 0.00664092, -0.019389376, 0.0010616387, -0.00551260822, 0.0258837622, -0.0115468781, -0.00743220374, -0.00589359691, -0.0365748815, 0.02686847, 0.00030405802, 0.000840372406, 0.0102456557, 0.0203271937, -0.0204326976, -0.0409122892, 0.00123381615, -0.00112831162, -0.00124700414, 0.0245004818, -0.0137976399, -0.00651197, 0.0068636518, -0.0111248596, 0.0117051341, 0.000735234236, -0.00464805774, -0.00627751555, -0.0214994662, 0.00681089936, 0.0137390262, -0.00876859389, -0.000906312664, 0.00404726854, 0.00559173664, 0.0130122174, 0.0152160889, 0.0276187249, -0.00485613616, 0.000571116165, -0.0112245027, -0.00169539812, -0.00140892423, 0.040818505, 0.0145947849, -0.0172441192, -0.0151809203, -0.0186156761, 0.0136217987, 0.0186625682, 0.0293302424, 0.0104742488, 0.0292833503, -0.0288613327, -0.0417328775, 0.000301676831, 0.0222731642, -0.00777802384, -0.0156029379, 0.0108845439, 0.0080242008, -0.0139734801, 0.0114589576, -0.0379581638, -0.0133287311, 0.0290254503, 0.000383919018, 0.0184750035, 0.0169627741, -0.0297522601, -0.0190142486, -0.0168455467, -0.0102866851, -0.0235040504, -0.0124846948, 0.0383332893, 0.00262735435, 0.0132115036, 0.00296145165, 0.00804764591, 0.00474770088, -0.00783077627, -0.0235861093, -0.00898546353, -0.00708638318, -0.0097826086, -0.00528108468, 0.00632440671, -0.0095716, 0.00584963663, 0.010931435, 0.0123674683, 0.0222731642, -0.00747323316, -0.0156967193, -0.0565035045, 0.0043784352, -0.0322843678, -0.00218482176, -0.0110076331, -0.0247114915, -0.0196355544, 0.00127338024, -0.00208224799, -0.00110852951, -0.00529573811, -0.00325891585, -0.000986173749, 0.0248521641, -0.00603133859, 0.00352267688, 0.0145947849, 0.00966538116, 0.00223464333, 0.00317978743, -0.00280466047, -0.0112186419, 0.00873928703, 0.00206612912, 0.00782491453, -0.0032178862, 0.0120861232, 0.00518437242, -0.0122971321, 0.0104039125, 0.0161070153, -0.00899718609, -0.000855758437, 0.000400770426, -0.000822788279, -0.0170448329, -0.00508472929, 0.00589945819, 0.00994086545, -0.0308073051, -0.0175254643, -0.0277593974, 0.0143251624, 0.0152747026, 0.0249459445, 0.0131411674, 0.0104625262, -0.000897520629, -0.0156849977, 0.0045279, -0.00399451656, -0.0160601251, 0.00118692522, 0.00360766659, 0.0291426778, 0.00033446381, 0.0227889642, 0.00217602961, 0.00112831162, -0.0116523821, -0.00137082534, 0.0269388072, -0.00312996586, 0.0151457526, -0.0035812906, 0.059410736, -0.00154300279, -0.00152688404, 0.00787180569, 0.0083407145, -0.00473890873, -0.0111541664, -0.0105328625, -0.0198113937, 0.0129770497, 0.00095613423, -0.00102134189, 0.00690468121, 0.0122971321, 0.0037454085, -0.00116714311, -0.00834657531, -0.0200224034, 0.0218042564, 0.00410002097, 0.00363990408, -0.00157377496, -0.00388608128, -0.00956573803, -0.0133990673, 0.00676987, -0.0158725604, -0.0190963093, 0.0158373918, 0.016271133, 0.012531586, 0.00128143968, 0.00955987722, -0.0177247506, 0.0292833503, 0.0285799876, -0.0148175163, 0.000720580865, -0.0184632819, 0.0261651073, 0.00415863423, 0.0217456426, 0.0012176974, 0.00754356943, 0.0176426917, 0.00618959544, -0.0091671655, -0.00341717247, 0.010081538, -0.0283220876, -0.0125081409, 0.00431982195, 0.00359887467, 0.00204268377, -0.0176075231, 0.000721679884, 0.0104390811, -0.0236681681, 0.0143954987, -0.0176661368, 0.0264230072, 0.00577930035, 0.0216987524, -0.0212650113, 0.0080593694, 0.00373954722, 0.00523712439, -0.0234571602, 0.000488690799, -0.000981045, 0.00533090625, -0.00158696307, -0.00142577558, -0.00348750874, 0.0122619634, 0.0111951958, -0.0039476254, -0.00620717928, -0.0201279074, 0.00754943071, -0.0119278664, -0.0086044753, 0.011189335, 0.00101548049, -0.00323840091, -0.00218335632, 0.00991155859, 0.00161920046, 0.00192252581, 0.00528108468, 0.00975916348, -0.00900304783, -0.0203037485, 0.0260244347, 0.00245004823, -0.00995845, -0.00748495571, 0.0214877427, -0.0257665347, 0.0127660409, 0.0119278664, 0.0246646, 0.0139969261, 0.00202656491, 0.0184750035, -0.00794214197, -0.00264347298, 0.00882720668, -0.0166697055, -0.0293302424, 0.00972399488, 0.000844768423, 0.0118047772, 0.0318389051, -0.00341424183, -0.0260244347, -0.0197176132, 5.11037251e-05, 0.00623062486, -0.000678086, -0.0346523561, 0.00184046675, -0.0165642016, -0.0052576391, -0.00900891, 0.0103980517, -0.00667022681, 0.00196795142, -0.0200810172, -0.0204092525, 0.0119864801, -0.00360473595, -0.00798903313, 0.020420976, 0.00261709699, -0.00761976698, -0.000276582898, 0.000808134908, -0.00776043953, 0.00557708321, 0.0058379136, 0.0298929326, -0.0205147583, -0.0225779563, 0.0246646, -0.00537193567, 0.00677573122, -0.0303852856, -0.00592583418, -0.0275718346, -0.0151223065, -0.00764321256, 0.00810039882, -0.00500853127, -0.00187270425, 0.00326477713, 0.0179005917, 0.0043960195, -0.0182522722, -0.00859861448, -0.0149230203, -0.018334331, 0.00125579617, 0.0305728503, -0.00817073509, 0.0184750035, 0.000856491097, 0.0118692527, -0.00632440671, -0.0109959096, -0.032049913, -0.00274165068, 0.0141610438, 0.00881548412, 0.0142548261, 0.00550967781, 0.0161773507, -0.00926094782, -0.00541589595, 0.00289258081, -0.00779560767, -0.0036809335, 0.00214818818, -0.00497922488, 0.0116406595, 0.00151955744, -0.00861619785, -0.0205264799, -0.00546864839, -0.00393590285, -0.00332632149, 0.0168221015, 0.0032823612, -0.00854586158, -0.00457772147, -0.000817659602, -0.00963021349, 0.00970055, -0.00201777299, 0.00279147225, 0.0291426778, 0.00146021112, -0.0097826086, 0.0094836792, 0.0170917232, -0.0226248465, -0.00989397429, -0.00492940331, 0.00599617045, -0.0347226933, -0.0429285951, 0.0152629791, 0.00409709, -0.00960676745, -0.0157318879, 0.0205850936, 0.00907924585, 0.0048268293, -0.000718749186, -0.00796558708, -0.0159428976, 0.0166228153, 0.0328939483, 0.00783663709, -0.0102808243, -0.016939329, 0.0121681821, -0.00190201111, 0.00768424198, -0.0179123133, -0.0316982307, -0.00342889526, 0.002501335, 0.000171261592, 0.0223552249, 0.0137624713, 0.00198993157, -0.00498215528, 0.0062951, -0.00132686517, -0.0285565425, 0.024547372, -0.0297991503, 0.00226395, -0.00937231351, -0.000155692353, 0.0319561325, 0.0109197125, -0.00849311, -1.46419497e-05, 0.0055360538, 0.00234014774, 0.00386556634, -0.00937231351, -0.00276070018, -0.00835243706, -0.00988225173, -0.00578516163, 0.0218159799, -0.000377325, -0.0106031988, 0.00252331514, 0.00236652372, 0.00339372712, 0.0209250525, -0.0299398229, -0.0172206741, 0.0107790399, -0.00865136646, 0.00990569685, 0.00756701501, 0.0064357724, 0.0061544273, 0.0292599052, -0.00792455766, 0.00335562811, -0.01513403, -0.0135397399, -0.0089034047, 0.0175020192, -0.00734428316, 0.0251335092, -0.00713327434, -0.0134576811, -0.0172323957, 0.0258837622, -0.0135397399, 0.0102339331, 0.00927853212, -0.0128949899, 0.0235861093, -0.0233985465, -0.00448100921, 0.0225427877, 0.00101914385, -0.0173144545, -0.0174082369, -0.0174902957, 0.00391538814, -0.0105211399, -0.0100463694, 0.00749667827, 0.024312919, 0.00854000077, 0.0115351547, -0.0128949899, 0.0263057798, 0.0272201523, 0.00645921798, -0.00392418, -0.0130122174, 0.0080417851, -0.00589066604, 0.00449859304, -0.0128481, -0.00450445479, -0.00290869945, -0.00493819499, -0.0275014974, 0.00618373416, 0.00472718617, 0.0151223065, 0.0110428007, 0.00393590285, 0.00777802384, -0.00913785864, -0.00359887467, -0.0143134389, -0.00126898428, -0.00243392936, -0.0166697055, 0.00770182628, -0.010028786, 0.0160484016, -0.0149230203, 0.0167634878, -0.0111189988, 0.000122722209, 0.0107438713, 0.00351095409, 0.00308014429, 0.0196003858, 0.0070981062, -0.0130591085, -0.00808867533, -0.0215463564, -0.00490009645, -0.00913785864, 0.00756701501, -0.0213939622, -0.0250397269, 0.0235392191, 0.0138562536, -0.00895615667, 0.00829968508, 0.0289082229, 0.0118633909, 0.00271674013, -0.0160952918, -0.00385970506, 0.0259072073, -0.0191549212, 0.00456013763, 0.0220387112, 0.00804764591, 0.00041066148, 0.00806523, 0.00214232691, 0.011447235, 0.000771501393, -0.00270648254, 0.00488251215, 0.01500508, 0.00845208, 0.0105270008, 0.00247056293, -0.0230820328, -0.0128246536, -0.00417621853, 0.0159194525, -0.00676400866, 0.011189335, 0.000419819844, -0.0115292938, -0.0156967193, 0.0122619634, -0.00591118075, -0.00675814738, 0.0187797956, 0.0339255482, 0.0236330014, -0.00285594724, -0.02263657, -0.00410295138, 0.000878471241, 0.0131294448, -0.0103452988, 0.0132818399, -0.0070981062, 0.00513162, -0.0014909833, 0.00402382296, 0.00408536755, -0.00477700774, -0.0150285251, -0.0012440735, 0.0362700894, 0.0155912153, 0.019389376, 0.0299398229, 0.00521660969, 0.00104405463, 0.0162125193, -0.0227655191, 0.00541003468, 0.000490156177, 0.0140438164, 0.0109079899, 0.00668194937, -0.00254822592, 0.00207345583, 0.0212415662, -0.01500508, -0.00541296508, 0.00713913562, 0.00946023408, 0.00801833905, 0.0121564595, -0.00216870289, 0.00416449597, -0.0105914762, -0.0054715788, -0.0101753194, 0.00978847, 0.00846966449, -0.00458944449, 0.0122971321, -1.7355118e-05, -0.00608409103, 0.00997603312, -0.0143251624, -0.0104508037, 0.000722412544, 0.0144775575, -0.00627165427, -0.00244125607, -0.00445170235, 0.00251159235, -0.00376885408, 0.0128598223, 0.00544227194, 6.98326e-06, 0.00501146214, 0.00798903313, -0.00706879934, 0.0179123133, 0.00353733031, 0.0346992463, -0.00220826711, -0.00311531243, -0.0415218696, 0.0111483056, -0.0149347438, -0.0115996301, 0.020163076, 0.011552739, -0.0202334113, 0.0167517643, -0.0136335213, 0.00831140764, -0.00442239549, -0.0306666307, -0.000421285193, 0.00569138, -0.0183226094, -0.012273686, 0.0150754163, 0.00851069391, 0.0240784641, 0.0162125193, -0.0097826086, 0.0131177222, 0.0149464663, -0.00118179654, -3.94725903e-05, -0.00964193605, -0.0160484016, -0.00606650673, 0.00306256022, -0.00784836, 0.0010946088, 0.0116113527, 0.0322609209, 0.0207726564, 0.00595807191, -0.0227069054, 0.00825865474, -0.00191080314, -0.0121212909, 0.00380695285, -0.00422017882, -0.00804764591, -0.00841691159, 0.0145947849, -0.0115292938, 0.00356077566, -0.0172089506, 0.0169627741, 0.00502611557, -0.0190728623, 0.00137522141, 0.0041439808, -0.00197088206, 0.0141258761, -0.0196238309, 0.00970055, 0.017584078, 0.013715581, 0.00630096113, 0.0144189438, 0.00811798219, 0.00158989371, 0.0162359644, 0.0179592054, -0.0165876467, 0.0220856015, 0.00454255333, -0.0179943722, 0.0220738798, 0.00640646555, -0.0113593144, 0.00382160628, 0.0388725363, 0.0226951838, 0.0182053819, -0.00602547731, 0.0121212909, -0.00266545312, -0.00558587536, 0.018334331, -0.00322081684, 0.00755529199, -0.00965365861, 0.0209602211, 0.000127759311, -0.0128129311, 0.00576464692, -0.019260427, -0.0125081409, 0.00135837006, 0.00494405674, 0.00837588217, 0.00899718609, 0.0054891631, -0.00851655472, 0.0176075231, -0.00320616341, -0.01039219, -0.0188853, -0.0156615525, 0.00378936878, -0.00295559037, -0.0217925329, 0.026118217, 0.0150988614, 0.0165642016, 0.00189468439, 0.00322374748, -0.0250397269, 0.0104566645, 0.0272201523, -0.00343475654, 0.0384739637, 0.00406485284, -0.00908510666, -0.00398572441, 0.00296145165, 0.0212181211, 0.0342772305, 0.025321072, -0.0204326976, -0.0077428557, -0.0141141526, -0.0319795758, -0.00385970506, 0.00302153081, -0.0107790399, 0.0166579839, -0.0144423889, -0.00134444924, -0.00196355535, -0.00596686359, -0.0102339331, -0.0243598092, 0.020163076, 0.00642991113, 0.00137009274, 0.0111014144, 0.00897960272, 0.00277974969, -0.00903821643, 0.021710474, -0.0107497331, 0.00746737188, -0.0118458066, 0.0121330135, -0.01013429, 0.0186156761, -0.0340427756, -0.0146768438, -0.0161304604, 0.0107555939, 0.0387553088, 0.0237267818, -0.00036541911, 0.00372782443, 0.015239534, -0.0094836792, 0.00496750185, 0.0106969811, -0.00158549764, -0.00812970567, 0.022742074, -0.00277535361, 0.00941334292, 0.0113065625, 0.0171855055, -0.00238264259, 0.000256800791, -0.0337379836, 0.0128949899, 0.00764321256, -0.0205030348, -0.011189335, 0.0180764329, -0.0097826086, -0.0236330014, 0.0195066035, -0.0109490193, -0.0177950859, -0.0152864251, 0.000757580681, -0.00472718617, -0.00562397437, 0.00123601418, 0.0213470701, 0.0158842839, -0.00126165757, 0.0383332893, 0.012273686, -0.013586631, 0.00177892251, 0.00636543613, 0.0132349487, 0.00204707962, 0.00199579285, 0.00699846307, 0.0201513525, 0.0071449969, 0.0136804124, 0.00369558693, 0.00674642436, 0.0094660949, 0.0392945521, 0.00147706259, 0.00514334254, 0.0214408524, 0.000340691506, -0.00594634889, -0.040841952, -0.00238850387, -0.0293536875, -0.0156381056, 0.0129770497, -0.0133873448, -0.00339665776, 0.0349337, 0.0171151683, 0.00730911503, -0.0107087037, 0.00483269058, -0.0189439133, 0.0180764329, -0.0317685679, -1.6130185e-05, 0.00191666442, 0.0225427877, 0.0147940712, 0.0029174916, -0.0252976269, 0.0056855185, 0.00368972565, -0.00364283472, -0.0220621563, -0.0033351134, 0.0189556349, 0.0147823477, 0.00110486627, 0.0275952797, 0.0460233912, -0.0164821427, 0.00154593354, 0.0098177772, -0.00906166155, -0.0136569673, -0.00604892289, -0.00188003096, -0.0248756092, 0.0211126152, 0.00640646555, -0.0175254643, -0.00818245765, -0.00659989053, 0.00287939282, -0.036176309, 0.00663505867, -0.000527522352, -0.00637129741, 0.0171151683, -0.0249459445, 0.0101049831, -0.00530453026, 0.00840518903, 0.00970641058, 0.012531586, -0.000863817811, -0.00369265629, 0.000175657609, 0.00811798219, 0.0257665347, -0.010210488, -0.0237033367, 0.0427410305, 0.0100756763, 0.0328236111, -0.0129653271, -0.0161187388, 0.0037981607, -0.0333159678, -0.00811798219, -0.0114882644, -0.00315341121, -0.0104273586, 0.00623062486, -0.0211477838, -0.0109431576, 0.00194304064, 0.00406192197, -0.0188149624, -0.0290488973, 0.00236212788, -0.0083055459, 0.0244535916, 0.0120978458, 0.0070805219, 0.00910855271, 0.0116230752, 0.0120275095, -0.00263468106, -0.019659, 0.0137859173, -0.00224636588, 0.0153567614, -0.00564741949, 0.00917888898, -0.00684020622, 0.0123205772, 0.00311824307, 0.00837588217, -0.00832899194, -0.00955987722, 0.00760218315, 0.00839346647, 0.00249986979, 0.0279469602, 0.0105856145, 0.00566207292, 0.013715581, -0.0135397399, -0.0332925208, -0.016939329, -0.00511696655, 0.00646507926, 0.0211477838, -0.0262588896, 0.0161070153, -0.0124729723, 0.0194479898, -0.000368716137, -0.00234747445, -0.0196941663, 0.00903235469, 0.00172470498, -0.0084755253, 0.0143251624, -0.013563185, 0.0305259582, 0.00648266356, -0.0115820458, -0.00305669894, -0.0272435974, -0.014336885, -0.0139031438, -0.00449859304, -0.00652955426, -6.89740045e-06, 0.0234102681, -0.00941334292, -0.0177364722, 0.00810039882, 0.000471839419, 0.020913329, -0.0142196575, -0.0192018133, 0.00269182934, 0.00287499675, -0.0100346468, 0.0105270008, -0.00973571744, -0.0269856974, 0.000296731305, -0.00990569685, -0.00440481165, 0.0227655191, 0.0133756222, 0.0150519703, 0.0355198383, 0.00178038783, 0.0105621694, -0.0218511466, -0.0109197125, -0.00835243706, 0.0141727664, -0.0160601251, -0.00196355535, -0.00164264592, -0.00227567274, -0.01487613, 0.00668781111, -0.0100463694, 0.0103804674, -0.00754356943, -0.0010682327, -0.0121212909, 0.004976294, -0.00898546353, -0.0169510506, 0.011628937, 0.00447514793, -0.00503783813, -0.0195652172, 0.00791283511, -0.019776227, -0.00135324127, -0.0161187388, -0.0165524781, -0.00204707962, 0.0024222068, -0.000115029172, -0.0287441052, -0.0127777634, -0.0202451348, -0.00891512726, -0.000114204922, 0.00753184687, -0.0192369819, -0.00622476358, 0.00192399113, -0.0122971321, 0.0178068094, -0.0018170214, 0.0035168156, -0.0128598223, -0.00934886839, -0.0128246536, 0.0015239534, 0.0105680311, 0.00143823097, -0.00753184687, 0.0192018133, 0.0024222068, 0.006136843, -0.0156146614, 0.00764321256, -0.00833485276, -0.00246763229, -0.00499094743, -0.00678745424, 0.000504443247, -0.00492647244, 0.00405019941, -0.00221412838, -0.0149464663, 0.0134107899, 0.0124729723, -0.000247825606, -0.00821176451, -0.00729153072, 0.00106603466, -0.0103159919, 0.0110486625, 8.74166799e-05, 0.00852241646, 0.00930783805, -0.0175020192, 0.0288613327, -0.00571775576, -0.00398279354, 0.00157230964, 0.0161304604, -0.00427586166, 0.000730838219, -0.0180764329, -0.00986466743, 0.011165889, 0.018228827, 0.0282751974, -0.00535728224, 0.00594341848, 0.0135749085, -0.0178185329, 0.00623648614, 0.00685779052, -0.00778974639, -0.0266574621, -0.0196238309, 0.00664092, 0.00429637637, 0.0306197405, -0.0138914213, 0.00111658894, -0.00081985764, 0.0116699664, -0.00402089255, -0.000768570753, 0.0264933445, 0.00108508416, -0.00535142096, 0.0230937563, -0.00609581359, 0.016013233, 0.00117813319, -0.0101753194, -0.0125902, 0.00166902202, 0.0136686899, -0.00286034332, 0.0126957046, 0.000300028332, 0.00654713809, -4.65245394e-05, 0.00617201114, 0.0268450249, -0.00315341121, -0.0129653271, 0.0145713389, -0.00480338372, -0.00393883325, -0.0126019223, -0.00250719651, -0.011113137, 0.000496383873, 0.00553898467, -0.0110896919, 0.0163883604, -0.00788939, -0.0203975309, -0.0251335092, -0.00837002136, 0.00854000077, -0.00443998, 0.00704535376, -0.00353733031, 0.0409122892, 0.0129653271, 0.020678876, -0.017841978, -0.0116875507, 0.00855172332, 0.00314461929, 0.013821085, 0.00320030213, -0.000625700108, 0.00308307493, -0.00121330132, 0.0134107899, -0.0118633909, 0.0102456557, 0.000127026651, -0.00457772147, 0.0162828565, -0.027149817, -0.00998189487, -0.0440774225, 0.0223552249, -0.00634785229, 0.0163180251, -0.0203271937, 0.01513403, 0.00313875778, 0.0112655321, 0.00446928665, -0.00506421458, -0.00362525065, -0.00863378216, 0.000642551517, 0.00298196659, 0.0121095683, 0.023797119, -0.00862792, -0.00349043938, -0.0137859173, -0.0141727664, -7.9677855e-05, 0.019002527, -0.00268450263, 0.0130591085, 0.020420976, 0.0114003439, -0.0129770497, -0.0118047772, -0.00793041941, -0.0160015114, -0.0133404536, -0.0209250525, 0.001518092, 0.00407657539, -0.0128832674, -0.0193073172, -0.0121799046, 0.00248521636, 0.0080417851, 0.00433154451, -0.0200341251, -0.00607822975, -0.00088213454, 0.0323547, -0.0045279, 0.00472718617, -0.0205616485, 0.00443998, -0.00427879207, -0.00834657531, 0.00285008596, 0.00620717928, 0.0218745936, -0.00511696655, -0.0199286211, 0.00558001408, -0.0190611407, -0.0139031438, -0.023797119, -0.00967710372, 0.00551553909, 0.0102573792, -0.00188442704, -0.0105504468, -0.00971813407, 0.0112538096, 0.00497922488, -0.00338786561, -0.0150988614, 0.0126019223, 0.0117754703, -0.00569431065, 0.00435499, 0.00480045332, -0.0207374897, 0.00176719984, 0.00356956781, -0.00422017882, -0.00431689108, 0.00362525065, -0.0132232262, -0.010210488, -0.00247642421, -0.00301273866, 0.00577636948, -0.00793041941, 0.0103863282, -0.0291192327, 0.0314403325, 0.0017979719, -0.0125198634, 0.0236916132, 0.0107438713, 0.000340142, -0.0188618544, 0.0110838301, -0.0186977368, -0.00744978758, -0.00324719306, -0.00971813407, -0.00260683964, -0.00311238179, -0.0102163488, 0.0199637897, 0.00824107137, -0.0103980517, 0.00456013763, 0.0150988614, -0.0093371449, 0.00725050131, -0.000633026822, -0.0211243387, 0.0105152782, -0.0131646125, 0.0101635968, -0.00964193605, -0.003036184, -0.00221412838, 0.0129418811, -0.00330287591, 0.0226717368, -0.013176336, -0.00320909428, -0.00965952, -0.0165642016, -0.00311824307, 0.0241488, 0.0034845781, 0.0190845858, -0.0232813191, -0.00261563156, -0.0142782712, 0.00467150332, 0.0243363641, -0.00294533302, 0.0275249425, 0.0121212909, 0.00352267688, 0.0162945781, -0.0150871389, 0.0171620604, 0.0137390262, -0.00675814738, 0.00311238179, -0.0308776405, 0.0218159799, 0.00412932737, 0.00436085137, -0.00204707962, 0.0252038445, 0.0202334113, -0.0062189023, 0.0138796987, -0.0123205772, 0.0111424439, -0.00496457145, -0.0209836662, -0.00405313, -0.0105035556, 0.0229765289, -0.00297317444, 0.00430809893, -0.0120978458, 0.0174199603, 0.0103218537, -0.0211126152, -0.00238557323, 0.00209250534, 0.0160015114, 0.0156381056, 0.000537413405, -0.0089034047, 0.0373485796, 0.0208429936, -0.00197527814, 0.010855237, -0.00225662324, -0.00742048072, -0.0251804, 0.0159663428, 0.0217808113, -0.00208224799, 0.0122150723, 0.00599910133, 0.00370730972, -0.0172558408, -0.00134811259, 0.00288965018, -0.000742560951, -0.00757873757, -0.011757887, -0.0057705082, -0.0167048741, -0.021710474, -0.0175020192, 0.00385384378, -0.0025848595, -0.0218511466, -0.00893271156, 0.00777802384, -0.00496750185, -0.00221559382, -0.00726222433, 0.00930197723, -0.0247349367, -0.00298196659, -0.0164118055, -0.0379112698, 0.00187416957, -0.0188384093, 0.00660575181, -0.0205382034, -0.0117285801, 0.0126370909, -0.0164469741, 0.0232461505, -0.0219566524, -0.00421138667, -0.0192135349, -0.00212620804, -0.0135162948, -0.00388021977, -0.00972399488, -0.0267043523, 0.0153098702, -0.00462754304, 0.000955401571, 0.0131528899, -0.00757287629, 0.0100112017, 0.00530159939, -0.00974157918, -0.00519902585, 0.0168924369, -0.0016148045, -0.0133873448, 0.00302153081, -0.00325891585, -0.00517558027, -0.00144189433, 0.0278297346, 0.010339438, 0.0350509286, -0.00957746059, 0.00551260822, -0.00703363121, -0.0178302545, 0.00292042224, -0.0208547171, 0.00672884053, -0.0284158699, 0.00440188078, -0.0147354575, -0.0118985595, 0.0102222105, -0.00925508607, 0.000599324, -0.0092023341, -0.00897960272, -0.0108083468, -0.00567086507, 0.0285565425, -0.0118985595, -0.0284158699, 0.00669367239, 0.00332925213, -0.0179240368, -0.00438429695, 0.0046949489, -0.0305728503, -0.00490595773, -0.00633026799, -0.00334390556, -0.0206554309, 0.0226482917, -0.0213470701, -0.031018313, -0.0108376537, -0.0159663428, 0.0213587936, 0.00254822592, -0.0151691977, -0.00542175723, 0.00208517862, -0.00238264259, -0.00511989743, 0.0114003439, 0.00937231351, 0.00578516163, 0.00733842188, -0.00571775576, -0.0123088546, -0.0164821427, 0.0322374776, 0.0114706801, 0.0166579839, -0.011757887, 0.00216870289, 0.00831140764, -0.00662333611, -0.0155677702, 0.0169627741, -0.0257430896, -0.0118575301, -0.0152747026, 0.00730325375, -0.00345527125, -0.0124729723, -0.00280612567, -0.00751426257, 0.00672884053, 0.0130239399, 0.0208429936, -0.0368093364, -0.00923164096, 0.000538878725, -0.00168953685, 0.0119513115, 0.00797731, 0.00329408399, -0.00164704199, 0.0192018133, -0.00430223765, -0.00220240583, 0.0104976948, 0.0160484016, 0.0219214838, -0.0120978458, -0.00609581359, 0.0054071038, 0.0107907625, 0.00567672634, -3.77782926e-05, 0.0137624713, 0.018228827, -0.0365279913, -0.0152747026, 0.00982363801, -0.0115117095, -0.0200341251, 0.00422310922, -0.0113768987, 0.0275249425, 0.00550088566, 0.00755529199, 0.0377237089, 0.0237033367, 0.0242425818, -0.0116699664, -0.00955987722, 0.0172910094, 0.0198348388, -0.0194597133, 0.000613611075, -0.0254851896, -0.0090558, 0.00336148962, 0.0049938783, -0.0244770367, -0.0162242427, 0.00827623904, 0.00421138667, -0.0255555268, 0.00667022681, 0.00899718609, -0.0122619634, -0.0238791779, -0.0111541664, -0.0238322876, -0.0262823347, -0.00840518903, 0.0150402477, -0.0258837622, 0.000239216723, -0.0188618544, 0.00230791024, -0.00824107137, -0.0189673584, -0.00657644495, 0.0207843799, -0.00706879934, 0.0073794513, -0.00351095409, -0.000973718299, 0.0276187249, -0.000251488935, 0.0147589026, 0.0170331094, -0.0223083328, -0.00793628, -0.00197967398, 0.00658230623, 0.00923750177, 0.000312300544, 0.015497434, -0.0124612497, -0.00862206, 0.00746151, 0.00189908035, -0.012918436, 0.00370144844, 0.0117989164, -0.00552140037, 0.00273872, -0.0135397399, -0.0211829524, 0.00231377152, 0.0192135349, 0.00342889526, -0.00109314348, 0.0125550311, -0.000452423672, 0.0184046682, -0.0137741938, 0.0105445851, 0.00312410458, 0.00140526087, -0.00434912834, 0.0191080309, 0.00790697336, 0.0103159919, 0.000776630128, -0.010339438, -0.00382453692, -0.00679331552, 0.0288144425, -0.00829968508, 0.0101401517, -0.000227860335, 0.00755529199, 0.0109490193, -0.0286503248, -0.0113241458, -0.00441067293, 0.0312762111, -0.00283543253, 0.0131880585, -0.0314637758, 0.00386849721, 0.00137595413, 0.0180529859, 0.013586631, -0.0054246881, -0.00923164096, 0.00848724786, 0.0076783807, 0.00876273215, 0.0112245027, 0.00133052852, 0.00848138705, -0.00106310402, -0.00581739889, 0.0210305564, -0.0099174194, 0.0102339331, 0.0309245307, 0.0125902, 0.0158491153, -0.019776227, 0.00057551224, 0.0138445301, -0.0124378046, 0.00705121504, 0.00330873718, -0.0197645035, -0.0207726564, -0.00304497615, -0.0155677702, 0.0236330014, 0.0150402477, -0.00560639, -0.0157201663, -0.0115058478, 0.0160718467, 0.0207257662, 0.0430458225, -0.01487613, 0.0170213878, -0.00506128371, -0.00884479098, -0.0193190407, -0.0172441192, 0.0465157479, -0.0164352506, -0.0203271937, 0.0175958, -0.00675814738, -0.00502904644, 0.00106969802, 0.0098177772, -0.0163531918, 0.0273139346, 0.00852827728, -0.00783663709, 0.0139265899, 0.00428465381, 0.00660575181]
|
28 Mar, 2023
|
Floating Point Operations & Associativity in C, C++ and Java
28 Mar, 2023
Do Floating point operations follow property of associativity? In other words, do we always get the same results for expressions “(A + B) + C” and “A + (B + C)” One may expect that floating numbers to follow the rule of associativity in programming languages as they are associative mathematically. However, this is not true in all cases. Consider below C/C++ program.
C
// C/C++ program to demonstrate that floating point
// addition may not be associative.
#include <stdio.h>
int main()
{
// A and B have same values but opposite signs
float A = -500000000;
float B = 500000000;
float C = 1;
printf("A + (B + C) is equal to %f \n", A + (B + C));
printf("(A + B) + C is equal to %f", (A + B) + C);
return 0;
}
Output:
A + (B + C) is equal to 0.000000
(A + B) + C is equal to 1.000000
It is evident from the above-given output that the floating-point arithmetic may not follow the law of associativity in every case. This is due to the format in which the floating-point numbers are stored and represented, it rounds off the numbers during calculations, hence, the associative laws of algebra do not necessarily hold for floating-point numbers. In this case,
Explanation for above output:
A + (B + C):
(B + C) = 500000000.0 + 1.0
= 500000000.0
(rounded off during floating point arithmetic)
A + (B + C) = -500000000.0 + 500000000.0
= 0.000000
(A + B) + C:
(A + B) = -500000000.0 + 500000000.0
= 0.000000
(A + B) + C = 0.000000 + 1
= 1.000000
How about Java? We get the same results in Java as Java also uses similar representation for floating-point numbers.
Java
// Java program to demonstrate that floating-point
// addition may not be associative
import java.io.*;
class Main
{
public static void main (String[] args)
{
// A and B have same values but opposite signs
float A = -500000000;
float B = 500000000;
float C = 1;
System.out.println("A + (B + C) is equal to " +
(A + (B + C)));
System.out.println("(A + B) + C is equal to " +
((A + B) + C));
}
}
Output:
A + (B + C) is equal to 0.000000
(A + B) + C is equal to 1.000000
How about integers? Now let’s try the same calculations when the data type is integer. Here is a piece of code for your observation:
C++
#include <iostream>
using namespace std;
int main()
{
// A and B have same values but opposite signs
int A = -500000000;
int B = 500000000;
int C = 1;
cout << " A + (B + C) is equal to " << A + (B + C) << endl;
cout << "(A + B) + C is equal to " << (A + B) + C << endl;
return 0;
}
// This code is contributed by sarajadhav12052009
C
#include <stdio.h>
int main()
{
// A and B have same values but opposite signs
int A = -500000000;
int B = 500000000;
int C = 1;
printf(" A + (B + C) is equal to %d \n", A + (B + C));
printf("(A + B) + C is equal to %d", (A + B) + C);
return 0;
}
Java
import java.io.*;
class Main
{
public static void main (String[] args)
{
// A and B have same values but opposite signs
int A = -500000000;
int B = 500000000;
int C = 1;
System.out.println("A + (B + C) is equal to " +
(A + (B + C)));
System.out.println("(A + B) + C is equal to " +
((A + B) + C));
}
}
// This code is contributed by sarajadhav12052009
Output
A + (B + C) is equal to 1
(A + B) + C is equal to 1
Time Complexity: O(1).Auxiliary Space: O(1).
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java
|
https://www.geeksforgeeks.org/g-fact-39-floating-point-operations-associativity/?ref=next_article
|
Pandas
|
Floating Point Operations & Associativity in C, C++ and Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0114944214, -0.0194255728, -0.00789283589, 0.048991777, 0.00369417924, 0.0185571052, 0.000696051051, 0.00732450094, -0.0160538759, 0.030907223, -0.0212519076, -0.0110985022, 0.0135761891, -0.0407924242, -0.0357604213, 0.0275099818, -0.0230399296, 0.0290425718, -0.0324908979, -0.0133079858, -0.0225035232, -0.0128290514, -0.0231037866, 0.0118200965, -0.0119541986, 0.0232442748, 0.00423697149, 0.00700521143, -0.00316735171, -0.0151854083, 0.0246619191, -0.00477018487, -0.00679448, -0.00115742441, 0.023704052, 0.00529062655, 0.019055197, -0.0325164422, -0.0230399296, 0.0104088373, -0.023001615, 0.0227078684, -0.0010640322, -0.00506393146, -0.0145851439, -0.0255048443, -0.00175130286, 0.0120946858, 0.00212327507, -0.0342278332, -0.012043599, 0.0144446567, 0.074790366, 0.0215839688, 0.00324398116, 0.0350196697, -0.0042752861, -0.00209134608, 0.0156962704, -0.00117019599, -0.0226056948, 0.0211625062, -0.0304219015, -0.0134995598, -0.00140966312, 0.0165775102, -0.0269224886, 0.00254952651, -0.0078672925, -0.031980034, -0.0279186722, 0.0362968296, 0.00674339384, 0.0155940987, -0.0105876392, 0.0191573687, 0.0576764531, 0.00927216653, -0.0140487375, 0.0316990614, 0.00697966805, 0.0363223702, 0.00647519063, -0.00269161025, -0.00272034644, -0.00314500136, -0.00568335271, -0.0454668216, 0.0255176164, 0.0176630951, -0.0131802699, 0.00701798266, 0.0209964775, 0.0101597914, 0.0108111417, 0.0156962704, 0.0236912798, -0.00256070169, -0.0245086607, 0.0323376395, 0.0115071926, 0.0146873165, -0.0150449201, 0.0325164422, 0.0123373456, -0.00694135344, 0.0106961979, 0.00741390185, 0.0124012036, 0.0743816793, -0.036194656, -0.0256197881, -0.0208432171, 0.0360924825, -0.0140104229, 0.013065326, 0.00787367858, -0.0576764531, 0.0127460361, 0.0143552553, 0.0115391221, 0.0374973565, 0.0154919261, 0.00432637241, -0.00402624, 0.0297577791, 0.0295789782, -0.00514375372, 0.00163236749, -0.0539471507, 0.012809894, -0.0322610103, -0.0146234585, -0.0381614789, 0.00062261452, -0.031290371, 0.0395152681, 0.0136017324, -0.0170372874, -0.0171522312, -0.0260284785, -0.0147000877, 0.0246363766, 0.0190807395, -0.0194638874, -0.0124778328, -0.0261306521, 0.0567058139, -0.0338191427, -0.00756716076, -0.0259646215, 0.0124459043, 0.0236146506, 0.0142275393, 0.00227174466, -0.00392087502, 0.0452624783, 0.00439661602, 0.00740751624, -0.0299110394, 0.0103130508, -0.0463608317, -0.0097064, -0.00575040374, -0.0607927181, 0.0100576188, -0.0227972697, 0.0125033762, -0.0140359653, 0.0287615974, 0.0234230775, 0.0133079858, 0.0281485617, 0.00848671421, -0.0179823842, 0.016437022, 0.00229728781, 0.021788314, -0.0266415142, -0.0240871981, -0.0214179382, -0.0606905445, 0.0289659426, -0.0337425135, 0.023320904, -0.057727538, 0.0221203752, -0.0447771586, 0.00774596306, -0.0309838522, -0.0139337927, -0.005798297, 0.0371142104, 0.00439980906, 0.0219288021, -0.0194766577, -0.0322865546, -0.00763101876, -0.0240105689, 0.0522868447, -0.00383147388, -0.0576764531, -0.0279442165, 0.00983411632, 0.023640193, -0.032439813, -0.00706268335, -0.0525167361, 0.0404348187, 0.00229728781, 0.0212263651, 0.0453391075, 0.00609523617, -0.0162326768, -0.010894157, -0.00963615626, -0.0197065473, 0.0139593361, 0.0157729015, -0.0336147957, -0.00545027154, 0.00384743838, 0.00584938331, 8.84531619e-05, -0.0213668533, -0.00700521143, 0.00113427592, -0.00557798753, -0.00698605413, -0.0298599526, 0.0281996466, 0.0362202, -0.0599753372, 0.00552690076, -0.0112198321, -0.0304985307, -0.0195149742, -0.00855057221, 0.0189019367, 0.0438065156, -0.0249556657, 0.00492025074, -0.0294001754, 0.029502349, -0.0696306527, 0.0204728413, 0.00863358751, 0.0194894299, 0.0264627133, 0.016437022, 0.0446239, -0.0308305919, 0.00140567194, -0.0115071926, -0.0114624929, 0.00773957698, -0.00843562838, 0.0139082503, -0.048046682, -0.00140327727, 0.00449559605, 0.0417119786, -0.00860804413, -0.0152237229, 0.0205367, -0.0136783617, -0.00382189522, -0.00891456287, -0.0176630951, 0.0165775102, -0.0108430712, -0.0212519076, 0.0153003521, -0.0226823259, 0.0281485617, 0.000970640045, -0.0134101585, 5.94177764e-05, 0.0488385186, 0.0228483547, 0.0228866711, 0.0348153263, 0.0350707583, -0.0127843507, 0.0155302407, -0.0339979455, 0.011149589, -0.00204345281, -0.058238402, -0.0479700528, -0.0215839688, -0.0425038151, -0.0510352328, 0.030907223, -0.000186185687, -0.0179568399, -0.0257730465, -0.0159261599, -0.00484362151, -0.0162582211, 0.0240999702, -0.0569612458, 0.0328485034, -0.0375739858, -0.030779507, 0.0201024655, -0.00102332281, -0.0244320314, 0.0231548734, -0.0203962121, 0.0085952729, -0.0140615087, -0.0297322366, -0.0479955971, -0.0414054617, 0.0135761891, 0.036450088, 0.00751607446, -0.0188380796, -0.00129791175, -0.00327271712, 0.0107217412, 0.00892094802, 0.0487874337, 0.0130780973, 0.024853494, 0.00597071322, -0.000595075777, -0.0386468, -0.045492366, -0.00954037, -0.0357604213, -0.0164753366, -0.0184421614, -0.0220565181, -0.0571655892, 0.0139848795, 0.0149810631, -0.0312648267, -0.0261561945, 0.0117051527, 0.0129184527, 0.00225578016, 0.0541514978, 0.0405114517, -0.0301920138, -0.00999376085, -0.0414310023, 0.0193106271, 0.0178674404, 0.000770685, 0.0171905458, 0.0145979151, 0.00545027154, 0.0395408086, -0.032695245, -0.0039751539, -0.0205877852, 0.0274078101, -0.0380848497, 0.00710738404, 0.00952121243, -0.0218266286, -0.0139721083, -0.0171011444, -0.0140487375, -0.0135634169, -0.0323887244, 0.0182633586, -0.00965531357, -0.0302431, 0.00447643874, 0.0279953014, -0.0195405167, 0.0148405749, -0.017778039, -0.0288382266, 0.00195564819, 0.000394322502, 0.0222097766, -0.0256325603, 0.0515971817, 0.0147256311, -0.0253771283, -0.0412011147, -0.0135506457, -7.35238882e-06, 0.0200896952, 0.0240105689, 0.0291702878, 0.000435031921, 0.0327974148, -0.0155430119, 0.0300387554, -0.00403581932, 0.0130461687, -0.00209773192, -0.00962977111, 0.0125927776, -0.000469355553, 0.0409456827, -0.0227334108, -0.00681363745, 0.0146362297, -0.0345088057, 0.0281741042, -0.0795924813, 0.00916360784, 0.0402560197, 0.0788772777, -0.0203323551, 0.0119861271, -0.0339213163, -0.00947651174, 0.00777789205, -0.00258624484, -0.0212008227, 0.0323376395, -0.00827598386, -0.00909975078, -0.017778039, 0.00748414546, -0.00357284932, 0.00982134417, -0.0483276583, -0.00565781, 0.00623891642, 0.00868467428, 0.0340234861, 0.00651989132, 0.00625488115, 0.00663483562, 0.0267436877, 0.0522102155, -0.03453435, -0.0377272442, 0.0021631862, 0.00153897528, -0.0515205525, -0.0247896351, 0.0119861271, 0.0156579558, -0.00116540666, -0.0139976507, -0.00699882535, -0.0110154869, -0.044470638, -0.0182889011, -0.0100895474, 0.013129184, -0.0487363487, 0.00860165898, 0.0139848795, -0.022043746, 0.0178674404, 0.0327207856, -0.0235124771, -0.0346109793, -0.00107919844, -0.0118392538, 0.0113603203, -0.0100384615, 0.0123245744, -0.0137422197, 0.04472607, -0.000719997799, 0.02191603, -0.0108111417, -0.0103130508, -0.00160522794, -0.0603329428, -0.0111432029, -0.00574082509, 0.0252749547, 0.0160794184, -0.0184293892, -0.000283169851, 0.00876769, -0.0494260117, -0.0415331759, 0.0500901341, 0.0307028778, -0.0206005573, -0.0346620679, 0.000481328898, -0.0039559966, 0.00417630654, -0.0104982387, -0.0083653843, 0.00426251441, -0.0264882557, 0.031545803, 0.0432445668, 0.0014080666, 0.0282762777, 0.027842043, -0.021085877, 0.0150066055, 0.0379571356, 0.0404092781, -0.0117626246, -0.0284295361, -0.00501923077, 0.00318970205, -0.00158607052, -0.0504477397, -0.0356837921, -0.011341163, -0.0347642377, -0.00452752504, -0.00514694629, -0.00372291543, 0.0380337648, 0.0440874919, -0.0122032445, -0.0108877718, -0.0294257198, -0.000530020567, -0.00548539357, 0.00357604213, 0.0170628298, 0.0233081318, 0.022618467, 0.0298854951, 0.0094892839, -0.0107472837, 0.0530275963, -0.00429125084, -0.00883793272, -0.00652947, -0.0284806229, 0.0217372272, -0.000479732465, 0.018033471, 0.00244256458, 0.0081801964, 0.00359839248, -0.00644006906, -0.0153514389, -0.00692858174, -0.0168457124, -0.0168712568, -0.00122447521, 0.0118584111, -0.0292213745, 0.0267436877, 0.0246108342, -0.0273056366, 0.00969362911, 0.00572805339, 0.00308593293, 0.0243426301, 0.00991713163, 0.00916999392, 0.00365267182, -0.0100384615, 0.00823766831, -0.0474591888, 0.0120883, -0.0190296527, -0.0145851439, -0.0223374926, 0.027714327, 0.0181228705, 0.00912529323, -0.0231804159, -0.0120052844, 0.0439086892, 0.0145468293, -0.0106578832, 0.011532736, -0.00249524741, 0.00482446421, 0.028991485, 0.0164497942, 0.043576628, 0.0200641509, -0.0276632402, 0.0109644011, 0.0116732232, 0.00274110027, -0.024406489, -0.0102811214, 0.0370375812, -0.00989158824, 0.00784175, -0.0142147681, -0.0272545498, -0.0155302407, 0.0047222916, 0.00194926234, 0.0201535523, -0.00830152631, 0.0081163384, -0.00362393563, 0.00406455528, -0.0228866711, 0.00245054672, -0.00719678495, -0.0261561945, -0.0115838228, -0.000205941717, 0.0329251327, -0.0171650033, 0.00839092769, 0.000988999149, 0.0007702859, -0.00479892083, -0.0179185253, -0.00111831143, 0.0124969902, -0.0287615974, 0.0212008227, -0.00674339384, -0.02344862, -0.0163859371, 0.0113603203, 0.0258241333, -0.0108558424, 0.00234837411, 0.018799765, -0.036245741, -0.0197959486, 0.0391321182, 0.00824405439, 0.0349175, -0.0270246621, 0.00827598386, -0.00367821497, -0.0196937751, -0.0191445984, -0.0081163384, 0.0124203609, 0.0159006156, -0.00333657512, 0.0163859371, -0.00447963132, 0.0144574279, 0.00904227793, 0.00195405167, -0.0146873165, 0.0100512328, 0.00815465301, 0.0570634156, -0.00202269899, -0.012171315, 0.00635705376, 0.005798297, 0.00700521143, -0.0107217412, 0.0233336762, -0.0268969461, 0.033844687, 0.016373165, -0.0132185845, -0.0239467118, 0.0169989727, 0.0352495573, -0.00918915123, 0.0235124771, 0.00102252455, -0.0210347921, -0.00713931303, -0.00404220494, -0.0139721083, -0.00720955664, -0.0416098051, 0.00719678495, 0.0176375508, 0.023001615, -0.0282251909, 0.0123756602, 0.000750729407, 0.0192978568, 0.0276121553, -0.0182505865, -0.00451156031, 0.0164242517, 0.010766441, -0.00205782079, -0.0100129182, -0.00553967245, -0.00982134417, -0.0172288604, 0.0340745747, -0.012299031, -0.0159261599, 0.00201471662, 0.00456264662, -0.0262072813, 0.00156212377, -0.0201663245, 0.0382125638, 0.0313159116, -0.0183399878, -0.0137933055, 0.0183272157, 0.0325164422, -0.0193234, 0.0133973872, -0.00228132331, -0.0135378744, -0.00488193613, 0.0259263068, -0.0203195829, -0.000834143779, 0.0103449794, 0.00697966805, 0.0144191133, 0.00395918963, -0.00672423653, 0.0123181883, -0.00104886596, 0.022746183, 0.0083653843, -0.0252494123, 0.00697966805, -0.0260540228, -0.0163987074, -0.041916322, -0.0080971811, -0.00553328684, 0.0192467701, -0.00570889609, 0.0113092335, -0.0107919844, -0.000735563168, 0.00264052395, -0.00999376085, -0.00848032907, -0.00467759091, 0.0248407219, -0.023065472, -0.00677532284, 0.00584619027, -0.0212774519, 0.0348919556, 0.0234997068, -0.0444195531, -0.0266159717, -0.0058813123, 0.00708184065, 0.00242181076, 0.0296045206, 0.00212646788, -0.00126358808, 0.0200641509, -0.0178163536, -0.00176407443, 0.0510863177, 0.0157473572, 0.000947491557, 0.00314340508, 0.00886347611, 0.0115902079, -0.0178163536, -0.0171650033, -0.0139465649, 0.0211880505, 0.0435, -0.0198470335, 0.013129184, -0.0114433356, 0.00625168812, 0.0111048883, -0.0514439233, -0.0286849681, 0.00510863168, 0.0107153552, -0.0173565764, 0.00411883416, -0.00317533384, 0.0157473572, -0.0342278332, -0.00744583085, 0.0136400471, -0.00641133264, 0.00484681455, 0.00722871395, 0.025428215, 0.0216733702, 0.0353517309, -0.00387617433, 0.0133079858, 0.00793753657, 0.00331103196, -0.0103002787, -0.0227334108, 0.0241638292, 0.00473825587, -0.00039272607, 0.017267175, 0.00622614473, 0.0354028195, 0.0153131234, -0.0140870521, 0.00416992046, 0.00573124643, -0.00690303883, -0.0565014668, 0.0457477979, 0.00934879575, -0.0177524947, -0.028863769, 0.000451395521, -0.00651989132, 0.0175864641, 0.00742028747, -0.0342789181, 0.0128162801, 0.00957868434, -0.000221507085, 0.0136400471, 0.018927481, -0.0318267755, 0.00228611263, -0.0106259538, 0.00210731057, 0.0063283178, 0.0250067525, -0.00763101876, -0.00529701263, 0.0161815919, -0.0271523781, 0.0197065473, 0.032695245, 0.00734365825, -0.0162709914, 0.00584299769, 0.00839092769, 0.0266415142, -0.0316479728, 0.0135506457, -0.0148788895, -0.0139465649, -0.00255271932, 0.00649754098, 0.00822489709, -0.0218904875, 0.00598987052, -0.00356646348, -0.0298344102, -0.00448601739, -0.0233719908, -0.000828556193, -0.016309306, 0.017969612, 0.0187359061, 0.00729895756, -0.0242021438, 0.000261418259, 0.0161560476, 0.0119414264, 0.033844687, -0.00821212586, -0.0122287869, -0.0125672342, -0.0527210794, -0.0056003374, -0.00586854061, 0.02344862, 0.0040390119, -0.00513417507, -0.0154025247, 0.0152748087, -0.00589089096, -0.00213445025, -0.00256229821, -0.0100320755, -0.0416864343, 0.00139689154, 0.0208049025, 0.0438320599, 0.0303452723, -0.00937433913, -0.0254793018, -0.00867190212, -0.00492983, 0.010894157, -0.00387936714, 0.00186624704, 0.0161432773, -0.0314947143, -0.00211050338, -0.011085731, 0.0271012913, -0.00868467428, -0.032695245, 0.000390530942, -0.0224396642, 0.0107217412, 0.0225929245, -0.00277462555, -0.0351984724, 0.0384679958, 0.0183655303, -0.0255303867, -0.0216989126, 0.0155174686, -0.0232059602, -0.0020450491, -0.00700521143, -0.0171777736, 0.00626765238, 0.0308561362, -0.0109771723, 0.0183016732, 0.0408945978, -0.0271779206, 0.0275610685, -0.0132568991, 0.0206133295, -0.0342278332, -0.011213447, 0.0225418378, -0.00169702363, -0.0453135632, -0.000435830152, 0.00660290662, -0.00815465301, -0.00447005266, -0.00920192339, -0.0136400471, -0.0232570469, 0.00190296536, 0.015479154, -0.0392853767, 0.0167946275, -0.0133207571, -0.0122287869, 0.00660290662, 0.010319436, 0.0276376978, -0.0118456399, -0.00871660281, 0.0111879036, -0.0416608937, 0.0107600559, -0.0318012312, -0.0533852, -0.0152620375, 0.0111879036, 0.0351218432, -0.0206133295, 0.00203387393, -0.0113220047, -0.000445408834, -0.00441896636, 0.0193744861, 0.0080141658, -0.00283369422, 0.0021631862, -0.00490747951, -0.0263605397, 0.0149427475, -0.000826959789, -0.0308305919, 0.00421462115, -0.0267947745, 0.017522607, -0.0150960069, -0.018033471, 0.0378805064, -0.00865913089, -0.0533341169, 0.00510543864, 0.0166285969, -0.0112326043, 0.0170372874, 0.00170660228, 0.00768849067, -0.0142403115, 0.00335573242, 0.0541514978, -0.0106961979, -0.0201280098, -0.00937433913, -0.0397962406, 0.0199236646, 0.0155174686, 0.0264116265, 0.0190807395, 0.00696689636, 0.0121521577, 0.00557798753, -0.00105764647, 0.0149427475, -0.000899598119, -0.027714327, 0.00879323203, 0.0213923957, -0.00490109343, 0.0295278914, -0.0231804159, -0.0429380499, 0.0169351138, -0.0293235462, -0.0171905458, -0.0227844976, -0.0187486783, 0.0023611458, -0.0111304317, -0.0102428067, -0.0201535523, 0.0109644011, -0.0110665737, 0.0335381664, 0.00411564158, -0.0340745747, 0.0113156196, 0.00567377405, -0.0233464465, 0.0061112009, 0.00521719037, -0.00690303883, 0.00952759851, -0.0374207273, -0.00972555764, 0.0529765114, 0.041916322, -0.00649754098, -0.00854418706, -0.0141253667, 0.0167818554, 0.0199492071, -0.000988201, -0.00441577379, 0.010830299, -0.0115518933, -0.0350963, 0.0217116848, 0.00477337791, 0.00306198606, -0.00130349933, -0.00776512036, -0.0281230174, 0.0062133735, -0.0317501463, -0.0120946858, 0.00930409599, 0.0269480329, -0.0194638874, -0.00977664441, 0.00079463172, -0.000788245932, -0.0416608937, -0.0158367585, -0.012426747, 0.0127396509, 0.0107281264, 0.0262072813, 0.0113730915, 0.00951482635, -0.00476699183, 0.00857611559, -0.0027810114, -0.0115838228, -0.00715847034, 0.004620119, 0.010830299, -0.00699243974, -0.0372419246, 0.0342533775, -0.0136145037, 0.0100320755, -0.00889540464, -0.00314659788, 0.0123501169, 0.00445089536, 0.00692219613, 0.0245342031, 0.00934879575, -0.0182633586, 0.0344066359, 0.0186592769, -0.00555882975, -0.00662206393, 0.011660452, -0.00209932844, 0.00160921901, -0.00210411777, -0.00731172925, 0.0187486783, 0.00779066328, -0.00856334437, -0.0183144454, 0.0257858187, -0.0056961244, -0.0115518933, -0.00606330717, -0.0177397244, 0.00312744058, -0.00520441867, 0.00780343497, 0.0190679673, -0.0138188489, 0.0140615087, 0.095378153, 0.00053241523, -0.00619740877, 0.0132185845, -0.00394322537, 0.0196043737, -0.0081801964, 0.00538641354, 0.00251600123, 0.0112326043, 0.00387617433, -0.00148788898, 0.0161432773, 0.0419418663, 0.00724787125, 0.00547262188, 0.00166669115, -0.0144063411, -0.00333018927, -0.0378038734, 0.00244895043, 0.00394003233, 0.00448601739, -0.00696051074, 0.0178291257, -0.0101981061, -0.0291958302, -0.00622933777, -0.0163220782, -0.00904227793, 0.0171522312, -0.00879961811, 0.000952280883, 0.00274110027, -0.00775873428, 0.0134740165, 0.00758631807, 0.0148022603, -0.00269959262, 0.0335637107, -0.0140870521, -0.00629958138, -0.0234613921, -0.0224013496, 0.00713931303, 0.00906782132, 0.00423697149, 0.0190424249, -0.0344321765, 0.000226096861, 0.0119414264, -0.0165902823, 0.00455306796, 0.0266159717, -0.029246917, -0.00737558724, -0.00313382619, -0.00732450094, -0.0126438634, 0.00164274441, -0.0263349973, -0.0141381389, -0.0212391373, -0.0316224322, -0.0212263651, 0.00481169252, -0.0467950664, -0.0176375508, -0.028863769, 0.00157170254, -0.00416672789, 0.0299876686, 0.0161305051, 0.0124778328, 0.00659652054, 0.035556078, -0.00154855405, -0.0197704043, 0.0183910746, -0.0186592769, -0.0183655303, 0.00987881701, 0.0093424106, 0.016692454, 0.00590685569, 0.00191254402, -0.021788314, -0.00968085695, 0.0219926592, 0.00261338451, -0.0251855552, -0.0057791397, -0.00972555764, -0.0163603928, 0.00902312063, 0.00295662065, 0.027458895, 0.0302686431, -0.0215201117, -0.0196426883, 0.00904227793, -0.00378038757, 8.68567149e-05, -0.00403262628, -0.0229633, -0.0371908396, 0.0230271574, -0.0146362297, -0.0173182618, -0.00444131671, 0.0247768648, 0.0380337648, 0.0232570469, 0.00666676462, 0.0402304754, -0.00373568689, -0.00399431167, -0.000144278936, -0.0191190541, 0.00297258515, -0.00941904, -0.0160411038, -0.00193489424, -0.022873899, 0.00226695533, 0.000827758, -0.0243937168, 0.00611439347, 8.47613774e-05, 0.0220948327, -0.00394641794, -0.00618144451, -0.000353413547, 0.000286362745, -0.0121777011, 0.0142913973, 0.028991485, -0.00383785972, -0.0284550786, -0.0124331322, 0.00092593953, 0.0192084555, 0.0137805343, -0.00863997359, -0.00332699646, 0.00226855185, 0.0137549909, 0.00739474455, 0.00470952, 0.00278580072, -0.0226695538, 0.000850906479, 0.0290936586, -0.00358562102, 0.00753523177, -0.0331039354, 0.00460734731, 0.00789283589, 0.00928493869, -0.0236657374, 0.0105940253, 0.0110154869, -0.000801017508, -0.0287105106, -0.0276887845, -0.00712654134, -0.00708184065, 0.0174842924, -0.03146917, 0.00680086622, 0.0152620375, -0.0203706697, -0.00562588079, 0.0111368168, 0.0121777011, 0.0340234861, 0.0163476225, -0.027714327, 0.00469994126, 0.0148022603, 0.0108622285, 0.00831429847, -0.00267085666, 0.0155302407, -0.0339468569, -0.0212902222, -0.0312392823, 0.00613993686, -0.00928493869, 0.0026979961, 0.0108239138, -0.00182633591, 0.018608192, 0.0200130641, -0.0145085147, 0.0134229297, 0.000917159, 0.00284167635, -0.00232762028, 0.00458499696, 0.0232825894, -0.01682017, 0.000454588415, 0.00773319136, 0.0150321489, -0.0524145626, -0.0245725196, 0.0125736203, 0.00697328243, 0.00638898276, -0.00648476928, -0.00839731377, 0.00198757695, -0.00514056068, 0.0239083972, 0.00318650901, -0.00807802379, -0.00397196133, 0.0028640267, 0.0189913381, 0.0185954198, -0.000274988066, 0.00182633591, 0.00735004386, -0.0128609808, -0.0152748087, -0.000743545417, 0.00796308, -0.00127715792, -0.00318810553, -0.0238062236, 0.00763740437, 0.0214434825, 0.0219288021, 0.0129184527, -0.0250322949, 0.0166413672, -0.021213593, 0.0104216086, 0.0378294177, -0.00323599903, 0.0264371689, -0.00821212586, -0.00664760731, 0.00617186585, -9.91793e-05, 0.0126438634, 0.0129567673, -0.0114114061, 0.0264627133, -0.0265648849, 0.0117626246, 0.00230367365, -0.0167435408, 0.000501284492, 0.00158367585, 0.0102619641, 0.0094892839, 0.000357005541, -0.0318523198, 0.0315713435, -0.0195788313, 0.00862720143, 0.0408690535, -0.0043072151, 0.0133718438, -0.0386468, -0.0299365819, -0.00215839688, 0.00676255114, -0.0110665737, 0.00671146484, 0.00320726284, -0.00166509463, -0.00291032367, -0.0343810916, -0.0114114061, 0.00396238267, -0.0390044041, -0.0104790805, -0.00288797333, 0.0234358478, 0.0080141658, 0.00961061381, 0.00685195252, -0.00509905303, 0.0111815175, 0.00145516184, 0.00933602452, -0.00986604486, 0.0354283601, -0.00814188179, 0.00667953584, -0.0159517024, 0.0151598649, 0.0218266286, -0.0182761308, -0.0125927776, -0.0287871398, 0.0298344102, -0.0218904875, -0.00258305203, -0.00117338891, -0.00444131671, -0.018033471, -0.00598029187, -0.0156324133, -0.0168073978, 0.035990309, 0.00963615626, 0.0121521577, -0.00809079595, 0.00543111423, -0.0119286552, 0.00220309733, -0.017969612, 0.00582703296, -0.00750968885, -0.000553169055, -0.0155046973, 0.0195277445, -0.00656459201, 0.00498091616, 0.000417071889, -0.0232442748, 0.0166030526, -0.0145596005, -0.00542792119, 0.0269735754, 0.00595474895, -0.0154280681, -0.00306837191, -0.000142083823, -0.00710738404, -0.010383294, -0.00189019379, 0.011979741, 0.0220182035, 0.0299621262, -0.0167179983, -0.0121457716, 0.0220182035, -0.0230399296, -0.00977025833, -0.0168329421, -0.00322163082, 0.00333338231, -0.00941265374, 0.00436149444, 0.0175736938, -0.0375484452, 0.0093424106, 0.0132313566, 0.0241255127, 0.00694135344, 0.01019172, 0.0186592769, -0.00332061062, -0.0195277445, 0.00167786621, 0.0110793449, -0.0325930715, 0.01835276, -0.0114114061, 0.0188636221, -0.0309327655, -0.0028672195, -0.00701159704, 0.0330017619, 0.00791837927, 0.0117051527, 0.00269161025, 0.00412841327, 0.00449878862, 0.00655182032, -0.0130780973, 0.00353453471, -0.0167563129, -0.0366544314, -0.0110665737, 5.42792113e-05, 0.00523954025, -0.00820574, 0.00667953584, -0.0057152817, -0.00982134417, -0.0140742809, 0.0278931297, -0.0165264234, 0.0426826179, 0.0164881088, 0.0207921304, 0.0328485034, 0.0178674404, 0.0209837053, -0.00661567831, 0.00324557768, 0.0174332056, -0.0202046391, -0.00321843801, -0.0160921905, 0.0170883741, -0.0167307686, 0.0131419552, -0.00655182032, -0.00833984092, 0.00773957698, -0.0236912798, 0.00253036921, 0.0274078101, 0.0189657956, -0.00459138257, 0.0230399296, -0.0213285368, -0.0395152681, 0.0386212543, -0.0102108773, 0.0414054617, -0.0132441279, -0.0184932463, 0.0126885641, -0.017011743, -0.0203578975, -0.0102811214, -0.0369098634, -0.0090933647, 0.0133973872, 0.00149826589, 0.0139593361, -0.0124650616, 0.00645284029, 0.0143680265, -0.00918915123, 0.00939349644, -0.0124331322, 0.00855057221, 0.0101470202, -0.0231037866, 0.018927481, 0.00151822146, -0.00620060181, -0.0236657374, -0.00432318, -0.0169095714, 0.0116029801, -0.0137805343, 0.0110282591, 0.00452113897, -0.00268522464, -0.00998737477, 0.0113986349, -0.016564738, 0.00695412513, 0.0093232533, -0.0192978568, -0.00339724, -0.00469355565, -0.0203451253, 0.00729257194, -0.0250833817, 0.020460071, -0.0145468293, 0.00267404946, 0.0143424841, 0.0145596005, 0.00303963595, 0.01019172, -0.000858090469, 0.00370375812, 0.00345471222, -0.0118264826, -0.0172160883, -0.00660929224, -0.00459776865, 0.0100703901, 0.00764379045, 0.00397834694, -0.0139337927, -0.00391768198, 0.0231421012, 0.00746498816, 0.0367566049, -0.008346227, -0.00407413393, -0.0176886376, 0.0545091, -0.000880440755, 0.000108658205, -0.0211369637, 0.01988535, 0.00269320677, -0.0308050495, -0.0191573687, -0.00647838367, 6.29598944e-05, -0.00984050147, -0.000593479315, -0.0110346442, 0.0210731067, 0.0148661183, -0.0137805343, 0.00244895043, -0.0147128599, 0.00638578972, 0.0207282733, 0.0150193777, 0.00104008545, -0.00332380366, -0.00528743397, -0.00360158528, -0.00770764798, -0.0169862, 0.0145212859, -0.00529062655, 0.0275099818, 0.00375484442, 0.00545027154, -0.000249844015, -0.00195724447, -0.0100576188, 0.028608337, -0.00415076315, 0.0025112119, -0.00581426173, -0.0158878453, 0.0138954781, 0.0164114796, 0.0105684819, -0.00344194076, 0.00540876389, 0.0101981061, -0.00546304323, -0.00618144451, -0.00899757724, -0.0100448476, -0.0132441279, 0.0256197881, 0.00659013493, 0.00534490589, -0.02281004, -0.00184389681, 0.0111879036, -0.00216478272, 0.0151854083, -0.00255750888, 0.0141636813, 0.0357348807, 0.0059451703, -0.000682481274, -0.016117733, 0.00592282, 0.020460071, -0.0246108342, -0.0302941855, -0.00690942444, -0.0165391956, -0.00594836334, 0.00761186145, -0.00539279962, 0.0140487375, -0.00636982545, 0.00368460058, 0.0133079858, 0.00308752921, -0.0139593361, 0.0124459043, -0.00504477369, 0.00625488115, -0.0165008809, 2.11529277e-05, -0.00564823113, -0.023320904, -0.00263573462, 0.00587173365, 0.0148150325, -0.0218010861, 0.00386978849, 0.00474783452, 0.00690942444, 0.000446606165, 0.00925300922, 0.00727980025, -0.0276121553, -0.0130078532, 0.0125863915, -0.017778039, 0.0179951545, 0.00516291102, -0.0320311226, -0.0045371037, 0.016245449, -0.00331422477, 0.00500965212, -0.00523634767, -0.0101470202, -0.0112900762, -0.0265904292, 0.0148022603, -0.00509266742, 0.017905755, -0.00862720143, 0.00396557525, -0.000981016899, 0.0165136531, -0.00337169692, -0.0332061052, 0.00187103637, 0.0125608481, -0.0146234585, -0.0131036406, 0.00165232306, -0.0373440981, -0.0120946858, -0.00761824707, -0.0118903406, -0.00519164698, -0.00119893206, -0.00704352604, -0.00594836334, -0.0164114796, -0.0104024513, 0.0156835, 0.0198470335, -0.0285827946, 0.0203706697, 0.0102491928, 0.0154663827, -0.0295278914, -0.00359519967, 0.00664760731, -0.00296141, 0.0126119349, 0.0256453305, 0.0321588367, -0.0333082788, -0.00502242381, -0.00216797553, -0.0111559751, -0.00294544548, 0.0125863915, 0.00736281555, -0.00443493109, -0.0212008227, -0.00256229821, -0.0212263651, -0.00418907823, -0.000992192072, -0.00595794199, 0.0010305068, -0.00681363745, 0.000744742749, 0.00706268335, -0.00919553731, 0.0120563712, 0.0084931, 0.00290393783, -0.0113347769, -0.00567377405, 0.00846117176, 0.00689026713, 0.00986604486, 0.0371652953, -0.0136272749, 0.0140231941, -0.0142786261, -0.0326186121, 0.00369098643, -0.0032152452, -0.0223885793, -0.0114624929, -0.00715847034, -0.00838454161, -0.0256708749, -0.00192850851, 4.73446453e-05, 0.0163603928, 0.00553328684, -0.00846117176, -0.00503519503, -0.0166413672, 0.00351537718, 0.00196522684, 0.00197320897, -0.0205750149, 0.00237551378, 0.000790640595, -0.0201790947, 0.00509905303, 0.0150704635, 0.00360477832, -0.00898480602, -0.002883184, 0.012043599, -0.00727341464, -0.0238062236, -0.0371652953, -0.0119605837, 0.00604095729, 0.0154408393, 0.00175768859, 0.0143680265, 0.022363035, -0.00685195252, -0.00910613593, 0.0109452438, -0.0220692884, 0.00268043531, 0.0203962121, -0.00267404946, 0.00708184065, 0.0134357018, 0.0106898118, -0.0143807987, -0.00668592192, -0.017267175, 0.00311945821, -6.35086762e-05, 0.0341256596, 0.0318778604, 0.000675696356, 0.00623891642, -0.0186592769, 0.00320247351, -0.0268714037, -0.0151981795, -0.0138188489, -0.0145212859, -0.0237806812, 0.00200354145, -0.00945735443, -0.00854418706, 0.00353772752, 0.0232442748, -0.0262072813, -2.21631799e-05, 0.0133718438, 0.00232442748, -0.00420184946, 0.00917638, -0.0151854083, 0.0127779655, 0.0175098348, -0.0261306521, 0.000989797409, -0.0110154869, -0.0274844393, -0.000229090205, -0.0232570469, 0.0041411845, 0.0377017036, -0.00021272662, 0.0268203169, -0.0249045789, -0.0193361714, 0.00104168197, -0.00854418706, -0.0081801964, 0.000210331942, -0.004652048, -0.0102364207, 0.0129120667, -0.0109197, -0.00263413833, -0.0129695386, 0.00692219613, 0.00279537938, -0.00117019599, 0.00976387225, 0.00251280819, -0.00767571945, -0.0093232533, 0.00586534804, 0.0256581027, -0.0180462413, 0.0171905458, 0.0256070159, -0.00522357598, -0.0151981795, 0.00747776, -0.00710099796, 0.0130525539, -0.0153131234, -0.0132568991, 0.0079311505, -0.00596752064, -0.0060601146, 0.00661567831, -0.00545985, 0.0011821693, 0.00237870659, 0.0149682909, 0.0213668533, 0.00498410873, 0.00858250167, -0.00374845858, 0.00100336724, 0.0159517024, 0.0135889603, 0.0115199648, -0.024470346, -0.00901673548, -0.00398473255, 0.028863769, -0.0209453907, 0.000106163752, 0.000391528738, 0.00924662314, 0.00400069728, -0.00944458321, 0.00414437754, -0.0185060184, -0.0154280681, -0.00239147828, -0.00135937496, 0.000624610053, 0.0194255728, -0.0164114796, 0.00647838367, 0.0351473875, 0.00576317543, -0.00214562542, 0.0142658539, 0.00725425733, 0.00664122123, 0.0172799472, -0.0196426883, 0.0162709914, -0.00897203479, -0.00634747511, -0.000812192622, -0.0302941855, -0.00605372852, -0.00645922637, -0.0195532888, -0.0323887244, 0.000466162659, -0.00233240961, 0.00902950671, -0.00230527017, 0.0279953014, 0.00588450534, -0.0123373456, 0.0123309596, -0.00158766692, 0.00446366705, -0.00759908976, 0.0102875074, -0.000530020567, 0.0091572227, 0.00615590112, 0.0188763943, -0.00568335271, 0.00590366265, 0.0278931297, 0.0164497942, 0.0295278914, 0.0130461687, -0.0143807987, -0.0185443331, 0.00649754098, 0.0105365533, -0.00794392265, 0.0374207273, 0.0393620059, -0.0094254259, -0.00344513357, -0.0329251327, -0.0120180566, 0.00695412513, -0.0194383431, -0.00107840018, -0.015734585, 0.0123437317, -0.0378294177, 0.0215584263, 0.0118137114, -0.0041922708, -0.0249428954, -0.0147000877, -0.000202549272, 0.00770126237, 0.000349023321, 0.0215456542, -0.000383546489, 0.0385190845, 0.0106451111, -0.00897842, -0.00339404726, 0.00184708962, -0.00876769, -0.00290393783, -0.00170660228, 0.0028001687, 0.0228483547, -0.00501603773, -0.00129551708, -0.011085731, 0.027714327, -0.0291702878, -0.000456583977, 0.016437022, 0.00349621987, 0.00173853128, 0.00796946511, -0.0147511745, 0.00155015045, 0.0228483547, 0.00966808572, 0.0110665737, 0.0114305634, -0.0232187305, 0.0137549909, 0.0216095131, 0.00716485595, 0.0082632117, 0.00727341464, -0.0238700826, 0.0117179239, -0.0226312391, 0.00488193613, 0.0173821189, 0.0134229297, -0.00423697149, -0.0132824425, -0.00571208866, 0.0104407659, -0.0080141658, -0.0111112744, -0.00792476535, 0.00507351, -0.0119605837, -0.00331741781, -0.00525231194, 0.0021440289, 0.0298344102, 0.0226567816, 0.000658135454, -0.0109644011, 0.0101342481, -0.00054837967, 0.0155813266, 0.0182505865, 0.0115008075, 0.0189530235, 0.0028640267, -0.0192212276, 0.0106195686, 0.0311115682, -0.0109452438, -0.00699243974, -0.00634108903, -0.0175736938, 0.0209837053, -0.000239267552, 0.00923385192, -0.0108430712, 0.00752246, 0.00338446861, 0.0214307103, -0.00165711239, -0.000411484332, 0.0205622427, 0.00695412513, 0.00493621547, -0.00559075875, 0.00724787125, 0.00559714483, -0.012873752, -0.0352240168, 0.00927855261, 0.0306773335, -0.00446047401, -0.00223821937, -0.0144063411, -0.0140104229, 0.0015740972, 0.00132584956, 0.0109835584, -0.0011151185, 0.01172431, -0.0327463299, -0.00830791239, -0.0118200965, -0.000640574552, 0.0030300573, 7.358625e-07, -0.00979580171, 0.0189913381, 0.00293746335, -0.00782897789, -0.00200833078, -0.00208974979, -4.19067437e-05, 0.000742747157, -0.0113347769, 0.00482765678, 0.0211497359, -0.0236529652, 0.0142658539, -0.00534490589, 0.0139976507, 0.00546942884, 0.00987881701, 0.00326952431, -0.00461373292, -0.00888901949, -0.00867190212, 0.0183655303, 0.00286083389, -0.0184038468, 0.0313925408, 0.0290170293, 0.00757354638, 0.0162582211, 0.0258752201, -0.0316735171, -0.000937114644, 0.0397196114, 0.00347706256, 0.015415296, 0.000924343069, 0.0029821638, 0.00182793231, -0.0232187305, 0.00296779582, -0.00747776, 0.00205143495, -0.035990309, 0.0103769079, -0.0284295361, -0.00470632687, -0.0112709189, -0.0010289104, -0.0133590717, 0.00306996843, 0.0126310922, 0.00367502193, -0.00315138721, -0.00163635856, 0.0241127424, 0.00839731377, -0.0173438042, -0.028736053, -0.00540237827, -0.0295534339, 0.00166669115, 0.00210411777, -0.0122287869, 0.0184166171, -0.00312105473, -0.00774596306, -0.0134229297, 0.0102172634, -0.0164625663, -0.0160411038, 0.00112230249, 0.016692454, 0.00829514116, 0.0082632117, -0.000565142371, 0.0165519677, -0.0138316201, -0.00157808827, 0.0119988993, 0.0205367, -0.00394322537, -0.0146745443, -0.00119973021, -0.015479154, -0.00440300209, 0.0139976507, 0.0115582794, 0.0231037866, 0.00735643, -0.0181228705, -0.00732450094, -0.00872298889, -0.00402304763, 0.00982773, -0.0119861271, 0.00936795305, -0.00460096169, 0.0045690327, -0.01038968, 0.00300930347, 0.00968724303, 0.00349621987, 0.000926737732, 0.0124969902, 0.0177141801, 0.00661567831, -0.000574321952, 0.00575359631, 0.00862081628, 0.00655182032, -0.00249365089, 0.0048372359, 0.00358881382, -0.00175449566, -0.00122447521, 0.00454029627, -0.0117753958, -0.00452433201, 0.0298344102, -0.0182633586, 0.00685833814, -0.00664760731, 0.0261051077, -0.00653904863, -0.00945096835, -0.0208687615, 0.0103513654, -0.0111176595, -0.00514375372, 0.000445408834, -0.00634428207, 0.0125225335, -0.0119541986, -0.00155414152, -0.0152620375, -0.0154536115, -0.0104024513, 0.00692858174, 0.010766441, -0.0158367585, -0.0103513654, -0.0082632117, -0.00297258515, 0.00845478568, -0.00307316124, -0.0057791397, 0.00860165898, -0.0190424249, 0.0183399878, 0.0151598649, -0.0178802107, 0.0250195246, -0.000445807935, 0.0136145037, -0.0202940404, 0.0163859371, 0.00574082509, 0.00889540464, -0.00230527017, 0.0337425135, -0.00419546384, -0.00654543424, -0.00282092253, 0.0230143853, -0.00619740877, -0.0136528183, 0.0140231941, 0.0173821189, -0.00741390185, -0.029119201, 0.024023341, -0.0396685265, -0.0113220047, 0.0369098634, 0.0021599934, 0.00672423653, 0.0210731067, 0.0179951545, 0.0175609216, -0.0138188489, 0.00325675285, 0.0055492511, 0.0103641367, -0.00473825587, -9.59739282e-06, -0.033895772, -0.00692858174, -0.0155813266, -0.00676255114, 0.00529701263, 0.0183655303, 0.0136911329, -0.0139465649, -0.00495217973, 0.0124075897, 0.00379635207, -0.000643368287, 0.00888263341, -0.0208815318, 0.000739953364, -0.00385382399, -0.00633470342, 0.00556521583, 0.0112709189, 0.0164753366, -0.0135123311, -0.0228228122, -0.0221586898, 0.0191701408, 0.016692454, -0.00473825587, -0.0135506457, -0.0202174094, -0.012554463, -0.0221203752, -0.0187614504, -0.0155046973, 0.0132185845, 0.00306038978, 0.0155430119, -0.00226695533, -0.00348025537, 0.00821212586, -0.00651031267, -0.00802693795, 0.017394891, 0.0187231358, -0.0110091018, 0.00255431584, 0.00382828084, 0.0132441279, -0.00740113, -0.00792476535, -0.00758631807, 0.00503200246, -0.0169606581, -0.0255942456, -0.0194638874, -0.0220565181, 0.0120819146, 0.00816742517, 0.00393045368, -0.0101342481, -0.0162071344, 0.0248279497, -0.0144318845, -0.0156835, 0.00994906, -0.00838454161, -0.00906782132, -0.0155940987, 0.00322482386, 0.00172416319, 0.0143424841, -0.00709461235, 0.0143169407, -0.0163859371, -0.00588450534, 0.0135378744, 0.00161640299, -0.0188380796, 0.00333657512, 0.0044540884, -0.0190168824, 0.0198725779, -0.00855695829, -0.0122607164, 0.0209709331, -0.0122160157, 0.0062453025, -0.00814826787, -0.0132185845, 0.0175609216, 0.0104790805, 0.00404220494, 0.00898480602, -0.0135378744, 0.0063283178, 0.00228611263, 0.0141509101, -0.00712015573, -0.0306007043, -0.00614632247, -0.0143169407, -0.00390810333, 0.00285604433, 0.005862155, -0.00717762765, -0.00164434081, -0.00304442528, -0.00534809893, -0.00221746555, -0.00927216653, 0.0252238698, -0.00268362812, -0.0350196697, -0.00436468748, 0.0086974455, -0.0115135787, 0.0221586898, -0.002883184, -0.0188125372, -0.00995544624, -0.00471271295, -0.011915884, 0.00287200883, 0.0158878453, 0.0157856718, -0.0129567673, 0.0146873165, -0.0322354659, -0.00291990233, -0.000214323067, -0.000515253399, -0.031724602, -0.0204345267, -0.0153514389, -0.0128865233, -0.0187231358, -0.00326952431, -0.0367310606, -0.00153258955, 0.0434744544, -0.00643049041, -0.00932963844, -0.0011470475, 0.0310860239, 0.00607288582, 0.00866551697, -0.028991485, -0.0148788895, 0.00649115536, 0.0163859371, 0.00378677319, -0.00648796232, 0.0103322081, -0.00231804163, 0.0129567673, 0.0139976507, 0.0057472107, -0.00253196573, -0.00200833078, 0.00733088655, -0.00609523617, 0.00923385192, -0.00658374932, -0.00545346458, -0.0109644011, -0.00235795276, -0.00685195252, 0.0209198464, -0.0147384023, -0.00055676105, 0.0106961979, 0.00366863608, 0.0202429537, -0.0144063411, 0.00633789646, -0.0149810631, -0.0103449794, -0.0177397244, -0.0236146506, -0.00879323203, -0.000518446323, 0.0204089843, -0.00749053154, -0.0103002787, 0.00591962691, -0.00919553731, 0.00691581, -0.000368579786, 0.0268714037, -0.00193808717, -0.00565461675, -0.0140359653, 0.0246491488, 0.0137166763, -0.0143041685, 0.000232283099, -0.0304474458, -0.0162071344, -0.018672049, -0.0112006748, 0.00107760204, 0.0176247787, 0.0245342031, 0.00268362812, -0.0284806229, 0.00915083662, 0.00273790723, 0.0137422197, -0.0164497942, -0.00296939211, -0.0229122136, 0.00449559605, 0.0181611851, 0.012931224, 0.00489790086, -0.0136655895, -0.000455386617, 0.0178163536, 0.0203195829, 0.0114369495, -0.00173374196, 0.00691581, 0.0111687463, -0.00778427767, 0.0165519677, 0.0171522312, 0.0319034047, -0.0106578832, -0.0174076632, 0.00806525256, -0.00187582569, -0.00134181406, 0.0160027891, 0.0107345125, -0.0158495307, 0.000334056618, 0.0130908685, -0.0174204335, -0.030651791, 0.0109260865, 0.00623253081, -0.0156068699, 0.0147128599, -0.00964892842, 0.00049050845, 0.0156068699, 0.00018458924, -0.00898480602, 0.0175353792, 0.00390171749, -0.00447005266, -0.00466801226, 0.0241766, -0.0127779655, 0.0163859371, -0.0177524947, -0.0122862598, -0.0111176595, -0.00735643, -0.0179951545, -0.0296556074, 0.0132058132, -0.00121090538, 0.0118967267, 0.0232315026, 0.00990435947, -0.00291192019, 0.00128833309, 0.0318267755, 0.00263254181, -0.00698605413, 0.00183910748, 0.0113667054, 0.022043746, 0.0194128, -0.0148533471, -0.0240999702, -0.040460363, -0.00555882975, 0.000933921721, -0.0268714037, 0.00944458321, -0.0226950962, 0.0020801709, 0.011468878, 0.0085952729, -0.0106514972, -0.000198258815, 0.0045371037, 0.0109707871, 0.00877407473, -0.022937756, -0.00333976792, -0.0043902304, -0.00559714483, 0.0228611268, 0.00325675285, 0.0110921171, 0.00265648845, -0.00369737227, 0.00154695753, 0.00070483156, -0.00600264221, 0.0155557841, 0.00343874772, 0.00204664562, -0.0108622285, 0.00983411632, 0.00393045368, -0.00496814447, -0.0142403115, 0.00115742441, -0.0157473572, 0.00457861135, -0.0197831765, 0.0265904292, 0.00452752504, 0.00256868382, 0.0265904292, -0.0172927193, -0.0118200965, 0.000786250341, 0.0199619792, 0.00281294039, 0.012873752, 0.0199364349, -0.00135059457, 0.0112453755, -0.00374845858, 0.00322322734, 0.00741390185, 0.017394891, -0.00324238464, 0.0165264234, 0.00924662314, -0.00119254622, 0.00675616553, 0.000141784491, 0.000659731915, -0.00366544328, -0.00124842185, -0.0154663827, -0.0210603345, -0.00458819, -0.0162709914, -0.0208176747, -0.0217372272, 0.00622933777, -0.00171458453, -0.0162709914, -0.0129503813, -0.0314436294, 0.0143297119, 0.0301664714, 0.0297322366, -0.00139689154, -0.0234997068, 0.0183655303, -0.0150576923, -0.0097064, 0.00883793272, -0.00625488115, 0.00704991166, -0.0118264826, -0.00383785972, 0.0103641367, 0.00496814447, 0.00952759851, 0.0198598057, -0.00637301803, -0.00426890049, -0.00339085422, -0.00685833814, 0.011852026, -0.00347706256, 0.0120755285, 0.00595155591, -0.0202557258, -0.0105684819, -0.00945735443, 0.000644166546, 0.00885070488, -0.0100703901, 0.0256581027, -0.0322099216, -0.0193106271, 0.00699882535, -0.0081993537, -0.0264116265, 0.0140998233, -0.0288893133, -0.0143552553, -0.0157090425, -0.0105301673, 0.024278773, -0.00652947, 0.0116859954, 0.00452433201, 0.0101278629, 0.00667953584, -0.0260412507, 0.000528823235, 0.0140231941, 0.0113475481, -0.00978941564, -0.00829514116, -0.0146745443, -0.0169606581, -0.00961699896, -0.00800778065, -0.00962338503, -0.00267085666, -0.0131036406, 0.00709461235, 0.00315617654, 0.000409887871, 0.00773957698, 0.00954675581, -5.31816549e-05, -0.00122208055, 0.00822489709, -0.0143041685, -0.0106706545, -0.00423058588, 0.00417949958, 0.00667315, -0.0150576923, 0.0100193042, -4.49000836e-05, -0.017267175, 0.0155685553, 0.0103322081, -0.00740113, -0.00829514116, -0.00389213883, -0.0145851439, -0.017905755, -0.0060601146, -0.00359200663, 0.00947651174, 0.0143935699, 0.0218777154, 0.00724787125, 0.0157601293, -0.00854418706, 0.0203578975, 0.0194000285, 0.00162917457, -0.00876769, 0.0100193042, 0.00858888682, 0.00264850631, -0.0184677038, -0.012362889, 0.00096664892, 0.0232698172, -0.0351473875, 0.0120308278, -0.0282762777, -0.00545665715, 0.0243298579, 0.00311945821, -0.00235795276, 0.016947886, 0.00470952, -0.0125800055, 0.0167946275, 0.000488912046, -0.00117658172, 0.0477401651, 0.00235316344, 0.00639217533, -0.0113028474, -0.00717762765, -0.00469036261, -0.0184166171, 0.02038344, 0.0120372139, 0.00896564871, -0.0183783025, -0.00535129197, -0.0024441611, 0.0142658539, 0.00357604213, 0.00359519967, -0.00429125084, -0.0214307103, 0.00186465064, 0.00869105943, 0.00512459641, -0.0260923374, -0.0142658539, 0.00095707021, -0.00865913089, -0.00193649076, -0.00585576938, -0.01293761, 0.00855057221, 0.0169862, -0.0155430119, 0.00521399733, 0.0134484731, -0.011596594, -0.00802693795, -0.00115343323, -0.0316990614, -0.00626765238, 0.00291032367, -0.000395120733, -0.0212519076, 0.00404539797, 0.00669230754, 0.0218904875, 0.00950205512, -0.010319436, -0.00239626761, 0.00717762765, -0.0243043154, 0.000506472948, -0.0207410455, 0.00822489709, -0.0202429537, -0.000765496516, 0.0145851439, 0.0487108044, -0.00508947438, 0.0140742809, -0.0087804608, -0.00710099796, -0.00230048085, -0.012809894, 0.0113603203, -0.017969612, -0.0246874634, 0.0101023195, -0.0183783025, -0.00552690076, 0.00102332281, -0.00210731057, -0.00606969325, -0.0127332648, 0.0157218147, -0.0242404584, 0.00779704936, -0.0117817819, 0.0100320755, -0.00383785972, 0.0108622285, 0.00507351, -0.010894157, 0.0110729598, 0.0216222834, 0.00899757724, 0.00512778899, 0.00121170364, -0.0118073253, -0.0085122576, 0.0124522895, -0.000124522892, -0.00217276486, 0.00217276486, -0.00482446421, 0.0139210215, -0.000462969765, 0.0217244569, -0.0245469753, 0.00516291102, -0.00304761808, -0.00877407473, -0.0224013496, 0.010383294, 0.0156707279, 0.00685833814, -0.00679448, 0.0103641367, 0.00274429307, -0.0127268787, 0.0112517616, -0.0128865233, -0.00490109343, 0.00683279475, -0.0211114213, -0.00815465301, -0.000652947, -0.0109197, -0.00743305916, 0.000193469474, -0.0120499851, -0.000654144329, 0.0182761308, -0.00788645074, -0.017969612, -0.00176247791, -0.0283529069, 0.0139082503, 0.0109388577, 0.00365905743, 0.0147256311, 0.0220182035, 0.00299493526, -0.00683279475, -0.0243298579, -0.00729895756, 0.0391832069, 0.00413160585, 0.00364309293, -0.00197161268, -0.021660598, -0.0110538015, -0.0134740165, -0.00586854061, 0.0114816502, -0.0305496175, 0.00484681455, -0.00103848905, -0.000890019466, 0.012171315, 0.0149299763, 0.017522607, -0.00671785092, 0.0174459778, 0.00570251, -0.0236018784, -0.0140104229, -0.00365586462, -0.00807163864, -0.0138954781, 0.00564823113, 0.000847713556, 0.0136655895, -0.0226695538, -0.00123325561, 0.00256070169, 0.00916999392, 0.0140742809, 0.0206899587, 0.00457541831, 0.0159517024, -0.0130078532, 0.00629319577, 0.00685195252, -0.0236274227, 0.000144179154, 0.0124075897, 0.0060792719, -0.000916360819, -0.0250322949, 0.00316735171, 0.00748414546, -0.0128992954, 0.00956591312, -0.0114114061, 0.0285827946, -0.0252366401, 0.0202301815, 0.0202557258, 0.0203195829, 0.000779465481, -0.0111879036, -0.009240238, 0.00490109343, 0.00947012659, -0.00665399292, 0.00707545504, -0.0048532, 0.00457222527, 0.0100767761, 0.00171618094, -0.0177269522, -0.00668592192, -0.00741390185, -0.0081801964, -0.00825044047, 0.00826959778, -0.0104982387, -0.0140998233, -0.00325675285, 0.00669869361, -0.00899119209, -0.00920192339, -0.0190424249, 0.0302175563, -0.0136145037, -0.0254154429, -0.0131802699, -0.0168073978, -0.00783536397, 0.0138954781, -7.63800344e-05, 0.0280463882, 0.0117562385, -0.0149938343, -0.0131164119, 0.0162837636, 0.0260157064, -0.0151470928, 0.0232059602, 0.0126438634, -0.00133702473, -0.00844201352, 0.00837177, 0.000894010533, -0.00492025074, -0.0112900762, 0.0228228122, -0.0364756323, 0.00635705376, -0.000962657796, 0.00186624704, 0.0226695538, -0.00545346458, 0.00782259274, 0.00838454161, 0.00820574, 0.000624210923, -0.0249939803, 0.0214179382, -0.0119031118, -0.0197831765, 0.000749132945, -0.00527466228, -0.00364628597, 0.0101023195, -0.028863769, 0.00347067672, -0.00183272164, 0.00948289782, 0.00355049898, 0.000570330827, -0.0175353792, -0.0209453907, -0.00900396332, -0.0275355261, 0.0140487375, -0.0372674689, 0.0203578975, 0.00327271712, 0.00982134417, 4.76439782e-05, 0.0128929093, 0.00298854965, -0.0297833234, -0.0163348503, 0.0302686431, 0.0145468293, -0.00206420664, 0.00663483562, 0.00766294776, 0.00371972239, 0.0151981795, 0.013065326, -0.0135761891, -0.017203318, -0.0116029801, 0.0192978568, -0.0240999702, 0.0216861423, 0.021213593, -0.0134101585, 0.0272290073, 0.0080333231, -0.00234039198, 0.00941265374, 0.0085952729, 0.001473521, -0.00356007786, 0.00727980025, -0.00525231194, -0.0260284785, -0.00084372249, -0.00118855515, -0.00733088655, -0.00304123224, 0.00998737477, -0.00518526137, 0.0157090425, 0.00163955148, 0.00855695829, 0.00326633151, 0.00721594226, -0.0116923805, -0.00900396332, -0.0287615974, -0.0118392538, 0.041916322, 0.0147767169, 0.019182913, -0.013703905, -0.00710738404, 0.0171266887, -0.0214562528, -0.0123501169, 0.0172544029, 0.0130589399, -0.0252110977, -0.00198119134, -0.0118264826, -0.00166349823, 0.0155430119, 0.0175098348, -0.00825682655, 0.0291447435, -0.000520441856, 0.00408371259, -0.0174715202, 0.0128226653, 0.00338446861]
|
24 Nov, 2024
|
Competitive Programming – A Complete Guide
24 Nov, 2024
Competitive Programming is a mental sport that enables you to code a given problem under provided constraints. The purpose of this article is to guide every individual possessing a desire to excel in this sport. This article provides a detailed syllabus for Competitive Programming designed by industry experts to boost the preparation of the readers.
Related Course
Competitive Programming Course
Get ready to level up your programming skills with this Competitive Programming – Self Paced Course. Learn the Fundamentals of programming, DSA, Mathematical algorithms, and much more. So, why wait? Dive into the world of Programming by enrolling in this course today!
Table of Content
What is Competitive Programming?
Basics of Competitive Programming
Basics Of Array , String, Greedy and Bit Manipulation
Number Theory and Combinatorics
Searching, Sorting and Basic Data Structures
Tree and Graphs
Recursion and Dynamic Programming
String Algorithms
Geometry and Game Theory
Advance Data Structures
What is Competitive Programming?
Competitive programming is a mind sport, where people compete against each other to solve some programming questions/logic with an efficient approach and within a time constraint. The goal of competitive programming is to write code to solve a problem within a given timeframe.
For those aiming to dive into competitive programming, the GeeksforGeeks Practice Platform offers a wide variety of problems to help you build speed and accuracy.
Why Should You Do Competitive Programming?
Competitive programming is the best way to master your analytical thinking, and logical thinking and improve your coding skills. It is now being considered by many tech giants like Google and Facebook. Also, Facebook organizes the Meta Hacker Cup annually to promote all the Competitive Programmers around the world to compete against one another and earn a chance to get hired at Meta.
Here are some reasons about why you should start Competitive Programming:
Mental Agility and Quick Thinking: By practicing competitive programming, you start thinking quickly and within the given timeframe and this improves your mental agility and helps enhance your thinking ability.
Competitive Spirit: Competitive programming can be fun for those who enjoy the thrill of competition. Solving challenging problems that too within a timeframe boosts confidence and a sense of accomplishment.
Career Prospect: Competitive programming is very important when it comes to technical interviews for software engineering-related jobs. Many tech giants use competitive programming contests as a medium of recruitment. Companies like Google, ServiceNow, Atlassian, etc. have technical interviews based on competitive programming problems.
Learning Opportunity: In Competitive programming, we get a wide range of variety of problems and various arithmetic concepts. Competitive programming exposes various data structures and algorithms which help us better understand the complexity of problems.
Personal Growth as a Programmer: Competitive programming is one of the best ways to grow as a programmer. It helps you get a command over problem-solving, as you’ve to solve challenging problems within a time limit.
Networking: Participating in various coding contests gives you a chance to be a part of communities with like-minded people. Here in these communities, you get various important resources and guidance from experts who can help you get so many opportunities like referrals, job-opening information, mentorship, etc.
Basics of Competitive Programming:
What is Competitive Programming and How to Prepare for It?
Competitive Programming (CP) Handbook with Complete Roadmap
Fast I/O: CPP, Java, Python
Useful libraries: CPP, Java, Python
Input/Output Files: Set 1, Set 2
Tips and Tricks: Set 1, Set 2
Input Methods: CPP, Java, Python
Template: CPP
Language: CPP, Java, Python
Time Complexity: Analysis
Setting up Competitive Programming Environment: Sublime: CPP, Visual Studio: CPP and Python
CSES Problem Set
Basics Of Array , String, Greedy and Bit Manipulation
Reverse an array(Related Problems: Problem 1, Problem 2)
Sum of Digits
Program to Check if a Given String is Palindrome in C, Python (Related Problem)
Sum of array elements(Related Problem)
Maximum and Minimum element of array(Related Problem)
Counting frequencies of array elements(Related Problems: Problem 1, Problem 2)
Float and Precision: CPP, Java, Python
Prefix sum, 2D Prefix Sum, Difference Array | Range update query in O(1): (Related Problems: Problem 1, Problem 2)
Coordinate Compression: (Related Problem)
Kadane Algorithm: (Related Problem)
Activity Selection Problem: (Related Problem)
Job Sequencing Problem: (Related Problem)
Sliding Window: (Related Problem)
Logical Operators: CPP Set 1, Set 2, Java, Python
Bit Manipulation: Set 1, Set 2, Set 3(Related Problems: Problem 1, Problem 2, Problem 3)
Bitset CPP
Top 50 Array Coding Problems for Interviews
Top 50 String Coding Problems for Interviews
Number Theory and Combinatorics
Prime Number(Related Problem)
Sieve of Eratosthenes(Related Problem)
Segmented Sieve (Related Problem)
Find all divisors of a natural number (Related Problem)
Least prime factor of numbers upto N (Related Problem)
All prime factors of a number(Related Problem)
Prime Factorization using Sieve O(log n) for multiple queries
Sum of all factors of a number(Related Problem)
Gcd of Two numbers, Lcm of two numbers(Related Problem)
Linear Diophantine Equations
Euclidean algorithms (Basic and Extended)
Euler’s Totient Function(Related Problem)
Euler’s Totient function for all numbers smaller than or equal to n
Inclusion Exclusion Principle
Pigeon Hole Principle
Modular Operations
Modular Inverse: (Related Problem 1, Problem 2)
Chinese Remainder Theorem: Set 1, Set 2
Power(x, y) in O( logN )
Power(x, y) % mod: (Related Problem 1, Problem 2)
Matrix Exponentiation: (Related Problem)
Permutation and Combination: Set 1, Set 2, Quiz 1, Quiz 2
nCr: Set 1, Set 2
nCr % mod: Set1, Set 2: (Related Problem)
nCr % mod for multiple queries: (Related Problem)
Catalan numbers: Applications and Related Problem
Gaussian Elimination
Searching, Sorting and Basic Data Structures
Linear Search(Related Problems: Problem 1, Problem 2)
Binary Search, Unbounded Binary Search(Related Problems : Problem 1, Problem 2, Problem 3)
Inbuilt sorting O(logN): CPP, Java, Python(Related Problems: Problem 1, Problem 2, Problem 3, Problem 4)
Merge Sort(Related Problems: Problem 1, Problem 2)
Quick Sort(Related Problems: Problem)
Stack: Implementation in CPP, Java, Python(Related Problems: Problem 1, Problem 2, Problem 3)
Queue: Implementation in CPP, Java, Python(Related Problems: Problem 1, Problem 2 , Problem 3)
Deque: Implementation in CPP, Java, Python(Related Problems: Problem)
Priority Queue: Implementation in CPP, Java, Python(Related Problems: Problem 1, Problem 2, Problem 3)
Tree and Graphs
Tree BFS, Tree DFS (Related Problems: Problem 1, Problem 2, Problem 3)
Graph BFS, Graph BFS 2, Graph DFS (Related Problems: Problem 1, Problem 2)
Dijkstra’s Shortest Path Algorithm(Related Problems: Problem 1, Problem 2)
Bellman – Ford Algorithm(Related Problem)
Floyd Warshall Algorithm(Related Problem)
0-1 BFS, Dial’s Algorithm
Detect cycle: Directed, Undirected(Related Problems: Problem 1, Problem 2)
Disjoint set(union-find): Set 1, Set 2, Set 3(Related Problem)
Topological Sorting, Kahn’s Algorithm(Related Problem)
Minimum Spanning Tree: Prim’s Algorithm, Kruskal Algorithm(Related Problem)
Bipartite or not, M-Coloring(Related Problems: Problem 1, Problem 2, Problem 3)
Strongly Connected Components: Tarjan, Kosaraju(Related Problems: Problem 1, Problem 2)
Euler Path: Undirected, Directed(Related Problem)
Flow Algorithms: Set 1, Set 2, Dinic’s Algorithm(Related Problems: Problem 1, Problem 2)
Diameter of Tree
Centroid Decomposition
Lowest Common Ancestor
Top 50 Tree Coding Problems for Interviews
Recursion and Dynamic Programming
Recursion: Quiz 1, Quiz 2, Quiz 3, Quiz 4, Quiz 5, Quiz 6, Quiz 7 (Related Problems: Problem 1, Problem 2, Problem 3)
Backtracking: (Related Problems: Problem 1, Problem 2)
Dp Introduction: Set 1, Set 2, Set 3, Set 4, Set 5
Most useful Dynamic Programming questions
Additional DP Problems : Problem 1, Problem 2, Problem 3, Problem 4
Dp on Trees: Set 1, Set 2
Dp on Bit Masking: Set 1, Set 2, Set 3
Digit Dp
Top 50 Dynamic Programming Coding Problems for Interviews
String Algorithms
Suffix Tree: Set 1, Set 2
Z Algorithm
KMP Algorithm, Rabin-Karp Algorithm(Related Problem)
Manacher’s Algorithm: Set 1, Set 2, Set 3, Set 4
Suffix Automation: Set 1, Set 2
Geometry and Game Theory
Closest Pair of Points
How to check if two given line segments intersect? (Related Problem)
How to check if a given point lies inside or outside a polygon?
Convex Hull: Set 1, Set 2(Related Problem)
Given n line segments, find if any two segments intersect
Check whether a given point lies inside a triangle or not
How to check if given four points form a square: (Related Problem)
Combinatorial Game Theory: Set 1 , Set 2, Set 3, Set 4
Minimax Algorithm in Game Theory: Set 1, Set 2, Set 3, Set 4, Set 5
Variation in Nim Game
Find the winner in nim-game
Optimal Strategy for a Game
Advance Data Structures
Trie: Set 1, Set 2, Set 3, (Related Problems: Problem 1, Problem 2, Problem 3, Problem 4, Problem 5)
Fenwick Tree: Set 1, Set 2, Set 3, Set 4, (Related Problem)
Segment Tree: Set 1, Set 2, Set 3 (Related Problem)
Sparse Table: Set 1, Set 2
Sqrt Decomposition: Set 1, Set 2
Heavy Light Decomposition: Set 1, Set 2
Meet in the Middle
MO’s Algorithm, Problem
Policy based Data Structure
You may also check Geeksforgeeks Online Courses to Learn Data Structures and Algorithms, well designed courses taught by Industry Experts.
GeeksforGeeks Courses
Competitive Programming – Self Paced Course
Get ready to take your programming skills to the next level? This Competitive Programming – Course will help you enhance your problem-solving skills to be a programmer for a top company and gain a competitive edge over other candidates in SDE interviews. Learn Basics of programming, Data structure and algorithms, Efficient implementation of mathematical algorithms and much more. Then, why wait? Take your first step towards becoming a better programmer, see you in the course!
DSA Self Paced
Master Data Structures and Algorithms, trusted by over 75,000 students! Prepare for the interviews with leading IT giants like Microsoft, Amazon, Adobe, etc. Built with years of experience by top industry experts and gives you a complete package of video lectures, practice problems, quizzes, discussion forums and contests. Learn and master DSA at the most affordable price possible with GeeksforGeeks DSA Self-Paced Course. Join Today!
Language Foundation Courses[C Programming / C++ / JAVA / Python]
Master any programming language from scratch and understand all its core fundamental concepts for a strong programming foundation at budget-friendly prices with help of GeeksforGeeks Language Foundation Courses – C Programming | Java Foundation | Python Foundation | C++ Foundation. These courses are for complete beginners who want to get started with programming and build their foundations. Start your coding journey today!.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide
|
https://www.geeksforgeeks.org/competitive-programming-a-complete-guide/?ref=next_article
|
Pandas
|
Competitive Programming – A Complete Guide
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00322505529, 0.000322605571, -0.0238798149, 0.0249361601, 0.0211109091, 0.0284092966, 0.00452148, 0.0302819107, -0.0289374702, 0.007830563, 0.00552180689, -0.0307140518, 0.0760568902, -0.0538096093, 0.00400331, 0.00787057541, 0.00960314274, 0.0014064603, -0.0200225525, -0.0363639, 0.00609799568, -0.021991197, -0.0344752818, 0.019606417, -0.0241839141, 0.027448982, 0.00781855825, 0.0281532127, -0.0120759523, -0.00439343788, 0.030073842, -0.00647411868, 0.0208068099, -0.0448146649, -0.0203586631, 0.0077385325, -0.014164635, -0.0163013339, -0.0410694405, -0.0141246226, 0.0230155326, 0.0252722707, 0.0145167504, 0.00434142072, 0.0150849363, 0.0058219051, 0.0177017935, -0.017045578, 0.00105434505, -0.0439183712, 0.0139405625, 0.00705831, 0.0777854547, 0.010523444, 0.0352115221, -0.00396529771, 0.0171256047, -0.0265847, -0.0127161611, -0.00474555278, 0.0201666, -0.0321865343, -0.0258004423, -0.0324906334, 0.0494561829, 0.00508966576, -0.0596355163, 0.041293513, 0.0142366588, -0.0098672295, -0.0188221596, 0.00267687603, -0.0142366588, -0.00836273655, 0.0039152815, -0.0108675566, 0.0224873591, 0.0256243851, 0.011715834, 0.000809765, -0.0123160305, -0.0107235089, 0.0226154011, -0.033963114, 0.053393472, -0.00224673515, 0.00420937734, -0.0740722418, 0.0458069891, 0.00458950177, -0.00439743884, 0.00505765527, 0.0482717976, 0.00852278899, -0.00687024835, -0.00725437421, 0.00425339211, 0.005325743, -0.0355636366, 0.0665817857, 0.0143967113, 0.00821869, -0.00213269796, -0.0481437556, 0.0188541692, -0.0213829968, -0.0112596843, 0.031450294, 0.0160532538, 0.0143086826, -0.00418937113, -0.00633807434, -0.00529373251, 0.0167254731, -0.0206467565, 0.0123640457, -0.0158291794, -0.0534895062, 0.0422538258, -0.00845076516, -0.0113637187, 0.039917063, -0.0053457492, 0.0196224209, -0.0686944798, 0.0213349815, -0.0157971699, 0.01604525, 0.0178938564, 0.0215270445, 0.00841875467, 0.00281892251, -0.0209188461, 0.0188541692, 0.00812265836, -0.013724491, 0.027945146, 0.0435342453, 0.0124440724, -0.0162773263, -0.023623731, -0.00799861737, -0.00988323428, -0.0282332394, -0.00957113225, 0.00890691485, 0.0191742741, 0.065365389, -0.00914699305, 0.0161332805, -0.0636048168, 0.0141886435, 0.0182619765, -0.0139325596, 0.000607698865, -0.00659815921, -0.0021427013, 0.0111156376, -0.00112136698, 0.000557182357, -0.0028169218, -0.0170935933, -0.00968316849, -0.00598195754, -0.0065301368, 0.00656214729, 0.00599796278, 0.00215870654, -0.0674140602, 0.0516649075, -0.0112916948, 0.000264336501, 0.00498963287, 0.0241038874, -0.0438543521, 0.00642610295, 0.0114597501, 0.0103633916, -0.0116918264, 0.00489760283, -0.0332908928, -0.0214950349, 0.0252082497, -0.00208868342, 0.0251602344, 0.0122520095, 0.0406533033, 0.00640209531, -0.0101873334, -0.00691026123, 0.00337710511, -0.0237837825, 0.016981557, 0.0423818678, 0.0200385582, -0.0320584923, -0.0644370839, 0.0481437556, 0.0237837825, 0.0220072027, -0.0264406521, -0.0453908555, 0.0140766064, 0.0494881943, 0.0368760675, 0.000952811795, -0.0343152285, -0.0170775894, 0.0180058926, 0.0070743151, -0.0734320283, 0.0477916412, -0.0171896257, -0.0271768942, 0.0120759523, -0.00857080519, -0.0171736199, 0.00722236373, -0.03095413, -0.028633371, 0.00833872892, 0.00917900354, 0.018614091, 0.00299898139, -0.0443665199, -0.0392128341, -0.00437343121, -0.00728238327, 0.0120119313, -0.0269688256, 0.0298017524, 0.0111396452, -0.00687425, -0.0343472399, 0.00557782548, 0.00550580164, -0.022935506, 0.00338110654, -0.0364919417, 0.051312793, 0.00884289388, -0.0288254339, -0.0387646854, 0.00957113225, -0.0222632848, -0.000223698211, 0.0211429186, 0.0533614643, -0.0108035356, 0.00870684907, -0.000274839927, -0.00136044517, 0.0217831284, 0.0324266106, -0.04711942, 0.0195744056, 0.0115717873, -0.0269688256, -0.0115717873, -0.00268087722, 0.000670219306, 0.00678622071, 0.0123960562, 0.0263606273, -0.00148948748, 0.0111476481, 0.0214470178, -0.026568694, -0.0130762793, -0.031642355, 0.0715754256, -0.0189502016, 0.0311942082, -0.0258004423, 0.0184380338, -0.0166774578, 0.00747844717, 0.0165494159, 0.035467606, 0.0477276184, 0.0399810821, -0.0215590559, 0.029321596, 0.0118358731, -0.000111473979, -0.0463191569, -0.0461591072, -0.0339311026, -0.0545138381, -0.0237357672, -0.0156931356, 0.00129442359, -0.0124280667, 0.0256884061, 0.0516328961, 0.0304739717, -0.0235116947, -0.0189982168, -0.02594449, 0.00705430843, -0.00482958043, -0.0255923755, 0.0153890364, -0.00703430176, -0.0218471494, 0.0065301368, 0.0097792, -0.00478556613, -0.00412535, -0.0269368142, 0.0106434831, -0.0528172851, -0.00739041856, -0.0137324939, -0.00837073941, 0.0296577048, 0.0456469394, -0.00973918755, -0.0435342453, -0.0393728837, 0.0233996566, -0.00369120785, -0.0298657734, 0.0685664415, 0.0604357794, -0.00761849293, -0.0114197368, 0.0129882507, -0.0286173653, -0.014724819, -0.0238798149, -0.00709832273, -0.0405892842, 0.0030730057, 0.0268727932, -0.0453908555, -0.000249581673, 0.0300418306, 0.00209868676, -0.0290975217, -0.0311141815, -0.0104594231, 0.00636208197, -0.00151049427, 0.0271768942, -0.0280891918, -0.00192763086, -0.00554981595, 0.0322345495, -0.00866683666, 0.00162353134, 0.033963114, 0.0284733176, 0.0203746669, 0.0254003126, -0.00214870321, -0.0070062927, -0.0241839141, -0.0104994355, 0.0238638092, 0.0342191979, -0.0172376409, -0.000684724073, 0.0418697037, 0.00266687269, -0.0212229453, 0.0206307508, -0.00997926574, 0.0188061539, -0.000234201638, 0.00719035324, 0.00157951692, 0.0183099918, -0.027753083, -0.0345713124, -0.0053697573, -0.00798661355, -0.024375977, -0.0293376, -0.0112276739, 0.00188961835, 0.0379004031, 0.038412571, 0.0166294426, -0.0169975627, 0.00845076516, 0.00769451819, -0.0371641628, -0.00640609628, -0.00320104766, -0.0448146649, 0.0142606664, -0.0301218573, 0.000707231462, 0.00147348223, 0.00619002571, 0.00312902406, 0.0350514688, 0.000289844844, -0.035147503, 0.0400130935, 0.0224073324, -0.00701429555, 0.0092030121, -0.0206467565, -0.0074744462, -0.0387966968, 0.016981557, 0.0104114069, 0.020550726, -0.00485758949, -0.0196544323, -0.0621323325, 0.0336750187, -0.00227274373, 0.0315463245, 0.00751846051, 0.0457109585, -0.01109163, 0.00574187888, 0.00193463312, 0.00426939735, 0.0151329525, -0.0204066783, 0.0137324939, -0.0142766722, 0.0131002869, 0.00188061548, 0.00511767482, -0.0204386879, -0.0256403908, 0.000231575788, -0.000747244514, 0.0307460614, -0.00250281906, -0.074648425, 0.0364599302, 0.0153250154, -0.0116998283, 0.0180379022, 0.0151729649, -0.0226154011, 0.0135484338, -0.043054089, -0.0223593172, -0.00889090914, -0.0598275773, 0.0157971699, -0.0141566331, -0.0234156623, -0.0279291403, -0.0229675155, -0.0410694405, 0.023495689, 0.055026006, -0.0149568943, -0.00933905598, 0.000532674312, 0.0303299259, -0.00941908266, 0.055634208, 0.0129162269, 0.00187961513, 0.0043294169, -0.00189562037, 0.0395969599, -0.0234156623, -0.0275610201, -0.00427339831, 0.00639809389, 0.00446946267, -0.0666458085, 0.0369080789, 0.0185660757, 0.0137084862, 0.00665417779, 0.0246320609, -0.0409414, -0.039789021, -0.0178778507, 0.0383485481, 0.0113237053, 0.0185180604, -0.0182299651, -0.000593194098, -0.0225993954, 0.00815466885, -0.0243439674, 0.0238958206, 0.0188061539, -0.029257575, 0.0432141423, -0.0227754526, -0.0130842822, -0.0141806407, 0.0183740128, -0.039789021, -0.0249521658, -0.0279931612, 0.0237037577, -0.0181179289, -0.00464151893, -0.0399490744, 0.0459030233, 0.0103633916, -0.019366337, -0.01478884, 0.057586845, -0.0090189511, 0.00250481977, -0.00743843429, 0.0245840456, -0.0153570259, 0.0210628919, -0.01127569, 0.0246480666, -0.0105074383, 0.0318984389, -0.0119879227, -0.0188061539, 0.00392528437, 0.00108135387, 0.00158551882, 0.0121159647, -0.013036266, 0.00697028125, 0.00632206909, -0.0454548746, -0.0201505944, -0.0301218573, -0.0145407589, 0.0113557158, -0.0153890364, 0.000715734204, -0.020998871, -0.0294656418, 0.0310661662, 0.00309101143, -0.00560583454, 0.0323625915, -0.0326026678, 0.0225513801, -0.0407493338, -0.00711432798, -0.0243919827, 0.011155651, -0.00870684907, -0.00226074, 0.0173336733, 0.0358837433, 0.00916299876, 0.0166454464, 0.00821869, 0.0147728343, -0.019734459, 0.0021907168, -0.0297537372, -0.0307300556, -0.0354355946, -0.0212069396, -0.0164693892, -0.0189822111, 0.0411654711, 0.032906767, 0.0141246226, -0.0294976532, 0.0164533835, 0.00791859161, -0.010651486, 0.00691026123, 0.0032650684, 0.00211069081, -0.00745844096, -0.000968817039, -0.010715507, 0.0326666906, 0.0144607322, -0.00231075613, 0.0105394488, -0.00916299876, 0.00679822452, -0.0162453167, 0.0168055, 0.00257084123, 0.0308741033, 0.0123640457, -0.00082927139, 0.0120759523, -0.019670438, -0.0160852633, -0.0167254731, 0.033611, -0.0164693892, -0.0162133053, -0.0044934703, -0.00877087, 0.0140926121, -0.00869884714, -0.00898694061, -0.00442544837, 0.0288094282, 0.00551780593, 0.0191742741, -0.0066981921, -0.00710232416, 0.00326906983, 0.00142246555, 0.00482958043, 0.0151969735, -0.0107235089, -0.0206467565, 0.0196864419, 0.0325546525, 0.00194863766, 0.00180359022, -0.0245680399, 0.0126841506, 0.0213349815, -0.00579389604, 0.00406332966, -0.00863482617, -0.00153650285, -0.0270808619, 0.00109035685, -0.00214670249, 0.0506085604, -0.00193463312, -0.0263446216, -0.0112916948, -0.0228394736, -0.00886690151, -0.0145807713, -0.00568185933, -0.00667018304, -0.00581390271, -0.000631706731, -0.0118838893, 0.0245360285, -0.00951511413, -0.0181819499, -0.0272729248, 0.0109955985, 0.00404932536, 0.14289476, -0.00655814633, 0.0297057219, -0.00837073941, 0.0142926769, 0.019990541, 1.10270457e-05, 0.00819468126, -0.0234316681, 0.0410374291, 0.040109124, -0.0161572881, -0.0176217668, -0.00595394848, -0.0222472809, -0.0114597501, 0.0203906726, -0.0122600123, -0.0147568295, 0.039340876, 0.00353715755, -0.0141486302, -0.0183259975, 0.0014804845, 0.00370921381, 0.00291895517, 0.0189021863, -0.0113637187, -0.0271288771, 0.0131322974, 0.0157091413, -0.0109875957, -0.0233196318, -0.0219591856, 0.0279611498, -0.0020026553, 0.00822669175, -0.0164533835, -0.00244079879, 0.0267127417, -0.0136764757, -0.0183099918, -0.0151569601, -0.00917100161, 0.00669018924, -0.0368120484, -0.0124600772, -0.011027609, 0.0125881191, 0.00212069391, -0.00153950381, -0.0155570908, 0.0215750597, 0.0099872686, -0.00629405957, 0.00393928913, -0.0029229566, 0.0217511188, -0.00104734278, -0.0391488113, 0.00589392893, 0.0175417401, 0.0357557, -1.22540105e-05, 0.0199105162, -0.0130282631, 0.00392128341, 0.0276570506, 0.0243439674, -0.00450947555, -0.00210468867, 0.0199425258, 0.00638609, -0.00290094945, -0.00862682331, -0.00427339831, -0.00306300237, 0.00550580164, -0.00951511413, -0.0116037978, -0.0326026678, -0.0320744962, -0.00442944933, -0.0041613616, 0.00181059248, -0.000147173167, -0.0216390807, 0.0306980461, -0.0108915642, 0.00846677087, -0.00436542882, -0.0127801821, -0.0334829576, 0.019366337, 0.00569386315, -0.0136924805, 0.0201025791, 0.0214310139, -0.00517769437, -0.00665817875, 0.020422684, -0.0025568367, -0.0190462321, 0.0372922048, 0.0201666, 0.00903495681, -0.0014824851, 0.00291295326, 0.000968817039, 0.0209348518, -0.0230795536, -0.0255123489, -0.00961114559, 0.000461150921, -0.00100782979, 0.0118038626, 0.0169495475, 0.038412571, 0.0383165404, 0.0153250154, -0.0037032119, 0.0065101306, -0.00437343121, -0.0296577048, 0.0181979556, 0.00547779258, -0.00597395515, 0.0268567894, 0.0136764757, 0.0552180707, 0.0146848056, -0.0294176266, 0.00933105312, 0.000195939123, -0.0291935541, 0.0160532538, 0.0107235089, -0.0201986097, 0.0291935541, -0.0020026553, 0.0138205225, 0.0123560438, 0.00628605718, 0.0408133566, 0.00384525838, 0.00694227172, 0.0330348089, -0.0102833649, 0.0191902798, -0.0217031017, 0.0419337228, 0.0116358083, -0.0238478035, -0.0285373386, -0.0256083813, -0.0378043726, -0.0405892842, 0.0245680399, -0.0102673601, -0.0145727694, -0.000442894932, 0.0225673858, -0.0207747985, -0.0256243851, -0.0113477139, -0.0244720094, 0.0168695208, 0.00349714444, -0.00866683666, -0.0203426573, 0.0262005739, 0.0107555194, 0.00404132251, 0.0332908928, 0.00711032702, -0.0295936838, 0.050384488, -0.00787457731, -0.0156451203, 0.0121079627, -0.0100833, -0.0143647008, 0.0443024971, 0.0229995269, -0.00350514706, 0.0190622378, 0.000835273357, 0.0251602344, -0.0272889305, -0.0253843069, 0.0266167112, 0.00129442359, 0.020998871, -0.00464151893, 0.00465752417, 0.0326026678, 0.0213349815, -0.00821068697, -0.0137084862, -0.0104434174, 0.00475355564, -0.0147088133, 0.0355636366, -0.00991524477, 0.0221832599, 0.0271128733, 0.00987523142, 0.0235116947, 0.00423738686, -0.00910698064, 0.0145167504, -0.0139565673, 0.0221352447, -0.0176057611, -0.0386366434, -0.0133883813, 0.00717434799, 0.0362038463, 0.00274289772, 0.00121639809, 0.0156291146, 0.00404732442, -0.00310301548, -0.0137965148, -0.0141566331, 0.00613800855, -0.0196224209, -0.0209348518, -0.0165814254, -0.00873085763, 0.0470233895, -0.00145547627, -0.0249201544, -0.00868284144, -0.0216550864, -0.00512567721, 0.0185980871, 0.0234636776, -0.00305700046, -0.0244880132, 0.00379524194, -0.0122920228, 0.00255883741, -0.0172696523, -0.0228394736, 0.00997126289, -0.00412134873, 0.00924302451, -0.00280691846, -0.0371641628, -0.0173816886, 0.00612200331, 0.0228234697, -0.0116918264, 0.0224073324, -0.0249201544, 0.00805863738, 0.00558182644, 0.00442944933, -0.00721436087, -0.0129402345, 0.0256243851, -0.0500323735, 0.0255763698, 0.0186461024, -0.00290695135, 0.0208388194, 0.0174136981, 0.0226154011, -0.00289294682, -0.0199425258, 0.0328747593, 0.019606417, -0.0407813452, 0.0114837578, 0.0341231674, 0.00821068697, 0.0214310139, -0.0290975217, 0.0117238369, 0.0171736199, -0.0073824157, 0.0230475422, -0.0611079969, 0.00599796278, 0.00588592608, -0.014724819, 0.00362318568, 0.0193983484, 0.0138045177, -0.0116118, -0.0141726378, -0.0138605358, -0.0214790292, 0.0285853539, -0.0637008473, -0.00586992083, 0.00890691485, 0.0257524271, 0.0219431818, -0.0149568943, -0.0250481963, 0.00123140297, 0.00623003859, 0.00558582786, 0.00591793656, -0.0180058926, -0.0112996977, -0.00512167625, 0.0182779822, -0.0198144838, 0.0109155718, -0.0348273963, -0.032778725, -0.0141406273, 0.0101073077, -0.00477356231, 0.0023407659, -0.0131963184, 0.00721436087, 0.0111316424, 0.0334509462, -0.00458950177, 0.00581790414, -0.0346993543, -0.012660143, 0.0110996319, 0.0246480666, -0.0200705677, 0.0223593172, 0.0192543, 0.00640609628, 0.0021427013, -0.0237997882, -0.037228182, 0.00809464883, 0.00192062848, -0.016229311, -0.00315903383, -0.0153650278, 0.0119719179, 0.00857880712, -0.0407173261, 0.0400451049, -0.0129402345, -0.0150689315, 0.0206627622, 0.0269528199, 0.0142446617, 0.0077385325, -0.020422684, -0.0241038874, 0.00751846051, 0.00916299876, 0.00358917448, 0.00536575587, -0.0273049362, -0.0193503331, -0.0171256047, -0.0144767379, 0.000549179735, 0.0453908555, 0.0388607159, 0.0149568943, 0.0189181902, 0.000824769901, 0.0137725072, -0.0332268737, -0.017669782, -0.0192062855, -0.0147168161, 0.0101233125, -0.00417736685, -0.0171256047, 0.00861882, 0.00685824454, -0.0193343274, -0.0159572214, -0.013404387, -0.00816267077, -0.0166614521, 0.013724491, 0.0321705267, -0.00795460306, 0.00338910916, -0.00465352274, 0.0111156376, 0.00108135387, -0.0115557816, 0.00282292371, -0.00354716089, -0.00973118469, -0.00725837518, 0.0120599465, -0.0640529618, -0.0051816958, -0.000368370558, 0.0443665199, -0.00428940356, 0.014604779, 0.0217511188, -0.00174157, -0.0238958206, -0.0110116033, -0.0123400381, -0.0106594879, -0.00244079879, 0.000915799697, 0.00330908294, -0.0041853697, -0.00855479948, 0.0106834965, -0.00380324456, -0.010275363, -0.00749045145, 0.0111236405, 0.0183900185, -0.00605798233, -0.0297057219, 0.00330508151, -0.0221352447, 0.0106754936, 0.00554181356, 0.0134363966, -0.0123400381, 0.00260285172, -0.00196264219, 0.00771052344, -0.0111636529, 0.007050307, -0.0151969735, 0.0180699136, -0.00865083095, 0.00549379783, -0.00486559235, 0.0127161611, -0.00423338544, -0.0194623694, -0.0179418717, 0.0325226448, 0.00952311605, -0.0195103846, -0.048303809, 0.0156291146, -0.0194143541, 0.00356716732, -0.0129642421, -0.0023407659, -0.00948310364, 0.00522971153, 0.00968316849, 0.0028129206, 0.00984322093, 0.0104674259, 0.0865563229, -0.021366993, -0.00581790414, -0.0244720094, 0.00564184645, 0.00942708459, 0.0159012042, 0.000818767934, 0.0112996977, -0.00239878497, 0.0362998806, 0.00239278306, 0.00423338544, 0.0150289182, -0.0248881448, -0.0019986541, -0.0128041906, 0.000546678901, 0.00538976397, 0.000143922094, -0.0169335417, 0.00208268152, 0.0106274774, -0.0154290488, 0.0258324537, -0.00345112942, 0.0169015303, -0.00193463312, -0.0504805185, -0.0123640457, 0.0274649877, -0.0126121277, 0.0173176676, -0.000251832418, 0.0179578774, 0.016109271, -0.0210148767, -0.00698228506, -0.0206627622, -0.0128041906, -0.00825870223, -0.00473755039, -0.0307940766, 0.00356716732, -0.00665017636, -0.00545778591, -0.00665817875, 0.0210468881, -0.0216550864, 0.00273889629, -0.0167414788, -0.0168855265, -0.00113237055, -0.0272409152, 0.0129882507, 0.0198304895, 0.000767751248, 0.00433341833, 0.0126041248, -0.000181184296, -0.0119399074, 0.00852278899, 0.0156291146, -0.01478884, 0.022871485, 0.0181019232, -0.0267447531, -0.00976319518, -0.0116838235, 0.0191742741, -0.0238798149, 0.0270328466, 0.00558182644, 0.00612600474, -0.00159752276, -0.00472954754, -0.0181019232, 0.00191962824, 0.0109795928, -0.0268087741, -0.0158131756, 0.0174136981, -0.00990724191, 0.0117878579, -0.0187261272, -0.00503364718, 0.00810265169, -0.0095631294, -0.00862682331, -0.0122920228, -0.00949910842, -0.00593394181, -0.0171736199, 0.0165654216, -0.00280891918, -0.00504565099, 0.0079466, 0.00833072606, 0.0102673601, 0.0043294169, -0.00356116542, 0.0191102531, 0.00153150118, -0.0112596843, -0.00672219973, -0.0105714593, 0.0167574845, 0.00746244192, 0.00140345923, 0.0138605358, 0.0296577048, -0.00481757661, 0.027817104, -0.0122920228, 0.015541086, -0.0118678836, 0.0340591446, -0.000973818707, -0.00738641713, -0.00484158425, -0.016109271, 0.0331308432, 0.00868284144, -0.0254643336, -0.0164853949, -0.0252242554, 0.0121799856, 0.0108435489, -0.0082507, 0.0211909339, -0.00836273655, 0.0330988318, 0.012219999, 0.015541086, -0.0296417, 0.00450947555, -0.0167574845, 0.0305379927, 0.0197024476, 0.0141726378, -0.00780255347, 0.0127001563, -0.0109875957, -0.00259885052, 0.00651813298, -0.003227056, -0.00909897778, 0.0011483758, 0.0103793964, 0.00538976397, 0.00347913848, -0.0189662073, 0.0217351131, -0.00512967864, 0.0189341959, -0.0173336733, 0.0243279617, 0.00448146649, 0.0120759523, -0.00849077851, 0.0154930698, 0.00598595897, 0.0151889706, 0.0180859193, -0.0288094282, 0.00235677115, -0.0190302283, 0.00652213441, -0.00813066121, 0.00548179401, -0.0274329782, -0.0280251708, 0.000285843533, -0.00445745885, 0.00333909271, 0.0187741444, 0.033771053, 0.0185660757, 0.0170135684, -0.00073974207, -0.0203106459, -0.00764250103, 0.0102913678, 0.0152289839, -0.0159092061, -0.0188381653, -0.0294336323, -0.00916299876, -0.00890691485, 0.0276890621, -0.000244204915, -0.0026728746, 0.0061540138, -0.01478884, 0.00460550701, 0.0332268737, 0.00873085763, 0.0104354154, -0.0234156623, 0.00829071272, -0.0143727036, -0.0196864419, -0.0123720486, 0.00208268152, 0.00339311035, -0.0213509873, -0.0170775894, 0.0174617153, -0.0114757558, -0.0115717873, 0.00831472129, -0.00182459713, 0.00386126363, 0.00276090344, 0.00758648245, -0.0090189511, 0.00160652574, 0.00555381738, 0.0239758454, -0.00459750462, 0.00432541547, 0.0199745372, -0.00399930868, 0.0113637187, 0.0082346946, -0.0186621062, 0.0265206788, 0.0203586631, 0.0237357672, 0.0256083813, -0.0365239531, 0.0116278054, 0.0188381653, -0.0127961878, 0.0236397367, 0.00141246221, 0.0267767627, -0.0155650936, -0.0311782025, 0.0296256952, 0.0251602344, 0.0293536056, -0.0201666, -0.00929904357, 0.021927176, 5.33924722e-05, 7.96354379e-06, 0.0233036261, -0.0171576142, 0.0304579679, -0.00601396803, -0.0178138297, 0.00464552036, -0.0210628919, -0.00508966576, 0.0155010726, 0.00629806099, 0.0121639809, -0.0124920877, -0.0244720094, -0.00292095589, 0.0164853949, -0.00919500925, 0.0163013339, 0.00420937734, -0.00275690225, -0.0216710921, -0.0216390807, 0.0113157034, 0.00274289772, -0.00763449818, 0.0460950844, 0.0151169468, 0.0182459708, 0.00436542882, -0.00331308413, 0.0129162269, 0.00706631225, -0.0262806, -0.00467352942, -0.0138125205, 0.00597395515, 0.0224393439, -0.0153890364, 0.0132283289, 0.00976319518, 0.000421888049, 0.00712633226, -0.00743843429, -0.00293896184, 0.00347513729, 0.00658615539, 0.00683823787, -0.0200865734, -0.00415736064, 0.0460950844, 0.00680622738, -0.0139805749, -0.016173292, 0.0345393047, -0.0217031017, -0.0123880543, -0.0303459298, -0.00387326744, 0.0016855516, -0.0235116947, 0.0178938564, -0.0266647264, 0.0100512896, 0.00415736064, 0.00838674419, -0.021991197, -0.0158051718, -0.00623404, 0.00599796278, 0.0111636529, -0.0127401697, -0.00556582119, 0.00395929581, -0.00434942357, 0.00618602429, -0.0208388194, 0.00109835947, -0.00309101143, -0.00579789747, 0.00227074302, -0.00869884714, -0.00373522239, -0.013788512, 0.0122280018, 0.006954276, -0.0306660347, -0.0063420753, 0.0190302283, 0.00711032702, -0.001292423, 0.00820268411, 0.00786257349, 0.0115637844, -0.0106674908, -0.0257844385, 0.0104354154, -0.00447746506, 0.0360437967, 0.0116678178, -0.0100592915, -0.0147568295, 0.025192244, -0.013404387, 0.01855007, -0.00402331678, -0.0164693892, 0.00916299876, 0.012532101, 0.0237517729, 0.0357877128, 0.0109155718, 0.0365559645, -0.0145567637, 0.00498163, -0.000393378723, 0.00519770104, 0.00673420355, -0.0188221596, -0.0146768028, 0.00949910842, -0.00403932203, -0.0221992638, 0.0486559235, 0.0367480256, 0.016173292, -0.0165014, 0.0262005739, 0.00666618161, -0.000998826814, 0.0179578774, 0.00187461346, 0.0180859193, 0.000746744394, -0.0092030121, -0.0254003126, -0.00909897778, -0.00668218685, -0.00833072606, -0.00310101476, 0.00708231749, -0.0117398417, 0.0209188461, 0.025880469, -0.00816667266, 0.00382725243, -0.0193343274, 0.0361398272, 0.0256724, -0.0145007456, 0.00613000616, -0.0437903292, -0.00848277565, -0.00905096158, -0.0159012042, 0.0100432867, 0.01246808, -0.0051816958, 0.00514968531, 0.0122760171, 0.00905096158, -0.00209268485, -0.0290335, 0.0235276986, -0.0163653549, -0.0042613945, -0.0129562402, -0.0272889305, -0.0304899774, 0.0246000495, 0.0194143541, 0.0113797244, 0.014284675, 0.0155330831, 0.00768651534, -0.00992324762, -0.0241999198, -0.000735240581, -0.0077145244, -0.0266007055, -0.00997926574, 0.0122119961, 0.000290595111, -0.00667818543, -0.0206467565, -0.00106034696, -0.00969117135, -0.00964315608, -0.000163178396, -0.00116638164, 0.00945109315, 0.00921101402, -0.0136364624, -0.0129242297, -0.00716634514, 0.000173931912, 0.0175737515, -0.0269368142, -0.00921901688, -0.0019076243, -0.00611400092, 0.00873886, 0.00211269129, -0.0149408896, -0.0034871411, 0.0165334102, 0.0144367246, 0.00488559902, 0.00719035324, 0.00444145361, 0.0108275432, -0.0233676471, -0.00203966745, 0.013412389, -0.0162693243, -0.00432541547, -0.00689025503, -0.00912298542, 0.0098672295, 0.0116358083, -0.0085387947, 0.00168655196, 0.0118358731, -0.00404132251, 0.00560983596, 0.0110756243, -0.00761449197, -0.0202466249, -0.00923502259, 0.0246160552, -0.0153650278, -0.0138365282, 0.0222632848, 0.0119159, 0.000970317516, -0.00559783168, 0.0306180194, -0.00652613584, 0.015413044, 0.0169015303, 0.0561783835, -0.0120599465, 0.0142606664, 0.0127561744, 0.0287294015, 0.0166294426, -0.0181659441, -0.0141326245, -0.019430358, 0.00483758328, 0.0127001563, 0.0125160962, -0.00148548617, -0.00859481283, -0.0134203918, 0.00170055649, 0.00508966576, 0.00822669175, 0.00180559093, 0.0211269129, 0.0139645701, 0.0227914583, 0.0297377314, 0.0102353496, -0.00580990128, 0.00897093583, -0.0348594077, -0.0169655513, 0.0131322974, 0.019366337, -0.0229995269, -0.00342111965, -0.0167734884, 0.024247935, 0.0121799856, 0.0390527807, -0.00306300237, 0.0113637187, -0.00948310364, 0.00810665265, -0.00171456113, 0.00655814633, 0.0314823, 0.017733803, -0.00611400092, 0.00376723288, -0.000261085428, 0.00445745885, 0.0129402345, -0.00873085763, -0.0106834965, 0.00183560071, 0.00103934016, 0.00960314274, -0.0107795279, -0.0203106459, 0.0149889048, -0.0344112627, 0.00791859161, -0.0093950741, 0.000191062529, 0.0202946421, -0.0157971699, 0.0131643079, -0.000798761379, 0.00759848673, 9.02795437e-05, 0.000124978396, -0.00671019591, 0.00511767482, 0.00139945792, 0.00278891274, 0.00282892585, -0.0136044519, 0.0163893625, 0.0128682107, -0.00512567721, 0.00310101476, -0.00905896444, 0.00176157651, -0.00467753084, -0.00923502259, 0.00308500952, 0.00186561048, -0.0101953363, -0.000189311948, 0.0128922192, 0.0174617153, 0.027945146, 0.00716234371, 0.00153850345, 0.00323505863, -0.00182259642, -0.00187861477, -0.00419337209, -0.00386726554, -0.0165494159, -0.0197184533, -0.0195423961, 0.0120679494, -0.00260685314, 0.014660798, 0.0218471494, -0.0192703065, 0.0125881191, 0.00649412535, 0.0197184533, -0.00791058876, 0.00766650867, -0.0157091413, -0.01127569, -0.0254963432, 0.014412717, 0.00108635554, 0.00402331678, -0.0149248838, -0.0201345887, 0.00104434171, -0.00129042228, -0.0197504628, -0.0488159768, 0.0105554545, -0.00943508744, -0.0250802077, -0.0223433115, -0.00124740822, -0.0235757157, -0.00203566626, 0.0109155718, -0.00716234371, -0.00787857827, -0.0116518131, -0.00468153181, -0.00801862404, -0.0131963184, -0.00116238045, 0.00703830319, -0.00518569723, -0.00940307695, 0.0165494159, -0.0103473859, 0.0223593172, -0.0113557158, -0.0167254731, -0.00440944312, 0.0147328209, 0.00479356851, -0.00495762238, 0.0166294426, -0.0237997882, 0.00494561857, -0.0143406931, -0.0089469282, -0.00972318184, 0.00568986218, 0.0110756243, 0.00136444648, 0.0217511188, 0.00186160917, 0.000288094277, -0.00936306361, -0.00398330344, -0.0114277396, 0.0083547337, -0.0056578517, 0.0141326245, 0.0127001563, 0.00356716732, 0.00103033718, 0.0153010068, -0.0308420938, -0.0011863882, 0.00451347698, -0.0110836271, -0.0165974312, 0.0139405625, 0.014724819, -0.00874686241, 0.026696736, -0.00196864433, -0.0172376409, 0.0160212424, 0.00217471179, 0.00423738686, 0.0107475175, 0.0104354154, -0.0150129134, -0.018486049, -0.00168355089, -0.0191102531, 0.010963588, 0.0174136981, -0.00282492442, -0.0136764757, 0.0159892328, -0.0191102531, 0.00220272085, 0.0253042802, -0.0124520753, -0.011779855, -0.0234796833, -0.0164853949, -0.0154210469, 0.00692226551, -0.00311902072, 0.00999527052, -0.00171456113, -0.0157331489, 0.0103233783, 0.0020366665, -0.0476956069, -0.0144367246, 0.010147321, 0.00755447242, 0.00833072606, 0.0354355946, 0.0214150082, -0.0124120619, -0.00448146649, -0.000430140761, 0.00801462308, -0.00507366052, 0.00553781213, -0.00656214729, -0.00601396803, -0.00674620783, 0.0148288524, 0.000819768291, -0.0166934635, -0.00601396803, -0.0230315365, 0.0106834965, 0.0105474517, 0.00254883408, 0.00213069725, 0.00203366554, 7.05230777e-05, 0.0058059, 0.000167304752, -0.0197504628, 0.0120199332, -0.030826088, -0.0243279617, -0.00355116208, -0.0104754278, -0.0127321668, 0.0379324146, 0.0124760829, -0.00297097233, -1.78964819e-05, 0.00171956269, 0.0022927504, 0.0131403, -0.00347513729, 0.00641409913, 0.0170295723, 0.0184380338, -0.0065301368, -0.00955512654, -0.00804663356, -0.00635808054, 0.013972573, 0.013972573, -0.0190782435, 0.0205187146, -0.000807764358, -0.0203746669, -0.00678622071, 0.000691726396, -0.000316353515, 0.0122520095, -0.00421738, 0.0165174045, -0.017045578, -0.00438543502, 0.00176857878, -0.000821268768, -0.00427739974, 0.00406733109, -0.000385876279, -0.013220326, 0.000865283189, -0.00228074635, -0.00534975063, 0.00465352274, 0.0212229453, -0.00941908266, 0.0303779412, -0.0188701749, -0.000620703097, 0.0181019232, -0.00116138009, -0.00354916137, 0.0176057611, 0.00450947555, 0.0110196061, -0.0255443603, -0.00457749795, 0.00349114253, 0.0128682107, 0.00663016969, 0.000733740104, 0.0285533443, 0.0120119313, -0.0086588338, 0.0034091156, 0.0320584923, 0.00905896444, 0.00553781213, 0.0146127818, -0.020054562, 0.00675421, -0.0109715909, 0.0175417401, 0.00277690869, -0.0122280018, -0.00841875467, 0.00367320213, 0.00170555816, 0.0117878579, -0.0013514423, 0.00829871558, 0.00632206909, -0.0133563709, -0.0203586631, -0.0130762793, 0.00348514062, -0.0129562402, -0.0127721801, 0.00426939735, -0.0147408238, 0.00265086745, 0.0157331489, 0.0199745372, -0.0260885376, 0.01478884, 0.00599796278, 0.0066221673, -0.0181179289, -0.00437343121, -0.00781855825, 0.0104594231, -0.0162533186, 0.00357116875, -0.00694227172, 0.00923502259, -0.00717034657, -0.0206307508, -0.0162373129, -0.030890109, -0.0113957291, 0.0124120619, 0.0149568943, -0.0109955985, 0.0108755594, -0.00207667961, 0.0119799208, 0.000194688706, -0.0304739717, 0.0116358083, 0.0155891012, 0.0254323222, -0.0107075041, -0.0118358731, -0.00871485192, 0.00833072606, 0.0116118, 0.00657815253, 0.0142046483, 0.0251602344, -0.00243679737, 0.000220822258, -0.00544978352, -0.0120039284, 0.00779054966, -0.00696628, -0.014228656, -0.0188061539, 0.00529773347, -0.0106034698, 0.015661126, -0.00276490487, -0.0177017935, -0.0172856562, -0.00711832941, 0.00651413156, -0.0380924642, 0.00555381738, -0.001167382, 0.0266167112, 0.00495762238, -0.0138365282, -0.017669782, -0.031402275, -0.00682223262, 0.00352115231, -0.00487359473, 0.0127561744, -0.0119559122, 0.00560983596, 0.015036921, 0.0139885778, 0.0161332805, 0.0210468881, 0.00338510773, 0.00347313657, 0.0330988318, 0.002960969, -0.00352115231, 0.00731039234, 0.00670619449, -0.00336310058, 0.00543377828, -0.0260405224, -0.00214870321, 0.0126521401, 0.00449747173, 0.00518569723, -0.0116118, -0.00742643047, -0.00620202953, 0.00485358853, 0.0139565673, -0.000141421275, 0.0180379022, -0.00388727221, 0.00687425, 0.00373922358, 0.00353915826, -0.0192863122, -0.0202946421, -0.0113877263, -0.0131002869, -0.000369370886, 0.00318904361, 0.00568586076, 0.0261525586, -0.00381124718, -0.0213990025, 0.0137004834, 0.00350914826, -0.00869884714, 0.0034091156, 0.0188541692, 0.00184260297, -0.00953111891, 0.00439343788, 0.00498563144, -0.0161412824, -0.00905896444, -0.00435742596, -0.000710232416, 0.001738569, 0.03095413, -0.0162773263, -0.013908552, -0.0114917606, 0.00809064787, 0.0137324939, 0.00715834275, -0.010027281, 0.00799861737, -0.00872285478, -0.0364919417, 0.00840275, 0.0174297038, -0.0176377725, 0.0230475422, 0.00289294682, -0.00667018304, -0.0175097305, 0.00741842762, 0.00878687575, -0.0037412243, -0.00628605718, -0.0042613945, 0.00128241966, 0.0288254339, 0.0117558474, 0.0232236, -0.0227914583, -0.00303499331, 0.0103313811, -0.0100032734, 0.00687825074, 0.00291295326, -0.00179958891, -0.00331508485, -0.0235437043, 0.00535775349, -0.0152609944, -0.00757848, -0.00531774, 0.00884289388, -0.0169975627, 0.00984322093, 0.00372321834, -0.00239678426, -0.000429390522, 0.00830671843, -0.000984322163, 0.00315303192, -0.00484158425, -0.00359917781, -0.00965916086, 0.0068622455, 0.00811065454, -0.00817467552, 0.00343912537, -0.0262806, -0.00374322501, 0.013908552, -0.0101153105, 0.0276250411, 0.000470153871, 0.0198785048, -0.0149648972, -0.00249681715, -0.00320104766, 0.0253683012, -0.0194143541, -0.0127561744, 0.0204386879, -0.00167554838, -0.0130922841, 0.0129482374, 0.011339711, -0.0171896257, 0.00825870223, 0.00613400713, -0.00934705883, 0.0134283947, 0.00423738686, 0.0296577048, -0.00465752417, 0.000826770556, 0.000882788911, 0.0200065468, 0.00990724191, -0.00488159759, -0.00275090034, 0.0132683422, -0.0290335, 0.00994725525, -0.0212229453, -0.00422938401, -0.00269288127, 0.00772652868, -0.0110116033, 0.0104114069, 0.0172856562, 0.0239278302, 0.00349514373, 7.06481223e-05, 0.0153810335, -0.00589793, 0.00355116208, -0.0309221186, -0.0080706412, -0.00456549414, -0.000639209175, 0.00595394848, -0.0270008352, 0.00344912871, 0.0137645043, -0.00357917137, 0.0101153105, -0.000102908678, -0.0255443603, -0.00413335254, 0.00782656111, 0.00608199043, 0.00174857222, 0.00430140784, -0.0248401295, -0.00550580164, -0.00259484909, -0.031018151, 0.00633007148, 0.0212069396, -0.0176377725, -0.00961114559, 0.00425739307, -0.0330028, 0.0169655513, 0.0159732271, 0.00715034, 0.00829871558, 0.0175737515, 0.00534975063, 0.0182139613, 0.0018125932, 0.00961114559, 0.0179418717, 0.00691426266, -0.000988323474, 0.000512167579, 0.00443745218, -0.0104034049, -0.0208708309, 0.00295696757, 0.0180539079, -9.47810186e-05, 0.0357557, 0.0107555194, 0.0149168819, 0.00864282809, 0.00435342453, -0.00938707218, -0.0158851985, 0.00367720332, 0.00540977, 0.0151809677, 0.029321596, -0.0154690621, -0.0145487608, -0.000870785, 0.00201565959, 0.0161412824, -0.0133803785, -0.0180539079, -0.00585391559, -0.00774253393, 0.00829871558, 0.0151809677, 0.018614091, 0.00425339211, -0.0152369859, 0.00440144027, -0.0215590559, 0.00565385027, -0.0010953584, -0.00846677087, -0.0046615256, 0.0112036662, -0.00856280234, -0.00949910842, 0.000236327338, -0.00670619449, -0.00356516661, -7.99636691e-05, -0.0219591856, -0.00873085763, 0.0026628715, 0.00420537638, 0.01246808, 0.00803463, 0.000338360725, 0.0160132404, -0.00418136828, -0.00453348365, -0.00163753587, -0.0109955985, 7.64e-05, -0.00338710845, 0.0129642421, -0.0222632848, 0.00568185933, -0.0068622455, 0.026760757, -0.0272729248, 0.00483358186, 0.0134203918, 0.0182139613, -0.0159972347, -0.00346313324, 0.00289894873, -0.0157571565, -0.0180699136, -0.0114437453, 0.00500963954, -0.0194943789, -0.0125641115, 0.0138605358, -0.00460950844, -0.0207267832, 0.0188381653, -0.0112516824, 0.0105794622, -0.00687825074, 0.0239758454, 0.0164053682, 0.00849878136, -0.00666218, -1.42937397e-05, -0.00428940356, 0.0207427889, 0.0256563965, 0.0242799465, -0.00869884714, 0.00540576922, 0.00216670916, -0.0126841506, -0.022935506, -0.00315503241, 0.000824769901, 0.0177177973, -0.000153175133, 0.00494561857, 0.0246960819, -0.00930704549, -0.0123800514, 0.0184380338, -0.00969117135, -0.00745443953, 0.00595795, -0.00308100833, -0.019670438, 0.00899494346, -0.0091549959, -0.0053017349, -0.0169975627, -0.00456949556, -0.00476155803, -0.0230955575, 0.00610999949, -0.0141886435, 0.0151409553, 0.00147548283, 0.0245840456, 0.0181979556, -0.0120039284, 0.0202146154, 0.0153810335, -0.0186621062, -0.00743043143, 0.00295096566, -0.0072863847, 0.0360758044, -0.000110848778, 0.00647411868, -0.00848277565, 0.0002960969, 0.0119239017, 0.00414535636, 0.00198965101, -0.00762249436, 0.0183580071, -0.00470954133, -0.00953111891, -0.00812665932, -0.0115957949, -0.0174617153, -0.0127801821, 0.0238958206, -6.29112151e-07, 0.00821068697, -0.0155490888, -0.0160372481, -0.0181339346, 0.00990724191, 0.00214870321, -0.00399930868, 0.00474555278, -0.0330028, -0.0166934635, 0.00631406624, -0.00238478044, 0.00292095589, -0.00297697424, 0.00712633226, 0.0149568943, -0.00492561189, -0.00591393514, 0.0045935032, 0.0108675566, -0.000821768946, 0.00602997327, 0.00355716399, 0.010963588, 0.000929804286, 0.0131242946, 0.00510166958, 0.00631406624, -0.00220072013, -0.00572987506, 0.00707831653, 0.00612600474, 0.000703230151, 0.00917900354, -0.0115797892, -0.00363919092, 0.00383725576, 0.000849778065, -0.00994725525, -0.00494561857, -0.0231595784, 0.0226794221, 0.00716234371, 0.0242959503, 0.0152850021, 0.000681723119, 0.000412134861, -0.00436943, 0.00892292, -0.00295696757, -0.00127441704, -0.0029229566, -0.0120759523, 0.0228554793, 0.00791058876, 0.00473354897, -0.0135244261, 0.00788658112, -0.0207427889, 0.0278971288, 0.0115957949, 6.6584289e-05, 0.00504165, 0.019670438, -0.0110596195, 0.0173336733, 0.00260685314, -0.0277690869, 0.00946709793, -0.00954712462, -0.00759848673, 0.0104834307, -0.00748645, -0.0107875299, -0.00606598519, 0.000814266445, 0.019734459, -0.0169975627, -0.000229575133, -0.00685424311, 0.00948310364, -0.00945109315, 0.00834673177, -0.0395009257, -0.00587792369, 0.00286093634, 0.0163413472, 0.00685824454, -0.00821068697, -0.00799861737, -0.0093230512, 0.00108735589, -0.00421738, 0.0149088791, -0.00924302451, -0.010899567, -0.0108195404, -0.00220472156, -0.00263286149, -0.00554581499, -0.00296897162, 0.0246800762, -0.019606417, -0.00758648245, -0.00364519283, -0.00103934016, -0.00458550081, 0.00825870223, 0.0124840857, 0.00107535196, -0.00816667266, 0.000260835368, 0.000257084117, -0.032906767, 0.00805463549, 0.0101313153, -0.00703830319, 0.0308741033, 0.0418056808, 0.010523444, -0.00570586743, -0.00468153181, 0.0103153754, -0.0104274126, 0.0119959256, 0.0135244261, 0.00729038566, -0.00712633226, -0.00509766815, -0.0110756243, 0.0217511188, 0.00309301214, -0.00052467169, -0.0116678178, -0.0191422645, 0.0236717463, 0.00864282809, 0.00757447863, 0.0142606664, 0.0239438359, -0.00247481, -0.0117878579, -0.00739041856, -0.0182939861, 0.00898694061, 0.00633407291, -0.00139445637, -0.0178458393, 0.00706231128, 0.0143406931, 0.00138145208, 0.00620603096, -0.0177818183, -0.00296497019, 0.000124478232, 0.00957913511, 0.0074064238, 0.00804663356, -0.0136684729, 0.00542577542, -0.0820748582, -0.0116278054, 0.00910698064, 0.0307940766, 0.0108835613, -0.0040113125, 0.0108915642, 0.00713833608, 0.00287894206, 0.0123240333, 0.0267447531, -0.0140926121, -0.0136844786, 0.0104434174, 0.00689425599, 0.00371321524, 0.0150689315, 0.00468953466, -0.0176377725, -0.00272889296, 0.00180959224, -0.017733803, 0.00279291393, 0.00156251132, -1.35903847e-05, 0.0065541449, 0.000859781343, 0.00697428221, -0.00247080857, -0.0153090097, -0.0166294426, -0.0168535151, 0.0155090755, -0.00276090344, -0.00642210152, 0.00731839472, -0.0111636529, -0.00559383072, 0.00767051, -0.00706631225, 0.0145567637, 0.00464552036, -0.00201465935, -0.0134844128, -0.00914699305, 0.0396609791, 0.00458550081, 0.0103553887, -0.00538976397, 0.00842675753, -0.00628205575, 0.0184060242, -0.00471354229, 0.0153330173, -0.00186961179, -0.0107075041, 0.00464552036, -0.00556182, 0.0130602736, 0.0114597501, -0.0108035356, -0.0202626307, 0.00312502263, -0.00517769437, 0.00795460306, 0.0128121926, -0.015541086, 0.0114117349, 0.0142606664, 0.0017955876, -0.012532101, -0.0125401039, 0.00394329056, 0.017045578, 0.0051136734, 0.0102513544, 0.00343912537, -0.009275035, 0.012844203, 0.0183740128, 0.0222952962, 0.00398330344, 0.027513003, -0.0149648972, 0.00865083095, 0.0142686693, -0.00589793, -0.00831472129, -0.004449456, -0.00762249436, 0.0158291794, -0.00724637136, 0.0236557405, 0.027881125, -0.000108848122, 0.0206627622, -0.00436943, -0.0109155718, 0.0167094674, 0.00594194466, -0.00749445241, -0.0339951254, 0.00952311605, 0.0132683422, 0.0266647264, -0.00731839472, -0.00510567101, -0.0205347203, 0.000689725741, 0.0208068099, 0.0162133053, 0.00388727221, 0.00376923359, -0.0141486302, 0.0289214645, 0.020486705, 0.0045935032, -0.0104354154, -0.00187861477, -0.00539376494, -0.000504915253, -0.0318824351, -0.0123720486, 0.0101313153, 0.0213509873, -0.00350314635, -0.00858681, -0.00782256, -0.0107875299, -0.0150449239, 0.0202946421, 0.0199745372, 0.013852533, -0.0178298354, 0.00194263575, 0.000333359087, -0.00255883741, 0.0127881849, -0.00743043143, 0.00981121, -0.00252682692, 0.00684223929, 0.0163733587, 0.00804663356, -0.024439998, -0.00430140784, 5.77063838e-05, 0.00933905598, -0.00437343121, -0.0139325596, -0.00163653551, 0.00755447242, 0.00751045765, 0.00474955421, -0.0117958598, 0.00798261259, -0.00196764385, 0.0029949802, 0.027881125, -0.00412134873, 0.00280491798, -0.0196224209, -0.0111796586, -0.00589793, -0.00221472466, 0.000892292, -0.00319904694, -0.000230075297, 0.00368520594, -0.010147321, 0.00850678422, 0.0133243604, 0.00434942357, 0.00961914752, -0.00106334803, 0.0192222912, -0.0222632848, -0.0121399732, 0.00048415843, 0.00781055586, 0.0109395804, 0.0163813606, -0.00773453107, 0.00156851334, 0.0056338436, -0.014284675, 0.00999527052, -8.58405911e-05, 0.00633807434, 0.00357917137, 0.0209188461, 0.000264336501, -0.0126361353, 0.0146928085, -0.00978720281, -0.0114917606, -0.019670438, 0.0275450144, -0.00871485192, 0.00607398758, -0.00141646352, 0.000539676636, -0.00314102788, -0.010211342, 0.00117838557, 0.000610199699, -0.0262806, 0.026632715, -0.00188661739, -0.023687752, -0.0128362, 0.0289694797, -0.00341911893, 0.00629405957, -0.00191362621, -0.0119799208, -0.0149488924, -0.00473755039, -0.0105954669, 0.00883489102, 0.0122039942, -0.00789858494, 0.0215270445, -0.0258324537, 0.0133963842, 0.00935506169, 0.00973918755, 0.026568694, 0.00180459057, 0.00549779925, -0.00824269745, -0.0115717873, 0.0103793964, -0.0151249496, -0.0205667298, 0.00484558567, -0.00774253393, 0.0284413081, -0.00374322501, 0.013036266, 0.0103153754, 0.0221672542, -0.00938707218, -0.00206867699, 0.0114997635, 0.00829871558, -0.0107635222, -0.0144207189, -0.0160852633, -0.00916299876, -0.00761449197, 0.00847477373, 0.0205987412, 0.00526172202, 0.0160372481, 0.00861882, -0.00468953466, -0.000746744394, -0.0151249496, 0.0156531222, -0.0185340662, -0.00602997327, 0.0129642421, -0.00253082812, 0.00584191177, 0.0114437453, -0.0217191074, -0.0203746669, 0.0010553454, 0.0042613945, 0.0102433525, -0.0131563051, -0.00911498256, -0.00306700356, 0.0213189758, -0.0388927273, -0.0158932, 0.0029949802, -0.00761049055, -0.0133403661, -0.0311621986, -0.0208228137, 0.00035861737, 0.00194863766, 0.000224948613, -0.0206307508, -0.00699028745, -0.00485758949, 0.000883789209, 0.0144687351, 0.00673420355, 0.00154250476, -0.0100833, -0.00202966412, -0.00918700639, -0.00243879808, -0.0130682765, -0.0199265201, -0.0130202612, -0.0179738812, 0.0086588338, -0.0173176676, -0.0132603394, 0.00837073941, -0.00587392226, -0.0107555194, -0.0138925463, -0.0202626307, -0.00832272321, -0.0127001563, -0.0201025791, 0.018678112, -0.00909897778, -0.000554181344, -0.0105954669, -0.00742242904, -0.00123040262, -0.00568185933, 0.0093230512, -0.014604779, -0.00942708459, 0.00341911893, -0.013220326, -0.0190142225, 0.0198144838, -0.0100512896, 0.0204386879, 0.00769051677, 0.00288094277, 0.0124280667, 0.00321305147, -0.00319904694, -0.00907497, -0.00138745399, -0.0121079627, -0.0104594231, -0.000890791533, -0.00570586743, 0.00660216063, -0.019606417, 0.00405932823, 0.00361118186, -0.0148768686, -0.0145887742, 0.00995525811, -0.0190782435, -0.0061980281, -0.00639009103, 0.0347313657, -0.00506565766, -0.00764250103, -0.00885889865, 0.000604697911, 0.00209268485, -0.00134944159, -0.0116678178, -0.00791459, -0.00731439376, 0.00882688817, -0.00019043732, -0.0191582702, -0.0288414378, -0.0160132404, -0.0166294426, 0.00580990128, -0.00465352274, 0.010963588, 0.00421738, -0.0133643737, -0.0185340662, -0.00575388316, -0.00388127, -0.00652213441, 0.0810505226, 0.0298817791, 0.00291095255, -0.0115797892, 0.00126441382, -0.0294016208, -0.0116438102, 0.0493601523, 0.00357116875, 0.00479757, 0.00775053632, -0.0136844786, -0.0171736199, 0.0159412175, -0.017109599, -0.000513167935, -0.00299297948, -0.0160212424, -0.00484558567, 0.00213269796, 0.00866683666, -0.0194783751, 0.0018906187, 0.00582990795, 0.00290495064, -0.00292695779, -0.0186461024, -0.0145807713, -0.0111156376, -0.00379524194, -0.00492561189, 0.0110436138, 0.0150449239, 0.0156851336, -0.0307940766, 0.0054897964, 0.0115557816, 0.00143446948, 0.00323305791, -0.0291455388, -0.0011293696, 0.00315903383, 0.00491760951, 0.00368320523, 0.0152369859, -0.0314182825, -0.00295496709, -0.014220654, 0.00947510079, -0.0198464952, 0.00647812, -0.0188861806, 0.00804263167, -0.0167894941, 0.0130442688, -0.00242679426, -0.00844276324, 0.000946809829, 0.00394128961, 0.00611400092, 0.004825579, 0.00402331678, -0.00430140784, -0.0082507, 0.00370721309, -0.0043294169, -0.0295296628, 0.0125721144, -0.0109475823, -0.010523444, 0.00184960524, -0.0179738812, 0.0107715251, -0.0174617153, -0.0132603394, -0.0124360695, -0.00328707579, 0.0163333453, -0.00394529104, -0.013724491, -0.0218471494, 0.00214670249, -0.0336750187, -0.00991524477, -0.00211269129, -0.00997126289, -0.0117398417, -0.00976319518, -0.00690225884, 0.00247080857, -0.00685824454, 0.0288094282, -0.0156371165, 0.0257844385, 0.0244560037, 0.0173016619, -0.00809865072, 0.0110356119, 0.0147808371, -0.00328907627, 0.0143406931, 0.0122119961, -0.0202786364, 0.00516569056, -0.0122119961, 0.013412389, -0.00611400092, 0.0114437453, 0.014724819, 0.0109875957, 0.016917536, 0.00498963287, 0.00759048387, 0.0239278302, 0.0097792, 0.0132043213, 0.00697028125, 0.0125481067, 0.0241839141, -0.00645811344, 0.0120839542, 0.00826670509, -0.0116678178, -0.00330508151, 0.00847477373, 0.0141326245, 0.00233876542, 0.00520170247, 0.0151329525, 0.0115157682, 0.025064202, 0.0175737515, 0.00604998, -0.00663016969, 0.0187421329, 0.030073842, -0.00604998, -0.00773052964, -0.0101313153, 0.00364119164, 0.0190302283, -0.016357353, 0.00610599807, 0.00743443286, 0.00174857222, 0.00664217351, -0.00307900761, 0.00888290722, 0.0234476738, 0.00239478378, -0.00181359355, 0.0131963184, 0.00766650867, -0.002850933, -0.00040788349, 0.00771852583, -0.0132603394, -0.0121319704, 0.0134524023, -0.0093230512, -0.00379724265, 0.0123400381, 0.0274009667, -0.00508166291, 0.0183259975, -0.0136524681, 0.0190302283, 0.0065541449, 0.0140285911, 0.00750645669, 0.0335789882, -0.00297297281, 0.00279491465, 0.0108755594, -0.0157731622, 0.00701429555, -0.00460950844, -0.0010403404, 0.0131883156, -0.00414935779, 0.00375122763, -0.00134544028, -0.00130042562, 0.0424458906, 0.00547379116, -0.00867483858, -0.0134924157, 0.00707031367, 0.0292255636, 0.0285373386, -0.0197824743, 0.0102433525, -0.0144527294, -0.00372121786, -0.0181659441, -0.00613000616, 0.0235757157, -0.0132443346, -0.0398530401, 0.00651813298, -0.00120039284, 0.00775453774, -0.00554181356, 0.0145567637, -0.0184700452, 0.0142126512, 0.00964315608, 0.00378924, -0.00369320856, 0.00538576255, -0.0080706412]
|
21 Feb, 2025
|
Implementing own Hash Table with Open Addressing Linear Probing
21 Feb, 2025
In Open Addressing, all elements are stored in the hash table itself. So at any point, size of table must be greater than or equal to total number of keys (Note that we can increase table size by copying old data if needed).
Insert(k) – Keep probing until an empty slot is found. Once an empty slot is found, insert k.Search(k) – Keep probing until slot’s key doesn’t become equal to k or an empty slot is reached.Delete(k) – Delete operation is interesting. If we simply delete a key, then search may fail. So slots of deleted keys are marked specially as “deleted”.Here, to mark a node deleted we have used dummy node with key and value -1. Insert can insert an item in a deleted slot, but search doesn’t stop at a deleted slot.The entire process ensures that for any key, we get an integer position within the size of the Hash Table to insert the corresponding value. So the process is simple, user gives a (key, value) pair set as input and based on the value generated by hash function an index is generated to where the value corresponding to the particular key is stored. So whenever we need to fetch a value corresponding to a key that is just O(1).
Implementation:
CPP
#include <bits/stdc++.h>
using namespace std;
// template for generic type
template <typename K, typename V>
// Hashnode class
class HashNode {
public:
V value;
K key;
// Constructor of hashnode
HashNode(K key, V value)
{
this->value = value;
this->key = key;
}
};
// template for generic type
template <typename K, typename V>
// Our own Hashmap class
class HashMap {
// hash element array
HashNode<K, V>** arr;
int capacity;
// current size
int size;
// dummy node
HashNode<K, V>* dummy;
public:
HashMap()
{
// Initial capacity of hash array
capacity = 20;
size = 0;
arr = new HashNode<K, V>*[capacity];
// Initialise all elements of array as NULL
for (int i = 0; i < capacity; i++)
arr[i] = NULL;
// dummy node with value and key -1
dummy = new HashNode<K, V>(-1, -1);
}
// This implements hash function to find index
// for a key
int hashCode(K key) { return key % capacity; }
// Function to add key value pair
void insertNode(K key, V value)
{
HashNode<K, V>* temp
= new HashNode<K, V>(key, value);
// Apply hash function to find index for given key
int hashIndex = hashCode(key);
// find next free space
while (arr[hashIndex] != NULL
&& arr[hashIndex]->key != key
&& arr[hashIndex]->key != -1) {
hashIndex++;
hashIndex %= capacity;
}
// if new node to be inserted
// increase the current size
if (arr[hashIndex] == NULL
|| arr[hashIndex]->key == -1)
size++;
arr[hashIndex] = temp;
}
// Function to delete a key value pair
V deleteNode(int key)
{
// Apply hash function
// to find index for given key
int hashIndex = hashCode(key);
// finding the node with given key
while (arr[hashIndex] != NULL) {
// if node found
if (arr[hashIndex]->key == key) {
HashNode<K, V>* temp = arr[hashIndex];
// Insert dummy node here for further use
arr[hashIndex] = dummy;
// Reduce size
size--;
return temp->value;
}
hashIndex++;
hashIndex %= capacity;
}
// If not found return null
return NULL;
}
// Function to search the value for a given key
V get(int key)
{
// Apply hash function to find index for given key
int hashIndex = hashCode(key);
int counter = 0;
// finding the node with given key
while (arr[hashIndex]
!= NULL) { // int counter =0; // BUG!
if (counter++
> capacity) // to avoid infinite loop
return NULL;
// if node found return its value
if (arr[hashIndex]->key == key)
return arr[hashIndex]->value;
hashIndex++;
hashIndex %= capacity;
}
// If not found return null
return NULL;
}
// Return current size
int sizeofMap() { return size; }
// Return true if size is 0
bool isEmpty() { return size == 0; }
// Function to display the stored key value pairs
void display()
{
for (int i = 0; i < capacity; i++) {
if (arr[i] != NULL && arr[i]->key != -1)
cout << "key = " << arr[i]->key
<< " value = " << arr[i]->value
<< endl;
}
}
};
// Driver method to test map class
int main()
{
HashMap<int, int>* h = new HashMap<int, int>;
h->insertNode(1, 1);
h->insertNode(2, 2);
h->insertNode(2, 3);
h->display();
cout << h->sizeofMap() << endl;
cout << h->deleteNode(2) << endl;
cout << h->sizeofMap() << endl;
cout << h->isEmpty() << endl;
cout << h->get(2);
return 0;
}
Java
// Our own HashNode class
class HashNode {
int key;
int value;
public HashNode(int key, int value)
{
this.key = key;
this.value = value;
}
}
// Our own Hashmap class
class HashMap {
// hash element array
int capacity;
int size;
HashNode[] arr;
// dummy node
HashNode dummy;
public HashMap()
{
this.capacity = 20;
this.size = 0;
this.arr = new HashNode[this.capacity];
// initialize with dummy node
this.dummy = new HashNode(-1, -1);
}
// This implements hash function to find index for a key
public int hashCode(int key)
{
return key % this.capacity;
}
// Function to add key value pair
public void insertNode(int key, int value)
{
HashNode temp = new HashNode(key, value);
// Apply hash function to find index for given key
int hashIndex = hashCode(key);
// find next free space
while (this.arr[hashIndex] != null
&& this.arr[hashIndex].key != key
&& this.arr[hashIndex].key != -1) {
hashIndex++;
hashIndex %= this.capacity;
}
// if new node to be inserted, increase the current
// size
if (this.arr[hashIndex] == null
|| this.arr[hashIndex].key == -1) {
this.size++;
}
this.arr[hashIndex] = temp;
}
// Function to delete a key value pair
public int deleteNode(int key)
{
// Apply hash function to find index for given key
int hashIndex = hashCode(key);
// finding the node with given key
while (this.arr[hashIndex] != null) {
// if node found
if (this.arr[hashIndex].key == key) {
HashNode temp = this.arr[hashIndex];
// Insert dummy node here for further use
this.arr[hashIndex] = this.dummy;
// Reduce size
this.size--;
return temp.value;
}
hashIndex++;
hashIndex %= this.capacity;
}
// If not found return -1
return -1;
}
// Function to search the value for a given key
public int get(int key)
{
// Apply hash function to find index for given key
int hashIndex = hashCode(key);
int counter = 0;
// finding the node with given key
while (this.arr[hashIndex] != null) {
// If counter is greater than capacity to avoid
// infinite loop
if (counter > this.capacity) {
return -1;
}
// if node found return its value
if (this.arr[hashIndex].key == key) {
return this.arr[hashIndex].value;
}
hashIndex++;
hashIndex %= this.capacity;
counter++;
}
// If not found return 0
return 0;
}
// Return current size
public int sizeofMap() { return this.size; }
// Return true if size is 0
public boolean isEmpty() { return this.size == 0; }
// Function to display the stored key value pairs
public void display()
{
for (int i = 0; i < this.capacity; i++) {
if (this.arr[i] != null
&& this.arr[i].key != -1) {
System.out.println(
"key = " + this.arr[i].key
+ " value = " + this.arr[i].value);
}
}
}
}
public class Main {
public static void main(String[] args)
{
HashMap h = new HashMap();
h.insertNode(1, 1);
h.insertNode(2, 2);
h.insertNode(2, 3);
h.display();
System.out.println(h.sizeofMap());
System.out.println(h.deleteNode(2));
System.out.println(h.sizeofMap());
System.out.println(h.isEmpty());
System.out.println(h.get(2));
}
}
Python
# Our own Hashnode class
class HashNode:
def __init__(self, key, value):
self.key = key
self.value = value
# Our own Hashmap class
class HashMap:
# hash element array
def __init__(self):
self.capacity = 20
self.size = 0
self.arr = [None] * self.capacity
# dummy node
self.dummy = HashNode(-1, -1)
# This implements hash function to find index for a key
def hashCode(self, key):
return key % self.capacity
# Function to add key value pair
def insertNode(self, key, value):
temp = HashNode(key, value)
# Apply hash function to find index for given key
hashIndex = self.hashCode(key)
# find next free space
while self.arr[hashIndex] is not None and self.arr[hashIndex].key != key and self.arr[hashIndex].key != -1:
hashIndex += 1
hashIndex %= self.capacity
# if new node to be inserted, increase the current size
if self.arr[hashIndex] is None or self.arr[hashIndex].key == -1:
self.size += 1
self.arr[hashIndex] = temp
# Function to delete a key value pair
def deleteNode(self, key):
# Apply hash function to find index for given key
hashIndex = self.hashCode(key)
# finding the node with given key
while self.arr[hashIndex] is not None:
# if node found
if self.arr[hashIndex].key == key:
temp = self.arr[hashIndex]
# Insert dummy node here for further use
self.arr[hashIndex] = self.dummy
# Reduce size
self.size -= 1
return temp.value
hashIndex += 1
hashIndex %= self.capacity
# If not found return None
return None
# Function to search the value for a given key
def get(self, key):
# Apply hash function to find index for given key
hashIndex = self.hashCode(key)
counter = 0
# finding the node with given key
while self.arr[hashIndex] is not None:
# If counter is greater than capacity to avoid infinite loop
if counter > self.capacity:
return None
# if node found return its value
if self.arr[hashIndex].key == key:
return self.arr[hashIndex].value
hashIndex += 1
hashIndex %= self.capacity
counter += 1
# If not found return None
return 0
# Return current size
def sizeofMap(self):
return self.size
# Return true if size is 0
def isEmpty(self):
return self.size == 0
# Function to display the stored key value pairs
def display(self):
for i in range(self.capacity):
if self.arr[i] is not None and self.arr[i].key != -1:
print("key = ", self.arr[i].key,
" value = ", self.arr[i].value)
# Driver method to test map class
if __name__ == "__main__":
h = HashMap()
h.insertNode(1, 1)
h.insertNode(2, 2)
h.insertNode(2, 3)
h.display()
print(h.sizeofMap())
print(h.deleteNode(2))
print(h.sizeofMap())
print(h.isEmpty())
print(h.get(2))
C#
using System;
class HashNode {
public int key;
public int value;
public HashNode next;
public HashNode(int key, int value)
{
this.key = key;
this.value = value;
next = null;
}
}
class HashMap {
private HashNode[] table;
private int capacity;
private int size;
public HashMap(int capacity)
{
this.capacity = capacity;
table = new HashNode[capacity];
size = 0;
}
// hash function to find index for a given key
private int HashCode(int key) { return key % capacity; }
// function to add key value pair
public void InsertNode(int key, int value)
{
int hashIndex = HashCode(key);
HashNode newNode = new HashNode(key, value);
// if the key already exists, update the value
if (table[hashIndex] != null) {
HashNode current = table[hashIndex];
while (current != null) {
if (current.key == key) {
current.value = value;
return;
}
current = current.next;
}
}
// if the key is new, add a new node to the table
newNode.next = table[hashIndex];
table[hashIndex] = newNode;
size++;
}
// function to delete a key value pair
public int ? DeleteNode(int key)
{
int hashIndex = HashCode(key);
if (table[hashIndex] != null) {
HashNode current = table[hashIndex];
HashNode previous = null;
while (current != null) {
if (current.key == key) {
if (previous == null) {
table[hashIndex] = current.next;
}
else {
previous.next = current.next;
}
size--;
return current.value;
}
previous = current;
current = current.next;
}
}
return null;
}
// function to get the value for a given key
public int ? Get(int key)
{
int hashIndex = HashCode(key);
if (table[hashIndex] != null) {
HashNode current = table[hashIndex];
while (current != null) {
if (current.key == key) {
return current.value;
}
current = current.next;
}
}
return 0;
}
// function to get the number of key value pairs in the
// hashmap
public int Size() { return size; }
// function to check if the hashmap is empty
public bool IsEmpty() { return size == 0; }
// function to display the key value pairs in the
// hashmap
public void Display()
{
for (int i = 0; i < capacity; i++) {
if (table[i] != null) {
HashNode current = table[i];
while (current != null) {
Console.WriteLine("key = " + current.key
+ " value = "
+ current.value);
current = current.next;
}
}
}
}
}
class Program {
static void Main(string[] args)
{
HashMap h = new HashMap(20);
h.InsertNode(1, 1);
h.InsertNode(2, 2);
h.InsertNode(2, 3);
h.Display();
Console.WriteLine(h.Size());
Console.WriteLine(h.DeleteNode(2));
Console.WriteLine(h.Size());
Console.WriteLine(h.IsEmpty());
Console.WriteLine(h.Get(2));
}
}
JavaScript
// template for generic type
class HashNode {
constructor(key, value) {
this.key = key;
this.value = value;
}
}
// template for generic type
class HashMap {
constructor() {
this.capacity = 20;
this.size = 0;
this.arr = new Array(this.capacity);
// Initialise all elements of array as NULL
for (let i = 0; i < this.capacity; i++) {
this.arr[i] = null;
}
// dummy node with value and key -1
this.dummy = new HashNode(-1, -1);
}
// This implements hash function to find index for a key
hashCode(key) {
return key % this.capacity;
}
// Function to add key value pair
insertNode(key, value) {
const temp = new HashNode(key, value);
// Apply hash function to find index for given key
let hashIndex = this.hashCode(key);
// find next free space
while (
this.arr[hashIndex] !== null &&
this.arr[hashIndex].key !== key &&
this.arr[hashIndex].key !== -1
) {
hashIndex++;
hashIndex %= this.capacity;
}
// if new node to be inserted
// increase the current size
if (
this.arr[hashIndex] === null ||
this.arr[hashIndex].key === -1
) {
this.size++;
}
this.arr[hashIndex] = temp;
}
// Function to delete a key value pair
deleteNode(key) {
// Apply hash function to find index for given key
let hashIndex = this.hashCode(key);
// finding the node with given key
while (this.arr[hashIndex] !== null) {
// if node found
if (this.arr[hashIndex].key === key) {
const temp = this.arr[hashIndex];
// Insert dummy node here for further use
this.arr[hashIndex] = this.dummy;
// Reduce size
this.size--;
return temp.value;
}
hashIndex++;
hashIndex %= this.capacity;
}
// If not found return null
return null;
}
// Function to search the value for a given key
get(key) {
// Apply hash function to find index for given key
let hashIndex = this.hashCode(key);
let counter = 0;
// finding the node with given key
while (this.arr[hashIndex] !== null) {
if (counter++ > this.capacity) {
// to avoid infinite loop
return 0;
}
// if node found return its value
if (this.arr[hashIndex].key === key) {
return this.arr[hashIndex].value;
}
hashIndex++;
hashIndex %= this.capacity;
}
// If not found return null
return 0;
}
// Return current size
sizeofMap() {
return this.size;
}
// Return true if size is 0
isEmpty() {
return this.size === 0;
}
// Function to display the stored key value pairs
display() {
for (let i = 0; i < this.capacity; i++) {
if (this.arr[i] !== null && this.arr[i].key !== -1) {
console.log(`key = ${this.arr[i].key} value = ${this.arr[i].value}`);
}
}
}
}
// Driver method to test map class
const h = new HashMap();
h.insertNode(1,1);
h.insertNode(2,2);
h.insertNode(2,3);
h.display();
console.log(h.sizeofMap());
console.log(h.deleteNode(2));
console.log(h.sizeofMap());
console.log(h.isEmpty());
console.log(h.get(2));
Outputkey = 1 value = 1
key = 2 value = 3
2
3
1
0
0Complexity analysis for Insertion:
Time Complexity:Best Case: O(1)Worst Case: O(N). This happens when all elements have collided and we need to insert the last element by checking free space one by one.Average Case: O(1) for good hash function, O(N) for bad hash functionAuxiliary Space: O(1)Complexity analysis for Deletion:
Time Complexity:Best Case: O(1)Worst Case: O(N)Average Case: O(1) for good hash function; O(N) for bad hash functionAuxiliary Space: O(1) Complexity analysis for Searching:
Time Complexity:Best Case: O(1)Worst Case: O(N)Average Case: O(1) for good hash function; O(N) for bad hash functionAuxiliary Space: O(1) for search operation
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Implementing own Hash Table with Open Addressing Linear Probing
|
https://www.geeksforgeeks.org/implementing-hash-table-open-addressing-linear-probing-cpp/?ref=lbp
|
Pandas
|
Implementing own Hash Table with Open Addressing Linear Probing
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, Implementing own Hash Table with Open Addressing Linear Probing, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0379539765, -0.0092495475, -0.00750369532, 0.0264537055, 0.013743286, -0.000858955376, 0.0104211569, 0.0176049713, -0.0317876115, 0.0188074131, 0.0170037504, 0.0317876115, -0.010845094, -0.0389714278, 0.0344391465, 0.0141980555, 0.0131035252, 0.00290589943, -0.0281494558, -0.0361349, -0.0259449799, -0.0191311464, -0.0443669967, -0.00864061899, -0.0227076393, 0.0186224226, -0.000286880502, -0.00118702522, 0.00541098509, 0.02466546, -0.0206419062, 0.0283498634, 0.000647468318, -0.00919559132, -0.00433957949, 0.000870035554, 0.0176358037, -0.0155623639, -0.0252666809, 0.0108296787, 0.0321575925, -0.030831825, -0.0385397822, 0.0090645561, 0.0165104419, 0.00914163608, 0.0149919745, -0.0129879061, 0.000390937901, 0.0179132894, 0.0150305144, -0.0488684401, 0.0496392362, 0.00450915424, 0.0055689984, 0.0128722871, -0.0218905956, 0.0155315315, -0.00588117074, -0.0130958175, 0.00217171665, -0.023524683, 0.00654405495, 0.00174392504, -0.00109934725, 0.0385397822, -0.0723314583, 0.0166954324, 0.0213356223, -0.0188228283, -0.0257754046, 0.0209964719, 0.0104442807, -0.0158475582, -0.0074343239, 0.00595439598, -0.0320342667, 0.0293518975, 0.00473268516, 0.0437811911, -0.00732641248, 0.00299068703, 0.00847104378, -0.0261145551, 0.0101899179, -0.0475118421, -0.0236634258, -0.0593204312, 0.054418169, 0.0262995455, -0.0366898701, -0.0114308987, 0.0322192572, -0.0155623639, 0.00577711314, 0.0664117485, -0.0230005402, -0.0133733042, -0.00682924921, 0.0764629245, -0.00526453415, 0.0211198, -0.0227384698, 0.0114540225, -0.0236788411, 0.000878225255, 0.0374915, 0.0141440993, 0.0412221476, 0.0526299253, 0.0149303107, -0.00238175853, -0.0178053789, 0.00945766177, -0.0162946191, -0.0428870693, 0.0172966532, -0.0183757674, -0.00949620176, -0.0074150539, -0.00665967399, 0.0418387875, 0.00216400879, 0.0245267171, -0.0325892381, 0.0358882435, -0.0184836797, 0.00368633, 0.0345008112, -0.0401122048, -0.00865603518, -0.0207498185, 0.0352716073, -0.00838625617, 0.00820126571, 0.0331442133, 0.0436270311, 0.0685083121, 0.00264382898, 0.00219291355, -0.0200869329, -0.0478509925, -0.0420546085, 0.00893352088, -0.0186532531, 0.00622417452, -0.0236634258, 0.0398963802, -0.032126762, 0.0311709754, -0.0362273939, -0.0174970608, 0.0104905283, 0.00430874759, 0.0258524846, -0.0125023052, 0.0238638315, 0.0228463821, -0.011947332, 0.00916476, 0.0199481901, -0.03699819, 0.0201177653, -0.0545723289, -0.0486526191, 0.0309397355, -0.000664329447, 0.00375955552, -0.0252820961, 0.0459085852, 0.0182986874, 0.0440895073, 0.0173737332, 0.0220293384, -0.0395264, -0.00348977721, 0.022152666, -0.0126487557, 0.00795461051, -0.0154621601, 0.0464018956, -0.0102592893, 0.0333600342, 0.0326200686, 0.0122787738, -0.0274094921, 0.0153311249, -0.0210889671, 0.00155122613, -0.008602079, -0.00881790183, 0.0147607364, 0.00342618651, 0.0590429455, 0.0229697097, -0.0266078655, -0.0360115729, 0.00692559872, -0.0124637652, 0.00372679671, 0.0140516041, -0.0427945741, -0.0119550396, 0.018884493, -0.00586190075, -0.00165624707, 0.0109452978, -0.0578713343, 0.0491459295, 0.00148185459, -0.0555589497, 0.0157088153, -0.0391255841, -0.020549411, 0.0269007664, 0.0255441666, -0.0242646467, 0.0364123844, -0.0423320942, -0.0113692349, 0.00528765796, 0.0103286617, 0.0469260365, 0.00587731646, -0.0239871591, -0.0235092659, 0.0173429, 0.0204106681, -0.00231431378, -0.0227538869, 0.0624961071, 0.0107911387, -0.0435345359, -0.000440557866, -0.0102130417, -0.0255287513, -0.0218443479, -0.0277178101, 0.0142905507, 0.0373065062, -0.000410448672, 0.0219676755, -0.00848646, -0.00952703413, -0.00105020904, 0.00720693916, -0.0445519872, -0.00357649173, 0.0522291102, 0.0307393298, 0.0462169051, 0.0054649408, -0.0176512189, -0.0285194386, -0.00974285696, 0.0219214279, -0.00396959763, 0.0112073682, -0.0244650524, -0.0175278932, 0.0151615497, -0.0121246148, -0.0421162732, 0.029382728, 0.00464789756, -0.00498704752, 0.0282265358, 0.00256096851, -0.019177394, 0.0183757674, 0.0757229626, -0.0342541561, -0.00706819585, 0.0349016264, 0.0252050161, 0.0187457502, -0.0337300152, 0.00654790876, -0.0135351708, 0.00350326602, 0.029382728, 0.00749213342, 0.0218135156, 0.0330825485, 0.0269315988, -0.0256983265, -0.0376148261, -0.0397730544, -0.00610084739, -0.013473507, -0.0207035709, -0.0333292037, -0.0322500877, 0.00300032203, 0.013704746, 0.0169729199, 0.00294636632, -0.0565147363, -0.00174681551, -0.0199636072, -0.0116544301, -0.0136430822, -0.017358318, -0.0174662285, -0.0448294729, -0.0168495923, 0.00111572666, -0.00694101444, 0.00657488639, -0.0310784783, 0.0172658209, -0.0139436927, -0.0093112113, -0.0416537933, -0.0030099568, 0.0225843117, 0.0272090845, 0.00907997228, -0.023447603, -0.0252512638, 0.0100820065, -0.00589273265, -0.0308626555, 0.0472651869, -0.00596595788, -0.0214435346, -0.020780649, 0.0260220598, 0.0123404376, -0.011230492, -0.0377381518, 0.00822438952, -0.0322809219, -0.000993362861, -0.0364432149, -0.0440278463, -0.0175124761, 0.0143059669, -0.00435499521, -0.00570388744, 0.00952703413, 0.00365742529, 0.00513735274, 0.0106986435, -0.00526068, -0.0243263096, -0.00965036079, -0.0116235977, 0.0315717869, 0.00941912271, 0.00144620531, 0.00484059658, 0.0034030627, -0.0191928111, 0.0313405506, -0.0253900066, -0.0419312827, -0.0194702968, 0.0188228283, 0.0124945967, 0.019177394, 0.0184682626, 0.00709517347, 0.0138357813, -0.0248966981, 0.00690247491, -0.0107063511, 0.0149688506, 0.00624344451, -0.0152694611, 0.0056191, -0.0266541131, 0.0134889232, -0.0530924, -0.038354788, -0.0165875219, 0.00651322305, 0.0215668604, 0.0431028903, -0.000791029, 0.00517589273, 0.0424862541, 0.000577133207, -0.0186224226, -0.0267620236, -0.00145776721, -0.00289433752, 0.0164179467, -0.0170345828, 0.00407750858, 0.000260625267, -0.00534546748, 0.000480783754, 0.00215244666, 0.0109684216, 0.0146605326, -0.0193623863, -0.0440895073, -0.0114308987, -0.0382314622, 0.0181291122, -0.018344935, 0.00375762861, 0.00682924921, -0.0221064184, 0.0177437142, -0.0164179467, -0.00183353, 0.0179903693, 0.0261608027, -0.00354373292, 0.0267466083, -0.0545106642, 0.0343158208, 0.00324312248, 0.00044176224, -0.0240179915, 0.0562989116, 0.0282573681, -0.0093112113, -0.00643228926, -0.029999366, 0.0135814184, -0.0111611206, -0.0298914537, 0.00316026201, -5.33535094e-05, -0.0191311464, 0.014537205, -0.0227384698, 0.0252820961, 0.0185453426, 0.00758848293, -0.00316026201, -0.0427020788, -0.039279744, 0.0269007664, 0.00308703654, -0.0212739594, -0.00588887837, 0.0281957034, 0.0353024378, 0.00649009924, -0.0190232359, -0.00955015793, -0.00173814408, -0.0227230545, -0.0111225806, -0.01225565, 0.00261299708, -0.0287506767, 0.0247117076, -0.0110532092, -0.0178670418, 0.0424554236, -0.00971202459, 0.00903372467, -0.0204877481, 0.000536666426, 0.00183256657, 0.00552275078, 0.0386631079, 0.0010675519, 0.0101513779, -0.0054957727, 0.0633285642, 0.00687549682, -0.0204877481, -0.00831688475, -0.0279182177, -0.0101513779, -0.0142443031, 0.0153696649, 0.0054957727, 0.00812418573, -0.0187457502, 0.0342849903, -0.0125716766, -0.017127078, -0.0454152785, 0.0272707492, 0.0157011058, 0.00562295411, -0.0060623074, 0.000907130074, 0.0153696649, 0.0300456136, 0.00733412, 0.000461995631, -0.011153413, -0.0284886062, -0.0109838378, -0.0473576821, -0.0100974226, -0.00421239808, 0.0314792916, -0.0157088153, -0.0346858, 0.0143599221, 0.063945204, 0.0198094472, -0.013126649, -0.0320342667, -0.0103055369, 0.00167648052, -0.0202102605, 0.0120706595, -0.0196090396, -0.0294906404, -0.0487451144, -0.0107448911, -0.00264575589, -0.00817043334, 0.00280955, -0.00101455976, 0.0048367423, -0.0068176873, 0.0154390363, -0.0249583628, -0.00415458856, -0.00467102136, 0.0343158208, -0.00362659339, 0.0236634258, -0.0111457044, 0.00172947266, 0.0121092, -0.0173274856, -0.00182389515, -0.044459492, 0.00511422893, 0.0170037504, -0.0008430577, 0.0114771463, 0.00620105071, -0.0195473768, 0.0297835432, 0.0357649177, 0.00234707259, 0.00844792, 0.0055882684, 0.0253745914, 0.00158880244, 0.00074622652, -0.0195319615, 0.00854812376, 0.0227693021, -0.0153619563, 0.00935745891, -0.00114559499, 0.00406980095, 0.0129879061, 0.013627666, 0.0225226469, -0.0093343351, 0.0195782091, 0.0272553321, -0.0218135156, -0.00351675507, 0.00753838103, 0.000447784085, 0.0103594931, 0.00180173479, 0.00138935912, 0.0398347192, -0.0443361625, -0.0112073682, -0.00455925614, -0.00537629938, -0.0018296761, 0.0174662285, -0.00526068, 0.0168958399, -0.0363198891, -0.00318723987, 0.00864061899, -0.00904143229, -0.0130187375, -0.0351791121, -0.00897206087, 0.0167879276, -0.0116929691, 0.00164757564, -0.00236634258, -0.00570774172, -0.000154640875, -0.00962723698, -0.011307572, -0.0254362561, 0.00464404374, -0.00466331327, 0.0211968794, 0.00757306674, -0.00861749519, -0.00990472361, -0.0249429457, -0.00823209714, -0.0198248625, 0.00759619055, -0.00348592317, 0.000590622134, 0.00753067294, 0.0203798357, -0.00964265317, -0.00820897333, 0.0134812156, -0.0186378378, -0.0116544301, 0.00370945386, -0.00545723317, -0.0464943908, -0.0120321196, 0.00803169049, -0.00859437138, 0.0185299274, 0.0307855774, 0.00581565313, 0.0131497728, -0.0320959277, -0.0398347192, -0.00765785435, -0.0204877481, -0.00280184206, 0.0196244568, -0.00728787249, -0.0158783905, -0.0476968326, 0.0109067578, 0.00493694609, -0.0337300152, 0.00216208166, -0.0234784335, -0.00843250379, -0.0125716766, 0.0297218785, 0.0307239126, -0.0093343351, 0.0127643757, 0.002464619, 0.0105676083, 0.0343774855, 0.0365048796, -0.00742276199, 0.0884256735, -0.0189307407, -0.000842576, -0.0250354409, -0.00335874199, 0.0190848988, -0.0117083853, -0.00713371346, 0.0107063511, 0.0567305572, 0.0154775763, 0.0004603095, -0.0460010804, 0.00238946639, -0.0132499766, -0.00816272572, 0.0309705678, -0.00892581325, 0.0205802433, 0.00546108698, 0.0131189413, 0.0130110299, -0.0111071644, -0.0111611206, -0.00487528229, 0.00981993601, 0.0341, -0.0534623824, -0.0332058743, -0.0352716073, -0.00798544288, 0.0232009478, -0.0431953855, -0.0545415, 0.0309859831, 0.00522984844, -0.0101205464, -0.0135582946, -0.0120783672, -0.0114771463, -0.00137201615, 0.0434112102, -0.00886414945, -0.0165566895, 0.00595054217, -0.0131189413, -0.0250200257, -0.0365357138, -0.0120937834, 0.0216747727, 0.0168804247, 0.0179287065, -0.0361657292, 0.0115002701, 0.00518745463, -0.0340383351, 0.0117546329, 0.0180520341, -0.00890268944, 0.0163408667, 0.00506798131, 0.000771759136, 0.0193469692, -0.00557285221, -0.0165412743, 0.00348977721, -0.00568461744, 0.003711381, 0.0155469477, -0.00180944265, 0.0299685337, -0.0166183542, -0.0232317802, 0.007403492, -0.00842479616, 0.00396188954, -0.013280808, -0.0136816222, 0.0192853063, 0.02010235, -0.0238484163, 0.038138967, -0.00258023827, -0.00256096851, -0.00422010617, -0.0263612103, -0.0114925625, -0.011908792, -0.0285194386, 0.0230622049, 0.00215822761, -0.0339766704, 0.0194548815, 0.0389714278, -0.00335296104, -0.0371831805, 0.00286928657, 0.00378460647, -0.0263149627, -0.0171116628, 0.00257445732, 0.0142134707, 0.0174353961, 0.0176512189, -0.00759233674, -0.00729943439, 0.0206573233, 0.00124483497, 0.0187149178, 0.0261299722, -0.0361349, -0.00451686233, -0.00387710193, 0.0171887428, 0.00728787249, 0.00434343331, 0.00701809395, 0.00622032071, 0.00405438477, -0.000277486426, 0.0190540683, -0.0328975581, -0.0203644205, -0.019177394, 0.00398886716, -0.000735628069, -0.0067444616, -0.00663269637, 0.0443978272, 0.0165412743, 0.0140670203, -0.000115559124, -0.0158013105, -0.00753067294, 0.0111302882, -0.00702965586, -0.00904914085, -0.0109067578, 0.0238638315, 0.0198094472, 0.0312943, 0.00646697497, 0.0108296787, 0.00835542474, 0.0325892381, 0.040728841, -0.0156086115, 3.41137275e-05, 0.0377381518, 0.0369365253, 0.0149688506, 0.00152424828, -0.0196707044, -0.00965036079, -0.0384164527, 0.0199481901, -0.0265770331, -0.00791607052, -0.014614285, -0.00762316864, -0.0157550629, 0.00390986074, -0.0152232135, 0.0125485528, 0.0314484611, 0.00146065769, 0.00193662394, -0.0092033, -0.0177437142, -0.0139205689, 0.000470667059, 0.0228617974, -0.00406209286, -0.00684081111, -0.0192698911, 0.00190482871, 0.0300610289, 0.00288855657, 0.0168650076, 0.0161712915, -0.0273786597, -0.029613968, 0.04917676, 0.0283344463, -0.00452842424, 0.0455694385, -0.00141151948, 0.00971202459, 0.00160132791, -0.00161481684, 0.0328050628, 0.000491141342, 0.00672133779, 0.0127797909, 0.0118162967, 0.00284809, 0.00480976468, 0.00696799252, -0.00499860942, -0.0153002925, 0.00367862196, 0.00558441412, 0.0055381665, -0.0223684888, 0.0234321859, 0.0278103054, 0.0264999531, 0.0251741856, 0.0186532531, 0.00800856669, 0.015639443, 0.00287121371, 0.0115850577, -0.0145526212, -0.0124560567, 0.0282881986, 0.0103209531, 0.037399, 0.01705, 0.0021254688, 0.00158880244, 0.018499095, 0.0335141942, -0.0142751345, -0.0290435795, -0.00640531164, -0.00363622839, -0.012062951, -0.000854137877, 0.0207652338, 0.0165875219, 0.000774649612, -0.00504871132, 0.0217826832, 0.0255441666, 0.016140461, -0.0160171334, 0.0320650972, -0.0153696649, -0.0265770331, -0.0290435795, 0.012486889, -0.00133444, 0.0208885614, -0.0319109373, -0.00298105204, -0.0116235977, 0.00682539539, -0.0201485977, -0.0361349, -0.00830917712, -0.00108296785, 0.00900289323, -0.00150112447, 0.0119858719, 0.0173891485, -0.00593127217, 0.0236788411, -0.0018672524, 0.00787367765, 0.00790065527, 0.0085789552, 0.0188382454, 0.00435884902, 0.00264382898, 0.00992014, 0.0107063511, -0.0132268528, 0.0108990502, -0.0270395093, -0.0516741388, -0.0230313726, 0.0290589947, -0.0186378378, -0.00492538419, 0.00820126571, -0.00361503148, 0.0074574477, 0.0281802882, -0.0297527108, 0.0292748176, -0.00753452722, -0.0139822327, -0.0249429457, 0.00236826949, -0.0337608494, -0.00510652084, 0.00984306, 0.0487759449, -0.00317182392, 0.00357071077, 0.00887185708, 0.00559212221, -0.019716952, 0.0169266723, -0.0518283, -0.00552275078, 0.00454769423, 0.0412529819, -0.00210619904, -0.00615865691, -0.0084556276, -0.0319109373, -0.0100434665, -0.00211198, 0.0138049498, 0.0106986435, -0.0289202519, 0.0102284579, 0.0443669967, -0.0500400513, -0.0122710662, -0.0127258357, -0.0263457932, -0.00951161794, -0.0234013554, 0.00840938, 0.0200715177, 0.00825522095, 0.00545723317, -0.00638604164, 0.00720308488, 0.0294289757, 0.00269200373, -0.00977368839, -0.0391872488, 0.00766170863, 0.019639872, 0.00847104378, 0.0320959277, 0.0353641026, -0.0194548815, 0.0214743651, -0.0364740491, -0.0100974226, 0.0266232807, -0.000246052427, 0.0202410929, -0.0287352614, -0.00237983139, -0.0266695283, 0.043010395, -0.0137278698, 0.0203335881, -0.0172195733, 0.00717996107, 0.0186224226, -0.0115465187, 0.00197130977, -0.000982282683, -0.0113923596, -0.00474810088, 0.0195165444, 0.0423012637, -0.0275790673, 0.0238638315, -0.00191542716, 0.0155931953, -0.020857729, 0.0114308987, 0.0373065062, 0.050687518, -0.02458838, 0.0153311249, 0.00205031643, -0.00121400307, 0.011461731, -0.00978139602, -0.0108605102, 0.0198094472, -0.00184027455, 0.0118933767, 0.0119319158, -0.0345933065, 0.00997409504, 0.0310168155, -0.00910309609, -0.000260143512, -0.00965036079, -0.0351174474, -0.00788523909, 0.019177394, 0.0101822102, 0.0114077749, -0.0113384034, -0.00128144771, 0.0256212465, -0.00573471934, 0.00113499654, 0.00415458856, 0.0155161154, -0.00445905281, 0.017281238, -0.00540327746, -0.0469260365, 0.000909538823, 0.0066827978, 0.0243725572, 0.0177591313, -0.00179499027, 0.0114463149, -0.00768483244, -0.0217210203, 0.0120167034, -0.00431645522, -0.00184412848, 0.0151153021, 0.00777732767, -0.0115927663, -0.0119010843, 0.0309397355, -0.0250662733, 0.0208885614, 0.00360732339, 0.00143849733, 0.00677143969, -0.00992784742, -0.0226768069, -0.00890268944, 0.00797773432, -0.0107988464, -0.0135968346, 0.015639443, 0.0209964719, -0.00640531164, 0.00121978403, 0.0173737332, 0.0111071644, -0.0292594023, -0.0346858, 0.0193007216, 0.00907997228, -0.00267658778, 0.0227076393, -0.00302537275, -0.0264074579, -0.0310630631, -0.019794032, -0.0161250439, 0.00754994294, 0.0372448452, -0.00246654591, -0.0376456566, 0.00472497707, -0.000550637138, -0.01225565, -0.0214127023, 0.00600064406, 0.00646312116, -0.00709902775, 0.0271320064, -0.015153842, 0.00546879508, 0.0033915008, 0.0869457424, 0.00416229619, -0.000910984061, -0.0134966308, -0.00496392371, -0.025050858, 0.0067637316, 0.00883331802, 0.00589658646, -0.00586960837, 0.0180057865, -0.000659993733, 0.018344935, 0.0265307855, -0.00193758751, -0.004909968, 0.00781586766, 0.00531078177, 0.00419312809, -0.0168341771, 0.0117854653, 0.0181907769, 0.0279490482, 0.0042894776, 0.0126872957, 0.00788138527, -0.0143059669, 0.00227962807, 0.0128877023, 0.00202719239, 0.0306314174, -0.0170191675, -0.0141980555, 0.00711829728, -0.00288855657, 0.026268715, -0.00612782501, 0.0043511414, -0.0241413191, 0.0215514451, -0.00842479616, 0.00445905281, -0.032126762, 0.00451300852, 0.00629354641, -0.00320650986, 0.0154236201, 0.000335536955, 0.000356733857, -0.00202719239, -0.00689862063, 0.0126872957, -0.0136739146, -0.00681383302, 0.00850958377, -0.00279798801, 0.0326200686, -0.00513349893, 0.00647853734, -0.00342233246, -0.0131035252, -0.00910309609, -0.00652863877, 0.00401199097, 0.0336991847, -0.0194857139, -0.0341616608, -0.0159554686, -0.0168958399, -0.00980452, -0.00130553509, 0.00863291, 0.0281494558, -0.01674168, 0.00752296532, 0.00660957256, -0.00725704059, -0.00100588833, 0.0170808304, -0.0153696649, -0.0137664098, 0.0270395093, -0.0162946191, 0.0159246381, 0.00274595944, 0.00194144144, -0.00736495201, -0.00281533087, -0.013357888, 0.0073225582, 0.00318723987, -0.0244650524, -0.0421162732, -0.0118779605, -0.0152386297, 0.00462477375, 0.0123018976, 0.00134889234, -0.016063381, 0.0209810566, -0.0159246381, -0.010922174, 0.00459008804, 0.0255287513, 0.00253399066, 0.00583106885, 0.00785440765, -0.00999721885, 0.00544181699, 0.0199327748, 0.0240025762, 0.0112844482, 0.00813189335, -0.00348399626, 0.0222914089, -0.00864061899, 0.0128029147, -0.0270549264, -0.00507183513, -0.00161674374, 0.00317953201, 0.0252666809, 0.0223993212, -0.0217210203, 0.00800856669, -0.0141055593, -0.00389444479, -0.00310823321, -0.0121862786, 0.0104519883, -0.0223530736, -0.00141633698, -0.00800085813, -0.00398115953, -0.0330517143, -0.00818584953, 0.0169266723, 0.00288662966, -0.00911080372, -0.000210644, -0.0148223992, 0.016063381, 0.00749984151, -0.00186339836, -0.0103980331, -0.0184836797, -0.0141903469, -0.00874082185, 0.00891039707, 0.0114925625, -0.0364740491, -0.0237096734, 0.00545337889, -0.026638696, 7.55138826e-05, -0.0030947444, -0.0036188853, 0.00793919526, 0.00265539088, -0.00706819585, -0.00588117074, 0.0204877481, 0.0230776202, -0.0178670418, -0.00205995119, -0.00172176468, 0.0030619856, -0.0618486404, -0.0271165892, 0.00242029829, 0.0185607579, -0.0247579552, 0.0323425829, -0.00992014, 0.0067868554, -0.00497934, 0.0311709754, -0.00376148266, -0.000323252403, 0.00532619748, -0.0122094024, -0.00800085813, -0.00848646, 0.0034242596, -0.0222143289, 0.0227693021, -0.0315717869, 0.00420854427, 0.0262841303, 0.0118085891, 0.0134657994, 0.00289626443, -0.00634364784, 0.0263920426, -0.00331827509, 0.0107217673, 0.0171887428, -0.010999253, -0.00898747705, 0.0253900066, -0.0207498185, 0.0102747055, -0.0176820513, -0.0270549264, 0.0243725572, -0.00978139602, -0.0186995, -0.00836313237, 0.0182061922, 0.0265770331, 0.0171887428, -0.0363507196, -0.00444749091, -0.0159708858, 0.0291360747, -0.00248967, -0.0141055593, 0.0267774388, -0.00595054217, 0.00841708854, 0.0216285251, 0.030292267, 0.0284731891, 0.00813189335, -0.019331554, -0.000365164422, 0.021998506, -0.0124329329, -0.0083939638, 0.0097351484, -0.025050858, -0.00363044743, 0.0436886959, -0.0175124761, -0.00336644985, -0.0274094921, 0.0300456136, -0.0187919978, -0.0356415883, 0.0103286617, -0.0196861196, 0.00900289323, -0.0253900066, 0.0024704, 0.00586190075, -3.63719191e-05, -0.023293443, 0.00168900588, -0.0176820513, 0.00535317557, -0.0385089479, -0.00596595788, 0.00721079297, -0.012101491, 0.0102669979, 0.0206881538, 0.00104924547, -0.0102901217, -0.0221372508, -0.027024094, 0.019639872, 0.0209964719, -0.0162792038, 0.0169575028, -0.010922174, 0.0281957034, -0.0152540449, -0.0435345359, -0.00840167236, 0.00706819585, -0.0112536158, -0.00544181699, -0.00494465372, 0.00975056458, 0.0204260834, -0.0214589499, 0.00559212221, -0.00580409076, 0.0104057407, -0.0179287065, -0.0203335881, 0.0365665443, 0.0110994568, 0.0163871143, 0.0239717439, -0.00515662273, 0.00825522095, 0.021998506, 0.00216786261, -0.0092495475, -0.019331554, -0.00507954322, 0.00472112326, -0.00289819157, 0.0104828207, 0.0254825037, -0.000601702312, -0.00546879508, -0.0198711101, 0.0310476478, 0.0133887194, -0.019254474, 0.00158013101, 0.0302614365, -0.00881790183, -0.00523370225, 0.0212739594, 0.00324119558, -0.00793919526, -0.00097312947, -0.00682539539, -0.00576555124, -0.00462092, 0.00673675351, 0.00734953629, 0.00802398194, -0.0205802433, -0.00776961958, 0.00390022574, 0.00519901654, 0.00903372467, -0.00286543276, -0.0131420651, -0.023447603, -0.000822342583, 0.0189153235, -0.0130649861, 0.0114308987, -0.00342040556, -0.00524526415, -0.00256674946, -0.0231701154, 0.00694486871, -0.00607772358, 0.00409292476, 0.0152000897, -0.00909538846, -0.02907441, 0.0182986874, 0.00242993329, -0.0256366618, -0.00827834476, 0.0108065549, -0.0143676307, 0.0119396243, -0.0120783672, 0.0312788859, 0.027856553, -0.00023461091, 0.0325892381, -0.0573780239, -0.0085789552, -0.0203798357, 0.00349363103, 0.0327433981, -0.0215514451, 0.0156856906, 0.00451686233, -0.0251279362, -0.0050024637, -0.000487528217, -0.00491382182, 0.00480591087, -0.00152906578, 0.0212277118, -0.0149919745, -0.0105830235, 0.00201370358, 0.0287198443, 0.0103672007, 0.00230082497, 0.0100665903, -0.0193007216, -0.00449759234, 0.00635906402, -0.011191952, -0.0126333404, 0.0135582946, -0.0272245016, 0.00343582151, -0.00101455976, 0.0034454565, -0.00534161367, 0.0123173138, -0.0104288645, -0.02010235, -0.0141518079, 0.0218597632, -0.00669050589, -0.0168804247, 0.0156702753, 0.0483751334, 0.0341616608, 0.0184528474, -0.00656332448, 0.00922642369, -0.0160171334, -0.00646697497, 0.00377111766, 0.00705277966, 0.0329592191, 0.00122941902, 0.00303500774, 0.0111302882, -0.000589658623, 0.0137278698, 0.0025282097, -0.0128029147, 0.0141749317, -0.0273478292, 0.0205802433, 0.0186532531, -0.00519130845, -0.025883317, 0.0132499766, 0.0203335881, 0.0126025081, 0.0354565978, 0.0187611654, 0.00450144662, -0.00385975908, -0.020549411, -0.0237713363, -0.0101899179, 0.00310630631, -0.0114000672, 0.0239409115, 0.0128491633, -0.0196244568, -0.00139514008, 0.0170654152, -0.00723777059, -0.0159246381, 0.00853270758, -0.0184066, 0.00475580897, 0.0209810566, -0.0042393757, -0.0196707044, 0.0147530278, 0.00490611419, -0.00730328867, -0.030754745, -0.0048791361, -0.0310630631, -0.000712504203, 0.0282573681, -0.0123404376, 0.0155084077, 0.00329515128, -0.000309522613, -0.00373257766, -0.00944224652, 0.00278835325, -0.0209039766, 0.0146451164, -0.0218289327, 0.00389829883, -0.00454769423, -0.00599679, 0.0191465635, -0.0131343575, -0.0147530278, 0.0128799947, 0.0241567343, -0.00487142848, 0.0179441217, 0.00265539088, -0.0186995, -0.0212893747, -0.00481361849, -0.00544181699, -0.00696799252, -0.0109530054, 0.0162175391, 0.00691018254, -0.00571159553, 0.00328744319, 0.00504100323, 0.000416229625, -0.0111071644, 0.0140053565, 7.44299541e-05, 0.0244496372, -0.00277871825, 0.0300301965, -0.00913392846, 0.0103517855, 0.0126333404, 0.0204260834, 0.032126762, -0.00988930743, -0.00600064406, 0.00428176951, 0.000236778782, -0.0103132455, 0.00063638814, -0.0107217673, -0.0159554686, 0.000624826178, 0.0264228731, -0.00636677165, 0.00714527536, 0.00725318678, 0.0230159573, 0.0146759488, -0.0103132455, 0.0134118441, 0.00126506831, -0.00473268516, 0.00642072735, -0.0113152796, 0.000480302027, -0.00246269209, 0.00578482123, 0.00753067294, 0.0152540449, -0.0235709306, 0.00516433083, -0.00141151948, 0.0130572775, 0.0131189413, -0.00653249305, -0.00736880628, 0.0119781634, 0.00843250379, 0.00526453415, -0.00359190768, -0.0106678111, 0.0047943485, 0.00361117744, 0.0307084974, 0.00219291355, -0.00115908391, -0.0343158208, -0.00099818036, 0.0137895336, -0.00598522788, -0.0189924035, -0.0107371826, 0.00329900533, -0.00787753146, -0.0251433533, 0.021998506, -0.00692945253, 0.00147029269, 0.00943453796, -0.0120552434, -0.0175895561, 0.0078698229, 0.0103363693, 0.021397287, -0.0207189862, -0.0142288869, 0.000691789086, 0.00153966423, 0.0193469692, -0.00459779566, -0.00412375666, 0.0203335881, 0.00713756727, -0.0103132455, 0.0106292712, 0.00117546332, 0.00066625647, -0.010652395, 0.0138666127, 0.0219060108, 0.0250200257, -0.00758848293, 0.00867145, -0.018961573, 0.00572315743, 0.0153927887, -0.00896435324, 0.02017943, 0.0104519883, -0.00735724391, -0.0101899179, -0.0104982359, 0.0172195733, 0.00338571984, 0.0132653927, -0.00106466142, 0.00228348211, -0.00600064406, 0.0236942563, 0.0185607579, -0.0204260834, 0.00327395438, -0.0163254514, 0.0325275734, 0.00128530164, 0.00662884209, -0.0112382, -0.0133887194, -0.0196707044, -0.0212431271, -0.00613167929, -0.00702965586, 0.00507954322, -0.00571544934, 0.0138434889, -0.0228001345, -0.00460935757, -0.0280723758, -0.00289626443, -0.00311208726, -0.0189769883, -0.0154621601, -0.0155623639, -0.0139436927, 0.00813189335, -7.6838689e-05, -0.0156240268, 0.00112728856, -0.0127489595, -0.00349748507, -0.022152666, -0.0319417715, 0.0138049498, 0.0114308987, 0.00948078651, -0.0146297012, 0.00762702245, -0.00254555256, -0.0210581366, -0.00746130152, 0.000257253036, -0.00806252193, -0.0198248625, -0.0132191451, 0.0037133079, -0.00284809, -0.0141826393, 0.0126641719, -0.0127335433, -0.0119242081, -0.00365357124, -0.00464404374, 0.0158783905, 0.000566534756, 5.18179404e-05, -0.00754994294, -0.0237867534, -0.00793919526, -0.0132191451, -0.0204415, -0.00286157872, 0.00205417024, 0.0190232359, 0.0133501804, 0.00721079297, -0.0347166359, 0.00652478496, -0.0233242754, -0.0115388101, -0.00949620176, 0.00929579511, 0.00503329514, -0.0133733042, -0.0217056051, 0.00698726205, 0.00995868, 0.026715776, -0.025883317, 0.0175433084, 0.0116235977, 0.0118317129, -0.00717610726, 0.0112459082, -0.0223684888, -0.0120167034, 0.0241104867, -0.0146374088, 0.00594283408, 0.013935985, 0.00589658646, 0.000623862725, 0.00496007, -0.00586960837, -0.00148570852, -0.00720308488, -0.0134195518, 0.0131420651, -0.0123558538, -0.000581950706, -0.00528765796, 0.00115137594, 0.0175587237, -0.0173429, 0.00524141034, -0.00459008804, 0.0226305593, -0.0141595155, -0.0466485508, -0.00231046, 0.019331554, 0.00495621562, -0.0209039766, 0.0197323672, 0.0204415, -0.0205031633, 0.0192853063, -0.0162637867, -0.0224301517, 0.0109838378, -0.0153773725, -0.0153388325, 0.0231855325, 0.0235400982, 0.0118856682, 0.00196456537, -0.014806984, -0.0195319615, -0.00702965586, -0.00653634686, 0.0073109963, 0.0177437142, 0.0313559659, -0.0118085891, 0.00559597602, -0.00817043334, 0.0125948, -0.00206958619, 0.0131343575, 0.00700267823, -0.0254362561, -0.00373257766, -0.00155604363, -0.0151461335, 0.0119627481, 0.00231816783, -0.0178670418, -1.4783619e-05, 0.00884102564, 0.00369789195, 0.0137278698, 0.00778888958, -0.023524683, 0.0120706595, -0.0190694835, -0.0112613235, -0.00410834048, -0.0108528025, -0.0068176873, -0.0141209755, -0.00960411318, -0.0101051303, 0.0396805592, -0.00130649854, 0.00401969906, -0.0175587237, -0.0421779342, 0.0146682402, 0.00325468439, 0.00156664208, 0.00306776655, -0.0104442807, 0.0238792486, 0.0098816, 0.00435884902, -0.00985076837, 0.00289048348, 0.00730714248, -0.013935985, -0.00914934371, 0.00373065076, -0.00322963367, 0.00722620869, 0.0146682402, -0.0249429457, 0.0242338143, 0.0102053341, -0.000660475518, 0.000999143813, -0.00738036819, -0.0179441217, 0.0220910031, -0.00978139602, 0.00956557319, -0.000686008076, -0.0273786597, 0.00121014914, 0.0155854877, -0.01229419, 0.0295523033, 0.0142751345, 0.00856353901, 0.00814730953, 0.00456696423, 0.0204877481, 0.0303539317, 0.0200561024, -0.00474810088, -0.00296563609, -0.0105830235, 0.00406209286, 0.0113769434, 0.0013826146, -0.00569232553, -0.0311247278, -0.00541869318, -0.00285772467, 0.0191928111, -0.00984306, 0.00965806935, -0.0271320064, 0.00587731646, 0.00541483937, -0.00514506083, 0.0030639125, 7.26234e-05, 0.00666352827, -0.00716069108, -0.00944995414, -0.00948078651, 0.00679456349, 0.00343389437, -0.0203027558, -0.00622417452, -0.000367332279, -0.00600835169, -0.00621261261, 0.00184701895, 0.00670592207, -0.00233358378, -0.00189423026, -0.0123558538, 0.0144909574, 0.00533005176, -0.00391949574, -0.0110146692, -0.0351791121, 0.0147453202, 0.00063638814, 0.0145988688, 0.0160325486, 0.00626656832, 0.00862520281, 0.013512047, 0.0191619787, 0.0092495475, -0.0349941216, 0.0130187375, 0.0199173596, -0.00900289323, -0.00415458856, 0.00253591756, -0.0153002925, 0.0293210652, 0.0122325262, -0.0073957839, -0.00615480309, 0.0172195733, 0.0104596969, -0.0136816222, -0.0204106681, -0.0111302882, 0.00758462865, 0.00755765103, 0.00513735274, -0.0107294749, -0.0205956586, -0.00609699311, 0.00726474868, -0.011908792, -0.0142211793, 0.00554587459, 0.00874082185, 0.00357071077, -0.0110994568, -0.00749213342, 0.0123866852, -0.00663655, 0.0153542487, -0.0116390139, -0.00144138781, -0.0182370245, -0.0048868442, 0.0122248186, 0.00649780687, 0.0231855325, 0.00635906402, 0.00637833355, -0.00692559872, 0.0116081815, 0.0223530736, -0.00570774172, -0.00977368839, -0.0145294974, 0.0180212017, 0.0227847192, 0.00287314062, 0.0180674493, 0.00842479616, 0.0155623639, 0.0262070503, -0.0114077749, 0.00781586766, 0.0103517855, 0.00300610298, -0.0154004963, 0.00510266703, -0.020934809, 0.00136912568, 0.0100434665, 0.00144042436, 0.00642843544, 0.0446444824, -0.00460935757, 0.0276561473, 0.0199481901, 0.00361695839, 0.00166106457, 0.00746515533, 0.0235709306, -0.0213664547, 0.00554202031, 0.00506798131, -0.00418927427, 0.0134966308, 0.0144215859, -0.0213356223, 0.0371523499, 0.0078466991, 0.00443207473, 0.0115850577, -0.00459394185, -0.0234938506, 0.0012698858, 0.000948560366, -0.00281725801, -0.00174681551, 0.00827063713, 0.0237250887, 0.0128722871, 0.00919559132, 0.0272090845, -0.017666636, -0.0139591089, -0.00476351706, 0.00438582711, 0.0140438965, -0.00281918491, -0.00230467878, -0.00392720383, -0.00250508566, -0.00744203152, -0.0025282097, 0.0093343351, -0.00340113556, 0.00761931483, -0.00489455229, 0.0113846511, -0.0183603521, 0.00360732339, 0.00145487674, -0.00131324306, -0.0109375902, -0.00834771618, 0.0310630631, 0.00529536605, 0.00620105071, 0.0290589947, 0.00971973315, 0.00640916545, 0.00969660841, -0.00519901654, -0.0190694835, -0.0164025314, -0.0215822775, -0.0179441217, -0.0181136969, 0.00169285992, -0.0406980067, 0.00549191888, 0.00599293597, -0.0044050971, -0.0117006777, -0.0103980331, -0.00474039325, -0.00231816783, -0.00160421839, 0.0114077749, -0.0122479424, 0.013627666, 0.000828123535, 0.00807023048, -0.0260991398, -0.00240102829, 0.013589127, -0.00646312116, 0.00901830848, -0.0031159413, -0.00667509, 0.00379424146, 0.00186147145, 0.0211043842, 0.015909221, 0.0180828646, -0.00205609738, -0.0025070128, 0.0175741408, 0.0160942134, -0.0152386297, -0.0102361655, 0.00328551629, 0.00417385809, -0.0195165444, 0.0142443031, 0.0090645561, 0.0021543738, 0.0185299274, 0.0152232135, -0.0181136969, -0.00179402682, 0.0253283437, 0.0151615497, -0.000615673, 0.0103363693, 0.0131883128, 0.0122787738, -0.00527609605, 0.00817043334, 0.00909538846, 0.011114873, -0.0194702968, 0.0176358037, -0.0206573233, -0.0297835432, -0.00367284101, -0.0152848773, -0.0205802433, 0.00280762301, 0.00899518467, 0.016140461, 0.00426635379, -0.019331554, 0.00596981216, 0.0130649861, -0.00670592207, -0.00238368544, 0.00232202187, -0.0290435795, 0.020934809, -0.000402740698, 0.00786596909, -0.00911080372, -0.0156471506, -0.0128491633, 0.000330478622, 0.0122479424, -0.00637447974, -0.0198248625, 0.027563652, -0.0103594931, 0.003701746, 0.00803169049, 0.00127084926, 0.00997409504, -0.0315409563, -0.0220139232, 0.0178053789, 0.0149842668, -0.00910309609, 0.00796231907, -0.00612782501, -0.0201177653, 0.0252512638, 0.00821668096, 0.00223916117, -0.00390407979, 0.0191157311, -0.0121631548, 0.0186378378, -0.000942297629, 0.0116544301, 0.0165258572, 0.0196090396, -0.0123635614, -0.0121092, 0.0055266046, -0.0168033447, -0.0125177205, 0.00206958619, 0.00527224177, 0.0120321196, 0.0345933065, -0.0303847622, -0.0135737108, 0.0203644205, 0.0129185347, -0.0292594023, -0.00365742529, 0.00164275814, 0.0138049498, 0.0232626125, 0.0239100792, -0.0212739594, -0.00662884209, 0.00317760487, 0.00129108271, 0.00383278122, 0.0120012881, 0.00236826949, 0.0123173138, 0.020934809, 0.0127489595, 0.0146297012, 0.0145680374, 0.00588117074, 0.0155315315, 0.000844021211, -0.0142597193, 0.0437195264, 0.0120783672, -0.00104250107, -0.0214897823, 0.00139995757, 0.00390793383, 0.00362659339, -0.00453613233, -0.0288431719, -0.00146643864, 0.0143984621, -0.00662113447, -0.000479338516, -0.00179595384, 0.0150690544, 0.0101359626, 0.0055381665, -0.0131343575, 0.0334217, 0.0030831825, -0.0110609168, 0.0253129285, -0.0228772145, 0.00621646643, -0.00524526415, 0.0146759488, 0.00696028443, 0.000750562234, 0.0118317129, -0.0042702076, 0.0180212017, 0.00467487518, 0.000220519811, 0.0203952529, -0.00407750858, -0.00328744319, 0.0165875219, -0.00481361849, -0.0195011292, 0.0128799947, 0.0176974665, -0.0324967429, -0.0389714278, -0.00738036819, 0.000900867395, -0.0167108495, 0.0338533446, 0.0160942134, 0.00380965741, 0.012679588, 0.00638604164, 0.00555358222, -0.0101976264, -0.0129339499, -1.48814743e-05, 0.000347098889, -0.00459779566, 0.0270703416, -0.00294443918, -0.0127104195, 0.0126718795, 0.00171309325, 0.000732255809, 0.0120475357, 0.00115041249, -0.0106138559, 0.00739193, 0.0152077973, 0.0102824131, 0.018344935, 0.000677336648, -0.00388288288, -0.0300610289, -0.00108971226, -0.00337993866, -0.00978910457, -0.0214127023, -0.011947332, -0.00105502654, -0.00929579511, 0.00216400879, -0.0146990726, 0.0130341537, -0.0189307407, -0.0109452978, -0.0137587013, -0.0245575476, 0.0201948453, 0.00435499521, -0.00351675507, 0.0125639681, -0.0148301078, 0.0275790673, -0.00156471506, 0.00632052403, -0.0178978741, -0.00578482123, 0.00792377908, 0.0365973748, -0.0160017163, -0.0123096062, 0.00639760355, -0.00958869699, 0.000353602489, 0.0017121298, 0.00383856217, -0.00923413131, 0.0256674942, 0.0200869329, -0.0110300854, -0.00275174039, 0.0099818036, -0.013126649, -0.00263226707, 0.028241951, 0.00337801175, 0.00207729428, 0.0136970384, 0.00797002669, -0.0242338143, 0.00519901654, -0.00302537275, -0.0212431271, 0.019794032, -0.00730714248, -0.0113306958, -0.00472497707, -0.00115330296, 0.0116698453, 0.0181445293, 0.00826292858, 0.00763087673, 0.0144832497, 0.00318723987, 0.00264961, -0.0176820513, -0.000278690801, 0.0218751803, -0.0161712915, 0.0414996371, 0.0102284579, 0.000490900478, 0.00113017904, 0.00640145736, -0.0107448911, -0.0153234173, 0.00312364916, -0.0105599, 0.00590044027, 0.000669146946, -0.013126649, -0.0304310117, 0.0159246381, 0.000331201241, 0.00830917712, -0.00490226, -0.0241721496, 0.0213664547, -0.0110300854, 0.0383856222, -0.0194394663, 0.00635906402, 0.00478278659, -0.00690247491, 0.0157627705, 0.00717610726, 0.00722620869, 0.0107834302, -0.00953474175, 0.0305543374, -0.0043010395, -0.0321575925, 0.00143946079, 0.0177591313, -0.00841708854, 0.0010608075, 0.00757306674, 0.000991435838, 0.003682476, 0.00977368839, -0.013473507, 0.0289202519, -0.00389829883, -0.000709613727, 0.0117623415, -0.0230313726, -0.00441665901, -0.00289433752, 0.00286157872, -0.0176974665, -0.00592356408, 0.00636291783, -0.0115465187, 0.00898747705, -0.00696028443, -0.00443978282, 0.0349632874, -0.0120552434, 0.0015425547, -0.0215822775, 0.00696799252, -0.0194240492, -0.00800085813, 0.00299068703, -0.0174045656, -0.00595439598, 0.00128819211, -0.0181445293, 0.00267466088, 0.008525, -0.00665967399, -0.0192698911, -0.00086329109, -0.0179132894, -0.0271474216, -0.014691364, 0.00718766917, 0.024125902, -0.0221064184, -0.000914838049, -0.00272090849, -0.0105521921, -0.0179903693, 0.014845524, -0.00216208166, 0.00840167236, 0.0128491633, 0.0134812156, -0.00409677858, -0.0212893747, 0.00856353901, 0.00287892157, 0.00884873327, 0.0213047899, 0.0196552873, -0.00598522788, -0.00786596909, 0.00944224652, -0.017127078, -0.0195473768, 0.0139051527, 0.00727631059, -0.0152617535, -0.0191928111, -0.00888727326, 0.00253399066, -0.00292131538, -0.000126097351, 0.000986618339, -0.0400813706, -0.0201177653, -0.0238792486, -0.00139032258, 0.00241837115, 0.0152232135, 0.0252358485, -0.0185299274, -0.0226922221, 0.00164275814, 0.00199828763, 0.00615480309, -0.0114308987, 0.0171424951, -0.00499860942, -0.000804999669, -0.00307547441, 0.00152906578, -0.00683310302, 0.0204260834, -0.00289241062, 0.0097351484, 0.0112073682, -0.0267928559, 0.0114308987, -0.0163100343, -0.00466716755, -0.0666584074, 0.00448603043, 0.00670592207, 0.0274094921, -0.0125948, 0.0021967676, 0.00140573853, -0.0108142626, 0.0048560123, 0.0259295646, 0.00441280473, -0.0186070055, 0.00200984953, 0.0257599894, -0.00956557319, -0.0150459306, 0.0401122048, 0.0078274291, 0.00218135165, 0.0211660471, -0.00350904698, -0.000318675826, 0.00807023048, -0.00354951387, 0.00241837115, -0.00578096695, -0.00413531857, -0.0140978517, -0.00524141034, -0.0274403244, -0.00149148947, 0.0201948453, 0.000768386875, -0.00362466648, -0.0182524398, -0.0241875667, -0.0206419062, -0.0323425829, 0.00945766177, -0.0239871591, -0.00689862063, 0.00118798879, -0.007403492, -0.00978910457, 0.00874082185, 0.0163408667, 0.0354565978, 0.00282111205, -0.00195974787, 0.0211198, 0.00796231907, 0.0110146692, -0.0310784783, -0.0123635614, -0.00355144078, -0.00641301973, -0.0181753598, -0.000505834643, 0.0269161835, -0.0111457044, -0.00707204966, -0.015639443, 0.00978139602, -0.0226305593, 0.0130958175, 0.002474254, -0.00711058965, 0.0135351708, 0.0216131099, -0.000788620266, 0.00884102564, -0.00525297225, -0.0060854312, 0.00884873327, 0.00181522372, 0.0292131547, -0.00950391, -0.0108296787, -0.0130418614, 9.18932928e-05, 0.0115850577, -0.0134812156, -0.00548421079, 0.0199790224, 0.0130495699, 0.00907997228, -0.00657874066, -0.00308896345, -0.0135043394, -0.00516433083, -0.000573761, -0.00209078309, -0.0204415, 0.00854041521, 0.00177379337, 0.00105984393, -0.0108913416, 0.00320843677, -0.00374028576, 0.0060314755, 0.00756150484, 0.0104674045, 0.00253591756, -0.00756150484, 0.0399272144, -0.0271474216, -0.0194240492, 0.0048791361, -0.00199250667, 0.00566920172, 0.00377497147, 0.00135370984, 0.00946537, -0.00516047655, 0.0133116404, 0.0271628369, -0.0133270565, 0.00254555256, 0.00448603043, 0.00958098937, -0.00707590394, -0.0160017163, -0.0117238015, 0.00378460647, -0.0124791814, 0.00797773432, -0.00393298455, 0.0132962242, 0.00522984844, 0.0028056961, -0.00427791569, -0.00463248184, -0.00279028015, -0.0244188048, 0.00330478628, -0.0151923811, 0.0015637516, 0.0180212017, -0.0117238015, -0.0078890929, -0.00588117074, -0.0204877481, 0.0162175391, -0.0141132679, 0.00740734581, 0.00726089487, -0.00552275078, 0.0128260395, 0.00443207473, -0.0159246381, -0.00365164434, -0.0165104419, 0.0154082039, 0.0193932168, -0.0153927887, -0.0110455016, -0.00299068703, -0.00861749519, 0.0121708624, -0.0319109373, 0.0116544301, -0.000866181566, -0.0233551078, -0.0298914537, -0.0118317129, 0.00260528922, 0.0068369573, -0.011230492, -0.00705277966, -0.0274094921, 0.0108142626, 0.00884102564, 0.00187110633, 0.017281238, -0.00310052535, 0.00366513315, 0.0110609168, 0.000459586881, -0.000754416222, 0.022306826, -0.00887185708, 0.00735339, -0.000290011842, 0.016448779, 0.0171579104, -0.0121862786, -0.0037133079, 0.00279991515, 0.0092726713, 0.0147607364, 0.00261685112, 0.0237405058, -0.0042393757, -0.0116158901, -0.0242954772, 0.00102323119, -0.00081318937, 0.00887185708, -0.00634750165, -0.00378653337, -0.0119396243, 0.0146836564, 0.0148532316, -0.0066943597, -0.00952703413, -0.0183141045, -0.0115696425, 0.00313328416, -0.0149534345, -0.0172658209, -0.00294636632, 0.0121477386, -0.0081164781, -0.00983535219, -0.0202256776, -0.00977368839, -0.013589127, -0.00709517347, -0.0227230545, 0.0026900766, 0.0210427195, -0.000172465516, 0.0305543374, 0.00251472066, 0.0358265787, -0.0173429, -0.00582721503, 0.0164950266, -0.0133501804, 0.00844792, -0.00686008111, 0.00863291, -0.00124290795, -0.0244033895, -0.00631281594, 0.00221411046, -0.000469703577, 0.00924184, -0.0145603288, 0.0283498634, 0.00724547869, 0.0273015816, -0.0123404376, -0.00800856669, 0.0130958175, 0.0239409115, 0.0193932168, -0.00909538846, 0.0144138783, -0.00775420386, -0.0146759488, 0.0161096286, -0.020857729, 0.019794032, 0.00901060086, -0.0152848773, -0.0229388773, 0.00191157311, -0.0140053565, 0.00474424707, -0.00961952936, 0.00218327856, -0.0145988688, 0.000874371268, -0.00388866384, -0.00509881321, -0.000299405918, -0.010690935, -0.00764629245, -0.00501017133, -0.00692559872, -0.00522599416, -0.0272399168, -0.0155777792, -0.000285435264, 0.0074343239, 0.00549962651, -0.0163562838, 9.29621638e-06, -0.00427406188, 0.00813189335, -0.0156779829, -0.0067637316, 0.00853270758, -0.0237713363, -0.000820897345, -0.0209039766, -0.0217981, -0.0102592893, 0.00876394659, 0.014729904, -0.027856553, 0.00809335429, -0.0160171334, -0.0256366618, 0.00612397119, -0.00242029829, 0.00100685179, 0.0155854877, -0.0349324569, 0.0231547, -0.010999253, 0.00837854855, 0.0118240044, -0.0116390139, -0.0177591313, -0.0174970608, -0.0437503606, -0.0119396243, -0.0203644205, -0.0280107129, 0.0352716073, -0.00373835862, -0.010652395, -0.000252435566, 0.00531849, -0.00780815957, 0.00650551496, -0.00229311688, -0.0091878837, -0.0140053565, 0.00143946079, -0.0165104419, 0.00857124757, 0.00584263075, 0.0118856682, 0.0162483715, 0.0166183542, -0.0203335881, 0.00515662273, -0.00630125403, -0.00500631751, -0.00894122943, -0.0120321196, -0.00696028443, 0.000478375034, -0.0158013105, -0.0306160022, 0.00387517503, 0.000523177499, -0.0153311249, 0.00631667, -0.00509110512, -0.00955015793, 0.00745359343, 0.000138141026, -0.0172504056, 0.0015309928, 0.00367284101, -0.0242954772, -0.00551889651, -0.00658644829, 0.0222143289, 0.00994326361, 0.00938058272, -0.0123173138, -0.0167262647, 0.00711058965, 0.00960411318, -0.000587731658, 0.0171116628, -0.0239717439, -0.0252666809, -0.00691789063, 0.00844021235, -0.0203644205, 0.00690247491, -0.00397730526, -0.00222567236, -0.0120706595, 0.00904143229, -0.00316796987, -0.00377304456, 0.0828142837, 0.0394647345, 0.0171733256, -0.0107525988, 8.68349453e-05, -0.00854041521, -0.00453613233, 0.0460319147, -0.0264382903, 0.00191350013, -0.0167570971, 0.0102592893, 0.00403896905, -0.00405438477, 0.00901060086, 0.0167262647, -0.00822438952, -0.00442822091, 0.00638604164, -0.0123866852, -0.0116621377, -0.0110994568, 0.00264190207, -0.0259758122, -0.00304464274, 0.00501787942, 0.0230313726, 0.0103132455, -0.0240950715, 0.0012352, -0.0183757674, 0.0209502243, 0.00768483244, 0.0189769883, -0.0386631079, 0.01681876, -0.00316218892, -0.0277023949, 0.0124329329, -0.00855583139, 0.0177437142, 0.00464018947, -0.000238103588, 0.0117469253, 0.0109838378, -0.00024713634, -0.00631667, 0.0102592893, 0.00226613902, -0.0156163191, 0.00829376094, 0.00102323119, 0.0196861196, -0.0282265358, 0.00557285221, 0.00349363103, 0.0229388773, 0.0186224226, 0.00401969906, 0.0265770331, -0.00720308488, 0.0129493661, -0.0204415, 0.00570388744, 0.00135081937, -0.00127084926, -0.0118085891, 0.0240179915, -0.000391419657, -0.0110069616, 0.00320650986, -0.00608928548, -0.00761546055, 0.0033722308, 0.0249275304, 0.0148301078, 0.0227538869, -0.0073109963, 0.010012635, -0.0235863458, -0.0133347642, 0.0406055115, -0.0188074131, -0.00523755606, -0.00479049468, 0.00772722624, -0.0198556948, -0.0136507908, 0.00127181271, -0.0149534345, 0.00389251788, 0.0210735518, 0.00328551629, 0.0134966308, -0.00640531164, 0.00608157739, -0.0285040215, 0.0168804247, 0.00410834048, 0.000906648347, 0.0349324569, 0.00876394659, 0.00803939812, -0.00330864, -0.0145603288, 0.00244920305, 0.00132191449, 0.0224455688, 0.0178824589, -0.00568847172, 0.0121477386, -0.0232317802, 0.0314330459, -0.00114655844, -0.011908792, 0.00344738341, 0.0150998859, -0.0152232135, 0.0139745241, -0.00613938691, 0.00514891464, 0.00431645522, 0.000891232456, -0.000841612462, 0.00769639434, 0.0144138783, 0.0416537933, 0.00364779029, 0.0201640129, -0.0164179467, 0.0129031185, -0.0078890929, 0.00615094882, 0.00399272144, -0.0200252701, 0.0107448911, -0.0287198443, -0.0055381665, 0.00557670649, 0.0205185786, 0.022152666, -0.00147511007, -0.00296756322, 0.0276099, 0.0049716318, 0.00621261261, 0.00466716755, 0.000475484558, 0.0343774855, -0.00975827221, -0.0182061922, 0.00916476, 0.0101976264, 0.00162926922, 0.00882560946, 0.00437426521, -0.0104905283, -0.00865603518, 0.0235709306, 0.000860882341, -0.00462477375, 0.0061162631, 0.0142443031, 0.00020028642, 0.0104905283, -0.00760389864, 0.0108296787, -0.00907997228, 0.0124560567, 0.009858476, -0.00702965586, 0.00442436663, -0.0244804695, 0.00368440314, -0.010051175, 0.0127027119, 0.00162926922, 0.00407750858, -0.0061047012, -0.00881019421, 0.00463633565, 0.0145834526, 0.0171424951, 0.0419929437, 0.00359190768, 0.0174353961, -0.0164796095, -0.00589273265, 0.0419929437, 0.0279182177, -0.00543025509, 0.00387132098, -0.0186532531, 0.00838625617, -0.0310630631, -0.00149052602, 0.00938058272, -0.00321036368, -0.00491382182, 2.68875192e-05, -0.0157011058, 0.00928037893, -0.00299454085, 0.000681672362, -0.0122094024, 0.0062974, -0.0232317802, 0.0230930373, 0.00451300852, -0.00194914942, -0.0143753383]
|
13 Jun, 2024
|
Implementing our Own Hash Table with Separate Chaining in Java
13 Jun, 2024
All data structure has their own special characteristics, for example, a BST is used when quick searching of an element (in log(n)) is required. A heap or a priority queue is used when the minimum or maximum element needs to be fetched in constant time. Similarly, a hash table is used to fetch, add and remove an element in constant time. Anyone must be clear with the working of a hash table before moving on to the implementation aspect. So here is a brief background on the working of a hash table, and also it should be noted that we will be using Hash Map and Hash Table terminology interchangeably though in Java HashTables are thread-safe while HashMaps are not.
The code we are going to implement is available at Link 1 and Link2
But it is strongly recommended that one must read this blog completely and try and decipher the nitty-gritty of what goes into implementing a hash map and then try to write the code yourself.
Background: Every hash-table stores its data in the form of a (key, value) combination. Interestingly every key is unique in a Hash Table but values can repeat which means values can be the same for different keys present in it. Now as we observe in an array to fetch a value we provide the position/index corresponding to the value in that array. In a Hash Table, instead of an index, we use a key to fetch the value corresponding to that key. Now the entire process is described below
Every time a key is generated. The key is passed to a hash function. Every hash function has two parts a Hash code and a Compressor.
Hash code is an Integer number (random or non-random). In Java, every object has its own hash code. We will use the hash code generated by JVM in our hash function and compress the hash code we modulo(%) the hash code by the size of the hash table. So modulo operator is a compressor in our implementation.
The entire process ensures that for any key, we get an integer position within the size of the Hash Table to insert the corresponding value.
So the process is simple, the user gives a (key, value) pair set as input, and based on the value generated by the hash function an index is generated to where the value corresponding to the particular key is stored. So whenever we need to fetch a value corresponding to a key, that is just O(1).
This picture stops being so rosy and perfect when the concept of a hash collision is introduced. Imagine for different key values same block of the hash table is allocated now where do they previously store values corresponding to some other previous key go. We certainly can’t replace it. That will be disastrous! To resolve this issue we will use the Separate Chaining Technique, Please note there are other open addressing techniques like double hashing and linear probing whose efficiency is almost the same as that of separate chaining, and you can read more about them at Link 1 Link 2 Link3
Now what we do is make a linked list corresponding to the particular bucket of the Hash Table, to accommodate all the values corresponding to different keys that map to the same bucket.
Now there may be a scenario where all the keys get mapped to the same bucket, and we have a linked list of n(size of the hash table) size from one single bucket, with all the other buckets empty and this is the worst case where a hash table acts a linked list and searching is O(n).
So what do we do?
Load Factor: If n be the total number of buckets we decided to fill initially say 10 and let’s say 7 of them got filled now, so the load factor is 7/10=0.7.
In our implementation whenever we add a key-value pair to the Hash Table we check the load factor if it is greater than 0.7 we double the size of our hash table.
Implementation of a Hash Table in JavaHash Node Data Type We will try to make a generic map without putting any restrictions on the data type of the key and the value. Also, every hash node needs to know the next node it is pointing to in the linked list so a next pointer is also required.
The functions we plan to keep in our hash map are as follows:
get(K key): returns the value corresponding to the key if the key is present in HT (Hast Table)getSize() : return the size of the HTadd(): adds a new valid key, value pair to the HT, if already present updates the valueremove() : removes the key, value pairisEmpty() : returns true if size is zeroArrayList<HashNode<K, V>> bucket = new ArrayList<>();A Helper Function is implemented to get the index of the key, to avoid redundancy in other functions like get, add and remove. This function uses the inbuilt java function to generate a hash code, and we compress the hash code by the size of the HT so that the index is within the range of the size of the HT
get():
The get function just takes a key as an input and returns the corresponding value if the key is present in the table otherwise returns null. Steps are:
Retrieve the input key to find the index in the HTTraverse the linked list corresponding to the HT if you find the value then return it else if you fully traverse the list without returning it means the value is not present in the table and can’t be fetched so return nullremove():
Fetch the index corresponding to the input key using the helper functionThe traversal of the linked list is similar to in get() but what is special here is that one needs to remove the key along with finding it and two cases ariseIf the key to be removed is present at the head of the linked listIf the key to be removed is not present at the head but somewhere elseadd():
Now to the most interesting and challenging function of this entire implementation. It is interesting because we need to dynamically increase the size of our list when the load factor is above the value we specified.
Just like removing steps till traversal and adding and two cases (addition at head spot or non-head spot) remain the same.Towards the end, if the load factor is greater than 0.7We double the size of the array list and then recursively call add function on existing keys because in our case hash value generated uses the size of the array to compress the inbuilt JVM hash code we use, so we need to fetch the new indices for the existing keys. This is very important to understand please re-read this paragraph till you get a hang of what is happening in the add function.Java does in its own implementation of Hash Table uses Binary Search Tree if linked list corresponding to a particular bucket tends to get too long.
Java
// Java program to demonstrate implementation of our
// own hash table with chaining for collision detection
import java.util.ArrayList;
import java.util.Objects;
// A node of chains
class HashNode<K, V> {
K key;
V value;
final int hashCode;
// Reference to next node
HashNode<K, V> next;
// Constructor
public HashNode(K key, V value, int hashCode)
{
this.key = key;
this.value = value;
this.hashCode = hashCode;
}
}
// Class to represent entire hash table
class Map<K, V> {
// bucketArray is used to store array of chains
private ArrayList<HashNode<K, V> > bucketArray;
// Current capacity of array list
private int numBuckets;
// Current size of array list
private int size;
// Constructor (Initializes capacity, size and
// empty chains.
public Map()
{
bucketArray = new ArrayList<>();
numBuckets = 10;
size = 0;
// Create empty chains
for (int i = 0; i < numBuckets; i++)
bucketArray.add(null);
}
public int size() { return size; }
public boolean isEmpty() { return size() == 0; }
private final int hashCode (K key) {
return Objects.hashCode(key);
}
// This implements hash function to find index
// for a key
private int getBucketIndex(K key)
{
int hashCode = hashCode(key);
int index = hashCode % numBuckets;
// key.hashCode() could be negative.
index = index < 0 ? index * -1 : index;
return index;
}
// Method to remove a given key
public V remove(K key)
{
// Apply hash function to find index for given key
int bucketIndex = getBucketIndex(key);
int hashCode = hashCode(key);
// Get head of chain
HashNode<K, V> head = bucketArray.get(bucketIndex);
// Search for key in its chain
HashNode<K, V> prev = null;
while (head != null) {
// If Key found
if (head.key.equals(key) && hashCode == head.hashCode)
break;
// Else keep moving in chain
prev = head;
head = head.next;
}
// If key was not there
if (head == null)
return null;
// Reduce size
size--;
// Remove key
if (prev != null)
prev.next = head.next;
else
bucketArray.set(bucketIndex, head.next);
return head.value;
}
// Returns value for a key
public V get(K key)
{
// Find head of chain for given key
int bucketIndex = getBucketIndex(key);
int hashCode = hashCode(key);
HashNode<K, V> head = bucketArray.get(bucketIndex);
// Search key in chain
while (head != null) {
if (head.key.equals(key) && head.hashCode == hashCode)
return head.value;
head = head.next;
}
// If key not found
return null;
}
// Adds a key value pair to hash
public void add(K key, V value)
{
// Find head of chain for given key
int bucketIndex = getBucketIndex(key);
int hashCode = hashCode(key);
HashNode<K, V> head = bucketArray.get(bucketIndex);
// Check if key is already present
while (head != null) {
if (head.key.equals(key) && head.hashCode == hashCode) {
head.value = value;
return;
}
head = head.next;
}
// Insert key in chain
size++;
head = bucketArray.get(bucketIndex);
HashNode<K, V> newNode
= new HashNode<K, V>(key, value, hashCode);
newNode.next = head;
bucketArray.set(bucketIndex, newNode);
// If load factor goes beyond threshold, then
// double hash table size
if ((1.0 * size) / numBuckets >= 0.7) {
ArrayList<HashNode<K, V> > temp = bucketArray;
bucketArray = new ArrayList<>();
numBuckets = 2 * numBuckets;
size = 0;
for (int i = 0; i < numBuckets; i++)
bucketArray.add(null);
for (HashNode<K, V> headNode : temp) {
while (headNode != null) {
add(headNode.key, headNode.value);
headNode = headNode.next;
}
}
}
}
// Driver method to test Map class
public static void main(String[] args)
{
Map<String, Integer> map = new Map<>();
map.add("this", 1);
map.add("coder", 2);
map.add("this", 4);
map.add("hi", 5);
System.out.println(map.size());
System.out.println(map.remove("this"));
System.out.println(map.remove("this"));
System.out.println(map.size());
System.out.println(map.isEmpty());
}
}
Output3
4
null
2
false
Time and Space ComplexitiesAdd Method:Time Complexity: O(1)Space Complexity: O(n)This method adds a key value pair to the hash table. The time complexity of this method is O(1) because it is constant time. The space complexity is O(n) because it will increase with the amount of items stored in the hash table.
Remove Method:Time Complexity: O(1)Space Complexity: O(1)This method removes a given key from the hash table. The time complexity of this method is O(1) because it is constant time. The space complexity is O(1) because it does not depend on the amount of items stored in the hash table.
Get Method:Time Complexity: O(1)Space Complexity: O(1)This method returns the value for a given key from the hash table. The time complexity of this method is O(1) because it is constant time. The space complexity is O(1) because it does not depend on the amount of items stored in the hash table.
Size Method:Time Complexity: O(1)Space Complexity: O(1)The time complexity is constant because it simply returns the size of the hash table. The space complexity is constant because it does not require any additional space.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Implementing our Own Hash Table with Separate Chaining in Java
|
https://www.geeksforgeeks.org/implementing-our-own-hash-table-with-separate-chaining-in-java/?ref=lbp
|
Pandas
|
Implementing our Own Hash Table with Separate Chaining in Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Implementing our Own Hash Table with Separate Chaining in Java, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00753224688, -0.00922270212, -0.00458143139, 0.0370104834, 0.00024403134, -0.00306862406, 0.0175926965, 0.00514616305, -0.0250277054, 0.00592407119, 0.0204051342, 0.0311163329, 0.017173823, -0.0285582114, 0.0271819122, 0.0226341411, 0.00773420418, 0.00737516955, -0.0286330115, -0.0184154846, -0.030817138, 0.00961165596, -0.0504742824, -0.0108907167, -0.0129626459, 0.0162762366, -0.0126709305, -0.0153936092, -0.0183257256, 0.0171887819, -0.0255812164, 0.0327020697, 0.00697873533, -0.0171588622, -0.0176974144, 0.000820450194, 0.000891509117, -0.0284385346, -0.0336894132, -0.000235032101, 0.0330311842, -0.00652994215, -0.0206893701, 0.00604000967, 0.00751354732, 0.00778656313, 0.00912546273, 0.00176712347, -0.0215420779, 0.0103297252, -0.00171850424, -0.0639081597, 0.0322532766, 0.0134787578, 0.0138826715, 0.0199862607, -0.0262544062, 0.0149672553, 0.0142716262, -0.00363335549, 0.00781648327, -0.0193429906, -0.00492550619, 0.00596147077, 0.000780713279, 0.0148475775, -0.0726446733, 0.0350058749, 0.0268976763, -0.0160967186, -0.0110178748, 0.016246317, 0.0110777142, -0.0182808451, -0.0176226161, 0.00411019847, -0.00732281, 0.0257607345, -0.00203265948, 0.0483200774, -0.0143239852, -0.00283113751, 0.0092675807, -0.0109879551, 0.00495542586, -0.0395237282, -0.0140995886, -0.0508033969, 0.0384765416, 0.0285731722, -0.0204051342, -0.0259402506, 0.0136433151, -0.00356603647, 0.0150794536, 0.0688149706, -0.00998565, -0.010628921, -0.0254016984, 0.0719266, -0.0139873903, 0.00129121565, -0.0273913499, -0.0118032629, -0.00989589188, -0.00937977899, 0.0209436864, 0.00622326648, 0.0537355132, 0.0362325758, 0.0292613208, -0.0102399662, -0.0152140921, 0.0243993942, -0.0247285087, -0.0247135498, 0.0102324868, -0.0215271171, 0.00457395148, -4.00583049e-05, -0.0371002443, 0.0554409288, 0.00513494294, 0.0477516055, -0.0342878066, 0.0339287706, -0.0239356421, 0.0112048723, 0.0242797155, -0.0414984189, 0.0142566664, -0.0308470577, 0.00491428655, -0.0254016984, 0.00104624929, 0.0182658862, 0.0521497764, 0.0520001799, 0.0032556213, 0.0197917838, -0.0230978932, -0.0658230111, -0.0403315537, -0.00336781959, -0.0309667364, 0.00679173833, 0.0013566647, 0.0222451873, -0.0427251197, 0.0470335335, -0.0153337698, -0.0257906541, -0.00212802808, 0.0134039586, 0.0104419235, -0.017547816, 0.0276456662, 0.0229183771, -0.0240852386, 0.00195599068, 0.0337492526, -0.0213176813, 0.00270397938, -0.040391393, -0.0202854555, 0.0132468818, -0.000432431028, -0.0245340317, -0.0400622785, 0.0373695195, 0.013411439, 0.0243993942, 0.00268153986, 0.0222900659, -0.0257756934, -0.00753972679, 0.0404512323, -0.0151916519, -0.0204799324, -0.0158424024, 0.00754720671, -0.0163211152, 0.0589714348, 0.0346767604, 0.0262095276, -0.0305628218, 0.00606618915, -0.0218861513, 0.00232063513, 0.00347253797, -0.0111525124, 0.0234270096, 0.00575951347, 0.0559495613, 0.0140621895, -0.0195225067, -0.0484397523, -0.0126410108, -0.00982109271, 0.0252969805, -0.000129144944, -0.0336594954, -0.000302000466, 0.0249379463, 0.000114126728, 0.00362213561, 0.0135311168, -0.0587320812, 0.0610957257, 0.0243245959, -0.0568172298, 0.0213924795, -0.0430841558, -0.0176674947, 0.0400024392, 0.0357538648, -0.0327918269, 0.0484995916, -0.0233671702, -0.0278700627, 0.0097163748, 0.00122950657, 0.0400922, 0.0101202885, -0.0156329665, -0.0267032, 0.00600635, 0.0247285087, -0.00895342603, -0.0310564935, 0.0578644127, 0.0154235289, -0.0179666914, -0.024967866, -0.00996321067, -0.0372797623, -0.0341082886, -0.00343326852, 0.0108159175, 0.0277952626, -0.014944816, 0.0453580394, -0.0277803037, 0.00338838925, -0.00995573, 0.0141669074, -0.0340484492, -0.0087813884, 0.0503845252, 0.0110627543, 0.0498459712, -0.0130075254, -0.0113619501, -0.0348562784, -0.00336220954, 0.0494271, -0.00160443597, -0.0127606886, -0.0102998056, -0.0195524264, 0.0125886509, 0.0243694745, -0.0233821291, 0.0169045459, 0.00328928069, -0.00598765025, 0.0324627124, 0.0114442287, -0.00830267556, 0.0298148338, 0.0722257942, -0.0159770399, -0.0130524039, 0.0388056599, 0.0428448, -0.0084223533, -0.0333303809, -0.0115190269, -0.000288443174, 0.016336076, 0.0146381408, -0.00704605458, 0.0205696914, 0.0113395099, 0.00914790295, -0.0170691032, -0.0394339673, -0.0379978307, -0.0265386421, -0.0260000899, -0.0155581664, -0.00900578499, -0.0176824555, 0.00613724813, 0.0102250064, 0.0162612759, -0.0175627768, -0.0381773487, -0.0176974144, -0.0419472121, -0.0169793461, -0.026837837, 0.000620830688, 0.00490680663, -0.040570911, -0.00363522558, 0.0184454042, 0.00750980759, 0.0219908711, -0.0254166592, 0.0070834537, -0.0196571462, -0.0115863467, -0.0297849141, -0.00494046602, 0.00931246, 0.0298148338, 0.0341980457, -0.018849317, -0.0139499912, 0.0136433151, -0.0119528612, -0.02404036, 0.0604075752, -0.0271220729, -0.00831015501, -0.0242497958, 0.0135685168, 0.0169045459, 0.00575203355, -0.00742004858, 0.0175926965, -0.0255662575, 0.0199264213, -0.0329713449, -0.0460162684, 0.0130150048, 0.00696003577, -0.0123268552, 0.0113320304, 0.0158872809, 0.0139125912, 0.0236813258, -0.0107037192, 0.0113694295, -0.035544429, 0.00373433391, -0.00798852, 0.0237411633, -0.000944803352, 0.00138190924, 0.0227239, -0.0204350539, -0.00238047424, 0.0224695839, -0.0151018938, -0.0172037426, -0.00871407, 0.0230978932, 0.00866171, 0.00257121143, 0.00414011814, 0.00974629354, 0.00910302345, -0.0361727364, -0.0153636895, -0.022275107, -0.00221591676, -0.00698621524, -0.0205248129, 0.00270584947, -0.0227388591, 0.0156778451, -0.0335099, -0.0135759963, -0.016889587, -0.00197469047, 0.0267630387, 0.0238309223, -0.00122950657, 0.00607740879, 0.0550818928, 0.001999, -0.00279373815, -0.0299045909, -0.00137629942, -0.0117583834, 0.0131197236, -0.0304581039, -0.00258617126, -0.0215121582, -0.000339867402, 0.0198217034, -0.00398304034, 0.0230380539, 0.0244143531, -0.0240852386, -0.016799828, -0.00328554073, -0.0329414271, 0.0138452724, -0.00991085172, -0.00357351638, 0.0122370962, -0.0296801943, 0.0201059394, -0.0394339673, 0.0257906541, 0.0232624505, 0.0278999824, 0.0113170706, 0.0325823911, -0.0484995916, 0.0289770849, -0.00434955489, -0.00491802627, -0.018191088, 0.0622925051, 0.00918530207, -0.0306077, -0.0309667364, -0.00924514141, 0.0170092657, 0.00154179183, -0.0254166592, -0.0109056765, 0.0175627768, -0.0129252458, 0.0283936542, -0.0396434069, 0.0259103309, 0.0127232894, 0.00707223406, 0.0237262044, -0.00901326444, -0.0353050716, 0.0189540368, -1.04893743e-05, -0.0332705416, -0.024698589, 0.0335099, 0.027765343, -0.00542291859, -0.0172486212, -0.010486803, 0.00413637795, -0.0348562784, -0.0141519476, -0.0157376844, -0.014997175, -0.0443108566, 0.0115639064, 0.00329676061, 0.0102848457, 0.0169494264, -0.007472408, 0.00869162939, -0.0233372506, -0.0242049173, 0.0163211152, 0.0167250298, 0.0372797623, -0.0132020023, 0.0123118954, -0.00290780631, 0.0458965935, 0.0121398577, -0.022185348, -0.000898054044, -0.0239206813, -0.0146979792, -0.0416779369, -0.0021785174, 0.000411393819, 0.00158480124, 0.00112011319, 0.0457769148, 0.0113918688, -0.00501526473, -0.0456273146, 0.023771083, 0.0293211602, 0.00781648327, -0.00312846317, -0.0151617331, 0.0239057224, 0.0203901734, 0.0207641684, -0.016336076, -0.0197319444, -0.0278102234, 0.017263582, -0.0306226611, 0.00581935281, -0.00224022637, 0.0380875878, -0.0279149413, -0.0420369692, 0.0116237458, 0.0540047921, 0.00158199633, -0.0121772578, -0.0436526239, -0.0122296168, -0.000470999192, -0.00908058416, -0.00135853468, -0.0164108742, -0.0583431236, -0.0582234487, -0.00431963522, 0.0174580589, -0.00542291859, 0.00246649305, 0.00454403181, 0.00377734331, -0.00768932467, -0.00755468663, -0.0235167667, -0.0112497518, -0.0212728, 0.0496365353, -0.0137031544, 0.0127906082, -0.0223199856, -0.00365579524, 0.016889587, -0.00737516955, 0.00967897475, -0.0449391678, -0.00482452754, 0.0104419235, -0.012072539, 0.00145203318, -0.0210932847, -0.0199862607, 0.0122221364, 0.0292762816, -0.00651124259, 0.00913294312, 0.0386859812, 0.0270472746, 0.00277877832, -0.000379604317, -0.0302037876, 0.0174580589, 0.0130374441, -0.0114891082, 0.0118257031, -0.015872322, 0.00943961833, 0.0191784333, 0.00552015705, 0.0334799774, -0.00297512533, 0.032402873, 0.0326123126, -0.0224247035, 0.00796608068, 0.00807827897, -0.0205547325, 0.00383718242, 0.0185052417, 0.00797356, 0.0451785214, -0.0177273341, -0.0158124827, -0.00498908525, 0.00872154906, -0.00526584126, -0.00361839565, -0.0128878467, 0.0115489466, -0.0285432525, 0.00425605616, 0.000840084918, 0.003998, -0.0300242696, -0.0114367483, -0.00417377753, 0.00777908321, -0.0214523189, 0.0241002, 0.00943213888, -0.0116461851, -0.0129701253, -0.0193130709, 0.014802698, -0.0259103309, 0.0160967186, -0.0101876073, 0.0265685618, 0.00811567809, -0.00712833321, 0.000521254668, -0.026778, -0.0175926965, -0.00258243131, 0.0107037192, 0.00177460338, -0.000537149434, -0.00370254461, 0.0137255946, -0.0336295776, -0.00177740841, 0.0123044159, -0.00945457816, -0.0113619501, 0.000284002, 0.000297325547, -0.0347964391, -0.00419995701, 0.00550519768, 0.00642148359, 0.0146157006, 0.013501198, -0.000428924832, 0.0137929134, -0.00746866781, -0.0232474916, 0.00830267556, -0.0194626674, 0.00300691486, 0.0103521645, 0.0037549038, -0.00662344089, -0.054393746, -0.00404287921, 0.0180863682, -0.0245938711, -0.00907310378, -0.0293959584, -0.010449403, -0.0241151582, 0.0263441652, 0.0252670608, -0.0277055055, 0.0265386421, 0.00584553229, 0.00813811831, 0.0274511892, 0.0251623429, 0.016336076, 0.096819669, -0.0228136573, 0.00878886785, -0.0209436864, -8.08762852e-05, 0.0114367483, -0.0012828008, 0.0133142006, 0.00320513197, 0.0334201381, 0.0187745187, -0.00401296, -0.0323430337, -0.00336781959, -0.0168297477, -0.00739012938, 0.0358436219, -0.0102624064, 0.0166801494, 0.0118406629, 0.0178769324, -0.00116218755, 0.00285731722, -0.0084073944, -0.00563235534, 0.00925262086, -0.00148195273, -0.036382176, -0.0160967186, -0.0463154651, 0.00104063936, 0.00113413797, -0.0384167023, -0.0317147262, 0.0442210957, -0.00112198316, -0.00549397757, -0.00626066606, -0.0192083512, 0.00792868156, -0.00869911, 0.0326721519, 0.00464875, -0.0186698, 0.0105092423, -0.00986597221, -0.0101053286, -0.0405110717, -0.00455525192, 0.0306675397, -0.000826995121, 0.0126185706, -0.0285133328, -0.00367823476, 0.0220207907, -0.0336894132, 0.00243470352, 0.024878107, 0.00592033146, 0.0100380098, 0.0225743018, 0.000920961204, 0.0227986984, -0.00193542102, -0.0170391854, 0.00932742, -0.0183257256, -0.00257308153, 0.00634294469, -0.00678051822, 0.0349161178, -0.0171289425, -0.0275110267, 0.0148700168, -0.0116536655, 0.0125886509, -0.0310265757, -0.0121847373, 0.0249080267, 0.0327319875, -0.0252072215, 0.0280495789, 0.0153487297, 0.00246275309, 0.0176824555, 0.00151748222, -0.00969393458, 0.00746118836, -0.0255961772, 0.00167081994, -0.0134712784, -0.0423361659, 0.0412291437, 0.0294408388, -0.0111599928, -0.0348263569, 0.0111001534, -0.00698247552, 0.0014810178, -0.0218562316, -0.000733963971, 0.0222601462, 0.0206145719, 0.0202405769, 0.00487688696, -0.00373807386, 0.0379080735, -0.000886366703, 0.0195374675, 0.0152814109, -0.0211980026, -0.000122132551, 0.00139873906, 0.0162014365, -0.0181312487, -0.00761452597, 0.0281542987, -0.0136283562, 0.0186548401, -0.014338945, 0.00914042257, -0.0363223366, -0.0217066351, -0.0116087859, 0.00170073949, -0.00491428655, -0.0206893701, -0.013000045, 0.0244741924, 0.0298148338, 0.0179517306, -0.00267592981, -0.0175926965, -0.00293772598, 0.0204350539, 0.0176525358, -0.0111300731, 0.00710589346, 0.0103222448, 0.0198366623, 0.0212129615, -0.00469362969, 0.010950556, 0.0110777142, 0.015992, 0.0172935016, -0.00678051822, 0.0101502081, 0.0429943949, 0.0417976119, 0.0142641459, -0.000423782389, -0.000331686286, -0.0131571228, -0.0435030274, 0.0151243331, -0.0221703872, -0.0120127, -0.0154235289, -0.0110103954, -0.0161715169, 0.00157264643, -0.0182958059, 0.0132917603, 0.0313257687, -0.000632518029, 0.0180564485, 0.000760143623, -0.00786136184, -0.0154534485, -0.00696377549, 0.0300541893, 0.00772672426, 0.000215631138, -0.0296652354, 0.0052022622, 0.0447297283, 0.00144455337, 0.0132020023, 0.0256709754, -0.027570866, -0.0232175719, 0.0327319875, 0.0317745619, -0.00663092081, 0.0358137041, 0.0108009577, 0.00260300096, -0.00354733691, -0.00391946128, 0.03324062, -0.00920026191, 0.0148251373, 0.00434955489, -0.00801844, 0.0168596674, 0.00743500842, -0.00917034224, -0.00440565404, -0.0180564485, 0.000434067246, -0.00359034608, 0.0057445541, -0.0242497958, 0.0163510349, 0.0102773663, 0.0333004594, 0.0125138527, -0.000767156, 0.00343513861, 0.0262544062, 0.0178769324, 0.0239954796, 0.000842422363, -0.0260300096, 0.0388056599, 0.00981361326, 0.0295006782, -0.00200274, -0.0106364, 0.00931994058, 0.0204649735, 0.0352452323, -0.00257495139, -0.0393142924, -0.0171887819, 0.00687775668, -0.0119977398, 0.015034575, 0.0196421854, 0.0174580589, 0.00549771776, -0.0111375535, 0.0216617547, 0.0186997205, 0.0169793461, -0.0329115056, 0.0185501222, -0.0229482967, -0.0497861318, -0.0286030918, -0.00605870923, -0.013089804, 0.0112347919, -0.0477815233, -0.0023505548, -0.0242946763, -0.0194177888, -0.00837747473, -0.028872367, -0.0270622335, -0.00493672583, -0.000429158565, 0.00606618915, 0.00774916401, 0.0191933922, -0.00612602802, 0.0195374675, -0.0236514062, -0.010950556, 0.0198067427, 0.0111001534, 0.0174580589, -0.0199713, 0.00147727784, 0.000431262277, 0.000502555, -0.00418125745, 0.0229782164, -0.027196873, -0.0608563684, -0.00165212026, 0.0136208758, -0.030906897, -0.0024290937, 0.00012084694, -0.0021168082, -0.00571463443, 0.0247285087, -0.00160443597, 0.0264638439, 0.0228585377, -0.00221030694, -0.0207192898, -0.00537055964, -0.0216916744, -0.0272567123, 0.00874398928, 0.0275259875, -0.00527332118, 0.0147428587, 0.0147727784, 0.00390824163, -0.00537055964, 0.0346468389, -0.059599746, 0.0112721911, 0.0141145485, 0.0355743468, 0.00922270212, -0.0104568833, -0.011698545, -0.0283936542, -0.00566227501, 0.0107186791, 0.00508258399, 0.0054640579, -0.0232175719, 0.0316548869, 0.0429644771, -0.0458068326, -0.0117434235, -0.0128280073, -0.0271669533, -0.0036595352, -0.0109729953, 0.015992, 0.0185800418, 0.00823535677, -0.011376909, -0.0016053709, 0.00884122774, 0.0165305529, 0.0139873903, -0.0289471652, -0.0373695195, -0.00239917403, 0.037040405, 0.00759582594, 0.0232923701, 0.024698589, -0.0160069596, 0.00776412338, -0.0435329489, -0.0148999365, 0.0224695839, -6.56243283e-05, 0.0127980886, -0.0292014815, -0.0171887819, -0.0230380539, 0.0151841724, -0.00647758273, 0.0299045909, -0.0246237908, 0.0190886743, 0.0331508629, 0.0125886509, 0.00293585588, -0.0127756484, -0.0210783239, -0.0173982196, 0.00195038074, 0.02200583, -0.0153936092, 1.81153537e-05, -0.000697967, 0.00902074482, -0.011466668, -0.00667206, 0.0320139192, 0.0469736941, -0.0280047, 0.0111151133, 0.0137255946, -0.00810819864, 0.0053556, -0.00709093362, -0.00508258399, 0.0134563185, -0.00333603, -0.0122969355, 0.0040353993, -0.0306077, -0.0184304435, 0.0394938067, -0.00631302549, 0.00624944642, -0.0167699084, -0.0234569293, -0.00389702152, 0.0166352708, 0.0279747806, 0.0038484023, -0.011878062, 0.00105933915, 0.0288873278, -0.0161116794, -0.00390824163, 0.00833259523, 0.0264040045, -0.00385214225, 0.0218263119, 0.0052770609, -0.0394638889, 5.22131231e-05, -0.00828771573, 0.0102025671, 0.00768184476, 0.00709093362, 0.0113395099, -0.000596521073, -0.0402417965, 0.0114517082, 0.0204051342, -0.00982857309, 0.0303384252, -0.00320139201, -0.0134338783, -0.0188343581, 0.0345570818, -0.0175328571, 0.00657108147, -0.00750980759, -0.00467119, 0.021257842, -0.0125736911, -0.00778656313, -0.0136732347, 0.0196272265, -0.0112796705, -0.0218861513, 0.0240852386, 0.0177123751, -0.00654864172, 0.000598858518, 0.00947701838, -0.0124914125, -0.0319241621, -0.0317147262, 0.00805584, -0.0167699084, 0.0106513603, 0.0175178982, 0.00194664078, -0.0330910236, -0.0406606719, -0.0299195517, -0.0181611683, 0.00215420779, 0.0413488187, 0.00347440783, -0.0138826715, 0.00648132293, -0.0101427278, -0.0118930219, -0.0266583208, -0.00107710389, -0.000118976968, -0.0106588406, 0.0424558446, -0.0166951101, -0.0084073944, -0.00231876527, 0.101068243, -0.00216916739, 0.00098267023, -0.0128130475, 0.020883847, -0.0205248129, 0.00945457816, 0.0043906942, 0.0187894776, 0.000241927628, 0.0190437939, 0.0114217885, 0.0037698634, 0.0192831513, -0.000268107222, -0.00955181662, 0.00104250934, 0.0053556, -0.00608114898, 0.00458143139, 0.0128354877, 0.0165903922, 0.00865423, 0.00278251828, 0.00147073297, 0.010913156, -0.00625318615, -0.00845227297, 0.0224247035, 0.0104194842, 0.00256934157, -0.00295829563, -0.017263582, 0.0110627543, 0.00791372173, 0.0335099, -0.0113095902, 0.00856447127, -0.0187146794, 0.0142267467, 0.0104120038, 0.00620456692, -0.0238907617, 0.00926010124, 0.0115788663, -0.00273015909, -0.00571089424, 0.00377360336, -0.0113395099, -0.00703109475, 0.00489558652, 0.0138452724, -0.00224396633, -0.0214523189, -0.00496290578, -0.0146456202, 0.00925262086, -0.0171289425, 0.00986597221, -0.0118930219, 8.99924e-05, -0.0164407939, 0.0100679295, 0.00445801299, 0.0167549495, -0.0160069596, -0.0242497958, -0.00213176804, -0.00245527318, -0.00346879801, -0.0153636895, 0.0222900659, 0.024878107, -0.0152963707, 0.015498328, 0.0128953271, -0.00595025066, -0.0092975, 0.0063990443, -0.0357837826, -0.0118481424, 0.0214822385, -0.0271819122, -0.0109580355, 0.00155581662, -0.0114068286, 0.00543039851, -2.78888783e-05, -0.021631835, 0.0146755399, 0.00202891952, -0.00301626488, -0.0294109192, 0.0122969355, -0.0281094182, -0.00212428812, -0.00142491865, 0.0162762366, -0.0190737136, 0.0346767604, -0.0205696914, -0.0049666455, 0.000895716599, 0.0266732797, 0.0117808236, 0.00675059902, 0.0151617331, -0.0104120038, 0.00763322553, 0.0198516231, 0.0264937636, 0.00921522174, -0.00751354732, 0.000326543843, 0.0319241621, -0.00682539772, 0.00774168409, -0.0435030274, -0.0111899124, 0.00673937891, 0.00958921667, 0.0195524264, 0.00817551743, 0.00177179847, 0.00385962217, -0.00715825288, 0.00532568, -0.00479086814, -0.0304132234, 0.00513494294, -0.00519478228, -0.0162762366, -0.0152963707, 0.00102754962, -0.0173084605, 0.000534344465, 0.0203901734, -0.000797075569, -0.00427475572, -0.00970141497, -0.0124914125, 0.0203004163, -0.000600728497, 0.000891509117, -0.00124072644, -0.0261496883, -0.0154684084, 0.000386382948, 0.0141220279, 0.0048581874, -0.0285731722, -0.0301439483, 0.0111151133, -0.031565126, 0.00645888317, 0.00579317333, -0.000575016369, 0.00860187132, -0.0112123517, 0.00167175499, 0.00736768963, 0.0186997205, 0.00648880284, -0.0209586453, 0.00691141654, -0.00979865342, 0.0126185706, -0.0454478, -0.0426652804, -0.00178675819, -0.00834007468, -0.0125288125, 0.0353050716, -0.0129102869, 0.000919091224, 0.000561459106, 0.0347665176, -0.0093349, 0.00831015501, 0.00926010124, -0.0140247894, -0.0108233979, -0.0164258331, -0.00417751726, -0.0122744963, 0.0326721519, -0.0438620634, -0.0044355737, 0.0226640608, 0.0106364, 0.00325936102, 0.00866919, 0.000965840532, 0.0242198762, -0.00381848286, 0.0175777357, 0.0213924795, -0.00789128151, -0.000775570865, 0.0117583834, -0.0161715169, 0.021901112, -0.0224695839, -0.00676929858, 0.0221105479, -0.0164258331, -0.0155731263, -0.00922270212, 0.00334725, 0.0234868471, 0.00468988949, -0.0205397718, -0.00560991606, -0.0336894132, 0.013089804, -0.010539162, -0.0224995036, 0.0144062638, 0.00117995229, 0.0116461851, 0.0234419685, 0.028962126, 0.0419472121, 0.0189241171, -0.00734151, -0.00432337541, 0.0124764526, 3.32504387e-05, 0.00301626488, 0.00797356, -0.0182808451, 0.00559869595, 0.048379913, -0.0161415972, -0.00789876189, -0.00991085172, 0.0269126371, -0.023950601, -0.0232923701, 0.017263582, -0.0256560147, 0.0212877616, -0.0489483848, -0.000679267338, 0.00491428655, -5.06937722e-05, -0.00474972883, 0.0043906942, -0.0117808236, 0.015782563, -0.038895417, -0.00914042257, 0.0120949782, -0.00633546524, 0.00766688492, 0.017084064, 0.016889587, 0.00887114741, -0.0147578185, -0.0133067202, 0.0128354877, 0.0163061563, -0.00769680459, 0.0164707135, -0.00341269886, 0.0287676491, -0.00675059902, -0.0496365353, 0.000560056593, -0.00310976338, 0.000195528948, 0.0273315106, -0.00593903102, 0.0197469033, 0.00460761087, -0.0178619716, -0.0021953471, 0.00366327516, 0.00255625159, -0.0138527527, -0.0190886743, 0.0272866301, 0.0193729103, 0.00559495622, 0.00523966132, 0.000116055133, 0.0173234195, 0.0298297927, 0.0198516231, 0.00507884379, -0.0234419685, 3.62891442e-05, -0.00175777369, 0.0157077648, 0.00874398928, 0.0313556902, -0.00884122774, -0.00963409524, 0.0104045244, 0.0273015909, -1.41854907e-05, -0.000143637226, -0.0156479254, 0.0129551655, -0.0224695839, -0.00279934797, 0.0406008326, -0.000147961531, -0.00636912463, -0.0105466424, 0.00411019847, -0.0192831513, 0.00961165596, 0.0194925871, 0.00946205854, 0.00170447945, -0.0147428587, 0.000131365538, 0.00569593441, 0.00555755664, 0.0114517082, -0.0149522955, 0.00792120118, -0.0216767155, -0.00125288125, 0.0149148963, -0.00884122774, 0.00489932671, -0.00613724813, -0.00592781091, 0.00452907197, -0.034527164, -0.0020401394, -0.00935734, -0.00444679335, -0.00251511228, -0.00143987837, -0.0219459906, 0.0204649735, -0.00241039391, -0.036382176, -0.00749484776, 0.00815307815, -0.0206744093, 0.0150121348, -0.013964951, 0.0365616903, 0.0227837376, 0.00869162939, 0.0273464695, -0.0461060293, -0.0152066117, -0.01401731, 0.00606618915, 0.0473925695, -0.0256410558, 0.00733029, 0.00655238191, -0.0178170931, 0.0030817138, 0.0059315511, 0.00985101238, 0.00707597379, -0.000326777605, 0.026089849, -0.00378108327, -0.00133329, 0.00137910433, 0.0357837826, 0.0339287706, -0.0122969355, 0.00355107686, -0.00491428655, -0.00355107686, -0.00306488411, -0.00515364297, -0.0071619926, 0.0179816503, -0.00203265948, -0.00269275974, -0.0120650595, 0.0051237233, -0.0106962398, 0.0123866946, -0.0119528612, -0.00927506108, -0.0112123517, 0.0143688647, -0.00187464687, -0.0245190728, 0.0132094817, 0.0328815877, 0.0140995886, 0.0346468389, -0.011092674, 0.00548275793, -0.0307872184, -0.00531446049, 0.0179816503, 0.00054743432, 0.0362924151, 0.00146044814, -0.0157526433, 0.0115040671, 0.0106064808, 0.00618586736, 0.000468661718, -0.0187894776, 0.0041588177, -0.0460162684, 0.0263142455, 0.00529576046, -0.00103783445, -0.0296652354, 0.0287078097, 0.0242049173, 0.028962126, 0.0265685618, 0.00281430781, -0.0146830203, -0.00139873906, -0.0231577326, -0.037219923, -0.00388206169, -0.00954433717, -0.00874398928, -0.00164090039, 0.021257842, -0.0170092657, -0.00672815926, 0.00452533225, -0.00635042461, -0.00566227501, -0.000320466439, -0.0113694295, 0.00318830227, 0.000732094049, -0.017921811, 0.00848219264, 0.01662031, -0.00102848455, -0.0124689732, -0.0304132234, -0.0155432066, -0.0199413802, -0.0111674722, 0.0215869565, -0.00764444517, -0.00214485778, -0.00595025066, -0.00776412338, -0.00724427123, -0.00906562433, -0.00606992887, -0.0221105479, 0.0174879786, -0.0265835207, 0.0082054371, -0.000684877217, -0.00627936609, 0.0136133963, -0.0259103309, -0.011788303, 0.00741256867, 0.0274960678, -0.00789876189, 0.0147204194, -0.00914790295, -0.0097313337, -0.0118331825, 0.00391198136, -0.00444305362, -0.0010799088, -0.00471606944, 0.0122071765, -0.00370441447, 0.00970141497, 0.00348936766, -0.00124259642, -0.00671693916, -0.000746118836, 0.0254316181, 0.00260674092, 0.0100155696, -0.00428223563, 0.0454178788, -0.00170073949, 0.0110851936, -0.00894594565, 0.0170541443, 0.0276755858, -0.0137555134, 0.00264040031, 0.00670945924, 0.00804088, -0.0127457287, -0.00245153322, -0.0131122433, -0.0152290519, 0.00560991606, 0.0167250298, -0.00552015705, 0.013000045, 0.00422613649, 0.023023095, 0.0316249654, -0.00385588221, 0.00457021128, -0.0129252458, -0.00958921667, 0.00890854653, -0.00857195165, -0.00253007212, 0.00719939219, 0.00995573, 0.0137629937, 0.0273464695, -0.026179608, 0.00636164472, -0.00264975033, 0.0163809545, 0.0165006332, 0.00741256867, 0.00527332118, 0.00698995544, 0.0160368793, 0.00865423, -0.00237673428, -0.0127681689, 0.0059652105, 0.00811567809, 0.0147353793, -0.00400922, -0.00838495418, -0.0316848047, -0.0109206364, 0.00355107686, -0.0089384662, -0.0092975, -0.0212877616, 0.00422239676, -0.019028835, -0.0316848047, 0.00749484776, 0.00505266432, 0.0156030459, 0.00943213888, -0.0131945219, -0.0104419235, 0.00532194041, 0.0170092657, -0.00351180742, -0.0201208983, -0.022275107, -0.00262544071, 0.00770428451, 0.00807827897, -0.00469362969, 9.67126107e-05, 0.00549397757, 0.026553601, -0.0221255086, -0.00943213888, -0.00682913745, -0.00966401491, 0.00529950066, 0.0195524264, 0.0206145719, 0.0286778901, -0.00267032, 0.0137181142, -0.0101502081, 0.00819047727, 0.0100529697, 0.000606338435, 0.0136358356, 0.0193878692, 0.000535279454, -0.01801157, -0.00461135106, 0.0290967636, 0.007659405, 0.0127980886, -0.00291341636, 0.0107411193, 0.00645888317, 0.0120874988, 0.0273464695, -0.013964951, -0.0031939121, -0.0127681689, 0.0184603631, -0.00353985699, 0.002273886, -0.0177422948, -0.00716573279, -0.0289022867, -0.00624944642, -0.00998565, -0.0123717347, 0.00255812169, -0.0189091563, 0.00747988792, -0.0117434235, -0.00273015909, -0.0124240937, -0.00852707215, 0.00921522174, -0.0145259425, -0.0100978483, -0.00814559776, -0.0067431191, 0.010254926, -0.00400922, -0.0179367717, -0.00315838261, -0.00129776052, -0.00212054816, -0.0206594504, -0.0116910646, 0.00821291655, -0.000959295605, 0.0147353793, -0.0106588406, 0.0016362255, -0.00051096984, -0.0183257256, -0.0136283562, -0.00187184196, -0.00220095692, -0.0178918913, -0.019687064, 0.00656360155, 0.00986597221, -0.0136582749, 0.0143165058, -0.0119603407, -0.00540421903, -0.00821291655, -0.00025454993, 0.00246836292, 0.0136657553, 0.00440565404, 0.00316399266, -0.0135685168, -0.00153711694, -0.0116312252, -0.00795112085, -0.0104942825, -0.00736020971, 0.0283786952, 0.0148251373, 0.0111599928, -0.0226939805, 0.00472728908, -0.0249828249, -0.0056660152, 0.00535185961, 0.0240104403, 0.00987345167, -0.014249186, -0.021811353, 0.0118406629, -0.000565199, 0.0250725839, -0.00083634496, 0.0131795621, 0.0196122658, 0.00374181382, -0.0243993942, 0.0129776057, -0.00463005062, -0.00627188617, 0.0221255086, -0.0230829343, 0.00169419462, 0.0151318135, -0.00409523863, -0.00645140326, 0.00422613649, -0.00276755844, -0.00464127026, 0.0108159175, -0.0167848691, 0.0114068286, -0.013089804, -0.00298260525, -0.00129682559, 0.00593903102, 0.0232474916, -0.0113021107, 0.0161266383, -0.0130823236, 0.00895342603, -0.00616342761, -0.0338090919, 0.0021953471, 0.0103895646, -0.000405550178, -0.0103446851, 0.0232474916, 0.0244592335, 0.00207566889, 0.0108233979, -0.0055425968, -0.0199264213, 0.00773420418, -0.0212129615, -0.0151168536, 0.0155880861, 0.0233372506, 0.0160368793, -0.00954433717, -0.00513494294, -0.018101329, -0.0102998056, 0.00410645828, 0.00958921667, 0.0207192898, 0.0254316181, -0.0134488381, 0.00228136568, -0.00295455568, 0.0077716033, -0.0182060469, -0.000163973164, -0.001270646, -0.0244741924, -0.0087365089, -0.0106588406, -0.00548649766, 0.0210035257, -0.0087813884, -0.0101726474, -1.25784836e-05, 0.00959669612, 0.00772672426, 0.0127681689, 0.00645514345, -0.0249828249, -0.00207940885, -0.0126335304, 0.000586703711, 0.00441687368, -0.0193878692, -0.00222713663, -0.0157227237, -0.0292463619, 0.00130430539, 0.0373396, 0.0038297025, -0.0167250298, -0.00869162939, -0.0438919812, 0.0242497958, 0.0161266383, 0.00854951143, -0.0195075478, -0.012162298, 0.00694881566, 0.00942465849, 0.0142791057, -0.00623822631, -0.000622233143, 0.0222451873, -0.0223499052, -0.0146082211, -0.00722557167, 0.00121267687, 0.00848219264, 0.00134450989, -0.0214224, 0.0195075478, -0.00592033146, -0.0144586228, 0.0014931726, -0.0103446851, -0.0100305295, 0.0166951101, -0.0210035257, 0.00892350636, -0.00639530411, -0.012626051, 0.00251137232, 0.0167250298, -0.0182509255, 0.0151018938, 0.0101876073, 0.0117957834, 0.0107037192, -0.00321261189, 0.0215121582, 0.0386261418, 0.0192831513, -0.00347253797, -0.0140397493, -0.0116910646, 0.0147503391, 0.00770428451, 0.00571837416, -0.00824283622, -0.00958921667, -0.0185202025, -0.0235616472, 0.0199862607, -0.014428704, 0.00739386911, -0.0151018938, 0.00916286279, 0.0119229415, -0.00547527801, 0.00169419462, 0.0124614928, -0.0028498373, -0.00187371194, -0.0111973919, -0.000940595928, 0.00815307815, 0.00410271855, -0.00879634824, -0.0053107203, 0.00150345743, -0.00183818245, 0.00595025066, 0.0020569691, -0.00201022, -0.00114161789, 0.0132992407, -0.0009148838, -0.00555755664, -0.00136040465, -0.00728915073, -0.0123193758, -0.0141968271, 0.018759558, 0.00549771776, 0.0199713, 0.0010799088, 0.0150121348, -0.00732281, 0.0121548176, 0.0197169837, -0.00201396, -0.0344074853, 0.0143090254, 0.0144361835, 0.00974629354, 0.0108907167, -0.00163529045, -0.0108458372, 0.0289022867, 0.0182658862, -0.0271819122, 0.00533316, 0.0128055681, 0.00612976821, -0.0155731263, -0.0355743468, -0.00551267713, -0.00251324242, 0.00679173833, 0.00503022457, -0.00679547805, -0.0131272031, -0.00056753651, -0.00231315522, -0.0225144625, -0.0116461851, 0.00487314677, 0.0131795621, 0.0131496433, 0.00378482323, -0.0109580355, 0.0120800193, 0.00814559776, 0.00855699182, -0.0184753239, -0.00049975, -0.0030817138, -0.00540795876, 0.00671319943, 0.00384466234, 0.0165604725, -0.00232624519, 0.0173383802, -0.00875894912, 0.009469538, 0.0229034163, 0.000460013107, -0.0104568833, -0.0121398577, 0.0175328571, 0.0236065257, -0.00363148563, 0.0116910646, 0.010628921, 0.000352022209, 0.0154235289, -0.00709841354, 0.00274511892, 0.0118556218, -0.00710589346, -0.0147503391, -0.00109112868, -0.022275107, 0.0106139611, 0.0120949782, -0.00227575586, 0.00303496444, 0.0433534309, 0.0017605786, 0.0165604725, 0.021063365, 0.00482452754, 0.00770428451, 0.00745744817, 0.0166053511, -0.017173823, 0.00685531739, 0.00631676521, -0.00629432546, 0.00863179099, 0.0141220279, -0.0164557528, 0.0317745619, -0.00155581662, 0.000603533466, 0.0134413587, -0.0110328346, -0.015086934, -0.00329863047, -0.00670571951, -0.0127232894, 0.00560617587, 0.0245190728, 0.0252371412, 0.000175543624, 0.00159041118, 0.0348263569, -0.0250426643, -0.0278401431, 0.0026591, 0.0111599928, 0.00897586532, 0.00911050383, 0.00334163988, 0.00224583643, -0.00556129683, -0.0112572312, -0.0160069596, 0.00999313, -0.00957425684, 0.00599887, -0.0106738, 0.0148400972, -0.0252670608, -0.00339399907, 0.00768184476, -0.00772672426, 0.00223461655, -0.000503957446, 0.0257607345, 0.015872322, -0.00325749116, 0.0132693211, 0.00540795876, 0.0029452059, 0.0100903688, -0.00571089424, -0.0104269637, -0.00769680459, -0.0118631022, -0.0113469902, -0.0238309223, 0.0101352483, -0.026179608, 0.00887862686, 0.0058530122, 0.0214822385, -0.00916286279, -0.0203153752, -0.0130449245, -0.00632798532, -0.00584927248, 0.00121080689, -0.0140098296, 0.0259252917, 0.00975377392, -0.000885431713, -0.0254316181, -0.0102175269, 0.016889587, 0.00143707346, 0.0164108742, -0.00379043329, -0.00724427123, -0.00983605254, 0.00415133778, 0.0356940255, 0.0126634501, 0.020704329, -0.00323879137, -0.00341456872, 0.0165754315, 0.00409523863, -0.0107112, -0.00568471476, 0.000576886348, 0.0087365089, -0.0116237458, 0.0162612759, 0.0274362285, -0.00109954353, 0.0135311168, 0.0212877616, -0.00183631247, -0.00299569499, 0.0330910236, 0.0153337698, 0.000316259015, 0.00547901774, 0.0102998056, 0.00669823959, 0.000661970058, -0.0121473381, 0.0177572537, 0.0217963941, -0.0251324233, -0.0034426183, -0.0279897396, -0.0210035257, -0.003923201, -0.0174430981, -0.0235018078, 0.00440565404, 0.00544909853, 0.0144212237, 0.0013641445, -0.0151467733, 0.0336894132, 0.00575577375, 0.000497412519, 0.0092975, 0.000987345236, -0.0263142455, 0.01662031, 0.00411767839, 0.0134039586, -0.015782563, -0.025985131, -0.0104718432, -0.00431963522, -0.00239356421, 0.00441687368, -0.009469538, 0.0234718882, -0.00834007468, -0.0150944134, -0.000852239726, 0.00729289046, 0.00854951143, -0.0276905447, -0.0252969805, 0.0238159634, 0.0201208983, -0.00483574765, 0.00827275589, -0.00608114898, -0.0115713868, 0.0241899565, 0.00519478228, -0.0105840415, 0.00845975336, 0.01605184, -0.0162313562, 0.0165903922, -0.00295829563, 0.000330050039, 0.0282739755, 0.0159172, 0.00866919, -0.00998565, 0.0082054371, -0.0181462076, 0.00455151172, 0.00306114415, -0.0153487297, 0.00447297283, 0.0301738679, -0.012947686, -0.00705727423, 0.00758834602, 0.0126634501, -0.0206444897, -0.00629058573, 0.0173383802, 0.0137779536, 0.0197020248, 0.0242797155, -0.0160368793, -0.00342391874, -0.00130243553, -0.00291715632, 0.0133815194, 0.00231689517, 0.00766688492, 0.0152514912, 0.0164108742, 0.00169512955, 0.0140023502, 0.00590163143, 0.00149036769, 0.0222302265, 0.00890854653, -0.00952189695, 0.0420369692, 0.0105017629, -0.0150196152, -0.0212877616, -0.000553979189, -0.00510876346, 0.00474598864, -0.00935734, -0.0242946763, -0.00662344089, 0.0126335304, -0.017832052, -0.00464501046, -0.007285411, 0.00327245099, 0.0330012664, 0.0056211357, 0.00297886529, 0.0253867395, -0.0056547951, -0.0137480339, 0.0296502747, -0.00796608068, 0.00550519768, -0.00439817412, -0.00737142935, 0.0145184621, 0.00355294673, 0.00580439297, 0.00254503195, 0.0191933922, 0.00260861078, -0.00197469047, 0.0197469033, -0.00973881409, 0.000701707, 0.0100604491, 0.00613724813, -0.0193729103, 0.00931994058, 0.0133815194, -0.0371002443, -0.0365018509, 0.00768932467, -0.00336033967, -0.0226491, 0.0345570818, 0.0148700168, 0.00987345167, 0.0013688195, -0.00484322757, 0.00354546681, -0.00529576046, -0.0198366623, -1.51935219e-05, 0.0179966111, -0.000409523869, 0.0184753239, -0.009469538, -0.027570866, 0.00970141497, 0.00941717904, -0.00494420575, 0.00237486442, 0.00223087659, 0.000223344774, -0.000260159839, 0.0240852386, 0.0125886509, 0.0162163973, 0.00330798049, -0.000854109705, -0.031984, -0.00673937891, 0.00108084385, -0.00662718061, -0.0138303125, 0.00406157924, 0.00286479713, -0.00259178109, -0.00409897836, -0.00995573, 0.0170541443, -0.0215271171, -0.0107934782, -0.0142791057, -0.0098884115, 0.0277503841, -0.0082503166, -0.00612976821, 0.0123567749, -0.0226191804, 0.0197319444, 0.00063158304, 0.00952189695, -0.0269874353, -0.00356229651, 0.00659726094, 0.0189989153, -0.0127307689, -0.0124914125, 0.0146082211, -0.00979117304, 0.000309714116, -0.00726671098, 0.00459265104, -0.0119453808, 0.0204500128, 0.0163211152, -0.0118481424, -0.0118930219, 0.0131646022, -0.0300242696, 0.00101726479, 0.0201807376, 0.010950556, 0.000483387761, 0.00747988792, 0.00633546524, -0.0175777357, 0.0117434235, -0.0174730178, -0.0140322698, 0.0343177244, -0.0173234195, -0.0117658637, -8.7947119e-05, -0.00250389241, 0.0149747357, 0.0107485987, -0.00285544712, 0.0161864776, 0.00991833117, -0.0177123751, -0.00964157563, -0.0187146794, -0.0145633416, 0.0191036332, -0.00544909853, 0.0433833487, -0.0122296168, 0.0142940655, -0.00705727423, 0.0103596449, -0.0131720826, -0.00402417965, -0.00943213888, 0.00718817208, 0.0016839098, 0.00264601037, -0.0176525358, -0.015962081, 0.0182658862, 0.00672441907, -0.000605403446, -0.00906562433, -0.0205696914, 0.0264788028, -0.0173383802, 0.0218711924, -0.0142566664, 0.0117209842, 0.0019616005, -0.0142417066, 0.0242797155, 0.00381661276, 0.00976873375, 0.00319765205, -0.00953685679, 0.0338390134, 0.00828771573, -0.00698247552, 0.00451785233, 0.0029452059, -0.00798104052, 0.011878062, 0.00891602598, -0.00902074482, -0.00687401695, 0.00865423, -0.0238159634, 0.0325225517, -0.00749858748, 0.00272454927, 0.00524340151, -0.0218263119, -1.53396144e-07, -0.021721594, 0.000959295605, -0.0158573631, -0.0114891082, 0.00582683273, -0.00205509923, -0.00258243131, 0.000484322751, -0.00146792794, 0.0290818047, -0.0127083296, 0.0167699084, -0.0129327262, 0.000634388, -0.031565126, -0.00360717601, -0.00155488169, -0.0236214865, -0.0137629937, 0.0030031749, -0.0015791913, 0.00606992887, 0.0149373356, 0.00556129683, -0.00924514141, 0.00091394881, -0.00899082515, -0.0234569293, -0.001937291, 0.00672815926, 0.03602314, -0.0138901519, 0.0121248979, -0.00357351638, -0.00815307815, -0.0111525124, -0.00509754336, -0.00229632552, 0.00601382973, 0.000414666283, 0.0224396642, -0.00102848455, -0.0233372506, 0.0169643853, -0.00326123112, -0.000596053549, 0.0279149413, 0.0106139611, 0.0128055681, 0.00578943314, -0.00722557167, -0.00581561262, -0.0123268552, -0.00192046119, 0.00400922, -0.0197319444, -0.0135984365, -0.00817551743, 0.0013379649, -0.00572585408, -0.0105316825, 0.000992020126, -0.040929947, -0.0122969355, -0.0198217034, -0.00151280733, 0.00770428451, 0.0140547091, 0.0169195067, -0.010486803, -0.0211232025, -8.86775797e-06, -0.00178488821, -0.0150046553, 0.0115713868, 0.0123193758, -0.00446549291, 0.00843731314, 0.0146157006, 0.00641774386, 3.62891442e-05, 0.015408569, -0.000985475257, 0.012715809, 0.0165903922, -0.0265835207, 0.00488436688, -0.0196421854, 0.0071171131, -0.0634892881, 0.00252820202, 0.00668327976, 0.0167549495, -0.0121323783, 0.0166053511, 0.000881224289, -0.00975377392, 0.0215869565, 0.0256709754, 0.0171139836, -0.00179797807, -0.00823535677, 0.02200583, -0.00492924592, -0.0105690816, 0.0270323139, 0.0156479254, 0.0122296168, 0.00936481915, -0.000889171672, -0.00634294469, 0.0203004163, -0.0182958059, 0.0121548176, -0.00647758273, -0.0174580589, -0.00917782262, -0.00268714968, -0.0175777357, 0.00160630594, 0.00880382769, -0.0178619716, -0.00621578703, -0.0186249204, -0.0122445766, -0.0203303359, -0.0343775637, 0.0182509255, -0.0343476459, -0.00691889646, 0.00340521894, -0.011788303, -0.011556427, 0.0165604725, 0.0179666914, 0.0195075478, -0.00548649766, -0.00496290578, 0.0105541218, 0.00965653546, 0.00232998515, -0.0251922626, -0.0158124827, -0.0108383577, -0.023860842, -0.0119379014, -0.00549771776, 0.0232474916, -0.0177871734, -0.0194477085, -0.0184304435, -0.00108645367, -0.0186548401, 0.0104643628, 0.00819795672, -0.00422613649, 0.0194925871, 0.0330611058, 0.00851211231, -0.00487314677, -0.00802592, -0.00152963703, 0.00311350334, 0.00785388239, 0.0309368167, -0.00961913541, -0.0129028065, -0.0239655599, -0.00128186576, 0.0208688863, 0.00222339667, 0.00134076993, 0.0182658862, 0.0200760197, 0.0107635586, 0.00318643218, -0.00887114741, -0.0153487297, -0.000584366266, 0.0051237233, -0.0137480339, -0.0165006332, -0.0102848457, -0.00117714738, -0.00946205854, -0.0172785409, -0.00867667, -0.009095544, 0.0038297025, 0.00148288778, 0.00110421842, -0.00175870862, -0.00682913745, 0.0308769774, -0.0174131785, -0.0253717788, 0.014623181, -0.000607740891, 0.00247584283, -0.00599513, 0.00131459034, 0.0093723, -0.000770428451, 0.0144586228, 0.00902074482, -0.0162313562, 0.0132842809, -0.00747614773, 0.00834007468, 0.0111450329, -0.0108084381, -0.0167549495, 0.00788380206, -0.00383718242, -0.000922363659, -4.23665515e-05, 0.0148924571, -0.00221591676, 0.00787632167, 0.0142641459, 0.00854203198, -0.00279747811, -0.0268527977, -0.00801096, -0.0268677566, -0.021721594, 0.00733777, -0.0118631022, -0.00465623, -0.0171588622, 0.000389187917, 0.0279149413, -0.00749858748, 0.000816710235, 0.0145184621, -0.00736394944, 0.00734525, -0.00213176804, -0.0218711924, 0.00400174, -0.0121024586, 0.0177722145, 0.0118705817, -0.0221703872, -0.0085794311, -0.00760704605, -0.000455805653, 0.00603626948, -0.0391946137, 0.00507884379, -0.00274511892, -0.0187894776, -0.0211980026, -0.0126559706, 0.00306862406, 0.00859439094, 0.00679921824, -0.00952937733, -0.0212129615, 0.00829519611, 0.00913294312, 0.00588293187, 0.00844479352, -0.000359034631, 0.00282365759, 0.0065075024, -0.00842983369, -0.00418873737, 0.0115489466, -0.018759558, -0.00151187228, -0.00116125261, 0.00754346699, 0.00437199464, -0.0119453808, 0.00778656313, 0.00700491481, 0.0143015459, -0.0049666455, 0.00839991402, 0.0186698, -0.0104643628, -0.00617090752, -0.0126709305, -0.00897586532, 0.00365579524, 0.0147278989, 0.00175403373, -0.0112572312, -0.0019064364, 0.0140322698, 0.0129252458, -0.007846402, 0.00023257776, -0.0103596449, -0.0185052417, 0.0102848457, -0.0130449245, -0.00699369516, -0.0255363379, 0.0125662116, -0.0198815428, -0.00907310378, -0.0149373356, -0.00532568, -0.00641026394, -0.0217814334, -0.0335398167, 0.00535185961, 0.0289471652, -0.0135236373, 0.0420968086, 0.00321448175, 0.0313257687, 0.00768184476, -0.000785855693, 0.0211381633, 0.0041588177, -0.00559121603, -0.00304244435, -0.00531446049, 0.00303496444, -0.0295156371, -0.0115339868, 0.00196721056, 0.00813811831, 0.00417751726, -0.0133516, 0.0187296383, 0.00479834806, 0.0258804113, -0.0159770399, -0.0182359666, 0.0141968271, 0.0184154846, 0.0185800418, 0.000974255381, 0.00892350636, -0.00280308793, 0.00455525192, 0.0259103309, -0.0192981102, 0.0108383577, 0.00313033303, -0.00599139, -0.023950601, 0.0124614928, -0.0173383802, 0.00664588, -0.0121323783, 0.00580065325, -0.000636725454, 0.00472728908, 0.00702735456, -0.0174879786, -0.00883374736, -0.0172935016, -0.00373807386, 0.00471980916, -0.00478712842, 0.0145483818, -0.0339586921, -0.0101352483, 0.00348562771, 0.0161415972, 0.00328367087, -0.0147503391, 0.00146979792, -0.00287227705, -0.00202891952, -0.00985101238, 0.00036838447, 0.0010107198, -0.0156628843, -0.00448793266, -0.0296652354, -0.0331508629, -0.00698247552, 0.00742004858, 0.00618212717, -0.0196272265, -0.00716573279, -0.00706101395, -0.0312659331, 0.0191335529, -0.00424857624, 0.00160256599, 0.0083625149, -0.0362924151, 0.000440845877, -0.0235616472, 0.015408569, 0.00579317333, 5.53321797e-06, -0.0142641459, -0.0153038502, -0.0245639514, -0.0122370962, -0.011002915, -0.0323729552, 0.020794088, 0.00682913745, -0.00342204864, 0.0050900639, -0.00679173833, -0.000934986, -0.00424483651, -0.00514616305, 0.000524994626, -0.00738638919, 0.00950693712, -0.0117209842, 0.00563235534, 0.0020401394, 0.00431589549, 0.0147652989, 0.0140023502, -0.0134712784, 0.0018942816, -0.000955555646, -0.0107560791, -0.0254914574, -0.0145035023, -0.00314155291, -0.0150495348, -0.00771176443, -0.0168596674, -0.00440565404, 0.0069301161, -0.00830267556, 0.0118705817, -0.0015791913, -0.00718069216, 0.0196721051, -0.00489932671, -0.0160069596, 0.00515364297, 0.011967821, -0.0161864776, -0.0107710389, 0.000606805901, 0.0177871734, 0.0120874988, 0.00609236863, -0.00725175114, -0.016994305, -0.00639530411, 0.00768932467, 0.00449915277, 0.00977621321, -0.0286330115, -0.00700117508, -0.0117509039, 0.022275107, -0.00997069, -0.00393442111, -0.0104568833, -0.0143763442, -0.00697125541, 0.00213924795, -0.00690393662, 0.00373807386, 0.0820394084, 0.0362624973, 0.012857927, -0.0224845428, 0.00549397757, -0.00529950066, -0.00600635, 0.0463154651, -0.0315052867, -0.00126971095, -0.0337791741, 0.00115096779, 0.00221778685, 0.00071012188, -0.0020999785, 0.011878062, -0.0138826715, -0.00364831532, 0.00511624338, 0.000608208356, -0.0144735826, -7.66688536e-05, 0.00822787639, -0.0100380098, -0.00559869595, 0.00241974369, 0.0119154612, 0.0137480339, -0.0123044159, 0.0135460766, -0.0220507085, 0.020135859, 0.00837747473, 0.0104942825, -0.0135236373, 0.0203602556, 0.007996, -0.0127831288, 0.0272118319, -0.00618212717, 0.0177871734, -0.00115938263, 0.00315838261, 0.00565853529, 0.00253568194, 0.00401296, 0.00311163324, 0.00125849119, 0.0192382708, -0.0159770399, 0.0203004163, 0.00666832, 0.0202854555, -0.0247285087, 0.0118257031, 0.000992955, 0.0329414271, 0.0133665595, 0.00560991606, 0.0184304435, -0.00522470148, 0.0102175269, -0.0203004163, 0.00175870862, -0.00721435202, 0.00963409524, -0.0140397493, 0.0170242246, -0.00532194041, -0.00739386911, -0.00693385582, -0.00332294, 0.00513868313, -0.00602878956, 0.0222152676, 0.0154534485, 0.0173084605, 0.00976125337, 0.0135984365, -0.0148924571, -0.00885618757, 0.0452682823, -0.0216916744, -0.00890854653, -0.00500778481, 0.0167848691, -0.0197469033, -0.0232624505, -0.000440845877, -0.0107635586, 0.000148312145, 0.00801844, 0.00859439094, 0.0214373581, 0.00401669974, 0.00449541258, -0.0333303809, 0.00415133778, 0.00264788023, 0.00834007468, 0.0184304435, 0.00083634496, 0.00702361483, 0.00887862686, -0.0131197236, 0.0181312487, 0.00283487746, 0.014712939, 0.0187296383, -0.00964157563, 0.0143015459, -0.0235466864, 0.0426952, 0.00847471319, -0.00913294312, 0.00385214225, 0.00123698649, -0.000403212704, 0.0127980886, -0.0147054596, 0.0171289425, -0.00345383817, -0.0239057224, -0.00437199464, 0.00749110756, 0.0172486212, 0.0354845896, 0.00730411056, 0.0185501222, -0.0218562316, -0.00952937733, -0.0105990013, 0.001067754, -0.00117434235, -0.0219759103, 0.00689271651, -0.028782608, -0.0104419235, 0.0102324868, 0.0260449704, 0.0119827799, 0.0019616005, -0.00120332697, 0.0184005238, 0.00336407963, 0.0130823236, 0.00430093566, 0.014623181, 0.0326721519, -0.0131197236, -0.00304431445, 0.0178170931, 0.0097313337, -0.00660848105, 0.0112198321, -0.00267592981, 0.00489184679, -0.0059652105, 0.00958173629, -0.00661596097, -0.00324627128, 0.0050900639, 0.0159321614, -0.020973606, 0.0200311393, -0.0101950867, 0.00333416, -0.0158274435, 0.0172037426, 0.00647758273, 0.00402044, -0.0024290937, -0.0137181142, -0.00274698879, -0.0192831513, 0.0089833457, -0.00226640608, 0.0207192898, -0.0146905, -0.0145409023, -9.23298649e-05, 0.020973606, 0.00849715248, 0.0382970273, -0.00860935077, 0.00369880465, -0.020135859, 0.00147260295, 0.0222003069, 0.0396434069, -0.00852707215, -0.002273886, -0.0245639514, 0.0191784333, -0.0440415815, -0.0115190269, 0.017263582, -0.0150794536, -0.0050451844, 0.00813811831, -0.0170990229, 0.0101427278, 0.00267032, -0.00330050057, 0.000898054044, -0.00681043789, -0.0103746047, 0.0204051342, 0.00328180077, 0.00540047884, -0.0135685168]
|
08 Oct, 2023
|
Longest Increasing consecutive subsequence
08 Oct, 2023
Given N elements, write a program that prints the length of the longest increasing consecutive subsequence.
Examples:
Input : a[] = {3, 10, 3, 11, 4, 5, 6, 7, 8, 12} Output : 6 Explanation: 3, 4, 5, 6, 7, 8 is the longest increasing subsequence whose adjacent element differs by one.
Input : a[] = {6, 7, 8, 3, 4, 5, 9, 10} Output : 5 Explanation: 6, 7, 8, 9, 10 is the longest increasing subsequence
Naive Approach: For every element, find the length of the subsequence starting from that particular element. Print the longest length of the subsequence thus formed:
C++
#include <bits/stdc++.h>
using namespace std;
int LongestSubsequence(int a[], int n)
{
int ans = 0;
// Traverse every element to check if any
// increasing subsequence starts from this index
for(int i=0; i<n; i++)
{
// Initialize cnt variable as 1, which defines
// the current length of the increasing subsequence
int cnt = 1;
for(int j=i+1; j<n; j++)
if(a[j] == (a[i]+cnt)) cnt++;
// Update the answer if the current length is
// greater than already found length
ans = max(ans, cnt);
}
return ans;
}
int main()
{
int a[] = { 3, 10, 3, 11, 4, 5, 6, 7, 8, 12 };
int n = sizeof(a) / sizeof(a[0]);
cout << LongestSubsequence(a, n);
return 0;
}
Java
import java.util.Scanner;
public class Main {
public static int LongestSubsequence(int a[], int n)
{
int ans = 0;
// Traverse every element to check if any
// increasing subsequence starts from this index
for(int i=0; i<n; i++)
{
// Initialize cnt variable as 1, which defines
// the current length of the increasing subsequence
int cnt = 1;
for(int j=i+1; j<n; j++)
if(a[j] == (a[i]+cnt)) cnt++;
// Update the answer if the current length is
// greater than already found length
if(cnt > ans)
ans = cnt;
}
return ans;
}
public static void main(String[] args) {
int[] a = { 3, 10, 3, 11, 4, 5, 6, 7, 8, 12};
int n = a.length;
System.out.println(LongestSubsequence(a, n));
}
}
// This code contributed by Ajax
Python3
def longest_subsequence(a, n):
ans = 0
# Traverse every element to check if any
# increasing subsequence starts from this index
for i in range(n):
# Initialize cnt variable as 1, which defines
# the current length of the increasing subsequence
cnt = 1
for j in range(i + 1, n):
if a[j] == (a[i] + cnt):
cnt += 1
# Update the answer if the current length is
# greater than the already found length
ans = max(ans, cnt)
return ans
if __name__ == "__main__":
a = [3, 10, 3, 11, 4, 5, 6, 7, 8, 12]
n = len(a)
print(longest_subsequence(a, n))
C#
using System;
class GFG
{
static int LongestSubsequence(int[] a, int n)
{
int ans = 0;
// Traverse every element to check if any
// increasing subsequence starts from this index
for (int i = 0; i < n; i++)
{
// Initialize cnt variable as 1, which defines
// current length of the increasing subsequence
int cnt = 1;
for (int j = i + 1; j < n; j++)
{
if (a[j] == (a[i] + cnt))
{
cnt++;
}
// Update the answer if the current length is
// greater than the already found length
ans = Math.Max(ans, cnt);
}
}
return ans;
}
static void Main()
{
int[] a = { 3, 10, 3, 11, 4, 5, 6, 7, 8, 12 };
int n = a.Length;
Console.WriteLine(LongestSubsequence(a, n));
}
}
Javascript
function LongestSubsequence(a, n)
{
let ans = 0;
// Traverse every element to check if any
// increasing subsequence starts from this index
for(let i=0; i<n; i++)
{
// Initialize cnt variable as 1, which defines
// the current length of the increasing subsequence
let cnt = 1;
for(let j=i+1; j<n; j++)
if(a[j] == (a[i]+cnt)) cnt++;
// Update the answer if the current length is
// greater than already found length
ans = Math.max(ans, cnt);
}
return ans;
}
let a = [ 3, 10, 3, 11, 4, 5, 6, 7, 8, 12 ];
let n = a.length;
console.log(LongestSubsequence(a, n));
Output
6
Time Complexity: O(N2)Auxiliary Space: O(1)
Dynamic Programming Approach: Let DP[i] store the length of the longest subsequence which ends with A[i]. For every A[i], if A[i]-1 is present in the array before i-th index, then A[i] will add to the increasing subsequence which has A[i]-1. Hence, DP[i] = DP[ index(A[i]-1) ] + 1. If A[i]-1 is not present in the array before i-th index, then DP[i]=1 since the A[i] element forms a subsequence which starts with A[i]. Hence, the relation for DP[i] is:
If A[i]-1 is present before i-th index:
DP[i] = DP[ index(A[i]-1) ] + 1
else:
DP[i] = 1
Given below is the illustration of the above approach:
C++
// CPP program to find length of the
// longest increasing subsequence
// whose adjacent element differ by 1
#include <bits/stdc++.h>
using namespace std;
// function that returns the length of the
// longest increasing subsequence
// whose adjacent element differ by 1
int longestSubsequence(int a[], int n)
{
// stores the index of elements
unordered_map<int, int> mp;
// stores the length of the longest
// subsequence that ends with a[i]
int dp[n];
memset(dp, 0, sizeof(dp));
int maximum = INT_MIN;
// iterate for all element
for (int i = 0; i < n; i++) {
// if a[i]-1 is present before i-th index
if (mp.find(a[i] - 1) != mp.end()) {
// last index of a[i]-1
int lastIndex = mp[a[i] - 1] - 1;
// relation
dp[i] = 1 + dp[lastIndex];
}
else
dp[i] = 1;
// stores the index as 1-index as we need to
// check for occurrence, hence 0-th index
// will not be possible to check
mp[a[i]] = i + 1;
// stores the longest length
maximum = max(maximum, dp[i]);
}
return maximum;
}
// Driver Code
int main()
{
int a[] = { 4, 3, 10, 3, 11, 4, 5, 6, 7, 8, 12 };
int n = sizeof(a) / sizeof(a[0]);
cout << longestSubsequence(a, n);
return 0;
}
Java
// Java program to find length of the
// longest increasing subsequence
// whose adjacent element differ by 1
import java.util.*;
class lics {
static int LongIncrConseqSubseq(int arr[], int n)
{
// create hashmap to save latest consequent
// number as "key" and its length as "value"
HashMap<Integer, Integer> map = new HashMap<>();
// put first element as "key" and its length as "value"
map.put(arr[0], 1);
for (int i = 1; i < n; i++) {
// check if last consequent of arr[i] exist or not
if (map.containsKey(arr[i] - 1)) {
// put the updated consequent number
// and increment its value(length)
map.put(arr[i], map.get(arr[i] - 1) + 1);
// remove the last consequent number
map.remove(arr[i] - 1);
}
// if there is no last consequent of
// arr[i] then put arr[i]
else {
map.put(arr[i], 1);
}
}
return Collections.max(map.values());
}
// driver code
public static void main(String args[])
{
// Take input from user
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int arr[] = new int[n];
for (int i = 0; i < n; i++)
arr[i] = sc.nextInt();
System.out.println(LongIncrConseqSubseq(arr, n));
}
}
// This code is contributed by CrappyDoctor
Python3
# python program to find length of the
# longest increasing subsequence
# whose adjacent element differ by 1
from collections import defaultdict
import sys
# function that returns the length of the
# longest increasing subsequence
# whose adjacent element differ by 1
def longestSubsequence(a, n):
mp = defaultdict(lambda:0)
# stores the length of the longest
# subsequence that ends with a[i]
dp = [0 for i in range(n)]
maximum = -sys.maxsize
# iterate for all element
for i in range(n):
# if a[i]-1 is present before i-th index
if a[i] - 1 in mp:
# last index of a[i]-1
lastIndex = mp[a[i] - 1] - 1
# relation
dp[i] = 1 + dp[lastIndex]
else:
dp[i] = 1
# stores the index as 1-index as we need to
# check for occurrence, hence 0-th index
# will not be possible to check
mp[a[i]] = i + 1
# stores the longest length
maximum = max(maximum, dp[i])
return maximum
# Driver Code
a = [3, 10, 3, 11, 4, 5, 6, 7, 8, 12]
n = len(a)
print(longestSubsequence(a, n))
# This code is contributed by Shrikant13
C#
// C# program to find length of the
// longest increasing subsequence
// whose adjacent element differ by 1
using System;
using System.Collections.Generic;
class GFG{
static int longIncrConseqSubseq(int []arr,
int n)
{
// Create hashmap to save
// latest consequent number
// as "key" and its length
// as "value"
Dictionary<int,
int> map = new Dictionary<int,
int>();
// Put first element as "key"
// and its length as "value"
map.Add(arr[0], 1);
for (int i = 1; i < n; i++)
{
// Check if last consequent
// of arr[i] exist or not
if (map.ContainsKey(arr[i] - 1))
{
// put the updated consequent number
// and increment its value(length)
map.Add(arr[i], map[arr[i] - 1] + 1);
// Remove the last consequent number
map.Remove(arr[i] - 1);
}
// If there is no last consequent of
// arr[i] then put arr[i]
else
{
if(!map.ContainsKey(arr[i]))
map.Add(arr[i], 1);
}
}
int max = int.MinValue;
foreach(KeyValuePair<int,
int> entry in map)
{
if(entry.Value > max)
{
max = entry.Value;
}
}
return max;
}
// Driver code
public static void Main(String []args)
{
// Take input from user
int []arr = {3, 10, 3, 11,
4, 5, 6, 7, 8, 12};
int n = arr.Length;
Console.WriteLine(longIncrConseqSubseq(arr, n));
}
}
// This code is contributed by gauravrajput1
Javascript
<script>
// JavaScript program to find length of the
// longest increasing subsequence
// whose adjacent element differ by 1
// function that returns the length of the
// longest increasing subsequence
// whose adjacent element differ by 1
function longestSubsequence(a, n)
{
// stores the index of elements
var mp = new Map();
// stores the length of the longest
// subsequence that ends with a[i]
var dp = Array(n).fill(0);
var maximum = -1000000000;
// iterate for all element
for (var i = 0; i < n; i++) {
// if a[i]-1 is present before i-th index
if (mp.has(a[i] - 1)) {
// last index of a[i]-1
var lastIndex = mp.get(a[i] - 1) - 1;
// relation
dp[i] = 1 + dp[lastIndex];
}
else
dp[i] = 1;
// stores the index as 1-index as we need to
// check for occurrence, hence 0-th index
// will not be possible to check
mp.set(a[i], i + 1);
// stores the longest length
maximum = Math.max(maximum, dp[i]);
}
return maximum;
}
// Driver Code
var a = [3, 10, 3, 11, 4, 5, 6, 7, 8, 12];
var n = a.length;
document.write( longestSubsequence(a, n));
</script>
Output
6
Complexity Analysis:
Time Complexity: O(N), as we are using a loop to traverse N times.
Auxiliary Space: O(N), as we are using extra space for dp and map m.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Longest Increasing consecutive subsequence
|
https://www.geeksforgeeks.org/longest-increasing-consecutive-subsequence/?ref=lbp
|
Pandas
|
Longest Increasing consecutive subsequence
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position, Longest Increasing consecutive subsequence
|
GeeksforGeeks
|
[0.0240463018, 0.0120017827, -0.00688054692, 0.025157446, 0.0186472796, -0.0146443117, 0.0134833083, 0.0269951075, -0.0206701327, 0.00900311768, -0.000195986082, -0.00172458845, 0.0479786396, -0.0212399494, 0.00306633068, -0.0142596848, -0.00891052186, 0.00819112733, 0.0149007291, -0.0233910102, -0.01346194, 0.0107695516, -0.0212399494, 0.0463546589, -0.00498946523, 0.0290606953, 0.00735776918, 0.00564475544, -0.042850282, 0.00472592423, -0.000570262724, 0.00868259557, -0.0185333155, -0.0130488221, -0.00755008264, -0.0094447257, 0.033277344, -0.00533847837, -0.00276183453, -0.000689123117, -0.00987208914, 0.00681644259, -0.00954444427, -0.00297551602, 0.0205276776, -0.015783947, -0.00269594928, 0.00520670786, -0.039146468, 0.00323727611, -0.0201288052, -0.0448161513, -0.0103279436, -0.00227927021, -0.0150859198, 0.00510698976, -0.0261688717, 0.013518922, -0.000631251, -0.00156432728, 0.0216815583, -0.0259124544, -0.0389470309, 0.0124362679, 0.04450275, -0.0149862021, -0.0133978352, 0.022721475, 0.0339326374, -0.0327645093, -0.0669535622, 0.0227927025, 0.013490431, -0.00727585796, 0.0069624586, -0.000154585272, 0.0193453059, 0.00351684284, 0.00755720539, 0.0266959537, -0.00777801, 0.00316604879, -0.00522095338, -0.0240320563, 0.00990770292, -0.0157697015, -0.0124220233, -0.045414459, 0.0625089854, 0.0161970649, -0.0146158207, 0.0247158371, -0.0262685902, -0.0107980426, -0.0359269977, 0.0356990695, 0.0181629341, 0.0122795682, -0.0636486188, 0.0321946926, 0.0138821807, 0.00857575424, -0.00836207252, 0.00345451897, 0.0273512434, 0.0122938138, -0.00511055114, 0.0240890384, -0.00170856237, 0.0582068637, -0.0119376779, -0.00109689881, -0.0341890529, 0.000169832347, -0.00148330641, -0.00757857366, 0.00202107173, -0.0309980754, 0.016638672, 0.0382917412, 0.0249865, 0.0275791697, 0.00623594085, 0.0474373139, -0.0337047093, 0.0384626873, 0.00930227153, 0.0329924375, -0.0240178108, -0.0151286563, -0.000540881534, -0.00374655053, -0.00228817365, -0.010406293, -0.0217242949, 0.0441893525, -0.0238183737, 0.0320237465, 0.00154384947, 0.0392319411, 0.0219807122, -0.0369526707, 0.000222362403, 0.00679507433, 0.0303712767, 0.0322516747, -0.00747885555, 0.0594889522, -0.0494886562, 0.0199151244, -0.0206416417, 0.000925953558, -0.0178637803, 0.00675233826, -0.0026514323, 0.00388900493, -0.0167668816, -0.00439471798, 0.00821961835, -0.0435340628, 0.0210547596, -0.00622881809, 0.0116171557, -0.02577, -0.0259267, 0.0234907288, -0.0121656051, -0.0406564847, -0.0466680601, 0.0334482901, 0.0231630839, 0.00951595325, 0.00757857366, 0.0554717407, 0.0128066493, -0.0301148575, 0.0190319065, 0.0139961438, 0.00975812599, 0.0117453644, 0.0139818983, -0.0308841113, 0.0269381255, -0.0123935323, 0.0181344431, -0.0235762019, 0.0214108955, -0.0146728028, -0.00108176307, -0.00186437182, -0.0302003305, -0.0345879272, 0.0488048755, 0.00745036453, 0.0197441783, 0.00658495445, -0.0392034501, 0.0451865345, -0.0140388804, 0.0378928669, -0.0278213434, -0.0325935632, 0.00354355294, 0.0363258682, 0.0412547924, -0.0421095192, -0.0394028835, -0.0212684404, 0.0135687804, 0.0106484657, -0.0374939963, 0.0553007945, -0.0290606953, -0.0235619564, 0.0490897819, 0.019544743, -0.0369526707, 0.0334482901, -0.0134405717, -0.0161400829, 0.0131627861, -0.00638551824, 0.0500869639, -0.00982935261, -0.0448161513, -0.0338186733, -0.0123365503, 0.0280777607, 0.00960854907, -0.01369699, 0.0172084905, 0.0183766168, -0.00636771135, -0.00288648205, -0.00831221417, -0.0011556613, -0.0177925527, 0.00541682821, 0.0236616749, 0.0375509784, 0.00966553, 0.00353643019, 0.0111541785, -0.00598664582, 0.0158266835, -0.0173936803, -0.00724736694, 0.0258412268, 0.0490612909, 0.0431351885, 0.00480427453, -0.00568393, 0.0215248577, -0.000434040732, -0.02186675, 0.015342338, -0.0057195439, -0.0294595677, -0.00699451054, -0.00310372515, -0.0170945264, -0.0034812293, 0.0101427529, 0.0318243094, 0.0299724042, 0.0253853723, 0.0537907779, -0.00372518227, 0.0164819732, -0.0396593027, 0.0375794694, -0.0087039629, 0.0159264, -0.0211402308, 0.0103635574, -0.0200433321, -0.0414257385, -0.00819825, 0.0556996688, 0.0324226208, 0.0262401, 0.0118735731, 0.0458988063, -0.0046938723, 0.0363828503, -0.0192740783, -0.00267636194, -0.0161685739, -0.0400011912, -0.0079632, -0.00305564678, -0.028775787, 0.000465647783, 0.00771390507, 0.00133461959, 0.00370737561, -0.0300008953, -0.00896038115, -0.0340750888, 0.00640688604, -0.00176999578, -0.0357275605, -0.0107837971, -0.0272942614, -0.0271090697, -0.0305707119, -0.0161115918, -0.0240178108, -0.0136827445, -0.00685561774, 0.0087680677, -0.0443887897, 0.00200682622, -0.0300863683, -0.0191031341, -0.00619320478, 0.0607425533, -0.00258732797, -0.00567324599, -0.017635854, 0.0345309451, -0.0265534986, -0.00402433658, 0.0636486188, 0.00181184174, -0.0222228859, -0.0436480269, 0.0261118896, -0.00598308444, -0.017749818, -0.0347018912, -0.0114390878, -0.0490328, -0.00153494603, 0.0209407955, -0.0174079258, -0.00118949416, 0.0090316087, -0.017721327, -0.00261938013, 0.0144519983, -0.0232058205, 0.0208125859, 0.0079632, -0.00760706468, 0.00155987556, -0.045499932, 0.0088891536, 0.0303427856, -0.00871108565, 0.00123579183, -0.00186971389, 0.042821791, -0.0119732916, -0.0181344431, 0.00545956474, -0.0315394029, -0.0264680255, 0.00317317154, 0.0109761106, 0.0229351576, 0.025071973, -0.032793, 0.0210832506, 0.022279866, -0.0297729671, -0.0216530673, -0.0125359865, 0.0134761855, -0.00427363161, -0.0260406621, -0.00701231742, 0.0106769567, -0.00371805951, -0.0425368808, 0.0106555885, 0.0253283903, -0.0104988888, 0.0431921706, 0.000141341472, -0.041767627, 0.0444457717, 0.0211972129, 0.00945897121, -0.0112254061, 0.00675589964, -0.0340750888, 0.0269666165, 0.00443389313, 0.0290037133, -0.0210405141, -0.00228995434, -0.00284730713, -0.0335907452, 0.0243597012, 0.00314824213, 0.00656002481, 0.000114408685, -0.0191601161, -0.0580644086, 0.0242599826, 0.00940199, 0.0280492697, -0.00635702722, -0.00025708566, 0.0287045594, -0.0261831172, -0.0349867977, 0.0303142946, 0.00984359812, 0.0225362852, 0.0311975125, -0.0649022236, -0.00219023624, -0.000966909167, 0.008582877, -0.0234052557, -0.00918118563, -0.0186330341, -0.0178922713, 0.000996290357, -0.00901024, -0.0102353478, 0.0210547596, -0.0399727039, 0.00940199, -0.00318741705, 0.0276076607, 0.0423659347, -0.0363828503, -0.00178513164, 0.0219237301, 0.00443389313, 0.00252144272, -0.017635854, -0.0266674627, -0.0087039629, -0.0191743616, -0.0418531, -0.0578364842, -0.0180062354, 0.0124149006, 0.00106484652, -0.0483490191, 0.00601869822, -0.0120587638, -0.0220661853, 0.0178922713, -0.0143807707, -0.0109404968, -0.050172437, -0.0296590049, 0.0123864096, -0.0432206616, 0.0543605946, -0.028775787, 0.0140175121, -0.0124220233, 0.0486054383, 0.0128992451, 0.0172939636, -0.00161774771, 0.0186615251, -0.0244166832, 0.0271375608, 0.0521098152, 0.0122653227, -0.0110046016, -0.0256275441, 0.0217955224, 0.0351007618, -0.0335622542, -0.00227036676, -0.00908146705, 0.00421665, -0.0110544609, 0.0170802809, -0.0347588733, -0.0281489883, -0.0158836655, 0.0320522375, 0.0136257624, 0.00293456041, 0.00618608203, -0.0225505307, -0.0247585736, 0.0451010615, 0.0201145597, 0.00205846597, -0.0156842284, -0.00727941934, 0.0346734, -0.0196587052, -0.00360053475, 0.00190354686, 0.0238896012, -0.0323371477, -0.0142311938, -0.00529930321, 0.0424229167, 0.00965840742, -0.0378358848, -0.0262828358, 0.0262828358, 0.0089532584, -0.0641044751, -0.00861136802, 0.0135260448, 0.0121869734, -0.0231488384, -0.0227927025, -0.0168096181, -0.0110117244, 0.045499932, 0.000791512197, 0.00536696939, -0.0426793359, 0.0172797181, -0.000917050173, -0.00653865654, 0.0264110435, 0.0256275441, 0.00297373533, 0.0102709616, -0.0504003651, 0.0121228686, 0.0155987563, -0.0205846597, 0.0214963667, -0.0118237147, -0.017194245, 0.0253711268, 0.0113536147, -0.00195340579, -0.0111969151, -0.0421095192, 0.00915269461, 0.0335907452, -9.35969874e-05, 0.037009649, 0.0111541785, 0.0182626527, -0.0466680601, 0.0252999, -0.0527081266, 0.0155417742, -0.000511055114, -0.0186045431, -0.00655646343, 0.0199293699, 0.0012838702, 0.0151286563, 0.0249865, -0.000327867689, -0.0258554723, 0.0248867813, -0.00244843494, -0.0289467331, -0.0275791697, -0.00802018214, -0.0346734, 0.0154990377, 0.013518922, 0.0242742281, 0.052822087, -0.000565365888, 0.006275116, 0.00445882231, -0.0314824209, 0.0152426194, 0.00310906698, 0.0010336847, 0.0010986795, -0.024203, 0.035442654, 0.0402006283, -0.0030948217, -0.014402139, -0.00639976375, 0.00279032532, -0.00232734857, -0.00248582917, 0.00500727165, -0.0297444761, -0.0173367, -0.0242742281, -0.0352432169, -0.0337901823, -0.00750022382, 0.010491766, 0.0393174104, 0.0379498489, 0.0244736653, 0.0239465833, -0.0443318076, -0.0139391618, 0.00114586751, -0.0173367, -0.0210974962, 0.0101569984, 0.0146585573, 0.0154278101, -0.0144377528, -0.0103208208, 0.0100002978, -0.0154705467, 0.0186187886, 0.0146728028, 0.0187469982, -0.0259409454, -0.0482065678, 0.00443745451, 0.0296874959, 0.000605876325, 0.0328499824, 0.0163537636, 0.0215106122, -0.00530998735, -0.0338756554, -0.0530500151, -0.0186472796, -0.0382347591, 0.00478290627, 0.0130701903, 0.00408131815, 0.0296020228, -0.0294880588, -0.0210832506, -0.0247728191, -0.0269381255, 0.00475797663, -0.00515684905, 0.0112610199, -0.00161863805, -0.00510698976, 0.0126285814, -0.00862561353, -0.0162825361, -0.0240178108, 0.0348158516, -0.0115245599, -0.0109120067, -0.0279353056, 0.0725947544, -0.0168666, -0.011845083, -0.0524517074, -0.0170945264, 0.0235334653, -0.00510698976, 0.00189286273, 0.0118664512, 0.00925241224, 0.0223938301, -0.00160083116, -0.000584508176, 0.0108479019, -0.0403715745, -0.00812702347, 0.00854726322, -0.0107125705, -0.01718, 0.0184193533, 0.00103635574, 0.00505356956, -0.0108194109, 0.0138038304, 0.0234337468, 0.00265321299, -0.00844042283, -0.0204137135, -0.00778513262, -0.0116029102, 0.0185902975, -0.00112004764, -0.00935925357, -0.0335337631, 0.0206131507, 0.0364398323, 0.0140673714, -0.000702478224, -0.0217670314, 0.00947321672, 0.00122599816, -0.00113696407, -0.00253746891, 0.0230633654, -0.0147725204, -0.0270805806, 0.0144235073, -0.0199008789, 0.0051639718, 0.0371521041, 0.030684676, 0.0201003142, -0.0226787385, 0.0110402154, 0.0368671976, -0.00770678278, 0.000125871811, 0.00753583713, -0.0122510772, -0.00861849077, 0.00443033176, 0.0080273049, 0.0192170981, 0.00261047669, 0.0203139968, 0.0106627112, 0.0130773131, 0.0200148411, 0.0157127194, 0.00480427453, -0.00410268642, -0.0119875371, -0.0211972129, -0.0339611284, -0.045414459, 0.00596171618, -0.00626443187, 0.0235192198, 0.0257557537, 0.0163110271, -0.0474088229, 0.0208838135, 0.0022970771, -0.00541326683, 0.0021475, -0.0236759204, -0.00470811781, 0.000331206451, -0.0020958602, 0.03173884, 0.000356358563, -0.00633209758, 0.0170090552, 0.0235619564, 0.0121727278, -0.0241887551, 0.00394954812, 0.0049787811, -0.0239750743, 0.0178780258, 0.0276076607, 0.0116242785, -0.00951595325, 0.0178780258, 0.0101498757, -0.00935925357, -0.0098151071, -0.0236616749, -0.00299332291, 0.0288755056, -0.010463275, 0.00184478436, -0.00576228, 0.0266674627, 0.01322689, 0.0308271311, 0.0140887396, -0.00468674954, 0.00790621899, -0.0173082091, -0.00878231321, 0.00154384947, -0.0139391618, -0.0461837128, 0.0040741954, -0.00502507854, -0.020869568, 0.00632497482, 0.0117738554, 0.0256987717, 0.0067986357, -0.007069299, -0.0283484235, 0.00838344079, 0.00122332713, 0.010199734, 0.00507137645, -0.0415112078, 0.0366392694, 0.00162219943, 0.0194022879, 0.00308591826, -0.0104276612, -0.00640688604, 0.00501439441, 0.0254708454, -0.00329069654, 0.00282237772, 0.00489687, 0.0300863683, 0.00876094494, -0.0186615251, 0.00126517308, -0.0100572798, -0.0475512743, -0.00961567182, -0.0420810282, 0.0224793032, -0.00553791458, -0.00897462666, -0.0147297839, 0.0165532, -0.0224223211, -0.0205134321, -0.0020370977, -0.0254993364, -0.00891052186, 0.00198011613, -0.0155417742, -0.00732927863, 0.0103849247, 0.0321946926, 0.0177355725, 0.0074717328, 0.0115316827, -0.00267814263, 0.0208553225, 0.00233981339, 0.021425141, 0.0157554559, -0.039146468, -0.00618964341, 0.0225220397, 0.00047098982, -0.0195874795, 0.041767627, -0.00193381833, -0.000557797961, -0.00656714756, -0.0285051242, 0.0250007454, -0.00631072931, 0.0081056552, -0.015256865, 0.00886066351, 0.0293456055, 0.019046152, 0.00721887639, 0.0182484072, 0.000726517406, -0.0210832506, 0.00256061764, 0.0042380183, -0.0322516747, 0.0199151244, -0.00152337167, 0.0020531239, 0.0172654726, -0.0155845108, 0.00481851958, -0.0272087883, -0.00542038959, 0.0439899154, -0.00960142631, -0.00934500806, -0.00600801408, -0.0163965, 0.0255563185, -0.00223297253, -0.0243312102, 0.0182341617, 0.0416251719, 0.00351150078, -0.0245591365, -0.0392319411, 0.0133622224, -0.0135331675, 0.0113607375, -0.00311262836, 0.00983647536, -0.00501439441, -0.00214571925, 0.00183766161, -0.015256865, 0.0552153215, -0.0023967952, -0.0335622542, 0.0167668816, -0.00620032754, -0.0327645093, -0.0433346257, -0.0146728028, 0.0178637803, -0.00819825, -0.0311120395, 0.0319952555, -0.0318243094, 0.0164819732, 0.0149434656, 0.00332809077, -0.0134690627, 0.00979374, 0.0278925691, 0.00690903794, 0.00772102783, 0.00572310528, -0.00924529, 0.0124790045, -0.0096940212, 0.0299724042, 0.028277196, -0.0198438969, -0.0265819896, 0.0320237465, 0.0106769567, -0.0121371141, 0.0112111606, 0.0174079258, 0.0256845262, -0.033277344, -0.0399442129, 0.0189321879, 0.00885354076, -0.0513405614, 0.0130559448, 0.00986496639, -0.00191779225, 0.0271802973, -0.0155845108, 0.010406293, 0.0205276776, -0.0210832506, -0.00212613191, -0.0427078269, -0.0209407955, 0.000635257573, 8.39701825e-05, -0.031653367, 0.0415112078, 0.00788485073, -0.00995043945, 0.000348122907, 0.00645318395, 0.00139605301, -0.00945897121, -0.0522522703, -0.0160546098, 0.00364683243, 0.0304282587, 0.0337047093, -0.00222406909, -0.011431965, -0.00152159098, -0.0198011603, -0.00812702347, 0.024601873, 0.00590829598, 0.0196159706, 0.0131841535, 0.00945184845, -0.0198723879, 0.0137468483, -0.0234195013, -0.0151001653, -0.00508918334, -0.0203282423, 0.00497165835, 0.000795963919, -0.00228639296, -0.0163395181, -0.00953019876, -0.0309410933, 0.00555216, 0.0139747756, -0.00762130972, 0.001568779, -0.0210120231, 0.0430497155, -0.00237186556, 0.0375794694, -0.0170802809, -0.00155720452, 0.0304567497, -0.0137326038, -0.0434770808, 0.00709779, 0.00844754558, -0.0200718231, 0.0100359116, 0.0296874959, 0.00562338717, 0.00227036676, -0.0070479312, 0.0246731, -0.00447306782, 0.00121976575, 0.00512123527, 0.00393174123, 0.0231630839, 0.0040528276, -0.0198581424, -0.0228354391, -0.00467606541, -0.0072865421, -0.0286618229, -0.0164819732, -0.0174506623, -0.00923104491, -0.00351684284, 0.0142098255, 0.0081483908, 0.0259124544, -0.00984359812, -0.00106395618, -0.00639620237, -0.0172512271, -0.0165389553, -0.025100464, -0.0339041464, 0.00408131815, 0.0151001653, -0.00544175785, 0.000304941437, -0.0180774629, 0.0113607375, 0.05025791, -0.0114248423, 0.0135830259, -0.0530215241, 0.00149666145, -0.00230776123, 0.00849740487, 0.0138394441, -0.000563585199, -0.00819112733, 0.0120516419, 0.0113108782, 0.0156414919, 0.00304140127, 0.0142311938, -0.00129900593, 0.0209123045, -0.0120872548, 0.0273369979, -0.0152996015, 0.00351862353, 0.0140460031, 0.0309980754, 0.0060578729, 0.00410980918, -0.00879655872, -0.00410980918, -0.0050642537, -0.000146238337, -0.0169520732, 0.00606143428, 0.010228225, 0.0137967076, 0.00197121268, 0.0130986813, 0.00151713926, -0.0270663351, 0.0119946599, 0.0123009365, 0.0116171557, 0.0339326374, 0.00171657547, -0.0277358703, -0.0215391032, 0.00424514106, 0.0041062478, -0.00401009107, 0.0248582922, 0.0082124956, 0.00869684, -0.00413117744, 0.0307416581, 0.0179777443, -0.0159691367, -0.0147867659, 0.00655290205, 0.00307167275, -0.000642825442, -0.0015972699, -0.0105273798, 0.0164819732, -0.0280492697, -0.0222656205, -0.0355851054, 0.0130416993, -0.00616471376, -0.00697314227, -0.0104703978, 0.0183196347, -0.00495385146, -0.00502864, -0.0272800159, 0.000905030582, -0.00536696939, -0.0260976441, 0.0160973463, -0.00110580225, -0.0178210437, 0.00689479243, 0.0722528696, 0.00753583713, 0.0116598923, -0.0145089794, -0.00347944861, -0.00885354076, -0.0126357041, -0.000360142498, -0.00363792898, -0.00198545819, 0.000880546228, -0.0196444597, 0.0360124707, -0.00599733, -0.017137263, -0.00297551602, -0.00857575424, -0.0156842284, -0.00740050571, 0.0122083416, -0.0194307789, 0.00955156703, 0.0165674463, 0.0021688682, 0.0338756554, 0.00574091217, -0.00277073798, 0.00417747488, -0.0364968143, 0.00346876448, 0.0125288637, -0.00832645874, 0.000463867123, -0.0168096181, 0.00304140127, 0.0099575622, 0.0146585573, 0.013433449, -0.0233910102, 0.014459121, -0.000657070894, 0.0243027192, -0.0150859198, 0.0223510936, -0.0100216661, -0.023248557, -0.0232628025, -0.006275116, -0.0234764833, -0.00862561353, -0.0182056706, -0.00844754558, -0.0289324876, -0.00968689844, 0.00349547458, 0.00286155264, -0.00430212263, -0.000997180701, 0.0414542295, -0.0297444761, -0.0144733666, 0.00582638476, 0.0155560197, -0.0233767647, 0.00101943919, 0.008846418, -0.0470669307, -0.0278070979, -0.00604006601, 0.00720819226, -0.0207983404, 0.0207556039, 0.00854014, -0.00500727165, 0.00279210601, 0.0169520732, -0.0319097824, -0.0113322465, -0.0319952555, -0.015256865, -0.00890339911, 0.00360943819, -0.0169378277, -0.010463275, -0.00094287, -0.0120658865, -0.0146300662, -0.00501439441, -0.03173884, -0.015812438, -0.00225256, -0.0191031341, -0.0355851054, -0.0144519983, 0.00353643019, -0.000851165, 0.0207128692, -0.00165870332, -0.00250185514, 0.0046083997, -0.0402861, -0.00772815058, -0.00239857589, 0.00043648915, 0.00340466, 0.00455497904, 0.00459771557, -0.0137753394, -0.0220804308, -0.00766404625, 0.0107339388, -0.00467606541, 0.00649948139, 0.00986496639, 0.0187897347, 0.00441608625, -0.0118735731, 0.00849028211, -0.0159976278, 0.00973675773, -0.0127496682, -0.0227642115, 0.023248557, -0.0355851054, 3.61700609e-06, -0.0268668979, -0.00778513262, -0.0207698494, 0.000945541, -0.000427808351, -0.0411693193, 0.0345879272, 0.0113607375, 0.00371805951, -0.0298584402, -0.0144092618, -0.00779225538, 0.0103279436, -0.0016952072, 0.0122297099, -0.00471880194, 0.0256275441, -0.00106662721, -0.0235762019, 0.00678439, -0.0027244403, -0.000141007593, 0.000823564478, 0.027450962, 0.0138821807, -0.0216673128, -0.00287045608, 0.0131485406, -0.00099896139, 0.0236474294, -0.0319667645, 0.00248404848, 0.00608636392, -0.0350722708, -0.00335480087, 0.0228496846, 0.0257415082, 0.0204564501, 0.0255848095, -0.00979374, 0.0019676513, 0.000271998841, 0.00335480087, -0.0302573126, 0.00400652969, 0.0157554559, -0.0100501571, 0.00574803445, -0.00220092037, 0.0167953726, 0.0102709616, 0.0127283, 0.0309126023, 0.0139676528, 0.00689835381, -0.0274652075, 0.0260121711, 0.00967265293, 0.00545244198, -0.0268384069, 0.00180382875, -0.0145232249, -0.00438759523, 0.015840929, 0.0139249172, -0.00734352367, 0.011581542, -0.008846418, 0.00242528599, -0.00140584679, 0.0129704727, 0.00551298494, -0.0074717328, 0.00459415419, -0.00508206058, -0.00143967965, -0.0418531, -0.00853301771, -0.0277216248, 0.00399940694, -0.0144092618, -0.0200718231, -0.00448375195, -0.0180204809, -0.00321234646, 0.0119448006, 0.00354711432, -0.0157127194, -0.0116314013, -0.000435153663, 0.00689123105, -0.0124362679, 0.0116955051, 0.0145659614, -0.0223083571, 0.00532423286, 0.00993619394, 0.0127140544, -0.0075714509, -0.0174506623, -0.0308556203, 0.0215106122, 0.0319097824, -0.00888203084, 0.0187897347, -0.0236331839, 0.0392604284, 0.0300293863, 0.0169378277, 0.000509719597, 0.000774150598, 0.00916694, -0.0269096345, -0.0364968143, 0.0190603975, 0.00920255389, -0.000292476674, -0.0196587052, 0.00516753318, 0.0265677441, 3.04384976e-05, 0.00394954812, 0.0183481257, -0.0129562272, 0.0123935323, -0.0105629927, -0.0177355725, 0.0375794694, -0.0226502474, 0.00742187398, 0.0239608288, 0.00254815281, -0.0105558708, -0.0336477272, -0.00350615871, 0.0289182421, 0.0310265664, -0.00819112733, 0.00368600735, 0.0147012929, 0.00941623561, 0.00735064643, -0.0119163096, 0.00439471798, -0.0134548172, -0.0108336564, 0.00992907118, 0.00053598464, 0.001304348, -0.0107624289, -0.0312260017, 0.00607924117, 0.019544743, -0.00313043525, -0.00658139307, -0.0302288216, 0.0449301153, 0.0105060115, -0.00823386386, 0.0091384491, -0.00114942889, 0.00853301771, 0.00623594085, 0.00369313, -0.0301433485, 0.00940199, -0.00407775678, -0.0184051078, -0.0142668076, 0.0143095432, 0.0254423544, 0.0154420557, 0.000560023822, -0.0362688862, 0.0210974962, -0.0244879089, -0.0090316087, -0.00380709372, -0.00328357378, 0.0110758292, -0.0294310767, -0.0116598923, -0.0204706956, 0.0184620898, 0.00648879772, 0.00097937393, -0.0112325288, -5.57018939e-05, 0.00340466, -0.0280635152, -0.0114177195, 0.000527526427, -0.0332203656, 0.0191601161, 0.0039816, -0.00665618153, -0.00201216829, -0.033277344, -0.0117524872, -0.0201572962, -0.000275560218, 0.00798456836, -0.0194022879, -0.00641757, -0.00170500099, -0.00268170401, -0.00136845245, -0.00547737116, 0.0020370977, -0.0118806958, 0.00779225538, -0.00423089555, -0.0308841113, 0.0327360183, 0.00570173701, -0.0214678776, -0.0105629927, -0.0105416253, -0.00311797042, -0.015313847, -0.00416679075, 0.0207413603, 0.0398587398, -0.00864698179, 0.0359554887, -0.0325080939, -0.0368387066, -0.0253568813, 0.0178780258, 0.0312544927, -0.00283840369, 0.0272657704, -0.0217670314, -0.00464045163, -0.0211117417, -0.0209835321, -0.00900311768, 0.00259088934, 0.00241816323, 0.0115459282, -0.0148864836, 0.0117026279, 0.00735776918, 0.0342745259, 0.022279866, 0.00452648848, -0.0145588387, 0.00160884426, -0.0128992451, 0.00138804, -0.0191458706, -0.0175931174, -0.00653865654, 0.00614690688, -0.02186675, -0.00520670786, -0.0215818398, -0.011816592, 0.0167953726, -0.00322837266, 0.00225790218, -0.0307701491, 0.00131058041, -0.0193880424, 0.0141172297, -0.0328784734, 0.0204849411, 0.0415112078, 0.00575515721, 0.0161970649, 0.0314254388, -0.00897462666, -0.00565187819, 0.00478290627, -0.0297729671, 0.0305137299, 0.0310835484, 0.00633922033, 0.00938774459, 0.00179047359, 0.0340465978, -0.017194245, -0.0289752223, 0.019487761, -0.00767829176, 0.0295450408, 0.0100572798, 0.00108176307, -0.0348443426, 0.00636771135, 0.0202000327, 0.00381065486, 0.0271945428, -0.00477934489, 0.00603650464, -0.0188039802, -0.0170090552, -0.0174506623, -0.0101712439, 0.0153565835, -0.0104419068, 0.0146443117, -0.0142668076, -0.00181629346, -0.0184051078, 0.0124790045, 0.0050642537, -0.022251375, 0.00427719299, -0.00469031092, 0.0092167994, 0.00414898433, -0.0121869734, -0.0268668979, 0.00696601951, -0.00129455433, -0.0154563012, -0.00384270726, -0.00292209559, -0.00645318395, -0.00414542295, 0.0364968143, -0.00894613564, 0.000497254834, 0.0118237147, 0.0160546098, 0.014373648, 0.00704080844, -0.0201288052, -0.00323727611, 0.0132126445, 0.003137558, -0.0019676513, 0.0128636314, 0.00399228418, -5.01650902e-05, 0.00354355294, 0.00283306162, 0.00933788531, -0.0121656051, -0.00161685736, 0.0084760366, -0.00396735501, 0.00111292489, 0.00568036875, 0.0209835321, 0.00431636814, 0.010933375, 0.00365751656, -0.00817688182, -0.0108122882, -0.0222656205, -0.00994331669, -0.00356492121, 0.0111897923, -0.0123009365, 0.00551654631, 0.00876094494, -0.00548805529, 0.0109547423, 0.0468959846, 0.0101783667, 0.0175218899, -0.000786615361, 0.0270235986, 0.0100216661, -0.0212541949, -0.00300756842, -0.00297373533, 0.00217599072, -0.00484344922, -0.0129775954, 0.00648523634, 0.013255381, -0.0102353478, 0.0128208948, -0.0160403643, -0.019046152, -0.00313933869, 0.0257415082, 0.00345451897, 0.0195589885, 0.0204991866, 0.037009649, 0.00724024465, 0.00918118563, -0.00648167497, -0.0212969314, -0.00187505595, 0.00482920371, -0.00753583713, -0.00249295193, 0.00436978834, 0.0155702652, 0.00742187398, -0.00968689844, -0.00618608203, 0.00989345741, -0.0153993201, 0.00817688182, 0.019487761, 0.0117881009, 0.0303712767, -0.0111470558, -0.0228496846, 0.000108955348, 0.0112040378, -0.0143594025, -0.0225647762, -0.00211366708, 0.00518177869, 0.023220066, 0.0095088305, 0.0113251237, -0.0118878186, -0.00990770292, 0.00707642175, -0.0390040129, 0.0112895109, -0.0095088305, -0.00993619394, 0.0100216661, -0.00917406287, 0.0106128519, -0.00205846597, 0.0143166659, 0.0133194858, -0.0152426194, 0.00961567182, -0.00375723466, 0.00782786869, 0.0138109531, 0.00139338197, -0.0068306881, 0.0132696265, -0.0137183582, -0.0111256875, -0.00851164944, -0.00493604457, -0.00443389313, -0.000534203951, 0.00129010261, 0.00734352367, -0.00698738778, -0.00735064643, -0.00172191742, -0.017664345, 0.0198154058, 0.0366107784, 0.00309660239, 0.00252144272, -0.0201715417, 0.0136898672, -0.00993619394, -0.0310835484, 0.00336904638, 0.0168523546, -0.000315402925, -0.00353643019, 0.0151286563, 0.00230063847, 0.0254566, 0.0339896195, -0.0272657704, 0.0100928936, -0.0145303477, -0.0054702484, 0.00139338197, -0.0113322465, -0.0155560197, -0.00768541452, -0.0334198, -0.0111256875, -0.0167526361, -0.00953732152, -0.00659207674, -0.00261759944, 0.0176216085, -0.0206273962, -0.0112681426, -0.0122297099, 0.0142098255, 0.00102656195, -0.0336477272, -0.0247443281, -0.0191458706, -0.00211544777, 0.00254815281, -0.0100145433, -0.0108336564, -0.00129099295, -0.0147297839, 0.0114248423, -0.00637127273, -0.0154420557, -0.000160483774, 0.0157697015, -0.0256560352, -0.0107624289, 0.0349867977, 0.00545600336, -0.0267529339, 0.00225968286, -0.011431965, 0.0128422631, -0.0162255559, 0.0189464334, -0.00652441103, 0.00199614209, 0.000481673924, 0.026482271, -0.0119946599, -0.0220234487, -0.0172369815, -0.00458347, 0.0126855634, 0.00640688604, 0.0320807286, 0.0004977, -0.0199008789, -0.00594390929, -0.01249325, -0.0217100494, -0.0348728336, 0.00734352367, 0.0156557374, 0.019487761, 0.0186045431, -0.00496809697, 0.0120017827, -0.0220092032, 0.00278498325, 0.00904585421, -0.00483632647, -0.000722956, 0.00458703144, 0.000340109866, 0.00542751234, 0.0199008789, 0.0426508449, -0.00200682622, 0.0192740783, 0.00965128466, 0.00736489194, -0.00848315936, 0.00567680737, -0.0247015916, -0.012607214, 0.016724145, 0.000213792882, 0.00457278593, 0.0269096345, -0.000556017272, 0.0079204645, 0.0207698494, 0.00389256631, -0.000917050173, 0.0147440294, -0.0101000164, 0.00633565895, -0.0166101828, -0.00947321672, -0.00915269461, 0.0227927025, -0.00151981029, 0.0032230306, 2.67797568e-05, -0.010377802, 0.00674877688, -0.00901024, -0.00120641058, -0.00187327527, 0.00494316733, -0.00881792698, 0.0183623713, 0.0207840949, -0.00249829399, -0.00651016552, -0.000129989625, -0.00460127695, -0.00931651704, 0.00177088613, 0.00559845753, -0.000700697536, 0.000296483195, 0.00267458125, 0.00537409168, -0.000448508741, -0.0084333, -0.0122368326, -0.00730078761, -0.001039917, 0.028334178, 0.012080132, 0.009259535, 0.00648167497, 0.00885354076, 0.00671672449, 0.00419528177, -0.00670247898, 0.00208161469, -0.0194592699, -0.0250577275, 0.0072331219, -0.0144662438, -0.0162398014, 0.0216673128, 0.00416679075, -0.00225256, -1.75285677e-05, 0.0083335815, -0.00603650464, 0.0146728028, 0.0145018566, -0.0155560197, 0.0186330341, -0.0163680092, -0.021425141, -0.00908859, -0.0257272627, -0.00473660836, 0.0311975125, -0.014402139, 0.0143309115, 0.0440468974, -0.00177622819, -0.00333165214, -0.0130274538, -0.00105238182, 0.0228354391, 0.00353821088, -0.00530642597, 0.017222736, -0.00588692771, 0.00680219708, 0.00180026738, 0.0141457208, -0.025570564, -0.010377802, 0.0118735731, -0.0225362852, -0.00515684905, -0.00659563811, 0.00107998238, 0.0167383906, 0.0186472796, -0.0240605474, 0.0288897511, 0.0110971974, -0.012315182, 0.0149719566, -0.0125858458, -0.0345879272, 0.00127496675, -0.0146158207, 0.00596527755, -0.0131271724, -0.0321662, 0.0201288052, -0.0174791533, 0.0058726822, 0.00167740043, 0.00167116802, 0.0034082213, 0.030713167, -0.00689835381, 0.0136613762, 0.00867547281, 0.00673097, 0.0195304975, 0.0172512271, -0.00129633502, 0.0287188049, 0.0142525621, -0.00241460185, 0.000886333408, -0.0155132832, 0.00270663342, 0.00103190402, 0.0117382417, 0.00563051, -0.00342602818, -0.0119305551, -0.00493248319, -0.0111755468, -0.00344561553, -0.0143522797, -0.0084760366, -0.00401721383, -0.000760350318, -0.0162255559, -0.0130630676, -0.00401009107, 0.0259694364, -0.0127639137, -0.0104276612, 0.00419884315, 0.0109689878, -0.00498234248, -0.00569817564, -0.0186900161, 0.00812702347, -0.00708710589, 0.00308769895, -0.00192313432, -0.00235583959, 0.00047098982, -0.00222763047, -0.0131200496, -0.0195589885, 0.00531711, 0.0137895849, 0.0147012929, -0.0143522797, 0.0123009365, 0.0269096345, 0.0108835157, 0.0112610199, -0.0162825361, 0.0323941298, -0.00224187598, -0.0234479923, 0.0196871962, -0.000923282525, -0.00462264521, 0.0225362852, 0.0163680092, -0.019074643, 0.00408844091, 0.0172654726, 0.00408131815, 0.00709066726, -0.00242172461, -0.0276076607, 0.00912420359, -0.0201003142, -0.0151571473, 0.0197869148, -0.00118860381, -0.00122154644, 0.0206131507, -0.0129775954, -0.0084333, -0.0216958039, 0.0156414919, 0.0036343676, -0.0132696265, -0.0215960853, -0.0095088305, 0.0127069317, 0.00853301771, -0.0213539135, -0.0350722708, -0.0308271311, -0.00465825852, 0.0191743616, 0.00318563636, 0.0206131507, -0.0127496682, 0.00281347428, 0.0079204645, 0.0114818243, 0.0143095432, 0.0214678776, 0.000963347848, -0.00642113155, 0.0211259853, 0.00470811781, -0.00480783591, 0.0227357205, 0.00687698554, 0.00974388048, -0.00100252277, -0.0164107457, -0.00111559592, -0.00102211023, -0.0143237887, -0.0151713928, -0.00545600336, 0.00651728828, 0.00606143428, -0.00184122298, -0.00769253727, 0.00188574, -0.00136400084, 0.00253034616, 0.00564831682, -0.0138893034, 0.00160083116, -0.00556284375, 0.0149292201, 0.00136489118, -0.0174791533, -0.00738626, -0.000272889185, 0.0262401, 5.62861787e-05, 0.0151713928, -0.0130132083, 0.0321662, 0.0138251986, 0.00684849499, 0.00689835381, -0.00137735589, 0.0145588387, -0.00837631803, 0.00602225959, 0.0197584238, 0.000667754968, 0.00415254571, 0.005099867, 0.00718682399, -0.0114177195, 0.0281489883, -0.0175931174, -0.0167811271, 0.0103279436, 0.00507137645, 0.0124362679, 0.00341890543, -0.0194307789, 0.00286511402, -0.0107125705, -0.030684676, 0.0123223048, 0.00456922455, -0.0079204645, 0.00136222015, -0.0116883824, -0.0192740783, -0.0169093367, 0.0233625211, 0.00271019479, 0.00144146034, 0.00506069232, -0.019487761, -0.00458347, -0.00292209559, 0.00596171618, 0.0204706956, -0.00610060943, -0.00982223, 0.0212257039, -0.00358272786, 0.00456566317, -0.0200290866, -0.00997893047, -0.00373230502, -0.0186615251, 0.0154420557, -0.0229066666, -0.028747296, -0.013518922, 0.00938774459, -0.00699094916, 0.00983647536, 0.0193453059, -0.0113536147, -0.00151090685, -0.0113678603, 0.00178335095, -0.0196871962, -0.0133907124, -0.0049146763, -0.0107624289, 0.0106128519, -0.00401721383, 0.00461552246, -0.00200148416, -0.00882505, -0.0129277362, 0.0262685902, 0.0102495933, 0.0323371477, 0.00444813818, 0.0315678939, -0.00158658577, 0.00355779845, 0.0241745096, 0.017692836, 0.000114742557, -0.00227392814, 0.0285905972, -0.00045140236, -0.0189464334, 0.0102780843, 0.00966553, 0.0126784407, -0.00367888459, 0.0241460185, -0.00471167918, 0.0105558708, 0.0151713928, 0.0389185399, -0.011581542, -0.0112752654, -0.00228817365, 0.0289039966, 0.0140460031, -0.0128992451, 0.000113740927, 0.0100786481, 0.0137468483, 0.0156984739, -0.0263683069, -0.0128565086, 0.00470455643, -0.00498590386, -0.0146585573, -0.0157412104, 0.00435554283, 0.0115601737, 0.00121798506, -0.0169948097, 0.0165959373, 0.00278498325, 0.0139462845, -0.0127354227, 0.00197477406, -0.00392818, -0.00410980918, 0.00859712251, -0.00464757439, -0.000396869029, 0.000197766756, -0.0170660354, -0.0159264, 0.0181486886, -0.00382133899, 0.021425141, 0.0114177195, 0.00942335837, 0.00219735899, 0.00288648205, 0.00367176183, -0.0105772382, -0.0260691531, -0.00893901289, 0.00317851361, 0.0234052557, -0.01322689, -0.0125573548, 0.00188574, -0.01898917, 0.0301718395, 0.0226360019, 0.00642113155, -0.0151429018, 0.0151856383, -0.00690547656, 0.00115031924, 0.000347677735, 0.0182199161, 0.00378572545, 0.00893901289, -0.00802018214, 0.00850452762, 0.0225505307, -0.0182911437, -0.000491467654, -0.00564475544, 0.010199734, 0.0140887396, 0.0288470145, -0.00351684284, -0.0189464334, 0.0143024204, -0.00411693193, -0.0265107621, -0.015285356, 0.00410268642, 0.00789197348, 0.0285478607, 0.0170660354, -0.0168381091, 0.00341712474, -0.0305137299, 0.00470099505, 0.00769253727, 0.000520848844, 0.00767116901, -0.00699451054, 0.0280635152, 0.0121798506, -0.00819825, 0.0177925527, 0.0169235822, 0.00198901934, -0.00386763667, 0.00366463931, 0.0170375444, 0.0112966336, 0.00552010769, -0.0266674627, 0.00347410655, -0.00275471178, -0.00700163329, 0.0194450244, -0.0100786481, -0.00898174942, -0.0114747016, -0.0202855058, -0.0146728028, 0.00787060522, 0.0234337468, 0.00764267799, -0.0197014417, -0.00624662498, 0.0256702807, 0.0220519397, -0.0100002978, 0.0130773131, -0.0266674627, -0.0139605301, -0.00237720762, 0.0215391032, 0.00467962679, 0.0138536897, 0.013404958, 0.0107766744, -0.000203108793, 0.0196729507, 0.0102424705, -0.00110402156, -0.0058726822, 0.00868259557, 0.0432206616, -0.00593678653, -0.0115031917, 0.00648523634, 0.0117881009, -0.0228069481, -0.004879063, 0.0129419817, 0.0135474131, -0.0182768982, 0.00405638898, 0.00874669943, 0.0274367165, 0.01419558, 0.0191886071, -0.00372518227, -0.00474729249, -0.0228781756, -1.0218042e-05, 0.0108051654, -0.00636771135, 0.0220234487, 0.0270235986, -0.0167668816, -0.000816441723, 0.0110971974, 0.0097723715, 0.00240213727, 0.00735064643, -0.00792758726, 0.00521383062, 6.11552241e-05, -0.00307701482, -0.00762130972, -0.00629292289, -0.00881080423, -0.013518922, -0.00361121888, -0.0207983404, -0.0035773858, -0.0162113104, -0.00764980074, 0.00691972207, -0.00148063537, -0.00095978647, 0.000503932417, 0.00244309288, 0.00633209758, -0.0192598328, -0.0190888885, -0.0101142619, 0.0200575776, 0.00396379363, -0.00777801, 0.000239724031, -0.0206131507, 0.0221374128, -0.0208553225, -0.0166814085, 0.00148597732, 0.00734352367, -0.0087680677, 0.0296874959, -0.0184193533, -0.0117453644, 0.0290464498, 0.00148508698, -0.00507849921, -0.0173794366, 0.00383914588, -0.0120231509, 0.00762843248, -0.0144519983, -0.0286190864, -0.00414898433, -0.00079818978, -0.0178067982, -0.0118878186, 0.0244309288, 0.00179848669, -0.00494316733, -0.00942335837, -0.0158551745, -0.0248155557, 0.0114248423, 0.0120373964, 0.00865410455, 0.00606855704, -0.00261759944, -0.0141172297, 0.0260121711, -0.0252571627, 0.00554147596, -0.00273334375, 0.00388900493, 0.01718, 0.00762130972, 0.0114960689, -0.00703368569, -0.00332987146, -0.0116598923, -0.00343315094, -0.0108550247, 0.00215462269, 0.00070158788, 0.0104561523, 0.0180204809, -0.0113892285, -0.0101712439, -0.02186675, -0.0146728028, 0.00829796866, 0.00146460917, 0.00954444427, -0.0107481834, -0.0173367, -0.00194628316, -0.0161400829, 0.0119020641, -0.00517821731, -0.0193880424, 0.0221231673, 0.00939486735, -0.00078038295, 0.00107998238, 0.00666686567, -0.00960142631, -0.0119946599, 0.0103706801, 0.00558421202, 0.00649948139, 0.01322689, 0.00689123105, 0.0240605474, -0.00145748653, -4.92191066e-05, -5.22518239e-05, 0.00559489615, -0.0279210601, 0.0206701327, 0.0208553225, 0.000324528897, 0.0143024204, 0.00256952108, -0.0121656051, 0.0399727039, 0.00426650885, -0.0004404957, 0.00672384724, -0.0191316251, 0.00208695675, -0.0100501571, -0.00580857787, 0.00218311348, -0.00866835, -0.0105701154, 0.00466182, -0.000416679104, 0.00932364, -0.00723668328, 0.0268811435, -0.00121531403, 0.0177783072, -0.0202427693, 0.0142454393, -0.00965128466, 0.0224650577, -0.019074643, -0.0201572962, 0.00219201692, 0.0176501, -0.00915269461, -0.0180917084, 0.0323941298, -0.0194165334, -0.0048470106, 0.0151286563, -0.00831933599, -0.0139391618, 0.00238967245, -0.00202819449, 0.0115245599, -0.00689479243, -0.00311262836, -0.00685205637, -0.00265677436, 0.0184335988, 0.0204564501, -0.00400296832, 0.00938774459, -0.0107339388, -0.0127211772, -0.024544891, -0.0012411339, 0.0230918564, -0.00198723865, 0.0182484072, 0.0184335988, 0.0319097824, 0.00787060522, 0.00826947764, 0.0178067982, -0.00589048909, -0.00303784, 0.0084760366, 0.00343315094, -0.0183196347, 0.0136471307, -0.0132126445, 0.000930405222, 0.0212257039, -0.00643537706, 0.00430212263, -0.0218525045, -0.0349867977, -0.0152141294, 0.00887490902, 0.0276788883, 0.00134975533, 0.0135046765, -0.000823119306, -0.0155132832, 0.00876094494, -0.00893189, 0.00534560112, 0.00627867738, -0.00375723466, 0.000153806221, 0.00455497904, -0.00112004764, 0.00797744561, 0.00346342241, -0.0154420557, 0.00282237772, 0.0045763473, 0.00362724485, -0.012521741, 0.0214108955, -0.000836919528, -0.00837631803, -0.0700875595, 0.0148579935, 0.0281632338, 0.0416821539, 0.00569461426, 0.0356420875, -0.00457278593, -0.0212541949, -0.00975812599, 0.0100644026, -0.0106484657, 0.0146015752, -0.0140246348, 0.0158979092, 0.0150574287, 0.00371449837, 0.00407063402, 0.00361656095, 0.0378073938, -0.0226075128, 0.00643537706, -0.0191601161, 0.00740762847, 0.0011476482, -0.00344561553, -0.00853301771, -0.0142952986, 0.00269594928, -0.0138679352, -0.0178637803, 0.00381065486, 0.0261261351, 0.0130559448, -0.0205704141, -0.0105629927, -0.0052494444, -0.0221231673, -0.0153565835, -0.00291319238, -0.0192028526, -0.00177978957, 0.00331740663, -0.0172797181, -0.034416981, -0.00394954812, 0.0162255559, 0.00041690169, 0.00153494603, 0.00966553, 0.0355566144, 0.00654934067, 0.025542073, -0.01851907, -0.0150004476, -0.00835495, -0.00658851583, 0.0180204809, -0.00633209758, 0.01898917, 0.00497521972, -0.00866835, -0.00352218491, -0.00536340801, -0.00335302018, -0.00224721804, 0.00193737971, -0.00528149633, 0.000990058063, 0.00707642175, 0.00133640028, -0.0044766292, -0.00951595325, -0.00787772797, 0.00791334175, -0.00900311768, 0.000225367301, -0.0141813345, -0.00911708083, 0.00611129357, -0.0178495347, 0.00779225538, 0.000921501836, -0.00774951885, -0.00985784363, 0.00139338197, -0.0148152569, -0.00878943596, 0.0144092618, -0.00076079549, 0.0249010269, 0.0258412268, -0.00729366485, -0.00505356956, 0.0194022879, -0.0112467743, -0.0113108782, -0.00552010769, -0.00424870243, -0.0192740783, 0.00642469293, 0.0352432169, 0.0254138634, 0.0129775954, -0.0181344431, 0.0310835484, -0.00961567182, -0.0204991866, 0.01851907, -0.0128992451, 0.0249580089, 0.00774951885, -0.011431965, -0.0129704727, -0.0166814085, 0.0198581424, 0.0236189384, -0.00112628, 0.00891764462, -0.0210974962, 0.0151571473, 0.000435153663, -0.0207556039, 0.000645941647, -0.00112538971, -0.00306633068, 0.00578008685, -0.00134975533, -0.00727941934, -0.0292601325, 0.00732215587, -0.00145837688, 0.0186900161, 0.00339753716, -0.00578720961, 0.00918830838, -0.0226502474, -0.000691349, 0.00903873146, -0.00075100176, -0.00695533585, -0.00910283532, -0.00287223677, 0.00350259733, -0.0115031917, -0.00245911884, 0.0094447257, -0.0280350242, 0.00658495445, 0.00292209559, 0.00138002692, -0.0146015752, 0.00145214447, -0.00866835, 0.0158551745, 0.00193203765, -0.00607211841, -0.000741653203, 0.00170945271, 0.0274367165, -0.0110900747, 0.00415254571, 0.014459121, -0.0136542534, -0.00499302661, 0.00235762028, 0.00668111118, -0.0098792119, -0.0130345766, -0.00706573762, -0.00443389313, 0.00185724918, 0.00541326683, -0.0127924047, 0.0084333, 0.00314468076, -0.00948746223, -0.0201857872, -0.00777801, -0.0133194858, 0.021339668, 0.00368600735, 0.0169520732, -0.0119661689, 0.00503576268, 0.0197014417, -0.0103706801, 0.0131556634, 0.00413473882, -0.0115388054, 0.00161774771, 0.0119946599, 0.00848315936, 0.00656002481, 0.0057729641, -3.0382851e-05, -0.00428075437, -0.00682000397, 0.00532423286, -0.0100216661, 0.00422377279, -0.00625730911, 0.012607214, 0.0178495347, -0.0109689878, -0.00496809697, 0.00601157546, 0.00477578351, 0.0182056706, 0.00953019876, -0.014459121, -0.0121656051, 0.00133550994, 0.00451936573, -0.022251375, -0.00491823768, -0.0156414919, -0.0254566, 0.00718326261, 0.00659207674, -0.00322837266, 0.0272657704, 0.00662056776, 0.0183481257, 0.0204564501, 0.0309126023, 0.00468318816, 0.013404958, 0.0140816169, -0.030599203, 0.0116456468, -0.00924529, 0.0194165334, 0.00902448595, -0.00645674532, -0.00703368569, 0.000729633612, -0.00530998735, 0.0179634988, 0.0121727278, 0.008582877, -0.00780650042, 0.023305539, -0.0267244447, 0.0259551909, 0.00702656293, 0.0138608124, 0.039117977, 0.00486837886, -0.0139035489, -0.016638672, -0.00460483832, -0.00107820169, -0.00787060522, 0.0156130008, 0.00345986104, 0.00361478026, 0.00190176617, 0.0170517899, 0.00163288345, 0.0125074955, -0.0153850745, -0.0154563012, 0.0139462845, 0.0140887396, -0.00581570063, -0.00687698554, -0.00808428694, 0.00274402765, 0.0078421142, -0.00319810119, 0.000745659694, -0.00957293529, -0.00635346584, -0.0134761855, -0.0178637803, -0.00448019058, -0.0238468647, -0.00589048909, -0.00709066726, 0.00862561353, -0.0119448006, -0.0271518063, 0.0103279436, 0.0246161185, -0.00937349908, -0.0155560197, -0.00976524875, -0.00300222635, 0.00278498325, 0.0126357041, 0.0226075128, -0.015285356, -0.0103136981, -0.00772815058, -0.0394313745, -0.00617895927, 0.00392461848, 0.00653509516, 0.00575515721, -0.0320237465, 0.00631072931, -0.0210832506, 0.00894613564, 0.0165389553, -0.0207840949, -0.0167668816, -0.00268170401, -0.0307416581, -0.00459059281, -0.0150146931, -0.0262685902, 0.0168381091, -0.0155987563, -0.0193737969, -0.000854726357, -0.0105629927, -0.0146728028, -0.0217100494, 0.0096299164, -0.00444101542, 0.00658495445, 0.0441608615, 0.0101641212, 0.00250897789, 0.00983647536, -0.00212435122, 0.0223368481, 0.0108763929, 0.00511055114, -0.00783499144, 0.000438492425, -0.00372874364, 0.00250185514, 0.00665262, 0.00555928284, 0.016638672, -0.00569461426, -0.0411408283, -0.00100163242, -0.0155275287, 0.00955156703, -0.00519246235, -0.0179777443, -0.0098151071, -0.00395667087, -0.00707286038, -0.0214821231, -0.00154473982, 0.0109404968, -0.000399317476, -0.0230206288, 0.0135117993, -0.00103101367, 0.00725092832, 0.0158979092, -0.0175218899, -0.015342338, 0.0044766292, 0.0293456055, -0.000741653203, 0.00690903794, -0.0178352892, -0.0245306455, -0.0019676513, 0.000965128478, 0.000579611282, -0.00237008487, -0.00823386386, 0.00107018859, -0.00836919528, 0.0187754892, -0.00080397696, 0.0189179424, 0.0728226826, 0.0335052721, 0.0101285074, -0.0320522375, 0.00830509141, -0.00911708083, -0.0271233153, 0.0342175439, -0.0202997513, 0.00191779225, 0.000928624591, 0.00446594507, 0.00849028211, -0.00234159408, -0.0126570724, 0.00480071316, -0.00509274472, 0.00310906698, 0.011318001, -0.0222941115, -0.0177925527, -0.00370381423, 0.0107481834, -0.013518922, 0.00394242536, -0.021453632, -0.00492536044, 0.00267458125, -0.0183338802, 0.0198154058, -0.00781362318, 0.00569461426, -0.00173082086, -0.00436266558, -0.0281632338, 0.00667755, 0.0192313436, -0.00391393434, -0.00408131815, -0.016638672, -0.00349369389, 0.0218525045, 0.00881080423, 0.0133693442, -0.000708265405, -0.0138536897, -0.0273797344, 0.00578008685, -0.0121513596, -0.00464045163, -0.00505000819, -0.00651016552, 0.00397091638, -0.00611841632, 0.00479715178, -0.00724024465, 0.0111897923, -0.00501439441, -0.00539902132, 0.0206701327, 0.00790621899, 0.00325508276, 0.0141101079, 0.0103279436, 0.00470811781, -0.000591630873, -0.00266389712, 0.0032070044, 0.0120231509, -0.0086612273, -0.00517465593, -0.000155364323, 0.0294025857, -0.00665974291, -0.0158979092, 0.00612197723, 0.01898917, 0.0134833083, -0.0194735155, -0.0194022879, -0.00549873943, 0.000550675264, -0.0155417742, -0.0107054478, 0.00086318457, 0.00661700638, 0.00182341621, -0.0254138634, -0.00555572147, 0.0131129269, -0.00212078984, 0.0186900161, -0.0203709789, 0.00355423708, -0.00504288543, 0.00773527334, -0.0239180923, -0.00119483622, 0.0132197673, -0.000405549858, 0.0117738554, 0.00977949426, -0.00826235488, 0.0193310603, -0.00535628526, -0.00146371883, -0.00871820841, 0.00361478026, 0.0258697178, -0.000396201271, 0.0112752654, -0.013668499, 0.0107481834, 0.0443603, 0.00387119805, 0.00174150488, 0.00119750726, 0.00449443609, -0.0108835157, -0.00423445692, 0.0268668979, -0.00144057, -0.00433061365, -0.00314824213, -0.00208339537, 0.0150716743, 0.0156272464, -0.000111960246, 0.0146870473, -0.00500727165, 0.0226644929, -0.0204849411, 0.0192170981, -0.0125288637, 0.0142454393, 0.00175931177, -0.0242314916, -0.0146443117, -0.0109974789, 0.00607211841, -0.00176376349, 0.0286333319, 0.000521294, 0.0214821231, 0.00672384724, 0.0099575622, 0.0090316087, 0.00556996651, 0.0291034319, 0.00463689025, -0.0239323378, -0.00144413137, 0.015370829, 0.00761418743, -0.0097723715, -0.00453361077, -0.00898887217, -0.017165754, 0.0162682906, -0.00898174942, 0.006275116, 0.00852589495, 0.00659563811, 0.0211972129, -0.00338685326, -0.0168950912, 0.00129811559, 0.0225932673, 0.0167526361, 0.0113892285, 0.025542073, 0.00216530683, 0.000130657383, 0.0127211772, -0.0104134157, 0.00101231656, -0.0102567161, 0.0185048245, -0.0048149582, -0.00811990071, -0.00449087471, -0.00395667087, -0.0133764669, 0.0280207787, -0.00523163751, -0.0174364168, 0.00139783369, 0.0132909948, 0.0309695844, 0.0147867659, -0.00718326261, -0.0082124956, -0.00982223, -0.0132696265, 0.000364371634, -0.0166101828, 0.00360231544, -0.00713696517, 0.00755720539, 0.00104525906, 0.000512835803, 0.0101356301, 0.00585131394, 0.0118237147, -0.0155417742, 0.04544295, -0.00264252885, -0.00488618575, 0.00154563016, -0.00269416859, -0.00111203454]
|
02 Jun, 2023
|
Sort elements by frequency | Set 4 (Efficient approach using hash)
02 Jun, 2023
Print the elements of an array in the decreasing frequency if 2 numbers have the same frequency then print the one which came first.
Examples:
Input : arr[] = {2, 5, 2, 8, 5, 6, 8, 8}
Output : arr[] = {8, 8, 8, 2, 2, 5, 5, 6}
Input : arr[] = {2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8}
Output : arr[] = {8, 8, 8, 2, 2, 5, 5, 6, -1, 9999999}
Recommended: Please solve it on “PRACTICE” first, before moving on to the solution.
We have discussed different approaches in below posts : Sort elements by frequency | Set 1 Sort elements by frequency | Set 2 Sorting Array Elements By Frequency | Set 3 (Using STL)All of the above approaches work in O(n Log n) time where n is total number of elements. In this post, a new approach is discussed that works in O(n + m Log m) time where n is total number of elements and m is total number of distinct elements.
The idea is to use hashing.
We insert all elements and their counts into a hash. This step takes O(n) time where n is number of elements.
We copy the contents of hash to an array (or vector) and sort them by counts. This step takes O(m Log m) time where m is total number of distinct elements.
For maintaining the order of elements if the frequency is the same, we use another hash which has the key as elements of the array and value as the index. If the frequency is the same for two elements then sort elements according to the index.
The below image is a dry run of the above approach:
We do not need to declare another map m2, as it does not provide the proper expected result for the problem.
instead, we need to just check for the first values of the pairs sent as parameters in the sortByVal function.
Below is the implementation of the above approach:
C++
// CPP program for the above approach
#include <bits/stdc++.h>
using namespace std;
// Used for sorting by frequency. And if frequency is same,
// then by appearance
bool sortByVal(const pair<int, int>& a,
const pair<int, int>& b)
{
// If frequency is same then sort by index
if (a.second == b.second)
return a.first < b.first;
return a.second > b.second;
}
// function to sort elements by frequency
vector<int>sortByFreq(int a[], int n)
{
vector<int>res;
unordered_map<int, int> m;
vector<pair<int, int> > v;
for (int i = 0; i < n; ++i) {
// Map m is used to keep track of count
// of elements in array
m[a[i]]++;
}
// Copy map to vector
copy(m.begin(), m.end(), back_inserter(v));
// Sort the element of array by frequency
sort(v.begin(), v.end(), sortByVal);
for (int i = 0; i < v.size(); ++i)
while(v[i].second--)
{
res.push_back(v[i].first);
}
return res;
}
// Driver program
int main()
{
int a[] = { 2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8 };
int n = sizeof(a) / sizeof(a[0]);
vector<int>res;
res = sortByFreq(a, n);
for(int i = 0;i < res.size(); i++)
cout<<res[i]<<" ";
return 0;
}
Python3
# Used for sorting by frequency. And if frequency is same,
# then by appearance
from functools import cmp_to_key
def sortByVal(a,b):
# If frequency is same then sort by index
if (a[1] == b[1]):
return a[0] - b[0]
return b[1] - a[1]
# function to sort elements by frequency
def sortByFreq(a, n):
res = []
m = {}
v = []
for i in range(n):
# Map m is used to keep track of count
# of elements in array
if(a[i] in m):
m[a[i]] = m[a[i]]+1
else:
m[a[i]] = 1
for key,value in m.items():
v.append([key,value])
# Sort the element of array by frequency
v.sort(key = cmp_to_key(sortByVal))
for i in range(len(v)):
while(v[i][1]):
res.append(v[i][0])
v[i][1] -= 1
return res
# Driver program
a = [ 2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8 ]
n = len(a)
res = []
res = sortByFreq(a, n)
for i in range(len(res)):
print(res[i],end = " ")
# This code is contributed by shinjanpatra
Java
// Java program for the above approach
import java.util.*;
// Used for sorting by frequency. And if frequency is same,
// then by appearance
class SortByValue implements Comparator<Map.Entry<Integer, Integer> >
{
// Used for sorting in descending order of values
public int compare(Map.Entry<Integer, Integer> o1,
Map.Entry<Integer, Integer> o2)
{
// If frequency is same then sort by index
if (o1.getValue() == o2.getValue())
return o1.getKey() - o2.getKey();
return o2.getValue() - o1.getValue();
}
}
class GFG
{
// Function to sort elements by frequency
static Vector<Integer> sortByFreq(int a[], int n)
{
// Map to store the frequency of the elements
HashMap<Integer, Integer> m = new HashMap<>();
// Vector to store the sorted elements
Vector<Integer> v = new Vector<>();
// Insert elements and their frequency in the map
for (int i = 0; i < n; i++)
{
int x = a[i];
if (m.containsKey(x))
m.put(x, m.get(x) + 1);
else
m.put(x, 1);
}
// Copy map to vector
Vector<Map.Entry<Integer, Integer> > v1 =
new Vector<>(m.entrySet());
// Sort the vector elements by frequency
Collections.sort(v1, new SortByValue());
// Traverse the vector and insert elements
// in the vector v
for (int i = 0; i < v1.size(); i++)
for (int j = 0; j < v1.get(i).getValue(); j++)
v.add(v1.get(i).getKey());
return v;
}
// Driver program
public static void main(String[] args)
{
int a[] = { 2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8 };
int n = a.length;
Vector<Integer> v = sortByFreq(a, n);
// Print the elements of vector
for (int i = 0; i < v.size(); i++)
System.out.print(v.get(i) + " ");
}
}
Javascript
<script>
// JavaScript program for the above approach
// Used for sorting by frequency. And if frequency is same,
// then by appearance
function sortByVal(a,b)
{
// If frequency is same then sort by index
if (a[1] == b[1])
return a[0] - b[0];
return b[1] - a[1];
}
// function to sort elements by frequency
function sortByFreq(a, n)
{
let res = [];
let m = new Map();
let v = [];
for (let i = 0; i < n; ++i) {
// Map m is used to keep track of count
// of elements in array
if(m.has(a[i]))
m.set(a[i],m.get(a[i])+1);
else
m.set(a[i],1);
}
for(let [key,value] of m){
v.push([key,value]);
}
// Sort the element of array by frequency
v.sort(sortByVal)
for (let i = 0; i < v.length; ++i)
while(v[i][1]--)
{
res.push(v[i][0]);
}
return res;
}
// Driver program
let a = [ 2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8 ];
let n = a.length;
let res = [];
res = sortByFreq(a, n);
for(let i = 0;i < res.length; i++)
document.write(res[i]," ");
// This code is contributed by shinjanpatra
</script>
C#
using System;
using System.Collections.Generic;
using System.Linq;
// Used for sorting by frequency. And if frequency is same,
// then by appearance
class SortByValue : IComparer<KeyValuePair<int, int>>
{
// Used for sorting in descending order of values
public int Compare(KeyValuePair<int, int> o1, KeyValuePair<int, int> o2)
{
// If frequency is same then sort by index
if (o1.Value == o2.Value)
return o1.Key - o2.Key;
return o2.Value - o1.Value;
}
}
class GFG
{
// Function to sort elements by frequency
static List<int> sortByFreq(int[] a, int n)
{
// Dictionary to store the frequency of the elements
Dictionary<int, int> m = new Dictionary<int, int>();
// List to store the sorted elements
List<int> res = new List<int>();
// Insert elements and their frequency in the dictionary
for (int i = 0; i < n; i++)
{
int x = a[i];
if (m.ContainsKey(x))
m[x]++;
else
m.Add(x, 1);
}
// Copy dictionary to list
List<KeyValuePair<int, int>> v =
new List<KeyValuePair<int, int>>(m);
// Sort the list elements by frequency
v.Sort(new SortByValue());
// Traverse the list and insert elements
// in the list v
foreach (KeyValuePair<int, int> kvp in v)
{
for (int i = 0; i < kvp.Value; i++)
res.Add(kvp.Key);
}
return res;
}
// Driver program
public static void Main(string[] args)
{
int[] a = { 2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8 };
int n = a.Length;
List<int> res = sortByFreq(a, n);
// Print the elements of list
foreach (int i in res)
Console.Write(i + " ");
}
}
Output
8 8 8 2 2 5 5 -1 6 9999999
Time Complexity: O(n) + O(m Log m) where n is total number of elements and m is total number of distinct elementsAuxiliary Space: O(n)
This article is contributed by Aarti_Rathi and Ankur Singh and improved by Ankur Goel.
Simple way to sort by frequency.
The Approach:
Here In This approach we first we store the element by there frequency in vector_pair format(Using Mapping stl map) then sort it according to frequency then reverse it and apply bubble sort to make the condition true decreasing frequency if 2 numbers have the same frequency then print the one which came first. then print the vector.
C++
#include <bits/stdc++.h>
#include<iostream>
using namespace std;
//map all the number and sort by frequency.
void the_helper(int a[],vector<pair<int,int>>&res,int n){
map<int,int>mp;
for(int i=0;i<n;i++)mp[a[i]]++;
for(auto it:mp)res.push_back({it.second,it.first});
sort(res.begin(),res.end());
}
int main() {
int a[] = {2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8};
vector<pair<int,int>>res;
the_helper(a,res,10);
reverse(res.begin(),res.end());
for(int i=0;i<res.size();i++){
if(res[i].first==res[i+1].first){
for(int j=i;j<res.size();j++){
if(res[i].second>res[j].second&&res[i].first==res[j].first){
swap(res[i],res[j]);
}
}
}
}
for(int i=0;i<res.size();i++){
for(int j=0;j<res[i].first;j++)cout<<res[i].second<<" ";
// cout<<endl;
}
return 0;
}
Java
// Java program for the above approach
import java.util.*;
// pair class
class Pair{
int first;
int second;
public Pair(int first, int second){
this.first = first;
this.second = second;
}
}
public class Main{
// map all the number and sort by frequency
public static void the_helper(int[] a, List<Pair> res, int n){
// create a new map to store the frequency of each number in the array
Map<Integer, Integer> mp = new HashMap<>();
for(int i = 0; i < n; i++){
// check if the map already has the number,
// if yes, increase its count by 1, else add it to the map with count 1
if(mp.containsKey(a[i]))
mp.put(a[i], mp.get(a[i])+1);
else
mp.put(a[i], 1);
}
// loop through the map entries and add them to the result list as pairs
for(Map.Entry<Integer, Integer> entry : mp.entrySet()){
res.add(new Pair(entry.getValue(), entry.getKey()));
}
// sort the result list in ascending order of
// frequency using a lambda expression
res.sort((x, y) -> x.first - y.first);
}
// driver program
public static void main(String[] args) {
int[] a = {2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8};
List<Pair> res = new ArrayList<>();
the_helper(a, res, 10);
// reverse the result list to get it in descending order of frequency
Collections.reverse(res);
// loop through the result list and swap pairs with
// equal frequencies if the second element of the earlier
// pair is greater than the second element of the later pair
for(int i = 0; i < res.size()-1; i++){
if(res.get(i).first == res.get(i+1).first){
for(int j = i; j < res.size(); j++){
if(res.get(i).second > res.get(j).second && res.get(i).first == res.get(j).first){
Pair temp = res.get(j);
res.set(j, res.get(i));
res.set(i, temp);
}
}
}
}
System.out.println();
// loop through the result list and print each pair's
//second element the number of times indicated by its first element
for(Pair p : res){
for(int i = 0; i < p.first; i++){
System.out.print(p.second + " ");
}
}
}
}
// this code is contributed by bhardwajji
Python3
# python3 program for the above approach
import collections
# map all the number and sort by frequency
def the_helper(a, res, n):
mp = collections.defaultdict(int)
for i in range(n):
mp[a[i]] += 1
for key, val in mp.items():
res.append((val, key))
res.sort()
# main function
if __name__ == '__main__':
a = [2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8]
res = []
the_helper(a, res, len(a))
res.reverse()
for i in range(len(res) - 1):
if res[i][0] == res[i+1][0]:
for j in range(i+1, len(res)):
if res[i][0] == res[j][0] and res[i][1] > res[j][1]:
res[i], res[j] = res[j], res[i]
for i in range(len(res)):
for j in range(res[i][0]):
print(res[i][1], end=' ')
# print() # uncomment to print each frequency on a new line
C#
using System;
using System.Collections.Generic;
using System.Linq;
public class Program {
//map all the number and sort by frequency.
public static void the_helper(int[] a, List<Tuple<int,int>> res, int n) {
Dictionary<int,int> mp = new Dictionary<int,int>();
for (int i = 0; i < n; i++) {
if (mp.ContainsKey(a[i])) {
mp[a[i]]++;
} else {
mp[a[i]] = 1;
}
}
foreach (var it in mp) {
res.Add(new Tuple<int,int>(it.Value, it.Key));
}
res.Sort();
}
public static void Main() {
int[] a = { 2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8 };
List<Tuple<int,int>> res = new List<Tuple<int,int>>();
the_helper(a, res, 10);
res.Reverse();
for (int i = 0; i < res.Count; i++) {
if (i < res.Count - 1 && res[i].Item1 == res[i+1].Item1) {
for (int j = i; j < res.Count; j++) {
if (res[i].Item2 > res[j].Item2 && res[i].Item1 == res[j].Item1) {
var temp = res[i];
res[i] = res[j];
res[j] = temp;
}
}
}
}
for(int i=0;i<res.Count;i++){
for (int j = 0; j < res[i].Item1; j++) {
Console.Write(res[i].Item2 + " ");
}
}
}
}
Javascript
// JavaScript program for the above approach
// pair class
class pair{
constructor(first, second){
this.first = first;
this.second = second;
}
}
// map all the number and sort by frequency
function the_helper(a, res, n){
mp = new Map();
for(let i = 0; i<n; i++){
if(mp.has(a[i]))
mp.set(a[i], mp.get(a[i])+1);
else
mp.set(a[i], 1);
}
mp.forEach(function(value, key){
res.push(new pair(value, key));
})
res.sort(function(a, b){
return a.first - b.first;
});
}
// driver program
let a = [2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8];
let res = [];
the_helper(a, res, 10);
res.reverse();
for(let i = 0; i < res.length-1; i++){
if(res[i].first == res[i+1].first){
for(let j = i; j < res.length; j++){
if(res[i].second > res[j].second && res[i].first == res[j].first){
let temp = res[j];
res[j] = res[i];
res[i] = temp;
}
}
}
}
console.log("\n");
for(let i = 0; i < res.length; i++){
for(let j = 0; j < res[i].first; j++){
console.log(res[i].second + " ");
}
}
// this code is contributed by Yash Agarwal(yashagarwal2852002)
Output
8 8 8 2 2 5 5 -1 6 9999999
Time Complexity: O(n^2) I.e it take O(n) for getting the frequency sorted vector but for sorting in decreasing frequency if 2 numbers have the same frequency then print the one which came first we use bubble sort so it take O(n^2).Auxiliary Space: O(n),for vector.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)
|
https://www.geeksforgeeks.org/sort-elements-frequency-set-4-efficient-approach-using-hash/?ref=lbp
|
Pandas
|
Sort elements by frequency | Set 4 (Efficient approach using hash)
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Python | Pandas Series.var, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00982961897, -0.0181261767, -0.0113852229, 0.0102203982, 0.0177203678, -0.0089127887, -0.0134443333, 0.0161121581, -0.025280457, 0.0189528279, -0.00978452899, 0.0152554475, -0.00714676408, -0.0168335978, 0.0132038528, -4.88768492e-05, 0.00641780905, 0.0165329967, -0.0227103271, -0.0243335664, -0.0229658373, 0.0153832026, -0.0104458481, 0.0136622684, -0.0286471751, 0.0228606258, -0.00746239396, 0.00343435444, -0.0480959937, 0.00629005395, -0.00425724685, 0.0083566783, -0.0356812142, -0.030991856, -0.0146692777, 0.0238676369, 0.0275048967, 0.0339978561, 0.00646665646, 0.0171492267, 0.022980867, -0.00293272827, 0.00129633734, -0.000148068968, -0.0117609734, 0.0187123474, 0.00369174313, -0.00173972221, 0.00893533323, -0.0348094739, 0.0112649836, -0.0191632472, -0.00026396435, 0.0204708576, -0.0386571549, 0.00807862356, -0.0429857932, 0.0152704781, -0.0172995273, 0.00693634385, 0.0247844663, -0.0414226726, -0.0244538058, -0.0293385554, 0.0155560477, -0.00436621439, -0.0600598715, 0.0227854773, 0.0228155367, 0.0240029059, -0.0452703536, 0.0114904335, 0.0208466072, 0.0138877183, -0.0214027166, 0.00692131417, 0.048306413, 0.00134706357, -0.0263325553, 0.0640879124, -0.0395890139, 0.00668834895, 0.00714676408, -0.0158566479, 0.00696264626, 0.00733088143, -0.0223646369, -0.0571139902, 0.0401000343, 0.0470739529, -0.0361922346, 0.000589457748, 0.00933362823, 0.00358841196, -0.00736469869, 0.0511621125, 0.0344788134, 0.00290642586, -0.0263626166, 0.0665528327, -0.0176301878, -0.0293235257, 0.00909314863, -0.0255209357, 0.00423094444, -0.0146166729, -0.0148195773, 0.00677852891, 0.0193135478, 0.0192684568, 0.0250550061, -0.014789518, -0.0201852862, 0.0157364085, -0.00433991197, -0.0085144937, 0.0119713936, -0.0547091924, 0.00716179376, 0.039889615, 0.0279858559, 0.0266632158, 0.0068536792, 0.0572642908, -0.0470739529, 0.0364026539, 0.0156913176, 0.00482462905, -0.0182163566, -0.0308716148, -0.0166983269, -0.0157664679, 0.00825898349, -0.0305559859, 0.011512978, 0.0125049585, 0.0249798559, 0.0410920121, 0.00114791607, -0.015541018, 0.00937871821, -0.0481861718, -0.00408815918, 0.00146354607, 0.017179288, -0.00825898349, 0.00747366622, 0.0515528917, -0.0582562722, 0.0120540578, -0.041663155, -0.0290078949, 0.0300900564, 0.0172394067, -0.0297894552, -0.0135796033, -0.00394913182, -0.011204863, -0.0182764772, -0.0329758152, -0.00323144952, -0.0189377964, 0.00719936891, -0.0232213456, -0.0307814348, 0.0106036635, 0.00988973863, -0.00954404846, -0.0561821312, 0.0413926132, 0.0297293365, -0.00320326816, 0.0115956431, 0.0259117167, -0.030510895, 0.0140530476, 0.0218836758, 0.031923715, -0.012219388, -0.0309317354, 0.00776299369, -0.0124523528, 0.010761478, 0.00910066348, 0.0176001266, 0.00804104842, -0.00642908132, -0.0113701932, 0.0176752768, 0.00410694676, -0.0186672565, -0.0218686461, 0.038957756, 0.0412423126, 0.0201852862, -0.013992928, -0.0371842161, 0.00198959606, -0.028121125, 0.0353204943, -0.0249948855, -0.0385369137, -0.000302713539, 0.0162173677, 0.0333064757, -0.00449396949, -0.0200049262, -0.0206512176, 0.021522956, 0.0185620468, -0.0634867102, 0.041001834, -0.0566931516, -0.00334229576, 0.0252503958, 0.0275650155, -0.0209067278, 0.0525448732, -0.0114152832, 0.00355459447, 0.0137073584, 0.0139403231, 0.0360118747, -0.0140455328, -0.0390479341, -0.0578955524, -0.00357150333, 0.0292784348, -0.0149623631, -0.00191726408, 0.00900296867, -0.000782499264, -0.00969434902, -0.0214778669, 0.0449096337, -0.0214027166, -0.0544085912, 0.0194337871, -0.0120315133, 0.0192083362, 0.0263926759, 0.0216281675, -0.0183215681, -0.0140079577, 0.0141883176, 0.0130234929, -0.00705282623, -0.022935776, 0.0334267132, 0.0355309136, 0.0323144943, -0.0179157574, 0.0160971284, -0.00529807433, -0.0180810876, 0.0366431363, -0.0227403864, 0.00998743344, -0.00658689672, -0.0214628372, -0.0172694679, 0.0116783082, 0.00182990218, 0.0329156965, 0.0125725931, 0.00908563379, 0.038296435, -0.0263626166, 0.0264527965, -0.0277754366, 0.034629114, -0.013549543, -0.000592275872, -0.0634867102, 0.0368234962, -0.00319763203, -0.00606836146, -0.0352002531, 0.0192834865, 0.0202454068, 0.0131737934, 0.0110921385, 0.0481260531, 0.0282263365, -0.0191482175, -0.033516895, 0.0165029373, -0.0252053067, -0.0523344539, -0.035110075, -0.00606084662, -0.0220189467, -0.00483214436, -0.0206963066, 0.00152648415, 0.0161121581, -0.0203055274, -0.0132113677, -0.00982210319, -0.00128318602, -0.0168486275, -0.0202454068, 0.0155560477, -0.0200951062, -0.0313525759, -0.017089108, -0.013947838, -0.0327954553, -0.0331862345, 0.00123997487, 0.00312811835, -0.0251752455, -0.0347794145, -0.0483364724, -0.0204708576, -0.0234167371, 0.0407914147, 0.0115430383, -0.00589927426, -0.0197494179, 0.00223759096, -0.0453304723, -0.00988973863, 0.0506811514, -0.00325587322, -0.0294137057, -0.0351701938, 0.0111447433, 0.0228756573, -0.0370339155, -0.016427787, -0.0128957378, -0.057204172, 0.0117760031, 0.00470438926, -0.00301351445, -0.0386270955, 0.0424747728, -0.0139553528, 0.001167643, -0.00547467684, 0.0303155053, 0.00566630904, 0.00380071066, 0.0255660266, -0.0156462286, -0.0222894866, -0.00589927426, 0.0486671329, -0.0255359653, 0.0014203348, -0.0105435438, 0.0296090953, -0.00336296204, 0.045120053, -0.0198846869, -0.0183065366, -0.015495928, 0.0429557338, -0.00566630904, 0.0158867072, 0.0187123474, -0.0376050547, 0.00469311699, 0.0191482175, -0.00398294954, 0.0126402285, -0.0195389967, 0.00465178443, 0.00744736381, 0.00221692468, -0.0113551635, -0.0254908763, 0.0100250086, -0.0629456341, -0.0102203982, -0.0210570265, -0.0164428167, 0.0449697524, -0.00301915081, -0.0270389654, 0.0507112108, 0.0165630579, 0.00229395344, -0.0168035384, -0.00713549135, -0.0286622066, 0.0224698465, -0.0290529858, 0.0109568685, -0.0171943177, -0.0187123474, -0.0087549733, 0.00190129469, -0.000164508019, 0.00605708919, 0.0184267778, 0.00633514393, -0.00902551319, -0.0366130732, 0.0105585735, 0.0266632158, 0.0335770138, -0.00880006328, -0.0426551327, 0.0279858559, -0.0077179037, -0.00720688375, 0.0476751514, 0.00393410213, 0.0349297151, 0.0310219154, -0.0252954867, 0.0306762252, -0.00901799835, 0.000726606464, -0.0231311657, 0.0508615114, 0.0148270931, -0.0166382082, -0.00463675428, 0.00790577848, -0.0145640681, 0.0281812456, -0.0217333771, 0.00929605402, 0.00371992448, 0.0126853185, 0.0292634051, -0.0193736665, -0.0411220752, 0.0263325553, -0.0059856968, 0.0169538371, -0.0148421228, -0.0266331565, -0.00867230911, -0.000799408, -0.0187424067, -0.0560017712, 0.0237023067, 0.00343811209, -0.0118887285, 0.00281248824, -0.0234167371, 0.0104608787, -0.023025956, 0.0076690563, -0.0272794459, 0.00748869637, -0.0308415554, -0.0105059687, -0.0512823537, -0.0182163566, 0.0570839308, -0.0108516579, 0.0307513755, -0.0297443662, 0.0320138969, 0.0172544383, 0.00304733193, 0.00293460698, -0.0182614475, -0.00226577208, 0.0273245368, 0.00926599372, 0.0180810876, 0.000357197277, -0.0315028764, -0.0156913176, 0.00461796671, -0.0235219467, -0.00880757906, 0.0117158834, 0.0228305664, 0.00539576914, 0.0193135478, -0.0137223881, 0.00197832356, -0.0298195165, 0.0304808356, -0.0290078949, 0.0136998426, -0.0275499858, -0.00938623399, -0.00150206045, 0.0353806131, -0.00549346441, -0.0120465429, -7.0981514e-05, -0.0114754029, 0.0328856334, -0.0347493552, -0.00806359388, 0.00584291155, 0.0144889178, -0.0497492924, -0.0341481566, 0.030420715, 0.0490879714, 0.0375148728, -0.0376050547, -0.0391381159, 0.00724821631, -0.00940126367, -0.0454507135, -0.00170308666, 0.0302253254, 0.00223007589, -0.0261071064, 0.0147594577, 0.00393410213, 0.00608339161, 0.0249948855, 0.00145321293, -0.00383640686, -0.0201702565, -0.0101302182, -0.0304507762, 0.0166382082, 0.0184117481, 0.018111147, 0.00655683642, 0.0330659933, -0.0267083067, 0.0198245663, 0.0207564272, -0.00715427892, 0.0106487535, -0.0136096627, -0.0242884755, 0.00839425344, 0.00493359659, -0.00038819667, 0.0117233982, -0.0301652048, 0.0131587628, 0.0334868357, -0.0212824773, 0.0333064757, -0.00616229931, 0.00515528908, -0.038747333, 0.0214478076, -0.0340579748, 0.0207564272, 0.0110094734, 0.0101151885, 0.000406984153, -0.0168335978, 0.0209668465, 0.0598494522, 0.00306799822, 0.0108742034, -0.0169388074, 0.0342683941, -0.00271855085, -0.0342082754, -0.024528956, -0.00502001913, -0.0189227667, 0.0347794145, 0.0244237464, 0.0175700672, 0.0234167371, -0.0274748355, 0.00203844346, 0.0294137057, -0.0305710156, -0.000324319175, 0.0165029373, -0.0138501432, 0.0074999691, -0.0217934959, 0.00196892978, 0.031082036, -0.00194262725, -0.0164428167, -0.0227854773, -0.00500874687, -0.0244688354, 0.00318260211, 0.0225449968, -0.0227854773, -0.0133917276, -0.0199898966, -0.0246792566, -0.0240329672, -0.00261146203, 0.0209668465, -0.0202003177, 0.0480659343, 0.0147820031, 0.0119413333, -0.0317433551, -0.0101677934, -0.013414273, -0.00880757906, -0.0125425328, 0.00465554185, 0.0337273143, 0.0262273457, 0.0126402285, -0.0114303129, 0.000382090715, -0.00898042321, 0.0194337871, 0.0119939381, 0.00433615455, -0.000587579, -0.0703403875, 0.0013085492, 0.0176903065, 0.00819134898, 0.0139553528, 0.0174347982, 0.0149097582, -0.00989725348, -0.00409191707, -0.032585036, -0.00496365689, -0.0324948542, -0.0190430079, 0.0161271878, 0.0189678576, -0.000559867418, -0.0175700672, -0.035771396, -0.000332303869, -0.0338776149, -0.00537698157, -0.0168937184, -0.012001453, -0.0310219154, 0.00758263376, -0.00962671358, -0.000568791467, 0.0145114632, -0.00959665328, 0.0237023067, -0.0128205884, -0.00873994362, -0.0112424381, 0.0663724691, -0.00116294611, -0.012662773, -0.0442783721, -0.00570388418, -0.00677477149, 0.00574897416, -0.00263588596, 0.0184418075, 0.0290830452, 0.0112724984, -0.00455408916, -0.0179007277, 0.0116257034, -0.0107689938, -0.0209217574, 0.0326150954, -0.0352002531, -0.0026546733, 0.0342984535, -0.00354332197, 0.00454657432, 0.0117684882, 0.00225262088, -0.0120540578, 0.0467432924, -0.0128656784, -0.0209067278, -0.00171154097, -0.0183516275, 0.0329457559, 0.0139252925, -0.00135927543, -0.0338174962, 0.0481260531, 0.0130760977, 0.00331787206, -0.0152629623, -0.00496365689, 0.000499277725, -0.000904618, -0.0269788466, -0.015187813, -0.0195089374, 0.00658313883, 0.00398294954, -0.0183816869, -0.0414226726, 0.0017556916, 0.0563023724, 0.0261822566, -0.000699834258, -0.0095515633, 0.00465554185, 0.0283165164, -0.0133015476, -0.00787571911, 0.00552352425, -0.0269036964, -0.0374547541, -0.00599321164, -0.022800507, 0.030195266, 0.00550473668, 0.00696640415, -0.00292897085, -0.0256862659, 0.0100776134, 0.0014090623, -0.00810868386, 0.0100099789, -0.00566255162, -0.00453905948, -0.0234167371, -0.00805607904, -0.0224397872, -0.0201702565, 0.0103406385, 0.0146016432, 0.0053394069, -0.0327052735, 0.0361321159, -0.0142258927, -0.0152028427, 0.00189096155, -0.0104308184, -0.00426100427, 0.0183816869, 0.0061848443, -0.0129708881, 0.0062261764, -0.0314126946, 0.0138802025, 0.0132339131, 0.00338550704, -0.0200951062, -0.0118060634, 0.023597097, -0.0165029373, 0.0145415226, 0.0184267778, 0.00205723103, 0.016517967, 0.0178105477, 0.0223345775, 0.00245928345, 0.0197343864, -0.0222894866, 0.00552352425, 0.00651926175, -0.0337273143, 0.0169688668, -0.0122945383, -0.00498620188, -0.00803353358, 0.0177504271, 0.022229366, 0.0133766979, 0.0418735743, 0.00289139571, 0.0336371362, -0.0157063473, -0.030510895, -0.0408515334, 0.00910066348, 0.00542958686, -0.00656435173, 0.0210720561, 0.0129483435, -0.00500874687, 0.000406984153, -0.0178255774, -0.0262273457, 0.0196442064, 0.0190580375, 0.0101978537, -0.0102128834, -0.0223946963, 0.0488174334, 0.00435118424, 0.014346133, 0.0190279763, -0.0115505531, 0.000491293031, 0.00446015177, 0.0450599343, 0.0173746776, -0.00907811895, 0.0218836758, -0.000548125245, 0.0117985485, 0.0025701297, -0.0211622361, -0.0353806131, -0.0492683314, -0.00882260874, -0.0366130732, -0.0197343864, 0.000812089595, -0.00857461337, -0.00936368853, -0.00054389803, -0.0175099466, -0.0275048967, 0.0120540578, 0.0291581955, 0.014038018, -0.0129483435, -0.00409191707, 0.00397919212, 0.0114603732, 0.00128318602, 0.0201702565, -0.00984464865, -0.00444512162, 0.0091833286, 0.000794241438, -0.0184267778, 0.0197644476, 0.0408815928, -0.0164578483, -0.0159017369, 0.0235520061, -0.00744736381, -0.027008906, 0.0194488168, 0.0153005375, 0.0116933379, 0.00128882227, -0.0164578483, 0.0321641937, 0.0011742186, -0.0107314186, 0.0037349544, 0.0400098525, 0.0131587628, 0.0155560477, 0.0333365351, -0.00390404183, -0.00719561148, 0.0168335978, 0.0257163253, -0.010716388, -0.0480659343, 0.0218987074, 0.0064328392, 0.0159167685, 0.018817557, -0.0157664679, 0.00217934977, -0.00966428872, -0.0233265571, 0.0540779307, -0.0240930859, -0.0165329967, -0.00440754695, 0.00274109584, 0.00866479333, -0.00341180945, -0.018682288, 0.0268285461, 0.00704155397, 0.0207413975, -0.0382062532, -0.0395288952, -0.0567532703, -0.0256712362, 0.0039453744, -0.00312436069, 9.07671e-05, -0.00572267175, -0.0199898966, -0.0142709827, -0.00356023083, 0.0431661531, -0.00397543423, 0.012798043, 0.0263926759, -0.00639150664, -0.0379056558, -0.0366130732, -0.0133466376, -0.00125030789, 0.00412573433, 0.00127754977, 0.00231649843, -0.0336371362, 0.00135457853, 0.0185319874, -0.0191632472, -0.0244237464, 0.0159468278, -0.00544461654, 0.010626208, -0.00709415879, 0.0205610376, -0.0071016741, 0.00219813711, 0.000851543329, 0.0429557338, 0.00755257392, 0.0264828559, 0.0013217004, 0.00809365418, 0.0228606258, 0.00699646398, 0.0247844663, 0.0161572471, 0.0165931173, -0.0258966871, -0.0442783721, 0.0191482175, -0.00923593342, -0.0303756259, -0.00659441156, 0.015187813, -0.0119939381, 0.00747742411, 0.0146241877, 0.0179458167, 0.00397919212, 0.00974695385, -0.00111785613, -0.046713233, -0.0125350179, -0.00121273298, -0.0358315147, 0.00595187908, 0.0125650782, 0.00325775193, -0.0273545962, -0.0203957073, 0.0230409857, -0.0257764459, -0.015495928, -0.0420238748, -0.0183365978, 0.0137223881, 0.040069975, 0.0307664052, -0.0299998764, -0.0323746167, -0.0123321135, -0.00283127581, -0.0279107057, 0.0124824131, 0.0178556368, -0.0130084632, 0.0164428167, 0.013241428, -0.0217934959, 0.00308114965, -0.00934865884, -0.044188194, 0.00730833644, -0.0024198296, 0.0288575962, -0.00452778675, -0.0438575335, -0.00565503677, -0.011512978, -0.0218385868, -0.0208616368, -0.00910817832, -0.016292518, 4.73503642e-05, -0.0152704781, 0.0214177463, -0.00899545383, 0.0132038528, 0.00926599372, -0.038957756, 0.0272193253, -0.0108591737, -0.0350198932, -0.00852200855, 0.00998743344, -0.0179007277, 0.0221241564, 0.0126477433, -0.000787665835, 0.00976949837, -0.0223496072, 0.00519662164, -0.022139186, -0.0187424067, 0.0210419968, 0.00939374883, 0.0224698465, 0.0184718668, -0.0209367871, -0.0020328071, -0.00866479333, 0.0220790673, 0.00433615455, -0.0211922973, -0.0251752455, 0.00506886654, -0.000792832405, -0.0157514382, 0.00272042956, 0.0451501124, 0.0219888873, 0.0156161673, -0.0119263036, -0.0225299671, 0.00619611656, -0.00443009194, -0.0130911283, -0.0018139329, 0.00177447905, 0.0176903065, 0.0308415554, -0.00468935911, 0.000446907594, 0.0572642908, 0.00914575346, -0.0124673834, -0.0461721532, -0.0243185367, -0.000263729482, 0.0148421228, 0.00927350856, -0.00317132962, 0.00301351445, 0.00545964669, -0.00954404846, -0.0270840563, -0.00306236208, -0.00608339161, -0.00569636934, 0.0147744874, 0.00984464865, 0.00375374197, -0.0367333144, 0.00632011425, -0.0141281979, 0.035110075, 0.00209856336, 0.0146317026, 0.0103857284, 0.00506886654, -0.0342984535, -0.026212316, -0.00342496065, 0.00792080909, 0.0188776776, 0.000925753906, 0.0161873084, 0.0114002535, 0.0107915383, -0.0230109263, 0.00947641395, -0.0113777081, 0.00164108793, 0.0199898966, 0.0101903388, 0.00121273298, -0.0264227353, 0.00816880353, -0.00633138651, -0.00958913844, 0.0220640376, 0.0273395665, -0.00581285171, 0.0125425328, 0.0149698779, 0.0292934664, -0.00826649833, 0.009739439, 0.000139379743, 0.0154658677, 0.00253443327, 0.0162624568, -0.00231274101, -0.00611345144, -0.0180510264, 0.0174498279, -0.022319546, 0.00128882227, -0.00741730398, -0.0139628677, 6.73414324e-05, -0.000365181972, -0.00412573433, 0.00903302897, -0.053536851, 0.00101828238, 0.0120841181, 0.00139872916, 0.00617357157, -0.00456160447, -0.0250850655, 0.0113175884, 0.0805607885, -0.00318823825, 0.0218235571, -0.0156913176, -0.000716743, 0.0126477433, -0.0106337238, 0.000384439161, 0.0105736032, 0.00150863605, 0.00755633134, 0.00564752147, 0.00319387461, 0.00304733193, -0.00630884152, -0.010806568, 0.0120916329, -0.00383828557, 0.00297969696, -0.0117760031, -0.00783814397, 0.002335286, 0.0234618261, -0.00411070418, 0.00681234663, 0.024483867, 0.0111221988, -0.0157965273, -0.018907737, -0.00680483133, 0.0323445536, -0.0181261767, 0.00276739825, -0.013947838, 0.000903678592, 0.0186522268, 0.00786068849, -0.00429857941, -0.0345088765, 0.0265279468, -0.00674471166, -0.00100607052, -0.0229958966, 0.0202904977, -0.0106487535, 0.00255697826, 0.00236910349, 0.00397919212, 0.00724070147, 0.00612848159, -0.0218385868, -0.0103932433, -0.0433164537, -0.00607963419, -0.000643941457, 0.0117985485, 0.0145114632, -0.0119939381, 0.0153155681, -0.0085144937, -0.00360532082, -0.0148947276, 0.0266030952, -0.0138275977, 0.00766154146, -0.00753754377, -0.0464426912, -0.00967931841, 0.0152930226, 0.0106562683, -0.0227253567, 0.025986867, 0.0177654568, -0.0024442533, 0.0080861384, 0.00681986148, -0.0345088765, -0.0123245986, -0.0185319874, -0.022319546, -0.00850697886, 0.0147143677, -0.00736094126, 0.00402052421, -0.0083566783, -0.00793583877, -0.0127379233, -0.0101903388, -0.00864224881, 0.0118736979, 0.00227704458, 0.00698894914, -0.013549543, -0.00795086846, -0.0235069171, -0.0024555258, 0.0309617948, 0.00531686191, 0.00865727849, -0.00231274101, -0.0283465758, 0.00104458479, -0.0137374178, -0.0275199264, -0.0161873084, -0.017089108, -4.22425146e-05, -0.00614351174, 0.00103706983, 0.0171642583, 0.0246642269, 0.00912320893, 0.0143085578, -0.00770287402, 0.0223796666, 0.00974695385, -0.0118436385, -0.00340053695, -0.0221993066, 0.0229207464, -0.00413700705, 0.00242170831, 0.034448754, 0.000821013644, -0.0132940328, -0.0331261158, -0.00840176921, 0.00432863925, 0.00230146851, -0.0030529683, -0.0144588575, -0.000579594285, -0.00397167681, -0.00872491393, -0.0265129153, -0.010227913, 0.0128055578, 0.00962671358, -0.0176452175, 0.00191256718, 0.0292784348, 0.0305259246, -0.0356812142, -0.0196742676, 0.0255960859, -0.0157514382, -0.00167772349, 0.00128224667, 0.0241231471, -0.0105811181, -0.0240329672, -0.00118079421, -0.00129257981, -0.0249347668, 0.017795518, -0.0248746462, 0.0045428169, 0.00885266904, -0.0197343864, -0.00252691843, -0.0159017369, 0.0179458167, 0.0351401344, 0.0146692777, -0.0183065366, 0.0118361237, -0.000279229163, -0.0330659933, -0.0208466072, -0.000230029415, -0.0108817182, -0.0172544383, 0.0150600579, -0.00829655863, 0.0139102628, 0.0115355235, 0.0191632472, 0.00512147183, 0.0109117785, 0.0273696259, -0.032855574, 0.00948392879, 0.000964737963, 0.00379319559, -0.0443084352, 0.0169688668, -0.00490729418, 0.00226577208, 0.0179608464, 0.0129859177, -0.00256449333, -0.00500498945, -0.00676725665, 0.00964174327, 0.0108742034, 0.00312999706, -0.00789074879, 0.00187687099, -0.0202153474, 0.00327466079, -0.00533189159, -0.0132790031, -0.000769348, 0.0195239671, 0.00345877814, -0.0116407331, -0.021207327, -0.0212824773, -0.0110019585, 0.0014024867, -0.0136322081, 0.00887521356, -0.00653804885, -0.0114754029, 0.00227140845, -0.00309805828, -0.00348320208, 0.00185526535, -0.0107689938, -0.019614147, -0.000994798, 0.0165931173, 0.0077179037, 0.0060270289, -0.0103030633, -0.0248145256, -0.00873994362, 0.0114002535, -0.0127754984, -0.00538449688, -0.00977701321, 0.0195540264, 0.0202754661, 0.0152028427, 0.00263964338, 0.0109343231, 0.0263325553, -0.0149172731, -0.048306413, 0.00572267175, 0.0350198932, -0.013812568, -0.0195239671, 0.0117760031, 0.0209818762, 0.000105855805, -0.00677852891, 0.00605708919, -0.0249347668, 0.0278205257, -0.0180961173, -0.0200199578, 0.0218235571, -0.0135720884, 0.0117910337, 0.0242584161, -0.0059556365, -0.0137524484, -0.00864976365, -0.0273545962, 0.00551225152, 0.00651926175, -0.0107013583, 0.0363425352, -0.00790577848, 0.0118361237, -0.0107013583, -0.00669210637, 0.0156913176, -0.000895693956, 0.00238225469, 0.0248896759, -0.00792080909, 0.00943883881, -0.00148796977, -0.0305409562, 0.00402052421, 0.0198395979, 0.0129483435, -0.0102354288, -0.00801098906, 0.0395288952, -0.00772541901, 0.0250850655, 0.00488099176, -0.000657092722, 0.00666580396, 0.0126026534, 0.011422798, -0.0148646683, -0.00759014906, -0.0182915069, -0.0127379233, -0.00760142133, 0.0258215368, 0.0345088765, 0.00581285171, 0.00377816567, -0.0206662472, 0.000100571822, -0.0311120953, 0.0151577527, -0.0119338185, 0.0221241564, -0.00855206884, -0.0257463865, 0.0285720266, 0.00435869955, 0.0164728779, 0.0312924571, 0.00899545383, -0.0336070769, -0.00554231182, 0.00722942874, -0.012707863, 0.0125500485, 0.0149172731, -0.020636186, 0.0125425328, 0.0105285132, -0.00695513142, -0.0208466072, -0.00570388418, 0.00629381137, -0.0140305031, -0.00724445889, -0.0306611955, -2.89004547e-05, -0.037815474, -0.0122870235, 0.0131587628, -0.0014513341, 0.00631259894, 0.00558364438, 0.0142784975, -0.0197494179, -0.00973192323, -0.00665453169, 0.0342082754, 0.00831158832, -0.00577903399, 0.0321641937, -0.00129539799, -0.00916829892, 0.010716388, -0.027805496, -0.011558068, 0.0299848448, 0.0175400078, 0.0304658059, -0.0249197371, -0.0216281675, -0.0355309136, 0.00285006338, 0.0404006355, 0.00255322084, 0.0227554161, -0.0156462286, 0.00495989947, -0.00269600586, -0.0139177777, -0.00293836463, 0.00277679204, -0.00382137694, 0.0142409233, -0.00126815611, -0.0149172731, 0.00312811835, 0.0260620154, 0.0204558261, 0.000841210189, -0.0261521954, -0.0140755931, -0.037635114, -0.00310369465, -0.00165236043, -0.00955907814, -0.00401300937, -0.0145715829, -0.0270690266, -0.0256261453, 0.00724070147, -0.000977889285, -0.0129784029, 0.00846940372, 0.00488850661, -0.0051590465, 0.0281812456, 0.00500123156, -0.016608147, 0.00117233978, 0.0323144943, 0.0365830138, 0.040821474, 0.0208766665, 0.0173746776, -0.000761363306, -0.0038852545, 0.0204558261, -0.0227554161, 0.00521165179, 0.0272794459, 0.00438124454, 0.010716388, -0.0133691831, 0.00566630904, -0.0043436694, -0.0356511548, 0.0156011377, -0.0305259246, 0.017179288, 0.00253631221, -0.0119864233, 0.00172187411, 0.0165780876, 0.0410920121, 0.0104759084, 0.0295940656, -0.00271479343, -0.00741354655, -0.00475699408, -0.0468334742, -0.0177504271, -0.0350198932, 0.0284367558, -0.0199748669, 0.00739100156, 0.0142634679, -0.0052379542, -0.00486220419, 0.006154784, 0.00794335362, -0.00949144363, -0.00792080909, 0.0111973481, -0.00284818467, 0.0345689952, -0.002679097, 0.00684992131, 0.012399748, 0.00720312633, 0.0138351126, -0.0101527637, -0.00995737314, -0.00376877189, -0.0179007277, 0.0287072957, -0.0109192934, -0.00252503972, 0.0164428167, -0.00810868386, 0.0235369764, 0.0143386181, -0.0166532379, -0.00214365334, 0.0228756573, -0.0242433865, 0.0238526072, 0.018997917, -0.0127679827, -0.0187874977, -0.0138351126, -0.00163545168, 0.00161572476, 0.0152629623, -0.00952901877, -0.000175310837, 0.00368047063, -0.00761269405, 0.00926599372, 0.000922466104, -0.0042422167, 0.00453530205, -0.0137374178, 0.00103800918, 0.00420088461, -0.000181651616, -0.00272418698, -0.0180059373, 0.0130009484, -0.0013395485, 0.0229207464, -0.0155710774, 0.011204863, -0.00215492584, 0.0387773961, -0.00482838694, 0.0070716138, 0.0152253881, 0.0288425665, 0.00527928676, -0.00213238085, -0.0200650468, 0.00678604422, 0.00930356886, 0.00599321164, -0.000876436767, 0.0117835179, 0.0138275977, -0.0057076416, 0.0182614475, -0.0112198936, 0.010806568, 0.00286133587, 0.0255509969, 0.00739851641, 0.00123058108, 0.00659065414, -0.000693728332, -0.00979955867, 0.00378004438, -0.0401902124, 0.0093110837, -0.00423470186, 0.0105510587, -0.0132639734, -0.00293460698, -0.0166983269, 0.0157063473, 0.0180059373, 0.00608339161, -0.011956363, 0.0204708576, -0.00174817664, 0.0183516275, 0.020636186, 0.0133842127, 0.0159768872, 0.0115505531, -0.0224397872, 0.00645162631, 0.0217784662, -0.00209104852, -0.0050388067, -0.00666204654, -0.0014964242, 0.00982961897, 0.00671465136, 0.0209818762, -0.017314557, -0.000601199921, 0.00703403912, -0.0145565532, 0.00910066348, -0.0081161987, 0.000146072794, 0.0296090953, -0.00377628696, 0.006951374, 0.00805607904, 0.0160520375, -0.00789074879, -0.0142484382, 5.99145023e-05, 0.00539952656, 0.000866103626, -0.0055385544, 0.00985216349, 0.0235369764, 0.0184418075, 0.00102391862, -0.00925847888, 0.00717682391, 0.00367859192, 0.00748493895, -0.004272277, -0.000430468528, 0.0201251674, -0.00453154417, -0.0140455328, 0.00459542172, 0.00276176212, -0.00157063478, 0.0128882229, 0.0114303129, 0.0059556365, -0.000729894266, 0.015721377, -0.000802695809, -0.000745394, 0.00564376405, -0.00269412715, -0.00378943817, -0.000190810519, 0.00526801404, 0.00214928971, 0.0200199578, 0.0106788138, -0.00816128869, 0.0109343231, -0.00922841858, 0.00801098906, 0.000706879597, 0.00248182844, -0.0259267464, -0.0244087167, -0.0238976963, -0.0108817182, -0.0158416182, 0.00518534938, -0.00462923944, -0.000317039026, 0.0322243161, -0.00444887951, -0.0182313882, -0.0319537744, 0.0171642583, 0.0104984539, -0.0278205257, -0.0118286079, -0.0246341657, -0.00726700388, 0.00104458479, -0.00268849079, 0.00638399133, -0.0032408433, -0.00909314863, 0.0108215986, -0.00181675097, -0.0284066964, -0.0114754029, 0.0014447585, -0.00187217409, -0.0242283568, 0.0223496072, 0.00904805865, -0.0206662472, -0.0151276924, -0.00342871831, 0.000993858557, -0.00666204654, 0.00896539353, -0.00954404846, -0.00556861423, -5.32508129e-05, -0.00547843426, -0.00349259563, -0.015405748, -0.00678604422, 0.0105059687, 0.0243636258, -0.0106938435, 0.00393410213, 0.00279182219, -0.0115956431, -0.00979204383, -0.00643659662, -0.0295489747, -0.0161422174, 0.0149623631, 0.00950647332, 0.00769160129, 0.00928853825, -0.00512898667, 0.015541018, -0.0110846236, -0.00247431337, 0.0124298083, 0.000175663095, 0.000724727695, -0.00951398816, 0.00561746163, -0.00162511854, 0.0172694679, 0.0147744874, -0.000270305114, 0.0315329358, 0.0213275664, -0.00943883881, -0.0164578483, 0.0105510587, -0.0296842456, -0.0263626166, 0.0137975384, -0.0011920667, 0.00794335362, 0.0342383347, -0.00457663415, -0.00795086846, 0.0292333458, 0.0059856968, -0.0233716462, 0.0224097259, 0.0119638778, -0.00493735448, -0.0314728171, 0.0083867386, -0.0104533639, 0.0155259874, 0.0148120625, 0.0112875281, -0.00682737632, 0.0142334076, -0.00675598392, -0.00162230036, 0.00509892683, 0.00234467955, 0.0114754029, -0.0191933066, 0.0131136728, 0.0198245663, 0.0116482479, 0.00978452899, -0.00951398816, -0.0153230829, -0.00722942874, -0.00601951405, 0.011911273, -0.0120615736, 0.00855958369, 0.020500917, 0.00842431374, -0.00159693731, -0.00765778404, -0.00205535209, 0.000181299343, -0.00151802972, 0.0130986432, 0.0342984535, 0.0168185681, 0.00294024334, -0.00907811895, -0.00399046438, 0.00243861717, -0.0116707934, 0.00629381137, -0.00807110872, -0.023912726, -0.000988222309, -0.00703779655, -0.0167283881, 0.0182163566, 0.00966428872, 0.00216995599, -1.93305732e-05, 0.0190279763, 0.0142033482, 0.00845437404, -0.00790577848, -0.0128656784, 0.013196338, -0.0201251674, -0.015232903, -0.00361847202, -0.0161271878, 0.00664701639, 0.0166532379, -0.0136021478, -0.0157364085, 0.0458414927, -0.000202435287, -0.0168335978, 0.0096116839, 0.000535913336, 0.0156612583, 0.0166983269, -0.0148496376, 0.00540328398, -0.0033253869, -0.00691379886, -5.20472386e-05, 0.0110470485, -0.0212674476, -0.0179157574, 0.000442445569, -0.00707912911, -0.0194488168, 0.0020328071, -0.0066733188, 0.00383264944, 0.0145340078, -0.00888272841, 0.0189828873, -0.00324835838, -0.0117158834, 0.0315930545, -0.0118887285, -0.00245364709, -0.00268285465, -0.0153756877, 0.00734215369, 0.0106637832, -0.00356398826, 0.0100625837, -0.00487347692, -0.00941629335, 0.0101978537, 0.00736469869, 0.0161873084, 0.0265129153, 0.015450838, 0.0238075163, 0.0075187562, 0.00515528908, 0.0179608464, 0.00169087469, 0.0104308184, 0.013414273, 0.0155710774, -0.00141188037, -0.00254758471, -0.023116136, -0.00496365689, -0.0152704781, 0.00202904968, 0.00897290837, -0.00884515326, 0.00232401351, -0.00316945068, -0.00984464865, -0.00661319913, 0.000725667051, -0.00420464203, 3.46027537e-06, -0.00388901192, -0.00528680161, -0.00946138334, 0.009739439, 0.0171341971, -0.00587297184, -0.00360719953, 0.00485844677, -0.00364477444, -0.0101227034, 0.00462548202, -0.022094097, -0.00379131688, 0.000115190844, -0.00347756571, -0.00594812166, -0.00601951405, -0.00426851958, -0.0230710469, -0.0182313882, -0.00904805865, 0.015721377, 0.00648920145, -0.00952901877, -0.0041445219, 0.0152028427, 0.0477352738, 0.0249798559, 0.0122344177, -0.0277303457, -8.61582885e-06, -0.00716555165, 0.00104364543, 0.0141883176, 0.0137223881, -0.00468560169, 0.0234317668, 0.0153756877, -0.00944635365, -0.0133616682, 0.028602086, 0.0166382082, 0.0201552268, -0.00233904342, -0.00283879088, -0.00416706689, -0.0169237778, 0.00126064103, 0.00994234346, -0.0229658373, -0.00538073899, 0.0107990531, -0.015586108, -0.014654248, -0.00964925811, -0.0087850336, 0.00749245379, -0.00982961897, -0.00357713946, -0.0115280086, -0.00324272201, 0.00886769872, -0.0388976336, 0.00134048797, -0.00939374883, -0.0149398176, 0.029714305, 0.0271592066, 0.00468935911, -0.0165480282, 0.00225449959, -0.0060270289, 0.010318093, 0.00377440825, 0.021387687, -0.011467888, 0.00294963713, 0.0201251674, 0.0066019264, 0.0080185039, 0.0263626166, 0.0117309131, 0.0114979483, 0.0104458481, 0.0048396592, -0.00517031923, 0.0231912863, -0.00979955867, -0.0199898966, 0.00266406708, -0.00559491664, -0.00047720244, -0.00225825724, -0.0275800452, -0.00812371355, 0.0169688668, -0.00591806183, 0.014391223, 0.00940877851, 0.00609090645, -0.0306161046, -0.00736469869, 0.0142935282, -0.0129934335, -0.017314557, -0.00151615101, 0.0173446182, -0.000683395192, 0.0163977277, -0.0118586682, 0.0195840877, 0.00542207155, -0.00647041388, 0.00112724979, 0.00419712672, 0.00678604422, -0.00974695385, 0.00361659331, 0.00893533323, 0.00578279141, 0.00253255456, 0.0084468592, 0.0170440171, 0.00717306649, 0.0194488168, -0.0317433551, 0.00171435915, 0.0277604051, 0.0144814029, 0.0123020532, 0.00527552934, -0.0190279763, 0.00771038886, -0.00859715883, -0.0126327127, 0.00659816898, 0.0275048967, 0.00144663732, 0.000250343408, -0.012444838, -0.0301201157, -0.00437748665, -0.000415203685, 0.0119187878, -0.00636144634, 0.00497117173, -0.0199147463, 0.0182614475, 0.00119394541, 0.0156011377, 0.0259117167, -0.0121292081, 0.00863473397, 0.00632011425, -0.0028538208, -0.0064027789, -0.0161873084, -0.0277453754, -0.00498244446, -0.00229207473, 0.0129182832, -0.0350198932, -0.00213425979, -0.00950647332, 0.0247393772, -0.00380071066, 0.00464802701, -0.000574897393, -0.00661319913, -0.00229583215, 0.00972440839, -0.00504632154, 0.00731209386, 0.00666580396, 0.00064863835, -0.0134668779, 0.00601199921, -0.0102654882, 0.00522668194, 0.00795086846, -0.00591054652, -0.0179608464, 0.00999494828, -0.0104759084, 0.0296992753, 0.0185770765, 0.0166983269, 0.0109944437, -0.00205159467, 0.00601575663, 0.0351401344, -0.000631259929, -0.0106788138, 0.0114303129, 0.0168185681, -0.0162173677, 0.0116332183, -0.0017622672, 0.00261146203, 0.00932611339, 0.0110320188, 0.000788135512, 0.00753754377, 0.0397092551, 0.0273696259, 0.0100400383, 0.00665453169, -0.00301539339, 0.031082036, -0.0019971109, -0.0221091267, -0.00167114788, 0.00331411441, -0.0183065366, -0.00509516941, -0.0206512176, -0.0113701932, 8.58647309e-06, 0.0156011377, -0.000469922263, -0.0037462269, 0.0107464483, 0.0304808356, -0.000487065874, -0.0087850336, 0.00152366597, 0.00955907814, 0.015187813, -0.00743609155, -0.0239427872, -0.0161422174, -0.00747366622, 0.00934865884, 0.0174197666, 0.0128130727, 0.0145790977, -0.0250850655, -0.0132714882, 0.0176001266, -0.018682288, 0.00979955867, 0.0100024631, -0.00372556061, 0.00266406708, 0.00887521356, -0.00995737314, -0.0115204928, -0.00597818149, -0.016292518, 0.00769535871, 0.0204407964, -0.0133090634, 0.0042234296, -0.0121742981, -0.0178105477, 0.0235219467, -0.00353768561, 0.000447142433, -0.00228643836, 0.0146617629, -0.0131211877, 0.0196892973, 0.0223345775, -0.00181675097, 0.0092133889, 0.00737972884, -0.00789074879, -0.00360719953, -0.00745487912, -0.0134743927, 0.00158472534, -0.00239164848, -0.0105660884, -0.00263400702, 0.0131662777, -0.00753378635, -0.0110470485, -0.00596690923, -0.0103782136, -0.0136848129, -0.012798043, 0.00678604422, 0.0104458481, 0.0457212515, 0.0221241564, -0.0190730672, -0.00468184426, -0.003686107, 0.00883012358, -0.0144062527, 0.0041219769, -0.00601199921, -0.00796589907, 0.00716179376, 0.000585700211, 0.00417082431, -0.016202338, -0.0087549733, 0.00698894914, 0.0164728779, -0.00967931841, 0.0208015162, 0.0168035384, -0.00430609426, -0.0276852567, 0.0118060634, -0.00246116216, -0.00208916957, 0.0205159467, -0.0148421228, 0.0225900859, 0.000526519609, -0.0122043584, -0.0138952332, 0.009341144, 0.0219287667, 0.0064328392, -0.0114603732, -0.00865727849, 0.033035934, 0.00916078407, -0.00753378635, 0.0102429437, -0.00598193891, -0.00276364083, -0.00385143701, 0.00976949837, -0.00262273452, 0.00428730669, -0.00176414603, 0.00790577848, -0.00719185406, 0.0284066964, 0.0163075477, 0.0061848443, -0.0112800132, -0.00495238416, 0.0103105782, -0.0051402594, -0.019704327, -0.00776299369, 0.00534316432, -0.0246642269, -4.85832934e-05, 0.012617683, -0.0167885069, -0.014744428, 0.0233265571, 0.0138351126, 0.0175249781, 0.00117985485, -0.00131230673, 0.0130385235, -0.00502377655, -0.00884515326, -9.7166585e-06, 0.0148120625, -0.0308716148, -0.00211547222, 0.0259267464, -0.015586108, 0.0221542176, -0.00231086207, 0.000509610865, 0.0111297136, 0.00741354655, -0.00564376405, 0.0105510587, -0.00482087163, 0.00988222379, 0.0099498583, -0.00594436424, -0.00494486932, 0.0181562379, -0.0127754984, 0.00537322415, -0.00156969542, -0.010716388, -0.00726700388, 0.00888272841, -0.00433991197, -0.014834608, -0.0200951062, 0.0130535532, -0.0030529683, -0.0148045477, -0.00437372923, -0.0159919169, 0.0164728779, -0.00401676679, -0.0070716138, -0.00210795715, 0.00546340412, -0.000321266212, -0.00236534583, 0.0103932433, -0.00555358408, 0.00417082431, 0.00847691856, 0.0203806777, 0.00889775902, -0.0087850336, -0.00134612422, 0.0234918874, -0.00308678579, -0.00189377973, 0.0145039475, -0.0267684255, -0.00630132668, 0.00504256412, 0.00293648592, -0.012444838, 0.00520789437, -0.022890687, -0.0261071064, 0.0214628372, -0.00456536189, -0.00668834895, -0.00206286716, -0.0219738577, 0.00221128832, 0.00361095695, 0.0187874977, 0.0161121581, 0.0383565538, -0.0141507424, 0.0034869595, -0.0045127566, -0.0171191674, 0.00646665646, -0.0117534585, 0.0052379542, 0.0117008537, -0.00688749645, 0.0171943177, -0.00603830162, -0.00481711421, -0.0124899279, -0.0103406385, 0.0147369131, 0.00925096404, -0.00694385916, 0.0202153474, 0.0254457854, 0.00286885072, -0.0148646683, -0.0231762566, -0.0174498279, 0.00215116842, -0.0113175884, 0.00232777093, -0.0154808974, -0.0285269357, 0.00159224041, 0.0218686461, -0.00582036655, -0.0178406071, -0.00681986148, 0.0222143363, -0.000794711115, 0.0159618575, 7.85258635e-06, -0.00903302897, 0.00132263976, 0.0102579733, 0.0127679827, 0.0120916329, -0.00536195189, 0.00515528908, -0.00979204383, 0.0319838338, -0.0107765086, -0.0132639734, -0.00497868657, 0.00967180356, -0.00972440839, 0.0104984539, 0.00285569951, 0.00156499853, 0.007747964, -0.0177504271, -0.013549543, 0.0294137057, -0.00321829831, -0.0140831079, 0.0080185039, -0.016202338, 0.00644411147, -0.00667707669, -0.00289703207, -0.0101527637, -0.0136848129, 0.0119338185, 0.00520413695, -0.022229366, -0.00600824179, 0.00382701308, 0.034629114, -0.0177654568, 0.00125030789, -0.0354707949, -0.00331599335, -0.0127679827, 0.00675974134, 0.015405748, -0.00395288924, -0.022139186, -0.0118887285, -0.00943883881, 0.0109794131, 0.0277303457, -0.00853703916, -0.0160069484, 0.000863285502, -0.0174498279, -0.00976949837, 0.00597066665, 0.00978452899, 0.0245590173, -0.0221692473, -0.0106562683, 0.00239916332, -0.015631197, -0.000426945888, 0.0201101378, -0.00417833915, -0.0159317981, -0.00745863654, 0.00312436069, -0.0113476487, -0.0210570265, 0.0275800452, 0.00205910974, -0.0217784662, 0.0165029373, 0.0243035071, -0.002866972, 0.00720312633, 0.024709316, -0.0036504108, 0.0147068528, 0.00552352425, 0.0221542176, -0.0191031266, -0.00831158832, -0.00803353358, 0.0026678245, 0.0107990531, -0.00924344826, 0.0153155681, -0.0107464483, -0.0334267132, -0.019478878, -0.00385143701, 0.0212373864, 0.00608714903, -0.00322205573, -0.0136021478, -0.0275048967, -0.000376924174, -0.00139591109, -0.0145715829, 0.0032408433, -0.0122719929, -0.0150826024, 0.0271742363, 0.00865727849, -0.00103049423, -0.0081161987, 0.0101677934, 0.000198090667, 0.00764275389, 0.0176301878, -0.00597066665, -0.00936368853, -0.0205610376, -0.0115881283, -0.0749095082, 0.0115430383, 0.0358014554, 0.0336371362, -0.00421591429, 0.0123471431, 0.00591430394, -0.0445789732, -0.00756384619, 0.00619987398, -0.00933362823, 0.012843133, 0.00810868386, 0.015811557, 0.00745863654, 0.00716555165, 0.0529356524, 0.00659816898, 0.0099498583, 0.00639902148, 0.0095515633, 0.00479456922, 0.0133842127, -0.022935776, 0.0146317026, -0.00135551789, -0.0237173364, 0.00103613047, -0.0120916329, -0.0113251032, -0.00462172413, 0.0134067582, 0.0337874368, -0.00828904379, -0.00580909429, -0.0135420281, -0.0346591733, -0.0302704163, 0.0112649836, -0.0374246947, -0.0087850336, -0.00249873707, -0.00682737632, -0.0198546275, -0.0102429437, 0.0110771088, 0.00316005712, -0.000931390154, -0.00474947924, 0.00255697826, -0.00612848159, 0.0232213456, -0.0269638151, -0.0123621728, 0.00833413377, -0.0124222934, 0.00466681411, -0.0160670672, 0.0345689952, 0.0165630579, -0.0154207777, -0.0218836758, -0.0159317981, 0.00551600941, 0.0129483435, 0.0219437964, -0.00645162631, 0.0062261764, 0.00252691843, -0.0087549733, -0.0182614475, -0.00105116051, 0.0139778983, -0.00736094126, 0.00992731377, 0.0176602472, -0.00256073591, -0.0146016432, -0.00863473397, -0.0193736665, 0.0269036964, -0.00165329978, -0.0030529683, -0.00264527951, 0.0114528583, -0.000732712389, -0.00448269676, 0.00179796352, -0.00341180945, 0.00526049919, 0.00837170891, -0.00158566481, 0.0117910337, 0.0103932433, 0.00248558586, -0.00191726408, -0.0146843074, -0.0057076416, -0.0236271564, 0.0183365978, 0.0150826024, 0.0124147786, -0.00666204654, -0.00792832393, 0.0449096337, -0.0103857284, -0.0130685829, 0.0295640063, -0.00480584195, 0.0117609734, -0.00469311699, 0.00573018659, -0.0133917276, -0.0129859177, 0.027099086, 0.00883763842, 0.00147387921, -0.000445498532, -0.00809365418, 0.00101828238, 0.0080485642, -0.0121517535, -0.0137148732, 0.000796120206, 0.00641029421, -0.0114303129, -0.00155748357, 0.0026434008, -0.0179608464, -0.00464802701, 0.00165329978, 0.0143987378, 0.000336765894, -0.0191933066, 0.00462923944, -0.0260319561, -0.0121216932, 0.0250850655, 0.00553479651, 0.000753378612, -0.00618860172, -0.0109869288, -0.0049110516, -0.0211922973, -0.0132113677, 0.012707863, -0.00449772691, 0.00586169912, 0.000290736527, -0.016608147, -0.0161873084, -0.0135796033, -0.00592557667, 0.0165780876, -0.0172093473, 0.00110376545, 0.0108366283, -0.00971689355, 0.0288876556, -0.0122118732, 0.00828904379, -0.00113288604, -0.0157814976, -0.000576776161, -0.0142484382, 0.0059856968, -0.000881133601, -0.0174648575, 0.0143987378, -0.0157814976, 0.0231912863, 0.00396791939, 0.0111221988, -0.00620738929, -0.00973192323, -0.00352641311, -0.00826649833, -0.013992928, -0.0261822566, 0.00942380819, 0.00681234663, -0.00524171162, -0.013106158, 0.0167885069, 0.0184568372, 0.00914575346, 0.00282188202, -0.0231612269, 0.00478329696, -0.00126815611, 0.0188476164, -0.0037462269, -0.00173220725, 0.0040731295, -0.0066319867, 0.0172694679, -0.00690628402, 0.00300224195, -0.00941629335, 0.00209480594, -0.0108892331, -0.00972440839, 0.00118643045, 0.00421215687, -0.00866479333, -0.00388149684, -0.00597066665, -0.00332162948, -0.00834164862, -0.0148045477, -0.0129483435, -0.0123621728, -0.0018252054, -0.00429106457, -0.00184023532, -0.0178406071, -0.0236421861, -0.00130667049, -0.0105059687, -0.0105660884, 0.0146918232, -0.0110921385, 0.0343886353, -0.00860467367, 0.0204558261, -0.00679731648, 0.001433486, 0.0159919169, -0.00677477149, 0.0289026853, -0.0168636572, -0.00348320208, -0.00117609731, -0.0183967166, -0.000455127127, 0.012219388, -0.00414827932, 0.0248896759, 0.00940126367, 0.0108441431, 0.00825146865, 0.0081161987, -0.0189828873, 0.00147481856, 0.00328593329, 0.0217484068, 0.0320138969, -0.0109568685, 0.00988973863, -0.00858964399, -0.0177504271, 0.00472693425, -0.00868733879, 0.0110395337, 0.00293836463, -0.00172281347, -0.0163225774, 0.0211171471, 0.0147143677, 0.00889024325, -0.0103256088, -0.00390028441, -0.011467888, 0.0138877183, -0.000506323064, -0.00552728167, 0.00792080909, -0.0176301878, -0.00436997181, -0.00661695655, 0.00385143701, -0.00221880339, -0.022935776, 0.0026434008, 0.0168035384, -0.014301043, -0.000625623681, -0.0176752768, -0.00720312633, -0.0165780876, -0.010273003, -0.0330659933, -0.0126327127, -0.00233716471, -0.00997240376, -0.0152404178, -0.00604581647, -0.0110921385, 0.00480208406, -0.00250625215, 0.0363425352, -0.010227913, -0.00550097926, -0.00157908909, -0.0404306948, 0.00448269676, 0.00237286091, 0.00227892352, 0.0123020532, -0.020591097, 0.00558364438, -0.000826180214, 0.00378943817, -0.00123058108, -0.0213576276, -0.0128882229, -0.0189528279, -0.0137749929, 0.00232964964, -0.00331035699, -0.0240179356, 0.0208766665, 0.00379695324, 0.000136091927, -0.00450524176, -0.00133860915, 0.010227913, -0.014391223, -0.00778553868, -0.0113401329, -0.00575273158, 0.0337273143, 0.00755257392, 0.00472317683, -0.00293084956, -0.00126627728, 0.00175099471, 0.00626375154, 0.00535067916, 0.0106938435, -0.00216995599, 0.0017134198, -0.0157364085, 0.0106036635, -0.00171905605, 0.0155710774, -0.0160971284, -0.033035934, 0.00403555436, -0.00820637867, -0.00660568383, 0.0139252925, -0.015541018, -0.0106637832, 0.00570388418, -0.018111147, -0.00397167681, 0.00077451457, 0.0226201471, -0.011866183, -0.00737972884, 0.0119187878, 0.0133090634, -0.0011159773, 0.0183666572, -0.018201327, -0.0149548482, -0.0107765086, 0.0261972863, 0.0102203982, 0.0080485642, -0.031923715, -0.021297507, -0.0179909077, -0.0160069484, 0.00692882901, -0.0201401971, -0.00712797651, -0.0108140837, -0.0087850336, 0.0117083685, -0.0120540578, 0.0135269975, 0.0829655901, 0.0261371657, 0.00858964399, -0.027008906, 0.00562497647, -0.0245139264, -0.019614147, 0.0455108322, 0.00010703002, 0.00303605944, 0.000343811203, -0.0220790673, -0.00469311699, -0.00323708588, 0.00106337236, 0.0104984539, 0.00158942223, 0.0108215986, 0.00555358408, 0.00467808684, -0.0221091267, 0.00190880976, 0.012707863, -0.0124222934, 0.013857658, 0.0114754029, 0.00412573433, -0.0150450282, -0.0333365351, 0.0212524161, -0.00944635365, 0.0121893277, 0.0234017074, 0.00656810915, -0.0309317354, -0.000112607559, -0.0111297136, -0.0132339131, 0.011204863, -0.0367333144, -0.000175310837, 0.0244988967, 0.0111297136, 0.0124373231, 0.00285757822, -0.00393034425, -0.00379131688, 0.00686870888, 0.00710918894, 0.000150534819, -0.0236572158, 0.00540704187, 0.00324460072, -0.0241982955, -0.000995737384, 0.00932611339, 0.0121893277, -0.00366731943, 0.0230409857, 0.0138050532, -0.0129784029, -0.0143085578, -0.0162774883, 0.00965677388, 0.00473444909, -0.00522668194, -0.00819134898, -0.0028425483, 0.00190317351, -0.00192947593, -0.00452778675, -0.0111973481, -0.000101980884, 0.00912320893, -0.0126928333, -0.00633138651, 0.0240479968, -0.0102805188, 0.0131362183, -0.0119789084, -0.0160820968, 0.0200500172, -0.0250399765, -0.0173897073, -0.000495050568, 0.00284630572, -0.0157965273, -0.0227704458, 0.00840176921, -0.00902551319, -0.00573018659, 0.0287523866, -0.013902748, 0.0208165478, 0.00664325897, -0.0122043584, -0.0202454068, 0.0179608464, 0.00219437969, -0.00486220419, 0.0272493865, 0.0126702879, -0.00705658412, 0.00911569409, -0.0170590468, 0.00896539353, -0.00396791939, 0.00964925811, -0.00718809664, -0.00170120783, 0.0224698465, -0.00507262442, 0.00576776173, 0.0118962433, 0.000894284865, 0.0107689938, -0.00347380829, -0.00867230911, 0.00499747414, -0.00542207155, 0.0132038528, -0.00583163928, -0.00311872456, -0.00565127935, 0.0112875281, 0.00645538419, 0.0114829186, -0.00344938459, 0.0248295572, -0.00376689318, 0.00858212914, -0.0145715829, 0.00480584195, -5.01391332e-05, 0.0229207464, 0.00934865884, -0.0292784348, -0.000307880109, -0.0126251979, 0.0159468278, 0.0132790031, -0.00233904342, -0.005358194, 0.0259568058, 0.0280159153, -0.000677758944, 0.00930356886, 0.00613223901, 0.0235820673, -0.0136772981, -0.0258515961, 0.00833413377, 0.00242358726, -0.00278430711, 0.0168185681, 0.00583915412, -0.00621490413, -0.0140079577, 0.0377553552, -0.0141732879, -0.0160971284, 0.0055084941, 0.0166382082, 0.00946138334, 0.0202303771, -0.0173897073, 0.0124748982, 0.0184418075, 0.025415726, 0.0189227667, 0.025325546, 0.00651926175, -0.00465178443, 0.0142484382, -0.0180660579, -0.00325587322, 0.00393410213, 0.0169688668, -0.0123471431, -0.0252954867, -0.00554231182, 0.00490353676, 0.00756384619, 0.0238676369, 0.0132639734, -0.0073008216, -0.0112499529, 0.00703028124, 0.0191782769, 0.0132339131, -0.00498244446, 0.00270915707, -0.0100851282, -0.0207113363, -0.0133766979, -0.0148120625, 0.0115806134, -0.00513650151, 0.00970186386, 0.00964174327, 0.0156762879, 0.00251188828, 0.00467432942, 0.0149999382, -0.00348883821, 0.0195389967, -0.00769160129, -0.00102485798, -0.000680107391, -0.0151502378, -0.00443009194]
|
10 Apr, 2023
|
Sort elements by frequency using STL
10 Apr, 2023
Try it on GfG Practice
Given an array of integers, sort the array according to frequency of elements. If frequencies of two elements are same, print them in increasing order. Examples:
Input : arr[] = {2, 3, 2, 4, 5, 12, 2, 3, 3, 3, 12}
Output : 3 3 3 3 2 2 2 12 12 4 5
Explanation :
No. Freq
2 : 3
3 : 4
4 : 1
5 : 1
12 : 2
Recommended Practice
Sorting Elements of an Array by Frequency
Try It!
We have discussed different approaches in below posts : Sort elements by frequency | Set 1 Sort elements by frequency | Set 2 We can solve this problem using map and pairs. Initially we create a map such that map[element] = freq. Once we are done building the map, we create an array of pairs. A pair which stores elements and their corresponding frequency will be used for the purpose of sorting. We write a custom compare function which compares two pairs firstly on the basis of freq and if there is a tie on the basis of values.
Below is its c++ implementation :
C++
// C++ program to sort elements by frequency using
// STL
#include <bits/stdc++.h>
using namespace std;
// function to compare two pairs for inbuilt sort
bool compare(pair<int,int> &p1,
pair<int, int> &p2)
{
// If frequencies are same, compare
// values
if (p1.second == p2.second)
return p1.first < p2.first;
return p1.second > p2.second;
}
// function to print elements sorted by freq
void printSorted(int arr[], int n)
{
// Store items and their frequencies
map<int, int> m;
for (int i = 0; i < n; i++)
m[arr[i]]++;
// no of distinct values in the array
// is equal to size of map.
int s = m.size();
// an array of pairs
pair<int, int> p[s];
// Fill (val, freq) pairs in an array
// of pairs.
int i = 0;
for (auto it = m.begin(); it != m.end(); ++it)
p[i++] = make_pair(it->first, it->second);
// sort the array of pairs using above
// compare function.
sort(p, p + s, compare);
cout << "Elements sorted by frequency are: ";
for (int i = 0; i < s; i++)
{
int freq = p[i].second;
while (freq--)
cout << p[i].first << " ";
}
}
// driver program
int main()
{
int arr[] = {2, 3, 2, 4, 5, 12, 2, 3,
3, 3, 12};
int n = sizeof(arr)/ sizeof(arr[0]);
printSorted(arr, n);
return 0;
}
Java
// Java program to sort elements by frequency using
import java.util.*;
public class Main
{
// function to compare two pairs for inbuilt sort
static boolean compare(Map.Entry<Integer, Integer> p1,
Map.Entry<Integer, Integer> p2)
{
// If frequencies are same, compare values
if (p1.getValue().equals(p2.getValue()))
return p1.getKey() < p2.getKey();
return p1.getValue() > p2.getValue();
}
// function to print elements sorted by freq
static void printSorted(int[] arr, int n)
{
// Store items and their frequencies
Map<Integer, Integer> m
= new HashMap<Integer, Integer>();
for (int i = 0; i < n; i++)
m.put(arr[i], m.getOrDefault(arr[i], 0) + 1);
// no of distinct values in the array
// is equal to size of map.
int s = m.size();
// an array of Map.Entry pairs
List<Map.Entry<Integer, Integer> > list
= new ArrayList<Map.Entry<Integer, Integer> >(
m.entrySet());
// sort the list of Map.Entry pairs using above
// compare function.
Collections.sort(
list, (p1, p2) -> compare(p1, p2) ? -1 : 1);
System.out.print(
"Elements sorted by frequency are: ");
for (Map.Entry<Integer, Integer> entry : list) {
int freq = entry.getValue();
while (freq-- > 0)
System.out.print(entry.getKey() + " ");
}
}
// driver program
public static void main(String[] args)
{
int[] arr = { 2, 3, 2, 4, 5, 12, 2, 3, 3, 3, 12 };
int n = arr.length;
printSorted(arr, n);
}
}
Python3
from collections import Counter
# function to compare two elements for inbuilt sort
def compare(x, y):
# If frequencies are same, compare
# values
if x[1] == y[1]:
return x[0] < y[0]
return x[1] > y[1]
# function to print elements sorted by freq
def printSorted(arr, n):
# Store items and their frequencies
m = Counter(arr)
# no of distinct values in the array
# is equal to size of dictionary.
s = len(m)
# an array of pairs
p = [(k, v) for k, v in m.items()]
# sort the array of pairs using above
# compare function.
p = sorted(p, key=lambda x: compare(x, x))
print("Elements sorted by frequency are: ", end='')
for i in range(s):
freq = p[i][1]
while freq > 0:
print(p[i][0], end=' ')
freq -= 1
# driver program
arr = [2, 3, 2, 4, 5, 12, 2, 3, 3, 3, 12]
n = len(arr)
printSorted(arr, n)
# This code is contributed by shiv1o43g
C#
using System;
using System.Collections.Generic;
using System.Linq;
public class MainClass
{
// function to compare two pairs for inbuilt sort
static bool compare(KeyValuePair<int, int> p1, KeyValuePair<int, int> p2)
{
// If frequencies are same, compare values
if (p1.Value == p2.Value)
return p1.Key < p2.Key;
return p1.Value > p2.Value;
}
// function to print elements sorted by freq
static void printSorted(int[] arr, int n)
{
// Store items and their frequencies
Dictionary<int, int> m = new Dictionary<int, int>();
for (int i = 0; i < n; i++)
{
if (m.ContainsKey(arr[i]))
m[arr[i]]++;
else
m[arr[i]] = 1;
}
// no of distinct values in the array
// is equal to size of dictionary.
int s = m.Count;
// an array of KeyValuePair pairs
List<KeyValuePair<int, int>> list =
new List<KeyValuePair<int, int>>(m);
// sort the list of KeyValuePair pairs using above
// compare function.
list.Sort((p1, p2) => compare(p1, p2) ? -1 : 1);
Console.Write("Elements sorted by frequency are: ");
foreach (KeyValuePair<int, int> entry in list)
{
int freq = entry.Value;
while (freq-- > 0)
Console.Write(entry.Key + " ");
}
}
// driver program
public static void Main(string[] args)
{
int[] arr = { 2, 3, 2, 4, 5, 12, 2, 3, 3, 3, 12 };
int n = arr.Length;
printSorted(arr, n);
}
}
Javascript
// function to compare two pairs for sorting
function compare(p1, p2)
{
// If frequencies are same, compare values
if (p1[1] == p2[1]) {
return p1[0] < p2[0];
}
return p1[1] > p2[1];
}
// function to print elements sorted by frequency
function printSorted(arr)
{
// Store items and their frequencies
let m = new Map();
for (let i = 0; i < arr.length; i++) {
if (m.has(arr[i])) {
m.set(arr[i], m.get(arr[i]) + 1);
} else {
m.set(arr[i], 1);
}
}
// no of distinct values in the array
// is equal to size of map.
let s = m.size;
// an array of pairs
let p = new Array(s);
// Fill (val, freq) pairs in an array of pairs.
let i = 0;
for (let [key, value] of m) {
p[i] = [key, value];
i++;
}
// sort the array of pairs using insertion sort algorithm
for (let i = 1; i < s; i++) {
let j = i - 1;
let key = p[i];
while (j >= 0 && compare(p[j], key)) {
p[j + 1] = p[j];
j = j - 1;
}
p[j + 1] = key;
}
process.stdout.write("Elements sorted by frequency are: ");
for (let i = s-1; i >= 0; i--) {
let freq = p[i][1];
while (freq--) {
process.stdout.write(p[i][0] + " ");
}
}
}
// driver program
let arr = [2, 3, 2, 4, 5, 12, 2, 3, 3, 3, 12];
printSorted(arr);
Output
Elements sorted by frequency are: 3 3 3 3 2 2 2 12 12 4 5
Time Complexity : O(n Log n)
Space Complexity: O(n)The above algorithm requires O(n) space for the hash map and the array of pairs.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL
|
https://www.geeksforgeeks.org/sort-elements-by-frequency-using-stl/
|
Pandas
|
Sort elements by frequency using STL
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00648238836, 0.00808533188, -0.00944112614, 0.0125622759, 0.018006634, -0.0141722811, -0.0280621052, 0.0223988406, -0.0164107531, 0.0172157548, -0.0265792049, 0.02838693, 3.37900237e-05, 0.00567032443, 0.0253505167, -0.0181196183, -0.0110158231, 0.0144406147, -0.0248844624, -0.0327650122, -0.0250398144, 0.0161989089, -0.0241783205, 0.0215091016, -0.0123080648, 0.0251669195, -0.000261934736, 0.000697757117, -0.0518308617, 0.0199979562, 0.0049571204, 0.012209204, -0.0323695727, -0.062140543, -0.01317662, 0.0208453275, 0.0354201086, 0.0493734851, 0.00902450178, 0.0338383503, 0.0127317496, -0.0135932434, 0.0167779475, -0.00521839317, -0.0194895342, 0.028923599, 0.00254211319, -0.0152668012, 0.0108392881, -0.0384706445, 0.00647532707, -0.0265792049, 0.0145324133, 0.0172298774, -0.0184726883, 0.00054284709, -0.0242771804, 0.0366911665, -0.0118843792, 0.00933520403, 0.0265509598, -0.0291213188, -0.0145465359, -0.0291213188, 0.00502420403, -0.00696962699, -0.0520850718, 0.0232320894, 0.0395722277, -0.000423685531, -0.040673811, 0.0239947233, 0.0424815342, 0.0181337409, -0.0103308652, 0.00716028549, 0.0244749, -0.0329344869, -0.0277655236, 0.0548249073, -0.0302793924, 0.0105992, 0.0167920701, -0.0196731314, 0.019687254, 0.00712144747, -0.0200120788, -0.0407020561, 0.037312571, 0.0347704589, -0.0222717356, 0.0155492583, -0.000853108475, -0.00743568083, -0.0121315289, 0.03042062, 0.0292625464, -0.00284045842, -0.0156904869, 0.0592029914, -0.0234721787, -0.0309007969, 0.0108534107, -0.0147725018, 0.0140522365, -0.011827887, -0.00933520403, 0.00730151404, 0.0133460937, 0.00732975965, 0.0335558951, -0.00613990938, -0.025435254, 0.0229920018, -0.00940581877, -0.0308443066, 0.0123928012, -0.0568021052, 0.00263391156, 0.0394874923, -0.00131165981, 0.0310137793, -0.00611872505, 0.034007825, -0.0577907041, 0.0490627848, 0.0151255727, -0.00666598557, 0.00114659895, -0.0216079615, -0.0187410228, -0.0323130824, 0.0147866243, -0.0164389983, -0.00830423646, 0.0262826253, -0.000302317261, 0.0360980071, 0.0046852557, -0.0247008651, -0.000503567921, -0.0343750194, 0.0022737789, -0.0165943503, 0.00636587478, -0.0223141033, 0.00667304685, 0.0619710684, -0.0537798144, -0.00371784042, -0.046577163, -0.0357590578, 0.0316069387, 0.00917279162, -0.0369736217, -0.0178795289, -0.00998485554, -0.00582567602, -0.0148572391, -0.0596549213, -0.00611519441, -0.0186139178, 0.0110087618, -0.0256047286, -0.0152668012, 0.00893270317, 0.0350529142, 0.0136285508, -0.0441480316, 0.0333016813, 0.0300251804, 0.00505244965, 0.031945888, 0.00195071881, -0.0183597058, 0.00896801054, 0.0308725517, 0.0245031454, -0.00502420403, -0.0257035885, 0.028514035, -0.0237687584, 0.0148713617, -0.00930695888, 0.0103944177, 0.0308443066, 0.00265862653, 0.00531019177, 0.0408715308, -0.00463229511, -0.00892564189, 0.0164107531, 0.0232038442, 0.0301099177, 0.0291213188, 0.0136497356, -0.035307128, -0.00852314, -0.0146736419, 0.0377362557, -0.013303725, -0.0252375342, -0.0042651007, 0.00145641901, 0.0327367671, -0.0227236673, -0.0249127094, -0.00265686121, 0.0202380456, 0.0238958634, -0.0586945675, 0.0521133207, -0.0448541753, 0.00294991047, 0.0116584133, 0.0218480509, -0.013430831, 0.0513224378, 0.0064965114, 0.00652475702, 0.00829011295, 0.00111923588, 0.0395157374, -0.035307128, -0.0355330929, -0.0418036394, 0.00791585818, 0.0288529843, -0.000368076784, 0.00636587478, 0.0175688267, 0.0177241769, -0.0288529843, -0.00884796586, 0.0269605219, -0.0428487286, -0.0222717356, 0.0036895948, 0.0162130333, 0.0242771804, 0.0287400018, 0.00223317579, -0.0177947916, -0.0138827618, 0.00365075702, 0.00893976446, -0.0114748161, -0.0310137793, 0.0419448651, 0.0364087075, 0.0120891603, -0.0129082855, 0.0277231559, -0.0213113818, -0.0159164537, 0.0401088968, -0.0281750876, -0.0218339264, 0.00321118324, -0.035250634, -0.0185150579, -0.000206326018, -0.0102955578, 0.0139886839, 0.00127723534, 0.025590606, 0.0491475202, -0.0273842067, 0.00249797921, -0.021720944, 0.0127741182, -0.00869967602, -0.0111570517, -0.0499948896, 0.0381599441, 0.000732181536, 0.00737212785, -0.0260566603, 0.0174840894, 0.00276984414, -0.00154292141, 0.00941288, 0.04121048, 0.021494979, 0.00236204686, -0.0280479807, 0.0303358827, -0.0288247392, -0.0469726026, -0.0257035885, -0.0181478634, -0.0299969353, -0.0188963749, -0.00284045842, -0.000473556836, 0.0119408704, -0.0142782023, -0.0316916779, -0.0230343696, 0.0295167584, -0.0280197356, -0.020195676, 0.0334711559, -0.0176676866, -0.0245031454, -0.0374255553, -0.0105709536, -0.0381599441, -0.0177100543, -0.00448400527, 0.0112629738, -0.0355895832, -0.0175829493, -0.0246584974, -0.026861662, -0.0261837654, 0.0444304869, 0.019051725, -0.0215938389, -0.0197578687, -0.00731563661, -0.0405608267, -0.0225541927, 0.0394592434, 0.00411328, -0.0236557741, -0.0168203153, 0.0191223398, 0.0293190386, -0.0290365815, -0.0305900946, 0.0258024484, -0.0719700456, 0.000737036287, 0.00332946214, 0.0113053424, -0.035024669, 0.00596337393, 0.00342126051, -0.00749217253, -0.00492887478, 0.0371430963, -0.0185150579, 0.0099142408, 0.034544494, -0.00252622482, -0.0245737601, 0.0112770963, 0.0379622243, -0.00101861055, 0.0012392801, -0.0127458731, 0.018161986, -0.017653564, 0.0408715308, -0.0203227829, 0.00537374476, -0.030448867, 0.0515484065, -0.0223847181, 0.00784524344, 0.0238817409, -0.0475375168, -0.0116654746, 0.0319176428, -0.011623106, -0.0217774361, -0.00992836431, 0.0109663932, 0.015972944, 0.00397205167, -0.0125128459, -0.0132896025, 0.0115877986, -0.050870508, -0.0163683835, -0.00162589317, -0.00809945446, 0.0310420264, -0.00627407664, -0.0161847863, 0.0553898215, 0.0174134746, 0.00631997548, -0.00650357269, -0.0205911156, -0.0274830665, 0.00654947199, -0.0366911665, 0.0136426734, -0.0270170141, 0.00799353328, -0.020449888, -0.00354307028, 0.00763340062, 0.0171027724, 0.00547966594, 0.0262261331, -0.0204075184, -0.0351659, -0.0181478634, -0.000793527695, 0.0124563547, -0.0252657793, -0.0123998625, 0.0142217111, 0.00660243258, 0.0052854768, 0.0437243469, -0.00749923382, 0.0207323451, 0.0322283469, -0.0116654746, 0.0418883748, 0.00371077913, -0.00680721411, -0.0711791664, 0.0443457514, 0.0126540745, -0.0137274107, -0.0110228853, -0.00134608417, -0.0226812977, 0.0126258284, 0.000131188048, 0.00754866377, -0.00701552629, 0.0107404282, 0.0188116375, -0.0163683835, -0.0449106656, 0.0202804133, -0.0107545508, 0.0120609142, -0.0173711069, -0.00992836431, 0.0126258284, 0.00311585399, -0.0158458389, -0.0401371419, 0.0121456515, 0.0207323451, -0.00980832, 0.00430040807, -0.0199273415, 0.0317481682, -0.04121048, 0.0151679413, -0.0211419072, 0.0201109387, -0.005048919, -0.008240683, -0.0454190895, -0.0188681278, 0.0527347252, -0.00373902475, 0.0298839528, 0.0041662408, 0.0433006585, 0.0187833905, 0.0196166392, -0.013889824, -0.0134096472, -0.00298168696, 0.00902450178, 0.00685664406, -0.0156339966, 0.00748511078, -0.0240794607, -0.0249409545, -0.0233450718, -0.0264944676, 0.00971652102, 0.00110776105, 0.0124351699, 0.0190940946, 0.00463582575, -0.0137697794, 0.00309466966, -0.0471985675, 0.00238499651, -0.00913042296, 0.00552556524, -0.0241500754, 0.00150849693, -0.00149878755, 0.0385836288, -0.0166649632, 0.00546907401, 0.00481236121, -0.0240794607, 0.0162130333, -0.0230061244, -0.0112206051, 1.77225229e-05, 0.0175829493, -0.058073163, -0.0503620841, 0.00853020139, 0.0404195972, 0.0550508723, -0.0375950299, -0.0303076375, 0.012258634, -0.0191929545, -0.04191662, 0.00956117, 0.0271582417, -0.00855844747, -0.0203651506, 0.0133672785, 0.00773226097, -0.00234615849, 0.0156481192, -0.0145324133, -0.00382376183, -0.0214667339, -0.00230555539, -0.0272712242, 0.00593865849, 0.0181337409, 0.0305336025, -0.0177947916, 0.0311550088, -0.0326520316, 0.0158317164, 0.00150496629, -0.0219892785, -0.00554674957, -0.0194471646, -0.0330474712, 0.0200120788, 0.00353953941, -0.00164972548, 0.00113688945, -0.0399676673, -0.0144406147, 0.0248279721, -0.0102531901, 0.0157328565, -0.0219892785, -0.00279985508, -0.0317764133, 0.0282174554, -0.00746392645, 0.0122868801, 0.00958941597, 0.00973770581, 0.00613637874, -0.00714616245, 0.0114606936, 0.053469114, -0.0193906743, -0.00771107664, -0.0284857899, 0.0238252487, -0.0115383686, -0.0264803451, -0.0193765517, 0.0121315289, -0.0104579711, 0.0497124344, 0.0169897899, 0.00465701, 0.0164954904, -0.0334994, 0.0123645561, 0.0272712242, -0.0310137793, 0.00294461427, 0.0105285849, -0.0153797846, 0.0122162662, -0.0115383686, -0.0125622759, 0.0252657793, 0.00515131, -0.0130565753, -0.0205911156, -0.00582214538, -0.0197013766, 0.0108534107, 0.0119691156, -0.0351376534, -0.0209300648, -0.0205628704, -0.0300816726, -0.025053937, -0.0137485955, 0.0309007969, -0.0166649632, 0.0359567776, 0.000993012916, 0.0259578, -0.0302229, -0.00942700263, -0.0209724326, -0.0244466551, 0.00187304313, 0.0205063801, 0.0295450035, 0.0378209949, 0.00128606206, -0.0105709536, -0.0135014448, -0.00117925799, 0.014828993, 0.00528900744, -0.00583273731, 0.0057056318, -0.066207923, -0.00114306819, 0.0177665465, -0.0212125219, 0.00933520403, 0.0240229685, 0.00479117688, -0.00312821148, -0.0228507724, -0.0196448863, -0.000884884852, -0.0142005263, -0.0038484768, 0.0202804133, 0.0275960509, 0.0157046095, -0.0215655938, -0.0345727392, -0.0147160105, -0.0388943292, 0.0129012242, -0.0352223888, -0.00952586252, -0.0431311876, -5.4477794e-05, -0.00144317886, -0.00633409852, 0.00892564189, -0.0132684186, 0.0321153626, -0.011319465, -0.0179783888, -0.012004423, 0.0583556183, -0.00168856338, -0.0138474554, -0.0500513837, -0.00969533715, 0.00126399519, -0.0119832391, 0.0127599956, 0.0196731314, 0.0194471646, 0.0212548897, -0.0216079615, -0.0131483739, -0.000130195025, -0.007605155, -0.00827599, 0.016100049, -0.0489780456, -0.00237616966, 0.0298274606, 0.0128517943, -0.00869261473, 0.00704730256, -0.0140592977, -0.0088055972, 0.033019226, -0.0148148704, -0.00870673731, -0.00183243991, -0.0110228853, 0.0119055631, 0.0199697111, -0.012258634, -0.0219469108, 0.0342902802, 0.0133178486, 0.0074144965, -0.0096106, -0.00357837719, 0.00761927804, -0.00476999301, -0.00712850876, 0.00282810093, -0.0275254361, 0.0102884965, 0.0189104974, -0.0358720422, -0.0185997952, -0.0162695237, 0.030448867, 0.0375102907, -0.0053419685, -0.0249127094, 0.00184656272, 0.0327932611, -0.0175264571, -0.0290083345, 0.00986481085, -0.0143135088, -0.0393180177, -0.0169756673, -0.0211419072, 0.0341208056, -0.00233203568, 0.0174982119, -0.0200826935, -0.0151255727, 0.0221587531, 0.0156763643, -0.0175405797, 0.016862683, 0.00792998075, 0.00442398293, -0.031945888, 0.00180772494, -0.00927165151, -0.0267910473, 0.000588305, 0.0169615429, 0.00934932753, -0.0279349983, 0.0245878827, -0.0173146147, -0.0154786445, -0.00651769573, -0.00526429247, 0.00227024825, 0.0111288065, -0.019433042, -0.0129365316, 0.0121315289, -0.0276666638, 0.00961766113, 0.0158175919, 0.00324649038, -0.0200120788, 0.00869967602, 0.0330474712, -0.0189387426, 0.0123928012, 0.00640824344, 0.00201074081, 0.0181761086, 0.0225541927, 0.0136497356, -0.00599515, 0.00491828285, -0.0162554011, 0.00941288, -0.00581508363, -0.0140310526, 0.0172581244, -0.0181196183, 0.00958941597, -0.00459698774, 0.0107545508, 0.0238676183, 0.018797515, 0.0417753942, 0.00681074476, 0.0315504484, -0.0280338582, -0.0321153626, -0.0562654361, 0.018006634, 0.00658124825, 0.0136214895, 0.0322283469, 0.00793704204, 0.027624296, 0.00471350132, -0.0338101052, -0.0316634327, 0.0250256918, 0.0228225272, 0.00954704732, 0.0101543292, -0.0164389983, 0.0381881893, -0.00241324212, 0.0161565412, 0.0113124037, -0.0160859264, 0.0209441874, 0.000344465167, 0.0322283469, 0.00427922374, 0.0143770622, 0.0158599615, -0.0228225272, 0.0168061927, -0.000882678141, -0.0262826253, -0.0392615236, -0.0192635693, -0.0122162662, -0.0161565412, -0.0122515727, 0.0122939413, -0.0230343696, -0.0112700351, 0.0148854842, -0.0225259475, -0.00906687, 0.00653888, 0.0193624292, 0.00610107137, -0.027087627, 0.00740743522, 0.00891151838, 0.00738625089, 0.00372137106, 0.00581155298, 0.00195424957, -0.0112488503, 0.00170533417, -0.0104932785, -0.0221728757, 0.00564914, 0.042453289, -0.0056138332, -0.0253928863, 0.0275113136, -9.06951827e-05, -0.0356460735, 0.0166649632, -0.00116160442, -0.011573676, 0.0117431507, -0.0261272732, 0.0318893977, -0.00980832, 0.00361898053, -0.00498889713, 0.0331322066, 0.0121385902, 0.0163966306, 0.0178089142, 0.00761927804, 0.000405811297, 0.0053313761, 0.0266074501, -0.0211842768, -0.0607847497, 0.0276384186, 0.0219610333, 0.0124210473, 0.0211277846, -0.00743568083, 0.00124810694, -0.00239558844, -0.0144335534, 0.0467748828, -0.036323972, -0.0197719913, -3.31280135e-05, -0.00735094398, 0.00208665128, -0.00358190807, 0.000836337567, 0.00653534895, 0.00597043522, 0.0201674309, -0.0272006113, -0.0159446988, -0.0492040105, -0.0137768406, 0.00429687742, -0.0204922557, -0.00676131481, -0.00515131, -0.00113071071, 0.0029198993, -0.0202380456, 0.0310702715, 0.00250857137, 0.00993542559, 0.0273135938, -0.0096106, -0.0414082, -0.0380469598, -0.0278220158, 0.00293402234, 0.00601280387, 0.0136144282, -0.00356072374, -0.0533843748, 0.016128296, -0.00350423227, 0.00221728766, -0.0236840211, 0.0295450035, 0.00425450876, 0.00576565368, -0.0156904869, 0.0280479807, -0.0190799721, -0.00189069659, -0.00130018499, 0.0139674991, 0.00631997548, 0.0301664099, 0.0344032645, 0.0117290271, 0.0286552645, 0.0134943835, 0.0339513347, 0.0132684186, 0.00702611823, -0.0292625464, -0.058073163, -0.00549025834, 0.00491475221, -0.0359567776, -5.44502109e-05, 0.00910217687, -0.00929283537, -0.0117219659, 0.0236134063, 0.0325672925, 0.0212690122, 0.00531725306, -0.00382023118, -0.0398829319, -0.0170321576, -0.00132931327, -0.0238111261, 0.00242030364, 0.0180913713, 0.00345480232, -0.036323972, -0.00499948906, 0.0369171314, -0.00873498339, -0.0329909809, -0.0548249073, -0.0201815534, 0.0112982802, 0.0205487479, 0.0416341648, -0.0281327181, -0.0108039808, -0.00172563584, -0.00745686516, -0.0148431165, 0.0203086585, 0.0148007479, -0.00153232925, 0.0155351358, 0.00603751885, -0.0171733871, 0.00297286012, -0.00422626315, -0.0470008478, 0.0173711069, 0.00629879162, 0.0237687584, -0.0140875438, -0.0248703398, 0.0108392881, -0.00660596322, 0.00744980387, -0.0191788319, 0.00499948906, -0.0313527286, 0.00990717951, -0.0162130333, 0.0145324133, -0.0169756673, 0.00386259961, 0.00975889, -0.0501926132, 0.0245878827, -0.00424391683, -0.0346009843, -0.0102884965, 0.00448400527, -0.0206899755, 0.0181054939, 0.0113053424, 0.0166367181, 0.0110017005, -0.0240935832, 0.00220846082, -0.0126117058, -0.0272712242, 0.0174134746, 0.0185009353, 0.0205628704, 0.0186704081, -0.0283586849, 0.00157822855, -0.0161706638, 0.0145889046, -0.0226248074, -0.0116442908, -0.0247432347, 0.00798647199, -0.00088311953, -0.0185856707, 0.00327473599, 0.0463794433, 0.00553615764, 0.00771813793, -0.00629526051, -0.00925752893, 0.00481236121, 0.00246796827, -0.00385200744, -0.0196307618, 0.0104720937, 0.0168203153, 0.0313809738, -0.00682839844, -0.00612578634, 0.0731563643, 0.00859375484, -0.00029018044, -0.0601633452, -0.00207605911, 0.00212019286, 0.00875616726, 0.0065318183, -0.000936521566, 0.0174417198, 0.0118420105, -0.00211313157, -0.0242206883, -0.014828993, 0.00822656, 0.00967415236, 0.0106980596, 0.00120397308, 0.000400956545, -0.0495994501, 0.00841015764, -0.0210148022, 0.0278926305, 0.00490062917, -0.00133725745, 0.00705436384, -0.00589275965, -0.0357025675, -0.00884796586, -0.00349010946, 0.00662714755, 0.0214667339, 0.000188010454, 0.0291213188, 0.00600574212, -0.000659801939, -0.000339831109, 0.00555028, 0.0216503292, 0.00524310814, 0.0118985018, 0.0209300648, -0.00503126578, -0.0169191752, 4.58165123e-05, 0.00326590915, -0.00813476183, 0.035787303, 0.0272571016, 0.00322000985, 0.00785936601, -0.0111711752, 0.0228790175, -0.0236698985, 0.00557499519, -0.00826892909, 0.00018591409, 0.0106698135, 0.0227519125, -0.00178742327, -0.00443810597, -0.0344597548, 0.00231614755, -0.0124563547, -0.000877382117, 0.0151538188, 0.000891504926, -0.00683192909, -0.00584686035, 0.00614344, -0.0163118932, -0.0492887497, 0.00757690938, 0.00500655035, -0.00275925198, -0.00734388223, 0.00476646191, -0.00208665128, 0.000779404829, 0.0631009, 0.0096106, 0.00512659503, -0.0275113136, -0.00678249914, 0.0198708512, 0.0107121821, -0.00549378898, 0.0136779808, 0.012209204, 0.00949055608, 0.00419448689, -0.0226812977, 0.0189387426, 0.00365428766, 0.00596690457, 0.0189528652, -0.0120891603, -0.00638705911, -0.00575506175, 0.00092063332, 0.00520780124, -0.00493593654, 0.000608606613, 0.0170604028, 0.0136144282, 0.0115383686, -0.0135367522, -0.0353918634, -0.000943582971, 0.018161986, -0.018416198, 0.0130353915, -0.00867849216, -0.00267628022, 0.0187551454, 0.0279349983, -0.00191011559, -0.0194754116, 0.0301099177, -0.00827599, 0.0073791896, -0.0314092189, 0.0183455832, -0.0150549589, 0.000113975817, -0.00257212413, 0.00706142513, -0.00129135814, 0.0158317164, -0.0160576813, -0.0163683835, -0.0300251804, -0.0171451401, 0.0013963969, 0.0189104974, 0.00816300791, -0.0162695237, 0.00068319292, -0.00349364, 0.00114571629, -0.0184444431, 0.0265085902, -9.03090113e-05, -0.0021290197, -0.0135296909, -0.0347987041, -0.0112206051, 0.00896094833, 0.00537374476, -0.0212690122, 0.0152385561, 0.0298557058, 0.00145641901, -0.00890445709, 0.0184303205, -0.0414929353, -0.0115171848, -0.0191929545, -0.00977301225, 0.00362957269, 0.00945524871, -0.00388378394, -0.00212548906, -0.00976595096, -0.0013240173, -0.00762633933, -0.014574782, -0.0124704773, 0.00218904181, -0.02467262, -0.00441692164, 0.00850901753, -0.0110299466, -0.0185997952, -0.00479117688, 0.0198567286, 0.0103308652, -0.00481236121, -0.0111005604, -0.0491757654, -0.0044592903, 0.00801471807, -0.0197013766, -0.00626701489, -0.0270311367, -0.00646826578, -0.00116513518, 0.0151538188, 0.0210148022, 0.0262402557, -0.00419448689, 0.00827599, -0.00233733188, 0.0117502119, -0.00214137719, -0.0222011209, 0.00289518433, -0.00676131481, -0.00764752366, -0.00205664, 0.0141793424, 0.0273983311, 0.0112629738, -0.0233027041, -0.0416059196, -0.014193465, -0.0010053704, 0.0253081489, -0.0044945972, -0.0139745604, 0.00995660946, 0.00689195096, -0.0200826935, -0.0251951665, -7.98823748e-05, 0.0152526787, 0.016100049, -0.00699434197, 0.00841721892, 0.0325955376, 0.034488, -0.0445999615, -0.0280621052, 0.0214243643, -0.0204075184, 0.00733682094, -0.000165943493, 0.0239947233, 0.00215373468, -0.0131554352, -0.00340537238, -0.00326590915, -0.0192635693, 0.00900331698, -0.0191929545, 0.0147866243, 0.00464288704, 0.00100360508, 0.00424744748, -0.0274406988, -0.00444516726, 0.0340643153, 0.0186704081, -0.0203510281, 0.0154080298, 0.0163966306, -0.00138227397, -0.0213819966, 0.00392262172, -0.00712497812, -0.0228507724, 0.0102461278, -0.00317058, 0.0069590346, 0.023754634, 0.020068571, 0.000133615409, 0.0332169458, 0.0346857198, -0.017625317, 0.00430040807, -0.00233380101, -0.0050030197, -0.0396852121, 0.0147725018, -0.0118843792, 0.00214667339, 0.0263391174, 0.00492534414, 0.00893976446, -0.00479117688, 0.0016541389, 0.00590688223, 0.00281927409, 0.0120891603, 0.0162130333, -0.00126134709, -0.0181054939, 0.00802177936, -0.00811357796, -0.0115948608, -0.0179783888, 0.016128296, -0.00904568564, -0.0116795972, -0.0204216428, -0.0290365815, 0.000905627792, 0.00432159239, -0.00259507378, 0.00456168083, -0.0230767373, -0.0125410911, -0.0130565753, 0.020831205, 0.00210253941, 0.0123998625, -0.000916219957, -0.0171733871, 0.00422979379, 0.0108251646, 0.00299051357, 0.00483001489, -0.0204640105, -0.0250680596, 0.00469937874, -0.0106415683, -0.0132684186, -0.00211313157, -0.0163825061, 0.011319465, 0.00904568564, 0.0130706979, 0.0065318183, 0.0187551454, 0.0216220841, -0.023020247, -0.0353353731, 0.00566326315, 0.0304771122, -0.0298839528, -0.0276949108, 0.0139533766, 0.0340643153, -5.86980968e-05, -0.0113406489, 0.00792998075, -0.0179501437, 0.0250256918, -0.00138580473, -0.00975182839, 0.00543376664, -0.0209724326, 0.0156339966, 0.0222999807, -0.00121544779, -0.0102037592, -0.00551850395, -0.0260001682, 0.00175652956, 0.0100272242, -0.00384494616, 0.0425097793, 1.89637885e-05, 0.00482648425, -0.0143558774, -0.0150267128, 0.0130636366, 0.00216962304, -0.00234086253, 0.0191364624, -0.00992836431, -0.00165590423, -0.000631114875, -0.0309290439, -0.00572328502, 0.0457297899, 0.0157893468, -0.00781699829, -0.0057056318, 0.0405890718, -0.00543729775, 0.0237263888, -0.0103732338, -0.00669423118, 0.0175970718, 0.0120962216, 0.00167179247, -0.0313527286, 0.000677014177, 0.005850391, -0.0208453275, -0.0067224768, 0.0184020754, 0.0228084046, -0.00529253809, -0.00812770054, -0.00903156307, 0.000626701512, -0.0295732487, 0.0189104974, -0.0171310175, 0.0100837154, -0.00424391683, -0.0269181542, 0.0343467742, 0.0247573573, -0.000807209173, 0.0178371612, 0.00636940589, -0.020831205, -0.00917279162, 0.0178795289, -0.00772519922, 0.0134590771, 0.0124210473, -0.0239664782, 0.00679309107, -0.00309466966, -0.0212548897, -0.0242206883, -0.00707554817, 0.0113477102, -0.00834660511, -0.0100342855, -0.0243054256, -0.00533490675, -0.0366346762, -0.011954993, 0.0074144965, -0.00762633933, 0.0164954904, -0.00179448468, 0.010479155, -0.0134237697, -0.00292872614, 0.00647179643, 0.0175829493, 0.0143135088, -0.00667304685, 0.0308443066, -0.0133460937, 0.00858669356, 0.0275678039, -0.0247856025, -0.0258871857, 0.0362109877, 0.0137980254, 0.0257742032, -0.0200826935, -0.0323695727, -0.0302793924, -0.000458992639, 0.0264803451, 0.00571269309, 0.0216926988, -0.0179925114, 0.0257318337, 0.0164954904, -0.00761927804, -0.00411681086, 0.00696962699, -0.00268334174, 0.0125763984, 0.0010874595, 0.00962472241, 0.00374255539, 0.0231191069, 0.027850261, 0.00937757269, -0.0151538188, -0.0303358827, -0.0354483537, 0.00644355081, -0.00540552102, -0.000356602, -0.0114960009, -0.00789467338, -0.034488, -0.0169756673, 0.0225965604, -0.0122798188, -0.00327473599, -0.00302935159, 0.00173269724, -0.00896801054, 0.0183738284, 0.0198567286, -0.0335841402, -0.00618227804, 0.040673811, 0.0322848372, 0.0294602662, 0.0273559615, 0.0334994, 0.00494299782, -0.0204640105, 0.0173428599, -0.0302511454, 0.00469231699, 0.0299404431, 0.0145041673, 0.0113265263, -0.0096106, 0.00440632924, 0.000357705314, -0.0356743224, 0.0066765775, -0.0251527969, 0.014956099, 0.00274512917, -0.0065424107, 0.0165378582, 0.0255199913, 0.0372278355, -0.00710026314, 0.0310137793, 0.00416271, -0.00953998603, -0.0111288065, -0.0589770228, -0.0180207584, -0.0418883748, 0.0226248074, -0.026324993, 0.00850901753, 0.0156057505, -0.0016082396, -0.00287576555, 0.00418389449, 0.0128588555, -0.00206193631, -0.0191505849, 0.00378492405, -0.00659890193, 0.0273135938, -0.0113547724, 0.0262402557, -0.00597043522, 0.00149084348, 0.0158317164, 0.00524310814, -0.00399323599, -0.0087279221, -0.0140522365, 0.0335276462, 0.00234086253, -0.016509613, 0.00312115, -0.00493240543, 0.0100131007, 0.0041309339, -0.00444163661, 0.012004423, 0.0219892785, -0.0391767882, 0.0358437933, 0.0201109387, 0.000364987412, -0.0208876971, -0.0119620543, 0.0113759562, -0.000974476687, 0.0295732487, -0.0197013766, 0.00350952847, -0.00143082126, 0.00213255035, 0.00817713048, 0.00243089558, -0.0056597325, -0.00508069573, -0.0161424186, 0.0079794107, 0.00723796105, 0.00968121458, 0.00571269309, -0.0059315972, 0.00226318673, -0.00267628022, 0.0264097303, -0.0277514011, 0.0101966979, -0.00602692645, 0.0364934467, -0.0144759221, 0.00838191155, 0.00845958758, 0.0152385561, -0.00520780124, 0.000953292416, -0.00975889, 0.0081700692, -0.0015190891, 0.0029922789, -0.00147760322, 0.025590606, 0.00345480232, -0.00742861954, -0.000493858417, -0.00843840372, 0.00522898557, -0.000528724224, 0.0188540053, -0.00402148161, 0.0181196183, 0.00195954554, 0.00642236648, -0.00801471807, -0.000672159425, -0.0387813486, 0.00650710333, -0.00901744049, 0.0014131678, -0.0215373468, -0.00805002451, -0.00849489495, 0.016735578, 0.0178230368, 0.0104720937, -0.0131060053, 0.012413986, -0.0012392801, 0.0126752583, 0.0165378582, 0.0281609651, 0.00980125833, 0.00591747463, -0.0295167584, -0.00782406, 0.0124069247, -0.00156145764, -0.00277514, -0.00536668347, 0.00314586493, 0.0133672785, 0.00694844266, 0.00634469045, -0.00412740326, 0.00543729775, 0.0113688949, -0.0085443249, 0.0180631261, 0.00351482444, -0.00267098425, 0.0174134746, -0.000269658194, 0.0105709536, 0.0120538529, 0.00165502157, -0.0189387426, -0.00758397067, -0.0046852557, 0.00174593739, 0.00175211614, 0.00740037393, 0.00951174, 0.0256612189, 0.0221446306, -0.0120185455, 0.00126840849, -0.0154362759, 0.00299757509, 0.0151679413, 0.000967415283, 0.00243972242, 0.0121668363, -0.00023015833, -0.020576993, 0.0110723153, -0.00703317951, 0.00372843258, 0.0134096472, 0.0017265185, 0.00356072374, -0.00298874825, 0.00713203941, 0.00221728766, -0.0104014799, -0.00479470799, -0.0038025775, 0.00406738091, -0.0151820648, 0.00426157, 0.0104650324, 0.0238817409, 0.00831129774, -0.000173666936, 0.0155210132, -0.0157046095, 0.010147268, 0.00379551621, 0.00428981613, -0.0191223398, -0.0139604378, -0.0125622759, -0.0142782023, -0.0116019221, 0.00284222374, -0.00648238836, -0.00819125306, 0.0362674817, 0.00394733669, -0.0224412102, -0.0359567776, 0.0199132189, 0.00951174, -0.0384706445, -0.00815594662, -0.0244466551, -0.0154503984, -0.00440986035, 0.00963178463, 0.00017013622, -0.000711879926, -0.00157381513, 0.0136144282, 0.0088055972, -0.00912336167, -0.00397205167, -0.0106486296, -0.00198955671, -0.0233168267, 0.0238393713, -0.000402501231, -0.0199697111, -0.0169756673, -0.0140451752, -0.0116019221, -0.00485473, 0.00337889208, -0.00765458494, -0.00536668347, 0.00813476183, 0.0125975832, 0.00167797122, -0.00335417711, -0.00168856338, 0.0111570517, 0.0244890228, -0.0118490718, 0.0188116375, 0.00376727036, -0.0171451401, -0.0207041, 0.0069590346, -0.027624296, -0.020195676, 0.0187692679, -0.0065318183, 0.0110864379, 0.00462170271, -0.00764046237, 0.0174558442, -0.00666951621, 0.0213113818, 0.0121456515, -0.0163825061, -0.00300993258, -0.0183314607, 0.0076969536, -0.00238323095, 0.0189952347, 0.0189104974, -0.00504185772, 0.0281609651, 0.00853020139, -0.00497124344, -0.00550085027, -0.000590511714, -0.0293755289, -0.0139180692, 0.0137062268, 0.00228437106, 0.00701199519, 0.0444304869, -4.88507212e-05, -0.00325355167, 0.0359285325, 0.00217315368, -0.0169050526, 0.0217068214, 0.0065318183, -0.0128871016, -0.0248138495, 0.00972358231, -0.0212690122, -0.000367194123, 0.00275042513, 0.00958235376, -0.0153797846, 0.0213819966, -0.00322354073, 0.00870673731, -0.00443457533, 0.0028987152, 0.0153232934, -0.0256894659, -0.000997426338, 0.0117855193, 0.00766870799, 0.00924340542, -0.0107404282, -0.0170039125, -0.0166790858, -0.00204428262, 0.0140239904, -0.00832542, -0.00525017, 0.024135951, 0.0064047128, 0.002734537, -0.0108181033, -0.00929283537, -0.00586804468, 8.66127957e-05, 0.0104297251, 0.0261837654, 0.0101119615, 0.014956099, -0.0240794607, -0.000339610415, 0.000410886685, -0.0132472338, 0.00272747548, -0.0166932102, -0.0244325325, -0.000972711365, -0.00408856524, -0.0120114842, 0.0235427916, 0.0135155683, 0.00342479139, -1.14334407e-05, 0.0203651506, 0.00726620667, 0.0113900788, 0.00196837238, -0.0157893468, 0.00946231, -0.00828305166, -0.0250680596, -0.00301522855, -0.0208594501, 8.51784425e-05, 0.0108039808, -0.0154786445, -0.00888327323, 0.0403348617, 0.000646120403, -0.0200826935, 0.00412740326, -0.0107827969, 0.00476646191, 0.0191364624, -0.0122445114, 0.00358190807, 0.0117219659, -0.00902450178, -0.0115948608, -0.00233556633, -0.0178371612, -0.0212407671, 0.00971652102, -0.0025297557, -0.0139463153, 0.00969533715, -0.002556236, -0.0024573761, 0.0125410911, -0.0183314607, 0.0171592645, -0.0158740841, -0.0126328897, 0.0130636366, -0.0176676866, -0.00619993126, 0.00487591419, -0.0117078433, 0.00386966113, 0.00735094398, 0.00270276051, 0.0222858582, -0.00171857444, -0.00322354073, 0.0104720937, -0.000654064526, 0.00397911342, 0.0274265762, 0.00945524871, 0.0341773, 0.00511600263, 0.0157328565, 0.0068142754, 0.00761221675, 0.0130706979, 0.0250821821, 0.0105003398, 0.00833248161, 0.0101966979, -0.00689901272, -0.00303111691, -0.019433042, 0.0125410911, 0.0110440692, -0.0118420105, -0.0118914405, -0.00215373468, -0.00296756392, -0.00193659589, -0.00126134709, -0.00930695888, 0.00475233933, -0.00958235376, 0.00209900877, -0.0101896366, 0.00136991648, 0.0321718529, -0.0184303205, -0.0158175919, 0.0175970718, -0.0101190228, 0.00406738091, 0.000737477618, -0.00357837719, -0.015746979, 0.0104579711, 0.00809945446, -0.00131607312, -0.00867143, -0.0107263047, -0.0166649632, -0.025562359, -0.00753454072, 0.0128517943, 0.0167497, 0.00541258231, -0.00365075702, 0.00194895337, 0.0387248583, 0.0127035044, 0.0104226638, -0.00780287525, 0.0156481192, 0.00330827781, -0.0122445114, 0.0195036568, 0.0148713617, -0.00814182311, 0.0188681278, 0.0144335534, -0.00962472241, -0.018161986, 0.0363804623, 0.0110511305, 0.0140028065, 0.00723796105, -0.0112841576, -0.00310879247, -0.00988599565, -0.0216785762, -0.016354261, -0.00659184065, -0.000562266, -0.00112894538, -0.00402501225, -0.00328003196, -0.0137062268, -0.0135720596, 0.0123857399, -0.0148713617, -0.00467819441, -0.0132472338, 0.0110440692, 0.0115030622, -0.0260142908, 0.0124916611, 0.00105656579, -0.0170886498, 0.0179077741, 0.0252657793, 0.0116725359, -0.00907393172, -0.00294284895, -0.00227201357, 0.0148854842, -0.00717087742, 0.0262402557, -0.00255270535, -0.00335594243, 0.0115877986, 0.00776050659, 0.0143770622, 0.0291213188, 0.0275395587, -0.00265686121, 0.00450165849, 0.0181902312, 0.00550085027, 0.00907393172, -0.00802884065, -0.00657418696, 0.00463582575, -0.0125199072, 0.00716734678, -0.0101966979, -0.0231897216, -0.00985775, 0.0353918634, -0.00505598076, 0.0113971401, 0.000692461035, 0.00145553635, -0.0176818091, -0.0125693372, 0.0307878144, 0.000442883786, -0.0233591944, 0.00158617261, 0.0209300648, 0.00807827059, 0.00197366835, -0.0203510281, 0.013734472, 0.00115542568, -0.013021268, 0.0149278529, -0.000798382389, 0.00870673731, -0.007287391, 0.00716028549, 0.00795116462, 0.00317411078, 0.00779581349, 0.00820537657, 0.0141864037, -0.00222434895, 0.0179642662, -0.0256188512, 0.00188893126, 0.0101966979, 0.00858669356, 0.0185574256, 0.00860081613, -0.0139321918, 0.00430040807, -0.0053772754, 0.00130901171, 0.0063058529, 0.0118985018, 0.00309113902, 0.00398970535, -0.012004423, -0.0251245517, -0.0163683835, -0.00305759721, 0.0158740841, -0.00374255539, 0.00850195624, -0.0212266445, 0.0251245517, 0.00745686516, 0.0128023643, 0.0328779966, -0.017399352, 0.0163260158, 0.0137627181, -0.00511600263, -0.0113406489, -0.0117855193, -0.0187127776, -0.0200826935, 0.00918691419, -0.00147760322, -0.0286835097, 0.000353512616, -0.00228613638, 0.00444163661, 0.00153586, -0.00733682094, 0.00671188487, -0.00978007447, -0.00977301225, 2.41495236e-05, -0.00513718696, -0.00343714887, 0.0129506541, 0.00157734589, -0.0122515727, -0.0163825061, -0.017780669, 0.0121103441, 0.0186421629, 0.00118543673, -0.0321436077, 0.0063058529, -0.00271158735, 0.0379622243, 0.0219892785, 0.0299404431, 0.00659537129, 0.00481942296, -0.00101684523, 0.0251104292, -0.00323589821, -0.00387672242, -0.00329238968, 0.00292343018, -0.028005613, 0.0108392881, -0.0161424186, 0.00226318673, 0.00114218553, 0.00288459216, -0.00594572024, 0.0141581576, 0.0221163835, 0.035024669, 0.0126823196, -0.00705789449, -0.00105833111, 0.0354483537, 0.00846664887, -0.019461289, -0.0037354941, 0.00689548207, -0.0258306935, -0.00175652956, -0.0169332977, -0.0134449536, -0.00269040302, 0.0279914904, -6.73042086e-05, -0.00370371761, 0.00998485554, 0.0217915587, -0.0145606594, -0.0130424527, -0.0159446988, 0.0115030622, 0.0028475197, -0.0129789, -0.0253222715, -0.00884090457, 0.00485826051, 0.0189104974, 0.0028528159, 0.00242030364, 0.0346574746, -0.022102261, -0.0252375342, -0.00178124453, -0.00456168083, 0.00664480124, 0.0235145465, 0.000268996169, 0.0190093573, -0.00396852102, -0.00456521148, -0.00869967602, -0.0125269685, -0.00483354554, 0.018034881, 0.0188257601, -0.0109169632, -0.000668628723, -0.0169897899, -0.0155633818, 0.00628819922, -0.0155068897, -0.00348128262, 0.00198249519, -0.000378227589, 0.00306642405, 0.01317662, 0.0134378923, -0.000390143745, 0.008826782, -0.00246267207, -0.01689093, 0.00308054686, -0.00906687, 0.0016108877, 0.00722383801, -0.00931402, 0.00296932925, -0.00883384328, 0.014574782, -0.00350246695, -0.000955940457, -0.00605870318, -0.00314939581, -0.0297992155, -0.0160153136, 0.0129294703, -0.00106362719, 0.0321718529, 0.0357308127, -0.0212831367, -0.00732975965, -0.0106203835, 0.00685664406, -0.00428628502, 0.0101543292, -0.00166826171, -0.0152950473, 0.0232179668, -0.00793704204, 0.00284575438, -0.0191364624, -0.00277337478, 0.0206334852, 0.0148572391, -0.00493946718, 0.0265368372, 0.0212548897, -0.00171151292, -0.0212125219, 0.00142993859, -0.00334358495, -0.00602339581, 0.0245596375, -0.0161989089, 0.0307313222, -0.00439926796, -0.00982950442, -0.0138474554, 0.00966709107, 0.0287117548, 0.00711085554, -0.00858669356, 0.00895388704, 0.0240370911, 0.0100413468, 0.00666951621, 0.00209018192, -0.00855844747, -0.000304744637, -0.00756278634, 0.0128941629, -0.0021555, 0.00678603, -0.00033078363, -0.00532431481, -0.0154080298, 0.0306183398, 0.0170886498, 0.0109310867, -0.0081488844, 0.000201802293, -0.000451048545, -0.0130636366, -0.0273559615, -0.0123080648, 0.0105638923, -0.0161989089, -0.00385200744, 0.0132472338, -0.0117784571, -0.00627054553, 0.0244325325, 0.0159305762, 0.0169474203, 0.00761221675, 0.00527135422, 0.0116160447, 0.00716381613, -0.0134520149, -1.42745612e-05, 0.0136003057, -0.00761927804, -0.00732975965, 0.0360415168, -0.012639951, 0.0102108214, 4.94575615e-05, 0.00681780605, 0.0112347277, 0.00466760201, 0.00228966726, 0.019842606, -0.00726620667, 0.00877735205, 0.00671188487, -0.000107079897, -0.0021343159, 0.0151820648, -0.00281750876, 0.00819125306, 0.00698728, -0.00368253328, 0.0092010377, 0.0071885311, -0.00420507882, -0.00861493871, -0.0141299125, 0.0245313924, 0.00702964887, -0.00831129774, -2.71009776e-05, -0.0122656962, 0.0187410228, -0.00467113266, -0.0151679413, 0.0070508332, 0.0113688949, 0.00232850504, -0.00143611734, 0.0132331112, -0.00670129247, 0.00514071761, 0.0217774361, 0.0264097303, 0.0104438486, -0.0122656962, -0.00684252102, 0.0115313074, -0.0038943761, 0.00400029728, 0.0076616467, -0.0270311367, -0.00271688332, -0.00305583188, -0.00665539317, -0.0104297251, -0.00227201357, -0.00980125833, -0.0170745272, 0.00244854926, -0.00995660946, -0.000385289022, 0.00674719177, -0.0172298774, -0.00195071881, 0.00772519922, 0.0179642662, 0.01689093, 0.0327367671, -0.00944112614, 0.00564914, -0.00281574344, -0.0204216428, 0.0176111944, -0.0141016664, -0.00114395085, 0.00906687, -0.00970946, 0.025816571, 0.00516896322, -0.000719824049, -0.0121103441, -0.00624583056, 0.0100484081, 0.00990011822, -0.0122939413, 0.0253505167, 0.0343467742, 0.00803590193, -0.00266215741, -0.0136426734, -0.021494979, 0.00622464623, -0.00269569922, -0.00446635159, -0.0037354941, -0.0208876971, -3.07006485e-05, 0.0190093573, -0.0184585657, -0.0018518588, -0.0107474895, 0.0344597548, 0.00303994352, 0.00985068828, -0.00248209108, 0.00288106152, -0.00164884282, 0.0132754799, 0.00312291528, 0.00442398293, 0.00038175832, 0.013303725, 0.00320412172, 0.019305937, -0.0052960692, -0.0114677548, -0.0056597325, 0.0203933958, -0.0133249098, -0.00111570524, 0.00616462436, -0.00156410574, -0.00129841955, -0.00184303196, -0.00614697067, 0.029912198, -0.00719206175, -0.0153939072, -0.00531725306, -0.0178230368, 0.00812063925, -0.00785936601, -0.00471703196, -0.0101543292, -0.0200120788, 0.00771813793, 0.0123928012, -0.0139745604, 0.00521839317, 0.00592100527, 0.0170745272, -0.0226106849, 0.00457227277, -0.0227377899, 0.00435336865, -0.0136567969, 0.0129365316, 0.0197861139, 0.0107545508, -0.0163825061, -0.00214667339, -0.0037354941, 0.0112700351, 0.0211277846, -0.018797515, -0.00483354554, 0.00495358976, -0.00858669356, -0.00783818215, -0.00213961187, -0.00298874825, 0.0157611016, -0.0211984, -0.0151679413, -0.002575655, -0.00191364624, 0.00488297548, 0.0252940264, 0.0100484081, -0.0194895342, -0.000768371334, 0.0127458731, -0.00704730256, -0.0223847181, 0.0171592645, 0.00303111691, -0.0300534256, 0.00454755779, 0.00135667634, -0.0110087618, 7.30967877e-05, 0.0139957452, 0.00756278634, 0.0232603345, 0.0168344378, 0.0152668012, -0.0122868801, -0.0170180351, -0.00163648534, -0.0113759562, 0.00223317579, -0.00877029, 0.00789467338, -0.00730857532, -0.0293755289, -0.0198849738, -0.00491475221, 0.013021268, 0.0102673126, 0.00460051885, -0.0137062268, -0.0239947233, -0.00100625306, 0.013353155, -0.0128164869, -0.00593865849, -0.00554674957, -0.00564207882, 0.0240370911, 0.00269040302, -0.00894682575, -0.0216644537, 0.0105215237, -0.0101966979, 0.00468878634, 0.00516190194, -0.0107686734, -0.00598455779, -0.0138050867, -0.00400735904, -0.0653040633, 0.0142217111, 0.0416624099, 0.0225400701, -0.00479470799, 0.00388025329, 0.00338595337, -0.0424815342, -0.00858669356, 0.0012489896, -0.00773932226, 0.0161989089, 0.00853020139, 0.0148148704, 0.000109562425, 0.0083395429, 0.0356178284, 0.0026427384, 0.00281574344, 0.00715675438, 0.0084313415, -0.00357661187, 0.00810651667, -0.0246302523, 0.00556440325, 0.00075954455, -0.0159164537, 0.00497477408, -0.0177100543, -0.0062599536, -0.00263920776, 0.0139745604, 0.0250963066, -0.00634469045, -0.0138192093, -0.0143558774, -0.00725914538, -0.0269887671, 0.0090880543, -0.0351094082, -0.000757779228, 0.000808091892, 0.00146877649, -0.012717627, -0.0138545167, 0.00808533188, 0.00581155298, -0.00716734678, -0.0125410911, 0.00481589232, -0.0175405797, 0.027115874, -0.0199414659, -0.00908099301, -0.00254564383, -0.00677543785, -0.00766870799, -0.0199838337, 0.0375102907, 0.00893976446, -0.0175123345, -0.0328779966, -0.0146877645, 0.0135014448, -0.0118985018, 0.0277372785, -0.0111852977, 0.0118067032, 0.00427922374, 0.00262861559, -0.00909511559, 0.00403560465, 0.01035205, -0.00480176928, 0.00453696586, 0.0159164537, 0.00266039209, -0.0151114501, -0.00975182839, -0.0178089142, 0.025971923, 0.0114818774, 0.00320588704, 0.00317764143, 0.0145041673, -0.00207252824, 0.00238676183, 0.00903862435, -0.000325046247, -0.0152385561, 0.0112559116, 0.0135367522, 0.00469937874, -0.00273277168, 0.00945524871, -0.00823362172, -0.0164954904, -0.01233631, -0.0190940946, 0.00380963902, 0.00972358231, 0.00207782444, -0.0115948608, -0.00259330845, 0.0344315097, -0.0085443249, -0.00358720403, 0.028259825, -0.00908099301, 0.00874204468, -0.00320412172, -0.000599338498, -0.0192212, -0.0037354941, 0.0279773679, 0.0303076375, 0.00949055608, -0.00037138685, -0.0041309339, -0.00438867602, 0.00469231699, -0.0161141735, -0.00694844266, -0.0061222557, 0.012971838, -0.00670129247, -0.000287311734, 0.00253152102, -0.0177100543, -0.0108675333, 8.65576294e-05, 0.0147442557, 0.00073924294, -0.0224412102, 0.00795822684, -0.0335841402, -0.0113759562, 0.0316634327, 0.00693431962, 0.0188540053, -0.0123574948, -0.00128606206, -0.00609754073, -0.0179501437, -0.013685042, 0.0110440692, 0.0124210473, 0.00222258363, -0.014828993, -0.019814359, -0.0349681787, -0.00647532707, 0.00057991955, 0.00121633057, -0.0155351358, -0.00434983801, 0.0050595114, -0.0134873223, 0.020223923, -0.0120538529, 0.00496065151, -0.00641883584, -0.0229355097, 0.0157046095, -0.0181902312, 0.031183254, -0.00937757269, -0.0122021427, 0.0129082855, -0.0142428949, 0.0305900946, 0.00431806175, 0.0153091699, 0.00133196136, -0.00687782839, -0.00859375484, 0.00111305714, -0.016509613, -0.0255341139, 0.00349717098, 0.00956823118, -0.0171733871, -0.0104932785, 0.0126187671, 0.0195177794, -0.00421567075, -0.00118102343, -0.0210995395, 0.002556236, -0.0112559116, 0.0105638923, -0.0113900788, -0.00172298774, -0.00679309107, -0.00934932753, 0.0141228503, 0.00461111078, 0.000681868871, 0.00290577649, -0.00586451357, -0.0208735727, -0.0134732, -0.00113777211, 0.00812770054, 0.00992836431, -0.00795116462, -0.00707907882, 0.00657771761, -0.0170039125, -0.0161989089, -0.0143841235, -0.0204357654, 0.0100272242, 0.0126752583, -0.00821243785, -0.0182184782, -0.033725366, 0.00565267121, -0.0111429291, 0.000931225484, 0.0173852295, 0.000887532893, 0.0361262523, 0.00337889208, 0.0135438135, 0.00279455911, -0.00250327517, 0.0143770622, -0.0198567286, 0.0159870666, -0.0242348127, -0.0106203835, 0.00338065741, -0.0123080648, 0.000644355081, 0.00756278634, -0.01030262, 0.0209300648, -0.0124492925, 0.0120962216, 0.000895035686, 0.00684958277, -0.0198002364, -0.00265862653, -0.0143629396, 0.0218056813, 0.0291778091, -0.0141228503, 0.00444516726, -0.00860787742, -0.00708614057, 0.00622111559, -0.0202945359, 0.00296932925, 0.0161565412, -0.0127458731, -0.0212407671, 0.0260566603, 0.0150267128, 0.014066359, -0.00411328, -0.00119161548, -0.0087137986, -0.00460404949, 0.00585392164, -0.00622817734, -0.00202309829, -0.00286517339, -0.000826628122, -0.00795822684, 0.000894152967, -0.000104652529, -0.021113662, 0.00402854336, 0.0161424186, -0.00363310333, 0.00328003196, -0.00281750876, -0.0181761086, -0.0303358827, -0.012004423, -0.0291778091, -0.00660596322, 0.00677190674, -0.0100554693, -0.00743568083, -0.00783818215, -0.0120467916, 0.0156198731, -0.0154362759, 0.0351659, -0.00694844266, -0.00671894616, 0.00102037599, -0.0223705955, -0.012258634, -0.000209856735, -0.00256329752, 0.0111782365, -0.0281185955, 0.00973770581, 0.00103626412, 0.0103308652, -0.00301875942, -0.0208453275, 0.00532431481, -0.00545848161, -0.0165661033, 0.00165060814, 0.00310173118, -0.0275254361, 0.0177383013, -0.00470997067, -0.0138333319, -0.0090103792, 0.00226318673, 0.0147160105, 0.0014758379, -0.00982950442, -0.0137274107, -0.010987578, 0.0230061244, 0.020986557, -0.0016735578, -0.0104720937, -0.0202662908, -0.0108463494, 0.011573676, 0.0038484768, -0.0024838564, -0.00487944484, 0.00993542559, -0.00963178463, 0.0109240254, 0.000880471489, 0.0133814011, -0.00514424825, -0.019461289, 0.00735800527, 0.00546907401, -0.0121385902, 0.00669423118, -0.0135085071, -0.00701905694, 0.0260566603, -0.0216503292, 0.0117502119, 0.00293578766, 0.0242489353, -0.0133814011, -0.0177524239, 0.0104014799, 0.0121950815, -0.00170356885, 0.0252516568, -0.0191364624, -0.0123574948, -0.00652828766, 0.0307313222, 0.00163913332, 0.00445575919, -0.0247856025, -0.0197296217, -0.0213819966, -0.0142570175, 0.00101684523, -0.00177594845, 0.00198602583, -0.0175123345, -0.00874910597, 0.00900331698, -0.012004423, 0.000957705837, 0.0694279373, 0.0263391174, 0.0163260158, -0.0267204344, 0.007287391, -0.0185291804, -0.0154221533, 0.0333581716, 0.013021268, -0.000297462539, -0.00787348952, -0.0138968853, 0.00490769045, 0.00901744049, 0.0103732338, 0.00283869309, -0.0056032408, -0.00394380605, 0.00723796105, -0.00320412172, -0.0246867426, 0.00146789383, 0.000568003394, -0.0181337409, 0.0176111944, 0.00656359503, 0.0119691156, -0.00941288, -0.0306183398, 0.0182608459, -0.00522898557, 0.00335594243, 0.0284151752, 0.020831205, -0.019687254, -0.00818419177, -0.0225541927, -0.0162554011, 0.0108816568, -0.0246584974, 0.00170445151, 0.031211501, 0.00327297067, 0.0117149046, 0.00898919441, -0.00429334678, 0.00913748425, 0.0111570517, 0.00685311342, 0.0021290197, -0.0293190386, -0.00841721892, -0.00689548207, -0.0379339755, 0.00630232226, 0.0211277846, 0.0211277846, 0.000418168784, 0.0135296909, 0.0209724326, -0.00674366113, -0.00287223468, -0.00704377191, 0.00976595096, -0.0020372211, -0.00532784546, -0.00487238355, 0.00376020907, -0.00183420524, -0.00752041815, -0.00646473514, -0.0163260158, 0.0117502119, 0.00226318673, -0.00498889713, -0.000945348293, 0.00761221675, -0.0106486296, 0.00771813793, -0.00735800527, -0.0190093573, 0.0144617995, -0.0127529344, -0.00213255035, 0.000715852, 0.0123504326, -0.0208029598, -0.0245596375, 0.00303641288, -0.00418389449, 0.000765281962, 0.0244466551, -0.0184020754, 0.025816571, 0.00340184174, -0.0109734554, -0.016128296, 0.0049571204, 0.00399323599, -0.00267098425, 0.0267204344, 0.0137132881, 0.00264626904, 0.0130636366, -0.0178654063, 0.00568091683, -0.0112064816, 0.00722383801, 0.000307172, -0.000549025834, 0.0149702216, 0.000978007447, 0.00917279162, 0.0152385561, 0.00289165368, 0.0160294361, -0.00239735399, -0.00905274693, 0.00989305694, -0.00917279162, 0.00896801054, 0.0052960692, -0.000286870403, -0.00306112785, 0.00893976446, -0.00315292645, 0.00631644484, -0.00421567075, 0.0208876971, -0.0104367863, -0.012590521, -0.0185009353, 0.00921516, 0.0116725359, 0.0116725359, 0.00452990457, -0.0198284816, -0.0088055972, -0.00527135422, 0.0107474895, 0.0136567969, 0.0168344378, -0.00844546501, 0.0254211314, 0.0277655236, 0.0158458389, -0.00406031962, 0.00294461427, 0.0232885815, -0.0105497697, -0.0193906743, 0.0117713958, 0.00228966726, -0.00156322308, 0.00419448689, 0.00493946718, -0.00189599267, -0.021876296, 0.0212972593, -0.0151820648, -0.00864318479, 0.000502685201, 0.0185715482, -0.00194542273, 0.0116866594, -0.0051936782, 0.0195460245, 0.0138262706, 0.0225683153, 0.0161847863, 0.013557937, 0.0127246883, 0.0013249, 0.0249692, -0.0223564729, -0.0176818091, 0.0116654746, 0.0121174064, -0.0129435929, -0.0368041508, 0.00334358495, 0.00824774522, -0.00417330256, 0.0321436077, 0.0136991655, -0.012209204, -0.0150690814, 0.0115595534, 0.021876296, 0.00936345, -0.00489709852, -0.0170886498, -0.011241789, -0.0229778774, -0.00519014755, -0.015746979, 0.0250256918, -0.00185892021, 0.00320588704, 0.00761221675, 0.0228790175, -0.00998485554, 0.00345833297, 0.00531019177, -0.00279455911, 0.0166790858, -0.00112982804, 0.0124281086, -0.00323589821, -0.00885502715, 0.00036962147]
|
17 Jan, 2025
|
Frequency of an element in an array
17 Jan, 2025
Try it on GfG Practice
Given an array, a[], and an element x, find a number of occurrences of x in a[].
Examples:
Input : a[] = {0, 5, 5, 5, 4} x = 5Output : 3Input : a[] = {1, 2, 3} x = 4Output : 0
Unsorted ArrayThe idea is simple, we initialize count as 0. We traverse the array in a linear fashion. For every element that matches with x, we increment count. Finally, we return count.
Below is the implementation of the approach.
C++
// CPP program to count occurrences of an
// element in an unsorted array
#include<iostream>
using namespace std;
int frequency(int a[], int n, int x)
{
int count = 0;
for (int i=0; i < n; i++)
if (a[i] == x)
count++;
return count;
}
// Driver program
int main() {
int a[] = {0, 5, 5, 5, 4};
int x = 5;
int n = sizeof(a)/sizeof(a[0]);
cout << frequency(a, n, x);
return 0;
}
Java
// Java program to count
// occurrences of an
// element in an unsorted
// array
import java.io.*;
class GFG {
static int frequency(int a[],
int n, int x)
{
int count = 0;
for (int i=0; i < n; i++)
if (a[i] == x)
count++;
return count;
}
// Driver program
public static void main (String[]
args) {
int a[] = {0, 5, 5, 5, 4};
int x = 5;
int n = a.length;
System.out.println(frequency(a, n, x));
}
}
// This code is contributed
// by Ansu Kumari
Python
# Python program to count
# occurrences of an
# element in an unsorted
# array
def frequency(a, x):
count = 0
for i in a:
if i == x: count += 1
return count
# Driver program
a = [0, 5, 5, 5, 4]
x = 5
print(frequency(a, x))
# This code is contributed by Ansu Kumari
C#
// C# program to count
// occurrences of an
// element in an unsorted
// array
using System;
class GFG {
static int frequency(int []a,
int n, int x)
{
int count = 0;
for (int i=0; i < n; i++)
if (a[i] == x)
count++;
return count;
}
// Driver program
static public void Main (){
int []a = {0, 5, 5, 5, 4};
int x = 5;
int n = a.Length;
Console.Write(frequency(a, n, x));
}
}
// This code is contributed
// by Anuj_67
JavaScript
<script>
// C# program to count occurrences of an element in an unsorted array
function frequency(a, n, x)
{
let count = 0;
for (let i=0; i < n; i++)
if (a[i] == x)
count++;
return count;
}
let a = [0, 5, 5, 5, 4];
let x = 5;
let n = a.length;
document.write(frequency(a, n, x));
</script>
PHP
<?php
// PHP program to count occurrences of an
// element in an unsorted array
function frequency($a, $n, $x)
{
$count = 0;
for ($i = 0; $i < $n; $i++)
if ($a[$i] == $x)
$count++;
return $count;
}
// Driver Code
$a = array (0, 5, 5, 5, 4);
$x = 5;
$n = sizeof($a);
echo frequency($a, $n, $x);
// This code is contributed by ajit
?>
Output3Time Complexity: O(n) Auxiliary Space: O(1)
Sorted ArrayWe can apply methods for both sorted and unsorted. But for a sorted array, we can optimize it to work in O(Log n) time using Binary Search. Please refer to below article for details.Count number of occurrences (or frequency) in a sorted array.
If there are multiple queries on a single array
We can use hashing to store frequencies of all elements. Then we can answer all queries in O(1) time. Please refer Frequency of each element in an unsorted array for details.
CPP
// CPP program to answer queries for frequencies
// in O(1) time.
#include <bits/stdc++.h>
using namespace std;
unordered_map<int, int> hm;
void countFreq(int a[], int n)
{
// Insert elements and their
// frequencies in hash map.
for (int i=0; i<n; i++)
hm[a[i]]++;
}
// Return frequency of x (Assumes that
// countFreq() is called before)
int query(int x)
{
return hm[x];
}
// Driver program
int main()
{
int a[] = {1, 3, 2, 4, 2, 1};
int n = sizeof(a)/sizeof(a[0]);
countFreq(a, n);
cout << query(2) << endl;
cout << query(3) << endl;
cout << query(5) << endl;
return 0;
}
Java
// Java program to answer
// queries for frequencies
// in O(1) time.
import java.io.*;
import java.util.*;
class GFG {
static HashMap <Integer, Integer> hm = new HashMap<Integer, Integer>();
static void countFreq(int a[], int n)
{
// Insert elements and their
// frequencies in hash map.
for (int i=0; i<n; i++)
if (hm.containsKey(a[i]) )
hm.put(a[i], hm.get(a[i]) + 1);
else hm.put(a[i] , 1);
}
// Return frequency of x (Assumes that
// countFreq() is called before)
static int query(int x)
{
if (hm.containsKey(x))
return hm.get(x);
return 0;
}
// Driver program
public static void main (String[] args) {
int a[] = {1, 3, 2, 4, 2, 1};
int n = a.length;
countFreq(a, n);
System.out.println(query(2));
System.out.println(query(3));
System.out.println(query(5));
}
}
// This code is contributed by Ansu Kumari
Python
# Python program to
# answer queries for
# frequencies
# in O(1) time.
hm = {}
def countFreq(a):
global hm
# Insert elements and their
# frequencies in hash map.
for i in a:
if i in hm: hm[i] += 1
else: hm[i] = 1
# Return frequency
# of x (Assumes that
# countFreq() is
# called before)
def query(x):
if x in hm:
return hm[x]
return 0
# Driver program
a = [1, 3, 2, 4, 2, 1]
countFreq(a)
print(query(2))
print(query(3))
print(query(5))
# This code is contributed
# by Ansu Kumari
C#
// C# program to answer
// queries for frequencies
// in O(1) time.
using System;
using System.Collections.Generic;
class GFG
{
static Dictionary <int, int> hm = new Dictionary<int, int>();
static void countFreq(int []a, int n)
{
// Insert elements and their
// frequencies in hash map.
for (int i = 0; i < n; i++)
if (hm.ContainsKey(a[i]) )
hm[a[i]] = hm[a[i]] + 1;
else hm.Add(a[i], 1);
}
// Return frequency of x (Assumes that
// countFreq() is called before)
static int query(int x)
{
if (hm.ContainsKey(x))
return hm[x];
return 0;
}
// Driver code
public static void Main(String[] args)
{
int []a = {1, 3, 2, 4, 2, 1};
int n = a.Length;
countFreq(a, n);
Console.WriteLine(query(2));
Console.WriteLine(query(3));
Console.WriteLine(query(5));
}
}
// This code is contributed by 29AjayKumar
JavaScript
<script>
// JavaScript program to answer
// queries for frequencies
// in O(1) time.
var hm = new Map();
function countFreq(a, n)
{
// Insert elements and their
// frequencies in hash map.
for (var i=0; i<n; i++)
{
if(hm.has(a[i]))
{
hm.set(a[i], hm.get(a[i])+1);
}
else
{
hm.set(a[i], 1);
}
}
}
// Return frequency of x (Assumes that
// countFreq() is called before)
function query(x)
{
if(hm.has(x))
{
return hm.get(x);
}
return 0;
}
// Driver program
var a = [1, 3, 2, 4, 2, 1];
var n = a.length;
countFreq(a, n);
document.write( query(2) + "<br>");
document.write( query(3) + "<br>");
document.write( query(5) + "<br>");
</script>
Output2
1
0Time complexity: O(n) where n is the number of elements in the given array.Auxiliary space: O(n) because using extra space for unordered_map.
Using Library MethodIn this approach I am using Language functions only with below conditions.
Conditions :
To find the counts of digit we can’t use count_if() and count() functions.Use STL and lambda functions only.Examples :
Input : v = {7,2,3,1,7,6,7,1,3,7} digit = 7
Output : 4
Input : v = {7,2,3,1,7,6,7,1,3,7} digit = 10
Output : 0
Explanation :
To find the occurrence of a digit with these conditions follow the below steps,
1. Use partition(start, end, condition) function to get all the digits and return the pointer of the last digit.
2. Use the distance(start , end) to get the distance from vector starting point to the last digit pointer which partition() function returns.
So, distance() function returns the occurrence of the digit and we can print it.
Below is the implementation of the above approach:
C++
#include <iostream>
using namespace std;
#include <algorithm>
#include <vector>
int main()
{
int digit;
digit = 7; // Specify the digit as a input to find the
// occurrence of digit
vector<int> v{ 7, 2, 3, 1, 7, 6, 7, 1, 3, 7 };
auto itr
= partition(v.begin(), v.end(),
[&digit](int x) { return x == digit; });
int count = distance(v.begin(), itr);
cout << count << endl;
return 0;
}
Java
import java.util.*;
import java.util.stream.*;
class Main {
public static void main(String[] args) {
int digit;
digit = 7; // Specify the digit as a input to find the
// occurrence of digit
List<Integer> v = Arrays.asList(7, 2, 3, 1, 7, 6, 7, 1, 3, 7);
List<Integer> partitioned = v.stream().filter(x -> x == digit).collect(Collectors.toList());
int count = partitioned.size();
System.out.println(count);
}
}
Python
# Specify the digit as an input to find the occurrence of digit
digit = 7
v = [7, 2, 3, 1, 7, 6, 7, 1, 3, 7]
# Use the filter function to find all occurrences of the digit in the list
itr = filter(lambda x: x == digit, v)
# Count the number of occurrences
count = len(list(itr))
print(count)
C#
using System;
using System.Collections.Generic;
using System.Linq;
public class GFG
{
static public void Main()
{
int digit;
digit = 7; // Specify the digit as a input to find the
// occurrence of digit
List<int> v = new List<int> { 7, 2, 3, 1, 7, 6, 7, 1, 3, 7 };
var partitioned = v.Where(x => x == digit).ToList();
int count = partitioned.Count();
Console.WriteLine(count);
}
}
JavaScript
let digit;
digit = 7; // Specify the digit as a input to find the
// occurrence of digit
let v = [7, 2, 3, 1, 7, 6, 7, 1, 3, 7];
let itr = v.filter(x => x === digit);
let count = itr.length;
console.log(count);
Output4Time Complexity: O(N)Auxiliary Space: O(1)
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array
|
https://www.geeksforgeeks.org/find-frequency-number-array/?ref=ml_lbp
|
Pandas
|
Frequency of an element in an array
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00876018684, -0.00985611696, -0.00943516381, 0.017084904, 0.000811968406, 0.0136592137, 0.000234064632, 0.0329504944, -0.00711629074, 0.0124907056, -0.00955128856, 0.00538893, 0.00481919153, -0.0313537754, 0.0124399, -0.0173171535, -0.000141300654, -0.0103786802, -0.0104367426, -0.0314699, -0.0125415102, 0.00804166216, -0.0591076724, 0.0393373743, -0.0327763073, 0.0154301217, -0.00700742332, -0.0146825658, -0.0248943157, 0.0186235607, -0.0241249874, 0.010385938, -0.0427050032, -0.040585719, -0.033850465, 0.0140801677, 0.00415510079, 0.000895886915, -0.0102552967, -0.00193602301, -0.000134156231, -0.00908678863, -0.00599495787, -0.0191606395, 0.00696750544, -0.00592238, 0.0241104718, -0.0172590911, 0.00237693544, -0.0251265671, 0.00651752064, -0.0333279, 0.0252862386, 0.0283054914, -0.0286248345, 0.00183532073, -0.0333569311, 0.00831020158, -0.010139172, -0.00818681903, 0.0178687479, -0.00604939135, 0.00727959163, -0.0105310939, -0.00333315297, 0.0229637362, -0.0454920046, 0.0288716014, 0.0291473977, 0.0205976889, -0.0409050621, 0.0315279625, 0.0355923399, 0.00592238, -0.0281748511, 0.00419864804, -0.0119028222, -0.00520748459, -0.041398596, 0.0370729342, -0.021831518, 0.00494257407, -0.0145519255, -0.0139713, 0.00599495787, -0.0158655904, -0.0242556278, -0.0437501296, 0.0152559336, 0.042008251, -0.0458113477, 0.0167074967, 0.0097690234, 0.000969825953, -0.0323408395, 0.0246475507, 0.036579404, -0.00350915501, -0.0124181267, 0.0712427422, 0.0256926771, -0.00643768487, -0.000223404713, -0.0177816544, 0.0246185195, -0.0126431193, -0.0314118378, -0.00456153881, 0.0234137215, 0.014675308, 0.0469145365, -0.00842632726, -0.0125415102, 0.0181445461, 0.0140801677, 0.00619817665, 0.015952684, -0.086745441, -0.00557037536, 0.014639019, 0.0109302746, 0.0185364671, 0.0510660075, 0.0519950092, -0.02438627, 0.0479016, 0.00614011427, 0.00531272311, -0.0126068303, -0.0114673525, 0.00152232742, -0.0123600643, 0.011060915, -0.01247619, 0.0267958641, 0.0263168495, 0.0126794083, 0.03672456, 0.0243282076, -0.0252281763, 0.00485185161, -0.0149801364, -0.0394535, 0.0258523487, -0.00603124686, 0.0042857416, -0.0245894883, 0.033037588, -0.0276232567, 0.00596592668, -0.0104367426, -0.0394535, 0.0148422383, 0.000888629118, 0.00827391259, -0.00497523462, -0.00293397298, -0.027681319, -0.0184784047, -0.0315860249, -0.0117504075, -0.0238346756, 0.0133616431, -0.0353020281, -0.0168091077, 0.021337986, 0.00148240943, -0.015313996, -0.0281022713, 0.0236604866, 0.0111189773, 0.0297135077, 0.0376245305, 0.022615362, -0.0152123868, 0.0267378017, 0.0171719976, -0.00232975977, 0.0166494343, -0.0276668034, 0.00326420367, -0.0253297854, -0.00351822749, -0.0256055836, 0.0189574212, -0.00218823226, -0.0138334017, -0.0476983823, -0.00449258927, 0.0197412651, -0.0211492814, 0.00645220047, 0.0480467565, 0.0274345521, 0.0252426919, -0.00810698327, -0.0353891216, 0.00312993419, -0.0262442715, 0.0361439362, -0.030802181, -0.0310924929, -0.0156478565, 0.00952951517, 0.00728684943, -0.0355633087, -0.0416308455, -0.0118375011, 0.0274635833, 0.0321376175, -0.0404986255, 0.0681073666, -0.0273474585, 0.0143632218, 0.0181590617, 0.0190590303, -0.0100883674, 0.0351278409, 0.0185219515, -0.0141309723, 0.0215702355, 0.00895614736, 0.0400341265, -0.00879647583, -0.010030305, -0.0486564152, -0.00637962203, 0.00696750544, -0.00843358506, -0.03785678, 0.0220347364, 0.00289224065, -0.0236604866, -0.00504418369, 0.0344601199, -0.0423566289, -0.0393664055, 0.0202638283, 0.0245604571, 0.0172881223, 0.00270716613, 0.0044272691, 0.0116996029, -0.011024626, 0.0122439396, 0.0158946216, -0.0360568427, -0.00643042708, 0.0232540499, 0.0232395343, 0.000209682898, 0.000364251755, 0.0335891843, -0.00989966374, -0.00661550136, -4.92170802e-05, 0.00464137457, 0.0224992372, 0.00255475193, -0.00557400426, -0.0162575133, 0.00165841146, -0.041398596, 0.00806343649, 0.010596415, -0.022368595, 0.0328053385, -0.0509789139, 0.023500815, -0.0160397775, 0.0299312416, -0.0245749727, -0.0229056738, -0.0410211869, 0.0121132983, -0.005222, -0.022542784, -0.0216863602, 0.024212081, 0.0104512582, 0.00106327038, 0.0358536206, 0.0235153306, -0.000842360547, -0.00463411678, -0.00770780304, -0.0308892746, -0.022615362, -0.0226879399, -0.0150817465, 0.0157349501, -0.0229637362, -0.0144720897, -0.0159672, -0.00788924843, -0.0154591529, -0.0369858406, -0.0280006621, -0.0158220436, -0.047814507, -0.041543752, -0.0643333, 0.00347649492, -0.0107851177, -0.0242991745, -0.0315279625, -0.00400268659, -0.0440694727, 0.00386841712, -0.00889082719, 0.00767877186, -0.0415147208, -0.0277829282, -0.0326892138, -0.0232830811, -0.00185618701, 0.00525828917, 0.0135068, -0.0193928909, -0.0307150874, -0.0239653159, -0.0262733027, -0.00619091885, 0.061255984, -0.00465589, -0.0023606054, -0.0222234391, 0.0124181267, -0.00286139478, -0.0231959876, -0.0303376801, -0.00931903906, -0.0201041568, 0.0107851177, 0.00668807933, -0.0192767661, -0.0181590617, 0.0302505866, 0.0255039725, 0.00570101617, 0.00483733602, 0.0526917614, -0.00289586955, -0.00351459859, -0.00884728, 0.0141600035, -0.0279861465, -0.00883276481, -0.0100883674, 0.00642316928, 0.001249252, -0.00734854117, 0.0212218612, -0.0183187332, 0.0142035503, -0.0212799236, -0.0427630655, -0.0463629439, 0.0262878183, -0.0327763073, 0.0139059797, 0.0198719054, -0.0463339128, 0.00439460902, 0.00189247611, -0.0438952856, 0.00250031846, 0.00865131896, 0.0129261743, 0.00108504377, -0.0178832635, -0.00955128856, -0.0228766426, -0.0207863916, -0.0718814284, -0.0204815622, 0.0260991137, -0.0239362847, 0.0465371311, 0.00445630029, -0.0326601826, 0.0500208847, 0.0142180659, -0.0199009385, 0.0133035807, 0.0423856601, -0.0434017517, 0.00404623384, -0.00343294791, 0.0134559954, -0.0423856601, 0.0300764, -0.0238056444, -0.00794731081, 0.0343730263, 0.0279571153, -0.0251846295, -0.00364161027, -0.0105456095, -0.0486564152, 0.0356794335, -0.00907953084, 0.0236024242, -0.0291328821, -0.0264474899, 0.0266507082, -0.0152269024, 0.00914485101, 0.0203944687, 0.0050369259, 0.0142398393, 0.027187787, -0.0244878791, 0.0316440873, 0.00628527068, -0.0109230168, -0.0494983196, 0.0184203424, 0.0330666192, -0.00833197497, -0.0103641646, 0.00862228777, -0.0123673221, 0.0617204867, -0.0547820106, -0.00610019639, 0.00121477735, 0.0111189773, 0.0135358311, -0.0240524095, -0.0448823497, -0.00361620798, 0.022470206, 0.00460871449, -0.00383938593, -0.00383212813, 0.00968193, 0.00764248241, -0.0233846903, -0.0544046052, 0.00735579897, 0.0353600904, -0.00353818643, -0.0183767956, 0.00581351249, 0.041079253, -0.0190880615, 0.0266071614, -0.0339665897, 0.00952225737, -0.0213960484, -0.0247927066, -0.019000968, -0.0371019654, 0.0397147797, 0.00699290773, 0.0672364309, -0.0225573, 0.0219621584, 0.00594415329, 0.0252136607, 0.00647760276, -0.00401357329, 0.0210331567, 0.0138261439, 0.0321085863, 0.0113657434, -0.000645492226, -0.0298441481, -0.0187542029, 0.0244588479, -0.0416018143, -0.0148785273, 0.0166494343, -0.00423493702, -0.0267523173, 0.00998675823, -0.012193135, -0.00322428579, -0.0319924615, 0.0281313043, -0.0181735773, -0.0199735165, -0.0123745799, 0.0181445461, -0.0203799531, 0.0443888158, -0.00964564085, -0.0113149388, 0.000803803385, -0.00647760276, 0.0310054, -0.0269845687, -0.00584254367, -0.0104294848, -0.00566472718, -0.0796618164, -0.035911683, 0.0274055209, 0.0351568721, 0.0430824086, -0.0239653159, -0.0213525016, 0.0212218612, -0.0166639499, -0.0715330541, -0.00640502479, 0.0179413259, 0.0310924929, -0.0222089235, -0.0411082841, -0.00283962139, -0.00958032, 0.0351278409, -0.00854971, 0.0185654983, 0.00286683813, -0.00866583455, -0.00845535845, 0.00447081588, 0.0146607924, 0.0218460336, 0.0090505, 0.0241975654, -0.0168526545, 0.020888, 0.000880917709, 0.0170268416, 0.00937710144, -0.00550868409, -0.00215194304, 0.0185074359, -0.00981257, -0.00189610501, 0.00518934, -0.0337633714, 0.0187396873, 0.0273184273, 0.00444904249, 0.00839003827, 0.00807795208, 0.0145156365, -0.0243572388, 0.0174187645, -0.0248217378, 0.00406800723, -0.00677517336, 0.0129552055, 0.0312086176, -0.00495346077, -0.0106980242, 0.0360858738, -0.00192150741, 0.0112060709, 0.00446355809, 0.0294522271, 0.00525466027, 0.00143795519, 0.0255039725, 0.00683323573, 0.00371055957, 0.0315279625, 0.0220637675, 0.03785678, 0.0100157894, -0.0152994804, -0.00259467, 0.0166639499, -0.0299602728, -0.00233520311, 0.0197412651, -0.0138261439, 0.00333678187, -0.0473500043, 0.00602398906, 0.0114963837, 0.00300473673, -0.0314699, -0.0123890955, 0.0297280233, 0.0126794083, -1.97321933e-05, 0.00742837694, -0.0189719368, -0.020771876, -0.0298441481, -0.0261426605, -0.014319675, -0.0229201894, 0.00369785842, 0.00590060605, 0.0478725694, 0.0222815014, 0.0247491598, -0.0479306318, -0.00519659789, -0.0245459415, 0.0401502512, -0.0247346442, -0.0266071614, 0.0249378625, 0.0266942549, 0.0133035807, 0.00962386653, 0.0222234391, 0.00981982797, 0.010915759, 0.00777312322, 0.00891260058, 0.0137317916, -0.0689202398, -0.0047212108, 0.034982685, 0.0123528065, 0.022542784, 0.0230798628, -0.00567561388, 0.021976674, -0.0186235607, -0.0219476428, -0.0150527153, -0.0405276567, -0.0116923451, 0.0398889706, 0.00202856027, -0.00529094972, -0.0324279331, -0.0173897333, -0.000190517734, -0.0283635538, 0.0160688087, -0.0110972039, -0.00226806826, 0.00355995982, -0.00688041188, 0.0192477331, -0.00258741225, 0.00868035, 0.00968193, -0.010422227, -0.0078094122, -0.00783118606, -0.0162429977, 0.0653203651, -0.0104512582, -0.00843358506, -0.0395696238, 0.00939161703, 0.0148785273, -0.0057917391, 0.0116996029, 0.0335891843, 0.0356794335, 0.00288861175, 0.00258015445, -0.0337924026, 0.0256781615, 0.00163300906, 0.0041296985, 0.0233992059, -0.0188412964, 0.0021501286, 0.0108649535, -0.0127810175, -0.00143614074, -0.0205105934, 0.00421316363, -0.0305408984, 0.030627992, 0.0253152698, -0.00359080546, -0.00934807, 0.00109139446, -0.00632518856, -0.0111552663, -0.0126503771, -0.0441855974, 0.00642679818, -0.000103140403, 0.0131656826, 0.00238237879, 0.0180864837, -0.00146063592, -0.0139350109, -0.00996498484, -0.00494983187, -0.0363181233, -0.00793279521, -0.0277974438, 0.0174187645, -0.0443597846, 0.00497886352, 0.0386406258, 0.036202, -0.00226625381, -0.0237185508, 0.00350189721, 0.0347794667, -0.0185219515, 0.00395551091, -0.00522925798, -0.0152123868, -0.0113149388, -0.029669961, -0.0157204345, 0.0167074967, -0.00911582, 0.0182606708, -0.0117721809, -0.0232540499, 0.00923920237, 0.00333859632, 0.00303739682, 0.0223976262, -0.00177725824, -0.034634307, -0.00329504954, -0.00918114, 0.0178832635, -0.0196251404, 0.0435469076, 0.0222815014, 0.00857874099, -0.0283490382, 0.0458403789, -0.015313996, 0.000317756349, -0.0217153914, 0.00312811974, 0.00190880615, -0.0127084395, 0.00116125087, -0.000136424307, 0.0116052516, -0.0276232567, 0.0147188557, -0.00306461379, -0.0067534, -0.0218750648, -0.00215194304, -0.00350915501, -0.00654292293, 0.0224992372, 0.0204235, 0.00902146846, 0.00854971, 0.0198573899, 0.0200460944, -0.02062672, 0.00942790601, -0.00909404643, 0.022368595, 0.0294812582, -0.0141672613, 0.005033297, -0.0124326423, 0.0192477331, 0.00141346012, 0.0194799844, 0.0226589087, 0.00491717178, 0.0183767956, -0.0337924026, -0.00391922193, -0.0204815622, 0.0148930429, -0.0329504944, -0.00149511057, 0.00809972547, 0.00121387013, 0.021091219, 0.0276522879, 0.00330049288, -0.0231234096, -0.0137971127, -0.0283780694, 0.0183332488, 0.00746829482, 0.00440549571, 0.00374140521, -0.0388438441, 0.0450275056, 0.00889082719, 0.00722878706, 0.0145011209, -0.0207283292, 0.0233411435, 0.0131801981, 0.0429662839, -0.00643768487, -0.00623446563, 0.0183477644, 0.00363253802, 0.0224992372, 0.00271623838, -0.0201477036, -0.011271392, -0.0360568427, 0.0307441186, -0.0357374959, 0.0116415406, -0.0158510748, -0.0304247737, -0.00476838648, 0.00283417804, -0.00585705927, -0.00532361, -0.00298840669, 0.0145083787, -0.010066594, 0.00552319968, -0.0230217986, 0.00581351249, -0.0285522565, -0.00259104115, -0.00931903906, 0.00902146846, -0.0316731185, 0.0124471579, 0.0145301521, -0.0266797394, 0.0151543245, 0.0476112887, -0.0139204953, -0.0279571153, 0.0180719681, 0.00810698327, -0.0507176332, 0.0364052169, -0.00494620297, 0.00301380898, 0.0106109306, -0.00134813972, 0.0240959562, 0.00541433226, -0.00968193, -0.0203073751, 0.0280151777, 0.0144285429, 0.0341407768, -0.0050224103, 0.0121568451, 0.00900695287, -0.0288425703, 0.0219621584, 0.0108286645, -0.0310634617, 0.0142616127, -0.00812149886, 0.0195961092, 0.0134051898, -0.0373051874, 0.0122439396, -0.0059405244, -0.0176364984, 0.0284216162, -0.0220347364, -0.0281748511, -0.00153502857, 0.00373414741, -0.0160978399, -0.0321956798, -0.00386115932, 0.0328343697, 0.00793279521, 0.0267232861, -0.0140946833, -0.0220782831, -0.0135430889, -0.00884728, -0.0039047061, -0.0220492519, 0.028392585, -0.00890534278, 0.0105310939, -0.0149801364, 0.00273982645, 0.0385825634, -0.0115762204, -0.00880373362, 0.00382487, 0.00600947347, -0.0334149934, -0.0474080704, -0.0372180901, 0.0028904262, 0.0160107464, -0.0162139665, 0.01903, -0.0515595414, 0.0188267808, 0.0286538657, 0.0108214067, -0.0283054914, 0.0154881841, -0.00792553741, 0.00379221, -0.00788199063, 0.0183477644, 0.0026763205, 0.0122802285, -0.0123528065, 0.0365503728, 0.00607116474, -0.00876018684, 0.0227314867, 0.0124689313, 0.0103061022, -0.00521474238, 0.0151107777, 0.0199735165, 0.0222089235, -0.0201912504, -0.0435469076, 0.0128390808, 0.0127156973, -0.0291909445, -0.0229492206, 0.0041296985, -0.0235153306, -0.0161704198, 0.0237620976, -0.00343839149, 0.0269700531, -0.010422227, -0.0134124476, -0.041050218, 0.0109012434, -0.0156914033, -0.0094569372, 0.00931178, 0.0301054306, 0.00665904814, -0.0372180901, -0.0317311808, 0.0135648623, -0.0260700826, -0.0266942549, -0.0482499748, -0.0434307829, 0.0381180607, 0.0682234913, 0.0115108993, -0.01031336, 0.00168199942, -0.0146099878, -0.00596592668, -0.00848439, 0.0203218907, 0.0188412964, 0.0150672309, 0.0014524709, 0.0196396559, -0.00839729607, 0.00152777077, -0.0163881537, -0.020771876, 0.00322247134, -0.00381035451, 0.00839729607, -0.0212944392, -0.0371309966, -0.0224266592, 0.003748663, -0.0170558728, -0.016126873, 0.0249088313, -0.0280442089, -0.00356540317, -0.0146245034, 0.0127374707, -0.0120116891, 0.00304465485, -0.00340028782, -0.0248072222, 0.0469145365, -0.0194509532, -0.0253733322, -0.00621995, 0.0214976575, -0.0248798, 0.0232685655, 0.0094496794, -0.00087910326, -0.0038974483, 0.0107343132, 0.0230217986, -0.0204235, -0.00417324528, 0.00422405032, -0.0117358919, 0.0373342186, -0.00253116409, -0.0274635833, -0.0105310939, 0.0185800139, 0.013151167, -0.0305699296, -0.0270716622, -0.0159381684, -8.34649109e-05, 0.0221363455, 0.00597681338, -0.0105456095, 0.00801263098, 0.00185437256, 0.0106036728, -0.00230254279, 0.00210113847, -0.0184058268, -0.0131584248, -0.0179558415, 0.00883276481, 0.00347830937, 0.00968193, 0.0177671388, -0.0222815014, 0.00405712053, 0.053911075, 0.0177381076, 0.00462323, -0.0191896707, -0.0275797099, 0.0196832027, 0.00674977107, 0.0165768564, -0.00239689439, 0.001006115, 0.0246040039, 0.00783118606, 0.00669896603, 0.00275615649, -0.00386478822, 0.0208009072, 0.0167074967, 0.00507321488, -0.00997224264, -0.0409340933, 0.000909495342, -0.00918114, 0.0203364063, -0.00455791, 0.0158220436, 0.00877470244, 0.00506958598, -0.00455428101, 0.00839729607, -0.0105601251, 0.013151167, 0.0253733322, 0.00613285648, 0.00632881746, 0.00155498751, 0.0133035807, -0.000586522452, 0.0182026085, 0.0169978105, -0.00275071315, 0.0145809567, 0.00914485101, -0.0197557807, -0.00120570511, -0.00225899601, 0.00640865369, 0.00171919574, 0.0131729404, 0.00807795208, -0.0108939847, 0.0224411748, 0.0173461847, 0.0132818073, -0.0104077114, -0.0144140273, 0.0126648927, 0.0306570251, -0.0142906439, 0.00644131377, -0.00226988271, -0.00923194457, -0.0291473977, 0.00969644543, -0.0191170927, -0.00424945261, 0.0179413259, 0.0078094122, -0.0244733635, 0.0264039431, 0.021410564, 0.00026196189, -0.0195815936, -0.00493531628, -0.0115181571, -0.0136301825, 0.0295828674, -0.0131293936, -0.00550505519, -0.00212109741, 0.0796618164, 0.0102988444, 0.0026654338, 0.0128245652, -0.0041333274, -0.0027307542, -0.0150672309, 0.0151688401, 0.00147333706, -0.00672799768, 0.00216464419, -0.00278337323, 0.0142543549, 0.0266652238, -0.00336399884, 0.00710177515, -0.000290539523, 0.0205105934, -0.0115979938, -0.0310344305, -0.0119028222, 0.0039010772, 0.00335311191, 1.8002791e-05, 0.0192477331, 0.0117213763, -0.00801263098, -0.0221363455, -0.0288280547, -0.00271986728, 0.0185219515, -0.0247491598, -0.0166494343, 0.0107343132, -0.0120407203, 0.000720792101, 0.0161704198, 0.0156768877, -0.0282474291, 0.0400921889, -0.00309364498, 0.00467403512, -0.0288425703, 0.011873791, 0.0168381389, 0.00707637286, -0.0268829595, 0.00717798201, -0.0154736685, 0.00859325659, -0.011663314, 0.00987063255, -0.0232105032, -0.00687315408, 0.0229782518, 0.0042857416, -0.0123745799, -0.0209605787, -0.000550686964, -0.000606027839, -0.0105165783, -0.0223831106, 0.0172155444, -0.0136374403, -0.0115399314, -0.000144022328, -0.042530816, 0.00717072422, 0.00371963182, 0.000680420431, -0.0298151169, 0.00567198498, 0.0169542637, 0.000492624415, -0.00762070902, 0.00601310236, 0.0023714921, 0.0176219828, -0.0193493441, 0.0041405852, -0.00621269224, 0.0198573899, -0.0148204649, -0.000471304578, -0.00584980147, -0.00899243634, -0.0144648319, -0.00792553741, -0.0228040647, -0.00385027262, -0.0079836, 0.00183622807, 0.00365249696, -0.0271297246, 0.00615463, 0.00706911506, 0.0185219515, 0.000615100085, 0.000383757142, -0.00347105158, -0.0318763368, -0.00679331785, 0.0116415406, 0.0056211804, -0.0178977791, -0.00874567125, -0.00706548616, -0.0109085012, 0.0265636146, 0.0131439092, 0.0211783145, 0.0181880929, 0.00713443523, -0.0106617352, 0.0291619133, 0.0167945921, -0.00941339, -0.021410564, -0.0203799531, 0.0133398697, -0.0085642254, 0.0115036415, 0.0212799236, -0.0176800452, -0.0053199809, -0.0191751551, -0.0104657738, -0.00966015644, 0.00894889, -0.0109012434, -0.0232975967, 0.0204235, 0.0114092901, -0.00020718803, -0.0148930429, -0.000612378411, 0.0133906743, 0.0154156061, -0.00660098577, 0.000845082221, 0.00423493702, 0.0486854464, 0.00205396255, -0.0173171535, 0.00698565, -0.0106399618, 0.00522562908, -0.00143614074, 0.0190735459, 0.0057699657, -0.034169808, -0.0106544774, -0.000868670119, 0.0166929811, 0.0126286037, -0.0253152698, 0.0108794691, 0.00611834088, 0.00220093341, 0.0114673525, 0.000347468042, 0.0104367426, 0.0197993275, 0.0248943157, -0.00906501524, 0.0154736685, -0.00450347643, 0.00685863802, -0.0325440578, 0.00766425626, -0.0187977497, -0.00742111914, 0.00681509124, -0.00110953895, 0.0249233469, 0.0100811096, 0.0314118378, 0.00788199063, 0.00249306066, 0.0238491911, -0.0244733635, 0.0114746103, -0.010458516, 0.015560762, -0.0296554454, 0.00862228777, -0.00737031456, -0.00470306631, 0.0184784047, -0.00598407118, 0.00993595272, 0.00311360392, -0.0162720289, 0.0147914337, -0.00581351249, -0.00386841712, -0.00802714657, -0.0217879694, -0.0108214067, 0.00734128291, -0.0141164567, -0.00849164743, -0.0113584856, 0.0114673525, -0.00388656161, -0.0228040647, -0.0248217378, -0.0259249266, -0.00650300505, 0.0067534, 0.0148785273, 0.00839729607, -0.0145011209, -0.00444178469, -0.00294485968, -0.0272168182, -0.0115326736, 0.0143414484, 0.0115108993, -0.0153720593, 0.00471032411, 0.0104802893, -0.0110391416, -0.0207283292, -0.0165768564, 0.000356767123, 0.00698202103, 0.0119608846, -0.0205105934, 0.00852067862, -0.00969644543, 0.0354762152, 0.0510369763, 0.0115254149, -0.00629978627, 0.00510224607, 0.0230653472, -0.0249233469, -0.0587883294, -0.00221363455, 0.0220347364, -0.00973273441, -0.0111044617, 0.0179558415, 0.042008251, 4.0116458e-05, 0.00646308716, 0.0163591225, -0.0134124476, 0.0248943157, -0.0150962621, -0.0196977183, 0.0241249874, -0.0133108385, 0.00433654618, 0.0315279625, -0.00139077939, -0.0105165783, -0.025344301, -0.0348375291, 0.0303667113, -0.00833923277, 0.0118955644, 0.00907227304, 0.00316259428, 3.66576533e-05, -0.0151688401, -0.0137608238, -0.00431477278, 0.0161559042, -0.0128245652, 0.0147406291, -0.0240959562, -0.0041296985, 0.0230217986, -0.0258523487, -0.0030500982, 0.0262878183, 0.0273910053, -0.0103786802, -0.00566472718, 0.0156333409, -0.00267450605, 0.0322827771, 0.000491263578, 0.00189247611, -0.00163482351, 0.0190590303, 0.000660915044, -0.0177526232, -0.00794731081, -0.0039736554, -0.0294957738, -0.0130060101, 0.0201622192, 0.0307150874, 0.0120842671, -0.00636147754, -0.0368987471, -9.96248928e-05, 0.0045833122, 0.00202856027, -0.0289006326, 0.0196686871, 0.0130350413, -0.0170994196, 0.0123745799, 0.0113367122, 0.028465163, 0.00558126206, -0.000563841779, -0.0181735773, -0.0226734243, 0.0191025771, -0.00846987404, 0.00480104657, -0.000468582875, -0.00815778784, 0.0101173986, 0.0145011209, -0.017651014, -0.00393010862, -0.0258523487, -0.0196251404, -0.0108649535, -0.00347830937, -0.00201223, -0.00918114, 0.00611471198, -0.00908678863, 0.000671348185, -0.0137027605, 0.015880106, 0.00952225737, 0.00183259905, 0.0142035503, 0.0128753697, -0.00723604485, -0.00148240943, -0.0039736554, -0.00174641248, 0.0226008464, -0.00649937615, 0.00770054525, 0.012548768, -0.0125197368, 0.026055567, 0.0147261135, 0.00060421339, 0.0263023339, -0.0358245894, -0.0314989313, -0.0304247737, 0.018217124, 0.0249233469, 0.00187614607, 0.00492080068, -0.0252572075, 0.0162865445, -0.0197122339, -0.0119681424, 0.0137027605, 0.00734128291, 0.00394462422, 0.0318182744, -0.0107488288, -0.0026545471, 0.0182751864, 0.0423275977, 0.0360278115, 0.00747555261, -0.00994321052, -0.0105818994, -0.020133188, -0.00115217862, -0.00255838083, -0.0102262655, 0.00445267139, 0.00228984165, -0.0168236233, -0.0278409906, -0.00812875666, 0.0150817465, -0.0255330037, -0.0121350717, -0.00575544965, -0.0314989313, 0.0174623113, -0.000697657757, -0.0051820823, -0.0156914033, 0.036202, 0.0629398, 0.013151167, 0.0199735165, 0.0122366818, 0.00302651012, -0.0118592754, 0.000885453832, -0.0183042176, 0.0227460023, 0.0251701139, 0.0200170632, 0.0153720593, 0.00318436767, 0.00791102182, -0.00429662829, -0.0154736685, 0.0128535964, -0.0082666548, 0.0326601826, -0.000869123731, 0.00520022679, -0.0291473977, 0.00404623384, 0.0102843288, 0.0204235, 0.0488306023, 0.00384301483, -0.0128027918, 0.00477927318, -0.029989304, -0.0216718446, -0.0207573604, 0.0280587245, -0.00327690504, 0.0224411748, 0.00712717744, -0.0160688087, -0.00737031456, 0.00381761231, -0.00015150696, -0.01903, -0.0048845117, 0.00285776588, -0.0114092901, 0.0275361631, 0.0180139057, -0.0100085316, -0.0125197368, -0.00657558348, 0.00767151406, 0.0216718446, -0.00196142541, -0.0178106856, -0.00322065689, 0.0174042489, -0.0165768564, 0.00631067296, 0.0133398697, -0.00747555261, 0.00175276306, 0.0156333409, -0.00954403076, -0.00294848857, 0.0193928909, -0.0204960778, 0.0241685342, 0.0119899157, -0.0127156973, -0.00297570555, -0.00722515816, -0.00159036939, -0.00356721762, 0.0163881537, 0.00107324985, 0.0125705414, 0.00161577179, -0.00735942787, 0.00639413763, -0.00530909421, -0.0180139057, -0.0107125398, 0.00603487575, 0.0018670737, 0.00168018497, 0.0175348893, -0.00764974, -0.0249959268, -0.000108923974, 0.00295574637, 0.0209605787, -0.00926823355, 0.00362890912, -0.0163446069, 0.0357665271, -0.0134922843, 0.00482282043, -0.00163300906, 0.0235443618, 0.0123600643, 0.00841181166, 0.00635784864, 0.00439823791, -0.00455791, -0.0122584552, 0.0082521392, -0.00324243028, -0.00714895083, -0.0025166485, 0.0194799844, -0.00535627, -0.00482282043, -0.0281313043, 0.0190154836, 0.0094569372, 0.00939887483, 0.00674251327, 0.00310090277, 0.00836100616, 0.00321521354, -0.0344891511, -0.00489539839, -0.00142797572, 0.00736668566, -0.00522925798, -0.0133689009, -0.0260410514, 0.0206557512, 0.018217124, 0.009515, -0.00331137958, 0.0112859076, 0.015880106, 0.00961660873, 0.00709088845, 0.00043841757, 0.00868760888, 0.00800537318, -0.0133979321, 0.00862228777, 0.0178106856, -0.000733493245, -0.00511313276, -0.000880917709, 0.00506958598, 0.00697839214, 0.0180719681, 0.00606390694, -0.0187832341, -0.000866855669, -0.00465951953, -0.0239362847, 0.0249233469, 0.000670440961, -0.00913033541, 0.0262733027, 0.000174641245, 0.00361076463, -0.00633244636, 0.00894889, -0.00255475193, -0.0154881841, 0.00688404078, -0.00983434357, -0.00660824357, 0.00320977019, -7.80782502e-05, 0.022296017, 0.0333569311, 0.00784570165, 0.00497886352, 0.000768875121, 0.022934705, 0.00896340515, -8.805775e-05, 0.00558852, 0.00506595708, -0.000580625434, -0.021410564, 0.0176074672, -0.000953495852, 0.0131076202, 0.0248652846, -0.00690581417, 0.0122729708, -0.00233520311, 0.0181445461, 0.00153412134, -0.0117431497, -0.000895886915, 0.0100956252, -0.0130205257, 0.00848439, 0.0168526545, -0.0025928556, 0.00792553741, 0.0140656522, -0.0197702963, 0.00300110783, 0.00331137958, 0.00707637286, -0.0054796529, 0.00424945261, -0.0213525016, -0.0103569068, -0.0305408984, -9.51879883e-06, -0.0151543245, 0.0133398697, -0.00119481829, 0.00419139024, 0.0410211869, -0.0197993275, 0.00857874099, -0.0372471213, 0.00538530108, -0.00221182, -0.0517627597, -0.0117649231, -0.0163446069, -0.00857874099, 0.00591875054, -0.000946238055, 0.000963475381, -0.00364886806, -0.0186235607, 0.0109738214, -0.00447444478, -0.0166784655, -0.00277974433, 0.0194509532, -0.0173607, -0.023645971, 0.00903598405, 0.0120770093, -0.0235153306, -0.00764974, 0.0079690842, 0.00741386134, -0.0148422383, 0.0132164871, 0.00156224542, -0.00634696195, -0.00546876621, -0.00693121646, -0.0110391416, -0.0181590617, 0.000565656228, -0.00451436313, 0.0157059189, -0.0106399618, -0.00251483405, -0.00486636721, -0.00204670476, -0.00158129714, -0.00240596663, -0.0193057973, -0.0252426919, 0.0153720593, 0.0332988687, 0.0053344965, -0.00154863694, -0.0175639205, 0.0130931037, -0.00673888437, 0.000520748436, -0.0120262047, -0.00990692154, -0.015952684, -0.00938435923, 0.00150055392, 0.00631793076, 0.016765561, 0.0139132375, 0.00357810431, 0.0278845374, 0.0134414798, -0.0079836, -0.00384301483, 0.0138624329, -0.0414856896, -0.0170703884, 0.00453613652, -0.011590736, 0.00739571685, 0.0217008758, 0.00440186681, 0.0100157894, 0.0178977791, 0.00768602965, -0.0113802589, 0.0106617352, -0.0100085316, 0.00495346077, -0.0225137528, 0.00539618777, 0.0130568147, 7.60369876e-05, 0.0133398697, 0.0201477036, 0.0146462768, -0.000479923241, -0.00161486457, 0.00512401946, -0.00382487, -0.00112496188, 0.00808521, -0.0041188118, 0.0150527153, 0.00987063255, 0.010741571, -0.0119173378, 0.00557037536, -0.00644494267, -0.0168526545, -0.00301562343, -0.0127447285, -0.00224085129, -0.000799720874, 0.0236169398, 0.0205105934, 0.00441638241, 0.00755538885, -0.00403897604, -0.025910411, -0.00596955558, 0.000394190254, 0.0130931037, 0.0122874863, 0.0047248397, -0.0075191, 0.00109955948, -0.0114455791, -0.0210041255, 0.00222815014, -0.0283345226, -0.0292344913, 0.0110972039, -0.00224266574, -0.0167945921, 0.0206702668, 0.0267813485, -0.00354000088, -2.02566844e-05, -0.00725056045, 0.0125342524, -0.00248761731, 0.00417687418, -0.0211637989, -0.0101754609, -0.0302796178, -0.00508773047, 0.000468129263, -0.0246620663, 0.0148785273, 0.0192332175, -0.00211202516, -0.00831020158, 0.0252572075, -0.00363979582, -0.0184493735, -0.0108141489, -0.0033767, 0.01191008, 0.0132818073, -0.0019142495, -0.0125777991, -0.0041188118, -0.0136011513, 0.00365794031, 0.00788924843, -0.00979805458, -0.00100974401, 0.0170558728, -0.00239145104, -0.00921017118, -0.00459782779, -0.00385753042, -0.0112568764, 0.00390833523, -0.0226008464, 0.0186235607, 0.00655743899, 0.0056320671, 0.0118955644, -0.0178252012, -0.0105165783, 0.00113312691, -0.0223831106, 0.00723241596, -0.00127465429, -0.00755538885, 0.0222669858, -0.00987789, -0.00378858112, 0.00152958522, 0.00602036, 0.00966015644, 0.0039772843, 0.0263313651, 0.0409340933, 0.0116705718, 0.00793279521, 0.0228621271, 0.0141382301, -0.000992506626, 0.00902146846, 0.0323698707, -0.00226625381, -0.00030301392, -0.0224556904, 0.0116560562, -0.0221073143, 0.0139785577, 0.00278337323, -0.00359080546, -0.000301426277, -0.00130912894, 0.00162847294, 0.0143051594, -0.00467766402, 0.00055975921, 0.00393010862, -0.00950048398, -0.00995772704, -0.00772231864, 0.011873791, 0.0181880929, -0.0101319142, 0.00136174809, -5.79491425e-05, 0.0211637989, 0.0134124476, -0.0151398089, -0.0118883066, -0.00252209185, -0.00949322619, -0.00157585379, 0.011873791, 0.0158655904, -0.00268176384, -0.00692758756, -0.0101682032, -0.0269845687, 0.000882278546, 0.0203944687, -0.0020739215, -0.0168816857, -0.00260918564, 0.0224266592, 0.0147769181, 0.00663364585, -0.0141091989, 0.0171719976, -0.00387204601, -0.00893437397, 0.0113802589, 0.00163663796, -0.0113584856, 0.0123818377, 0.0408179685, 0.000224198535, -0.000854154467, 0.00299566449, 0.0319634303, 0.00448533148, -0.00414784299, 0.00291219959, 0.00259104115, -0.0220492519, -0.0106181884, 0.0147696603, -0.00661913026, 0.0079690842, 0.0208299384, -0.0292925537, -0.00786021724, -0.00418776134, 0.00659009907, 0.0112278452, -0.0187251717, -0.012795534, -0.00353637198, 0.00512401946, -0.00682960683, -0.035447184, 0.00492442958, -0.0193057973, -0.0116125094, 0.0265926458, 0.0188122652, 0.0124616735, 0.008259397, -0.00531635201, -0.000262869115, 0.00381035451, 0.00801988877, 0.0135213155, -0.0191751551, 0.000106429099, 0.015241418, 0.00952225737, 0.0132963229, 0.0166784655, 0.0079618264, 0.0136374403, -0.0153430281, 0.00378132332, 0.000543429167, 0.00405349163, -0.00476838648, -0.0194364376, -0.00850616302, 0.00821585, -0.0184058268, -0.00250757625, -0.0124399, 0.0151543245, 0.0231959876, -0.0342278704, 0.00665541925, 0.0164607316, -0.00154682249, -0.0106762508, -0.00973273441, 0.0290022418, -0.0218460336, -0.0028904262, -0.0039845421, 0.000874567078, -0.00709814625, 0.0187687185, -0.018217124, 0.00357266096, -0.00163573073, 0.0011766738, 0.0108068911, 0.0117213763, -0.00775135, 0.00377043663, 0.0138406595, 0.00697839214, 0.00538167218, 0.0161559042, -0.00754087325, 0.0258523487, -0.0142398393, 0.0184638891, -0.0319634303, -0.0192187019, 0.031440869, 0.0139858155, 0.0314699, 0.00971821882, -0.00362346577, 0.000799267204, -0.00679331785, -0.0110826883, 0.00721064257, -0.0042893705, 0.0047320975, -0.00363616692, -0.00636147754, -0.00379221, 0.00103242463, 0.00287046703, 0.00857874099, 0.00341843232, 0.00484096492, -0.00537078548, 0.0268829595, 0.0114746103, 0.0179268103, 0.0299312416, 0.00619091885, 0.00476112869, 0.0122947441, 0.00515305111, -0.0273039117, -0.00852793641, 0.0127882753, -0.000190064122, -0.00528369145, 0.000106429099, -0.0270281155, -0.00812149886, -0.00194872415, 0.00270898058, -0.00853519421, -0.0143124172, 0.000340890663, -0.00678968895, -0.00759167783, -0.00895614736, -0.00723967375, -0.00982708577, 0.00729410723, -0.00231342949, -0.00120570511, -0.00667356374, 0.00478290208, -0.000372416805, 0.0107560866, -0.0175929517, -0.00129007723, 0.00599858677, 0.00558489095, 0.0230217986, 0.0209170319, 0.0140511356, 0.0115471892, 0.00893437397, 0.00801263098, 0.0408179685, -0.00971821882, -0.0108068911, 0.004271226, 0.00100430055, -0.0103206178, -0.0154446373, 0.0156043088, 0.0056211804, 0.00664453255, -0.00301743788, -0.0175929517, 0.0148930429, 0.0251701139, 0.0122729708, -0.00454702321, 0.00540344557, -0.00273256865, 0.0132382605, 0.0123092597, -0.0236895196, 0.0259684734, 0.0119826579, -0.0195380468, -0.00408252282, -0.00489539839, 0.0161704198, 0.0044272691, 0.0115108993, -0.0130132679, -0.0109955948, 0.00543610565, 0.0128608542, 0.00864406116, -0.028886117, 0.0109012434, 0.0267378017, -0.00263821683, -0.00982708577, -0.0167800765, -0.00614011427, -0.00634333305, 0.00603850465, 0.0141454879, 0.0237911288, -0.000259920605, -0.0297280233, -0.0123745799, 0.00817230344, -0.00760619342, 0.0239217691, 0.0264184587, -0.00956580415, -0.000684049388, 0.00962386653, -0.0088690538, -0.0139059797, -0.0239072535, -0.0111915553, 0.00669533713, 0.0172010288, -0.0208734851, 0.00651389174, 0.00341117452, -0.0286248345, 0.0290022418, 0.0282764602, -0.00100520777, 0.00603850465, 0.00942790601, -0.00470669521, 0.00635421975, -0.00173371134, -0.0122366818, 0.0191316083, 0.00542884786, -0.0185364671, 0.00500789471, -0.0144720897, -0.0192912817, -0.0161704198, 0.00665541925, 0.00853519421, 0.00346560823, 0.0339375585, -0.00496797636, -0.0118157277, -0.000284415757, -0.0151543245, -0.0126866661, -0.0114092901, -0.000531181577, -0.00383575703, 0.0366374664, 0.0229782518, -0.0201767348, -0.00759893563, -0.00347468047, 0.00367789948, -0.0150091685, 0.00702919718, -0.00328416284, -0.00334585411, 0.0045796833, 0.00564658269, 0.0030428404, -0.0121423295, 0.0204089843, 0.0166639499, 0.00495346077, -0.00818681903, 0.0300473683, 0.0422985628, -0.0166058876, -0.0421824381, 0.0127519863, 0.00342750456, 0.00567924278, 0.00925371796, -0.0237911288, 0.0206847824, -0.00468129292, -0.00524014467, -0.00907227304, 0.00902146846, 0.0269119907, 0.00661187246, -0.0245604571, -0.00479016, 0.0257507395, 0.0169687793, -0.0143995117, 0.0205541421, -0.0232830811, -0.00637236424, -0.012265713, 0.0277684126, -0.00900695287, 0.00857148319, 0.0179848727, 0.00422767922, 0.0119608846, 0.0230798628, 0.0193203129, 0.0022190779, -0.0117866965, -0.0151833557, 0.00783118606, -0.0173897333, -0.026055567, 0.000925825443, 0.0165042784, -0.0242991745, -0.0044272691, 0.0129406899, -0.0194074064, -0.0206412356, 0.0189138744, 0.0108576957, 0.00671711098, -0.00508410158, 0.000489449129, 0.00253116409, -0.0159091372, -0.0101972343, -9.36995639e-06, 0.0172736067, -0.0192767661, 0.010139172, 0.022296017, -0.000629615737, 0.00187796052, 0.0148204649, -0.0107488288, 0.00583165698, -0.00758442, -0.00217008754, -0.00211565406, 0.0115471892, 0.00242229691, -0.00569012947, -0.0104802893, 0.00210113847, 0.0126648927, -0.0143704806, -0.00479741767, -0.0220057052, -0.0242556278, -0.00786021724, 0.0114818681, -0.0176364984, 0.00254930859, 0.00135358307, 0.00659735687, -0.00227351161, -0.0185800139, -0.00409703841, -0.0180719681, 0.0276232567, 0.00774409203, 0.00347105158, -0.0120407203, 0.00401357329, 0.0127084395, -0.00732313842, 0.0135576045, -0.000782483548, -0.00089497969, 0.018101, 0.0135068, -0.000779308204, -0.0111262351, -0.0012964278, 0.0056393249, -0.00709451735, -0.00127919042, 0.0113512278, -0.0287264436, 0.00726870494, -0.00334585411, -0.0079836, -0.0134559954, 0.0126794083, -0.0328343697, -0.00999401603, 0.00348193827, -0.0206847824, -0.0137971127, -0.0116560562, -0.0123165175, 0.00202130247, 0.0193493441, 0.0218895804, 0.00878196, 0.000347468042, -0.0237330664, -0.0126068303, 0.00196505431, -0.019421922, 0.005222, -0.00710177515, 0.00999401603, -0.00277248654, 0.000738936593, 0.0290457886, -0.00525828917, 0.00315533648, -0.0292054601, 0.00372688961, 0.0102915866, -0.00510587497, -0.00395188201, 0.0137898549, 0.0195815936, 0.000625986839, -0.0191751551, -0.0190154836, -0.0176945608, -0.00451799203, -0.0245894883, -0.00727959163, -0.00755538885, -0.0275071319, 0.00491717178, 0.0103206178, -0.00221182, -0.0250104424, -0.0208299384, 0.0167945921, 0.016446216, -0.00459057, -0.0090505, 0.00889808498, -0.0319344, -0.00511313276, 0.0102988444, -0.0031190475, -0.0028867973, -0.00753361546, -0.00515668, 0.036579404, -0.00600584457, -0.00844810065, 0.0017173813, 0.0132237449, -0.00518934, 0.0230653472, 0.00649211835, -0.00508410158, -0.00588246156, 0.00821585, -0.0109230168, 0.0237911288, 0.00202130247, -0.00775135, -0.00525828917, -0.000614646473, 0.00954403076, 0.0045724255, -0.000242002876, -0.00707637286, -0.000178723771, 0.0145591833, 0.00614011427, -0.00483007822, -0.0189719368, 0.00645945827, 0.0287845079, -0.00381761231, -0.00556674646, -0.0226589087, -0.00172463909, -0.00578811, 0.0229637362, -0.00685500912, 0.0100738518, -0.0201041568, 0.00162575126, -0.00308457273, 0.011024626, 0.0287845079, -0.0120987827, -0.0221073143, 0.0138696907, -0.01836228, -0.0109665636, 0.00477564428, 0.00145065645, 0.034634307, -0.0147406291, -0.00174913416, 0.00559214875, -0.0045687966, 0.00841181166, -0.00386478822, -0.0247346442, 0.00422405032, -0.00230072835, 0.00449258927, -0.0138551751, -0.00844810065, 0.016765561, 0.00516756671, -0.0293651316, 0.00611834088, 0.0195380468, -0.0088545382, 0.000227600642, 0.0275651943, 0.000739390205, -0.0113149388, 0.00224629464, 0.000809700345, 0.00684412243, -0.026229756, -0.0221218299, 0.0094496794, -0.0131293936, 0.000314807869, 0.00897792075, -0.0243282076, -0.0477564447, -0.0191316083, -0.000127465435, 0.0182606708, -0.00416235859, -0.0223976262, -0.00672436878, -0.0269555375, -0.00167383428, 3.31988485e-05, 0.000564749, 0.0121060405, -0.00778038101, 0.00450347643, 0.032573089, 0.0048699961, -0.00246402924, 0.00817230344, -0.00339665893, -0.00645582937, 0.0234427527, 0.00878196, -0.00840455387, -0.0129552055, 0.0104512582, -0.0146099878, -0.0520240404, 0.00555223087, 0.0229782518, 0.0129406899, 0.00265091821, 0.0200315788, 0.00112405454, -0.0220202208, -0.0100593362, 0.00464137457, -0.0100157894, 0.0251410827, -0.00190517725, 0.0191606395, 0.01031336, -0.000102063066, 0.00745377922, 0.0128826275, 0.0114673525, -0.00958757754, 0.0108286645, -0.00153684302, 0.0010968378, -0.0222379547, 0.0134995421, -0.018855812, -0.0244007856, 0.00242592581, -0.011627025, 0.00276522874, 0.00275978539, 0.0110028526, 0.0260991137, -0.0147914337, -0.00809972547, -0.0291619133, -0.0265200678, -0.0375955, 0.0179268103, -0.0276087411, -0.0136955027, -0.00436194893, -0.00790376402, -0.0128463386, -0.0015613382, 0.0185509827, 0.015952684, 0.00498612132, -0.0133543853, 0.015313996, -0.00651389174, 0.0216137823, -0.0282619447, -0.00334766856, -0.0139277531, 0.00459057, 0.00103423907, 0.0168381389, 0.0142180659, 0.0229637362, -0.00851342082, 0.00174913416, 0.000381035468, -0.0114963837, 0.00190517725, 0.015880106, -0.0102044921, 0.000374004449, 0.00226262491, 0.0151398089, -0.0245314259, -0.00689492747, -0.000586522452, -0.00166476204, 0.00314807869, 0.020525109, -0.00899243634, -0.00931903906, -0.0105818994, -0.00564658269, 0.0142688705, 0.00147515151, 0.00148785277, -0.00583165698, 0.00681146234, -0.00940613262, -0.0178832635, 0.00335311191, 0.00409340952, -0.0139059797, 0.0178397167, -0.0179993901, 0.000537078537, 0.00633970415, 0.00241141021, 0.00941339, -0.0156188244, -0.000563841779, -0.0326021202, -0.000678606, 0.0160107464, 0.00749732601, 0.0146898245, -0.0039772843, 0.0225573, -0.00676065776, -0.00243862695, 0.0199880321, -0.00246584369, 0.0190590303, 0.0208009072, -0.00177181489, -0.00625986839, 0.00508047268, 0.0233121123, 0.0152849648, 0.00165296812, 0.0142325815, -0.0140801677, 0.0125777991, -0.00423856592, -0.00730862282, -0.0048845117, -0.00770054525, -0.0118810488, -0.0142253237, -0.0134632532, 0.010422227, -0.0195235312, 0.00099795, 0.00393010862, 0.00276341429, 0.000104671344, -0.0251555983, -0.00635059085, -0.0347214, 0.0123020019, 0.0271006934, 0.00507684378, -0.0188993588, 0.00708000176, -0.00681872, -0.00655743899, -0.025910411, -0.0115036415, 0.0205686577, 0.002611, 0.00353092863, -0.00539618777, -0.00823036581, -0.0232685655, -0.0109447902, -0.00929726474, 0.0201041568, -0.0022916561, -0.0128390808, 0.0047393553, -0.0176655296, 0.0168526545, -0.0111770397, 0.0148349805, 0.0158220436, -0.0121568451, 0.000749823346, -0.00140983122, 0.0026654338, -0.0188703276, -0.0101972343, -0.000349282491, -0.0137971127, 0.0206122044, 0.0102190077, 0.00520385569, -0.00439460902, -0.000584254391, -0.00245858589, -0.0186525937, -0.0192622487, -0.010349649, 0.00722878706, -0.00723604485, 0.00193420856, -0.00835374836, 0.0129261743, 0.0222379547, -0.00018110525, -0.0041369563, -0.0118810488, -0.00942790601, 0.00277792988, 0.0026690627, 0.0152559336, 0.00450347643, -0.00451073423, -0.00174369081, 0.0197702963, -0.00596592668, 0.00636873534, -0.0102044921, -0.00400268659, -0.0045833122, -0.00954403076, 0.0133616431, -0.0114455791, 0.0188412964, -0.00540707447, -0.000810153957, -0.000963475381, 0.0100593362, -0.0200896412, -0.00446718698, -0.00888356939, 0.000793370244, 0.00246947259, 0.00314807869, -0.00553771527, -0.0287119281, 0.00624535279, 0.00269265054, 0.00358899101, 0.0290603042, 0.00190880615, 0.0222234391, 0.0186671093, 0.0242411122, -0.0283780694, 0.0150382, 0.0107778599, -0.0332698375, 0.00942064822, -0.00838278048, 0.00308275828, -0.0109230168, -0.0123020019, 0.00616551656, 0.0281893667, 0.0029630044, 0.0131729404, -0.0132527761, 0.0126648927, 0.0212508924, 0.0330085568, -0.024778191, -0.0135793779, 0.00160034897, 0.0298441481, 0.0214831419, -0.00477201538, 0.0300473683, 0.00846261624, 0.00769328745, -0.00300473673, -0.00847713184, 0.0131221358, 0.0128463386, -0.00980531238, -0.00498249242, 0.000607388676, 0.00511676166, 0.0116705718, -0.00621632114, 0.00230435724, 0.00233701756, 0.00575544965, 0.00192513631, -0.030802181, 0.00238600769, -0.0222524703, -0.0167365298, 0.00539981667, 0.00293397298, 0.000733946858, -0.0302796178, 0.0117939543, -0.00910130423, -0.00691307196, -0.00712717744, 0.0129624633, -0.0127737597, -0.000533449638, -0.00677880226, -0.0345181823, -0.00239689439, 0.0127156973, -0.000334540062, -0.0136011513, -0.00647760276, -0.0169252325, -0.00144249143, -0.003668827, 0.0205686577, -0.0228766426, -0.00685500912, -0.00215194304, -0.0335020907, -0.00698565, 0.00130096392, -0.00532361, -3.39643229e-05, -0.0364923105, 0.00678606, -0.00208117929, 0.00521111349, -0.00371600292, -0.0146245034, 0.00762070902, -0.0102552967, -0.00923920237, -0.00132183009, 0.00410066731, -0.00607842254, 0.0339085273, 0.00342569, -0.00961660873, -0.0148785273, -0.000399406796, -0.0118810488, -0.00747555261, -0.00942790601, -0.00349282497, -0.0196541715, 0.0169978105, 0.0107197976, -0.000600130821, -0.00992143713, -0.00282692024, -0.00222089235, -0.00219549, 0.0123600643, -0.00466677733, 0.000457696151, -0.00400994439, -0.00423493702, -0.0151107777, -0.0137245338, 0.0104077114, -0.0185074359, -0.0332698375, 0.00948596839, 0.000193466214, -0.00851342082, 0.00891985837, -0.0208299384, -0.020771876, -0.0054905396, -0.0131366514, 0.000392375805, 0.00672799768, 0.0159236528, -0.00891260058, -0.0203073751, 0.0182316396, 0.015880106, 0.0157784969, 0.0313247442, 0.00138896494, -0.0312666818, -0.00253479299, 0.0155027, 0.00356177427, 0.0173026379, -0.0356504023, -0.0191751551, -0.00445630029, -0.00538530108, 0.000285549788, 0.00139259384, -0.00594415329, -0.0242701434, -0.0236314554, 0.0205396265, -0.00904324185, -0.0181445461, 0.0754813105, 0.0181735773, 0.0112133296, -0.0274055209, -0.00110500283, -0.0112568764, -0.0210621879, 0.0385535322, -0.0166784655, 0.00762796681, -0.0121278139, -0.016446216, 0.00663364585, 0.0114020323, -0.0203364063, 0.000398499571, 0.00345109263, -0.00254749414, 0.0170558728, -0.018855812, -0.00966741424, -0.00678968895, 0.0137898549, -0.00931903906, -0.0116705718, 0.00865857676, 0.00584980147, 0.00698927883, -0.0236024242, 0.00752635766, -0.00737031456, 0.00721790036, 0.0115108993, -0.0188848432, -0.0194654688, -0.00746829482, -0.00209750957, -0.0167220123, 0.0192767661, -0.0233121123, -4.00881036e-05, 0.0212799236, 0.0229782518, 0.0091521088, 0.00929726474, -0.000424809172, 0.0184784047, 0.0088545382, -0.00722515816, 0.006238095, -0.000318663573, 0.0136446981, 0.00613648538, -0.0228911582, 0.00393010862, 0.0131003615, 0.000364705367, -0.00246221479, 0.0123673221, 0.0394825302, -0.0102625545, 0.00444541359, -0.0217589382, 0.00392647972, 0.00942790601, 0.00140983122, -0.0258378331, -0.015807528, -0.00746829482, 0.00263821683, 0.00877470244, -0.0131293936, -0.0091666244, 0.0114383213, -0.00376317883, 0.0182751864, 0.0216282979, 0.00663001696, 0.0184058268, -0.00875292905, -0.00224448019, 0.0106835086, -0.008259397, -0.0142761283, -0.0140221044, -0.00676791556, 0.00512764836, -0.0135938935, 0.00200315774, -0.00393373752, -0.00321521354, 0.0365503728, -0.0109375324, 0.00212109741, -0.0113149388, -0.0103278756, -0.0136011513, 0.00475387089, 0.0022989139, 0.0195815936, 0.0339665897, 0.00879647583, 0.017157482, 0.0156478565, -0.0324569643, -0.00235334761, 0.00165931869, 0.00968193, -0.00651026284, -0.0163300913, 0.0148494961, -0.0243427232, -0.000962568156, 0.0429662839, 0.00211202516, 0.00634696195, -0.00209206622, -0.0151252933, 0.00440912461, -6.19182611e-05, 0.00869486667, 0.00656106789, -0.00707274396, -0.0163591225, -0.00877470244, -0.00629615737, 0.0100448206, 0.00241685356, 0.0212508924, -0.00256563863, 0.0120044313, -0.019000968, -0.00663364585, -0.0103714224, 0.00988514815, 0.0149365896, -0.0233701747, -0.00788199063, -0.00932629686, -0.00731950952, 0.00346016488, 0.0134850265, 0.00620543445, 0.0303957425, -0.00368878618, 0.0161123574, 0.00814327225, 0.00475024199, 0.024778191, -0.0228040647, -0.0249088313, 0.00698202103, 0.00797634199, 0.00168472109, -0.00311178947, -0.00142706849, -0.00028895188, -0.00233701756, 0.0340536833, -0.0127810175, -0.00963112433, 0.00626349729, 0.0199009385, 0.00393373752, 0.00529094972, -0.0217734538, 0.0175929517, 0.00836826488, 0.0274200365, 0.0182751864, 0.0335020907, 0.00151144061, -0.0144575741, 0.0153285125, -0.0146027301, 0.020699298, -0.000917206751, 0.00250031846, -0.0134777687, -0.0247636754, 0.0110391416, 0.00173915469, -0.00234064646, 0.0279426, 0.00492805848, 0.0019959, -0.008861796, 0.00627801288, 0.0339375585, 0.0296844766, -0.00873841345, 0.00169197889, -0.0241540186, 0.000515305088, -0.0218170024, -0.0196832027, -0.00607479364, 0.0145882145, 0.0286393501, 0.016446216, 0.012868112, 0.00330412178, -0.00134178915, 0.00891260058, -0.0164607316, 0.012265713, -0.00205396255, 0.0139713, 0.0007407511, -0.00933355466, -0.00624898169]
|
20 Oct, 2023
|
Sum of all even occurring element in an array
20 Oct, 2023
Given an array of integers containing duplicate elements. The task is to find the sum of all even occurring elements in the given array. That is the sum of all such elements whose frequency is even in the array.
Examples:
Input : arr[] = {1, 1, 2, 2, 3, 3, 3}Output : 6The even occurring element are 1 and 2 (both occur two times). Therefore sum of all 1's in the array = 1+1+2+2 = 6.Input : arr[] = {10, 20, 30, 40, 40}Output : 80Element with even frequency are 40.Sum = 40.
Approach:
Traverse the array and use a unordered_map in C++ to store the frequency of elements of the array such that the key of map is the array element and value is its frequency in the array.
Then, traverse the map to find the frequency of elements and check if it is even, if it is even, then add this element to sum.
Below is the implementation of the above approach:
C++
// C++ program to find the sum of all even
// occurring elements in an array
#include <bits/stdc++.h>
using namespace std;
// Function to find the sum of all even
// occurring elements in an array
int findSum(int arr[], int N)
{
// Map to store frequency of elements
// of the array
unordered_map<int, int> mp;
for (int i = 0; i < N; i++) {
mp[arr[i]]++;
}
// variable to store sum of all
// even occurring elements
int sum = 0;
// loop to iterate through map
for (auto itr = mp.begin(); itr != mp.end(); itr++) {
// check if frequency is even
if (itr->second % 2 == 0)
sum += (itr->first) * (itr->second);
}
return sum;
}
// Driver Code
int main()
{
int arr[] = { 10, 20, 20, 40, 40 };
int N = sizeof(arr) / sizeof(arr[0]);
cout << findSum(arr, N);
return 0;
}
Java
// Java program to find the sum of all even
// occurring elements in an array
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
public class GFG {
public static int element(int[] arr, int n)
{
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for (int i = 0; i < n; i++) {
int count = 0;
if (map.get(arr[i]) != null) {
count = map.get(arr[i]);
}
map.put(arr[i], count + 1);
}
int sum = 0;
for (Entry<Integer, Integer> entry : map.entrySet()) {
if (entry.getValue() % 2 == 0) {
sum += entry.getKey() * entry.getValue();
}
}
return sum;
}
public static void main(String[] args)
{
int arr[] = { 1, 1, 2, 2, 3, 3, 3 };
// sum should be = 1+1+2+2=6;
int n = arr.length;
System.out.println(element(arr, n));
}
}
Python3
# Python3 program to find the sum
# of all even occurring elements
# in an array
# Function to find the sum of all even
# occurring elements in an array
def findSum(arr, N):
# Map to store frequency of
# elements of the array
mp = {}
for i in range(N):
if arr[i] in mp:
mp[arr[i]] += 1
else:
mp[arr[i]] = 1
# Variable to store sum of all
# even occurring elements
Sum = 0
# Loop to iterate through map
for first, second in mp.items():
# Check if frequency is even
if (second % 2 == 0):
Sum += (first) * (second)
return Sum
# Driver code
arr = [ 10, 20, 20, 40, 40 ]
N = len(arr)
print(findSum(arr, N))
# This code is contributed by divyeshrabadiya07
C#
// C# program to find the sum of all even
// occurring elements in an array
using System;
using System.Collections.Generic;
class GFG {
static int element(int[] arr, int n)
{
Dictionary<int, int> map = new Dictionary<int, int>();
for (int i = 0; i < n; i++)
{
if(!map.ContainsKey(arr[i]))
{
map.Add(arr[i], 1);
}
else
{
map[arr[i]] += 1;
}
}
int sum = 0;
foreach(KeyValuePair<int, int> entry in map)
{
if (entry.Value % 2 == 0)
{
sum += entry.Key * entry.Value;
}
}
return sum;
}
// Driver code
static void Main() {
int[] arr = { 10, 20, 20, 40, 40};
int n = arr.Length;
Console.WriteLine(element(arr, n));
}
}
// This code is contributed by divyesh072019
Javascript
<script>
// Javascript program to find the sum of all odd
// occurring elements in an array
// Function to find the sum of all odd
// occurring elements in an array
function findSum(arr, N)
{
// Store frequencies of elements
// of the array
let mp = new Map();
for (let i = 0; i < N; i++) {
if (mp.has(arr[i])) {
mp.set(arr[i], mp.get(arr[i]) + 1)
} else {
mp.set(arr[i], 1)
}
}
// variable to store sum of all
// odd occurring elements
let sum = 0;
// loop to iterate through map
for (let itr of mp) {
// check if frequency is odd
if (itr[1] % 2 == 0)
sum += (itr[0]) * (itr[1]);
}
return sum;
}
// Driver Code
let arr = [10, 20, 20, 40, 40];
let N = arr.length
document.write(findSum(arr, N));
// This code is contributed by _saurabh_jaiswal.
</script>
Output
120
Time Complexity: O(N), where N is the number of elements in the array.Auxiliary Space: O(N)
Method 2: Using Built-in python functions:
Count the frequencies of every element using Counter function
Traverse the frequency dictionary and sum all the elements with occurrence even frequency multiplied by its frequency.
Below is the implementation:
C++
// C++ implementation
#include <iostream>
#include <unordered_map>
using namespace std;
void sumEven(int arr[], int n)
{
// Counting frequency of every element
unordered_map<int, int> freq;
for (int i = 0; i < n; i++) {
freq[arr[i]]++;
}
// initializing sum 0
int sum = 0;
// Traverse the freq and print all
// sum all elements with even frequency
// multiplied by its frequency
for (auto it : freq) {
if (it.second % 2 == 0) {
sum = sum + it.first * it.second;
}
}
cout << sum << endl;
}
// Driver code
int main()
{
int arr[] = { 10, 20, 20, 40, 40 };
int n = sizeof(arr) / sizeof(arr[0]);
sumEven(arr, n);
return 0;
}
// This code is contributed by vikkycirus.
Java
// Java program for the above approach
import java.util.*;
public class Main {
public static void sumEven(int[] arr, int n)
{
// Counting frequency of every element
Map<Integer, Integer> freq = new HashMap<>();
for (int i = 0; i < n; i++) {
freq.put(arr[i],
freq.getOrDefault(arr[i], 0) + 1);
}
// initializing sum 0
int sum = 0;
// Traverse the freq and print all
// sum all elements with even frequency
// multiplied by its frequency
for (Map.Entry<Integer, Integer> entry :
freq.entrySet()) {
int key = entry.getKey();
int value = entry.getValue();
if (value % 2 == 0) {
sum += key * value;
}
}
System.out.println(sum);
}
// Driver code
public static void main(String[] args)
{
int[] arr = { 10, 20, 20, 40, 40 };
int n = arr.length;
sumEven(arr, n);
}
}
Python3
# Python3 implementation
from collections import Counter
def sumEven(arr, n):
# Counting frequency of every
# element using Counter
freq = Counter(arr)
# initializing sum 0
sum = 0
# Traverse the freq and print all
# sum all elements with even frequency
# multiplied by its frequency
for it in freq:
if freq[it] % 2 == 0:
sum = sum + it*freq[it]
print(sum)
# Driver code
arr = [10, 20, 20, 40, 40]
n = len(arr)
sumEven(arr, n)
# This code is contributed by vikkycirus
C#
// C# implementation
using System;
using System.Collections.Generic;
using System.Linq;
class GFG {
static void Main(string[] args)
{
int[] arr = { 10, 20, 20, 40, 40 };
int n = arr.Length;
sumEven(arr, n);
}
static void sumEven(int[] arr, int n)
{
// Counting frequency of every
// element using Dictionary
Dictionary<int, int> freq
= arr.GroupBy(x = > x).ToDictionary(
g = > g.Key, g = > g.Count());
// initializing sum 0
int sum = 0;
// Traverse the freq and print all
// sum all elements with even frequency
// multiplied by its frequency
foreach(KeyValuePair<int, int> pair in freq)
{
if (pair.Value % 2 == 0) {
sum += pair.Key * pair.Value;
}
}
Console.WriteLine(sum);
}
}
// This code is contributed by phasing17
Javascript
function sumEven(arr)
{
// Counting frequency of every element
let freq = {};
for (let i = 0; i < arr.length; i++) {
if (freq[arr[i]] === undefined) {
freq[arr[i]] = 1;
} else {
freq[arr[i]]++;
}
}
// initializing sum 0
let sum = 0;
// Traverse the freq and print all
// sum all elements with even frequency
// multiplied by its frequency
for (let key in freq) {
if (freq[key] % 2 == 0) {
sum = sum + key * freq[key];
}
}
console.log(sum);
}
// Driver code
let arr = [10, 20, 20, 40, 40];
sumEven(arr);
Output
120
Time complexity: O(n) where n is size of given list “arr”Auxiliary space: O(1)
Approach#3:using pointers
Algorithm
1. Sort the input array arr.2. Initialize two pointers i and j to 0.3. Initialize a variable sum to 0.4.While j < len(arr):a. If arr[j] is equal to arr[i], increment j.b. Otherwise, if (j – i) % 2 == 0, add arr[i] * (j – i) to sum.c. Set i to j.5.If (j – i) % 2 == 0, add arr[i] * (j – i) to sum.6. Return sum.
C++
#include <iostream>
#include <vector>
#include <algorithm> // Required for sorting
using namespace std;
// Function to calculate the sum of elements with even frequency
int sumEvenFreq(vector<int>& arr) {
sort(arr.begin(), arr.end()); // Sort the array in ascending order
int i = 0, j = 0;
int sum = 0;
// Loop to iterate through the array
while (j < arr.size()) {
if (arr[j] == arr[i]) {
j++; // Increment j until the element changes
} else {
// If the frequency of elements between i and j is even
if ((j - i) % 2 == 0) {
sum += arr[i] * (j - i); // Add the element times its frequency to sum
}
i = j; // Move i to the new distinct element
}
}
// Check if the last group of elements has even frequency
if ((j - i) % 2 == 0) {
sum += arr[i] * (j - i); // Add the element times its frequency to sum
}
return sum;
}
// Driver Code
int main() {
vector<int> arr = {10, 20, 30, 40, 40};
cout << "Sum of elements with even frequency: " << sumEvenFreq(arr) << endl;
return 0;
}
Java
import java.util.Arrays;
public class Main {
// Function to calculate the sum of elements with even frequency
static int sumEvenFreq(int[] arr) {
Arrays.sort(arr); // Sort the array in ascending order
int i = 0, j = 0;
int sum = 0;
// Loop to iterate through the array
while (j < arr.length) {
if (arr[j] == arr[i]) {
j++; // Increment j until the element changes
} else {
// If the frequency of elements between i and j is even
if ((j - i) % 2 == 0) {
sum += arr[i] * (j - i); // Add the element times its frequency to sum
}
i = j; // Move i to the new distinct element
}
}
// Check if the last group of elements has even frequency
if ((j - i) % 2 == 0) {
sum += arr[i] * (j - i); // Add the element times its frequency to sum
}
return sum;
}
// Driver Code
public static void main(String[] args) {
int[] arr = {10, 20, 30, 40, 40};
System.out.println("Sum of elements with even frequency: " + sumEvenFreq(arr));
}
}
Python3
def sum_even_freq(arr):
arr.sort()
i = j = 0
sum = 0
while j < len(arr):
if arr[j] == arr[i]:
j += 1
else:
if (j - i) % 2 == 0:
sum += arr[i] * (j - i)
i = j
if (j - i) % 2 == 0:
sum += arr[i] * (j - i)
return sum
arr = [ 10, 20, 30, 40, 40 ]
print(sum_even_freq(arr))
C#
using System;
using System.Collections.Generic;
using System.Linq; // Required for sorting
class Program
{
// Function to calculate the sum of elements with even frequency
static int SumEvenFreq(List<int> arr)
{
arr.Sort(); // Sort the list in ascending order
int i = 0, j = 0;
int sum = 0;
// Loop to iterate through the list
while (j < arr.Count)
{
if (arr[j] == arr[i])
{
j++; // Increment j until the element changes
}
else
{
// If the frequency of elements between i and j is even
if ((j - i) % 2 == 0)
{
sum += arr[i] * (j - i); // Add the element times its frequency to sum
}
i = j; // Move i to the new distinct element
}
}
// Check if the last group of elements has even frequency
if ((j - i) % 2 == 0)
{
sum += arr[i] * (j - i); // Add the element times its frequency to sum
}
return sum;
}
static void Main()
{
List<int> arr = new List<int> { 10, 20, 30, 40, 40 };
Console.WriteLine("Sum of elements with even frequency: " + SumEvenFreq(arr));
}
}
Javascript
function sum_even_freq(arr) {
// Sort the array
arr.sort();
let i = 0;
let j = 0;
let sum = 0;
while (j < arr.length) {
if (arr[j] == arr[i]) {
j += 1;
} else {
// If the frequency of the current element is even, add it to the sum
if ((j - i) % 2 == 0) {
sum += arr[i] * (j - i);
}
i = j;
}
}
// Check the last element
if ((j - i) % 2 == 0) {
sum += arr[i] * (j - i);
}
return sum;
}
let arr = [10, 20, 30, 40, 40];
console.log(sum_even_freq(arr));
Output
80
Time complexity: O(n log n), where n is the length of the input array arr. The sort() function takes O(n log n) time in the worst case, and the while loop takes O(n) time to iterate through the sorted array. Therefore, the overall time complexity is dominated by the sort() function.Space complexity: O(1), since we’re using a constant amount of extra space to store the pointers i and j, and the variable sum.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array
|
https://www.geeksforgeeks.org/sum-of-all-even-occurring-element-in-an-array/?ref=ml_lbp
|
Pandas
|
Sum of all even occurring element in an array
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0113789458, 0.00928205252, -0.0116428901, 0.00262661558, -0.0112763, 0.0244881958, 0.0152941244, 0.0368642658, -0.0326411501, 0.0116355587, -0.00930404756, 0.0271276403, 0.0331690386, -0.0186080951, -0.0216434579, 0.000666735112, -0.0157486945, 0.0130579267, -0.00374471419, -0.0339902, -0.0179628972, -0.00243049, -0.0559855849, 0.0130505953, -0.0396796726, 0.014297, 0.00260462, 0.0128159774, -0.0371575356, 0.0149055393, 0.00446139695, 0.00751508959, -0.00747476472, -0.044518657, -0.0100445589, 4.43058088e-05, -0.00682956679, -0.00718882494, -0.00707884785, -0.000178483388, -0.00509559736, 0.00274209119, -0.0127719864, -0.0287846271, -0.0224646199, 0.00164598797, 0.00521290628, -0.00274025835, 0.00759573933, -0.0195172373, 0.0102351857, -0.0378613882, 0.025763927, 0.0308815204, -0.00725847716, 0.0104917986, -0.0481259, 0.00447239494, -0.0089227939, 0.0053815376, 0.0480379201, -0.0101325409, -0.0292831883, -0.00934070628, -0.00913541671, 0.0121487845, -0.039474383, 0.0407647789, 0.0495922603, -0.0175083261, -0.0450465493, 0.0215848032, 0.009443352, -0.0400902554, 0.00333046773, -0.0115549089, 0.0215848032, 0.0147002488, -0.0306469034, 0.0433749, -0.0449292399, 0.00531555107, -0.0287113097, -0.026907688, 0.0404421799, -0.00180270511, -0.0509119853, -0.0391811132, 0.0601207167, 0.00421578204, -0.0157047044, -0.00692488, -0.00828492828, 0.013453844, -0.0371868648, 0.0195905566, 0.022420628, -0.00283923745, -0.0294151604, 0.0720275566, -0.0257346, 0.00237183576, 0.000848197, -0.031174792, 0.0326411501, -0.00196308806, 0.00111351639, 0.0105357897, 0.0296351146, 0.0288726091, 0.0219807215, -0.00752975326, -0.0153381145, -0.0064226524, 0.0232857801, -0.0169511102, 0.00542552816, -0.0544312447, 0.0171564, 0.0476566665, 0.0174496714, 0.052671615, 0.0261158533, 0.0491816811, -0.0176109709, 0.0549004786, 0.00889346749, -7.64683282e-05, 0.0121927746, -0.0198398363, -0.0246934853, -0.0102718445, 0.0192679577, -0.0178895798, -0.00853420887, -0.0020437378, -0.010198527, 0.0269370135, -0.00509926351, -0.0156753771, -0.00937736593, -0.0304709394, 0.0234470796, 0.0245615132, -0.00432942482, -0.0162912477, 0.012706, 0.0661621168, -0.0283887107, -0.00304819364, -0.0167604834, -0.0102278534, -0.00766905723, 0.00617703702, 0.0102278534, -0.030031031, -0.00589109724, 0.00461169891, 0.00118866726, -0.0693294555, 0.00137471152, -0.00957532413, -0.0160566308, -0.013409853, -0.0113936095, 0.0106457658, 0.0037318836, -0.00367689505, -0.0237403512, 0.0320252813, 0.0231391452, 0.0304122847, 0.0466888696, 0.0105944434, 0.00343861175, 0.00376121071, 0.0139524052, 0.00209506042, -0.0111589916, -0.0448119305, 0.00501861377, -0.0248694476, -0.00889346749, -0.0239016507, 0.0309108477, -0.0051762471, -0.0156167233, -0.0456330925, 0.0240482874, -0.00245615118, -0.0168631282, -0.0188573766, 0.0312921, 0.0206463337, 0.016731156, 0.000654820935, -0.039474383, 0.00171655649, -0.00548784854, 0.0270249955, -0.0137911057, -0.0292978529, 0.00315450481, 0.00581777934, 0.0351046324, -0.0525543056, -0.0196638741, -0.0517624728, 0.0306762289, 0.00440640887, -0.0285206828, 0.0709131211, -0.0354272313, -0.00366223161, 0.00615504198, 0.0132852122, -0.00896678492, 0.0626428574, 0.025412, -0.00594241964, -0.0176842883, 0.0210275874, 0.039972946, 0.00483165262, -0.0311161373, -0.0147222439, -0.00929671619, 0.0178602524, -0.0131092491, -0.0229778457, 0.00732079707, 0.0209396053, -0.0168777909, -0.00162215962, -0.00574079528, -0.0261158533, -0.0230365, 0.0347233787, 0.0149568617, 0.0473340675, -0.0077423756, 0.0129479496, 0.00972929224, -0.017141737, -0.0116795497, -0.011254305, 0.0106530981, -0.0109756971, 0.0302656498, 0.0346354, -0.0136884609, -0.026907688, 0.0124493875, -0.0251480564, -0.029840406, 0.0376854241, 0.0178602524, 0.0104184803, 0.00813096, -0.0111736553, -0.00137471152, -0.00127939822, -0.0339022204, 0.0201477725, 0.0214674957, 0.0216287952, 0.0316440277, -0.00772038, 0.0265410971, -0.0291512161, 0.0219953842, -0.0138131017, -0.00670492649, -0.0326704793, 0.0350459777, 0.00313067646, -0.0183734782, -0.00459336955, 0.0324945152, -0.00373371644, -0.0146562578, 0.0161006209, 0.0492989905, 0.0236963611, 0.024341559, -0.0365416668, 0.0100079, -0.0179922245, -0.0407941081, -0.00731346523, 0.0121927746, -0.0380666777, -0.0115842363, 0.0122954203, 0.0300896857, -0.00516524957, -0.0519091077, -0.0332276933, -0.0458383821, -0.0273329318, -0.0219367296, -0.0552524067, 0.016232593, -0.00736478809, -0.0338142365, -0.0351339616, 0.0157340318, -0.0309988279, -0.0242389143, 0.00417545717, 0.0285060182, -0.0572466552, -0.010909711, -0.0319372974, -0.0252067111, -0.0028685648, 0.0298257414, 0.0179189071, -0.0413513221, -0.0139963962, -0.0271129776, -0.0342248194, -0.015631387, 0.0427883565, -0.00693587773, 0.000578295323, 0.0128673, 0.018886704, 0.00113276229, -0.0335502923, -0.0218780767, 0.0254999828, -0.0405301638, -0.0115255816, 0.0191506483, -0.0372748449, -0.0235203989, 0.0160566308, -0.014465631, -0.0186520871, 0.0213648509, 0.0293858331, 0.00545852119, 0.0118555119, 0.00650330214, 0.00884947646, -0.0294738151, -0.028608663, 0.0226552468, -0.0116428901, 0.00139945629, 0.0194145925, 0.00582144503, -0.00837290939, 0.0234910715, -0.0261305161, -0.0246934853, 0.0013426349, 0.0222593285, -0.0343128, -0.00792567059, 0.0202504173, -0.0516744889, 0.00417545717, -0.0382426418, -0.0286819823, -0.037450809, -0.0402662158, -0.00342394831, -0.00764706219, -0.00931138, 0.00494896155, -0.0022691905, -0.00456037652, -0.0371868648, -0.00368056097, 0.0228458736, 0.00278608198, -0.00805764273, 0.00156075589, -0.0325531699, 0.0394157283, 0.0182415061, 0.00106494315, 0.0183001608, 0.00651429966, -0.0509119853, -0.0222300012, -0.0230365, 0.0103524942, -0.0121707795, 0.0174789988, -0.0195025746, 0.00198508357, 0.00820427854, 0.0205730163, 0.00131880655, 0.000685981067, -0.0182854962, -0.0161006209, 0.0123247476, 0.00813829247, 0.0191066582, -0.00552084157, -0.0141796917, 0.0347820334, -0.017141737, 0.0131239127, 0.0214528311, 0.0156607144, 0.0234030895, 0.0415272862, -0.0377147533, -0.0131385764, 0.0228752, -0.000948550936, -0.063170746, 0.0388585143, 0.0016817305, -0.0260278713, -0.00680390559, 0.00104203133, -0.0173323639, 0.0504134223, -0.0265117697, 0.023564389, 0.0171857271, 0.00182378397, 0.0302949771, 0.011188319, -0.0486244634, 0.00246165018, 0.0288872719, 0.000855070597, -0.0164085571, 0.00115842361, 0.0163352396, 0.0138497604, -0.0457210727, -0.0423484482, 0.0342834741, 0.0291512161, -0.0143556548, -0.0125227058, 0.00544019183, -0.00305185956, -0.025074739, -0.00308485259, -0.00824827, 0.00480232574, -0.0238429978, -0.0172297172, -0.0125227058, -0.0301483404, 0.0467475243, 0.000536137493, 0.0473633967, -0.0353685766, 0.00624668924, 0.0062650186, 0.00694320956, 0.0284473635, -0.00765439402, -0.0214381684, 0.0308228657, 0.05135189, 0.00942868832, 0.0225965921, -0.0262771528, -0.00300786877, -0.0115695726, -0.038096007, 0.00658761756, 0.0121707795, 0.0185347777, -0.00116758829, 0.0297230966, -0.0329344235, 0.00298220757, -0.042817682, 0.00561615499, -0.00135913142, 0.0209835973, -0.011664886, -0.000661236234, -0.00206573331, 0.0576865636, -0.00660228124, -0.010887715, 0.00291438843, -0.0209689327, 0.00921606645, -0.00818961486, 0.0112469736, -0.0193119477, -0.00147094135, -0.05437259, -0.0296497792, 0.02397497, 0.0396796726, 0.0321719162, -0.0402368903, -0.0278461576, 0.0189453587, -0.0193412751, -0.0835824609, -0.00393350795, 0.0140917096, 0.0153381145, -0.0283887107, -0.0235790517, 0.0200011358, 0.000483898475, 0.0155140776, -0.0177136157, -0.0197225288, -0.0412633419, -0.0197078642, -0.0227139, 0.0104258126, 0.00593875395, -0.0108583886, -0.0066206106, 0.0410580523, -0.0126253506, 0.011576904, 0.0115109179, 0.00581411319, 0.0038711878, -0.0176402982, -0.0091867391, 0.0202210899, -0.0114522632, 0.0175816435, 0.0134465117, -0.0539620109, 0.00133713614, 0.0469821431, -0.0115035865, 0.0179042425, -0.00624668924, 0.0111443279, -0.048829753, 0.0208809525, -0.0374801345, 0.00393350795, 0.0237550158, 0.00518357893, 0.0141063733, 0.0136151435, 0.000597541279, 0.0287259724, -0.00445039943, -0.00744543783, -0.0116135627, -0.0042597726, 0.0190186761, -0.0085195452, -0.00205106963, -0.0103671579, 0.010887715, 0.00104844663, 0.0357791595, 0.0085268775, 0.000210330865, -0.0256172922, -0.00352292741, 0.0344594344, -0.02099826, -0.0134025207, -0.0123247476, -0.016731156, 0.0238576606, -0.0246788207, 0.00160108076, 0.00574812712, 0.0179189071, -0.0291072261, -0.00607805792, 0.0448119305, -0.00511026103, -0.0179482345, 0.0157633591, -0.00309951627, -0.0331397131, -0.042817682, -0.0113936095, 0.00326814759, -0.0107044205, 0.00561248884, -0.0106017757, 0.0540499911, 0.0241655968, 0.002005246, -0.0287406351, -0.0233004447, -0.0218927395, -0.00762506668, -0.0246201679, -0.0018787724, 0.000362923834, 0.0185347777, -0.0161739402, -0.00279158098, 0.0290925615, 0.00966330525, -0.0253386833, 0.032142587, -0.0146709215, 0.00624668924, -0.0638745949, -0.0026119519, 0.0314387381, -0.00394450547, 0.00932604354, -0.00183386519, 0.0122147705, -0.00361090899, -0.0203237347, -0.00254963175, -0.0155287413, -0.0461903065, -0.00867351331, 0.0220833663, 0.0312041193, -0.0212915316, -0.0135271614, -0.0146635901, -0.00596441515, -0.0340195298, 0.0110930055, -0.0304709394, 0.00857086852, -0.0061917007, -0.00453471532, 0.0234324168, 0.00119783194, -0.000712100591, -0.0154994139, 0.0451345295, -0.0143483225, 0.00496729091, -0.0370109, 0.0886267349, 0.00281540933, -0.00100812176, -0.0508533306, 0.0231244806, 0.0081236288, 0.0138644241, 0.021819422, 0.00629801163, 0.0424071029, 0.0230071731, -0.00805764273, -0.0316147, 0.025675945, -0.0172150545, -0.0223766379, 0.0098979231, -0.0274942312, -0.00206206739, 0.0155140776, -0.0085195452, -0.00778636616, -0.0150888339, -0.0178309251, 0.0163059123, 0.0123834014, 0.014920203, -0.0104624713, -0.00691388268, 0.00227102358, -0.000917390862, 0.0241655968, -0.0278461576, -0.0272742771, 0.0180068891, 0.0128086461, 0.0230658259, 0.0303243045, 0.00183203223, -0.00578845199, -0.0243122317, 0.00146544247, -0.00838757306, -0.021320859, 0.00454204716, -0.0158660039, -0.0175669808, -0.0440494232, -0.00314167421, 0.0215114858, 0.028330056, -0.0032369874, -0.0110270195, -0.0231684726, 0.0318493173, -0.0220687017, -0.00942868832, 0.0166138466, -0.0161592755, -0.00634933449, 0.00791100692, -0.00103286665, 0.0295031425, -0.0212768689, 0.0226845741, 0.00594975147, -0.0318786427, 0.0208956152, 0.0262038354, -0.0193999298, 0.0131459078, 0.0104478076, -0.0274942312, -0.00566014554, -0.0309988279, -0.00680024, 0.00464102626, 0.00162215962, 0.00277875015, 0.00358708063, -0.0585663766, 0.015264797, 0.000215600594, -0.0111369966, -0.0264677797, -0.00352659333, -0.00666826731, -0.00151951448, -0.0177282803, -0.0247374754, 0.00198325049, -0.0136957932, 0.00292721903, 0.0193412751, 0.00616970519, -0.00480965758, 0.00219953852, 0.0135124978, 0.00601940369, 0.0212768689, 0.0245468486, -0.00188793719, -0.00481332326, 0.0202944074, 0.0384186059, -0.0116135627, -0.00548418239, -0.0207636431, 0.014920203, 0.0155580686, 0.0089887809, -0.0095826555, -0.023564389, 0.0117968582, -0.0128746321, 0.0143483225, 0.0128892958, 0.0257199369, 0.0285500102, 0.0071081752, 0.00262111658, 0.00387485349, -0.000700186414, -0.0536687374, 0.0238869879, 0.00491596851, 0.012332079, 0.0204850342, 0.0141357007, 0.00759573933, 0.00640432304, -0.0286233276, -0.033784911, 0.0392690934, 0.00609638728, 0.00893745758, 0.0153821055, -0.0136078112, 0.0266144145, 0.00842423271, 0.029752424, 0.00243782182, 0.00351742865, 0.00541819632, -0.0203530621, 0.030764211, 0.00972196, 0.026086526, 0.0298843961, 0.024341559, 0.0205876809, -0.0150155155, -0.00986859575, -0.0208076332, -0.0225232746, 0.0046483581, -0.0444306768, 0.0111736553, 0.00546585303, -0.0124273924, -0.014920203, 0.00276958547, -0.026497107, 0.0114815906, -0.00738678314, 0.00430009747, -0.000629159622, 0.000806955679, -0.0038052015, 0.0098466007, -0.00441007456, 0.00686256, 0.010887715, 0.0162765849, 0.000640157319, -0.00165148685, 0.0178162623, -0.0147442399, 0.00309218443, 0.0207343157, -0.0410580523, -0.0192826204, 0.0483898446, 9.14755947e-05, -0.0303243045, 0.0357498303, 0.00277141854, 0.00838757306, 0.00866618194, -0.00435875216, 0.0441080779, 0.00687355781, -0.0107704066, -0.0130359316, 0.00431842729, 0.00249281037, 0.0194439199, -0.00942135602, -0.0150448428, -0.00399216218, -0.0150595065, 0.00216471241, 0.00670859218, -0.0223179832, 0.0187107399, 0.00724747917, -0.00654729269, 0.0124200601, -0.018886704, 0.0177576076, -0.0114082731, -0.0356911756, 0.0153381145, -0.0106604295, -0.0262771528, 0.00729147, 0.0101838633, -0.00765439402, -0.0334329829, 0.000762506679, -0.0224792827, 0.0164378844, 0.0219513942, -0.0202064272, -0.018886704, -0.0143336589, -0.0163059123, 0.00621736189, -0.0125373695, 0.0276115388, 0.0114009408, -0.00765439402, 0.00102370186, -0.0145242857, 0.0310868099, -0.00571513409, -0.0155727323, 0.0142310141, -0.0042891, -0.0582437776, -0.0455744378, -0.0351046324, 0.0109683648, -0.0130139356, -0.0266144145, 0.0116795497, -0.0327877849, 0.022098029, -0.000607622496, -0.000815662206, -0.0240336228, 0.0185054503, 0.0149275344, 0.0104624713, -0.00456770835, 0.0332570225, -0.00243049, 0.0111516602, 0.00613671215, 0.0191946384, 0.00228752, 0.00997857284, -0.00298220757, 0.000920140243, 0.0055318391, -0.00704218913, 0.0351926163, 0.0240776148, -0.00025661281, -0.0348993428, -0.0541673, 0.00277325138, 0.00574079528, -0.0135418251, 0.00625402108, 0.00276958547, 0.00831425563, -0.0110196881, 0.00939936098, 0.0277875029, 0.00762506668, -0.0228165463, -0.032083936, -0.0344594344, 0.0114595955, -0.0235057343, -0.0114522632, -7.97619123e-06, 0.013776443, -0.00442840392, -0.0139304101, 0.00154334283, 0.0271276403, -0.0378907174, -0.0180508792, -0.0388585143, -0.0397676565, 0.0230951533, 0.0415566117, 0.0211742241, -0.0246055033, 0.00239199819, -0.0143776499, -0.00552084157, -0.00109243742, 0.0159979761, 0.0139597375, 0.00562715251, -0.0158953313, 0.0310574826, -0.00223253155, 0.0018439464, -0.0159393214, -0.0317320079, 0.0031196787, 0.0117968582, 0.018798722, -0.0007551749, -0.0358964689, -0.0269223507, -0.0166578386, -0.0165698566, 0.00206023431, 0.0029675439, -0.0291512161, -0.0110270195, -0.0195465647, 0.0340195298, -0.0253680106, 0.026086526, -0.00174680015, -0.027508894, -0.0123174153, 0.007610403, -0.0505600572, 0.0115109179, 0.0112763, -0.00305735855, 0.0137471156, 0.0280954372, -0.0103451628, 0.00480965758, -0.00709717767, 0.00862952229, -0.0071081752, 0.00723648164, 0.00071622472, 0.000643365, 0.0147442399, 0.0220687017, -0.0113789458, -0.0190480035, 0.0141137056, 0.0228165463, -0.0214968231, -0.0272009596, -0.0275528859, -0.00408747559, -0.00572246592, -0.00238283328, -0.000263257272, 0.027508894, 0.00685889414, 0.00523856748, -0.0158953313, -0.00470334664, -0.00112268107, -0.0306762289, -0.0313507542, 0.0178749152, -0.00894479, 0.0225232746, 0.0140990419, -0.00666460162, 0.00233884249, 0.0524076708, -0.00611105096, -0.00803564675, -0.064226523, -0.0199131556, -0.00601573754, 0.0111589916, 0.0159979761, -0.000898603117, 0.0181388613, 0.0264677797, -0.00547318486, -0.0211888868, 0.0122807566, 0.0108950473, -0.00318199908, 0.0105651161, 0.00972196, -0.00796966068, -0.0232711174, 0.0168777909, -0.0161739402, 0.0253680106, 0.00181645213, 0.00480232574, 0.0126913367, 0.00120608031, -0.0108510563, -0.00931138, -0.0120901298, 0.00890813116, 0.00633467082, 0.00140037283, -0.00115567422, -0.00728413835, 0.0125886919, 0.015543405, -0.00745276967, 0.0126326829, -0.0117088761, 0.0337262563, 0.00219220668, -0.0098466007, -0.00516891526, -0.00679657375, -0.0105724484, -0.0200891178, 0.0120021487, 0.00376487663, -0.00840223674, 0.0129919406, 0.0300603583, 0.0107190842, -0.00711550703, -0.0107264156, 0.0191213209, 0.001358215, 0.00160932902, 0.0208076332, -0.00538520329, -0.00821161, -0.0292685255, 0.00302436529, -0.0349579975, 0.0204263814, 0.0125593645, 0.00115017535, -0.0357791595, 0.00996390916, 0.0140843783, -0.012676673, -0.00585810421, 0.00332496897, 0.00194292562, -0.00367139629, 0.0021042251, 0.00402882136, -0.0365123376, -0.0117968582, 0.0640505627, 0.00634200266, 0.0103964852, -0.016320575, -0.00511392672, 0.00335246325, -0.00359991123, 0.0110856742, 0.0071558319, -0.00438807905, 0.0308815204, 0.0131898988, 0.00699819811, 0.0189160313, 0.0183588136, 0.00714483391, 6.99957309e-05, -0.00373005075, -0.0183001608, -0.00992725, -0.0081236288, 0.00120058144, 0.00330663938, -0.0113129597, 0.0219660569, -0.00691388268, -0.0115549089, -0.0232711174, -0.0130066043, -0.0122807566, 0.0163499024, -0.0225819275, -0.00733546074, 0.00370438932, -0.00576645648, 0.00464102626, 0.0110563468, -0.00358158187, -0.0155287413, 0.0279634651, -0.00547318486, -0.00250930688, -0.022831209, 0.0224352926, -0.000920598512, -0.00765439402, 0.00130505953, 0.000837199332, -0.0167604834, 0.0177282803, -0.0429936461, -0.0102498494, -0.0180802066, 0.0161446128, -0.00363107142, 0.0127719864, -0.0149861891, -0.0030591914, -0.00140953751, -0.00453104917, -0.00582511118, -0.0298990589, 0.0194439199, -0.00692854635, -0.0223766379, -0.00381986517, -0.0269516781, -0.024253577, -0.00879082177, -0.00233517657, -0.0220100489, 0.0230658259, 0.0187840592, 0.00683689862, -0.00319666252, 0.0080649741, -0.0191799756, 0.00379786966, -0.015308788, -0.0231244806, -0.0136444699, 0.00650696782, -0.0386238955, 0.00818228349, -0.00201441068, -0.0046960148, -0.0167018287, -0.00120974611, 0.0044907243, -0.0221860111, -0.00444306759, -0.0259545539, -0.018798722, -0.0205583535, 0.00254779868, -0.0119801527, 0.013776443, 0.0242389143, 0.00854154117, -0.0136957932, -0.036131084, 0.00386385596, 0.00903277099, -0.0135638202, -0.0243855491, -0.012310084, -0.0102571808, -0.0108950473, -0.00316366949, 0.0180068891, 0.0128819635, 0.021086242, -0.00687355781, -0.00483531877, 0.0219367296, 0.00563081866, -0.0162765849, 0.00740877865, -0.0223619752, 0.0446946211, 0.0143189952, -0.00408381, 0.0248401202, -0.0226405822, -6.72463066e-05, -0.0176109709, -0.00895212125, 0.0093846973, -0.00955332909, 0.0265997518, -0.0254706554, 0.0160859581, 0.022919191, -0.0117088761, -0.0220540389, -0.0135784838, 0.0149275344, 0.0054071988, -0.0125007099, -0.00942135602, 0.00813096, 0.0176402982, -0.00425244123, -0.013065258, 0.013798438, -0.00931871124, 0.019619884, -0.00256062928, 0.0194732472, -0.011188319, -0.00328281126, -0.0131752351, -0.0152354697, -0.00691388268, 0.026086526, -0.0197225288, 0.00734645827, -0.00284840236, 0.019575892, -0.00093342911, -0.00532654906, 0.00342028239, 0.0126840053, 0.00791100692, -0.0327877849, 0.00580311567, -0.000348031142, -0.008321587, -0.0336089469, 0.0216141306, -0.00128947943, -0.0277728382, 0.012720664, 0.0166285113, 0.0119214989, 0.00941402465, 0.0275822114, -0.00280074566, 0.010543121, 0.0281834193, -0.0283740461, 0.0158366766, -0.00229851762, 0.0129112909, -0.0315560438, 0.0216434579, -0.0157193691, -0.012706, 0.019165311, 0.00853420887, -0.00199974701, 0.0012601522, -0.010543121, 0.0051505859, -0.00592409028, 0.0019355939, 0.00805031, -0.0193999298, -0.0211155694, 0.00316183665, -0.0113862772, -0.010909711, -0.0177282803, 0.00752242142, -0.00119874848, -0.0180362146, -0.0244295411, 0.00677824439, 0.000117996075, 0.0103304991, 0.011620895, 0.0118261855, -0.0154847512, -0.002894226, -0.0326704793, -0.00618803501, -0.0120168114, -0.00887880381, -0.0115622403, 0.000394771341, -0.0127499914, 0.0230951533, 0.0108583886, -0.00727314036, -0.0295911245, -0.0121634481, 0.0139524052, -0.000516891538, -0.00927472, 0.00813829247, -0.0129186222, 0.00417179149, 0.0277288482, 0.00162674196, 0.00893012621, 0.00607805792, 0.0256466176, -0.0280221198, -0.0461903065, 0.0126400143, 0.00470334664, -0.0219074022, -0.024341559, 0.00729880203, 0.0427003726, 8.952809e-05, 0.00760307116, 0.0050259456, -0.0144583, 0.0210129246, -0.0164525472, 0.00784502085, 0.0204996988, -0.0183734782, 0.0200597905, 0.0313800834, -0.000839948771, -0.000215600594, -0.00443940191, -0.0291072261, 0.00613304647, -0.00722548366, -0.00843156409, 0.010198527, -0.00202357536, 0.0216874499, -0.015220806, -0.0222153384, 0.0164965391, -0.00384186045, -0.0211888868, 0.0200744551, -0.0128379725, -0.0150448428, 0.0120534711, -0.034430109, -0.018842712, 0.0386825502, -0.001501185, -0.0116795497, -0.0136884609, 0.00875416305, 0.00933337491, 0.000828951073, -0.00622836, 0.013131245, -0.00847555511, 0.0140697146, 0.00765439402, -0.0328757688, 0.00498195458, -0.0182561688, -0.000368422683, -0.0193559378, 0.000961381593, 0.0247228127, 0.00543286, -0.00532654906, -0.0363657027, -0.00465569, -0.0275382213, -0.00751508959, -0.0266144145, 0.00320216152, -0.0036274055, -0.0172297172, 0.0132412212, 0.00376121071, 0.0237990059, 0.0187547319, 0.00473633967, -0.034928672, -0.00782302488, 0.0201477725, 0.0039628353, -0.000773962587, 0.021408841, -0.00146910839, 0.00283190585, 0.00212438754, -0.0185787678, -0.0291512161, -0.0249281023, -0.00909875706, -0.00384186045, -0.0130139356, -0.0293125156, -0.0207489803, 0.00547685055, 0.0131092491, 0.00930404756, -0.0139890648, 0.0138644241, -0.0266584065, -0.0115035865, -0.00377587439, -0.0205583535, 0.00826293323, -0.000286856462, 0.00761773484, -0.0129846083, 0.0462489612, -0.00895212125, -0.0109023787, 0.017464336, -0.00825560093, -0.0054071988, 0.0129039586, -0.000735928887, 0.026907688, -0.0292978529, -0.0139744012, -0.0186227597, 0.0215554778, 0.0469821431, 0.0277581755, 0.0330224037, 0.000588376541, 0.00630900962, -0.0218047574, -0.0137617793, 0.00138662569, 0.0061403783, 0.00932604354, 0.0346354, -0.000933887379, -0.0176989529, 0.0322305709, 0.0240776148, 0.0281834193, -0.0270396601, -0.00500395, -0.000959548634, -0.0139744012, -0.018974686, -0.000282045, -0.0242242496, -0.00828492828, -0.00580678135, -0.0240776148, -0.0184028056, 0.00613671215, 0.0141796917, -0.00624668924, -0.0139597375, -0.0134171844, -0.0211302321, 0.0144436359, 0.017053755, -0.0136444699, -0.0180362146, 0.0322012417, 0.0430523, 0.0200304631, 0.00775703881, 0.0217900947, 0.00181461929, 0.00664993795, -0.00801365171, -0.0111223329, 0.0153381145, 0.0310574826, 0.012310084, 0.0168044735, -0.00242132531, 0.0128746321, -0.0316733532, -0.0346060731, 0.0305002667, -0.0133438669, 0.00200158, 0.0061403783, 0.0110050244, -0.0243122317, 0.0210715793, 0.0146489264, 0.0142090181, 0.039474383, -0.00685889414, -0.00640065689, -0.007610403, -0.0270103328, -0.0112396413, -0.000702935853, 0.02250861, -0.030119013, 0.014187023, 0.0299870409, -0.0100518912, -0.00788901094, 0.00330847246, 0.00410213927, -0.0254413281, 0.0013298043, 0.0123834014, -0.00983193703, 0.0265410971, -0.0196052194, 0.00309768342, -7.93323125e-05, 0.0122807566, 0.0111296643, 0.00990525447, 0.000681856938, 0.00289972499, -0.00805764273, 0.0212035514, -0.0168484654, -0.0129846083, -0.00711550703, -0.00703119114, -0.0150888339, -0.0052752262, -0.0211888868, -0.000863777066, 0.0055318391, -0.00879815407, 0.00347893662, -0.0106824255, 0.0135198301, 0.00426710444, 0.00407281192, 0.000103848004, 0.019898491, 0.0104698027, 0.00500761578, -0.00936270226, -0.00295288046, -0.00236267084, 0.0215408131, 0.00207673083, -0.00588743109, -0.0180362146, 0.00549151422, 0.013065258, 0.00152867928, -0.00372638484, -0.00461169891, -0.004010492, 0.00566381169, -0.00464469194, 0.0165698566, -0.001624909, -0.0075370851, -0.00381253334, 0.0333450027, -0.0148688797, 0.0204850342, 0.00262294966, 0.0166138466, -0.00297670881, 0.00610371912, -0.0218047574, -0.00688088965, -0.00301886653, -0.0293125156, 0.0144069772, 0.013798438, 0.00108052325, -0.00599007634, -0.0110123558, -0.0154260965, 0.000872483593, 0.0106897568, 0.0288139544, 0.00273109367, -0.00233884249, 0.0176402982, -0.00398116466, 0.00547318486, -0.00248181261, -0.044841256, 0.00398116466, -0.00535587594, 0.00329564186, -0.0142310141, -0.0214528311, -0.0223473106, 0.0242095869, 0.0211888868, 0.00436974969, -0.000772587897, 0.0233297721, 0.00149110379, -0.0133731943, 0.00588009972, 0.0264824424, 0.00654729269, -0.001856777, -0.0136957932, 0.0124640511, 0.0114449318, -0.00551717542, -0.0156753771, -0.0231244806, 0.0151474886, 0.00561982067, 0.00441374071, 0.0242242496, -0.0192532931, 0.000643365, 0.0100152316, -0.0338435657, 0.020719653, 0.0179335698, -0.0126326829, 0.0158806685, -0.0157047044, 0.0171564, 0.0102205221, -0.000261882553, 0.00269443472, -0.00384919229, 0.00214638305, 0.00290155783, -0.00120791316, 0.0109610334, -0.00557216397, 0.0180215519, 0.0198105089, 0.00361274183, -0.0109390384, -0.00869550835, 0.0146855852, 0.0151034975, 0.00394450547, 0.00368606, 0.00112543057, -0.00902544, -0.0313507542, 0.00506260432, 0.00893012621, 0.016643174, 0.0306469034, -0.00958998781, 0.00662427675, -0.0114082731, 0.0305589214, -0.0176989529, -0.0103598265, 0.000954049814, 0.0165405292, 0.000216402506, -0.00372455176, -0.000620453153, -0.00462636258, 0.0192532931, 0.0128526362, 0.00444673374, 0.00496729091, -0.00238283328, 0.00331397122, -0.00653996086, -0.00810896512, -0.0115622403, -0.0110050244, -0.0173177, -0.0227872189, 0.00889346749, -0.00907676201, 0.00829959195, 0.00198874925, 0.0301483404, -0.0157633591, -0.000800082111, -0.0489177369, 0.00349176722, -0.011532913, -0.0320546068, -0.0084682228, -0.0266877338, -0.0104844663, -0.000647030887, -0.00475833472, -0.00815295614, -0.0164672118, -0.00567114353, 0.00790367462, 0.00596074946, -0.0218487494, 0.00757374428, -0.00861485861, 0.0100885499, -0.0174203441, 0.015543405, -0.00799898803, -0.0178749152, -0.0156020597, 0.00765439402, 0.00130780891, -0.00621003, 0.00467768498, -0.011576904, 0.0197078642, -0.00592409028, -0.013365862, -0.00165790215, -0.0240776148, -0.00584710622, 0.0150888339, 0.0196932014, -0.0107704066, -0.00535221025, -0.00468501681, 0.000565006456, -0.00945801567, -0.0198398363, -0.0158220138, -0.00881281774, 0.013065258, -8.35710089e-05, 0.0236670338, -0.00243049, -0.0197371915, 0.010198527, -0.0138131017, 0.00263578026, 0.014465631, -0.0139670689, 0.0117235398, -0.00113184587, 0.00716682943, 0.00619903253, 0.0195025746, 0.0237403512, -0.00516158342, 0.014553613, 0.0103158355, 0.00286123296, -0.0273329318, -0.000244011302, -0.0298550688, -0.0126033556, 0.00381986517, -0.0109976921, 0.0226259194, 0.0490350425, -0.00156808761, 8.04206284e-05, 0.0110196881, -0.000841323461, -0.0165991839, 0.016232593, 0.00668659713, 0.00417545717, -0.0345180891, -0.0105137937, -0.00408381, -0.00444306759, 0.00544752367, 0.024664158, 0.00386019, 0.00564914802, 0.00424144324, 0.00159558188, -0.00539986696, -0.00246165018, 0.0138864191, -0.00771304825, 0.014187023, 0.016965773, 0.0011712542, 0.00413879799, -0.0110930055, -0.0222886559, -0.0211448967, -0.012332079, 0.00292355311, -0.00796966068, 0.0121047935, 0.0249427669, -0.0033762916, 0.0269810054, -0.000226140051, 0.00199241517, -0.00890813116, -0.0131825674, 0.00848288648, 0.0208076332, 0.0106384344, 0.0266290791, 0.00435875216, 0.0171857271, 0.0198691636, -0.0107630752, 0.00395550346, -0.000325806643, -0.0223033205, -0.000903643726, 0.00258262479, -0.018476123, 0.0211302321, 0.005077268, -0.0135638202, -1.42125127e-05, 0.0197225288, 0.00314717297, -0.00824827, -0.015543405, -0.00545118935, 0.00493063219, -0.0143409912, -0.000393396622, 0.00705318665, -0.029019244, 0.007082514, 0.0234470796, -0.0147515712, -0.0142676728, 0.0413513221, 0.0115109179, -0.0111443279, -0.0163499024, -0.00663527427, 0.0214381684, 0.0317613371, -0.00282274093, -0.00186044292, 0.0102278534, -0.00816762, 0.0136151435, 0.0105724484, -0.0167018287, -0.0131898988, 0.0124860471, 0.00724014733, -0.0177722704, -0.00577378832, -0.0027292606, 0.0114889229, -4.73702676e-05, -0.0159393214, 0.0208956152, 0.00335063017, -0.00594241964, 0.0134391803, -0.0234324168, -0.00870284066, -0.00352292741, -0.0147369076, 0.00591309275, -0.0125227058, -0.0242095869, 0.00558682764, -0.0164818745, -0.00410213927, 0.0184174683, -0.00197591865, 0.00977328233, 0.0207783058, -0.00622469373, 0.0491816811, 0.00361824082, 0.0165112019, 0.0166285113, 0.0131605715, -0.00304269488, 0.0161152855, 0.0199571457, 0.0179628972, -0.00506260432, -0.0280661099, -0.00174588361, -0.00421211636, 0.0216141306, 0.0179335698, -0.0051505859, -0.0193706024, -0.0136518022, -0.0244148765, 0.00658395188, -0.0140477186, -0.0161886029, 0.0131385764, -0.00279341382, -0.0118775079, -0.0252213739, -0.00420845, 0.0164232198, -0.0292245336, -0.0151181612, -0.00108510558, 0.0164818745, -0.00267427228, -0.0108363926, -0.0114082731, -0.0213355236, 0.00384186045, -0.0168924555, 0.00199241517, 0.00908409432, -0.0168631282, -0.0186374225, -0.0341661647, -0.0115695726, 0.00269626756, 0.0154260965, 0.0131679038, -0.0019355939, 0.0196492095, 0.00845355913, 0.00316366949, 0.00386752188, -0.0110930055, 0.0208076332, 0.00980994198, -0.0110783419, 0.00408014376, -0.00435142033, -0.00580311567, 0.0318493173, 0.0176549628, -0.0204557069, -0.00908409432, 0.0161299482, 0.025397338, 0.00935537, -0.000901810767, -0.0104698027, 0.0100812176, -0.0128086461, -0.00967063755, 0.00372638484, -0.00255513052, 0.0140917096, 0.0178749152, -0.0178602524, 0.00171930587, -0.031174792, -0.0263797976, 0.00198141765, -0.00233700965, -0.0169217829, -0.0161006209, 0.00876149442, 0.00244881958, -0.0430229716, 0.00143244944, -0.00200707885, -0.00652896333, 0.0179335698, -0.00268893573, 0.0144289723, -0.00871750433, 0.00318199908, 0.00676724687, 0.00300420285, 0.00188427127, -0.00654729269, -0.0125007099, -0.0161739402, 0.00940669328, -0.0114376, 0.00374104828, 0.0125960233, 0.0121561158, -0.0106824255, 0.0154847512, 0.00515791774, 0.0129332859, 0.00509926351, -0.0199718084, -0.00302619836, -0.00877615809, 0.00595708331, -0.0122440979, -0.0149641931, 0.00545485551, 0.0195025746, 0.0335796215, -0.0149935205, 0.0213355236, 0.0125080422, 0.00834358297, -0.0182854962, 0.016643174, 0.00574446144, -0.00364756794, -0.000713475281, -0.0111663239, 0.00364756794, 0.00663527427, 0.00504427496, -0.0126473466, 0.008732168, -0.0052752262, -0.00599740818, -0.0089814486, -0.00270543224, 0.00297487574, -0.0180802066, -0.00348626846, 0.00500395, 0.00390418083, 0.00757374428, 0.0243855491, 0.0185787678, -0.0218634121, 0.0141137056, -0.0135051664, -0.00485731428, 0.0161446128, 0.00727314036, 0.0175523162, 0.0124787148, -0.0154700875, 0.0015231804, -0.014165028, -0.0100372275, 0.0128892958, 0.00617703702, -0.00701286178, 0.00389318308, -0.0112836324, -0.00501861377, -0.0252507012, 0.0117162084, -2.68355143e-05, -0.00189526903, 0.00909875706, -0.0117162084, 0.0302069951, 0.00975128729, 0.0120754661, 0.0175669808, -0.0198105089, 0.00703485729, -0.00819694623, 0.00183019927, -0.00136737979, 0.00247631362, -0.0108730514, 0.00341661647, -0.0172590446, -0.00365856569, -0.0448119305, -0.032406535, 0.00412780046, -0.0018375311, 0.00257162703, -0.0168924555, -0.00540353265, 0.00767638907, -0.0135418251, -0.0112616373, -0.00550984405, -0.00101270422, 0.0126400143, 0.00677091256, -0.00674525136, -0.00527889235, -0.00889346749, 0.0351046324, 0.00842423271, -0.0016725657, -0.0154554239, -0.00151768152, -0.00715216575, 0.0235497244, 0.0207489803, 0.0163499024, 0.0041607935, 0.0129699456, -0.00208406267, 0.026086526, -0.0235350616, -0.0260718632, 0.015176815, 0.0136664659, 0.00370988832, 0.0193706024, 0.0226112548, 0.00810896512, 0.00162307604, 0.0185494404, -0.0173910167, 0.00824093726, 0.025397338, 0.0260718632, 0.00327364635, 0.00267977105, -0.00561615499, 0.0408820882, -0.00836557802, -0.0247814674, 0.0050259456, 0.0120827984, -0.0317320079, 0.00545852119, -0.012999272, -0.00710084336, -0.00421211636, 0.00670126034, -0.00792567059, -0.0135711525, 0.00400316, 0.0126400143, 0.00373554952, -0.00965597387, 0.00989059173, 0.0179775618, 0.00696520507, -0.019986473, -0.0171124097, -0.0195465647, 0.0136811296, 0.00904010329, -0.00685522798, 0.0161006209, 0.0116868811, -0.0251920465, -0.0132192262, 0.0183294881, -0.0113569498, 0.016232593, 0.0233444348, 0.0074857627, 0.0173323639, 0.00297304289, -0.000332909316, -0.0154407602, -0.0233004447, -0.00636766385, -0.00122990855, 0.0166578386, -0.0132045625, -0.00506993616, -0.00568947289, -0.025074739, 0.0209102798, 0.0223619752, 0.0013646303, 0.00758107612, 0.0081236288, -0.00372088584, 0.00693587773, -0.00544752367, 0.0116428901, 0.0015295957, -0.00255513052, -0.000584710622, 0.000555841718, 0.00443207, -0.0167604834, -0.00822627358, 0.0120974611, 0.00856353622, 0.00233884249, 0.0273769218, -0.0126033556, -0.0176402982, -0.0172737092, 0.00349909905, -0.00640798872, -0.02173144, 0.00874683168, -0.00228385418, 0.0365416668, 0.0208956152, -0.0276262034, 0.00706051849, -0.0325238407, 0.00460070139, 0.0049196342, 0.0198105089, 0.0031196787, 0.00137196213, 0.0115989, 0.00712650456, 0.0103231668, -0.0184321329, 0.022743227, 0.000768005499, 0.00942868832, 0.00455671037, 0.0251040664, 0.0324358605, -0.00824093726, -0.0180362146, 0.0175523162, -0.00692854635, -0.0151034975, 0.0274355765, -0.0360431038, 0.0147808986, -0.0167018287, -0.00338179036, -0.0129112909, 0.00937003363, 0.0297377594, 0.00660594739, -0.0101252086, 0.000117766955, 0.0253093559, 0.0100445589, -0.00848288648, 0.0154114328, -0.0155140776, -0.00335796201, -0.0215261504, 0.00977328233, -0.00342394831, 0.0189453587, 0.000880731852, -0.00747843087, 0.000245386, 0.00468135113, 0.0156167233, 0.00114650943, -0.00980994198, 0.00182011805, 0.0157047044, 0.00195942214, -0.0243122317, -0.0193412751, 0.00972929224, -0.0193559378, 0.00331763714, 0.0095826555, 0.00595708331, -0.00239199819, 0.0136004798, 0.0018503617, 0.0255733, -0.00173030363, 0.0187400673, 0.00330114062, -0.00674158521, -0.0121634481, -9.88789907e-06, 0.010909711, -0.0120388074, 0.019986473, 0.0308815204, -0.00917207543, 0.0136224749, 0.00755908061, 0.00104936317, 0.00400682585, 0.00468501681, 0.00111993169, 0.000410580513, 0.00195209042, -0.00655095885, -0.0118408492, -0.00834358297, 0.00795499701, 0.0146269305, -0.0114449318, 0.00637866138, -0.00135913142, -0.0305589214, -0.0100005679, 0.00817495119, -0.0147808986, -0.0134245167, -0.0109610334, 0.00653262902, -0.0116722174, -0.0179189071, -0.0122734243, -0.0298550688, 0.0201477725, -0.00937736593, -0.0154554239, 0.021086242, -0.000187075333, 0.00555016892, 0.00392251043, 0.000710267632, -0.0070238593, -0.00035811236, 0.00814562384, 0.0206609983, 0.00309768342, -0.0197665188, 0.00430376362, 0.0117455358, 0.0034881013, 0.00711917272, 0.00726214284, -0.030119013, -0.00279707974, -0.0210569147, -0.00945068337, -0.00622102804, 0.00610738527, -0.0323185511, -0.00438441336, 0.00269626756, -0.008732168, 0.00224169623, 0.000125327875, -0.0153234517, -0.00339278812, 0.00088760542, 0.00830692332, 0.0106017757, 0.0241216049, -0.0220540389, -0.000194407126, 0.0119581576, -0.0197665188, 0.012654678, -0.00111168344, 0.00442473823, 0.00884214416, -0.0161592755, 0.018564105, -0.00535221025, -0.00210239226, -0.00681490311, 0.000631909061, 0.00859286357, 0.00625035493, 0.00674158521, 0.0246348307, 0.0207929704, 0.0261011906, 0.00868817698, -0.0232271254, -0.0207636431, 0.00719615677, -0.0098392684, 0.000651155, -0.015543405, -0.0313800834, 0.00668659713, 0.00528989, -0.0121634481, 0.00111626578, -0.0207783058, 0.0197958462, -0.00130597595, 0.0157486945, -0.0017614637, 0.00574079528, -0.00715216575, 0.00740511296, 0.0180948693, -0.00483531877, 0.0177282803, 0.0133805256, -0.00594241964, 0.0309401751, 0.00508826552, -0.00941402465, 0.0109756971, 0.0179775618, -0.0144949583, 0.019575892, 0.000594333629, 0.0127426591, 0.00286123296, 0.00146635901, -0.0160712935, 0.0355445407, -0.00256979419, -0.0125813596, -0.0119948164, -0.0336382762, 0.00448705861, 0.00861485861, -0.0109683648, -0.0139304101, -0.021408841, 0.005605157, 0.0145389494, -0.00220687035, -0.0202210899, 0.010154536, 0.0313507542, 0.00371722, 0.00941402465, -0.00879815407, 0.00573346345, -0.00506627047, 0.0211302321, -0.00114192709, 0.00859286357, -0.029752424, 0.00808697, 0.00247264793, 0.00335796201, 0.0301483404, -0.00143611536, -0.000656653894, 0.00876149442, -0.000703852333, -0.00743444, 0.0118921716, 0.00836557802, 0.0240042973, -0.0107264156, -0.00288506132, -0.000978794647, 7.6812008e-05, 0.0151181612, 0.0265410971, -0.00910608936, -0.0122440979, -0.0138790878, -0.000682315149, -0.00531555107, -0.0192826204, 0.0128892958, 0.0132925445, -0.0156167233, 0.015631387, 0.0104258126, -0.00361640775, 0.00494162971, 0.0082702646, -0.00931871124, 0.0103011718, 0.0118701756, 0.00333046773, -0.0179189071, -0.0259105638, -0.0147589035, 0.00467035314, 0.00490497099, -0.0182268415, -0.00151218264, -0.0197811835, -0.0355738699, -0.0226552468, -0.0092380615, 0.0151181612, 0.0120021487, 0.0131239127, 0.00174863311, -0.0257052723, 0.0106017757, -0.0122440979, 0.00897411723, 0.0110050244, -0.00842423271, -0.0179042425, 0.0170977451, 0.00541453063, -0.00101362064, -0.00113551179, 0.0054805167, -0.00391517859, 0.0139450738, 0.012698669, 0.0162619203, -0.00549151422, -0.0104038166, -0.00365673262, -0.0609418787, 0.00559049379, 0.0245468486, 0.0293125156, -0.0217021126, 0.0150741702, 0.0158953313, -0.0216287952, -0.000549426361, -0.00362923858, -0.00477299839, 0.0234324168, -0.000892646, 0.00291072251, 0.000617703714, -0.0177282803, 0.0106091071, 0.0054071988, 0.0208662879, -0.0147882299, 0.0227725543, -0.0260278713, 0.0207489803, -0.0117308721, 0.00268160389, -0.0111076692, -0.014143032, -0.000425931445, -0.0151328249, 0.00187602302, 0.0110050244, 0.0057188, 0.0308815204, -0.0149348658, -0.0200304631, -0.0222446658, -0.0254853182, -0.0302069951, 0.0165405292, -0.0337555818, 0.00718515879, 0.00226002582, -0.0189600214, -0.0290045813, 0.00796966068, 0.0156900417, 0.00740144681, 0.00676724687, 0.00636033202, 0.0290045813, -0.0127719864, 0.0194145925, -0.0167018287, -0.0125447009, 0.000620453153, -0.00920873415, -0.0106237708, -0.00536687393, 0.0271276403, 0.012310084, -0.0235937163, -0.0126106869, 0.00375754479, -0.00391151244, 0.0135344937, 0.0109756971, 0.000335658726, -0.00818228349, 0.0129112909, 0.00513225654, -0.0230071731, 0.016320575, 0.0215701405, 0.015953986, 0.0100445589, 0.0071814931, 0.00338728912, -0.0128086461, -0.0085782, -0.000231066093, 0.0221860111, -0.00161024544, 0.000386064814, 0.00266877329, -0.00177521084, -0.00409847312, 0.00659861555, 0.00480965758, 0.0305589214, -0.00868817698, 0.0117895259, -0.00525323115, 0.00331397122, 0.00454571284, 0.016364567, -0.0210569147, -0.00762506668, -0.0160273034, -0.00585443806, 0.0044907243, -0.00105761143, 0.0169217829, 0.0107337479, -0.0188133866, 0.029708432, -0.00427810242, 0.00983193703, 0.0213061962, -0.00496729091, 0.0180802066, 0.00920873415, -0.00473633967, -0.00752975326, 0.00467401929, 0.018476123, 0.0114302682, 0.0013646303, -0.00686989166, -0.0176696256, 0.0162179302, 0.000444031815, -0.0204117168, -0.0146709215, -0.0141943553, -0.00455671037, -0.0223766379, -0.00422311388, 0.0129479496, -0.00865885, 0.000484356686, 0.00516524957, -0.0045163855, 0.00556849828, -0.0241802596, -0.00148927083, -0.0248694476, -0.000988875865, 0.0240776148, 0.00685889414, 0.00452005165, -0.00409847312, -0.00498195458, 0.00148468849, -0.00618803501, 0.00207673083, 0.0142456777, -0.00376854255, 0.00588376541, -0.00820427854, -0.0122367656, -0.00707884785, -0.00322782272, -0.00103653246, 0.00357058411, -0.0322892256, -0.0033103053, 0.00235167332, -0.00481698941, 0.0231391452, -0.016643174, 0.0104478076, -0.00256612827, -0.0183734782, 0.0115109179, -0.00146727543, 0.0144802947, -0.000680024, -0.00992725, -0.00642998423, -0.0165845193, 0.0156020597, 0.00886414, -0.0271569677, -0.00618070317, 0.00589109724, -0.00334696425, -0.00585443806, -0.0172003899, -0.0103011718, 0.0185787678, -0.00468868297, 0.00318749784, 0.00121249561, 0.00884947646, 0.00991991814, -0.0104404762, -0.00135363266, -0.00897411723, 0.00756641245, -0.00350643089, 0.00896678492, -0.0146562578, -0.0056784749, -0.00267610513, -0.000390418078, -0.00349909905, 0.000756549591, 0.0136957932, -0.0138937514, 0.00199791417, 0.00329930778, -0.0106970891, 0.0226259194, -0.00631267531, -0.00794033427, 0.00129956065, -0.00715216575, -0.00736478809, 0.00828492828, -0.0150301792, 0.00687355781, -0.0339608751, -0.0051762471, -0.00374288135, -0.00941402465, 0.00129681127, -0.0159979761, -0.00182103459, 0.00480232574, 0.00621369621, 0.0244148765, 0.00237733452, 0.0277728382, 0.0280514471, 0.0382426418, 0.00220687035, 0.0118188532, 0.00717416126, -0.0302656498, 0.000370484748, -0.0146855852, 0.00470334664, -0.000507268531, -0.0110343508, 0.00287772948, 0.0147002488, -0.00151218264, 0.0253386833, -0.0160712935, 0.00866618194, 0.00196308806, 0.0127719864, -0.00860019494, 0.0039628353, -0.00131789013, 0.00976595096, 0.0369815752, -0.0074857627, -0.0106750932, -0.000246760726, -0.00206756615, 0.00223986339, -0.00926738884, 0.0113936095, 0.0139304101, -0.0197665188, -0.0167898107, 0.0175229888, 0.0104624713, 0.0128673, 9.27357469e-05, 0.00254963175, -0.000280899403, -0.00164782093, -0.00292355311, -0.00226185867, -0.0103598265, -0.000347114663, -0.00931871124, -0.00288506132, 0.00395916915, -0.020719653, -0.0186080951, -0.00447239494, -0.00213538529, -0.00638965936, -0.00143611536, 0.0136957932, -0.00655829068, 0.00329564186, 0.00132797135, -0.0171124097, 0.00694687571, -0.00289789191, -0.00939936098, -0.0334623121, -0.00344594358, -0.0191066582, 0.00517258141, -0.0106604295, 0.0398263112, -0.000787251454, 0.00535954209, 0.00785235222, -0.0499148592, -0.00846089143, 0.014876212, -0.00518357893, 0.0122660929, -0.00899611227, 0.0089887809, 0.00708617968, 0.00646664295, -0.0160859581, -0.0269663408, -0.00695420755, -0.00643365, -0.0141357007, 0.00875416305, 0.00468868297, -0.00525689684, 0.00228935294, -0.00656195637, -0.0168191381, -0.0175083261, -0.00802831538, -0.00966330525, 0.00666826731, -0.00490130484, -0.0173030365, -0.00653629517, 0.0111663239, 0.00795499701, -0.00791833829, -0.00188243832, -0.00405448256, 0.0032241568, 0.0060084057, 0.00453104917, -0.000195323591, -0.00110343518, 0.00676358072, -0.0224499553, 0.00700553, 0.00929671619, 0.0200597905, -0.0164818745, -0.005605157, -0.00200341293, -0.00156900415, -0.0152501334, 0.00690655084, -0.0313800834, -0.0112909637, 0.00345144235, -0.00805764273, -0.0046226969, -0.010543121, 0.0196345467, -0.00397749851, -0.0218487494, -0.00868817698, -0.00129222882, 0.0133731943, 0.0297230966, -0.00657662, -0.0230218358, 0.0111809876, 0.0053082197, -0.0023864992, 0.0382426418, -0.00901810732, -0.0293858331, -0.0115475766, -0.0164232198, 0.00322598964, -0.00579578383, 0.00136921264, -0.00795499701, -0.0128526362, 0.00218670792, -0.019209303, -0.00387485349, 0.0821747556, 0.0333156772, 0.0262771528, -0.0250894018, 0.00272742775, -0.0234177522, -0.0113202911, 0.038271971, -0.0200304631, 0.0227139, -0.00630534347, -0.00893012621, -0.00637499569, -0.00520557445, -0.00579578383, 0.0176109709, -0.0109463697, -0.0163499024, 0.0154994139, -0.00666460162, -0.00483531877, 0.00168631284, 0.00203823904, -0.00739778113, 0.00256246235, -0.00524589932, -0.00846089143, -0.000601207197, -0.0227725543, -0.00139853987, 0.00584344054, -0.000140564254, 0.0121414522, 0.00191176555, -0.0298697315, -0.0109023787, 0.000364298554, 0.0035284264, 0.0200451277, -0.0241949223, 0.0188280493, 0.0272889398, 0.012354074, 0.0179482345, 0.000461444841, -0.0112763, -0.0039628353, 0.0113496184, -0.00157908536, 0.0197518561, -0.0119801527, 0.0126106869, -0.000779919676, -0.0147075802, 0.00656562252, 0.00705318665, 0.0110490145, 0.00104019837, 0.028594, 0.0164672118, 0.00534487842, -0.0146562578, 0.00692121452, 0.0186080951, 0.0119068353, -0.00549884606, -0.0199424829, 0.00477299839, 0.00312701054, -0.00115384127, 0.000312976, 0.00226369174, 0.00997857284, 0.0137251196, 0.00300786877, -0.00263394741, 0.0129846083, 0.00183203223, 0.00399216218, -0.0211595595, 0.00156350527, 0.0134465117, -0.0141796917, -0.0249427669, 0.00395550346, 0.00754441693, 0.00109335396, -0.0206463337, 0.00227102358, 0.00920140278, 0.00348626846, 0.0288139544, -0.0247668028, 0.0152061423, 0.00585443806, 0.00677824439, -0.0185201131, -0.00415346166, 0.00304819364, -0.00710084336, 0.0344594344, 0.000941219158, 0.00354858884, 0.0214674957, -0.0100592226, 0.012999272, 0.00632733898, 0.00211522286, 0.0248547848, -0.00328097818, 0.0167898107, 0.00166065153, 0.0190040115, 0.0262918156, 0.00785968453, -0.00309585035, -0.00418645469, -0.0168777909, -0.00255879643, -0.0091867391, 0.00365673262, -0.00301703368, -0.00857086852, -0.0140183922, -0.00888613518, 0.00907676201, 0.0063969912, -0.00318383193, 0.00152043102, 0.0106311021, 0.0133511983, -0.036952246, -0.00185586058, 0.0185494404, 0.00324065331, -0.00417545717, -0.0231978, -0.0196052194, -0.026409125, 0.0150741702, -3.36804333e-05, 0.00907676201, 0.0109390384, 0.0287553, 0.00213721814, 0.0129552819, 0.0102718445, 0.0155287413, 0.0278754849, -0.00553550525, -0.00920140278, 0.0031765, 0.00658395188, -0.00676358072, -0.00696153939, 0.0107557429, -0.00752242142, -0.0288286172, 0.0284033734, -0.0135491565, -0.00929671619, 0.00430742931, 0.0247081481, 0.0151621522, 0.0117895259, -0.0250600744, 0.0198105089, 0.00523123564, 0.0200304631, 0.00279341382, 0.032142587, 0.00957532413, -0.0120608024, 0.0152941244, -0.0315267183, 0.00165423623, -0.00255696336, 0.00647764094, -0.00312517746, -0.0134978341, -0.0081236288, 0.0147955623, -0.0105724484, 0.0233151074, 0.00476933271, -0.00425610691, -0.00435875216, 0.00581777934, 0.0174496714, 0.0168191381, -0.000107628461, -0.017141737, -0.00909875706, 0.00329930778, -0.0122807566, -0.0081236288, 0.016320575, -0.00325714983, 0.00315633765, 0.00890813116, 0.0176549628, 0.00223436439, 0.00765439402, 0.0202797446, 0.00131972309, 0.0224939473, 0.00568580674, 0.00844622776, -0.000780377944, -0.00481698941, -0.0147075802]
|
24 Apr, 2023
|
Find the elements appearing even number of times in an Array
24 Apr, 2023
Try it on GfG Practice
Given an array arr[] consisting of N positive numbers in the range [1, N], the task is to print the array elements which appear even number of times in the given array.
Example :
Input: N = 8, arr[] = {4, 4, 2, 4, 8, 2, 3, 4}Output: [2, 4]Explanation: The numbers 2 and 4 appear even number of times in the array.
Input: N=4, arr[] = {3, 1, 4, 4}Output: [4]
Naive Approach: The simplest approach to solve the problem is to store the frequency of each array element in a Hashmap and print the elements having even frequency.
C++
// C++ program to implement
// the above approach
#include <bits/stdc++.h>
using namespace std;
// Function to find the elements
// in the array having even frequency
void findDuplicates(int a[], int n)
{
// Declaring hashmap to store count og elements
unordered_map<int, int> hashMap;
for (int i = 0; i < n; i++)
hashMap[a[i]]++;
vector<int> reqdAns;
for (auto& it : hashMap) {
if (it.second % 2 == 0)
reqdAns.push_back(it.first);
}
// printing required elements that are satisfying the
// conditions
for (int i = 0; i < reqdAns.size(); i++)
cout << reqdAns[i] << " ";
}
// Driver code
int main()
{
int a[] = { 1, 1, 1, 3, 1, 2, 8, 2 };
findDuplicates(a, 8);
}
// This code is contributed by divyansh2212
Java
// Java program to implement
// the above approach
import java.util.*;
public class Main {
// Function to find the elements
// in the array having even frequency
static void findDuplicates(int[] a, int n)
{
// Declaring hashmap to store count of elements
Map<Integer, Integer> hashMap = new HashMap<>();
for (int i = 0; i < n; i++)
hashMap.put(a[i], hashMap.getOrDefault(a[i], 0) + 1);
List<Integer> reqdAns = new ArrayList<>();
for (Map.Entry<Integer, Integer> entry : hashMap.entrySet()) {
if (entry.getValue() % 2 == 0)
reqdAns.add(entry.getKey());
}
// printing required elements that are satisfying the
// conditions
for (int i = 0; i < reqdAns.size(); i++)
System.out.print(reqdAns.get(i) + " ");
}
// Driver code
public static void main(String[] args) {
int[] a = { 1, 1, 1, 3, 1, 2, 8, 2 };
findDuplicates(a, 8);
}
}
// This code is contributed by Aman Kumar.
Python3
# python code to find the elements occurring even number of times
def findElements(a):
hashMap = {}
# defining a hashmap here a dictionary
# adding values and their frequency to the map
for i in range(len(a)):
if a[i] in hashMap:
hashMap[a[i]] += 1
else:
hashMap[a[i]] = 1
# initializing the output array
ans = []
# adding values to the output array
for key, value in hashMap.items():
if value % 2 == 0:
ans.append(key)
for i in range(len(ans)):
print(ans[i], end=' ')
a = [1, 1, 1, 3, 1, 2, 8, 2]
# calling the function
findElements(a)
# code contributed by gurkirat2600
C#
// C# program to implement the above approach
using System;
using System.Collections.Generic;
class MainClass {
// Function to find the elements
// in the array having even frequency
static void FindDuplicates(int[] a, int n) {
// Declaring dictionary to store count of elements
Dictionary<int, int> dict = new Dictionary<int, int>();
for (int i = 0; i < n; i++) {
if (dict.ContainsKey(a[i])) {
dict[a[i]]++;
} else {
dict[a[i]] = 1;
}
}
List<int> reqdAns = new List<int>();
foreach (KeyValuePair<int, int> entry in dict) {
if (entry.Value % 2 == 0) {
reqdAns.Add(entry.Key);
}
}
// printing required elements that are satisfying
// the conditions
for (int i = 0; i < reqdAns.Count; i++) {
Console.Write(reqdAns[i] + " ");
}
}
// Driver code
public static void Main(string[] args) {
int[] a = { 1, 1, 1, 3, 1, 2, 8, 2 };
FindDuplicates(a, 8);
}
}
// This code is contributed by Utkarsh Kumar
Javascript
// JavaScript code to find the elements occurring even number of times
function findElements(a) {
let hashMap = {};
// defining a hashmap here a dictionary
// adding values and their frequency to the map
for (let i = 0; i < a.length; i++) {
if (a[i] in hashMap) {
hashMap[a[i]] += 1;
} else {
hashMap[a[i]] = 1;
}
}
// initializing the output array
let ans = [];
// adding values to the output array
for (let [key, value] of Object.entries(hashMap)) {
if (value % 2 === 0) {
ans.push(parseInt(key));
}
} temp = "";
for (let i = 0; i < ans.length; i++) {
temp = temp + ans[i] + " ";
} console.log(temp);
}
let a = [1, 1, 1, 3, 1, 2, 8, 2];
// calling the function
findElements(a);
Output
1 2
Time Complexity: O(N), where N is the size of the given array.Auxiliary Space: O(N)
Efficient Approach: We can also solve this problem in constant space with the help of approach mentioned in solution 1 of article “Find duplicates in O(n) time and O(1) extra space“
Follow the below steps to solve the problem:
Traverse the array arr[] and mark the array elements:
arr[abs(arr[i]) -1] = – arr[abs(arr[i]) -1]
Mark the array elements as positive or negative.
Use of two pointer approach where pointer i is used to traverse the array and another pointer index points to the end of the returning an array.
Initially, i and index are initialized to 0.
abs(arr[i]) appears even times if arr[abs(arr[i] -1]) is positive. Store that value at arr[index] and preserve the sign of value at index then, Increment the index
Mark arr[abs(arr[i] -1]) as negative, because for the next time if the same value as arr[i] appears, it will be treated as an element appeared even times and also omitted.
Finally, change every element in the array to +ve in order to get the original values.
In the end, the index becomes the size of the returning array and the input array itself becomes the returning an array.
Below is the implementation of the above approach:
C++
// C++ program to implement
// the above approach
#include <bits/stdc++.h>
using namespace std;
// Function to find the elements
// in the array having even frequency
void findDuplicates(int a[], int n)
{
int i, index = 0, sign, returnSize;
for(i = 0; i < n; i++)
a[abs(a[i]) - 1] = -a[abs(a[i]) - 1];
for(i = 0; i < n; i++)
{
// If a[i] has occurred even times
if (a[abs(a[i]) - 1] > 0)
{
// Mark a[abs(a[i])-1]
a[abs(a[i]) - 1] = -a[abs(a[i]) - 1];
// Preserve the sign of a[index]
sign = 1;
if (a[index] < 0)
sign = -1;
a[index++] = sign * abs(a[i]);
}
}
// Make every array element +ve
for(i = 0; i < index; i++)
a[i] = abs(a[i]);
returnSize = index;
for(i = 0; i < returnSize; i++)
cout << a[i] << ", ";
}
// Driver code
int main()
{
int a[] = { 1, 1, 1, 3, 1, 2, 8, 2 };
findDuplicates(a, 8);
}
// This code is contributed by sanjoy_62
Java
// Java Program to implement
// the above approach
import java.io.*;
class Duplicates {
// Function to find the elements
// in the array having even frequency
static void findDuplicates(int a[], int n)
{
int i, index = 0, sign, returnSize;
for (i = 0; i < n; i++)
a[(Math.abs(a[i]) - 1)]
= -a[(Math.abs(a[i]) - 1)];
for (i = 0; i < n; i++) {
// If a[i] has occurred even times
if (a[(Math.abs(a[i]) - 1)] > 0) {
// Mark a[abs(a[i])-1]
a[(Math.abs(a[i]) - 1)]
= -a[(Math.abs(a[i]) - 1)];
// Preserve the sign of a[index]
sign = 1;
if (a[index] < 0)
sign = -1;
a[index++]
= sign * Math.abs(a[i]);
}
}
// Make every array element +ve
for (i = 0; i < index; i++)
a[i] = Math.abs(a[i]);
returnSize = index;
for (i = 0; i < returnSize; i++)
System.out.print(a[i] + ", ");
}
// Driver code
public static void main(String[] args)
{
int a[] = { 1, 1, 1, 3, 1, 2, 8, 2 };
findDuplicates(a, 8);
}
}
Python3
# Python3 program to implement
# the above approach
# Function to find the elements
# in the array having even frequency
def findDuplicates(a, n):
index = 0
for i in range(n):
a[abs(a[i]) - 1] = -a[abs(a[i]) - 1]
for i in range(n):
# If a[i] has occurred even times
if (a[abs(a[i]) - 1] > 0):
# Mark a[abs(a[i])-1]
a[abs(a[i]) - 1] = -a[abs(a[i]) - 1]
# Preserve the sign of a[index]
sign = 1
if (a[index] < 0):
sign = -1
a[index] = sign * abs(a[i])
index += 1
# Make every array element +ve
for i in range(index):
a[i] = abs(a[i])
returnSize = index
for i in range(returnSize):
print(a[i], end = ", " )
# Driver code
a = [ 1, 1, 1, 3, 1, 2, 8, 2 ]
findDuplicates(a, 8)
# This code is contributed by code_hunt
C#
// C# Program to implement
// the above approach
using System;
class Duplicates{
// Function to find the elements
// in the array having even frequency
static void findDuplicates(int[] a, int n)
{
int i, index = 0, sign, returnSize;
for (i = 0; i < n; i++)
a[(int)(Math.Abs(a[i])) - 1] =
-a[(int)(Math.Abs(a[i])) - 1];
for (i = 0; i < n; i++)
{
// If a[i] has occurred even times
if (a[(Math.Abs(a[i]) - 1)] > 0)
{
// Mark a[abs(a[i])-1]
a[(Math.Abs(a[i]) - 1)] =
-a[(Math.Abs(a[i]) - 1)];
// Preserve the sign of a[index]
sign = 1;
if (a[index] < 0)
sign = -1;
a[index++] = sign * Math.Abs(a[i]);
}
}
// Make every array element +ve
for (i = 0; i < index; i++)
a[i] = Math.Abs(a[i]);
returnSize = index;
for (i = 0; i < returnSize; i++)
Console.Write(a[i] + ", ");
}
// Driver code
public static void Main(String[] args)
{
int[] a = {1, 1, 1, 3, 1, 2, 8, 2};
findDuplicates(a, 8);
}
}
// This code is contributed by shikhasingrajput
Javascript
// Function to find the elements
// in the array having even frequency
function findDuplicates(number, number)
{
var number;
var index = 0;
var sign;
var number;
for (i = 0; i < number; i++)
{
number[(Math.abs(number[i]) - 1)] = -number[(Math.abs(number[i]) - 1)];
}
for (i = 0; i < number; i++)
{
// If a[i] has occurred even times
if (number[(Math.abs(number[i]) - 1)] > 0)
{
// Mark a[abs(a[i])-1]
number[(Math.abs(number[i]) - 1)] = -number[(Math.abs(number[i]) - 1)];
// Preserve the sign of a[index]
sign = 1;
if (number[index] < 0)
{
sign = -1;
}
number[index++] = sign * Math.abs(number[i]);
}
}
// Make every array element +ve
for (i = 0; i < index; i++)
{
number[i] = Math.abs(number[i]);
}
var returnSize = index;
for (i = 0; i < returnSize; i++)
{
console.log(number[i] + ", ");
}
}
// Driver code
var number = [1, 1, 1, 3, 1, 2, 8, 2];
findDuplicates(number, 8);
// This code is contributed by sourabhdalala0001.
Output
1, 2,
Time Complexity: O(N)Auxiliary Space: O(1)
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array
|
https://www.geeksforgeeks.org/find-the-elements-appearing-even-number-of-times-in-an-array/?ref=ml_lbp
|
Pandas
|
Find the elements appearing even number of times in an Array
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0191752147, -0.00293034222, -0.0141916638, 0.00248103496, -0.0113848364, 0.0278391466, 0.00278713671, 0.0103036352, -0.000759436574, -0.0100315446, -0.0268653501, 0.00780469924, 0.0224832613, -0.00471504079, -0.0261922833, 0.009186632, -0.0126808463, 0.0142417857, 0.00639770506, -0.0316484123, -0.021437861, 0.00535230525, -0.058771532, 0.0289418288, -0.03912374, 0.0210368857, -0.00496565038, -0.00351032452, -0.0457684733, -0.0227267109, 0.0162251815, 0.0229415186, -0.00738224294, -0.0438495204, -0.0308178216, 0.0238293931, 0.0162251815, 0.0233138539, 0.00118681544, -0.00307175773, 0.0213662591, -0.0157526042, -0.0418732837, -0.0174997114, -0.0206931923, 0.00147770159, 0.0107976934, -0.00930835679, 0.00274954527, -0.0135830408, 0.0023288792, -0.0146785621, 0.00537378574, 0.00574612, -0.000847149931, 0.0319634639, -0.045367498, 0.00966637, -0.00949452352, -0.0187312774, 0.00854936801, -0.0137405666, -0.014707204, 0.00687744329, 0.0134040331, -0.00202456769, -0.04777335, 0.0215094648, 0.0263068471, 0.010382398, -0.0492054038, 0.0292425603, 0.00748248678, -0.0160390139, -0.011033983, -0.023858035, 0.0245167799, -0.004596896, -0.0289991107, 0.0184448659, -0.0260490775, 0.025662424, -0.0109838611, -0.0223114155, 0.0140126571, 0.00939428, -0.00856368802, -0.0401548184, 0.0533870049, 0.0482029654, -0.0158242062, 0.00302700605, 0.004911948, 0.0153802689, -0.0259488337, 0.0277818646, 0.0286983792, 0.0201060511, -0.0401548184, 0.0804814845, -0.0274381712, -0.000242778056, -0.000726320315, -0.00311650941, -0.00372692291, -0.00866393186, -0.00479738368, 0.0250036772, 0.0148647297, 0.0302449986, 0.0464272201, -0.0136546427, -0.0470000394, -0.0103036352, 0.0197193958, -0.0101031475, 0.0191036128, -0.0372334272, -0.0215667468, 0.0414723083, 0.0261636432, 0.0337392129, 0.0211084895, 0.0644424707, -0.0341688283, 0.0182300583, 0.00797654595, 0.0252184868, 0.00842048228, 0.00100154337, 0.000586695, -0.0223114155, -0.00422814209, -0.0109480591, -0.0142417857, 0.0150938584, 0.0178434029, 0.0357727297, -0.0115924841, -0.00566735724, -0.0163970292, -0.049520459, 0.0133539112, 0.00168892974, -0.0209939238, -0.00673781801, -0.00834888, 0.050121922, -0.0329372622, -0.0119433375, -0.0179866087, -0.0321353115, 0.00293571246, 0.00224653608, -0.00593944779, -0.00933699775, 0.00247566495, -0.0247029457, 0.00212839153, -0.0759561881, 0.0182157382, -0.0061793169, 0.0125233196, -0.0211371295, -0.023858035, 0.022025004, 0.0133109502, -0.0131176226, -0.0126378844, 0.0328799784, 0.00210154057, 0.0125662815, 0.0279107485, 0.0319634639, -0.0164256692, 0.0257769879, 0.0195475481, -0.0234284177, 0.010382398, -0.0502364859, 0.00347631308, -0.03179162, -0.00691324472, -0.0178147629, 0.0517258234, 0.0131820654, -0.0114564393, -0.025075281, -0.0125448005, 0.00152603351, -0.0400402546, -0.0294430479, 0.0191752147, 0.00860665, 0.0119504975, -0.00397037202, -0.0427898, -0.011005342, -0.0198912416, 0.0348848552, -0.0011787602, -0.0534442887, 0.0317629762, 0.0030055251, 0.0303882044, 0.000681568636, -0.0239869189, -0.013497117, 0.0149649736, 0.0104754809, -0.0258772317, 0.0432766974, -0.0308178216, -0.00586426491, 0.0301304348, 0.0220536459, -0.0149363326, 0.0447660349, 0.0275097732, -0.000750038715, -0.0316770524, -0.00693114568, 0.0500073545, -0.00702064903, -0.0201919731, -0.0184019059, -0.00590722635, 0.0397538431, -0.00915083103, -0.0390664563, 0.00302163581, 0.0267364644, -0.0227553528, -0.0203065388, 0.00284262886, -0.0369756557, -0.0408135653, 0.0246170238, 0.0215524249, 0.0439354442, -0.00143742503, 0.02454542, -0.0129171349, 0.00258127879, 0.00758273061, -0.0116569269, 0.0127739292, -0.0181870963, 0.0386654809, 0.0354863182, 0.0322498754, -0.0274954531, -0.0114063174, -0.0109050982, -0.0292855222, 0.0149506526, -0.00928687584, 0.0255335383, 0.00159226602, -0.0309610255, -0.017113056, 0.00653017033, -0.0271231197, 0.0272090416, 0.024473818, -0.0028784303, 0.01589581, -0.0182157382, 0.0234570596, -0.00105614052, 0.0502651259, -0.0207504742, 0.0096090883, -0.0395533554, 0.0269083101, 0.00343693164, -0.0345411636, -0.0182300583, 0.0402121022, 0.0041099973, -0.00578908203, 0.0247888695, 0.0277675446, -0.014069939, -0.0319348238, -0.0334814414, 0.0053988467, -0.0168696065, -0.0591725074, -0.00587500492, 0.0167264, -0.0294144079, -0.0155521156, -0.025132563, 0.0246170238, -0.0119862994, -0.041644156, -0.026321169, -0.0281541981, -0.0388373286, -0.00689176423, -0.05639432, 0.00539168669, 0.00731064, -0.0270944778, -0.0239725988, 0.0005902751, -0.016525913, -0.0185451098, -0.0101246275, -0.00537736621, -0.0345984474, -0.0267794263, -0.058198709, -0.0502651259, -0.00676645944, 0.0187599193, 0.00866393186, -0.0237148292, -0.0238293931, -0.015308667, -0.0235286616, 0.0109838611, 0.0478019901, 0.018358944, 0.00439640833, -0.0168839265, 0.00733212102, 0.00432838593, -0.0268653501, -0.0319348238, 0.0176572371, -0.031218797, 0.0190033689, 0.0132894693, -0.0298153833, 0.000499429123, -0.00575328059, 0.0100387046, -0.0190033689, 0.0221968498, 0.0288845468, 0.00746100582, 0.00956612639, 0.0230274424, 0.00577834155, -0.0332809538, -0.032450363, 0.0380640179, -0.0158098862, 0.00119934592, 0.00945872255, 0.00290170126, 0.0011644396, 0.0160390139, -0.00492984895, -0.0359159373, -0.0350280628, 0.0237148292, -0.0393528678, -0.0140412981, 0.027610017, -0.0375484787, 0.0190892909, 0.0147644859, -0.0280109923, -0.00948736351, 0.011606805, -0.016540233, -0.00578908203, -0.0285694953, 0.0204497427, -0.0168839265, 0.00244344352, -0.057539966, 0.00581772299, 0.0288129449, -0.0259058718, 0.0338537768, -0.0103752371, -0.0199914854, 0.0539884679, 0.0141415419, 0.0063046217, 0.000689176435, -0.023886675, -0.0528714657, 0.00805530883, -0.00756124966, 0.0204067826, -0.0148933707, -0.012845532, -0.000524042582, 0.0180438906, 0.0156380385, 0.0242590103, -0.013461316, -0.0188172013, -0.00539168669, -0.00535230525, 0.0202635769, -0.0211228095, 0.0135543989, 0.00189747266, -0.0301590748, 0.037319351, -0.0499214344, 0.0180152506, 0.0518690273, 0.0310183093, 0.0295289718, 0.0603181496, -0.0318775401, 0.00996710174, -0.00956612639, -0.0175283514, -0.0295003299, 0.0335100852, 0.0180295706, -0.0461121686, -0.00829159748, 0.0191895347, -0.00333131757, 0.044794675, -0.0285981353, -0.0155091546, 0.0199628454, -0.0129600968, 0.0296148956, -0.00958760735, -0.0437349565, 0.0240155607, 0.0407276414, 0.0044644312, -0.0243449323, -0.00834888, 0.00997426175, 0.015351628, -0.0332236737, -0.0537593402, 0.0206931923, 0.00392025, 0.000625629, 0.0102678332, -0.0142561067, -0.00538452622, -0.0403553061, -0.00301805558, -0.0284978915, 0.00231992896, -0.00921527296, -0.0155377956, -0.0377776064, -0.0364314765, 0.0225691851, -0.0289991107, 0.0186739955, -0.0266791824, 0.00992414, 0.0138121694, -0.0116855679, 0.00271911407, -0.00815555267, -0.0266219, 0.0129672568, 0.0403553061, 0.00383432698, 0.0225262232, -0.0215953868, 0.00595734827, -0.0002711954, -0.036173705, -0.0017471069, -0.000106900661, 0.0274238512, -0.0261206813, -0.00697768712, -0.0300731529, -0.0247888695, -0.0289847907, 0.0286983792, 0.000711999775, -0.00285336934, -0.00282472814, -0.0117858117, -0.0184591878, 0.0643279, -0.00900046527, -0.0156953223, 0.000209214268, -0.00121366652, 0.018960407, -0.0445369072, 0.0148217678, -0.0190749709, -0.00688818377, -0.04049851, -0.0439640842, 0.0203065388, 0.0337678529, 0.0515539758, -0.0459976, -0.0289561488, 0.0112989126, -0.00453603361, -0.0830019, -0.0303309225, 0.00638696458, 0.0184878279, -0.0418160036, -0.0363455527, 0.011664087, 0.028125558, 0.0261636432, -0.0242303684, -0.00998858269, -0.0498355106, -0.00265109167, -0.0100029036, 0.00650868937, 0.0133682322, -0.000929940608, -0.0102964742, 0.0214808229, -0.00460047647, 0.00122977712, -0.0162681434, 0.0102678332, 0.00622943882, -0.00908638816, -0.00706361048, 0.00844912417, 0.0156523604, 0.00102928944, -0.00629030121, -0.0473723747, 0.0139195733, 0.0479165576, -0.00454677409, 0.0102033913, -0.00701706903, 0.0064979489, -0.0279823523, 0.0463126563, 0.000208095473, 0.0113347145, 0.0242590103, -0.00108836172, 0.0276529789, 0.0296435356, 0.0194902662, 0.0292139202, 0.0212516934, -0.00160300639, -0.0331663899, -0.00266899215, 0.00779753877, -0.0169841703, -0.0109122582, -0.0078405, -0.00682016136, -0.000144771795, 0.0270658378, 0.0166691188, 0.0104969619, -0.024459498, 0.0111628678, 0.0265216567, -0.0153659489, -0.0304168463, -0.00396321202, -0.0101890704, -0.000430959015, -0.0208650399, -0.00671275705, 0.00136940251, 0.00591796683, -0.00819135364, 0.00383790699, 0.02818284, -0.00576402107, -0.015322987, 0.0227410309, -0.00895034336, -0.0133610722, -0.0375484787, 0.00125304796, -0.00148217683, -0.0271660816, -0.00193864433, 0.016525913, 0.0512389243, 0.020807758, 0.0143062286, -0.0236432254, -0.00968069118, 0.00317379157, 0.0125233196, -0.0114134774, 0.0147931268, 0.0122154281, 0.0106401676, -0.00723187719, 0.00723545719, 0.0219677221, -0.00491910847, -0.00414221874, 0.0304741282, 0.00028372588, -0.00470072031, -0.0658745244, 0.00183213525, 0.0142346257, 0.0120364213, 0.0331091098, 0.0267078225, 0.00628314074, -0.00137835287, -0.0414150283, -0.0182730202, -0.0131176226, -0.0472578108, 0.00615425594, 0.0248461515, -0.00676645944, -0.020234935, -0.0233281739, -0.0378921703, -0.012229749, -0.0159960538, 0.0101031475, -0.0259488337, 0.00400617346, 0.0150079355, -0.00674855849, 0.0173994675, 0.0270228758, 0.00196370529, 0.00651226938, 0.0453102179, 6.65681728e-05, 0.0011948708, -0.0138336504, 0.0760134757, -0.00466491887, -0.0254046526, -0.0314192846, 0.00872121379, 0.0085064061, -0.00540242717, 0.0114922402, 0.00393099058, 0.0299299471, 0.0161106177, 0.00602537068, -0.019046329, 0.0218674783, -0.0105972057, -0.0115996441, 0.0225262232, -0.0351999104, -0.00531650381, -0.00293750246, 0.000960371806, 0.000382403407, -0.0263068471, -0.0101317884, 0.0178290829, 0.00477232272, -0.0110769449, -0.0212230533, -0.00103018444, -0.00813407172, -0.00581772299, 0.0209796038, -0.0203924607, -0.0143205486, 0.000377480726, 0.0192038566, 0.000178447459, 0.0211800914, -0.00980957597, -0.00327403541, 0.0110912649, -0.022626467, -0.0108120143, 0.0144351134, 0.0116927279, -0.0269083101, -0.0266219, -0.050293766, -0.0057568606, 0.0199485235, 0.0234570596, 0.0148360888, -0.024488138, -0.00496923039, 0.0012736338, -0.0305027682, 0.00591080636, 0.0102893142, -0.0279537104, -0.0179436468, 0.00129332452, -0.00296972389, 0.012902814, -0.00833455939, 0.0119504975, 0.0147788059, -0.0202778969, 0.011642606, 0.0284262896, 0.00437492784, -0.00130316988, 0.0173278637, -0.0213805791, -0.0197050758, -0.00573179964, 0.000894139288, -0.0101890704, 0.00854936801, 0.000912487449, 0.00176411262, -0.042245619, 0.017771801, 0.00492984895, -0.0130030578, -0.0374339148, -0.00839900225, -0.000641292077, -0.0186453536, -0.00270479359, -0.0178434029, -0.00301626557, -0.0539311878, 0.0148504088, 0.00572821964, -0.0123944348, -0.0148217678, -0.0182157382, 0.00776889781, 0.00580340251, 0.0069239852, 0.0137047647, 0.0102535132, 0.0213089772, 0.025146883, 0.0133968731, -0.00591796683, 0.000533887942, -0.0276673, 0.0228412747, 0.00648362841, -0.0148074478, -0.00500503182, -0.0191322528, 0.0239153169, 0.0137978485, 0.00680942088, 0.0278964285, 0.0326794907, 0.0287270211, -0.0180009305, 0.00787630212, 0.00842764322, 0.000217828972, -0.0374052748, 0.0176715571, 0.00193685421, -0.0154375518, 0.0109838611, 0.0110841049, -0.00950168446, 0.00887158, -0.0285551734, -0.0271947216, 0.0304168463, -0.023299532, -0.0103680771, -0.0126522044, -0.00134881667, 0.0182157382, -0.0104754809, 0.000255979801, 0.0189317651, -0.00150186755, 0.0100458646, -0.013468476, 0.0439068042, 0.0190749709, 0.000799713132, 0.00638696458, 0.0102606732, 0.0476301461, -0.0212230533, -0.00610055355, -0.0210368857, -0.0384649932, -0.000867735769, -0.0524991304, 0.0121867871, -0.0266935024, -0.0279250704, -0.0192038566, -0.00281219766, -0.044021368, 0.00447875168, -0.00535230525, 0.0271231197, 0.0128097311, -0.00519835902, 0.00103286956, 0.00593586732, -0.0074108839, 0.012845532, 0.0178290829, -0.000234498992, -0.0102749933, 0.0125161596, 0.0360591412, -0.0148790497, 0.00302521582, 0.039897047, -0.0319061838, -0.0117786517, 0.0240442, -0.0192181766, -0.0360877812, 0.0159960538, -0.0176858772, 0.0127094872, -0.00384506723, 0.0268223882, 0.0395819955, 0.00225906656, -0.0254046526, -0.018373264, 0.0278534666, 0.0285694953, 0.0315911323, 0.0151511403, -0.00108120148, -0.0125376405, -0.017700199, 0.014692883, -0.00937996, -0.0381785817, 0.0303309225, -0.0126736853, -0.00269405311, 0.0155664366, -0.0173135437, -0.0018724117, 0.0062401793, -0.031276077, 0.00960192829, -0.0161106177, -0.0191608947, -0.00298404437, -0.00353717548, 0.0118001318, -0.0174281076, 0.0121366652, -0.00882145762, 0.0116998879, 0.0163254254, -0.0251039211, -0.0172562618, -0.00560291484, -0.0115423622, -0.0265359767, -0.00140430883, 0.0322212353, 0.00108030636, 0.00726767862, 0.00245776423, 0.00762569206, 0.0230704043, 0.00264214119, -0.0233424939, 0.0258772317, 0.00658387225, -0.039897047, -0.0339683406, -0.020822078, -0.0052090995, 0.0199055634, -0.0318775401, 0.00297867414, -0.0552486777, 0.0135973608, 0.0108120143, 0.007955065, -0.0340256244, 0.0280539542, 0.0242733303, 0.00120024104, -0.0131033016, 0.0184591878, 0.00206573913, 0.00797654595, 0.00389518915, 0.0333955213, 0.0143491896, 0.00737508247, 0.00349958404, -0.00488330703, 0.0115137212, -0.0138121694, 0.0253187306, 0.0237864312, 0.00636548409, -0.0101317884, -0.0534729287, 0.0135400789, 0.0228699166, -0.0221252479, 0.00379136531, 0.0186453536, -0.0100315446, -0.00804814883, 0.00583920395, 0.0131605845, 0.0166834388, -0.0139840161, -0.0337392129, -0.0366892442, 0.0143993115, -0.0178863648, 0.00998858269, 0.00486898655, 0.0248175114, -0.0219390802, -0.00403123442, -0.00402407441, 0.0309896674, -0.0210941676, -0.0153373079, -0.037920814, -0.0233568158, 0.0208936799, 0.0594589189, 0.01591013, -0.012874173, -0.00422814209, -0.0137262456, -0.0301877167, -0.000989907887, 0.0266075786, 0.0320207477, -0.0130102187, 0.0121939471, 0.0088930605, -0.00432480592, 0.0182014182, -0.00779753877, -0.031276077, 0.00949452352, 0.00512675662, 0.0265502967, -0.00569957821, -0.0432194173, -0.012244069, -0.00861381, 0.00176679774, 0.0127023263, 0.0266075786, -0.0258772317, 0.0105041228, -0.0157955661, 0.0159960538, -0.00217851344, 0.0430189297, -0.00965205, -0.0287556611, 0.00696336664, -0.0106115267, -0.0420451313, 0.00170414534, 0.012509, -0.0121080242, 0.00746100582, 0.0154805128, -0.0169555303, -0.00992414, -0.00939428, 0.0142346257, -0.0120221, 0.023256572, 0.0082486365, -0.00912218913, 0.0226407871, 0.0114206374, -0.0210225657, -0.0245740619, 0.0149076916, -0.000947841327, -0.0137906885, -0.0134469951, -0.00531292334, -0.0148933707, -0.0110769449, 0.00972365215, 0.00493700895, 0.0374625549, 0.0151654612, 0.00566019677, 0.0285981353, -0.00932983775, -0.0311615132, -0.0413577445, -0.00571389915, 0.0247602295, 0.0076614935, 0.023886675, 0.0259201936, -0.0180868525, -0.0112989126, 0.0607764088, 0.00652301, -0.00204604841, -0.0353717543, -0.0286410972, 0.00186704157, 0.0103680771, 0.0140198171, 0.00132644083, 0.0259058718, 0.0220536459, -0.000532097882, -0.00865677185, 0.0153373079, 0.00718175527, 0.01593877, 0.00570673868, 0.00238795159, 0.0104969619, -0.0234857, -0.00398827298, -0.00138282799, 0.0149792936, -0.0146212801, 0.00809827074, -0.00369112147, -0.00304848677, -0.0109337391, -0.0129815778, -0.0121796271, 0.0429902859, 0.0241730865, 0.00184914086, 0.00644066697, -0.00387370843, 0.0199914854, 0.00102481432, -0.00460405648, 0.0122154281, -0.0206645522, 0.0266219, 0.0114349583, -0.0173135437, -0.0102749933, -0.0181298144, -0.00274238503, -5.50725781e-05, 0.0130173787, 0.00922959391, 0.00757557, 0.0143921515, 0.0113418745, 0.00848492514, -0.015322987, -0.00842764322, 0.0194473043, 0.0135830408, -0.00328477588, 0.0159817319, -0.00448233169, 0.0142704267, -0.0154661927, -0.00951600447, -0.0203638207, 0.0227839928, 0.027610017, -0.00240227208, -0.0301304348, 0.0117929718, 0.0233854558, -0.00354791596, -0.00215345249, 0.00216419296, 0.033624649, -0.0193470605, 0.00315231085, -0.00331520708, -0.0498068668, 0.00776889781, 0.0653589815, 0.00199234625, 0.0145425173, -0.00291423174, -0.0121295052, -0.0105184428, -0.00386654818, -0.00545254909, -0.0109838611, 0.00554921245, 0.00833455939, -0.00675571896, 0.0123156719, 0.00292139198, 0.00666263513, 0.00676287897, -0.0143563505, -0.00526638189, -0.00777605781, -0.0187599193, -0.0257626679, -0.00483676512, 0.0133324312, 0.00704929, 0.0224116594, 0.0167693626, 0.00261708023, -0.026321169, -0.0191895347, -0.0117213689, 0.014692883, -0.0327654146, -0.0111485468, 0.00207289937, -0.0169125684, 0.0145281963, 0.0175426714, 0.00825579651, -0.00799086597, 0.0326508507, -0.00541316718, 0.0121295052, -0.0225691851, 0.00112147792, 0.00960192829, -0.0123443129, 0.00469356, -0.00227517728, -0.0177431591, 0.0109695401, -0.0346843675, -0.00839900225, -0.023299532, -0.00674497848, -0.0127882501, -0.0015573597, -0.0145997992, 0.00186704157, 0.01589581, -0.00955896638, -0.00608623307, -0.0187599193, 0.0111843487, -0.00293571246, -0.00609697355, -0.00993130077, -0.030645974, -0.00541674765, -0.00758273061, 0.0175283514, -0.0108907772, 0.00867825281, 0.0149076916, -0.00668053608, 0.00787630212, 0.0200774092, -0.0095732864, -0.000766596873, -0.0155091546, -0.0177431591, -0.00976661406, 0.0192468166, -0.0072784191, 0.0161249377, -0.000776442233, -0.0119791394, -0.0297867414, -0.00996710174, -0.0183446221, -0.00949452352, -0.0135543989, -0.0193900224, -0.0160533357, -0.00477232272, -0.00196191529, -0.00456109457, 0.0240871627, 0.0326794907, -0.0126808463, -0.0157239623, -0.0322498754, -0.00320959301, 0.0016039015, -0.00597882923, -0.0168552864, -0.000673513277, -0.0140556181, -0.00512317615, -1.40058883e-05, 0.00626524026, 0.0096090883, 0.0327367745, -0.00703138951, -0.00204604841, 0.00588932587, 0.0136689637, -0.0105327638, 0.00476516271, -0.0246027019, 0.0297867414, 0.0022644368, -0.0166834388, 0.0199055634, -0.0242017265, -0.017113056, -0.0107117705, -0.00946588255, -3.94094786e-05, -0.0130675007, 0.00922959391, -0.00819135364, 0.0166118369, 0.0194616262, -0.0207791161, -0.0101819104, -0.000695889175, 0.0162251815, -0.00602537068, -0.013468476, -0.00151171291, 0.00363920955, 0.036775168, -0.0125448005, -0.0168696065, 0.0222111717, -0.0238293931, -0.000511512102, -0.0129171349, 0.0134183541, 0.00287485, -0.0273522474, -0.0185737517, 0.00134165643, 0.0102391923, 0.0172419399, -0.013482797, 0.00445369072, 0.0016844545, 0.00689534424, 0.00359445764, -0.00686312281, -0.00179543882, 0.0400688946, 0.0209939238, -0.0305027682, 0.00668769609, -0.00801950693, -0.0087999776, -0.0227983128, 0.0164686311, -0.00675571896, -0.0155664366, 0.0235000197, 0.0160533357, 0.0284978915, 0.0231706481, 0.0181441344, -0.00570315868, -0.00169071974, 0.0257769879, -0.0286267772, 0.000316170859, -0.0218245164, 0.00383432698, -0.0382072255, -0.00187062169, -0.0148647297, -0.00135955703, 0.0348848552, 0.0162395015, -0.000166140744, -0.0107475715, -0.0127810901, 0.0254762564, -0.0104898019, 0.0132107064, 0.0256194621, -0.0118144527, -0.0133181103, 0.00116980984, 0.0107905334, -0.01593877, -0.00381642627, -0.00525922142, 0.00840616226, -0.011005342, -0.0305314101, 0.0108907772, -0.011635446, 0.00811975077, 0.0175140314, -0.0101532694, 0.0040419749, -0.0396679193, -0.0265359767, -0.000630551658, -0.0146141201, 0.00709941192, -0.00571031868, -0.00236647064, -0.00332415733, 0.0288415849, 0.00464343792, -0.00686312281, -0.0199055634, -0.0111055858, -0.00140341383, -0.00285157934, -0.011606805, -0.00881429762, -0.0289991107, 0.0193470605, 0.0235143416, 0.0221395679, 0.0142561067, -0.0138264894, 0.00133181107, -0.0397252031, -0.0641560555, 0.0210512057, 0.00843480323, -0.013468476, -0.0266362205, 0.00485824607, 0.0421310551, 9.26500343e-06, 0.00829159748, 0.00725693814, -0.0200917292, 0.0161679, -0.0170271322, -0.00179722882, 0.0218101963, -0.0194616262, 0.001148329, 0.031276077, 0.00746100582, 0.00532366382, -0.0053379843, -0.0265932586, 0.00806246884, 0.00499071134, -0.00489046751, 0.0147644859, -0.00912218913, 0.0181870963, -0.00802666787, -0.0295576118, 0.00363562931, -0.0159530919, -0.0139625352, 0.0179579686, -0.00629030121, -0.000815823732, 0.00259917951, -0.023858035, -0.0139482142, 0.0172992237, 0.000517777342, -0.0122870309, -0.00603611115, 0.0273522474, 0.00816271268, 0.00162269722, -0.00403839489, 0.0197480358, -0.0113848364, 0.0239869189, 0.00622227835, -0.0199914854, -0.011621125, -0.0159674119, 0.00116712472, -0.00549909053, 0.0187885594, 0.0222254917, -0.00683090184, 0.00875701569, -0.0443650596, 0.00634400314, -0.0371188633, -0.00136671739, -0.0326794907, 0.0130460197, -0.0119146965, -0.0227839928, 0.014707204, -0.00239511183, 0.00990266, 0.00498713087, 0.00455035456, -0.0305886921, -0.00662325369, -0.00457899552, 0.000612203439, -0.0125376405, 0.0153945899, -0.00786198117, 0.00917231105, 0.0132107064, -0.0109408991, -0.0247459076, -0.0090577472, -0.0023306692, 0.00202814769, 0.010403879, -0.0365460403, -0.0083417194, -0.00392025, 0.0157955661, 0.00571747916, -0.00571389915, 0.0113633554, -0.0188315213, 0.00109015172, 0.00400975347, -0.018373264, -0.00920095295, 0.0245024581, 0.00441072881, -0.00134792167, 0.0459976, -0.00208542985, -0.0131176226, 0.0118144527, -0.0200201273, 0.00582846347, 0.0187599193, -0.00126020832, 0.0244451761, -0.0301877167, -0.0179866087, -0.0288415849, 0.0167264, 0.0321066715, 0.00204067817, 0.0184591878, -0.00723545719, 0.00394173106, -0.0213376172, 0.00450023264, -0.00974513311, 0.0223400556, -0.00688818377, 0.0340542644, -0.00629388122, -0.00743236486, 0.0396106392, 0.0301877167, 0.0212087333, -0.0192468166, -0.00929403584, 0.000191761093, -0.00709583191, -0.0108692963, -0.000955001567, -0.0143277086, -5.0737257e-05, -0.0114063174, -0.0467136316, -0.00264930143, 0.0105399238, 0.0114994, -0.0053988467, -0.0144565944, -0.00804814883, -0.0258056279, 0.0190033689, 0.00590006588, 0.0148647297, -0.000320869789, 0.0218531564, 0.0588288158, 0.0246313438, 0.0148360888, 0.00288738054, -0.00128168915, 0.00399185298, -0.00572105916, -0.0138980923, 0.0120292613, 0.0115924841, 0.00668411609, 0.0161249377, -0.0114421183, 0.0206645522, -0.0207934361, -0.031247437, 0.0115280421, -0.0103752371, 0.0177145191, -0.0030681775, 0.00433196593, -0.0406989977, 0.00791926309, 0.043448545, 0.0281398781, 0.0392096639, 0.00887158, -0.0140269771, 0.0130102187, -0.0170128122, -0.023872355, 0.00341545092, 0.0115280421, -0.0240298808, 0.0174567495, 0.0178720448, -0.0156237185, -0.0197337158, 0.00167281914, 0.0213232972, -0.0284835715, 0.0158671681, 0.0111199059, -0.00372334267, 0.0240871627, -0.0066662156, 0.00950168446, -0.00816271268, 0.00963056926, 0.00285336934, 0.00778321829, 0.00839900225, -0.0100387046, -0.00619721739, 0.0307605378, -0.00888590049, 0.00891454145, 0.00142399955, -0.000784945092, 0.000225436757, -0.00149381219, -0.0187599193, 0.0170700941, 0.0021713532, -0.00983105693, -0.00871405378, -0.00925823487, -0.00639770506, -0.00444653025, -0.00638338458, 0.00645140698, 0.00857800897, 0.0209080018, -0.00917231105, -0.00454677409, 0.00648362841, 0.0126307243, 0.00486540655, -0.0136403227, -0.00816271268, -0.00445727073, -0.00396321202, 0.0117285298, 0.00431406545, -0.00237184088, -0.00244344352, -0.00195117481, 0.00509453518, -0.00589648588, 0.0101389484, -0.0153802689, -0.0181584563, -0.00419234065, 0.052642338, -0.00914367, 0.00900762528, 0.00917231105, 0.029385766, 0.00942292064, -0.00837036, -0.0194473043, 0.00451813312, -0.000373900577, -0.0209080018, -0.00352822524, 0.00970933214, 0.00938712, -0.00741804438, 0.00666979561, -0.0143062286, 0.00293034222, 0.001227092, 0.00535946526, 0.0132107064, -0.00147412147, 0.0224259794, -0.0075326087, -0.00719607575, 0.00522342, -0.0349421389, -0.00120919128, 0.00713163335, 0.014707204, -0.0211657714, -0.000716027454, -0.0264786948, 0.0102821542, 0.0241301246, 0.0199628454, -0.00014991824, -0.00056745176, 0.00108836172, -0.000903089589, 0.00472578127, 0.0113919964, 0.0134183541, -0.000183929544, -0.0167407207, 0.0126164034, 0.0146141201, -0.00184198061, -0.0141129009, -0.0178577248, 0.01591013, 0.00374482339, 0.00677003944, 0.0076614935, -0.0241444446, -0.00178917358, 0.0113919964, -0.0235573035, 0.00428184401, 0.0140556181, -0.0169841703, 0.0225548651, -0.0287556611, 0.0207791161, -0.0096090883, 0.001225302, 0.00885725953, -0.00838468131, -0.00264214119, 0.00802666787, -0.0018070743, -0.00874269474, 0.00310576893, 0.0135472389, 0.0279823523, 0.0119576585, -0.0010543504, 0.0069848476, 0.0127882501, 0.00804098789, -0.00854936801, 0.00524490094, -0.00810543075, -0.00914367, -0.0276816208, 0.0151797812, 0.00626882026, 0.0106473276, 0.0272376835, -0.00290349126, -0.00221073464, -0.0307032559, 0.0305027682, -0.0231133662, -0.0129457759, 0.00241480255, 0.0145353572, -0.00637980457, 0.0157239623, 0.00542748813, 0.00123335724, 0.0152657051, 0.0135114379, -0.0159817319, 0.00842048228, -0.00279250694, 0.00625091931, -0.0083632, -0.00688818377, -0.0122225881, -0.0190176889, -0.0113418745, -0.0119361775, -0.0112774326, 0.00509095518, 0.0062401793, 0.00764001254, 0.0284262896, 0.00166118366, -0.00757557, -0.0432194173, 0.000312366959, -0.0103465961, -0.0511816405, -0.0142059848, -0.0161679, -0.00383074675, 0.00873553474, -0.018387584, -0.0114349583, -0.0144136325, -0.0101317884, -0.000930835668, 0.0137405666, -0.0141343819, 0.00912935, -0.00359266764, -0.00687028328, -0.0164543111, 0.0162967853, 0.0109050982, -0.0210941676, -0.00900046527, 0.00382000627, 0.0130460197, -0.020836398, -0.0142704267, 0.00172115094, 0.0121509852, 0.00689534424, -0.00392741058, -0.00224832608, -0.0227983128, -0.00343514164, 0.0102535132, 0.0154232308, -0.0149506526, 0.00756124966, 0.0149649736, -0.0124660376, -0.00259380927, -0.00456467504, -0.0185737517, -0.0122870309, -0.00105703552, 0.0206215903, 0.012867013, 0.00798370596, -0.0120149404, 0.00454319408, -0.0185451098, 0.00151350303, 0.00127989904, -0.0201490112, 0.00345304236, -0.00913651, 0.001225302, 0.0041099973, 0.0301017929, 0.0341115482, -0.00218030345, 0.0343979597, 0.000702154415, -0.00125125796, -0.0177288391, 0.0116855679, -0.04046987, -0.022669429, 0.0156093985, -0.00785482116, 0.0176142752, 0.0415868722, 0.0083417194, -0.00257232855, 0.0258772317, 0.00490836799, -0.0129171349, 0.0188028812, 0.00116712472, 2.92844034e-05, -0.0244165361, 0.00489046751, -0.00684522232, -0.000605490699, 0.0140484581, 0.00895034336, -0.00620079739, -0.0111986687, 3.43329566e-06, -0.0113561954, -0.0187312774, -0.00227159704, -0.00847776514, -0.00469356, 0.00730348, 0.0199914854, 0.00269584334, -0.000389339926, -0.0130818216, -0.0264786948, -0.0115710031, -0.0071137324, -0.000576402061, -0.00751828821, 0.0158528481, 0.0255621802, 0.0175283514, 0.00436060689, -0.00764717301, -0.000183034514, -0.000755856454, 0.00882861856, -0.000667248038, 0.012902814, 0.0109050982, 0.0196048319, 0.00806962885, 0.0101747494, 0.0110554639, -0.0235859435, 0.014127221, -0.0010230242, -0.0247745495, 0.0114779202, -0.00628314074, -0.0120507414, 0.0142775867, 0.00756124966, -0.0223114155, -1.86558718e-05, 0.00332415733, -0.00721039623, -0.00222684536, -0.00772593589, 0.0118072927, 0.00627598027, -0.0173851456, -0.011628286, 0.00510527566, -0.0307605378, 0.014657082, 0.0328799784, -0.0151511403, -0.00228949776, 0.0294430479, 0.00136671739, -0.0074037239, -0.0109910211, -0.0111342268, 0.0139911762, 0.0193327405, 0.0102893142, -0.00383074675, 0.0126020825, -0.00311829941, -0.000340560538, 0.0175140314, -0.00603969162, -0.0111843487, 0.00684164232, -0.00943724159, -0.0185451098, 0.00345125212, -0.0160819758, -0.00147770159, 0.00431406545, -0.010425359, 0.0154661927, 0.00373766315, -0.00778321829, 0.0143849915, -0.0175140314, -0.0119934594, -0.000184377059, -0.00819851458, 0.013489957, -0.00211765105, -0.0216813106, 0.00274417526, -0.00693114568, -0.00586426491, 0.0128884939, -0.00221073464, 0.00706361048, 0.0315911323, -0.00484392559, 0.0377203263, 0.00653375033, 0.00832739938, 0.0235573035, 0.00702422904, 0.000449754734, 0.00707793143, 0.0128025701, -0.00450739264, 0.000748248654, -0.0274381712, 0.00852072611, -0.00512675662, 0.00206573913, 0.020836398, -0.00332773756, 0.0093155168, 0.00558501389, -0.00788346212, 0.00300731533, -0.00542390766, -0.0126665253, 0.0157239623, -0.00951600447, -0.0141916638, -0.0257626679, 0.00357297692, 0.0247745495, -0.0184735078, -0.03182026, -0.00801950693, 0.0105685648, -0.00288738054, -0.00443221, -0.0274668131, -0.0298726652, 0.000661877857, -0.0105614047, -0.000794342952, -0.00439282833, -0.00253652711, -0.0219104402, -0.0164686311, -0.0258199498, -0.000713789836, 0.0102606732, 0.0279393904, -0.017170338, 0.0124230757, 0.01591013, 0.00693472568, -0.00620079739, -0.00903626624, 0.0139553742, 0.00304669677, -0.01592445, 0.0149936145, 0.00549551053, -0.00296077342, 0.0209509619, 0.0229558405, -0.0140054962, -0.00231813872, 0.0131391035, 0.0111270668, 0.0148217678, 0.00890022144, -0.0098668579, 0.0149649736, -0.0186310336, -0.0046577584, 0.00589648588, -0.00672349753, 0.00855652802, 0.0311901551, -0.00745384581, -0.0103107952, -0.0190892909, -0.00864961185, 0.00838468131, -0.0113132335, -0.0141487019, -0.0118932156, 0.0114421183, 0.015294346, -0.0354576781, -0.00917231105, -0.014069939, 0.00493700895, 0.0256910641, 0.00985253789, 0.00559575437, 0.018960407, -0.0106616486, 0.00984537695, 0.0203638207, 0.0121724661, -0.00983821694, -0.0248891134, -0.00612203451, 0.0147358449, 0.00715669431, 0.0192468166, 0.00849208515, 0.00387728866, 0.00692756521, 0.00849208515, -0.00123962248, -0.00738224294, -0.000910697388, -0.0048475056, -0.00767581398, -0.00839900225, -0.00118592044, -0.0051410771, -0.00858516898, 0.00700274808, 0.007955065, 0.0262352452, -0.0155234747, 0.00937996, 0.0148790497, -0.00932983775, -0.0192181766, 0.0118932156, -0.00274238503, -0.00798370596, -0.016497273, -0.0120292613, 0.0104540009, 0.00510169566, -0.00172473106, -0.0244308561, 0.0195332281, 0.0109050982, -0.00941576064, -0.00192790385, 0.0114564393, 0.0109623801, -0.00766865397, -0.00180170406, 0.00935847871, 0.00642992649, 0.0112129897, 0.0247888695, 0.0157382824, -0.0130818216, 0.0275527351, -0.0122870309, -0.0161822196, 0.00856368802, 0.00516971806, 0.0188458413, 0.0119862994, -0.0233424939, 0.000230695092, -0.00312008965, -0.0198053196, 0.0109480591, -0.00631894218, -0.0156523604, -0.00910070911, -0.0188172013, -0.00359087763, -0.00606117211, 0.00893602241, 0.0159674119, -3.51860363e-05, 0.0255478583, -0.0196764339, 0.0106902895, 0.0180725325, 0.0111628678, 0.00845628418, -0.0105542447, 0.0136260018, 0.00149381219, -0.00973081309, 0.00480812415, -0.0131963855, -0.0215667468, -0.00448591169, -0.00675929897, 0.0149220116, -0.0297867414, -0.0259774756, 0.00056297658, -0.002455974, 0.0038844489, -0.00708509143, -0.000188964113, -0.00565303676, -0.0184735078, 0.00382716674, -0.00338143948, 0.00687744329, 0.00782618, 0.00121456152, 0.0141558629, -0.0163397454, -0.00242912304, 0.0221825298, 0.0124159157, -0.00789062213, 0.0034942138, 0.0114850802, -0.011649766, 0.0145210363, 0.0316770524, 0.0219677221, 0.00354075572, 0.01593877, 0.0125806024, 0.0264500529, -0.0171416961, -0.00938712, 0.0175140314, -0.00260275975, 0.00411715778, 0.00705645047, 0.0179150067, 0.0129099749, 0.00739656342, 0.0240871627, -0.00718891528, 0.00260096975, 0.0285408534, 0.0162681434, 0.014721524, 0.00895034336, 0.00261887023, 0.0404412299, -0.00552057149, -0.0308464617, 0.00595376827, -0.0018563011, -0.0224259794, -0.000705287035, -0.0295003299, -0.0148933707, -0.00479380367, -0.00391667, -0.00877849665, -0.0148647297, -0.00874985568, 0.028798623, 0.00915799104, -0.0090219453, 0.0101317884, 0.0295289718, -9.75028e-05, -0.0171416961, -0.0106043667, -0.0179579686, -0.00982389599, 0.00263319095, 0.00718891528, 0.0197909977, 0.0172705818, -0.0117929718, -0.0199055634, 0.0179006867, -0.00674139848, 0.0174710695, 0.023872355, 0.000412387046, 0.00820567459, 0.00264214119, 0.00806962885, -0.0132751483, -0.0179579686, 0.00857800897, 0.00272806454, 0.0225405432, -0.0139195733, 0.000946946268, -0.00149291719, -0.0183446221, 0.000595645339, 0.00577118108, 0.00616499642, 0.00491910847, 0.0203924607, -0.00313978037, 0.0110554639, 0.00014331736, 0.00636548409, 0.00301626557, 0.00852788705, -0.00343514164, 0.00469714, -0.000942471088, -0.0199771654, -0.00543822814, 0.00737508247, 0.0110554639, 0.000365845277, 0.0292712022, -0.0170557741, -0.0167836826, 0.00434986688, -0.00199771649, -0.0114492783, -0.0295576118, 0.0118788956, 0.00258664903, 0.0279823523, 0.0272663254, -0.0279107485, 0.00851356611, -0.0260920394, 0.00581772299, 0.00789062213, 0.0262066033, 0.0113561954, 0.00430332497, 0.0282114819, 0.00318095181, 0.00907922816, -0.0136546427, 0.0244451761, 0.0127238072, 0.00973081309, 0.00525206141, 0.017757481, 0.0261493213, -0.00293392246, 0.000733033114, 0.0121366652, -0.00719607575, 0.00659103272, 0.00214092201, -0.0193613824, 0.016525913, -0.0130460197, -0.00542390766, -0.00978093501, 0.00791926309, 0.0193041, 0.00239690184, -0.0126450444, 8.3280147e-06, 0.0170700941, 0.0111485468, -0.00714237383, 0.014692883, -0.00652301, -0.0146284401, -0.00803382788, 0.0245740619, 0.00118860556, 0.017700199, -0.00126110332, 0.00490836799, 0.00970217213, 0.0220536459, 0.0123729538, -0.00428542402, -0.0136904446, 0.00798370596, 0.0151797812, -0.0016218021, -0.0205929484, -0.0222684536, 0.0221252479, -0.0274381712, -0.011026823, 0.0133252703, 0.00310218893, -0.00664831465, 0.0143921515, 0.00785482116, 0.0120435813, -0.00393099058, 0.00581772299, 0.00348347356, -0.00655165082, 0.00603611115, -9.04124499e-06, 0.0055671134, -0.0118574146, 0.025719706, 0.0214808229, -0.0110984249, 0.0101675894, 0.00642634602, -0.0109194182, 0.0192468166, 0.00479738368, 0.00162717234, 0.00555995293, 0.00104450504, -0.0022680168, -0.0039811125, -0.0168409646, -0.00403481442, 0.00837036, -0.0115638431, 0.000374348107, -0.0137119256, -0.0223973375, -0.0133109502, 0.0167120807, -0.0133467512, 0.00426394353, -0.00660893321, -0.00350674428, -0.00949452352, -0.016540233, -0.015351628, -0.0172705818, 0.0241730865, -0.00506231375, -0.0030055251, 0.00924391393, 0.00532724429, 0.0102535132, -0.0057604406, -0.00143921515, -0.01591013, 0.00713879336, 0.00107762124, 0.0101819104, -0.00636548409, -0.0284406096, 0.0113561954, 0.00910070911, -0.00455393456, -0.000622496358, -0.00831307843, -0.0270371959, -0.00206215912, -0.0122011071, -0.00250072591, -0.0175999552, -0.0011322184, -0.020836398, -0.00940144062, 0.00645498745, 0.00664115464, -0.012251229, 0.0121509852, -0.0200201273, -0.00347094308, 0.00516613806, 0.0264500529, 0.0171416961, 0.0325935706, -0.0211084895, -0.00689176423, 0.00408851681, -0.00458615553, 0.00742520439, -0.00874985568, -0.00426752353, 0.0107690524, 0.00949452352, 0.0248747934, 0.00152155827, -0.0121151842, -0.0157239623, 0.00617215643, 0.0134183541, -0.000614888559, 0.00637980457, 0.0160676558, -0.00357834715, 0.00571389915, -0.00699916808, -0.0112917526, -0.0212803353, 0.00516613806, -0.00524848094, 0.0162824634, -0.0198626015, -0.0354003981, -0.00495133, -0.0132536674, -0.0135615598, 0.00359624787, -0.0216813106, 0.0156380385, 0.00807679, -0.00314873061, -0.00494774943, 0.0123801148, -0.00511601614, -0.00149381219, 0.013439835, -0.00293213245, 0.00933699775, 0.0107690524, 0.0196191519, 0.0317629762, -0.0169125684, 0.00711015239, 0.0114564393, 0.0181727763, -0.00262782071, 0.026335489, 0.00815555267, 0.00865677185, 0.00984537695, -0.00648004841, -0.021437861, 0.0332809538, -0.00428184401, -0.00813407172, -0.00356939668, -0.0179293267, 0.00505157374, -0.0124588776, -0.0130889816, -0.00488688704, -0.0116855679, 0.00250609592, -0.0057497, 0.00431406545, 0.00161464186, 0.0211084895, 0.0294430479, -0.000695889175, 0.00939428, -0.035543602, 0.00323107373, -0.00992414, 0.0205070265, -0.00306996773, 0.0210798476, -0.00927971583, 0.00266899215, -0.000486898643, -0.010976701, 0.0282974038, -0.000467655424, -0.0211371295, -0.00737508247, 0.00234140968, -0.00541674765, -0.00195833505, 0.0142417857, 0.0266362205, -0.0218388364, -0.00321317301, -0.00636548409, 0.00536662573, 0.00613635499, 0.0138121694, 0.001148329, 0.01227271, 0.00454319408, 0.00635832362, -0.012867013, -0.0201060511, 0.0172133, -0.00266899215, -0.0118860556, -0.00135150179, 0.013504277, 0.00524848094, 0.0094444016, 0.00302163581, -0.00149291719, 0.00222326512, 0.0151081793, -0.00187957205, -0.0213949, -0.0223257355, -0.0166118369, 0.00969501119, -0.00240227208, -0.0163827073, -0.00817703363, -0.0284119695, -0.0288702268, -0.0142203048, -0.000542838301, 0.0158814881, 0.00390592963, 0.00899330433, 0.00416727969, -0.0267078225, 0.011606805, -0.00592512684, 0.0046577584, -0.00244344352, -0.00849924609, -0.011671247, 0.0103680771, -0.00437492784, 0.0106330076, -0.00525206141, 0.0158242062, -0.00623659883, 0.0168696065, 0.015681, -0.00729631959, 0.00646214746, -0.00827727746, -0.0182587, -0.0460835248, 0.00528428238, 0.0260777194, 0.0366319641, -0.0174424276, 0.0225548651, 0.01592445, -0.0227983128, -0.00658029225, -0.00325971493, -0.0139338942, 0.0069239852, -0.00108209648, 0.0314192846, -0.00172025594, -0.0167264, 0.0215094648, 0.0117929718, 0.0227839928, -0.0152513841, 0.0169555303, -0.0287270211, 0.00502293231, -0.0322212353, 0.00196728529, 0.00541316718, -0.0118788956, 0.00458257552, -0.0126378844, -0.0063082017, -0.00714953383, 0.0142704267, 0.0317629762, -0.00882145762, -0.0207791161, -0.0277675446, -0.0121438252, -0.0291995984, 0.0115638431, -0.0424174666, 0.00250072591, -0.00434628641, -0.0247315876, -0.0222684536, -0.00317558157, 0.0130388597, 0.0148647297, 0.00494058942, -0.00586426491, 0.017184658, -0.00474010175, 0.0186023936, -0.0328513384, -0.010396718, -0.00756124966, -0.00270300359, -0.00787630212, 0.000890111609, 0.0184305459, 0.0113418745, -0.0150222555, -0.0186310336, 0.00375556387, 0.00565661676, 0.0131892255, 0.0124946786, -0.0074681663, -0.000608175818, -0.00350137404, 0.0124517167, -0.0254189745, 0.0130030578, 0.00950884447, 0.0212087333, 0.0126522044, 0.00992414, -0.00805530883, -0.0154518718, -0.000565214141, -0.00444653025, 0.0182014182, -0.0082486365, -0.00135508191, -0.0139840161, -0.00140699395, 0.00159942626, 0.0023306692, 0.0209509619, 0.0195189081, -0.00365711, 0.0215524249, -0.0204067826, -0.00304669677, -0.00192253361, 0.00625808, -0.0127954101, -0.00407777634, -0.00208542985, -0.0182730202, 0.00760421157, -0.00300015486, 0.0282258019, 0.0063690641, -0.0111986687, 0.0334241614, 0.0125591215, -0.00557785388, 0.0230274424, -0.0088930605, 0.0301304348, 0.00408493634, 0.000136604605, 0.000133248235, -0.00561365532, 0.0247172676, 0.0198053196, 0.0005983304, 0.00794790499, -0.0183303021, 0.000349734648, 0.00736076199, -0.0266648624, -0.0138408104, -0.00436060689, -0.0192468166, -0.0195332281, -0.0125018386, 0.00915799104, -0.0127882501, 0.0115495222, -0.00748964678, 0.00534514477, -0.00469714, -0.020850718, -0.00245776423, -0.0108621363, 0.0030377463, 0.0220679659, 0.00802666787, 0.00748248678, 0.000831486832, -0.00405629538, 0.00217314321, -0.0107833734, -0.0106473276, 0.0137978485, 0.000712894835, -0.00826295651, -0.00635116315, -0.0050157723, 0.00537378574, -0.00696694711, -0.0069239852, 0.0148504088, -0.000509722042, -0.0175999552, 0.00398827298, -0.0074108839, 0.0224832613, -0.0100601856, 0.0144780744, 0.0108764563, -0.0271947216, 0.00741804438, 0.0117929718, 0.00984537695, -0.0101962304, -0.0182730202, -0.0130460197, -0.0157382824, 0.0101532694, 0.0087999776, 0.025719706, -0.015308667, -0.00261529023, -0.0115065612, -0.0141773429, -0.00678436, -0.00318274205, 0.0148504088, 0.00302521582, 0.000684253697, -0.00598240923, 0.00527712237, 0.0156666804, -0.00109641696, 0.00492268847, -0.0116927279, 0.00246850448, 0.0107833734, 0.0209939238, -0.00312725, 0.00552415149, -0.00382358651, 0.000229016907, 0.00627598027, -0.00188494218, -0.00214271201, -0.0102105513, -0.00513033662, 0.00486898655, -0.0061793169, 0.00824147556, -0.00812691171, -0.00402049394, 0.00365711, 0.00270300359, -0.0063726441, 0.000952316506, -0.0130245388, -0.0127954101, -0.0222111717, 0.00243091304, -0.0022035744, 0.00600030972, -0.0155521156, -0.0245024581, -1.71594857e-05, 0.00487972703, 0.0138766114, 0.0242733303, -0.00970933214, 0.0344266, 0.0200201273, 0.0285122134, -0.0113132335, 0.0186739955, 0.0230704043, -0.0269083101, -0.00708867144, -0.0156380385, 0.0126808463, 0.00843480323, -0.0242733303, 0.00919379201, 0.0152657051, -0.00940860063, 0.020822078, -0.0165545549, 0.0114707593, 0.0088930605, 0.0215810668, 0.000188180959, 0.00334026804, 0.000847149931, 0.00235036016, 0.038522277, -0.0277675446, 0.00784766115, -0.011613965, -0.00114653888, 0.0125591215, -0.0113705155, 0.00135329179, 0.00173457642, -0.0163827073, 0.00330804684, 0.0184162259, 0.00922959391, 0.028125558, 0.00809111, -0.00325792492, 0.0142346257, 0.0105900457, -0.00543464813, -0.0130460197, 0.0166404769, 0.000675750896, -0.00878565665, -0.0017292063, 0.00313799013, -0.0078405, -0.0274524912, -0.0108621363, -0.00693830568, -0.00350853452, 0.00136850739, 0.0137047647, -0.00138461811, 0.00763285253, -0.00855652802, -0.0254619364, -0.000529412762, 0.00880713761, -0.0143706705, -0.0248031896, -0.0230417624, -0.0145353572, -0.00154035399, -0.00763285253, 0.0443937, -0.0228985567, 0.000218724, 0.00952316448, -0.0376344025, -0.00304311654, 0.00151976827, 0.000727215374, 0.0172992237, -0.0130388597, 0.00940860063, -0.015294346, 0.0132823093, -0.00530218333, -0.023270892, -0.0194186643, -0.0087999776, -0.0234284177, 0.00599672971, -0.00453961408, -0.0124588776, 0.0130245388, 0.00187599193, -0.0202922169, -0.013439835, -0.0146356011, -0.00607549259, -0.00806962885, -0.00445369072, -0.0166691188, -0.00662325369, 0.00898614433, 0.00206036889, -0.000341008068, -0.00453603361, 0.00514823711, 0.0146284401, 0.00138909323, 0.00797654595, 0.00635474361, 0.00851356611, 0.0122870309, -0.0121223442, 0.0107404115, 0.0106974496, 0.00211765105, -0.0063082017, -0.0223543774, -0.00761853205, -0.0143420296, -0.00254010735, 0.00636190362, -0.0191179328, -0.00610055355, -0.00668411609, -0.00806246884, 0.00244344352, 0.00187957205, 0.0133252703, -0.0076614935, -0.0306173339, 0.0142417857, 0.0115924841, 0.0138193294, 0.0243592542, -0.0215237848, -0.0200487673, -0.00697768712, 0.0231420062, -0.0176142752, 0.03179162, -0.0120435813, -0.0208650399, -0.0141988238, -0.018387584, -0.00369470147, -0.0163970292, -0.000820746471, -0.0187169574, -0.0148360888, 0.00922959391, -0.0100172237, -0.00794074405, 0.0726338252, 0.0441932119, 0.00256516831, -0.0249463953, -0.00192611385, -0.0109695401, -0.0161249377, 0.0368324518, -0.036717888, 0.0278821085, -0.0126880063, -0.0111986687, -0.00284262886, -0.00692756521, -0.00251504639, 0.00348884356, -0.0040419749, -0.00678794, 0.00739656342, -0.0108048543, -0.00334384805, 0.00358192716, 0.0125304805, -0.0101103075, -0.014707204, -0.00916515104, 0.0115137212, 0.0118287737, -0.00813407172, 0.0142417857, -0.0148360888, -0.00590722635, 0.0230990443, -0.0108478153, -0.0265932586, -0.00494774943, -0.000432525325, -0.0145425173, 0.00872837473, -0.0233711358, 0.00953032542, 0.0178577248, 0.0131892255, 0.0102463523, -0.0166261569, -0.00731422, 0.0046577584, 0.00474368175, -0.00386654818, 0.0113633554, 0.00125215296, 0.0132751483, 0.00454677409, -0.0171989799, -0.00607907306, 0.00798370596, 0.00947304256, -0.00779037829, 0.00249714567, 0.0296435356, -0.00774025638, -0.00496207, 0.00922243297, 0.00871405378, 0.0094444016, -0.011005342, -0.0141845038, -0.00186525146, 0.0131319435, -0.0010382398, -0.0023270892, -0.00173815654, 0.00554563245, 0.00774025638, 0.00688102376, 0.000854757731, 0.0297581, 0.000665905536, -0.00801950693, -0.010425359, -0.0102033913, 0.00699558808, -0.0182730202, -0.00905058719, -0.0043391264, -0.00237900112, 0.00424604258, -0.0179866087, 0.00310576893, 0.0225262232, 0.00334384805, 0.0215667468, -0.0272233635, 0.00775457732, 0.00875701569, -0.0100172237, -0.0186739955, -0.001149224, 0.011664087, -0.014721524, 0.0357440896, 0.0131462635, 0.0083632, 0.0192324966, -0.0173565056, -0.00211407105, -0.00435344689, 0.00958760735, 0.0300158709, -0.0174710695, 0.0157239623, -0.0045324536, 0.000495401502, 0.0304741282, 0.00523416046, 0.0108406553, -0.00207110937, -0.010411039, -0.0114063174, -0.00860665, 0.00953032542, -0.0135400789, -0.000980957644, -0.0145711582, -0.0117714908, 0.00308249821, 0.011005342, -0.000669485657, 0.0185594317, 0.00288917078, 0.0123729538, -0.0299013052, 0.00293392246, 0.0017157807, 0.000648004818, 0.00502651278, -0.00809827074, -0.00470430031, -0.0215667468, 0.00461479696, 0.0195905101, 0.0101962304, 0.00811259076, 0.0300158709, 0.0085064061, -0.00265825191, 0.0125519605, 0.00589290587, 0.0496063791, -0.0130961416, -0.00551341148, 0.00867825281, 0.0158814881, -0.0113347145, -0.0119791394, 0.00487614702, -0.0144565944, -0.0335387252, 0.03912374, -0.00727125863, -0.0142059848, 0.0103179552, 0.0174137875, 0.0161965415, 0.0228412747, -0.015308667, 0.00791926309, 0.00101407384, 0.0269083101, 0.00193148397, 0.0284549296, 0.0064979489, -0.01226555, 0.0182014182, -0.0215524249, 0.00622943882, -0.00206394913, 0.0158242062, -0.017700199, -0.0215810668, -0.00537378574, 0.013461316, 0.00390592963, 0.027524095, -0.0074681663, -0.0215381049, -0.00139356835, 0.00359266764, 0.0268080663, 0.00719607575, -0.00827011652, -0.0162395015, -0.0301877167, 0.00477590319, -0.0061184545, -0.0262495652, 0.0119003756, -0.0113919964, 0.00786914118, 0.0204640646, 0.00640128506, 0.00546686957, -0.0120221, 0.0173278637, -0.00758989062, 0.0193757024, 0.0212373734, -0.0109122582, 0.00183840049, -0.00780469924, -0.015294346]
|
21 Apr, 2024
|
Find the Kth occurrence of an element in a sorted Array
21 Apr, 2024
Given a sorted array arr[] of size N, an integer X, and a positive integer K, the task is to find the index of Kth occurrence of X in the given array.
Examples:
Input: N = 10, arr[] = [1, 2, 3, 3, 4, 5, 5, 5, 5, 5], X = 5, K = 2Output: Starting index of the array is ‘0’ Second occurrence of 5 is at index 6.Explanation: The first occurrence of 5 is at index 5. And the second occurrence of 5 is at index 6.
Input: N = 8, arr[] = [1, 2, 4, 4, 4, 8, 10, 15], X = 4, K = 1Output: Starting index of the array is ‘0’ First occurrence of 4 is at index 2.Explanation: The first occurrence of 4 is at index 2.
Input: N = 4, arr[] = [1, 2, 3, 4], X = 4, K = 2Output: -1
Approach: To solve the problem follow the below idea:
The idea is to use binary search and check if the middle element is equal to the key, check if the Kth occurrence of the key is to the left of the middle element or to the right of it, or if the middle element itself is the Kth occurrence of the key.
Below are the steps for the above approach:
Initialize the mid index, mid = start + (end – start) / 2, and a variable ans = -1.Run a while loop till start ≤ end index,Check if the key element and arr[mid] are the same, there is a possibility that the Kth occurrence of the key element is either on the left side or on the right side of the arr[mid]. Check if arr[mid-K] and arr[mid] are the same. Then the Kth occurrence of the key element must lie on the left side of the arr[mid]. Else if arr[mid-(K-1)] and arr[mid] are the same, then arr[mid] itself will be the Kth element, update ans = mid.Else Kth occurrence of the element will lie on the right side of the mid-element. For which start becomes start = mid+1 (Going to the right search space)If arr[mid] and key elements are not the same, thenCheck if key < arr[mid], then end = mid – 1. Since the key element is smaller than arr[mid], it will lie to the left of arr[mid].Check if key > arr[mid], then start = mid +1. Since the key element is greater than arr[mid], it will lie to the right of arr[mid].Return the Kth occurrence of the key element.Below is the code for the above approach:
C++
// C++ code for finding the Kth occurrence
// of an element in a sorted array
// using Binary search
#include <bits/stdc++.h>
using namespace std;
class solution {
public:
int Kth_occurrence(int arr[], int size, int key, int k)
{
int s = 0;
int e = size - 1;
int mid = s + (e - s) / 2;
int ans = -1;
while (s <= e) {
if (arr[mid] == key) {
// If arr[mid] happens to
// be the element(whose
// Kth occurrence we are
// searching for), then
// there is a possibility
// that the Kth occurrence
// of the element can be
// either on left or on
// the right side of arr[mid]
// If the Kth occurrence
// lies to the left side
// of arr[mid]
if (arr[mid - k] == arr[mid])
e = mid - 1;
// If arr[mid] itself is
// the Kth occurrence.
else if (arr[mid - (k - 1)] == arr[mid]) {
ans = mid;
break;
}
// If the Kth occurrence
// lies to the right side
// of arr[mid].
else {
s = mid + 1;
}
}
// Go for the Left portion.
else if (key < arr[mid]) {
e = mid - 1;
}
// Go for the Right
// portion.
else if (key > arr[mid]) {
s = mid + 1;
}
mid = s + (e - s) / 2;
}
return ans;
}
};
// Drivers code
int main()
{
int n = 4;
int arr[4] = { 1, 2, 3, 4 };
int x = 4;
int k = 2;
solution obj;
cout << "Kth occurrence of " << x << " is at index: "
<< obj.Kth_occurrence(arr, n, x, k) << endl;
return 0;
}
Java
// Java code for finding the Kth occurrence
// of an element in a sorted array
// using Binary search
import java.util.*;
class Solution {
public int Kth_occurrence(int arr[], int size, int key,
int k)
{
int s = 0;
int e = size - 1;
int mid = s + (e - s) / 2;
int ans = -1;
while (s <= e) {
if (arr[mid] == key) {
// If arr[mid] happens to
// be the element(whose
// Kth occurrence we are
// searching for), then
// there is a possibility
// that the Kth occurrence
// of the element can be
// either on left or on
// the right side of arr[mid]
// If the Kth occurrence
// lies to the left side
// of arr[mid]
if (arr[mid - k] == arr[mid])
e = mid - 1;
// If arr[mid] itself is
// the Kth occurrence.
else if (arr[mid - (k - 1)] == arr[mid]) {
ans = mid;
break;
}
// If the Kth occurrence
// lies to the right side
// of arr[mid].
else {
s = mid + 1;
}
}
// Go for the Left portion.
else if (key < arr[mid]) {
e = mid - 1;
}
// Go for the Right
// portion.
else if (key > arr[mid]) {
s = mid + 1;
}
mid = s + (e - s) / 2;
}
return ans;
}
}
// Driver code
class GFG {
public static void main(String[] args)
{
int n = 4;
int arr[] = { 1, 2, 3, 4 };
int x = 4;
int k = 2;
Solution obj = new Solution();
System.out.println(
"Kth occurrence of " + x + " is at index: "
+ obj.Kth_occurrence(arr, n, x, k));
}
}
C#
// C# code for finding the Kth occurrence
// of an element in a sorted array
// using Binary search
using System;
class Solution {
public int Kth_occurrence(int[] arr, int size, int key,
int k)
{
int s = 0;
int e = size - 1;
int mid = s + (e - s) / 2;
int ans = -1;
while (s <= e) {
if (arr[mid] == key) {
// If arr[mid] happens to
// be the element(whose
// Kth occurrence we are
// searching for), then
// there is a possibility
// that the Kth occurrence
// of the element can be
// either on left or on
// the right side of arr[mid]
// If the Kth occurrence
// lies to the left side
// of arr[mid]
if (arr[mid - k] == arr[mid]) {
e = mid - 1;
}
// If arr[mid] itself is
// the Kth occurrence.
else if (arr[mid - (k - 1)] == arr[mid]) {
ans = mid;
break;
}
// If the Kth occurrence
// lies to the right side
// of arr[mid].
else {
s = mid + 1;
}
}
// Go for the Left portion.
else if (key < arr[mid]) {
e = mid - 1;
}
// Go for the Right
// portion.
else if (key > arr[mid]) {
s = mid + 1;
}
mid = s + (e - s) / 2;
}
return ans;
}
}
class Program {
static void Main(string[] args)
{
int n = 4;
int[] arr = { 1, 2, 3, 4 };
int x = 4;
int k = 2;
Solution obj = new Solution();
Console.WriteLine(
"Kth occurrence of {0} is at index: {1}", x,
obj.Kth_occurrence(arr, n, x, k));
}
}
// This code is contributed by Gaurav_Arora
JavaScript
class solution {
Kth_occurrence(arr, size, key, k) {
let s = 0;
let e = size - 1;
let mid = s + Math.floor((e - s) / 2);
let ans = -1;
while (s <= e) {
if (arr[mid] === key) {
// If arr[mid] happens to
// be the element(whose
// Kth occurrence we are
// searching for), then
// there is a possibility
// that the Kth occurrence
// of the element can be
// either on left or on
// the right side of arr[mid]
// If the Kth occurrence
// lies to the left side
// of arr[mid]
if (arr[mid - k] === arr[mid]) {
e = mid - 1;
}
// If arr[mid] itself is
// the Kth occurrence.
else if (arr[mid - (k - 1)] === arr[mid]) {
ans = mid;
break;
}
// If the Kth occurrence
// lies to the right side
// of arr[mid].
else {
s = mid + 1;
}
}
// Go for the Left portion.
else if (key < arr[mid]) {
e = mid - 1;
}
// Go for the Right
// portion.
else if (key > arr[mid]) {
s = mid + 1;
}
mid = s + Math.floor((e - s) / 2);
}
return ans;
}
}
// Drivers code
let n = 4;
let arr = [1, 2, 3, 4];
let x = 4;
let k = 2;
let obj = new solution();
console.log("Kth occurrence of " + x + " is at index: " + obj.Kth_occurrence(arr, n, x, k));
Python3
# Python code for finding the Kth occurrence
# of an element in a sorted array
# using Binary search
class Solution:
def Kth_occurrence(self, arr, size, key, k):
s = 0
e = size - 1
mid = s + (e - s) // 2
ans = -1
while s <= e:
if arr[mid] == key:
# If arr[mid] happens to
# be the element(whose
# Kth occurrence we are
# searching for), then
# there is a possibility
# that the Kth occurrence
# of the element can be
# either on left or on
# the right side of arr[mid]
# If the Kth occurrence
# lies to the left side
# of arr[mid]
if arr[mid - k] == arr[mid]:
e = mid - 1
# If arr[mid] itself is
# the Kth occurrence.
elif arr[mid - (k - 1)] == arr[mid]:
ans = mid
break
# If the Kth occurrence
# lies to the right side
# of arr[mid].
else:
s = mid + 1
# Go for the Left portion.
elif key < arr[mid]:
e = mid - 1
# Go for the Right
# portion.
elif key > arr[mid]:
s = mid + 1
mid = s + (e - s) // 2
return ans
# Drivers code
if __name__ == '__main__':
n = 4
arr = [1, 2, 3, 4]
x = 4
k = 2
obj = Solution()
print(f"Kth occurrence of {x} is at index: {obj.Kth_occurrence(arr, n, x, k)}")
# This code is contributed by Susobhan Akhuli
OutputKth occurrence of 4 is at index: -1
Time Complexity: O(logN), because of the binary search approach.Auxiliary Space: O(1).
Another Approach: (Using Two Binary Search)Another approach to solve this problem is to use two binary searches – one to find the index of the first occurrence of X and another to find the index of the Kth occurrence of X.
Algorithm:Initialize two variables, left and right, to point to the first and last indices of the array, respectively.Perform binary search on the array to find the index of the first occurrence of X. If X is not found, return -1.Initialize a variable firstIndex to the index of the first occurrence of X.Set left to firstIndex + 1 and right to N-1.Perform binary search on the subarray arr[left…right] to find the index of the Kth occurrence of X. If Kth occurrence of X is not found, return -1.Return the index of the Kth occurrence of X in the array as firstIndex + index found in step 5.Below is the implementation of the above approach:
C++
// C++ code for finding the Kth occurrence
// of an element in a sorted array
// Using Two Binary Search
#include <iostream>
#include <vector>
using namespace std;
int binarySearch(vector<int>& arr, int left, int right, int target) {
while (left <= right) {
int mid = (left + right) / 2;
if (arr[mid] == target) {
return mid;
} else if (arr[mid] < target) {
left = mid + 1;
} else {
right = mid - 1;
}
}
return -1;
}
int findKthOccurrence(vector<int>& arr, int N, int X, int K) {
int left = 0, right = N - 1;
int firstIndex = binarySearch(arr, left, right, X);
if (firstIndex == -1) {
return -1;
}
left = firstIndex + 1;
right = N - 1;
int count = 1;
while (left <= right) {
int mid = (left + right) / 2;
if (arr[mid] == X) {
count++;
if (count == K) {
return mid;
} else {
left = mid + 1;
}
} else if (arr[mid] < X) {
left = mid + 1;
} else {
right = mid - 1;
}
}
return -1;
}
// Drivers code
int main() {
int n = 4;
vector<int> arr = {1, 2, 3, 4};
int x = 4;
int k = 2;
cout << k << "nd occurrence of " << x << " is at index: " << findKthOccurrence(arr, n, x, k) << endl;
return 0;
}
// This code is contributed by Pushpesh Raj
Java
// Java code for finding the Kth occurrence
// of an element in a sorted array
// Using Two Binary Search
import java.util.*;
class GFG {
public static int binarySearch(List<Integer> arr, int left,
int right, int target) {
while (left <= right) {
int mid = (left + right) / 2;
if (arr.get(mid) == target) {
return mid;
} else if (arr.get(mid) < target) {
left = mid + 1;
} else {
right = mid - 1;
}
}
return -1;
}
public static int findKthOccurrence(List<Integer> arr, int N,
int X, int K) {
int left = 0, right = N - 1;
int firstIndex = binarySearch(arr, left, right, X);
if (firstIndex == -1) {
return -1;
}
left = firstIndex + 1;
right = N - 1;
int count = 1;
while (left <= right) {
int mid = (left + right) / 2;
if (arr.get(mid) == X) {
count++;
if (count == K) {
return mid;
} else {
left = mid + 1;
}
} else if (arr.get(mid) < X) {
left = mid + 1;
} else {
right = mid - 1;
}
}
return -1;
}
public static void main(String[] args) {
int n = 4;
List<Integer> arr = Arrays.asList(1, 2, 3, 4);
int x = 4;
int k = 2;
System.out.println(k + "nd occurrence of " + x + " is at index: " + findKthOccurrence(arr, n, x, k));
}
}
// This code is contributed by Vaibhav Nandan
C#
// C# code for finding the Kth occurrence
// of an element in a sorted array
// Using Two Binary Search
using System;
class GFG
{
static int BinarySearch(int[] arr, int left, int right, int target)
{
while (left <= right)
{
int mid = (left + right) / 2;
if (arr[mid] == target)
{
return mid;
}
else if (arr[mid] < target)
{
left = mid + 1;
}
else
{
right = mid - 1;
}
}
return -1;
}
static int FindKthOccurrence(int[] arr, int N, int X, int K)
{
int left = 0, right = N - 1;
int firstIndex = BinarySearch(arr, left, right, X);
if (firstIndex == -1)
{
return -1;
}
left = firstIndex + 1;
right = N - 1;
int count = 1;
while (left <= right)
{
int mid = (left + right) / 2;
if (arr[mid] == X)
{
count++;
if (count == K)
{
return mid;
}
else
{
left = mid + 1;
}
}
else if (arr[mid] < X)
{
left = mid + 1;
}
else
{
right = mid - 1;
}
}
return -1;
}
// Main function
static void Main()
{
int n = 4;
int[] arr = { 1, 2, 3, 4 };
int x = 4;
int k = 2;
Console.WriteLine($"{k}nd occurrence of {x} is at index: {FindKthOccurrence(arr, n, x, k)}");
}
}
JavaScript
// Function to perform binary search in a sorted array
function binarySearch(arr, left, right, target) {
while (left <= right) {
let mid = Math.floor((left + right) / 2);
if (arr[mid] === target) {
return mid; // Return the index if target is found
} else if (arr[mid] < target) {
left = mid + 1; // Move the search range to the right
} else {
right = mid - 1; // Move the search range to the left
}
}
return -1; // Return -1 if target is not found
}
// Function to find the Kth occurrence of an element in a sorted array
function findKthOccurrence(arr, N, X, K) {
let left = 0;
let right = N - 1;
// Find the index of the first occurrence of X using binary search
let firstIndex = binarySearch(arr, left, right, X);
if (firstIndex === -1) {
return -1; // If X is not present, return -1
}
left = firstIndex + 1;
right = N - 1;
let count = 1;
// Find the index of the Kth occurrence of X using binary search
while (left <= right) {
let mid = Math.floor((left + right) / 2);
if (arr[mid] === X) {
count++;
if (count === K) {
return mid; // Return the index of the Kth occurrence of X
} else {
left = mid + 1;
}
} else if (arr[mid] < X) {
left = mid + 1;
} else {
right = mid - 1;
}
}
return -1; // If Kth occurrence of X is not found, return -1
}
// Driver code
const n = 4;
const arr = [1, 2, 3, 4];
const x = 4;
const k = 2;
console.log(`${k}nd occurrence of ${x} is at index: ${findKthOccurrence(arr, n, x, k)}`);
Python3
# Python code for finding the Kth occurrence
# of an element in a sorted array
# Using Two Binary Search
def binarySearch(arr, left, right, target):
while left <= right:
mid = (left + right) // 2
if arr[mid] == target:
return mid
elif arr[mid] < target:
left = mid + 1
else:
right = mid - 1
return -1
def findKthOccurrence(arr, N, X, K):
left, right = 0, N-1
firstIndex = binarySearch(arr, left, right, X)
if firstIndex == -1:
return -1
left, right = firstIndex+1, N-1
count = 1
while left <= right:
mid = (left + right) // 2
if arr[mid] == X:
count += 1
if count == K:
return mid
else:
left = mid + 1
elif arr[mid] < X:
left = mid + 1
else:
right = mid - 1
return -1
# Drivers code
if __name__ == '__main__':
n = 4
arr = [1, 2, 3, 4]
x = 4
k = 2
print(f"{k}nd occurrence of {x} is at index: {findKthOccurrence(arr, n, x, k)}")
# This code is contributed by Susobhan Akhuli
Output2nd occurrence of 4 is at index: -1
Time Complexity: O(log N + log N) = O(log N), as we are performing two binary searches on the array.Auxiliary Space: O(1), as we are using only a constant amount of extra space to store the variables.
Using inbuilt functions:
This approach to solve the problem is to use inbuilt function lower_bound and upper_bound to get indices of first and last occurrence of the element. Once we get it we can add k to first occurrence index if it’s within element’s last occcurrence. Else, we can return -1.
Algorithm:
Define a function Kth_occurrence which takes four arguments: the sorted array arr[], its size n, the key element to be searched key and the integer k representing the Kth occurrence of the key element. Initialize ans variable to -1. Use the lower_bound() function to find the first occurrence of the key element in the array. Store its index in the lb variable. Use the upper_bound() function to find the last occurrence of the key element in the array. Store its index in the ub variable. If the key element is not found in the array or the number of occurrences of the key element in the array is less than k, return -1. Otherwise, calculate the index of the kth occurrence of the key element by adding k-1 to lb. Store this index in the ans variable. Return ans.Below is the implementation of the approach:
C++
// C++ code for finding the Kth occurrence
// of an element in a sorted array
#include <bits/stdc++.h>
using namespace std;
class solution {
public:
// Function to find the Kth occurrence
// of an element in a sorted Array
int Kth_occurrence(int arr[], int n, int key, int k) {
int ans = -1;
// lower_bound of key
int lb = lower_bound( arr, arr + n, key ) - arr;
// upper_bound of key
int ub = upper_bound( arr, arr + n, key ) - arr;
// if key doesn't exist or k occurrences
// are not there of the key
if( (lb == n || arr[lb] != key) || (ub - lb) < k )
return -1;
ans = lb + k - 1;
return ans;
}
};
// Drivers code
int main() {
int n = 4;
int arr[4] = { 1, 2, 3, 4 };
int x = 4;
int k = 2;
solution obj;
cout << "Kth occurrence of " << x << " is at index: "
<< obj.Kth_occurrence(arr, n, x, k) << endl;
return 0;
}
// This code is contributed by Chandramani Kumar
Java
public class Solution {
// Function to find the Kth occurrence of an element in a sorted Array
public int findKthOccurrence(int[] arr, int key, int k) {
int ans = -1;
// Finding the lower bound index of the key
int lb = lowerBound(arr, key);
// Finding the upper bound index of the key
int ub = upperBound(arr, key);
// If key doesn't exist or there are not k occurrences of the key
if (lb == -1 || arr[lb] != key || (ub - lb) < k) {
return -1;
}
ans = lb + k - 1;
return ans;
}
// Function to find the lower bound index of key
private int lowerBound(int[] arr, int key) {
int left = 0;
int right = arr.length - 1;
int lb = -1;
while (left <= right) {
int mid = left + (right - left) / 2;
if (arr[mid] >= key) {
lb = mid;
right = mid - 1;
} else {
left = mid + 1;
}
}
return lb;
}
// Function to find the upper bound index of key
private int upperBound(int[] arr, int key) {
int left = 0;
int right = arr.length - 1;
int ub = -1;
while (left <= right) {
int mid = left + (right - left) / 2;
if (arr[mid] > key) {
ub = mid;
right = mid - 1;
} else {
left = mid + 1;
}
}
return ub;
}
public static void main(String[] args) {
int n = 4;
int[] arr = {1, 2, 3, 4};
int x = 4;
int k = 2;
Solution obj = new Solution();
int result = obj.findKthOccurrence(arr, x, k);
System.out.println("Kth occurrence of " + x + " is at index: " + result);
}
}
C#
using System;
class Solution
{
// Function to find the Kth occurrence
// of an element in a sorted Array
public int KthOccurrence(int[] arr, int key, int k)
{
int ans = -1;
// Lower bound of key
int lb = Array.BinarySearch(arr, key);
// Upper bound of key
int ub = Array.BinarySearch(arr, key + 1);
// If key doesn't exist or k occurrences
// are not there of the key
if ((lb < 0 || arr[lb] != key) || (ub - lb) < k)
return -1;
ans = lb + k - 1;
return ans;
}
}
class Program
{
static void Main()
{
int[] arr = { 1, 2, 3, 4 };
int x = 4;
int k = 2;
Solution obj = new Solution();
Console.WriteLine("Kth occurrence of " + x + " is at index: " +
obj.KthOccurrence(arr, x, k));
}
}
JavaScript
cpp
// JavaScript code for finding the Kth occurrence
// of an element in a sorted array
class Solution {
// Function to find the Kth occurrence
// of an element in a sorted Array
Kth_occurrence(arr, key, k) {
let ans = -1;
// lower_bound of key
let lb = arr.findIndex((element) => element >= key);
// upper_bound of key
let ub = arr.findIndex((element) => element > key);
// if key doesn't exist or k occurrences
// are not there of the key
if (lb === -1 || arr[lb] !== key || (ub - lb) < k) {
return -1;
}
ans = lb + k - 1;
return ans;
}
}
// Drivers code
let n = 4;
let arr = [1, 2, 3, 4];
let x = 4;
let k = 2;
let obj = new Solution();
console.log("Kth occurrence of " + x + " is at index: " + obj.Kth_occurrence(arr, x, k));
Python3
class Solution:
def kth_occurrence(self, arr, key, k):
lb = self.lower_bound(arr, key)
ub = self.upper_bound(arr, key)
if lb == len(arr) or arr[lb] != key or (ub - lb) < k:
return -1
return lb + k - 1
def lower_bound(self, arr, key):
left, right = 0, len(arr)
while left < right:
mid = left + (right - left) // 2
if arr[mid] < key:
left = mid + 1
else:
right = mid
return left
def upper_bound(self, arr, key):
left, right = 0, len(arr)
while left < right:
mid = left + (right - left) // 2
if arr[mid] <= key:
left = mid + 1
else:
right = mid
return left
# Driver's code
if __name__ == "__main__":
arr = [1, 2, 3, 4]
x = 4
k = 2
obj = Solution()
result = obj.kth_occurrence(arr, x, k)
if result != -1:
print(f"Kth occurrence of {x} is at index: {result}")
else:
print(f"Kth occurrence of {x} not found.")
OutputKth occurrence of 4 is at index: -1
Time Complexity: O(logN) as lower_bound and upper_bound takes logN time. Here, N is size of input array.Space Complexity: O(1) as no extra space has been used.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array
|
https://www.geeksforgeeks.org/find-the-kth-occurrence-of-an-element-in-a-sorted-array/?ref=ml_lbp
|
Pandas
|
Find the Kth occurrence of an element in a sorted Array
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00195588754, -0.000731580833, -0.0156170679, 0.0177343823, 0.00644954899, -0.00854433794, -0.009407782, 0.0436677262, -0.0484729782, 0.0168333985, -0.00633317186, 0.01523415, 0.0251224563, -0.0251825228, 0.0139051974, 0.0156320855, -0.0103388, 0.0140403453, -0.0403340831, -0.0422261506, -0.0436677262, -0.00586015452, -0.0246119, 0.0439380221, -0.0184551701, -0.00674987724, 0.00905489642, 0.00778600946, -0.0254678354, -0.00881463382, -0.0185753014, 0.01276395, 0.000459643, -0.0112397838, -0.0151365427, -0.00799624, -0.00796620641, -0.0149713624, -0.0254378021, 0.0175091363, -0.0111947348, 0.0012632556, -0.016548086, -0.0174791031, 0.00670107361, 0.0217587817, 0.0361895524, -0.00562740024, -0.00370154553, -0.0107067013, 0.00396433286, -0.0285462, 0.0190708432, 0.0291468557, 0.00464007119, 0.0219089445, -0.0349882394, -0.000852181402, -0.00340309436, -0.0148662478, 0.0351083726, -0.0200619269, 0.00166400615, -0.0169535298, 0.0171337258, -0.0192810725, -0.022284355, 0.0355288312, 0.000172688742, 0.00925761834, -0.0204523522, 0.0204073042, 0.0358892232, -0.00707273, -0.0318347923, -0.00999342185, -0.0214284193, 0.0302881021, -0.0420759879, 0.0536085889, -0.00374096353, 0.00881463382, -0.0288315117, -0.0228549782, 0.0363697484, -0.00746691087, 0.0145058539, -0.0558310188, 0.0368502736, 0.0242064558, -0.0162027087, -0.00521820318, -0.0103988657, 0.0141604766, 0.00710276281, 0.0143256569, 0.0201820582, 0.00803378, -0.0247920956, 0.0620478131, 0.0239361599, 0.0133195575, 0.00400562771, 0.0177644156, 0.037511, 0.0104589313, 0.0206175335, 0.00511308806, 0.037811324, 0.036429815, 0.0310839731, 0.0150239198, -0.0225396343, 0.00234631426, -0.0208277628, 0.00337306154, 0.0233805533, -0.0337568931, 0.00713279564, 0.0163378567, 0.0567920692, 0.0419558547, 0.0497343577, 0.0315945297, -0.0467611067, 0.0349582061, 0.0235907827, 0.0220140591, -0.0114800464, -0.0286513139, 0.0181548428, -0.00243828981, 0.0136724431, -0.00104364066, -0.0179896615, 0.0367001109, 0.0116001777, 0.0353486352, 0.000274284161, -0.00901735574, -0.0123660155, -0.0664326, -0.050755471, 0.0236958973, 0.0161726754, 0.00563490856, -0.0192960892, 0.0532181635, -0.0179145802, 0.0229450781, -0.0225846842, -0.0285161659, 0.0132519836, 0.00105771853, 0.0285161659, -0.000316048536, -0.00741810724, -0.0120506706, 0.00271609356, -0.024506785, 0.00976817589, -0.00175879721, -0.00234819134, 0.0036396028, -0.00550351478, 0.0324054174, -0.0286813471, -0.0285011493, -0.0457099564, 0.0332763679, 0.00353636499, 0.0114950631, 0.0321651548, 0.0320450217, -0.0328559093, -0.00103613245, 0.0230351761, -0.0270745903, 0.013725, -0.0335766971, 0.0170736611, -0.0123134581, -0.00223556836, 0.00316470885, 0.0334265344, -0.0391928367, -0.00563490856, -0.0120356539, 0.0163078234, -0.00106710382, -0.0121107362, -0.00537212146, 0.0182149075, 0.0319248922, 0.026954459, -0.00480900612, -0.0665527359, 0.0252425876, -0.022599699, 0.0411149375, -0.00901735574, -0.0189507119, -0.010473947, 0.00503049791, 0.0410248376, -0.00885217451, -0.0226747822, -0.0247019976, 0.0207226481, 0.00849178061, -0.0569422357, 0.0518666878, -0.0508756042, -0.00329985656, 0.032255251, 0.0264889505, -0.0276902635, 0.0323753841, -0.0270595737, -0.031624563, -0.0214284193, 0.0271346569, 0.0642101765, -0.00813889503, -0.0220140591, -0.0129066063, 0.0116151944, 0.00771092763, 0.0161276255, -0.070457004, 0.01305677, -0.0103688324, -0.0254077688, -0.00522195734, -0.00372594711, -0.0126813594, -0.0335166305, 0.00531205582, 0.0309638418, 0.0270145256, 0.0113223745, 0.0284110513, -0.000347254536, -0.0124185728, 0.0224345196, -0.0343875848, -0.00947535597, -0.00802627206, 0.0386222117, 0.022329405, 0.018680416, 0.00395682454, 0.010654144, -0.0200318936, -0.0113899484, 0.00271609356, -0.0127564417, 0.0203021895, -0.000356170523, -0.0075194682, 0.0219690111, 0.000527920725, -0.00726794358, 0.0456198603, 0.0474518612, -0.0080412887, 0.0385020785, -0.0139427381, -0.00351196341, -0.0204373375, 0.0362195857, -0.0153542813, 0.0198967457, -0.0267442297, 0.0143256569, -0.0293721016, -0.024686981, -0.000467385806, 0.0137850661, 0.0107742753, 0.00409572618, 0.0436076596, 0.000930079, 0.00688127056, 0.0297024623, -0.0103463074, -0.00588643365, -0.00258094585, -0.0422261506, 0.00645330315, -0.0233805533, -0.0231102575, -0.0310539398, 0.0100234551, 0.0210530087, 0.0109469639, -0.0202120896, -0.0453495644, -0.0293871183, -0.0332163, -0.00526325218, -0.0248221289, -0.0173439551, -0.00461003836, 0.00822899397, -0.0371506028, -0.00262036384, -0.0153092323, 0.0119981132, 0.00168089964, 0.0219539944, -0.0413251668, 0.00198404351, -0.0335766971, -0.0138226068, -0.0255579334, 0.00806381274, 0.0129967043, -0.0160525441, -0.0020891584, 0.00421210332, -0.00989581551, 0.0152266417, 0.0574527904, 0.00687751686, -0.0238160286, -0.0051694, 0.0324054174, -0.0259633753, -0.0632491261, -0.014303132, 0.00713655, -0.0545396097, 0.0123660155, 0.0219389778, -0.022329405, -0.00801876374, 0.0330661386, 0.0112322764, -0.018905662, 0.0299277082, 0.0192660559, 0.0135372952, -0.0010915054, -0.0377212279, 0.00391552923, -0.024371637, 0.00802627206, 0.0504851751, 0.000931486778, 0.00144626817, 0.0191909745, 0.00817643665, -0.0441782847, 0.0144082475, -0.0191459246, -0.029176889, -0.0270745903, 0.0236358326, 0.0266991798, 0.0111421775, 0.0376611613, -0.0409047045, 0.0284861326, -0.0231853407, -0.0157822482, -0.0267592464, 0.014190509, -0.0085668629, -0.0299577415, -0.028065674, -0.010609095, 0.0283509865, -0.00542843295, -0.0367601775, 0.00567995757, -0.011472539, -0.0263087545, -0.00777850114, 0.0012116367, -0.0238160286, 0.0187104493, 0.0149788707, -0.00722289411, -0.0221492071, 0.0354987979, -0.0267442297, 0.0166982505, -0.0106841773, 0.0347179435, -0.0297324955, 0.012989196, -0.0243866537, -0.0277953781, 0.0442383476, 0.0147010675, -0.00683997571, -0.0383819491, -0.0102937501, -0.0303932168, 0.0283509865, -0.00324917608, 0.0376010947, 0.0063519422, -0.017929595, 0.0049666781, -0.0203772709, -0.0287263952, 0.0295372829, 0.00674612308, 0.00613795826, 0.0279455427, -0.0397634581, 0.00747817289, 0.00100609963, 0.0289216097, -0.0173739884, 0.0171937924, 0.015391822, -0.00926512573, -0.0174791031, -0.0129516553, 0.00177662924, 0.0244767517, -0.0432472676, -0.0196865164, 0.0217737965, 0.000179727678, 0.0279004928, -0.041415263, -0.0548099019, 0.0149413301, -0.00777099328, 0.0318648256, -0.0178995635, -0.01276395, 0.00628061406, -0.0226597656, -0.0300478395, -0.0187555, 0.0201520249, 0.0501548164, 0.00602533529, -0.0256330147, 0.0152491666, 0.0264889505, -0.0212782566, 0.0203472376, -0.00197841227, 0.0100910291, -0.0358892232, -0.0120056216, 0.0207376648, -0.0190858599, 0.0599755496, -0.0118329329, 0.0452894978, -0.0370004401, 0.0149263134, 0.008116371, 0.00498920307, 0.0145058539, 0.00560112158, 0.000732519315, 0.00992584787, 0.0306635126, -0.00923509337, -0.0100234551, 0.00452744821, -0.0179446116, 0.0520468839, -0.0307536107, 0.00331487297, 0.0162627734, 0.0436376929, -0.00577381, -0.00359267648, -0.0256029814, -0.0310839731, -0.0422261506, 0.0414452963, -0.0358892232, -0.0244467184, -0.0295372829, -0.00598779414, -0.0177644156, 0.0245818663, -0.015256674, -0.00485030096, -0.0119380476, 0.00412200484, 0.00368465204, -0.0573026277, -0.0150614614, -0.0143331653, 0.0318347923, -0.0565818399, -0.0268193111, 0.00356076658, 0.0334565639, 0.0418957882, -0.0494039953, -0.0273899361, 0.0262937378, 0.00454246439, -0.0485030115, 0.00699764816, 0.0171787757, 0.0224945843, -0.0384119824, -0.0106841773, -0.0116902767, 0.00909994543, 0.0309938733, -0.022509601, -0.02824587, -0.027975576, -0.00268042949, 0.0112472922, -0.00450867787, 0.0198216643, 0.00453495653, 0.0226897988, 0.0068625, -0.00437353, 0.0162928067, 0.012944147, -0.0140403453, -0.00385921774, -0.000504926837, -0.0210079607, 0.00523697352, -0.0194312371, -0.00110182923, -0.010654144, -0.0375710614, 0.0371506028, 0.0244917683, -0.00771843549, 0.0321951881, 0.00918253604, 0.0166982505, 0.0159774628, 0.0269844923, -0.0169385131, 0.00469262851, 0.0187705141, 0.00798122305, 0.00295635615, 0.0147235915, 0.00889722444, 0.0225396343, 0.00303894631, -0.0052069407, -0.000942279818, 0.0211431086, 0.00207226491, -0.0138901807, -0.0103538157, 0.0144007392, 0.000125527818, 0.0171787757, 0.0169685446, 0.0337869264, 0.00363397179, -0.0330961719, 0.0177193657, 0.0235157013, -0.0529478677, 0.00720412377, 0.0253326874, -0.00502674375, 0.0257681627, -0.0179746449, 0.0181548428, 0.0370004401, 0.0173139237, -0.0457399897, -0.0174040217, 0.0100084385, 0.0189807452, 0.00798873138, -0.000855935505, -0.0385321118, -0.0150464447, -0.0518066213, -0.0109694889, 0.0003374, -0.0324354507, 0.0156020522, -0.0201370083, 0.0461003855, -0.00613795826, -0.00316470885, -0.00379164401, 0.00480149779, 0.0185753014, 0.0103613241, -0.0296423975, -0.0118704736, 0.0276301987, 0.00336555322, 0.000268418371, -0.0113223745, 0.00747066503, 0.00372594711, -0.0126062781, 0.0417456254, 0.0163678881, -0.00463256286, -0.0568821691, 0.0158873629, 0.000566869567, -0.00793617405, 0.0152041167, 0.00954293, 0.00110182923, 0.0126288021, -0.0078761084, -0.0112172598, -0.0280957073, -0.0175992344, -0.0123434905, 0.0302130207, -0.0021604863, 0.00146410021, -0.0240412746, 0.00238760957, -0.00132707541, -0.00563490856, 0.0166532, -0.0147461165, 0.00942279864, -0.0108718826, 0.0300478395, 0.00660346728, -0.00250774086, 0.0183650721, -0.00810886268, 0.0109094232, -0.0125462124, 0.0190408099, -0.0301379394, 0.0821097419, -0.0112322764, 0.00581135135, -0.0326757133, -0.00855184626, 0.0102336844, -0.0187555, 0.00179164566, 0.0183800887, 0.0373308, 0.0101210615, 0.0131618846, -0.0588643327, 0.0143556902, 0.00203284668, -0.0153692979, 0.00437353, -0.0210229773, 0.0181398261, 0.0105565377, 0.0116227027, -0.0146710342, -0.015391822, -0.00241576531, 0.0231553074, 0.0086419452, -0.000931486778, -0.0109544722, -0.0198667124, -0.0182599574, -0.0150314281, -0.00302956114, -0.00644579483, -0.0256179981, 0.0125311958, 0.0167432986, -0.0103688324, 0.00067996193, 0.00160769455, 0.0198667124, -0.0149037885, -0.00813138671, 0.000300797488, -0.01196808, 0.00430220179, -0.025753146, 0.00235006842, -0.0404542126, 0.00797371473, 0.0313242339, 0.0140253287, -0.0136198858, -0.00506428489, -0.011787883, 0.0229751095, -0.0144532965, 0.000217151392, 0.00454997271, -0.0185152367, -0.0117503423, -0.0131618846, -0.00385921774, 0.0235006846, -0.00562740024, 0.038832441, 0.025843244, -0.0193411391, 0.0261736065, 0.00939276535, -0.0178244803, 0.0338770263, -0.00693007419, -0.00752697652, -0.00055795355, -0.0387723744, 0.0165631026, 2.5237543e-05, 0.017614251, 0.0165781192, 0.0149638541, -0.0353786647, 0.0215785839, -0.00859689619, -0.00291881501, -0.022104159, -0.0121708019, 0.00367151271, 0.00326419249, -0.00444861222, 0.00882965047, 0.00946033932, -0.020902846, 0.00401689, 0.0164880194, -0.0162027087, -0.00670858193, 0.000547629781, 0.0146259852, -0.0160525441, 0.00997840613, 0.00655466365, 0.0207676981, 0.0236658659, -0.0268493444, -0.0123284739, -0.00561989192, 0.0299277082, -0.0177493989, 0.0166231673, 0.00140872714, -0.0148437228, 0.00380290626, 0.00529328501, 0.0183951054, -0.0206025168, 0.0323753841, 0.00986578222, 0.0190107767, -8.29422133e-05, -0.0158423148, -0.00202533859, -0.0214734692, -0.0108118169, -0.0428868718, 0.0232303888, -0.000675738556, -0.0114650307, 0.0243265871, -0.00116189488, -0.00843922328, -0.0105715543, -0.0281407554, -0.000322383596, 0.00198779744, 0.00638572918, -0.0103388, -0.00138432544, 0.00146691571, 0.0384119824, 0.0160975941, 0.0092125684, 0.0135523118, -0.0255279, -0.00538338348, 0.0216536652, 0.0674537197, 0.0107742753, -0.0100459792, 0.0155419866, 0.0131769013, 0.043007005, 0.00477521913, -0.00204974017, -0.0132820159, -0.0348981395, -0.0085668629, -0.0264589172, 0.0185753014, -0.0349281728, -0.00353073375, -0.0170736611, 0.00612669624, -0.02121819, -0.00713279564, 0.00605536811, 0.00735053374, 0.0115326047, -0.0180497263, 0.00645705732, -0.0188305806, 0.00757953385, 0.0314744, -0.0118854903, -0.0136799514, -0.0138826724, 0.0131168356, 0.0320450217, -0.0105790626, 0.00377099635, 0.018590318, -0.0119981132, -0.00970811, 0.0215485506, -0.00645705732, -0.0160825774, 0.0397334248, -0.00338244671, 0.00545095745, 0.0611468293, -0.00282308552, 0.00674612308, 0.00410698866, -0.00777099328, -0.0126513271, -0.00849928893, 0.00810135435, 0.0124636218, 0.00302393, -0.00598028582, 0.00369966845, -0.00132519833, 0.0235457346, 0.0252275728, -0.0224795677, 0.0147686414, 0.0127414251, 0.0249122269, 0.0245668497, -0.00268230657, -0.0101961438, -0.00947535597, -0.0144232633, 0.0247170143, -0.0430971, -0.015436871, 0.0160975941, -0.00779351778, 0.0199417956, -0.0140929027, -0.00497418642, 0.0128240157, 0.00493289111, 0.0338770263, -0.00254528178, -0.0171487425, 0.00555607257, -0.00278179022, 0.00987329055, -0.0296123642, 0.0130943116, 0.0066147293, 0.005826368, -0.0075194682, -0.0144457882, 0.0415954627, 0.00261848676, 0.000955888478, 0.0190257933, 0.00665977877, -0.0498845205, -0.0514462255, -0.0277052801, 0.0278103948, -0.00891974848, -0.0378713906, 0.00487282546, -0.0258132126, 0.0181998909, 0.00336930738, 0.0011403088, -0.0374209, -0.00728295976, -0.00725292694, -0.0140478536, 0.0074969437, 0.0210229773, 0.00461003836, 0.026534, 0.0266841631, 0.0139577547, -0.0169385131, 0.00672359858, 0.0171337258, 0.00828906, 0.0331562385, 0.00261848676, 0.0183650721, 0.015324248, 0.0217737965, -0.0132519836, -0.0627085343, -0.0099333562, 0.0150013957, -0.034207385, -0.0324354507, 0.00515062921, -0.0149263134, 0.0298526268, 0.0149488384, 0.00827404298, 0.0244917683, -0.00602533529, -0.0339971557, -0.0230201595, 0.0079211574, -0.0379014239, -0.00991083216, 0.0313843, 0.0156320855, -0.00256968359, -0.00798873138, -0.0112998495, -0.00489159627, -0.0218338631, 0.0106241116, -0.0424063466, -0.0474518612, 0.00143876, 0.0720787793, 0.0136123775, -0.015324248, 0.00975315925, -0.0176893324, 0.00108305865, 0.00152510428, 0.0177644156, 0.02121819, 0.0134772295, -0.0238310453, 0.0381717198, -0.0436677262, -0.00276114279, 0.0323453508, -0.0315344632, -0.00584513834, -0.0271196403, -0.00490285829, 0.00284561, -0.01414546, -0.021128092, -0.0145358872, 0.0010154848, -0.00824401, -0.00346316, -0.0278554447, -0.0248671789, -0.0144157559, 0.0362796523, 0.0191609412, 0.0192510393, 0.0381416865, -0.00478272699, 0.0306935459, -0.014213034, -0.03264568, -0.0066147293, -0.00735053374, 0.0130943116, -0.00122102199, -0.00360957, -0.0102712261, 0.00395307038, 0.00632190937, -0.00401689, -0.028200822, 0.0189957619, 0.0255879667, -0.0090924371, 0.0108418493, 0.0137325088, -0.0195964184, 0.00772594381, 0.0154518876, 0.0188606139, -0.00075128983, 0.000847488758, -0.011720309, -0.0143481819, -0.0114950631, 0.0203322209, 0.0109694889, 0.0223894697, -0.0180347115, 0.0177343823, -0.0213233046, 0.0254678354, -0.0139127057, -0.0141379517, 0.00774096046, 0.00330736465, 0.00367338979, 0.0149263134, 0.0141304433, 0.00166588323, 0.00143031322, 0.048172649, -0.00894227345, 0.00309525779, -0.0283660013, -0.0150013957, 0.0243566204, 0.00951289665, 0.0178995635, -0.00903988, -0.00896479748, 0.00988830719, -0.00162177254, -0.00775597664, -0.0100309635, 0.00296198716, 0.000862974441, 0.0421060175, 0.00302580697, -0.00530830165, -0.0253777355, 0.00859689619, 0.0121182445, 0.023575766, -0.000615672907, 0.00126137864, 0.00140966568, -0.00900984742, -0.00267104432, 0.01305677, 0.000643828651, 0.0106166033, 0.00235569966, 0.0309338085, 0.0123585071, 0.00788361579, 0.011652736, -0.00824401, -0.00873204321, 0.0144608049, -0.00752697652, 0.0137325088, 0.00129610405, -0.017614251, 0.0021923962, -0.0112698171, -0.0106691606, -0.00358516839, 0.0231853407, 0.0101285698, -0.00728295976, 0.0132294586, 0.0123585071, 0.0221341904, -0.00720787793, -0.00861942, 0.015099002, 0.00778600946, 0.0227949135, 0.0219690111, 0.00244204397, 0.0254077688, -0.0251675062, 0.0043434971, -0.0295222662, 0.0168484133, 0.0229901262, -0.00583012169, -0.0280957073, 0.0120807029, 0.0138676567, -0.0079211574, -0.0228549782, 0.0014838092, 0.0041783168, -0.00721914, 0.00333552039, -0.0120506706, -0.00204974017, 0.0282608867, 0.0861341357, -0.0138826724, 0.00733927125, -0.00447864505, -0.0177794322, -0.00873204321, 0.0178545136, 0.00768464897, 0.00836414099, -0.000787423109, 0.0252125561, -0.011630211, 0.00839417428, -0.00157860026, 0.014055362, 0.00723791076, 0.0229450781, -0.0011403088, -0.00336930738, -0.0161426421, 0.0104889637, 0.0207827147, 0.025663048, -0.00516189169, -0.00118723512, 0.00925011, 0.00306522497, -0.00927263405, 0.00352885691, 0.00905489642, -0.000520881789, -0.00331675, -0.00743312389, -0.0102787344, -0.0170135945, 0.0226747822, 0.0109694889, -0.000895353558, -0.0240863245, 0.0247620624, 0.00407320168, 0.0149788707, -0.02121819, 0.0128465407, 0.00349319284, -0.0150389364, -0.0252876375, 0.0264288858, -0.0280806907, -0.013725, -0.0252425876, 0.0282608867, -0.0131919179, 0.0100384718, 8.60510772e-05, 0.00316470885, 0.00963302795, -0.00277240505, 0.0154218553, -0.00966306124, -0.0103988657, -0.0027123394, 0.0195063185, 0.0063519422, 0.0191759579, -0.00605161395, -0.0458000563, -0.0224795677, 0.00592772849, -0.00570248254, -0.00311027421, 0.00638197502, 0.0534283929, -0.00449741539, 0.00649835216, -0.0227949135, -0.0266991798, -0.0110746035, -0.00561989192, -0.00262036384, -0.00940027367, 0.0127414251, -0.00768464897, -0.0353486352, -0.00474894047, 0.0145133622, -0.0302580707, 0.00767714065, 0.00994086452, 0.00689253304, 0.0107442429, -0.00530830165, -0.0552003309, -0.000564523216, 0.000973251183, 0.00276301987, 0.0231252741, 0.0189356953, -0.00150633382, 0.00389675889, -0.0133420816, -0.000507273187, 0.00742561556, 0.00442984141, -0.0132444752, -0.0267141964, 0.0173589718, -0.00391928339, 0.0265490171, 0.0255128834, 0.033666797, 0.00511684222, 0.00599905662, 0.00783856679, 0.0267141964, 0.0109619806, 0.00364898797, 0.0107817836, -0.0147461165, 0.0173439551, -0.00691130338, 0.00523697352, 0.00160769455, -0.00367338979, -0.018905662, -0.0148812644, -0.00432472676, -0.0215785839, 0.00306147104, 0.00803378, -0.0409948044, 0.0121557852, 0.00744063221, -0.0109469639, -0.0101210615, 0.028200822, -0.0043209726, 0.00662223762, -0.0246719643, 0.00473767798, -0.00872453488, 0.0456198603, 0.0174791031, -0.0120807029, 0.0107292263, 0.00208352716, 0.00652838498, -0.0354387313, 0.0103538157, -0.0100384718, -0.0432472676, -0.00433598878, 0.00528202299, 0.00305771688, 0.0184401534, -0.0249873102, 0.0116076861, 0.0134772295, -0.00495541608, 0.00322289742, 0.0179145802, 0.00696010701, 0.0262486879, 0.00885968283, -0.0279905926, 0.00475269416, -0.0115250964, -0.0161126107, -0.0264889505, 0.000901923224, -0.00486531761, -0.000165884427, 0.0285161659, -0.00944532268, 0.0139952963, 0.0169084799, 0.0251825228, 0.0123359822, 0.00603284361, 0.0189206786, -0.0429169051, 0.0168183818, -0.0157672316, -0.00172125618, -0.0145283788, 0.0151740843, -0.0136874598, 0.00554105593, 0.0345677808, 0.0145358872, 0.000527920725, -0.00774096046, 0.00744438637, -0.00713279564, -0.00579633517, 0.00380666042, -0.00612294208, -0.0294321664, -0.0227348469, 0.0101060448, -0.0187404826, 0.0151140187, -0.0184101202, 0.00956545398, 0.0136349024, -0.0158122815, -0.00396433286, -0.037511, 0.00907742139, 0.000709525484, 0.0158122815, -0.0227949135, -0.0246419311, -0.0169835612, -0.00607413845, -0.00850679725, -0.00849928893, 0.015436871, -0.000752697641, -0.0177794322, 0.0246419311, 0.0178695302, 0.00920506, -0.013875165, -0.0226147156, -0.00394931622, 0.00377099635, -0.00789112411, 0.0125687364, 0.022329405, -0.00595025299, 0.0194312371, 0.0360994525, -0.00759079633, -0.00145753042, -0.0184101202, 0.0189657286, -0.0237859972, -0.044748906, 0.00882214215, 0.00793617405, -0.00561989192, -0.00737305824, 0.00813889503, 0.0275701322, 0.000101830046, -0.00512059638, 0.00465884199, -0.0153167397, 0.0151365427, -0.0373308, -0.0135448035, 0.00448990706, -0.0235006846, 0.00227498636, 0.031624563, 0.0134997545, 0.00289816759, -0.0213683546, -0.0458601229, 0.0188305806, 0.0207226481, -0.00313092186, 0.0365199149, 0.0100534875, -0.00693758251, -0.016728282, -0.00630689319, 0.00177944486, 0.0144532965, -0.00915250275, 0.0117052933, -0.00755700935, -0.00218676496, -0.00956545398, -0.0323753841, 0.0143556902, 0.00201032218, -0.00655841781, -0.000780853443, -0.00955794659, 0.0216386504, 0.0195513684, 0.0190558266, -0.000711871777, 0.0253326874, -0.0208577961, 0.0171036925, 0.00476395665, -0.00885217451, -0.029041741, 0.00557108875, -0.0188455973, -0.0303031188, 0.0365799777, 0.0412951335, 0.00931768399, 0.0129816877, -0.033846993, -0.00465133367, -0.00888971612, 0.00415203767, -0.0241914392, 0.0103988657, -0.00806381274, 0.0133045409, 0.0218188465, -0.0230652094, 0.00234256033, 0.0152641824, 0.00741059938, -0.0112322764, -0.018590318, 0.0180947762, 0.0015767233, 0.0213983878, 0.0098132249, -0.0110595869, 0.0062318109, -0.00346316, -0.0294021349, -0.0241914392, -0.0212332066, -0.00150914944, 0.00245893747, -0.00403941469, -0.00506428489, -0.0119155226, -0.00307085621, -0.0236958973, -0.000334115175, -0.00517315371, 0.00113749318, 0.0277803615, -0.0212031733, -0.00035147788, -0.0261435732, -0.0241013411, 0.00489910459, 0.0101135531, -0.00536085898, 0.0238160286, -0.00410698866, -0.0132444752, 0.00222430611, 0.00581135135, 0.00955043826, 0.0302280374, 0.00515813753, 0.0227348469, -0.0190257933, 0.00114593992, -0.0162177254, 0.00597653212, 0.000978882308, -0.0100084385, 0.011630211, -5.84525551e-05, -0.0159624461, -0.0148587395, -0.00695259869, -0.00283247069, 0.00570999039, 0.0101135531, 0.0233805533, -0.0124636218, 0.0039605787, 0.020016877, 0.0313843, 0.0218789112, -0.0139577547, 0.000897230639, -0.0111346692, -0.0164880194, -0.000809009187, -0.00979820918, -0.0276602302, -0.0310839731, -0.00661848346, -0.015053953, -0.00622430257, -0.0218789112, 0.0233655367, 0.0127414251, -0.0274950508, -0.0221642237, -0.025753146, 0.0261135399, 0.0100159468, 0.00673861476, -0.012966672, 0.0142430663, 0.0302881021, 0.00721914, -0.00219051912, 0.0437277928, -0.00237071607, 0.00736930408, 0.00718535297, -0.00914499443, 0.0181698576, 0.00443359558, 0.0267442297, 0.0173439551, -0.0159173962, 0.019881729, -0.00230877334, -0.0269394424, 0.0241614059, -0.024596883, 0.0160074942, 0.015346773, -0.00854433794, -0.0254678354, 0.00994837284, 0.0119830966, 0.0183800887, 0.0228850115, -0.0188756306, 0.0198216643, 3.32883355e-05, -0.0221492071, -0.00773345213, -0.0175692011, 0.0185302515, -0.0187555, 0.00849178061, 0.0169535298, -0.0085668629, 0.010766767, 0.0121632935, 0.013101819, 0.00132144429, -0.0134171639, 0.0298526268, -0.00208728132, 0.0102261761, 0.0101586031, -0.0264439, 0.004703891, 0.00607038429, -0.0105940783, -0.0127939833, 0.0117503423, -0.00291130692, 0.0164429713, 0.0294922329, -0.0149713624, 0.00360393897, 0.0153768053, -0.00973814353, -0.0109469639, -0.00539464597, -0.00903988, -0.00111215306, 0.00900984742, -0.00543594128, 0.0204974022, 0.00748943537, 0.00697512319, -0.00456498936, 0.00538338348, -0.0163678881, 0.0100234551, 0.0110971285, 0.0105114887, -3.63678737e-05, 0.0113599151, -0.00365837337, 0.0188756306, 0.00634067971, -0.0186503828, -0.0196715, -0.00109713664, 0.0270295423, -0.000788361649, -0.00810135435, 0.00939276535, -0.0204373375, 0.00263725733, -0.011472539, 0.014190509, -0.0125161791, 0.00149319449, -0.00538338348, 0.0228850115, -0.0168934632, 0.0251074415, 0.0112172598, 0.0142655913, -0.000377756602, 0.0114950631, -0.00988830719, 0.00865696184, -0.00097043562, -0.02121819, -0.00404316885, -0.0146259852, 0.0156921502, -0.00302956114, 0.00307461037, -0.0144683132, -0.0105790626, 0.000870951917, 0.0285462, 0.0092125684, 0.00925761834, 0.0136198858, 0.0112472922, 0.000870951917, -0.011810408, -0.0200469103, -0.00997840613, 0.0020891584, 0.0102562094, -0.0146635259, 0.0137850661, -0.0173439551, 0.0117953913, 0.0130492616, -0.00277052796, -0.00833410863, 0.00649835216, -0.0042008413, 0.0118629653, 0.00479023531, -0.00516564585, 0.023305472, 0.00721914, -0.0110295545, 0.00400938187, 0.0136499181, -0.00418957882, -0.0145133622, -0.0154819209, 0.000738619769, 0.0261585899, 0.00639323751, -0.00670858193, -0.0156621169, -0.00664851628, 0.00739182858, -0.01850022, 0.0202120896, 0.00803378, 0.00453871069, 0.00727545144, -0.00237071607, 0.014213034, -0.00438854657, 0.0172238238, -0.000259267748, -0.00343312719, 0.000943218358, -0.00445236592, 0.00109056686, 0.00228812569, -0.000183247146, 0.0226147156, 0.0316545963, 0.00421585748, 0.00397559488, 0.00282496237, 0.0120131299, -0.00313843018, -0.0100685041, 0.0115401121, -0.00809384603, 0.00740684522, -0.00403941469, 0.00877709314, -0.00866446923, 0.0109094232, 0.0275250822, -0.0139802797, 0.037450932, -0.0046062842, 0.0246719643, 0.000979820848, -0.0164880194, 0.00755700935, 0.00248709321, -0.00891974848, 0.00424964447, -0.0024495523, -0.0196865164, 0.0186053347, 0.0282759033, -0.0162027087, -0.00625058124, -0.0055861054, 0.016412938, -0.000192163148, -0.010676669, -0.0180497263, -0.0184401534, -0.0227498636, -0.01063162, -0.0157822482, -0.0149037885, 0.0249722935, -0.0143331653, 0.0116602434, -0.00372219319, 0.00478648115, -0.028155772, 0.0157372, 0.0087620765, -0.0369103402, -0.0015842315, -0.0123960478, -0.00512810471, 0.000642420899, 0.00843171496, -0.00927263405, -0.00508305524, -0.00621679472, 0.00491412077, 0.00495917024, -0.00602158112, 0.0079211574, 0.0109394556, 0.0190708432, -0.0138826724, 0.0273148529, -0.00456498936, -0.025753146, -0.0243866537, -0.0176743176, 0.00773345213, -0.00733927125, 0.0092876507, 0.00694884453, -0.0116602434, -0.00770341931, -0.00127639505, -0.00351571734, -0.0274950508, -0.0189507119, 0.00838666596, 0.0087620765, -0.0099333562, 0.0152041167, -0.00248897029, -0.0114124734, -0.0246719643, -0.0160074942, -0.0253176708, -0.0128690647, 0.0166231673, 0.0241163578, 0.00115157105, 0.00807132106, -0.0359793231, 0.0159474295, -0.0131243439, 0.00297137257, -0.00928014237, -0.014055362, 0.00474518631, -0.00317409402, -0.0159624461, 0.00984325819, 0.0286062639, 0.0234706514, -0.0179145802, 0.0259934086, 0.0182299241, -0.0201219916, -0.00507179322, -0.00417456264, -0.0452594645, -0.00494790776, 0.00432472676, 0.00970060192, 0.00829656795, 0.0275551155, -0.019971827, 0.00943781529, 0.0239511766, -0.00347629935, -0.0142655913, 0.00626184372, 0.000188409045, 0.00624307338, -0.0299727581, 0.00985076651, -0.00667479495, -0.00189300638, 0.00691505754, 0.0106916856, -0.000354528107, -0.0123359822, 0.00268793781, 0.00640449952, -0.000694509072, -0.0129591636, 3.08833623e-05, -0.0170886759, 0.0083566336, 0.0148287071, -0.00417080848, -0.0174640864, 0.00360957, -0.00805630535, -0.0108568659, -0.0179746449, -0.0197465811, 0.0062318109, 0.00903237145, 0.0216386504, 0.0222543217, -0.00439230027, -0.0145058539, -0.00509431772, -0.0131844096, -0.0251825228, 0.00869450253, 0.0102862418, 0.0133345742, 0.00121445232, -0.0290267244, -0.00244767522, 0.0107592596, 0.00110464485, 0.0124410968, 0.00487657962, -0.0210530087, 0.0109169316, 0.0121182445, -0.0172688738, 0.0239361599, -0.00158892409, -0.0092876507, -1.74067191e-05, 0.00822148565, 0.0125236874, 0.0020309696, 0.0198967457, -0.002040355, 0.00294321682, -0.0166682173, -0.0048240223, -0.000270530058, -0.0265940651, -0.00822148565, 0.00563866273, 0.0156471, 0.000419755641, 0.0240412746, 0.00482026814, 0.00581510551, 0.000246128388, -0.00992584787, 0.00251149479, 0.0251524895, -0.00869450253, -0.00979070086, -0.000385030173, -0.0201219916, 0.0128165074, 0.00770341931, -0.00955794659, 0.00218676496, -0.0119605716, -0.00647582766, -0.0201970749, -0.0034481436, -0.00394556206, -0.000877521583, 0.0192059912, -0.0140703777, 0.0239361599, -0.0138226068, -0.0187104493, 0.0124486051, -0.0232303888, -0.00985827483, 0.00530079333, -0.0136273941, 0.00239887182, -0.0233655367, -0.0246119, 0.0109920138, -0.0145734278, -0.00797371473, 0.00454997271, 0.00209854357, 0.0126363104, -0.00322852866, -0.00729046809, 0.028951643, 0.0216836985, 0.0140253287, -0.00235006842, 0.00693007419, -0.00966306124, 0.00435100542, 0.0283059366, -0.00416705431, 0.000519474, -0.0242364891, -0.011585162, -0.0100685041, 0.000175856258, 0.00769591099, -0.0055110231, 0.00209103525, 0.0041633, 0.00259971642, 0.00846174825, -0.0254678354, -0.00398685737, 0.00156452239, -0.00517690787, -0.008116371, -0.0160225108, 0.0093327, 0.00554105593, -0.0135372952, -0.0216536652, 0.00529703917, -0.00932519138, -0.00208728132, -0.0189657286, -0.0215785839, -0.0238760952, -0.0123509988, -0.0089723058, 0.00298075774, -0.000282730878, -0.0106015867, -0.00959548727, -0.0197465811, -0.0173139237, -0.00340309436, 0.0102937501, 0.0103763407, -0.0189507119, 0.00621679472, 0.030378202, 0.0228699949, 0.00144345255, -0.0257381294, 0.0306935459, -0.00445236592, 0.0108944066, 0.00290192151, 0.00150633382, -0.0150389364, 0.0208427794, 0.0104889637, -0.0230802242, 0.00166025199, 0.0144382799, 0.0138150994, 0.00752697652, -0.00253777369, -0.00452369405, 0.0107742753, -0.0244016685, -0.010518997, 0.0373007655, 0.000868605566, -0.018680416, 0.0144082475, -0.0174190383, 0.00732050091, -0.00280806911, 0.0173589718, 0.016503036, -0.00495541608, -0.0178545136, -0.0096930936, -0.00458000554, 0.0146184769, -0.0228399616, 0.00702017266, -0.0295522977, -0.025002325, 0.0206325501, 0.0182749741, 0.0256930813, 0.00408446416, -0.00913748704, 0.000442045624, 0.00670858193, 0.0031534466, 0.0115326047, -0.0134321805, -0.0184701867, 0.0197766144, 0.00632941769, 0.0106916856, 0.0105039803, 0.0114500141, 0.017839497, 0.00992584787, -0.00277052796, 0.000713279587, 0.0121482769, -0.00937775, -0.0143556902, -0.0024326588, 0.00427216897, -0.0140253287, 0.0132519836, -0.0121257529, 0.0101435864, 0.0335766971, -0.00624682754, 0.0262637045, 0.00717784511, 0.00100516109, 0.00376724242, -0.0107067013, 0.00679492624, -0.00211919122, -0.0211431086, -0.00870951917, 0.00377475051, -0.000953072915, 0.0140853943, -0.0288765598, 0.015211625, -0.0108868983, 0.00901735574, 0.0122083426, 0.0136424098, 0.00789863244, 0.0147010675, 0.00269732298, 0.00774846831, 0.0237259306, -0.011810408, 0.00748943537, 0.025753146, -0.00776348496, 0.024371637, -0.0156621169, -0.0230802242, 0.0166682173, -0.0024232734, 0.0117953913, 0.00261660968, -0.0331862718, 0.00738807442, -0.0102036521, 0.000359220721, 0.00261848676, 0.00696761534, 0.0147461165, -0.00527451467, -0.00632190937, -0.0149563458, -0.0163378567, 0.00797371473, 0.000816986663, 0.00657343445, 0.0079211574, -0.00379352109, 0.0106841773, 0.0133721149, 0.00891974848, 0.0305283647, 0.00619802391, 0.0123810312, -0.000391599868, -0.00816892833, -0.000793523504, -0.00140121893, -0.0030877497, -0.00637071254, -0.00493289111, 0.0113223745, -0.0251675062, -0.0144082475, -0.0285161659, 0.0043434971, -0.00318347942, 0.0180497263, -0.00548474444, 0.00636695884, -0.00578882685, -0.00742936973, -0.00207038783, 0.00232378975, 0.0137850661, -0.00869450253, -0.0152641824, 0.01063162, -0.00454621855, 0.0058939415, 0.0138676567, -0.0103763407, 0.00853683054, -0.0022092897, 0.00799624, 0.0283209532, 0.0194312371, 0.00634818804, 0.0084467316, 0.00905489642, 0.0189356953, 0.019130908, -0.0192960892, -0.0175091363, 0.0148587395, -0.008116371, -0.0174040217, -0.00304457755, 0.0171337258, 0.000525105163, 0.0124410968, 0.00379352109, 0.00346503709, -0.00287939701, 0.0200018603, 0.009452831, 0.0072792056, -0.00495541608, -0.011472539, 0.0263237692, 0.0113373911, -0.0180947762, 0.00736930408, 0.00416705431, -0.0244016685, -0.00213796156, -0.0119830966, -0.0130492616, -0.00870951917, 0.00754950102, -0.00758704217, -0.010518997, -0.00673861476, 0.0155419866, -0.00270670815, 0.00236883899, 0.0275851488, 0.00858938787, -0.00283810194, -0.00851430558, -0.0123134581, -0.0222693384, 0.00122383761, 0.00450116955, 0.029041741, 0.00783105846, 0.00394556206, -0.0223444216, 0.00237259315, 0.0179896615, 0.00264851958, -0.000580947439, 0.0228699949, -0.0157071669, -0.00167339144, -0.0019690271, -0.00565367891, -0.01167526, -0.00253026537, -0.0172688738, 0.0146259852, 0.0309938733, -0.00899483077, 0.00193711708, -0.0107067013, -0.0232904553, 0.017704349, 0.0101285698, -0.0037109307, -0.00646831933, 0.0107817836, -0.0149638541, 0.00333552039, 0.0181398261, -0.0131168356, 0.00998591352, 0.00696386117, 0.00105865707, 0.00169122336, 0.00638572918, -0.01058657, 0.017614251, -0.0124786384, -0.00187235884, 0.000663537707, 0.0336968265, 0.000294697093, -0.0364598483, 0.00741435355, 0.00202346151, -0.0239061285, -0.0157672316, -0.00469262851, -0.00521444902, 0.0291919038, 0.00977568422, -0.0129741803, -4.12071458e-05, -0.020106975, 0.0236808807, -0.00891974848, 0.0154969366, 0.00845424, 0.0160074942, 0.00872453488, 0.0108193252, 0.00862692855, 0.00198779744, 0.0051694, 0.0132895242, 0.0181548428, -0.0123434905, 0.0339971557, 0.0363697484, -0.0106391283, -0.030558398, 0.00520318653, 0.0133796232, 0.00248709321, 0.000173744571, -0.0193111058, 0.0245668497, 0.00144439109, -0.00524448184, -0.0109920138, 0.00323979091, 0.032465484, -0.0116151944, -0.016412938, -0.00183294073, 0.0433073305, 0.0318347923, -0.00529703917, 0.00347254518, -0.023170324, -0.0190858599, -0.0169385131, 0.0144157559, 0.012966672, 0.0197615977, 0.0144983456, -0.0145734278, 0.014303132, 0.0383218825, 0.00421210332, 0.0124035561, -0.00942279864, -0.014303132, 0.00336179929, 0.00722289411, -0.010541521, 0.0113298828, 0.012673852, -0.00825151801, 0.00285687228, 0.00943030696, 0.00261285575, -0.0136424098, 0.0230802242, 0.0143556902, 0.0136048691, -0.0114274891, 0.00773345213, 0.00717784511, 0.00384795549, -0.00631440105, -1.09396906e-05, -0.00792866573, -0.00404692302, 0.0161126107, 0.0106691606, -0.0273749195, 0.0013636779, 0.0104138814, 0.00309713488, 0.00550726894, -0.000930079, 0.00250586378, 0.00669732, -0.000367667468, 0.00816142, 0.00764710782, -0.0159023795, 0.00748943537, 0.00597653212, -0.00528953131, -0.0115476204, 0.00532331783, -0.00388925057, 0.00526700635, 0.0176743176, -0.0106466357, -0.00324542192, -0.00852932222, 0.00337118446, -0.00202909275, -0.0280056074, 0.00235945382, -0.0127113927, 0.00415579183, -0.00601031864, 0.00720036961, 0.00445236592, -0.0138000827, 0.0242364891, -0.0194612704, 0.00237071607, -0.00934771635, 0.00763209118, 0.00363772572, 0.0266240984, -0.00533082616, 0.00299202, 0.00819896068, 0.000273110985, 0.00950538833, -0.000440168573, -0.0125837531, -0.0108944066, -0.00616048276, -0.00267479848, -0.0379614905, -0.0120206373, -0.00557484291, -0.00400938187, 0.00354387332, 0.0265189838, -0.011855457, 0.00497043226, 0.0120356539, -0.01058657, -0.0170886759, 0.0127489334, 0.018725466, 0.0137024755, 0.0392529, -0.00581885967, 0.00243078172, 0.0169535298, 0.00766963232, 0.00276114279, 0.0256029814, 0.00560487574, -0.00286813476, 0.0245368164, 0.0281407554, -0.00382355391, -0.000564992486, -0.000681838952, -0.00743312389, -0.0114650307, 0.0165180527, -0.00443359558, 0.0118629653, 0.0116827684, -0.00442608725, -0.00366025046, -0.0213383213, -0.0157672316, 0.000346785266, -0.00333364354, 0.00676489342, -0.0102336844, -0.0163678881, -0.00688877888, 0.0168934632, -0.00314406119, -0.0104889637, -0.0262186546, 0.0271646883, 0.00461754669, 0.0311740711, -0.00891224, 0.0107142096, 0.000321914325, 0.00247770804, 0.0054884986, 0.0186053347, 0.013987788, 0.0145959519, -0.0127489334, 0.0311740711, 0.00765086198, -0.0107292263, 0.00708023831, 0.0204073042, 0.00310276612, 0.00570999039, 0.0120807029, 0.0133195575, 0.0124861468, 0.00328108598, -0.00994837284, 0.0270145256, 0.00558235124, -0.00255654403, -0.00919755269, -0.0367001109, 0.00346128293, -0.00289441342, 0.0110746035, -0.0127489334, -0.0194462538, 0.00605161395, 0.0192510393, 0.00183575635, -0.0111421775, -0.00133833766, 0.0121407686, -0.0123359822, -0.00427592313, -0.0118404403, 0.00159361667, -0.0164279547, 0.0171937924, -0.00590520399, -0.0179896615, -0.0111196525, 0.00419708714, 0.0112773255, 0.00854433794, 0.022599699, -6.65766711e-05, -0.0106616523, -0.0036170783, 0.000727826729, -0.00956545398, 0.00376348826, 0.00294321682, 0.0287864618, -0.00393054588, -0.00167339144, 0.0162177254, 0.00659595896, -0.00797371473, 0.00732050091, -0.00183200219, 0.0126363104, -0.0315945297, 0.0113749318, -0.0117578506, 0.000653213938, 0.0133345742, 0.0104439147, 0.0126062781, 0.0171637591, 0.0296874456, -0.00744438637, -0.000871421129, 0.0112022432, 0.00181510882, -0.00289629051, 0.0203772709, 0.0104589313, -0.0265189838, -0.0262787212, -0.0155419866, 0.00922007672, 0.00447489088, -0.0130042126, 0.0113073578, -0.0378413573, -0.0327357762, -0.00597653212, 0.0170736611, 0.000615203637, 0.0108193252, -0.000170694373, -0.00777850114, -0.0265940651, 0.0138676567, 0.00346879126, 0.0300628562, -0.000454715715, 0.00931768399, -0.00822148565, 0.0158573315, -0.00545471162, -0.0111046368, 0.00639699167, 0.0116602434, 0.017524153, 0.0126963761, 0.0136574265, -0.018680416, 0.0033768157, 0.00438103825, -0.0128014907, -0.0885367617, 0.00453120237, 0.0228399616, 0.0226297323, 0.00181229319, 0.0242515057, -0.00947535597, -0.0126363104, 0.00947535597, 0.017434055, -0.00849928893, 0.00973814353, -0.0064720735, 0.0302580707, 0.0219690111, 0.00497418642, 0.0174640864, 0.00766587816, 0.0207226481, 0.00650586048, 0.00797371473, -0.0189206786, 0.0075194682, -0.00491787493, 0.00733176293, -0.0142881162, -0.0158573315, 0.00644204067, -0.00794368144, -0.0316846296, -0.0152491666, 0.0235157013, 0.00646081101, -0.00717784511, -0.00477897329, -0.0327357762, -0.0263538025, -0.0339070596, 0.0210530087, -0.0207977314, -0.0161426421, 0.00263162609, -0.00448239874, -0.0126588354, -0.00134490745, 0.0127339177, 0.00783856679, 0.0130417533, 0.00730548427, 0.0230051428, -0.0175842177, 0.0103237834, -0.0188906454, -0.0117728673, -0.0111121451, -0.00656217197, -0.0076395995, 0.0140703777, 0.0234706514, 0.00370154553, -0.00171750213, -0.0132444752, 0.00215485506, -0.000836695719, 0.0112623088, 0.00365837337, -0.00499295676, 0.0226297323, 0.015211625, 0.0221341904, -0.0147761488, 0.0132069346, 0.000235687272, -0.00421210332, 0.00430595595, 0.0254978668, -0.0070164185, -0.0114950631, -0.0121858185, -0.00294884783, 0.0170586444, -0.00527076051, 0.00465884199, 0.00296574133, 0.00457625138, -0.00920506, -0.00662974594, -0.00306522497, 0.0234105866, -0.00469262851, 0.00661097514, 0.00376911927, -0.0291018058, 0.0143707059, 0.0030877497, 0.00928014237, -0.0185753014, 0.0107742753, -0.00476771081, 0.0109995212, 0.0089723058, 0.0083566336, 0.000324729917, 0.00356264366, 0.0383819491, -0.00281745428, -0.0179596283, 0.0117953913, -0.00951289665, 0.0229000282, 0.00577381, -0.0240112431, 0.00810886268, 0.00528577715, 0.0225696675, 0.00736555, 0.00149788707, -0.00100046839, -0.00405067718, 0.0263237692, -0.0137174921, -0.0206175335, 0.00233505201, -0.0229300614, -0.00121539086, 0.00545846578, -0.013725, 0.00115814072, -0.0100009302, 0.00445612, 0.011697785, 0.00855935458, 0.0131393606, -0.0269244257, -0.0142655913, -0.0310239065, 0.0144532965, 0.0113148661, 0.00579633517, -0.0120581789, -0.0022318142, -0.00971561857, 0.0102787344, -0.0135297868, -5.71547525e-06, 0.0114500141, -0.00987329055, -0.00424964447, -0.0138676567, -0.0056311544, -0.00626559788, -0.0175091363, 0.00438479241, 0.0100009302, -0.016503036, -0.0103388, 0.00833410863, 0.000883622, 0.0361895524, -0.0123284739, -0.000587517105, 0.0125687364, -0.0238610785, -0.0121032279, 0.0111722108, 0.00212106807, 0.00507930154, -0.00807882939, -0.0120882113, -0.0161126107, 0.0193711706, 0.00670482777, 0.0027123394, -0.0207226481, 0.00934771635, -0.00272923289, -0.00210792874, -0.00679492624, -0.015189101, 0.017614251, 0.00112716947, 0.00932519138, 0.00248333905, 0.00686625438, 0.0158723481, -0.014190509, -0.00671609025, 0.00598779414, 0.0120581789, 0.0103162751, 0.0110070296, 0.00196715, 0.00640449952, -0.00284373295, 0.00171093247, 0.0124486051, 0.0026992, 0.0176292676, -0.00782355, -0.00353261083, -0.01276395, -0.00264851958, 0.00967807788, 0.0140178204, 0.00189300638, -0.010609095, -0.0221492071, 0.00659220479, 0.00550351478, -0.0196414664, 0.0133195575, -0.00437728409, -0.000441811, 0.00160863309, -0.000916939636, -0.0158272982, -0.033006072, 0.0176442843, -0.00110182923, 0.0177343823, 0.0227798969, -0.0101135531, 0.0324054174, -0.000998591422, 0.034207385, -0.0131543772, 0.0266691484, 0.00708399247, -0.025708098, 0.0158873629, -0.00978319254, 0.0127564417, -0.0157672316, -0.00018817441, -0.00867948588, 0.0303932168, -0.0153542813, 0.013987788, 0.00495917024, 0.0229751095, 0.00611543376, 0.01305677, -0.00934020802, -0.0104589313, -0.00698263152, 0.0245818663, 0.0295673143, -0.0154518876, -0.0022092897, -0.00795869809, -0.0145058539, -0.0148437228, -0.0100309635, 0.0237409472, 0.00907742139, -0.0275100674, -0.0195213351, 0.0110821119, -0.0106166033, 0.0332463346, -0.00909994543, 0.00483153062, 0.00910745375, 0.0108043086, 0.0120506706, -0.0354987979, -0.00400562771, -0.00625808956, -0.00101923896, 0.000981697929, -0.00218676496, -0.00283434778, -0.00932519138, 0.00814640336, -0.0112773255, -0.0184401534, 0.0169084799, 0.00650210632, 0.00247770804, -0.00174190383, -0.0250323582, -0.0106841773, 0.0029037986, -0.0138526401, -0.00984325819, -0.0188756306, 0.00512435054, -0.0191008765, 0.00352885691, -0.00616799109, 0.0206625834, -0.0174190383, 0.000301266758, -0.0111496858, -0.0523171797, 0.00192210067, 0.0160975941, -0.00521444902, 0.0053458428, -0.0104439147, 0.00414077565, -0.00617549941, 0.00159830938, -0.0011403088, -0.0149188051, -0.00552228559, -0.00228249468, -0.0320750549, 0.00515438337, -0.00843171496, -0.0155570023, 0.03486811, 0.0122083426, -0.012808999, -0.00592022, -0.011517588, -0.00799624, -0.00778600946, -0.00408821832, -0.00694509037, 0.00690379553, 0.00620177807, 1.58229577e-05, -0.00194837945, 0.00873955153, 0.0115926703, 0.000674330746, 0.00430971, 0.00424213614, -0.0130792949, -0.00694884453, 0.0177193657, 0.00254903594, -0.00236508483, 0.00736930408, 0.00395682454, -0.00970811, -0.0202421229, 0.0101961438, -0.00574002322, 0.0113599151, 0.00397559488, -0.0165931359, -0.0183350388, -0.00540966261, 0.00517690787, -0.0172538571, 0.00402439851, -0.000422336598, -0.00820646901, -0.0143331653, -0.00057109294, 0.0178845469, 0.0178094637, 0.0330661386, -0.0143406736, -0.0228850115, -0.00695259869, 0.0136874598, 0.0074744192, 0.0245668497, -0.0175692011, -0.015256674, -0.020016877, 0.010564046, -0.0019127155, -0.00961050391, 0.00777850114, -0.00302956114, 0.00713655, 0.00632566353, -0.0145659195, -0.0173739884, 0.0863143355, 0.0451393351, 0.009407782, -0.0181848742, -0.0160225108, -0.0204523522, -0.0137174921, 0.0409647711, -0.0157972649, 0.00399061153, -0.0125236874, -0.0112923421, -0.016503036, -0.00889722444, -0.0156320855, 0.00855184626, 0.0161276255, 0.0119155226, -0.0113298828, -0.00320412684, -0.0207977314, 0.00120225153, -0.00129891967, -0.00308399554, -0.00700140186, 0.00632190937, 0.00641951617, 0.0109995212, -0.0147311, -0.00124542369, -0.016638184, 0.0108118169, 0.0189356953, -0.0187705141, -0.0135898525, 0.00507554738, 0.0193111058, 0.00692256587, 0.0134622129, -0.0186053347, 0.00404692302, 0.0184251368, 0.0169535298, 0.0172088072, -0.00540215429, 0.0117503423, 0.0167583153, 0.00421210332, -0.0172388405, 0.00722664827, -0.0155419866, 0.00817643665, 0.0194762871, -0.0411149375, -0.00051008875, 0.00716282846, -0.000377521967, -0.0112998495, 0.00237447023, 0.0243866537, 0.0192059912, -0.000657437311, -0.00791364908, 0.0247320309, 0.0135297868, 0.00210605166, -0.0212932713, 0.0172088072, -0.00878460053, 0.00727169728, 0.0174941197, -0.00873204321, 0.00813138671, -0.009452831, 0.0142956246, 0.0194462538, 0.0181698576, -0.00459126802, 0.00657343445, -0.021037994, 7.97746907e-05, 0.0250473749, -0.00925761834, -0.00441482523, -0.0109619806, -0.000547629781, -0.00137306319, -0.0287564285, 0.00572500704, 0.00226747827, 0.0127264094, 0.0201670416, -0.0101586031, -0.00273674098, 0.0178845469, -0.0190107767, -0.00147817808, -0.00142468209, 0.00780853396, -0.000440872478, 0.0313242339, -0.0127489334, 0.0157071669, 0.0174941197, -0.0169985779, 0.017704349, 0.0113223745, 0.000225950076, 0.015324248, 0.0085668629, 0.00168183818, -0.00326606957, -0.000139488388, 0.0305283647, 0.00578507269, 0.0265940651, 0.00610417128, -0.021083042, 0.0215635672, 0.00672359858, 0.000686531595, 0.00768464897, -0.0106691606, -0.00814640336, -0.0201370083, 0.0135598201, 0.0254378021, -0.00430971, 0.00195588754, -0.00716282846, 0.0117803747, -0.0101285698, 0.0112247681, -0.00679117208, -0.0100384718, 0.0284260679, -0.0366700776, -0.0022712322, -0.0196414664, 0.00102205458, 0.016232742, -0.0125462124, -0.00580759719, 0.0290567577, 3.41975319e-05, 0.00676489342, 0.0192960892, -0.0130792949, 0.0163979214, -0.0143631976, -0.013267, 0.014122935, -0.00296761841, 0.00613045, -0.0044411039, 0.016638184, -0.00469262851, -0.00345752877, 0.0262937378, -0.00803378, 0.00588643365, 0.00185828097, 0.0193711706, -0.0101886354, 0.00649835216, -0.026534, 0.0276452135, 0.00579258101, 0.0291318391, 0.0135823442, 0.00808633771, 0.00467385817, -0.0165180527, 0.0129066063, -0.0162777901, 0.0138601484, -0.00123416132, 0.00619051559, 0.00337118446, -0.0131844096, 0.0101736188, 0.00425339863, -0.000980759389, 0.0373608321, 0.00357015198, -0.0145433946, 0.00757577969, 4.46972881e-05, 0.0377212279, 0.012899098, -0.00188549818, 0.000755513203, -0.0277202968, 0.000989206135, -0.0166832339, -0.0267292131, -0.00914499443, -0.00447113672, 0.00179446128, -0.000259971624, 0.0121708019, 0.00524448184, 0.00054528343, -0.00397934904, -0.0224044863, 0.0300178081, -0.00162646512, 0.0150614614, 0.0004120128, -0.00695259869, -0.0047264155]
|
27 Mar, 2023
|
Sort an array in descending order based on the sum of its occurrence
27 Mar, 2023
Given an unsorted array of integers which may contain repeated elements, sort the elements in descending order of some of its occurrence. If there exists more than one element whose sum of occurrences are the same then, the one which is greater will come first. Examples:
Input: arr[] = [2, 4, 1, 2, 4, 2, 10] Output: arr[] = [10, 4, 4, 2, 2, 2, 1]Explanation: Here, 2 appears 3 times, 4 appears 2 times, 1 appears 1 time and 10 appears 1 time. Thus, Sum of all occurrences of 2 in given array = 2 * 3 = 6, Sum of all occurrences of 4 = 4 * 2 = 8, Sum of all occurrences of 10 = 10 * 1 = 10, Sum of all occurrences of 1 = 1 * 1 = 1. Therefore sorting the array in descending order based on the above sum = [ 10, 4, 4, 2, 2, 2, 1 ]Input2: arr[] = [2, 3, 2, 3, 2, 1, 1, 9, 6, 9, 1, 2] Output2: [9, 9, 2, 2, 2, 2, 6, 3, 3, 1, 1, 1]
Approach:
Create a map that will map elements to it appearance ie if a occur one time then a will map to a but if a occur m times then a will be map to a*m.
After doing the mapping sort the dictionary in descending order based on their values not keys. In case of tie, sort based on values.
Finally copy the sorted dictionary keys in the final output array and there frequency is obtain based on their key-value pairs i.e. if a is mapped to a*m it means we need to include a, m times in output array.
Below is the implementation of the above approach:
C++
// c++ code for the above approach
#include <iostream>
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;
vector<int> sort_desc(vector<int>& arr) {
unordered_map<int, int> d_sum, d_count;
for (auto x : arr) {
if (d_sum.find(x) == d_sum.end()) {
d_sum[x] = x;
d_count[x] = 1;
}
else {
d_sum[x] += x;
d_count[x] += 1;
}
}
vector<pair<int, int>> l;
for (auto& x : d_sum) {
l.push_back({ x.second, x.first });
}
sort(l.rbegin(), l.rend());
vector<int> ans;
for (auto& x : l) {
ans.insert(ans.end(), d_count[x.second], x.second);
}
return ans;
}
int main() {
vector<int> arr{ 3, 5, 2, 2, 3, 1, 3, 1 };
// Function Call
vector<int> sorted_arr = sort_desc(arr);
for (auto x : sorted_arr) {
cout << x << " ";
}
return 0;
}
// This code is contributed by princekumaras
Python
# Python3 program to sort elements of
# arr[] in descending order of sum
# of its occurrence
def sort_desc(arr):
# to store sum of all
# occurrences of an elements
d_sum = {}
# to store count of
# occurrence of elements
d_count ={}
# to store final result
ans = []
# to store maximum sum of occurrence
mx = 0
# Traverse and calculate sum
# of occurrence and count of
# occurrence of elements of arr[]
for x in arr:
if x not in d_sum:
d_sum[x] = x
d_count[x] = 1
else:
d_sum[x] += x
d_count[x] += 1
# sort d_sum in decreasing order of its value
l = sorted(d_sum.items(),
reverse = True,
key = lambda x:(x[1], x[0]))
# store the final result
for x in l:
ans += [x[0]] * d_count[x[0]]
return ans
# Driver Code
arr = [3, 5, 2, 2, 3, 1, 3, 1]
print(sort_desc(arr))
C#
using System;
using System.Collections.Generic;
using System.Linq;
class GFG
{
static List<int> SortDesc(int[] arr)
{
// to store sum of all
// occurrences of an elements
Dictionary<int, int> d_sum = new Dictionary<int, int>();
// to store count of
// occurrence of elements
Dictionary<int, int> d_count = new Dictionary<int, int>();
// to store final result
List<int> ans = new List<int>();
// to store maximum sum of occurrence
int mx = 0;
// Traverse and calculate sum
// of occurrence and count of
// occurrence of elements of arr[]
for (int i = 0; i < arr.Length; i++)
{
int x = arr[i];
if (d_sum.ContainsKey(x))
{
d_sum[x] += x;
d_count[x]++;
}
else
{
d_sum[x] = x;
d_count[x] = 1;
}
}
// sort d_sum in decreasing order of its value
var l = d_sum.OrderByDescending(d => d.Value).ThenBy(d => d.Key);
// store the final result
foreach (var kvp in l)
{
int x = kvp.Key;
int count = d_count[x];
while (count > 0)
{
ans.Add(x);
count--;
}
}
return ans;
}
// Driver code
static void Main(string[] args)
{
int[] arr = { 3, 5, 2, 2, 3, 1, 3, 1 };
Console.WriteLine(string.Join(" ", SortDesc(arr)));
}
}
// This code is contributed by phasing17
Javascript
// JavaScript program to sort elements of
// arr[] in descending order of sum
// of its occurrence
function sort_desc(arr) {
// to store sum of all
// occurrences of an elements
let d_sum = {};
// to store count of
// occurrence of elements
let d_count = {};
// to store final result
let ans = [];
// to store maximum sum of occurrence
let mx = 0;
// Traverse and calculate sum
// of occurrence and count of
// occurrence of elements of arr[]
for (let i = 0; i < arr.length; i++) {
let x = arr[i];
if (x in d_sum) {
d_sum[x] += x;
d_count[x]++;
} else {
d_sum[x] = x;
d_count[x] = 1;
}
}
// sort d_sum in decreasing order of its value
let l = Object.entries(d_sum).sort(function(a, b) {
return b[1] - a[1] || a[0] - b[0];
});
// store the final result
for (let i = 0; i < l.length; i++) {
let x = l[i][0];
let count = d_count[x];
while (count > 0) {
ans.push(parseInt(x));
count--;
}
}
return ans;
}
// Driver Code
let arr = [3, 5, 2, 2, 3, 1, 3, 1];
console.log(sort_desc(arr).join(' '));
Java
import java.util.*;
import java.util.stream.*;
class GFG {
static List<Integer> sortDesc(int[] arr)
{
// to store sum of all
// occurrences of an elements
Map<Integer, Integer> d_sum = new HashMap<>();
// to store count of
// occurrence of elements
Map<Integer, Integer> d_count = new HashMap<>();
// to store final result
List<Integer> ans = new ArrayList<>();
// to store maximum sum of occurrence
int mx = 0;
// Traverse and calculate sum
// of occurrence and count of
// occurrence of elements of arr[]
for (int i = 0; i < arr.length; i++) {
int x = arr[i];
if (d_sum.containsKey(x)) {
d_sum.put(x, d_sum.get(x) + x);
d_count.put(x, d_count.get(x) + 1);
}
else {
d_sum.put(x, x);
d_count.put(x, 1);
}
}
// sort d_sum in decreasing order of its value
List<Map.Entry<Integer, Integer> > l
= new ArrayList<>(d_sum.entrySet());
Collections.sort(l, (e1, e2) -> {
int cmp
= e2.getValue().compareTo(e1.getValue());
if (cmp == 0) {
cmp = e1.getKey().compareTo(e2.getKey());
}
return cmp;
});
// store the final result
for (Map.Entry<Integer, Integer> e : l) {
int x = e.getKey();
int count = d_count.get(x);
while (count > 0) {
ans.add(x);
count--;
}
}
return ans;
}
// Driver code
public static void main(String[] args)
{
int[] arr = { 3, 5, 2, 2, 3, 1, 3, 1 };
List<Integer> sortedList = sortDesc(arr);
System.out.println(
sortedList.stream()
.map(Object::toString)
.collect(Collectors.joining(" ")));
}
}
Output:
[3, 3, 3, 5, 2, 2, 1, 1]
Time Complexity: O(N*log N). Space Complexity: O(N).
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence
|
https://www.geeksforgeeks.org/sort-an-array-in-descending-order-based-on-the-sum-of-its-occurrence/?ref=ml_lbp
|
Pandas
|
Sort an array in descending order based on the sum of its occurrence
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00692801364, 0.00933310948, -0.0136288786, 0.0205502119, 0.0202963408, -0.00460976781, 0.00659731263, 0.0130409664, -0.0233962424, 0.0175705645, -0.0254405737, 0.0104755303, 0.0139896432, -0.00948008802, 0.00304645533, 0.000816313084, -0.0138961123, 0.0161408689, -0.0181317534, -0.0361833386, -0.0233427957, 0.0119586736, 0.00765622314, 0.0356221497, -0.0228350535, 0.0246255137, -0.00498389406, 0.00776311615, -0.0367178023, 0.00337882619, -0.00636014342, -0.00424232241, -0.00728877774, -0.027137503, -0.0172498859, 0.0416883342, 0.0121925017, 0.0281930733, -0.0112037407, 0.0101815742, -0.010295148, -0.00836439058, 0.0102684246, -0.0142702376, -0.0212450176, -0.00243348978, 0.0200825538, 0.00716852304, 0.00282932865, -0.0227682441, -0.00459306594, -0.0490372404, -0.0175972879, 0.0123127569, -0.0552103221, 0.0146176405, -0.0269638021, 0.00595261343, -0.0112905912, -0.00770967, 0.0424365886, -0.0403254479, -0.0224876497, -0.00777647784, -0.0103886798, -0.0165818036, -0.0385617092, 0.0153926164, 0.0265095066, 0.0261888262, -0.0195614491, 0.0181718394, 0.0209644232, -0.0123194382, -0.0189468134, 0.0157266576, 0.015539594, -0.000410244276, -0.034205813, 0.0489837937, -0.0380272456, 0.0174235869, 0.00496385153, -0.0100546386, 0.0287275389, 0.00804371107, -0.0184123479, -0.0422495268, 0.0360497199, 0.00785664748, -0.0125599476, -0.000233202474, 0.0222738646, -0.00765622314, -0.0156064024, 0.0283534136, 0.0248526614, 0.00635680323, -0.0313464217, 0.0480217561, -0.0128605841, -0.0283266902, 0.0245453436, -0.00264560594, 0.012606713, -0.025894871, -0.0170494597, 0.00113991543, -0.00483357534, 0.0222872254, 0.0351144075, 0.00618644198, -0.0215656962, 0.0114976969, 0.0215389729, -0.0276318844, -0.00588914566, -0.0357290432, 0.00901911128, 0.020416595, 0.0188265592, 0.00418887613, 0.00412874855, 0.0575085245, -0.0585774556, 0.0368781425, 0.0117582483, 0.00470664, -0.0145241097, -0.0192808546, -0.0397375338, -0.016822312, -0.0175572038, -0.0142835993, 0.00624656957, 0.00819737, 0.0222872254, 0.0319343358, 0.0107962098, 0.00460976781, 0.007769797, -0.0527250543, 0.00723533146, -0.0128605841, 0.0208976138, 0.00088854949, 0.0308119562, 0.0753062367, -0.0407262966, -0.0139228357, -0.0322817378, -0.00990098, 0.0184390713, 0.0145909172, -0.00974064, -0.00594593259, -0.00691465195, 0.00057204545, -0.00609625084, -0.0619980395, -0.00288611557, 0.00355085754, 0.000561606663, -0.0159938913, -0.00912600383, -0.00686788606, 0.0051208511, -0.0147378957, -0.0235298593, 0.0253203195, 0.015192192, 0.0280594565, 0.0239841547, 0.00736894784, -0.00763618061, -0.0111970594, 0.0402987264, 0.031079188, -0.0060060597, -0.0105891041, 0.00147395662, -0.026709931, 0.00109314965, -0.0140030049, 0.0177843515, 0.00523442496, 0.0146577256, -0.019173963, 0.0150986603, 0.0161141455, -0.0225945432, -0.0209243372, 0.00597599614, 0.0286740921, 0.0295826849, -0.0155128716, -0.0300102569, -0.0132948374, -0.019948937, 0.0320946723, -0.00923289731, -0.0541413911, 0.00936651416, 0.0136689637, 0.0472467802, -0.0310524646, -0.020162724, -0.0186795816, 0.015325808, 0.00623320788, -0.065151386, 0.045589935, -0.0437994748, -0.00690797111, 0.019307578, 0.0298499167, -0.0385617092, 0.0263491664, -0.00741571374, -0.00246355357, 0.0111836977, -0.0111436127, 0.0563327, -0.0084245177, -0.0151387453, -0.0282999668, 0.005147574, 0.0471933335, -0.0123261185, -0.0254138503, 0.0120321624, -0.00255040429, 0.00404523825, 0.00238672411, 0.0436124131, -0.0273646507, -0.0552637689, 0.0455364883, 0.00704826834, 0.0147913424, 0.0418219529, 0.0261086561, -0.0237837303, -0.00497053238, 0.0146978106, 0.016007252, -0.00402519573, -0.0180115, 0.0654186159, 0.0440934338, 0.0120455241, -0.0134484963, 0.0110834856, -0.00839111395, -0.0346066616, -0.000777898356, -0.0373057164, 0.00374126085, 0.00276419055, -0.00937319454, -0.00881200563, 0.0144840246, -0.0140965367, 0.0231290087, 0.0188800059, 0.0107494444, 0.0364772938, 0.00659063179, 0.0166085269, -0.0236233901, 0.0104621686, -0.00977404416, -0.039897874, -0.0585240088, 0.00897902623, -0.00952685345, 0.00655722804, -0.0345532186, 0.0293688979, -0.00626661209, -0.00519434, -0.00693469448, 0.0331101604, 0.0247457679, -0.007362267, -0.0288344324, 0.0433986261, -0.0189334527, -0.051495783, 0.0038648562, 0.00994774513, -0.0308921263, -0.00976068247, -0.0293956213, 0.00190236431, 0.0138159422, -0.0125733092, -0.0122593101, -0.0292085577, 0.00735558616, -0.0208441671, -0.0106425509, 0.0299568102, -0.00118835142, -0.033858411, -0.0293154512, -0.0210846774, -0.0102817863, -0.0213519111, -0.00561189139, 0.00142886105, -0.0378401801, -0.0111436127, -0.0276853312, -0.0320145041, -0.013248072, 0.0631738603, 0.0216993131, -0.0100546386, -0.0101815742, -0.0258815084, -0.0406728499, 0.0138159422, 0.0346868336, 0.00394836627, -0.00172699278, -0.0271642264, 0.0114175268, 0.0135019431, -0.035488531, -0.0191205163, 0.0209911466, -0.0384280942, -0.0205101259, 0.0169158448, -0.00954689644, -0.0375195034, 0.0226079058, -0.0171563532, -0.011577866, -0.0232626256, 0.0192407705, 0.0076963082, 0.0297163017, 0.0148715125, -0.00850468781, -0.0417417809, -0.030304214, 0.0281396266, -0.00409868499, 0.00117916532, -0.0267232917, 0.0280861799, 0.00192240684, 0.0231690947, -0.0288344324, -0.00773639325, -0.0345799401, 0.0244117267, -0.0166352503, -0.00167688658, 0.0275517143, -0.0367178023, -0.0115511427, -0.0118183764, -0.0228751376, 0.00935315248, -0.014083175, 0.0081840083, 0.0115845473, 0.00626995228, 0.0113373566, -0.00964042731, -0.0137224104, -0.0426503755, -0.0149917668, 0.0113173146, -0.0131745832, 0.0386953279, 0.00241010683, -0.035354916, 0.0408866368, -0.00561189139, 0.0471131653, -0.00583569892, 0.00972059742, -0.0422762483, 0.0164481867, -0.0371186547, 0.0118785035, -0.00752260676, 0.00120505341, -0.0203631483, 0.0200291071, 0.0055651255, 0.0208976138, 0.0121858213, 0.0213919953, 0.000150736072, -0.0146443639, -0.00376130338, 0.0334308371, 0.0447615162, -0.000642194122, -0.021873014, 0.0436925814, 0.00429911, -0.0202829782, 0.0507208072, 0.0121858213, 0.0312395282, 0.0445744507, -0.0404056162, 0.0299033634, 0.0029078282, 0.00857817661, -0.0370117612, 0.0302240439, -0.0174503103, 0.013034286, -0.0137224104, 0.0139629198, 0.00867838878, 0.0331903286, -0.0177576281, 0.00478012906, 0.00689460943, 0.00748920254, 0.0452425331, 0.00539142406, -0.0117649296, 0.0144840246, -0.00132864865, 0.0275517143, -0.0252802353, -0.0467657596, 0.00217794836, -7.83430878e-05, -0.0246255137, -0.0237035602, 0.0156331267, 0.030731786, -0.026322443, 0.00575886946, -0.012005439, 0.0316403769, -0.0256677214, 0.0240910482, -0.0217794832, 0.0225410964, -0.0186127722, -0.0340989195, -0.0272577573, -0.0388022214, 0.0594860502, -0.0140564516, 0.0154059781, -0.0166352503, 0.0420624614, 0.0337782428, 0.015192192, 0.0112104211, -0.0210312307, -0.0177309047, 0.0106291892, 0.0359962732, 0.000119628487, 0.0089322608, -0.0288344324, -0.00134451559, -0.0137624955, -0.026322443, -0.00751592591, 0.0200959165, 0.0347135551, -0.0116112707, 0.0149784051, -0.0182386469, -0.012372884, -0.0272443965, 0.0272577573, -0.00929302443, 0.000721528893, -0.035702318, -0.0309188496, -0.0157266576, 0.0402452797, -0.00855145324, -0.0231824555, -0.0108830612, -0.0210579541, 0.0116313128, -0.0394168571, -0.0207105521, -0.000483524578, 0.000521521724, -0.0611963384, -0.0226880759, 0.0182920936, 0.0319610573, 0.0199222136, -0.0489036255, -0.0221803319, 0.0047433842, -0.00520102074, -0.0464985296, 0.00766958483, 0.0147913424, 0.00237670285, -0.00594593259, -0.00261220173, -0.0237703677, 0.0102149788, 0.0143103227, -0.0231290087, 0.00717520388, -0.0297430251, -0.00254706386, -0.0243181959, 0.00176874793, 0.00660399348, 0.0107761677, -0.0318808891, 0.0250664484, -0.0293956213, 0.0165417176, 0.0210445933, -0.0107561247, 0.0219398234, 0.00817064662, -0.0282465201, 0.0270306095, -0.0195881724, 0.0104755303, 0.00567201898, -0.0463381894, 0.00660065329, -0.000895230274, -0.000306482747, 0.023075562, 0.00962038524, 0.011791653, -0.0445477292, 0.0507742539, -0.0359161049, 0.00260051037, 0.0231958181, 0.0223273113, 0.00444274722, 0.00156498281, 0.00140046759, 0.0426236503, -0.0106559126, -0.0187998358, -0.0211514849, 0.0320145041, -0.00269905245, -0.0207907222, -0.000891054748, 0.00221469277, -0.00768294651, 0.0265763141, 0.0137224104, 0.0161675923, 0.0046698954, -0.00168607268, 0.00815728493, 0.0299835335, -0.0242647491, -0.00545823248, 0.00180382223, -0.0135286665, -0.0042523439, -0.0311059114, 0.0258013383, 0.0356221497, -0.0208174437, -0.030731786, -0.00708835339, 0.00165934942, -0.0400582142, -0.008838729, -0.00486363936, -0.0319610573, -0.0203497875, -0.0436925814, -0.0344730467, -0.0179714132, -0.00141382916, 0.00841783732, -0.019815322, 0.0407530218, 0.0137491338, 0.00777647784, -0.0309722964, -0.010528977, 0.00991434138, -0.00772971241, -0.0351678543, -0.0161408689, 0.0195213649, 0.0179847758, 0.0119519923, -0.00994106475, 0.0045763636, -0.0139762815, 0.00491374545, 0.00417551445, -0.0024368302, -0.0012351172, -0.0715115294, 0.00352079375, 0.0143504078, -0.0173166934, -0.000953687471, 0.0133950505, 0.0140163666, 0.00674763136, -0.0169692896, -0.0274982676, -0.0121724596, -0.0276051611, -0.00648039859, 0.0291551109, 0.0204967652, -0.00639354764, -0.0270706955, -0.0171563532, -0.0114041651, -0.0298499167, -0.000971224625, -0.0171029065, -0.0183589011, -0.0182252862, -0.0228083301, -0.0156064024, 0.0153926164, 0.0142835993, -0.0204834044, 0.0278456714, -0.027952563, 0.00188900274, -0.020416595, 0.0532327965, -0.00132864865, -0.0141366217, -0.0494648144, 0.00219298014, 0.000344897504, 0.00910596177, 0.0178377982, 0.00300971069, 0.0289413258, 0.00822409336, -0.00734890532, -0.0234630499, 0.0163145699, -0.0198286828, -0.0223406721, 0.0214988887, -0.0196817052, -0.0158335511, 0.0120254811, 0.00736894784, 0.00477010757, 0.00159755186, -0.00436257757, -0.00473670335, 0.0217260364, -0.0109431883, 0.00310324226, -0.0260017626, -0.0165417176, 0.0197618753, -0.00748920254, -0.0293154512, -0.0282732435, 0.0519500785, 0.00545489183, 0.0214588027, 0.007769797, 0.00185392844, 0.0136288786, 0.0224208422, -0.0383746475, -0.00388823892, -0.0176908188, 0.029021496, -0.00335544348, 0.00371453771, -0.0345532186, -0.00823745504, 0.0387487747, 0.032709308, 0.00533797778, -0.00785664748, 0.0247591306, 0.0108696995, -0.0128605841, -0.0138961123, 0.0180916693, -0.0110099968, -0.0372789912, -0.0109031033, -0.00355753838, 0.0356488712, -0.000238004315, 0.0359428264, -0.01493832, -0.00297964714, 0.0169826522, 0.00338216661, -0.0165016335, 0.00163930701, 0.0179446898, -0.0031750612, -0.014296961, -0.0307852328, 0.00530123292, -0.0171563532, 0.0099744685, 0.00987425633, 0.0187330283, -0.0411538705, 0.0260819327, -0.00935983285, -0.0338316895, -0.0033587839, 0.0143771311, -0.00202261913, 0.0090792384, -0.00776311615, -0.0115311006, 0.0167421419, -0.0338851362, -0.00109899545, 0.0351945758, -0.0140030049, -0.00978740584, -0.00424900325, 0.0161943156, -0.0251867026, 0.0296361316, 0.00974732079, 0.00822409336, 0.0174770337, 0.0042155995, 0.0265896749, -0.019133877, 0.0291818343, -0.0203097016, 0.00927966367, 0.00713511882, 0.00189902401, -0.00266731856, -0.0181985628, 0.00113156438, 0.0132013066, 0.0137491338, 0.0321748443, 0.00710171508, 0.0492777526, -0.0156598501, 0.0212984644, -0.0180783067, -0.0194278341, -0.0622652695, 0.0203898717, -0.00041254083, -0.00163513143, 0.0313464217, 0.00469327811, -0.0140430899, 0.00509412773, -0.0220333543, -0.0450821929, 0.0185994115, -0.000164202109, 0.00308988057, 0.00603612373, -0.0339118578, 0.0240910482, -0.00255708513, 0.013909474, 0.00827754, 0.00820405, -0.00451623648, 0.00268736109, 0.0444408357, 0.0231022853, 0.00745579833, 0.0398177058, -0.0131946253, 0.0152723612, -4.59828516e-05, -0.0107093593, -0.0258147, -0.0256009139, -0.0050373408, -0.0166486111, 0.00824413542, 0.00385817536, -0.00874519721, -0.00481687346, -0.00211615069, -0.0174102243, -0.00873183552, 0.0208174437, 0.00363102742, -0.00328529463, 0.0010847986, -0.00618644198, -0.00840447564, 0.0155262323, 0.00436591776, 0.00980076753, 0.0117248446, -0.0274715442, 0.00381475, -0.00538474321, -0.000727792154, 0.0245052595, 0.0370384827, -0.0193209406, -0.0243048351, 0.0334041156, -0.0138025805, -0.0313464217, 0.0169158448, 0.00328863505, 0.0155128716, -0.00186060928, -0.0323886313, 0.033992026, 0.0138293039, -0.0117248446, 0.0169425681, 0.0368246958, 0.00161592406, 0.0366109088, 0.00899238791, 0.0090792384, -0.0281129032, -0.0128138186, 0.020590296, 0.00302140228, -0.0537138171, 0.0151253836, 0.0222872254, 0.0197084285, 0.0249729156, -0.00972727872, -0.0171964392, 0.00966047, -0.0199355762, 0.0673961416, -0.017677458, -0.0263090804, -0.00560521055, 0.00107644766, -0.00387821789, -0.0228216909, -0.0131278168, 0.0156999342, 0.0150184901, 0.0204967652, -0.0286740921, -0.0237703677, -0.0391496234, -0.0299033634, 0.00551836, -0.00205602334, -0.00619980367, -0.0137357721, -0.0170093756, -0.00722197, -0.0116246324, 0.0216725897, -0.00296294503, -0.017036099, 0.0247724913, -0.0211114, -0.0472467802, -0.0425167568, -0.0214187186, -0.00671088696, -0.000418177777, 0.00460976781, 0.0188265592, -0.0498389415, 0.00239841547, -0.0116513558, -0.0102817863, -0.0473269522, 0.0256543607, 0.00955357682, 0.0329765417, -0.0121190129, 0.0239975173, 0.00455632154, 0.00934647117, -0.00109816028, 0.0259616785, -0.0123194382, 0.0162477624, 0.0169024821, 0.024825938, 0.0194278341, 0.00358426152, 0.0510949343, 0.00828422047, 0.00301639154, -0.0406728499, -0.0639755651, -0.00570876338, -0.00976068247, -0.0273646507, -0.00293455156, 0.000607119815, -0.00809715781, 0.00278089265, 0.0188933667, 0.0222738646, 0.0124062886, -0.0121256942, -0.00733554363, -0.0442537703, -0.00477678841, -0.0191873237, 0.00545155164, 0.00621316535, 0.0150852986, 0.000465569843, -0.0270439722, -0.0150719369, -0.00575886946, -0.0253604036, -0.00925294, -0.0523509309, -0.0403521694, 0.00968719367, 0.0482889898, 0.0352480225, -0.019989023, -0.0142835993, -0.0112905912, -0.0250798091, -0.00837775227, 0.0184524339, 0.024866024, -0.00269237161, 0.00696141785, 0.0123662036, -0.0205635726, 0.00715516135, 0.0040886635, -0.021445442, -0.00338216661, 0.00418887613, 0.00591586903, -2.6605856e-05, -0.0349807888, 0.0154594248, -0.0259616785, -0.0213652719, -0.00744243711, -0.0100880424, -0.00911264308, 0.018145116, -0.0155663174, 0.0329765417, 0.00115411216, 0.0166619718, -0.0074825217, -0.0444408357, 0.0365307406, 0.00410870602, -0.0281396266, -0.0174903944, -0.00638018595, -0.0177442655, 0.0267767385, 0.0299300868, -0.00953353476, 0.0132747954, -0.00276419055, 0.0131812636, -0.00893894117, 0.0108496565, 0.00814392325, -7.87606405e-05, 0.0299835335, 0.0226880759, -0.0314265899, -0.00207773596, 0.00459974678, 0.0244518127, 0.000577056082, -0.011190379, -0.0129073504, 0.0132213486, 0.0124597354, -0.00337882619, -0.029021496, 0.0299300868, -0.00408198265, 0.000698563585, -0.0291551109, 0.00932642911, -0.0103285527, -0.000498556416, -0.00899906829, -0.00564529561, -0.00382477115, 0.0125799896, 0.0224208422, 0.00546491332, -0.0145775555, 0.0258414242, 0.00825081673, -0.0109231453, -0.0456433818, -0.0235966668, -0.0106425509, 0.0149784051, 0.00693469448, 0.00226312876, 0.0100011919, 0.0131879449, -0.0116847595, -0.0263625272, -0.00955357682, -0.00596597511, 0.00417217379, 0.00764286146, 0.00750924507, -0.00516093569, -0.0218462907, 0.0124263307, -0.0238238145, 0.0180248599, 0.0243315566, 0.00864498504, -0.00142635568, -0.00449619396, -0.00136622833, -0.00908592, -0.00748920254, -0.000136017377, -0.000189463972, -0.0076027764, 0.0156197641, 0.0146042788, 0.0003069003, -0.0172365233, 0.00284937094, 0.000488952734, -0.00868507, 0.0165417176, -0.00939323753, -0.013869389, -0.0190670695, 0.00139712717, -0.00471666129, 0.0027391375, 0.0293154512, -0.00832430553, -0.00341891125, 0.015325808, -0.00563861476, -0.000651380222, -0.0356221497, -0.00698146, -0.00786332879, 0.0233561583, 0.0120722475, 0.0251733419, -0.0023349477, -0.00710171508, -0.0166619718, 0.0204834044, -0.0218863767, 0.0232893489, 0.0110300388, -0.0200291071, -0.0165818036, 0.0165016335, 0.0116647175, -0.00561857224, -0.0285137519, 0.00795017928, 0.00688124774, 0.00675097154, -0.0179847758, 0.0110634426, -0.0274715442, 0.0213118251, 0.0601808541, 0.0156197641, 0.0268034618, -0.0221001618, -0.0198286828, -0.00101047452, -0.014256876, -0.0127536915, 0.00970055535, -0.00633676071, 0.0168356746, 0.0134150926, -0.00200424693, -0.00245186198, 0.00411204668, -0.00898570661, 0.0152723612, -0.011323995, 0.00275082886, -0.0171964392, 0.0161408689, 0.00778983952, 0.00504402118, -0.00240843673, -0.000921953586, 0.00803034939, 0.0232225414, -0.00756937265, -0.0313197, -0.0154995099, 0.00708167255, -0.016007252, 0.00716852304, -0.0093197478, -0.0113908034, 0.00812388118, 0.0179580525, 0.0076295, -0.0288344324, 0.030437829, -0.0019006941, 0.00943332259, -0.0151654687, 0.0127136065, -0.00691465195, 0.00710171508, 0.013675645, -0.0245186202, 0.0035809211, -0.00643697288, -0.0231423713, 0.00314666773, -0.0349807888, -0.0144706629, 0.00384481368, 0.0180515833, 0.0227014367, -0.0202562548, 0.00684116269, -0.00879196357, 0.00166686531, -0.0112037407, 0.0202829782, -0.0196015351, -0.00624990975, -0.00221135234, -0.02979647, -0.0115912277, 0.00317339087, -0.00399179198, -0.0511751063, 0.0300637037, 0.0133482842, -0.00179714139, 0.0107628061, 0.00422228035, -0.0305714458, -0.018145116, -0.0255875532, -0.0194144715, -0.00613967655, 0.00048686497, -0.029662855, 0.00510080857, -0.0192274079, -0.00192574726, -0.016180953, -0.0158469118, -0.000698981108, 0.00606952794, -0.0091527272, -0.0153926164, 0.00144973863, -0.0248793848, -0.01412326, -0.00929970574, 0.0394970253, 0.000609625131, 0.00271074404, -0.0141900685, -0.0320145041, 0.00713511882, -0.00487032, -0.0187998358, -0.025507383, -0.00957362, -0.00682112, 0.000840531, -0.0052411058, 0.0156999342, 0.032228291, 0.0155930407, -0.00113657501, -0.00524444599, 0.0171563532, 0.00224475656, -0.010936507, 0.0133950505, -0.0107761677, 0.0221402477, -0.00567201898, -0.00570208253, 0.0122259064, -0.0123461606, -0.0328696482, -0.0187330283, 0.00499391509, 0.0126133943, 0.00552170025, -0.000472668238, -0.0233561583, -0.000709837477, 0.00817732699, -0.0301973205, -0.0142435152, -0.00636348408, -0.0062565906, 0.000300637039, -0.0295826849, 0.0247457679, 0.0151387453, 0.025387127, -0.0129607972, -0.0217393991, 0.0254138503, -0.0186127722, 0.0183989871, 0.00130526582, 0.017637372, 0.00781656336, -0.00562859327, 0.000423605932, 0.00562525308, -0.0160339754, 0.0222471412, -0.0160473362, -0.0101548508, -0.015713295, -0.000988761778, -0.00796354096, -0.00399513217, 0.00933310948, 0.0125399046, 0.00378802675, -0.0211514849, 0.00931306742, 0.0116647175, 0.0036644314, -0.0216458663, -0.00141382916, -0.0185994115, -0.0213251878, 0.0152322762, 0.00629333546, 0.0165818036, -0.00376130338, -1.16653437e-05, 0.00447281124, 0.032361906, 0.0375996716, -0.0257211681, 0.0273646507, -0.00010543174, 0.0157667417, -0.0283534136, -0.00273746718, -0.0120588858, -0.00337047526, 0.00153074355, 0.00459974678, -0.0191071536, -0.00655722804, -0.0135487095, 0.0109031033, -0.00334375189, 0.0194946416, 0.00387487747, -0.00792345591, -0.030518, 0.0226212665, -0.0208708905, 0.000281847228, -0.00992770307, 0.0103619564, -0.0140564516, -0.00966715068, -0.00821073167, -0.0194679182, 0.00823745504, -0.0199355762, -0.00715516135, -0.0112571865, -0.0197217893, -0.0267633777, 0.00196082145, 0.0106625939, 0.0205769353, 0.0165149942, -0.0136355599, -0.000328195427, 0.00233327737, 0.0152723612, -0.00697477907, -0.0198554061, -0.021619143, -0.0211381242, 0.0301705971, 0.0276318844, 0.00491040479, 0.0101682125, -0.0236100294, 0.017677458, 0.0116045894, -0.00497387256, 0.00286941347, -0.00968719367, 0.0273913741, -0.0371720977, -0.0373057164, -0.00630335649, 0.0317205489, -0.00513421232, -0.00556846615, 0.00341557083, 0.039630644, -1.89985913e-05, -0.0187731124, 0.019948937, -0.0257345308, 0.0392832384, -0.00463983184, -0.0120856091, 0.00421893969, -0.0148314275, 0.00873183552, 0.0369048677, 0.00262389332, -0.0181050301, -0.0103686377, -0.0115244193, 0.00255708513, 0.0211915709, -0.00311994436, 0.0375462249, 0.0216859523, 0.0130075626, -0.0309722964, -0.0076495423, 0.00974732079, 0.00269404193, -0.0140297282, 0.0267901011, -0.00978740584, -0.0137491338, 0.00951349176, -0.0378401801, -0.00407530228, 0.00843787938, -0.00079710572, -0.0057655503, -0.0220600776, 0.0268034618, 0.00563861476, 0.0160606988, -0.0266431216, 0.00815060455, 0.0108229332, 0.00959366187, 0.0161943156, -0.0266965684, -0.000684784376, -0.000113782771, -0.0296895783, 0.0135620711, 0.0148848742, 0.0376531184, -0.0113707604, -0.0174235869, -0.0192808546, 0.00395504711, -0.0197351519, 0.0187463891, -0.0124797774, 0.0222070552, 0.00431581168, -0.0200959165, 0.0204700418, -0.0112237828, 0.0199222136, 0.0409133621, 0.0129474355, -0.0247724913, -0.000857650652, 0.00923289731, -0.00675765239, 0.00187063043, 0.0131478598, -0.0333239436, -0.000576221, -0.00158586039, -0.0338851362, -0.0410202518, -0.00478012906, 0.0128138186, -0.0151654687, -0.010315191, -0.0445477292, -0.0202295315, -0.0189869, 0.00295626419, -0.00201593828, 0.00901243, 0.0127202868, -0.00944000296, 0.0227148, -0.00968719367, -0.0212851018, -0.0118450988, 0.0244785361, 0.00396172795, 0.00662069581, 0.0449753, -0.0126133943, 0.00330032664, 0.0104287649, -0.0146978106, -0.0108696995, 0.0184257105, 0.0125933513, 0.0257078074, -0.0344997719, -0.0152990846, -0.00853809156, -0.00813056156, 0.0355419777, -0.00342392176, 0.0134150926, -0.00983417127, 0.0127737336, 0.000210237151, -0.0154594248, -0.00545489183, 0.029021496, 0.0158736352, 0.0221001618, 0.00700818328, 0.00302474271, -0.00224475656, 0.0210045073, 0.0289146025, 0.00544821098, 0.00300135976, -0.0137892189, -0.0223941188, -0.0213786345, 0.00333206053, -0.0164615475, -0.0118250567, -0.00661735516, -0.00977404416, -0.0110300388, 0.0149917668, 0.00288945599, 0.0044661304, -0.00234496896, 0.00187230064, -0.0246121529, 0.0216725897, 0.00497721322, -0.00138460053, -0.0100279152, 0.0222070552, 0.0410737, 0.0333239436, 0.0288611557, 0.0346066616, -0.00200591702, -0.0109699117, 0.0081105195, -0.0304111056, 0.0209777839, 0.0270172488, 0.0179179683, 0.00402853638, -0.00308988057, 0.00290448777, -0.0137357721, -0.0241444949, 0.0051108296, -0.0211114, 0.020162724, 0.00435589673, -0.00263057416, -0.0576688647, -0.000905251538, 0.038347926, -0.00558850868, 0.0138827506, -0.00442604534, -0.0142435152, -0.0264293365, -0.0417952277, -0.00729545858, -0.0230622012, 0.0334041156, -0.0146443639, 0.0261621028, 0.0345532186, -0.00533797778, -0.0305447225, 0.00831094384, 0.00207773596, 0.00319844414, -0.000494380889, 0.00224308623, -0.00208107638, 0.0102617443, 0.00443272619, -0.01217914, 0.0046598739, 0.000746164413, 0.00837775227, -0.00516427634, 0.010896422, -0.0049905749, -0.000809214718, 0.0282465201, -0.00887881406, -0.00453627901, 0.00281262654, 0.00201426819, 0.0109498687, 0.0172766093, -0.0143236844, 0.00178377971, 0.00414211024, -0.00926630199, 0.0179446898, 0.0119519923, -0.00340889, -0.0165149942, 0.00114576111, 0.0117582483, -0.00402185554, 0.0210045073, -0.0182920936, 0.0143504078, 0.00425568409, 0.0066607804, 0.0127670532, -0.00429242896, -0.0193610247, -0.00505070202, -0.0124530541, -0.016354654, 0.0135153048, -0.011190379, -0.00539476471, -0.00645701541, 0.00729545858, -0.0138827506, 0.0160473362, -0.0112772295, 0.00110818155, -0.0020677147, 0.0299300868, -0.0152456379, 0.015259, -0.00485695852, 0.0189067293, 0.00897234492, 0.00162176974, -0.0153926164, 0.0164615475, -0.0029612747, -0.00135286665, -0.00946004502, 0.00937319454, 0.0138426656, -0.00451957667, 0.00987425633, -0.0122593101, -0.0195748117, 0.00370785687, 0.0365307406, 0.00727541652, 0.0106158275, 0.0278723929, 0.0108830612, -0.0135019431, -0.00409200415, -0.0282197967, 0.011597909, 0.00536804134, 0.00587912416, -0.00770298904, -0.00328696496, -0.010295148, -0.00246021315, 0.0184123479, 0.00869175047, -0.00182720507, 0.0249595549, 0.000819235924, -0.00999451149, -0.00683114165, 0.0208575297, 0.0273379274, -0.00613967655, -0.0231557321, 0.0156464875, 0.0129674776, -0.00177876919, -0.0137892189, -0.00204266165, -7.60987532e-05, 0.0129474355, 0.00095034705, 0.0157667417, -0.00433919439, -0.000214412663, -0.00485361787, -0.00905251503, 0.019815322, 0.00081172, 0.00362100615, 0.018318817, 0.00281930738, 0.00972059742, 0.00870511215, 0.00500727678, -0.0151788304, -0.0167955887, 0.0113908034, -0.00431581168, -0.00859822, -0.00460976781, 0.0197351519, 0.0356221497, 0.0103686377, -0.00666412106, -0.00243850052, 0.00169442373, 0.00690129027, 0.00119085668, 0.00223473529, 0.00179714139, 0.00177208835, -0.000825499184, -0.0020293, 0.00954021513, -0.00143053127, 0.0220333543, 0.0190804303, 0.0161408689, 0.00741571374, 0.00630669715, 0.0249862783, 0.00561857224, -0.00394836627, -0.0010422084, -0.000549915247, 0.00118584605, -0.0271642264, 0.0209777839, 0.00971391704, 0.016007252, 0.00196082145, -0.00847796444, 0.0045463, -0.011150294, 0.011150294, 0.0114976969, -0.0158469118, -0.00980076753, -0.0107895294, -0.0206170194, -0.0125399046, -0.00990766101, 0.00557180634, -0.00197585346, -0.00956025813, 0.0346868336, 0.002102789, -0.00576220965, -0.035702318, 0.00555844465, 0.00381140946, -0.0306248926, -0.018706305, -0.035702318, -0.0202562548, 0.00351745333, 0.0124597354, 0.00131612213, 0.00277755223, -0.00518765906, 0.0125799896, 0.00492376648, -0.0143637694, 0.00598935783, -0.000721946417, 0.0147378957, -0.0246655978, 0.0205769353, -0.00151404156, -0.0196148958, -0.0239975173, -0.00481687346, -0.00772303157, -0.00428574812, 0.0121524176, -0.0065405257, -0.00562525308, -0.00363770826, -0.00928634405, -0.00938655622, -0.0217794832, -0.0129207121, 0.00111736765, 0.0116780791, -0.015259, 0.0110434005, -0.00562525308, -0.0119252689, -0.0189869, -0.00950013, -0.0328696482, -0.0177309047, 0.030437829, 0.00691465195, 0.00419889716, -0.00454296, -0.0044928533, 0.0179580525, -0.009246259, 0.00663071685, 0.0199088529, -0.00166352489, -0.000860991073, -0.00268402067, -0.00234997948, 0.0100145536, 0.0118918652, 0.0111836977, -0.00193409831, 0.0194011107, 0.018706305, -0.00101715536, -0.0113974838, 0.00406528078, -0.0419021212, -0.00927298237, 0.018666219, 0.0136823254, 0.023115648, 0.0221536085, -0.00115077174, 0.00862494297, 0.0156197641, -0.00433251355, -0.0304912757, 0.00577557134, 0.00452959817, -0.00483691599, -0.0314265899, -0.00547827501, -0.00519768056, 0.0173968635, 0.0148314275, 0.0187864751, -0.0059693153, 0.00635680323, -0.00709503423, -0.00474004401, 0.0143637694, 0.00350743206, 0.0188532826, -0.0233294349, 0.00574550778, 0.0134885814, -0.00733554363, 0.00620982517, -0.00780320121, -0.00819068868, -0.00450955564, -0.00144639821, -0.00127102656, -0.00409200415, 0.00892557949, 0.0116847595, -0.0113841221, 0.00726205483, -0.0170093756, 0.00543484977, -0.0207506362, -0.00677769491, 0.0245319828, 0.0240108781, 0.0145641947, 0.000603779394, -0.0204032343, 0.000893560064, 0.00418887613, -0.0169158448, -0.00845124107, -0.00944000296, -0.0351678543, 0.000620481442, 0.000891889853, -0.0257078074, 0.02816635, 0.0219665468, 0.00244852155, -1.03735438e-05, 0.00552838109, 0.00972727872, 0.011130251, -0.019948937, -0.000296879065, 0.00738899037, -0.0120655661, -0.0101615321, -0.00220801192, -0.0227949675, -0.0043358542, 0.0166753344, -0.00641693035, -0.00313330605, 0.0370384827, 0.00812388118, -0.0263090804, -0.00128856371, -0.00854477286, 0.00844456069, 0.025213426, -5.67869974e-05, -5.82614757e-06, 0.0143504078, -0.0221536085, 0.0113306763, 0.0197485127, -0.0403521694, -0.0125933513, 0.012820499, -0.0139762815, -0.0214187186, -0.00346400682, -0.00324688, -0.00498723425, -0.00365106971, -0.0263358038, 0.019347664, -0.00954689644, -0.0128672654, 0.0186528582, -0.00762281893, 0.012820499, 0.00685452437, -0.00975400209, -0.000198545706, -0.00706831086, -0.009246259, 0.0112371445, -0.00276753097, -0.00651380233, 0.0103819994, -0.00246355357, 0.0126601597, 0.0222204179, -0.00323184812, 0.00511751045, -0.013909474, -0.0045863851, 0.00925294, 0.0129474355, -0.00121089921, -0.00619980367, 0.0133883692, 0.0194278341, -0.00260552089, -0.00533129694, -0.0107360827, -0.0196683425, 0.0147646191, 0.0184123479, -0.000991267152, 0.0110567622, -0.00361432531, 0.00116413343, -0.00226813951, -0.0114442501, -0.0179580525, -0.00680441828, 0.00852473, -0.0109832734, -0.0217928439, 0.00418553548, 0.0327360332, -0.00487700105, -0.0200825538, 0.023075562, 0.00888549443, 0.00140547811, -0.00227148, -0.0252668727, -0.0175304804, -0.00953353476, -0.00281596696, -0.000753262779, -0.00208942732, -0.00509746792, -0.0241979416, -0.0295025147, -0.0185726881, 0.0223139487, 0.000531543, -0.00105306471, 0.00062925, -0.00173868425, 0.0332705, -0.00253036176, 0.0130810514, -0.0253604036, 0.0097339591, 0.000849299657, -0.011985397, 0.0126868831, 0.0167555045, 0.00252702134, 0.0108296145, 0.024999639, -0.0216057822, 0.000943666266, 0.0342859849, 0.0198420454, -0.00320011424, 0.0128739458, -0.0062565906, 0.0027040632, -0.0171830766, -0.00768294651, 0.008838729, -0.00648707896, -0.00536470069, 0.00201760861, -0.00469995895, -0.00149149378, -0.0194278341, -0.000430495536, -0.00643697288, -0.0283266902, -0.0199355762, -0.00191906642, -0.00561189139, 0.0017303332, -0.0395237505, -0.00296294503, -0.00539476471, -0.0221001618, 0.0148848742, 0.00734890532, 0.00968051236, -0.0126534784, -0.00732886279, -0.0108630182, 0.00426570559, 0.00529121188, 0.0194411948, -0.0113373566, -0.00570208253, 0.0156064024, 0.00600940036, 0.0174369477, 0.0268569086, 0.0255608298, 0.0136355599, 0.00821073167, 0.00658061076, 0.00820405, 0.0186261348, -0.0121256942, -0.00421893969, -0.00343060261, -0.00224475656, 0.00677769491, -0.00148147251, -0.00986089464, -0.00621316535, 0.0263358038, -0.0266030375, 0.0140163666, 0.00194913009, 0.000416716328, -0.0114175268, 0.0229285844, 0.018532604, 0.00492710713, -0.030090427, -0.00977404416, 0.0112505062, -0.00626327144, -0.0016651951, -0.0249328315, 0.0159404445, 0.012820499, -0.00730213942, 0.00571544422, 0.00433251355, 0.000926129112, -0.00662737666, 0.000554090773, 0.0086049, 0.0126802018, -0.00876524, 0.0018322157, 0.0190670695, -0.00510748941, 0.0226613525, -0.0221936945, -0.0116379941, 0.018960176, 0.0158335511, -0.00639688829, -0.00233661779, -0.00970055535, 0.00202094903, -0.00777647784, -0.0149917668, 0.0117983334, 0.031079188, 0.00698146, 0.00171697151, -0.0160606988, -0.0311593581, -0.0131411785, 0.0204032343, 0.0185058806, 0.011731525, 0.011557824, -0.0200959165, 0.01095655, -0.00918613188, -0.00435923692, 0.0229553077, -0.0122793531, 0.0161675923, 0.0115845473, 0.00686120521, -0.000339260558, -0.0139762815, -0.0172365233, -0.00375796296, -0.00165684416, -0.00178879034, -0.0188131984, -0.00930638611, -0.00554508297, 0.0108162528, -0.00359428278, -0.0086650271, 0.00534465862, 0.00701486412, 0.00211949111, -0.00197752356, 0.000743659097, 0.00213619322, 0.0146844489, 0.000712342735, -0.00249194703, -0.0144973863, -0.00154577545, 0.00933310948, 0.0154861482, -0.00407196162, -0.0242513884, 0.00792345591, -0.00758273434, 0.0257078074, 0.00115244195, 0.0280861799, 0.0197351519, -0.00643363269, 0.00655722804, 0.0246255137, 0.00799694564, -0.0020660446, 0.0129875196, 0.0268702712, -0.0110434005, 0.0205101259, 0.00943332259, 0.00175705645, -0.0017487054, 0.0180515833, -0.00942664128, -0.000710255, 0.0269504394, 0.0075292876, -0.0102884676, -0.0084980065, -0.0144840246, 0.0232626256, -0.00114075048, -0.0243449192, -0.00871847384, 0.0134351356, -0.0198687669, -0.00437927945, -0.00829758216, -0.0149650434, 0.00063259044, 0.00217961846, -0.00703490665, -0.0170895457, 0.00401517469, 0.0276853312, -0.0140698133, 0.00044343964, -0.00673761, 0.0165818036, 0.0301438738, -0.020590296, -0.0320412256, -0.0024902767, 0.00406528078, 0.0108830612, 0.01412326, -0.00697477907, 0.0231824555, -0.0303309374, -0.0169826522, 0.0115311006, -0.0229686704, 0.0124864578, 0.0141767068, -0.00618644198, 0.0156064024, 0.00787000917, -0.0102283405, -0.00957362, -0.0221803319, -0.0129273925, 0.000789172249, 0.026322443, -0.0159137212, 0.0204032343, 0.011791653, -0.0264293365, 0.0159671679, -0.00163262617, -0.00397843029, -0.0178778823, 0.0242113024, -0.0149249583, -0.000711925211, 0.0128338607, 0.0184524339, -4.83837721e-05, -0.00415881258, -0.00819068868, -0.00431247149, -0.0078432858, -0.00284269, 0.00695473701, -0.00441602385, 0.00416215276, -0.00201426819, 0.00740235206, -0.0109699117, -0.0111102089, -0.0137090487, -0.00813056156, -0.0294223446, -0.0123662036, 0.0155128716, 0.0205234885, 0.0411004238, 0.032709308, -0.010101404, -0.0054081264, -0.0233962424, 0.00996778812, -0.00651046215, 0.034072198, -0.0074825217, -0.0129674776, 0.0130008813, -0.00401851488, -0.00951349176, -0.00201426819, 0.000151258, 0.0127804149, 0.0198554061, -0.0159137212, 0.0243449192, 0.0421426333, -0.00303810439, -0.0291283894, 0.0110634426, -0.000326525216, -0.0118116951, 0.0123127569, -0.0148848742, 0.0277655013, -0.0196549818, -0.0122325867, -0.00827754, -0.00311493385, 0.0148180658, 0.000833015132, -0.0079434989, -0.00107978808, 0.0409133621, 0.00607620878, 0.00159170607, 0.0053613605, -0.00388823892, -0.010068, -0.0008188184, 0.0119252689, -0.00063426065, 0.0224609263, 0.00441602385, -0.000553255668, -0.0198954903, 0.0353014693, 0.00406862143, 0.00239340495, -0.00536470069, -0.00213452289, 0.00892557949, 0.00139128137, -0.0302774906, -0.0146577256, 0.00774975494, -0.020136, 0.00837107096, 0.00946004502, 0.0125799896, -0.0212851018, 0.0175972879, 0.00507074455, 0.00937319454, 0.020456681, 0.0227148, 0.0046231295, -0.00611963402, -0.018666219, -1.56451297e-05, -0.00218462921, -0.00716184219, -0.00547827501, 0.0418486744, -0.0120989708, 0.0116045894, 0.00407196162, -0.0214721654, 0.0257345308, -0.0118718222, -0.0117048016, 0.0200023837, -0.000435088616, 0.0146710873, -0.00254539354, -0.00929302443, 0.00771635072, 0.0058123162, -0.000358259131, -0.00350409164, -0.00108730397, -0.0102149788, 0.007362267, 0.0194278341, -0.000989596942, -0.0293421745, -0.00142552063, 0.0137090487, 0.00102467125, -0.0177442655, -0.00178377971, -0.0196416192, 0.0101949358, -0.00166603026, -0.0117515679, 0.00559184887, 0.00647705793, -0.00471332064, -0.000865166599, -0.000215038992, 0.00912600383, 0.000943666266, 0.0075292876, 0.0109031033, 0.0113841221, -0.00495049, 0.00444274722, 0.00401851488, 0.00403855741, -0.00939991791, 0.000925294, -0.0314265899, -0.00905919634, 0.0143904928, -0.0055651255, -0.00615637843, 0.0076495423, -0.0137224104, -0.0196416192, 0.00472000148, -0.00457302341, -0.000943666266, -0.0032285077, -0.024184579, 0.000831344922, -0.012239268, 0.0136155169, 0.023716921, 0.0474071205, -0.0133148804, -0.0211514849, 0.000358467922, -0.00966715068, 0.00736894784, -0.0111035276, 0.0291016661, 0.00752260676, -0.00323685887, 0.0282732435, 0.0125399046, -0.00758273434, -0.0156865716, 0.00044343964, 0.00521772262, -0.0123060765, -0.00888549443, 0.010488892, 0.0180515833, 0.0160473362, 0.000264936389, -0.0174903944, -0.015152107, 0.00113072933, -0.0152990846, 0.00158084976, -0.00581565639, -0.0268569086, -0.000463482109, 0.00998115, -0.00489704311, -0.00129942014, -0.0241578557, 0.00916608889, 0.0051575955, 0.011150294, -0.00449619396, 0.000681026373, -0.00534799881, 0.0298231933, 0.015365893, 0.00772971241, -0.00519768056, 0.0241444949, 0.00658061076, 0.0261621028, 0.00538808387, -0.0292620044, 0.00246355357, 0.0103419144, -0.030304214, 0.0151387453, 0.0106492322, -0.000511500519, 0.0071217576, -0.00277254148, -0.00683114165, 0.0447347909, 0.0101481704, -0.0113039529, -0.0100746816, -0.0212851018, -0.00728209736, -0.00225644791, 0.0139762815, -0.0149115967, -0.00166603026, 0.0171429925, 0.00462981034, -0.0221669711, 0.00992102269, -0.0017821095, 0.0294223446, -0.00508410623, -0.0097339591, -0.0258013383, 0.00358426152, -0.00097707042, 0.0120789278, 0.0170227364, -0.00483691599, -0.0119052269, 0.0132614337, 0.00201760861, 0.00620648451, 0.0209510606, -0.00159838691, 0.00526448851, -0.012820499, -0.011537781, -0.00639354764, 0.016996013, -0.00646369625, 0.0224208422, -0.0210713167, -0.00176707772, -0.00836439058, 0.00897234492, 0.0211247634, 0.00898570661, -0.00430579064, -0.0238772612, -0.00507742539, -0.00154327007, -0.0215924196, -0.00919281226, 0.015753381, 0.0167555045, -0.0130409664, -0.000631337753, 0.0132948374, 0.0103218714, -0.00236835168, 0.011344038, -0.00410202518, 0.0120588858, 0.00599937933, 0.0240108781, -0.0324955247, -0.0215790588, -0.00169859931, 0.00382477115, 0.00391496252, -0.018666219, 0.0226613525, -0.0178110749, -0.0424098633, -0.0190537069, -0.00701486412, 0.0160874221, 0.00974064, 0.00518431887, -0.0101682125, -0.0184524339, 0.00376798422, -0.0150719369, -0.000544904615, 0.00713511882, -0.000514005835, -0.0247992147, 0.0155930407, -0.0022330652, -0.0114242071, -0.00841115601, 0.00585240079, -0.00537138153, 0.0183989871, -0.00187397085, 0.00921285525, 0.0185593273, -0.0108696995, -0.00992770307, -0.0493044741, 0.00941328, 0.027818948, 0.0358893797, -0.0110033154, 0.0121657783, 0.00905251503, -0.0375729501, -0.00767626567, 0.00324688, -0.0223807581, 0.0282197967, 0.015192192, 0.0188131984, 0.0138159422, -0.0119787157, 0.0180916693, 0.00346400682, 0.0184657946, -0.00136706338, 0.0162611231, 0.00770298904, 0.0128806271, -0.013441816, 0.00688792858, 0.00262723374, -0.0163412932, 0.012199183, 0.000187271828, -0.0150184901, -0.0171029065, 0.0166085269, 0.00839111395, 0.0044928533, -0.0147913424, -0.0196148958, 0.00688792858, -0.0270840563, 0.0118584605, -0.0247324072, -0.00635680323, 0.0118384184, -0.0183455404, -0.00978072453, 0.000103396174, 0.00264059543, -0.00107143703, 0.010068, 0.0200558305, 0.0145374713, -0.0159003586, 0.0174369477, -0.0261353794, -0.00513755297, 0.00365441013, -0.0214855261, -0.0112571865, -0.0123327989, 0.0306516159, 0.0103285527, -0.0146443639, -0.019815322, -0.00720192725, -0.00208942732, 0.0213251878, 0.00677769491, -0.00700818328, 0.0234363265, 0.00523442496, 0.000733637891, -0.000698563585, 0.00204099133, 0.00764286146, -0.0144038545, 0.00981412921, -0.00441268366, -0.0119920773, -0.0123595223, -0.0120856091, 0.00703490665, 0.0184390713, 0.00345732598, -0.00579227367, -0.00219799089, 0.00756269181, -0.00690129027, -0.00014415964, 0.00212617195, 0.00104304345, -0.00824413542, 0.00546157267, 0.000198650101, 0.00773639325, 0.00472668232, 0.00211448059, -0.00346734724, -0.0109899538, -0.0223807581, -0.00829758216, 0.0223807581, 0.0163279306, 0.0146042788, 0.00163095596, -0.0191205163, 0.0207372755, 0.00371453771, -0.0069948216, 0.0355419777, -0.00467323558, 0.0108429762, -0.00772303157, -0.00950681139, -0.00657727, -0.0103953611, 0.0105957855, 0.00166603026, 0.00132530823, -0.00442270469, -0.0108630182, -0.00296962587, 0.012239268, -0.0129474355, -0.00644031353, 0.00194244925, 0.0180382226, -0.0130676897, -0.00132280297, 0.000152197506, -0.0297430251, -0.000516928674, 0.0139495581, -0.0106625939, -0.00270907371, -0.00582567789, -0.00395504711, -0.0390427299, -0.00358426152, 0.00644365372, -0.000230697173, -0.0090792384, -0.0269237161, -0.0174770337, -0.00350409164, -0.0321481191, -0.00733554363, 0.0207372755, 0.00134034012, 0.0123127569, -0.0174235869, -0.0117582483, -0.0137624955, 0.00107143703, 0.010722721, -0.00345732598, -0.0145374713, -0.00802366808, 0.00430245, -0.00613299571, 0.025253512, -0.0158602744, 0.00904583465, 0.0109298266, -0.0173567776, 0.0245319828, -0.00286273262, 0.00894562248, -0.00791677553, -0.00234496896, 0.00360096362, -0.0313197, 0.0108563378, 0.0158736352, 0.00903247297, -0.0124797774, 0.00716184219, -0.00621316535, -0.0187864751, -0.0269905254, -0.0211114, 0.022260502, 0.0161141455, -0.0117114829, -0.00515425485, 0.0245987903, 0.0140564516, -0.0126401177, 0.00036744526, -0.00780320121, 0.00834434759, -0.00795017928, 0.0079434989, -0.0106492322, -0.00572212506, -0.00225811824, -0.0106091471, 0.0201760847, -0.00338550704, 0.00743575627, -0.0038013882, 0.00835770927, -0.0121123325, -0.0192407705, 0.014550833, 0.0107694864, -0.00513087213, -0.00353415543, 0.00582567789, -0.0217794832, -0.014510748, -0.0341790915, -0.00851804949, -0.0195614491, -0.00724869315, 0.0154059781, -0.0151253836, -0.0185994115, -0.0365841873, 0.0116580362, 0.00680775847, 0.00279592443, 0.00815728493, -0.0231290087, 0.035568703, -0.00206270418, 0.0224475656, 0.00265562721, 0.0135153048, 0.0165818036, -0.0159805287, 0.011965354, -0.0179981366, 0.000334876269, 0.00499725575, -0.00824413542, 0.0192674939, 0.0150452135, -0.00722197, 0.0329230949, 0.00291951979, -0.00744911749, -0.00206437428, 0.00824413542, -0.0258147, -0.0139495581, 0.00459640613, 0.0122192251, 0.0346066616, -0.0116713978, -0.0100078732, -0.00696809823, 0.00178712013, 0.00578893302, -0.0176240113, 0.0213118251, 0.00814392325, -0.00611963402, -0.00728209736, 0.0135219861, 0.0132814767, 0.0159938913, -0.0123996073, -0.00746916, -0.00719524641, -0.00413877, 0.00300470018, -0.00606618728, -0.00603278307, 0.00826417841, -0.00109565502, 0.00648707896, 0.00734890532, -0.00127436698, -0.0355954245, -0.00156498281, 0.00761613809, -0.00744911749, -0.0108696995, 0.00774975494, -0.0187330283, -0.0137090487, -0.0110634426, -0.0223941188, -0.0145241097, -0.0072420123, 0.00459306594, -0.0308386795, -0.00731550111, -0.00434921589, 0.00736894784, 0.0114576118, 0.0381074138, 0.00540478574, -0.00580897555, 0.0109231453, -0.0422495268, -0.0107962098, 0.0076027764, 0.00886545237, 0.00677101407, -0.0159404445, 0.0124062886, -0.00347068766, -0.00869175047, -0.00561857224, -0.0199756604, -0.00328863505, -0.00522106327, -0.0123461606, 0.00584572, 0.0102350209, -0.0245854296, -0.00420223782, -0.0179446898, -0.015192192, -0.00805707276, 0.00172532257, 0.0210312307, 0.0132547533, -0.00456968276, -0.0196549818, 0.00273245666, 0.0274982676, 0.016996013, 0.00205936376, 0.00398177048, -0.00917277, 0.00556846615, -0.00384147326, 0.0227816068, 0.0130008813, 0.00418219529, -0.0234630499, -0.00263391458, 0.00626661209, 0.00109314965, 0.0196549818, -0.020456681, -0.0251599792, 0.00777647784, -0.00688792858, -0.016822312, 0.00171196088, -0.0274180975, -0.0146310022, 0.00892557949, -0.023369519, -0.00014113239, -0.0067175678, 0.0170895457, -0.00169609394, -0.0112371445, -0.0014798023, 0.0100546386, 0.017463671, 0.0192140471, -0.0213652719, -0.035354916, -0.0128539037, 0.0423831418, 0.0183856245, 0.0208708905, -0.0281129032, -0.0235164966, -0.00763618061, -0.0264426973, 0.0184257105, 0.00525780767, -0.010936507, -0.0203497875, -0.00457970425, -0.00180382223, -0.0343661532, 0.0046698954, 0.0613032319, 0.0234764125, 0.0193877481, -0.0233962424, -0.00727541652, -0.020630382, -0.0127536915, 0.0316136554, -0.0143370461, -0.00556846615, -0.00355753838, -0.0170494597, 0.00935983285, 0.0027875735, -0.00527785, 0.00084345392, 0.0173835009, -0.00186060928, 0.0171162691, 0.00276586064, -0.0177309047, 0.00700818328, 0.00461644866, -0.0167822279, 0.0122993952, 0.0144038545, -0.00956025813, -0.00758273434, -0.0331903286, 0.00258547859, -0.000403772254, -0.00445944956, 0.0142301535, 0.00432249252, -0.0139629198, 0.00722865062, 0.00885209069, -0.000358676683, 0.0122593101, -0.0247056838, -0.00994106475, 0.029449068, 0.00805039145, 0.00161007838, 0.000420056749, 8.00524413e-06, -0.00321347592, 0.0103085097, -0.00688124774, 0.0254806597, -0.0254405737, 0.0107360827, -0.00319009298, -0.0224074814, 0.0017153013, 0.00477678841, 0.0106959976, 0.00241010683, 0.00976068247, 0.0127403298, 0.0127804149, -0.00869843177, -0.00234162854, 0.00254873396, 0.0056787, 0.000188524471, -0.00549163669, -0.00473002251, -0.00264226552, -0.00843119901, 0.00548495585, -0.00569874188, 0.00291617936, 0.0107160406, -0.00103135209, 0.00116997911, 0.0272176731, -0.0100746816, -0.00146894599, -0.00567201898, -0.000759943621, 0.0216325056, -0.0207773596, -0.0198687669, 0.030090427, 0.0020025766, -0.00616974, -0.0175705645, 0.0104955733, 0.000245937787, 0.00329030538, 0.0195213649, -0.0156464875, 0.00696141785, 0.0159805287, -0.0119453119, -0.0240643248, 0.0108563378, 0.0305447225, 0.00500727678, 0.0197351519, 0.0102684246, -0.00313163572, -0.0120522045, -0.0205635726, 0.00498389406, 0.000701903948, -0.00690797111, 0.00203598081, 0.00414879108, 0.0223807581, 0.0228484143, 0.00513421232, 0.0224876497, 0.00401183404, 0.000120359204, -0.00265562721, 0.00167855679, 0.0232225414, -0.000676850905, 0.0171563532, 0.00121340447, -0.0267366543, -0.0126200747, 0.00379804801, -0.000825916766, 0.0102216592, -0.00643697288, 0.0177041814, 0.005885805, 0.0196416192, -0.0244651735, 0.0253737662, 0.00665075937, 0.0095803, 0.00246689399, -0.0277655013, 0.00156080723, -0.0259616785, 0.0097339591, -0.000671005168, 0.0166886952, 0.00161926448, 0.0251466185, 0.0222471412, -0.000655138225, 0.00442270469, 0.00178544992, 0.00892557949, 0.00117415469, -0.00283935, 0.0144305779, 0.0214053579, -0.007769797, -0.00603946391, 0.00486697955, -0.00525780767, -0.00824413542, 0.0293956213, -0.0298231933, -0.0089122178, 0.009246259, 0.0178110749, 0.0159538053, 0.0180382226, -0.00770298904, 0.00917277, 0.0078432858, 0.00879864395, 0.00800362602, 0.0158068277, 0.000136017377, 0.00986757595, 0.0127937766, -0.0144973863, -0.00323518855, 0.00467323558, 0.029449068, 0.00606952794, -0.00442938553, -0.0165951643, -0.0100613199, -0.00192240684, 0.0320412256, 0.0182119235, -0.0166085269, -0.00672424817, 0.000407530199, 0.00772303157, 0.0183455404, -0.000609625131, 0.00695473701, -0.0107026789, -0.00227649044, -0.0144573012, -0.0189067293, 0.026669845, 0.0015724987, 0.00452625751, 0.00961370394, 0.0137758572, 0.00215289532, 0.00774975494, 0.00345064513, -0.00668750377, 0.0329230949, -0.00431581168, -0.000989596942, -0.0123060765, 0.00021399511, -0.0147779807]
|
21 May, 2021
|
Sort given array to descending-lowest-ascending form
21 May, 2021
Given an array arr[] of size N and an integer K, the task is to sort the array such that the first K elements of the array are in descending order and the last N – K elements of the array are in ascending order.
Examples:
Input: arr[]= {7, 6, 8, 9, 0, 1, 2, 2, 1, 8, 9, 6, 7}, K = 6 Output: 9 9 8 8 7 7 0 1 1 2 2 6 6 Explanation: The first K (= 6) elements of the sorted array are {9, 9, 8, 8, 7, 7}, which are in descending order. The last N – K (= 6) elements of the sorted array are {0, 1, 1, 2, 2, 6, 6}, which are in ascending order. Therefore, the required output is 9 9 8 8 7 7 0 1 1 2 2 6 6
Input: arr[]= {65, 34, 54, 56, 75, 34, 54, 65, 56, 75, 15}, K = 5 Output: 75 75 65 65 56 56 15 34 34 54 54
Approach: Follow the steps below to solve the problem:
Sort the array in descending order.
Sort the last (N – K) elements of the array in ascending order.
Print the array.
Below is the implementation of the above approach:
C++
// C++ program to implement
// the above approach
#include <bits/stdc++.h>
using namespace std;
// Function to sort first K array elements in
// descending and last N - K in ascending order
void sortArrayInDescAsc(int arr[], int N, int K)
{
// Sort the array in descending order
sort(arr, arr + N, greater<int>());
// Sort last (N - K) array
// elements in ascending order
sort(arr + K, arr + N);
// Print array elements
for (int i = 0; i < N; i++) {
cout << arr[i] << " ";
}
}
// Driver Code
int main()
{
int arr[] = { 7, 6, 8, 9, 0, 1, 2,
2, 1, 8, 9, 6, 7 };
int N = sizeof(arr) / sizeof(arr[0]);
int K = 6;
sortArrayInDescAsc(arr, N, K);
}
Java
// Java program to implement
// the above approach
import java.util.*;
class GFG{
// Function to sort first K array elements in
// descending and last N - K in ascending order
static void sortArrayInDescAsc(int arr[], int N,
int K)
{
// Sort the array in descending order
Arrays.sort(arr);
for(int i = 0, j = N - 1; i < N / 2; i++)
{
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
j--;
}
// Sort last (N - K) array
// elements in ascending order
Arrays.sort(arr, K, N);
// Print array elements
for(int i = 0; i < N; i++)
{
System.out.print(arr[i] + " ");
}
}
// Driver Code
public static void main(String[] args)
{
int arr[] = { 7, 6, 8, 9, 0, 1, 2,
2, 1, 8, 9, 6, 7 };
int N = arr.length;
int K = 6;
sortArrayInDescAsc(arr, N, K);
}
}
// This code is contributed by Amit Katiyar
Python3
# Python3 program to implement
# the above approach
# Function to sort first K array
# elements in descending and last
# N - K in ascending order
def sortArrayInDescAsc(arr, N, K):
# Sort the array in descending order
arr = sorted(arr)
arr = arr[::-1]
# Sort last (N - K) array
# elements in ascending order
for i in arr[:K]:
print(i, end = " ")
for i in reversed(arr[K:]):
print(i, end = " ")
# Driver Code
if __name__ == '__main__':
arr = [ 7, 6, 8, 9, 0, 1,
2, 2, 1, 8, 9, 6, 7 ]
N = len(arr)
K = 6
sortArrayInDescAsc(arr, N, K)
# This code is contributed by mohit kumar 29
C#
// C# program to implement
// the above approach
using System;
class GFG{
// Function to sort first K array elements in
// descending and last N - K in ascending order
static void sortArrayInDescAsc(int[] arr, int N,
int K)
{
// Sort the array in descending order
Array.Sort(arr);
Array.Reverse(arr);
// Sort last (N - K) array
// elements in ascending order
int temp = 0;
for(int i = K; i < N; i++)
{
for(int j = i + 1; j < N; j++)
{
if (arr[i] > arr[j])
{
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}
// Print array elements
for(int i = 0; i < N; i++)
{
Console.Write(arr[i] + " ");
}
}
// Driver code
public static void Main()
{
int[] arr = { 7, 6, 8, 9, 0, 1, 2,
2, 1, 8, 9, 6, 7 };
int N = arr.Length;
int K = 6;
sortArrayInDescAsc(arr, N, K);
}
}
// This code is contributed by sanjoy_62
Javascript
<script>
// Javascript program to implement
// the above approach
// Function to sort first K array elements in
// descending and last N - K in ascending order
function sortArrayInDescAsc(arr, N, K)
{
// Sort the array in descending order
arr.sort((b,a)=> a-b)
var temp = 0;
for(var i = K; i < N; i++)
{
for(var j = i + 1; j < N; j++)
{
if (arr[i] > arr[j])
{
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}
// Print array elements
arr.forEach(element => {
document.write(element+" ");
});
}
// Driver Code
var arr = [7, 6, 8, 9, 0, 1, 2,
2, 1, 8, 9, 6, 7 ];
var N = arr.length;
var K = 6;
sortArrayInDescAsc(arr, N, K);
//This code is contributed by rrrtnx.
</script>
Output:
9 9 8 8 7 7 0 1 1 2 2 6 6
Time Complexity: O(N * log(N))Auxiliary Space: O(1)
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form
|
https://www.geeksforgeeks.org/sort-given-array-to-descending-lowest-ascending-form/?ref=ml_lbp
|
Pandas
|
Sort given array to descending-lowest-ascending form
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00346814981, 0.000909944065, -0.00504517043, 0.0221365746, 0.0110488581, -0.0171108339, -0.00248048804, 0.0154269524, -0.0322528221, 0.0373821855, -0.0244422, -0.0351542793, 0.0165668111, 0.0111848637, -0.00263268524, 0.00411903532, -0.0168517753, 0.0162688941, -0.0207506102, -0.0250509866, -0.024869645, -0.000783248106, 0.0236132108, 0.0390401632, -0.0140539408, 0.017693717, 0.00628217636, 0.00316537474, -0.0330040939, -0.0254913867, -0.00592920836, 0.00523298793, 0.0207894687, -0.0398432463, -0.0258022584, 0.0247789752, 0.0197532345, 0.0272270814, -0.0121951932, 0.0178621057, -0.0230173748, -0.0244551525, 0.00235905428, 0.0017567426, -0.014261188, 0.0236650221, 0.00944917, -0.0117353639, 0.0108869467, -0.0280301627, 0.0102263466, 0.000138434552, 0.00714354683, 0.033677645, -0.0324082561, 0.0333667733, -0.0456202552, 0.0271234568, -0.00441047642, 0.00121029036, 0.055697646, -0.0359573625, -0.0283928458, -0.0148440702, 0.0345066339, -0.0416048467, -0.0516563281, 0.0355687737, 0.00292412634, 0.0261131283, -0.0242349524, 0.0120591875, 0.0153751401, -0.000574381964, -0.0258540697, -0.00160454551, 0.060412515, 0.00321394834, -0.0171237867, 0.0576146804, -0.0489621162, 0.00157863961, 0.00190732046, -0.0239240807, 0.0292995516, 0.000541999587, -0.00867199339, -0.0565266311, 0.02009001, 0.0112755345, -0.00879504625, -0.0102004409, 0.00665781135, -0.0158673525, 0.00143210951, 0.0609306321, 0.0233282465, 0.00752565823, -0.00364301447, 0.0275120456, -0.0178102925, 0.0203361157, 0.0309316218, -0.0240924694, 0.00563129084, 0.0171237867, 0.01933874, 0.0226417407, 0.016799964, 0.0326932222, 0.00794662908, 0.00584177626, 0.00898934063, 0.0357760228, -0.0109452344, -0.0125708291, 0.0121369055, -0.0457497872, 0.0117353639, 0.0389883518, 0.0436514094, 0.00909296423, -0.00948155206, 0.0379521176, -0.0576146804, 0.0219163746, 0.00864608772, 0.0122988168, -0.00460153213, 0.00182798377, 0.0300767273, -0.01493474, 0.0252841394, -0.0344807282, -0.00362682343, 0.00167254847, 0.0013786786, 0.0253229979, -0.0226676464, 0.027252987, 0.0182377398, -0.0502055958, -0.000323013955, -0.015012458, 0.0266571511, 0.0391437858, 0.0175382812, 0.0500760674, -0.0342734791, 0.0218645632, -0.0632621646, 0.00689744065, 0.0181600228, -0.0158803053, 0.0252841394, -0.002809169, -0.0144813871, -0.00180369697, -0.00733136432, -0.0468119271, 0.00616883812, 0.0249862224, -0.00872380566, -0.0148699759, 0.0108027523, 0.0169942584, -0.0194423646, -0.0286519043, -0.0238722693, 0.0324859731, 0.0061073117, 0.0212687291, 0.0347656943, 0.0494543277, -0.0522262566, -0.00302775, 0.0299471989, 0.00968232285, 0.0323823504, -0.0323564447, 0.00577377342, -0.0211262461, -0.00371101755, 0.0232634805, 0.012506064, -0.015012458, 0.0182377398, -0.0210096687, 0.0224215407, 0.00736374687, -0.0226676464, -0.013069517, 0.00865256414, 0.0203879289, 0.00376282912, -0.0223567747, -0.0499724448, 0.0101227229, -0.0424079262, 0.0147274937, -0.00832874049, -0.0287814345, 0.0167740583, -0.00269583077, 0.033833079, -0.0303098802, -0.0405427031, -0.0290404931, 0.00913829915, -0.00712411711, -0.0470968932, 0.0405427031, -0.0541951023, -0.0377707742, 0.0298694801, 0.00212266319, -0.0283928458, 0.0238334108, -0.000769485603, -0.00923544634, -0.0203879289, -0.009183635, 0.0559048913, 0.00313299242, -0.0394805633, -0.0353874341, 0.0360609852, 0.01493474, 0.0236520693, -0.0327191278, -0.0103040645, 0.0119167054, 0.0103364466, -0.0104594994, 0.0416307524, -0.0258670226, -0.044506304, 0.0437032208, 0.00460153213, 0.0127068348, 0.0349988453, 0.0395064689, -0.0525889397, -0.00948802941, 0.0276933871, 0.00557947904, -0.00628217636, 0.020828329, 0.0420193374, 0.0375376232, -0.00816682912, -0.0115540233, -0.015983928, 0.000694196671, -0.00783005264, 0.0139503172, -0.0355946794, 0.0126874056, 0.000696625328, 0.0227971748, -0.00524917897, 0.0207117517, 0.0025177279, 0.033833079, 0.0416307524, 0.0228360351, 0.0208930932, -0.00804377627, 0.0141705172, -0.026359234, 0.0085359877, 0.00227324106, 0.016722247, -0.0449467041, 0.01493474, -0.0147533994, -0.0393769406, -0.0128363641, 0.0391178802, 0.015608293, -0.0141575644, -0.000226069285, 0.0384184234, 0.0374599025, -0.0333926789, -0.0435995981, 0.016204128, -0.0117288874, -0.0644020215, 0.00798548758, -0.0106861759, -0.0326155052, -0.0120009, -0.0170590226, -0.000568310264, 0.0213723518, -0.0201547761, -0.0148311174, -0.0202713516, -0.00349405571, 0.01418347, -0.0421747752, 0.0176419057, 0.00112933456, -0.0435477868, -0.0197661873, -0.036812257, -0.0126161641, -0.0159580223, -0.00486382935, 0.0130500877, -0.0458016, -0.00826397631, -0.0168258697, -0.0123247225, -0.0149476938, 0.0565784462, 0.0119944233, -0.0169813056, -0.00235581608, 0.0132508585, -0.0520190075, 0.0115734525, 0.0418120921, 9.22897e-05, -0.00644732593, -0.01418347, 0.0194682702, 0.012693882, -0.0490139276, -0.0305948462, -0.00799844, -0.0409571975, 0.004199991, 0.01933874, -0.0197661873, -0.0355428681, 0.00586444372, -0.0299990103, -0.00704639964, 0.0323564447, -0.0288591515, 0.0130177056, 0.0266312454, -0.00303746457, -0.0119620403, -0.0289886817, 0.00357501162, 0.0583400428, -0.00521032047, 0.00103785435, 0.0143907173, -0.00123619626, -0.0276674815, 0.0449726097, -0.0429260433, -0.0138078351, -0.0129076056, 0.0163466111, -0.00111233373, 0.0314497389, 0.0020757087, -0.0340144224, 0.000650885282, 0.00841941126, -0.00819921121, 0.0152974231, -0.0154269524, 0.00171464554, -0.00522003509, -0.00492859399, -0.0159321167, -0.000803487084, 0.010861041, 0.00542080542, -0.0119167054, -0.0260224584, -0.0141705172, 0.0310093388, 0.000435137859, 0.00276059541, 0.0236002579, 0.0236132108, 0.0113985874, 0.0107897995, -0.00697515858, -0.0324859731, 0.028004257, -0.0294808932, 0.0187169984, -0.0396878086, -0.0173439868, -0.00815387629, 0.00916420575, -0.000705125683, 0.0174087528, 0.0226676464, 0.00514879404, -0.0339626111, -0.0309834331, 0.00598425837, 0.025465481, 0.0287555289, -0.0108027523, -0.0157637279, 0.0219681878, -0.0302321631, -0.0271493625, 0.033755362, 0.0183154587, 0.017551234, 0.0461642817, -0.0512936451, -0.00987661723, -0.0125319697, 0.0324600674, -0.0179527756, 0.0232893862, -0.00601664092, -0.00984423514, 0.00214533089, 0.0101486286, -0.020763563, 0.0282374099, -0.0398432463, 0.00413522637, 0.00659952313, -0.00270068808, 0.0292218346, -0.000128315063, -0.0327709392, 0.0223179162, -0.0200641043, 0.0141187049, -0.0303098802, -0.0217479877, 0.00684562931, -0.0186004229, -0.0268643983, -0.0259576924, 0.0144036701, 0.00488002039, -0.0300249159, -0.00320261461, -0.0257245395, 0.0127910292, -0.0361387059, 0.00931316428, -0.00355882035, 0.00231857644, -0.0511123, -0.0328227505, -0.000393243186, -0.0307243746, 0.0513713621, -0.0195200816, 0.0194941759, -0.0194812231, 0.0277192928, 0.0301285405, 0.009967288, 0.00254201447, 0.00626922306, -0.013179617, 0.0215407405, 0.0178361982, -0.0208801404, 0.0140280342, -0.0164631866, 0.00494802324, 0.0438586585, -0.0256468225, 0.019261023, 0.0266830567, 0.0461642817, 0.0198179986, -0.0035685352, -0.0233023409, -0.035232, -0.0517081395, 0.031812422, -0.00645704102, -0.0336258337, -0.0217997991, -0.0281596929, -0.0207376573, 0.0170590226, -0.000242260459, -0.0340921395, -0.0119490875, -0.00629512919, 0.0163207054, -0.0212039631, -0.022926705, 0.001535733, 0.0347397849, -0.0644020215, 0.00378549681, 0.0124672055, 0.0273566097, 0.00144020503, -0.071914725, -0.0269939285, 0.0456979759, 0.00637284666, -0.0378743969, -0.0429001376, 0.0408535749, 0.00613969378, -0.0126679763, -0.012991799, -0.00575758191, 0.0167870112, 0.0146756815, -0.00368187344, -0.0145202465, 0.00549528515, -0.0151160816, -0.00630808203, 0.00741555868, 0.0145331994, 0.00402512634, 0.0120138526, -0.0128946519, -0.0119426111, 0.0221365746, 0.0156860109, -0.0208412819, 0.018224787, -0.00471487036, -0.0261519868, 0.0119814696, -0.000870275719, 0.0204656459, 0.0032269014, -0.041216258, 0.00709173502, 0.0046274378, -0.00202551601, 0.0246364921, 0.0221883878, 0.0270457398, -0.022253152, 0.0300249159, -0.026216751, 0.0200641043, -0.000524998875, 0.010232823, -0.00383730861, 0.00483792322, 0.00845827, 0.0323823504, 0.00245943968, 0.0080373, -0.0160227884, 0.0128234113, 0.00858132355, -0.0149088344, -0.0269162096, 0.00161830802, 0.00102004409, 0.0252711866, 0.0127133112, 0.00834817, -0.0113403, -0.0286519043, -0.0021242823, 0.0304394104, -0.019714376, 0.0252193753, 0.0124348225, -0.0282374099, 0.00662866747, 0.00269259256, 0.00369806448, 0.04779635, -0.0101356758, -0.00904762931, 0.00661247596, -0.0176419057, 0.00461448496, 0.00165392854, 0.0071694525, -0.0306466576, -0.00554385874, -0.0133415284, -0.0186651871, -0.00625303201, -0.00892457645, -0.00402188813, -0.00408341456, 0.0288073402, 0.000778390793, 0.0156212458, -0.0254525281, 0.000956898497, 0.0117871761, -0.0199734345, -0.00803082343, -0.0123830112, -0.00953336433, 0.026061317, -0.00576082, -0.00374339987, -0.00291603082, 0.00592273194, 0.0202454459, 0.0251027979, -0.00835464709, -0.0201288704, -0.0551795252, -0.0146756815, 0.0154010467, -0.0161005054, 0.00547261722, 0.00906705856, 0.00805025268, -0.00617855275, -0.0301026329, -0.0290404931, -0.0170460697, -0.0147274937, -0.0161523167, 0.0316051766, 0.00247077341, 0.0223438218, -0.012991799, -0.0141446115, -0.0154917166, -0.0437809378, 0.00392474094, -0.0187429041, -0.00269583077, -0.0183025058, 0.00444609672, -0.019934576, 0.0149217872, 0.0248566922, -0.0255302452, 0.0327709392, -0.0402318351, 0.000114957351, -0.0290923044, 0.0583918542, -0.00301803509, -0.0177196227, -0.00939088222, -0.0261908453, 0.000726174214, 0.00882095285, 0.00151063665, -0.00548880873, 0.0038535, 0.0248437393, 0.012285864, -0.00577701163, 0.00584825268, -0.0164890941, -0.0182506926, 0.012285864, -0.030543033, -0.0084777, 0.0291441157, 0.0119296582, 0.00235581608, 0.00992195215, -0.0167611055, 0.0149995051, 0.00196237047, -0.00507431431, -0.0219163746, -0.00511317328, -0.00731841149, 0.0264239982, 0.00491564116, -0.0212687291, -0.00872380566, 0.0409831032, 0.0202195402, 0.0086396113, -0.00976651721, -0.00369158806, 0.0186133757, -0.00401865, -0.0409053862, 0.00057276286, -0.00442019105, -0.0168647282, 0.0237556938, -0.028004257, -0.0311906803, 0.00670314673, 0.0261778925, 0.00733136432, -0.00171464554, -0.00486059114, 0.00905410573, 0.0207506102, -0.0145720579, -0.00280269259, 0.0328745618, -0.0387811027, -0.0282633156, -0.000461043732, -0.00510993507, 0.0464751497, 0.00264401897, 0.0470709875, -0.0186781399, 0.00673552928, 0.0201677289, -0.0111136232, -0.0228748936, 0.0166186225, -0.000818868692, -0.00813444704, -0.0287555289, -0.0326932222, -0.00627246127, -0.00634694099, -0.0122793876, 0.00563776726, 0.0270975512, -0.0432110094, 0.00927430578, -0.0280819759, 0.0084777, -0.00633398816, -0.016657481, -0.00528803794, 0.0181341171, 0.00564748188, -0.0100579588, 0.0107120816, -0.0284187514, -0.0165538583, 0.0109322816, -0.00732488791, -0.0138207879, -0.0176678114, 0.0124089168, -0.0197532345, -0.0117029818, 0.00243029557, 0.03823708, 0.000608788221, -0.0107897995, 0.0125125404, 0.0105501702, 0.0243644807, -0.0332631506, -0.0206987988, 0.0144943409, -0.00242867647, -0.00120705215, -0.00757747, -0.0244033393, -0.0102133937, 0.0433405377, 0.010750941, 0.00769404648, 0.0299212933, -0.0178232454, 0.0373821855, -0.0111136232, -0.0113532525, -0.0468637384, -0.00663190568, -0.001245911, -0.0233800579, 0.0286259986, -0.0187817644, -0.0077134762, -0.0191444457, -0.0310352463, -0.0194553174, 0.0183802228, -0.00532689691, 0.0317606106, -0.012771599, 0.0037304468, 0.0328227505, 0.0150513165, 0.0129788462, 0.0211780574, -0.0180045869, 0.00182474544, 0.00281564542, 0.0610860661, 0.00192675, -0.0261778925, 0.0109840939, -0.00422913488, 0.0392474085, 0.0121498583, 0.0227324106, -0.0200511515, -0.028004257, -0.031216586, -0.0390401632, 0.0217868462, -0.0259965509, 0.00755156437, 0.0213853046, 0.00067921984, -0.0273047984, -0.040102303, -0.00410932, 0.00758394692, 0.0173958, -0.00999967, 0.00193808367, -0.0136394463, 0.0124413, 0.0247789752, 0.00246915431, -0.00891162269, -0.0202972572, 0.0241054222, -0.0124736819, 0.0146886343, -0.0064376113, 0.0317865163, -0.00712411711, -0.0232116692, 0.0323823504, -0.0202583987, -0.0274343286, 0.0290923044, 0.0160357412, 0.00916420575, 0.0130500877, -0.0309575275, 0.0121951932, -0.00454972032, -0.0264239982, 0.000293869845, 0.0225769747, -0.00268611615, 0.0104206409, 0.0113208704, -0.0113856345, 0.00204494549, -0.00664485851, 0.00855541695, -0.00372397038, -0.0427706093, -0.00209675729, 0.00418703817, 0.0173310339, 0.0269680228, 0.00413522637, -0.0101939645, 0.00568957906, 0.00806320552, 0.0535215512, -0.0358796455, -0.0120138526, 0.0181729756, -0.0139762228, 0.0168258697, 0.0101939645, -0.0187429041, -0.0192480702, 0.0227583162, -0.00893105287, -0.024118375, -0.00535280257, -0.0224344935, -0.00985718798, 0.00738965254, -0.00553090544, -0.00887276419, -0.0235614, -0.0178621057, 0.00849712919, -0.0235743523, 0.0453352928, 0.0120332818, -0.00928725861, 0.0279783513, -0.0183413643, -0.0563193858, -0.0386774801, -0.0102781579, 0.0234966334, -0.00556976441, -0.0180823058, 0.0111848637, -0.0444804, 0.0241572335, -0.010187488, -0.0186133757, -0.0382888913, 0.0421229638, 0.00437485566, -0.00572196161, -0.0105372174, 0.0227971748, 0.0217868462, 0.0113208704, 0.0192480702, 0.0474077612, 0.0118066054, 0.0249991752, 0.0182895511, 0.0186522342, 0.016722247, 0.00367215858, 0.0416825637, -0.00294031762, -0.00320261461, -0.0171496924, -0.0388329141, 0.00539489975, 6.05651148e-05, -0.0494802333, -0.012583782, 0.000778795569, -0.00736374687, -0.00211132923, 0.00681972317, 0.0158025883, 0.00698811142, 0.0049318322, -0.0104400702, -0.0440140925, -0.00787538756, -0.0231987163, -0.00367215858, -0.00569605548, 0.0153492345, -0.00565395877, -0.0097276587, -0.0132443821, 0.00318804244, -0.0150383636, 0.025543198, -0.0554385856, -0.033677645, -0.00184093672, 0.0244033393, 0.0467342101, -0.00520384405, 0.00539813796, -0.0102457758, -0.0227194577, -0.0130565641, 0.0179657284, 0.0457238816, -0.00501602609, 0.00128800806, 0.0120268054, -0.0268125869, 0.0121045234, 0.00441047642, -0.0211780574, -0.0136783049, -0.00471163215, 0.00657685567, 0.0198827647, -0.0157637279, 0.0208153762, -0.025543198, -0.015530576, -0.0289886817, -0.00612674095, -0.00334185874, 0.00389235863, -0.0171626471, 0.0291700214, 0.0119749932, 0.0158544, 0.00779767, -0.0266053397, 0.0287296213, 0.00343576749, -0.0368381627, -0.0013786786, -0.0163207054, 0.00672257598, -0.00559567055, -0.00891162269, 0.0194812231, 0.00184093672, 0.00132848602, 0.000928563939, -0.0210226234, 0.0123182461, 0.0129658934, -0.00121433823, 0.0170201641, 0.0535733625, -0.00816682912, -0.0211521517, 0.00588387344, 0.0174346585, -0.00548233232, 0.00499659684, -0.0320973881, -0.00339367031, 0.00477639679, 0.0123052932, 0.00360091752, 0.041449409, 0.00820568763, 0.0260872226, -0.0219034217, 0.0184061285, -0.00418703817, -0.00655742595, 0.00114876393, 0.0128946519, -0.0207117517, 0.0250380337, -0.00683267601, 0.00603607, 0.00432952028, 0.0391437858, 0.014261188, 0.000272416539, -0.0605161376, -0.015232658, 0.0117029818, 0.008808, 0.00790129416, -0.00187817635, 0.00770052336, 0.0111848637, -0.0198050458, -0.0394028462, -0.00487030577, -0.00388912042, 0.00147177791, 0.00234772055, -0.00225381157, 0.0216443632, -0.00585796731, 0.00937145203, -0.00472782319, 0.00748032331, 0.0172403641, 0.0241054222, 0.0014045845, -0.0282633156, -0.0142223286, -0.0100514814, -0.0215666462, -0.0128234113, 0.0109517109, 0.00240115146, 0.000875942584, 0.00641170563, 0.00415141741, -0.0212298688, -0.00755804079, 0.00518117612, 0.0067420057, 0.0294549875, 0.00573815266, -0.0120462347, -0.00446228823, -0.0038535, 9.78048192e-05, -8.41941146e-05, 0.041371692, 0.0133544821, 0.00828340556, 0.00477639679, 0.00310708652, 0.0349211283, -0.0185227059, 0.00097875658, 0.0104983579, 0.0189242456, 0.0161911752, 0.0176807642, 0.00132039038, 0.00153330434, 0.00432952028, -0.0102652051, -0.0239240807, 0.0166186225, 0.00516498508, -0.0370195024, -0.00842588767, 0.0146238701, 0.00581910834, 0.0028334558, -0.0327709392, 0.0106926523, 0.00677438779, -0.00344872032, -0.00737669971, 0.00368187344, -0.00852951128, 0.0316310823, 0.0587545373, -0.00955927, 0.0235743523, -0.0205174573, 0.00901524629, -0.000548476062, 0.0117029818, -0.00709821144, 0.0155046694, -0.0060587381, 0.000990090426, -0.00626598485, 0.0093584992, -0.0256338697, -0.017616, -0.025387764, 0.0234318692, -0.005414329, 0.0222661048, -0.00473429961, 0.0188853871, 0.0010249014, 0.0167352, 0.00662219105, 0.0267089643, 0.00384378503, 0.0229008, -0.00641170563, -0.0170201641, -0.00862018205, 0.00625950843, -0.0324859731, 0.0245976336, -0.00689096423, 0.00476668216, 0.0207247045, 0.030465316, -0.00541109079, -0.016799964, 0.0241054222, 0.00298403366, 0.0173310339, -0.0250768922, 0.0388070084, -0.00983775873, -0.00187493814, 0.00972118229, -0.00846474711, -0.0121887168, 0.000556976418, -0.0119296582, -0.00131229474, -0.0450762324, -0.002781644, -0.00519089075, 0.0141705172, 0.0057543437, -0.00153978076, 0.00532689691, -0.00663190568, 0.00960460585, -0.000665052561, 0.0252582338, -0.00434895, 0.0141057521, -0.013445152, -0.0355687737, -0.0102069173, 0.0050322176, 0.00229428965, -0.0275120456, 0.0315533616, 0.0317606106, -0.00194941752, -0.00294355582, -0.00552766724, -0.0445322096, -0.0308798105, -0.0228748936, -0.0208930932, -0.01418347, 0.00586120551, 0.000616074249, -0.0037304468, -0.0145461522, 0.00406398531, -0.0196496099, 0.0115151638, 0.0322010107, -0.00121595734, 0.0083676, 0.00337100285, -0.0471746102, 0.0031232778, -0.00633722637, -0.0129788462, 0.0106537938, 0.00819921121, 0.00336128799, -0.0131342821, -0.00318642333, -0.00731193507, -0.015012458, -0.00166121463, -0.00740908179, -0.0174217056, 0.00348110287, -0.00153249479, 0.015608293, 0.0194553174, 0.0174605642, 0.0144813871, 0.0033645262, -0.00168873963, 0.0153621873, -0.00781062292, 0.0124153933, 0.00902819913, -2.07322937e-05, 0.0105436938, 0.00420646742, 0.00117952714, 0.0163077526, -0.00100304338, -0.0251157526, -0.00979242288, -0.00031754942, 0.0138596464, 0.016799964, -0.00297431904, -0.00567986444, -0.017473517, 0.0118195582, -0.0195589401, -0.0399209633, 0.0053754705, -0.00469867932, -0.00279621594, -0.0152585637, 0.00332242926, 0.0204008818, 0.026501717, -0.0137042115, -0.0313720219, 0.0105890287, -0.0132638114, -0.0108221816, -0.00835464709, 0.013665352, 0.00504193222, 0.00271687936, 0.0247789752, 0.00179074402, 0.00574139087, 0.0123894876, -0.0224085879, 0.0194682702, 0.0204267874, -0.0110877175, 0.00617531454, -0.0169294942, 0.00970822852, 0.0197014231, 0.0162948, -0.00596482912, 0.0190667287, -0.000577215396, 0.00152116094, 0.00433275849, 0.00352319982, 0.015012458, -0.0224344935, 0.0131472349, -0.00289660133, 0.00490592606, 0.00781062292, 0.00486059114, -0.0057025319, 0.0226935521, 0.0377448685, -0.0384184234, 0.0163725168, -0.005505, 0.0202065874, -0.01418347, -0.000203502845, -0.0125125404, -0.013367435, 0.0312424917, 0.0119555639, -0.00299374829, -0.0116058346, 1.41293303e-05, -0.007765288, 0.00706582889, 0.0129853226, 0.0039636, 0.00519412896, -0.0205822233, 0.0131731406, -0.0208930932, -0.017616, -0.0100709116, 0.0115734525, 0.00346167339, -0.00694925245, -0.00614293199, -0.0112884874, 0.00632103486, 0.000204514785, 0.0140539408, -0.0147533994, -0.019040823, -0.0428742319, 0.00249991752, -0.00113823963, 0.0272788927, 0.0124995876, 0.0194553174, -0.00320747192, 0.0110035231, 0.0196884703, 0.011424494, 0.000328073686, -0.00872380566, -0.0323823504, 0.00886628777, 0.0254913867, 0.0208930932, 0.00845179334, -0.0117742233, 0.0173310339, 0.028522376, 0.0146497758, -0.00393445557, -0.00149120728, 0.00617207633, -0.0365531966, -0.0309834331, 0.0264887642, 0.0237686466, 0.0030747042, -0.0147404466, -0.0038340704, 0.0299990103, -3.07063124e-06, 0.0131925698, 0.00860722922, -0.0322528221, 0.0101227229, -0.00121676689, -0.0181341171, -0.00373692345, -0.000968232285, 0.00048937829, 0.0441177152, -0.00386321452, -0.00225219247, -0.0288073402, -0.0307502802, -0.00757099362, 0.0167740583, -0.0274084229, 0.0547132194, 0.0108998995, 0.0090800114, -0.0237427391, -0.0048832586, 0.0067420057, 0.00522651151, -0.00434895, 0.0211910103, -0.00617531454, 0.0157378223, -0.00821216404, -0.0256727282, -0.000274238031, 0.00261811307, -0.010045005, -0.00628541457, -0.0181988813, 0.0294549875, 0.0237556938, 0.0344289169, -0.0120915696, 0.0148958815, -0.00215504551, 0.0113597289, 0.000578024948, -0.0108351344, 0.0126355933, 0.00151549408, 0.000458615046, -0.0019963719, 0.0136912586, 0.0424597375, -0.016657481, 0.0106537938, -0.00318480423, 0.00954631716, -0.011800129, 0.0234707277, 0.0028836485, 0.0106602702, -0.00611378811, -0.0180175398, 0.02867781, -0.0188724343, 0.0240795165, 0.0330818109, 1.59508381e-05, -0.0244810581, -0.0263333283, 0.0170590226, 0.000952041126, -0.0186781399, 0.0172403641, -0.0255172923, -0.00316375564, 0.0100255758, -0.0312943049, -0.0252711866, -0.000846798474, 0.0172144584, 0.00226028822, -0.0090800114, -0.0287555289, -0.0312684, -0.0354133397, -0.00528479973, 0.0240277052, 0.00491887936, 0.00803082343, 0.00501602609, 0.0133285755, 0.000814416155, -0.0332890563, -0.0324859731, 0.0309057161, 0.0260872226, 0.00720831146, 0.049428422, -0.000198139518, -0.0136005878, 0.000403767452, -0.0346102566, -0.00843236409, 0.00870437641, 0.0118908, 0.0173180811, -0.0218516104, -0.011126576, 0.000713626097, 0.00849712919, 0.00924839918, 0.015530576, -0.00488973502, -0.0129011292, -0.00205789832, -0.0114698289, -0.0143518578, -0.0144295758, 0.0147533994, 0.0203231629, 0.0251546111, -0.00074357976, 0.0155046694, -0.00538842333, 0.0452575758, 0.016048694, -0.0267866813, -0.0133156227, -0.028522376, -0.0300508216, 0.00164259481, 0.00779119367, -0.0152585637, -0.000429875712, -0.0156860109, -0.0235354938, -0.016048694, 0.00164502347, 0.0096240351, 0.000535927888, -0.00595187629, -0.00202875421, -0.0300249159, 0.0290923044, 0.020906046, 0.0151808467, -0.004779635, -0.00157054409, 0.0246624, 0.0305689406, 0.0187299512, 0.0318383276, -0.0180045869, -0.00117305072, 0.00374987628, -0.0129658934, 0.0101097701, 0.000605549954, 0.0088792406, 0.0102975881, -0.0145072937, 0.0167740583, -0.00484116143, -0.0245069638, 0.000340824248, -0.0410608202, 0.024714211, 0.018224787, -0.0179009642, -0.0315015502, 0.0134192463, 0.00737022329, -0.000812797, 0.0211521517, -0.0115864053, 0.00724069355, -0.00130015146, -0.0198568571, -0.0119685167, -0.0191703513, 0.0241054222, -0.0195977986, 0.0135099171, 0.00919658784, -0.0135746812, -0.016877681, 0.00368187344, 0.0131925698, 0.0243385751, -0.0239111278, 0.0452575758, 0.00726659968, 0.0158544, 0.0086007528, -0.00786891114, 0.0192351174, -0.000258856424, 0.0129335113, -0.0233800579, 0.00961108226, -0.0121239526, 0.00939735863, 0.0290923044, -0.00121838599, -0.0172015056, 0.0186781399, -0.00838055275, -0.00185388967, 0.00413198816, -0.0207117517, 0.0126485461, 0.0153621873, -0.0147533994, 0.0212428216, 0.00795958191, -0.0113791581, -0.0320714824, 0.0021485691, -0.00764871156, -0.00515203224, 0.0219552349, -0.0137301171, 0.0086979, 0.0083611235, 0.0149088344, 0.0171367396, 0.00852303486, -0.00505812326, 0.0106667466, -0.00374016166, -0.00438457029, -0.0106019815, -0.0346879736, -0.00947507564, 0.00165797642, 0.0213853046, 0.00021756893, 0.00862018205, -0.0191444457, -0.00689744065, 0.000824940391, 0.0319160447, -0.0292477403, 0.0151549401, 0.00324147334, 0.0374858081, 0.0106214108, 0.00557300262, -0.0127327405, 0.0107120816, 0.00858132355, -0.00293060276, -0.0112755345, 0.00907353498, 0.0344289169, 0.00681324676, 0.00406398531, -0.00664485851, -0.00864608772, -0.00845827, 0.0266312454, 0.0149606466, -0.0127133112, 0.0193775985, 0.00948155206, -0.0249214582, -0.00749975257, -0.00555681158, -0.0143259522, 0.0217868462, 0.0187299512, 0.000103927108, 0.0172274113, -0.00749327615, -0.000751675339, 0.0109517109, -0.00505812326, 0.00567986444, 0.0125967348, -0.011612311, 0.00733784074, 0.00948802941, 0.00627893815, 0.0374339968, -0.00679381751, -0.0227971748, 0.00821864, 0.0148958815, -0.00916420575, -0.00554709695, -0.0140150813, -0.00687153498, 0.0222920105, 0.0028318367, 0.0216702688, 0.0019737042, -0.0121822404, 0.0177455284, -0.00329976156, 0.00229752786, 0.0137689756, 0.00640522921, 0.00490592606, -0.0156730581, 0.00821864, -0.012771599, 0.017771434, 0.00928078219, 0.0070334468, 0.00128800806, 0.0110877175, -0.0276933871, -0.00585149089, 0.0157378223, 0.0193905514, 0.0260483641, -0.0101291994, 0.00943621714, -0.000870275719, 0.0172792226, -0.00889867, -0.0118584167, 0.00402188813, -0.0113079175, -0.00391178811, -0.00959165208, 0.000390207337, 0.0049318322, 0.0188335758, 0.0182118341, 0.0186392814, 0.0287814345, -0.00309251458, 0.0332890563, 0.0165668111, 0.0052750851, -0.0039571235, 0.00102571095, -0.00618502917, -0.0155046694, 0.00676791137, 0.00536575541, 0.0176419057, 0.00646675564, -0.00612026453, 0.013587635, 0.00587415835, 0.0105372174, -0.0147793051, -0.0122923404, -0.013665352, -0.0101032937, -0.0259447396, 0.00699458783, -0.0146886343, 0.014857023, 0.00164745213, -0.00281888363, 0.0267089643, 0.0148440702, -0.0174476113, -0.0396878086, 0.00219066604, -0.00184741314, -0.0311129633, 0.00832874049, -0.0116770761, -0.0279006343, -0.000542809139, 0.00453352928, -0.0136135407, 0.0113791581, 0.00705935247, 0.00641494384, -0.00114147784, -0.009183635, 0.00259058806, -0.00944917, 0.00961755868, -0.0143648107, 0.0186004229, 0.00167092937, -0.0166315753, -0.0179527756, -0.00944917, -0.00376930577, -0.00487354398, 0.0100514814, -0.00474725291, -0.00162154622, -0.00580291729, -0.00423885, 0.00239305571, -0.021281682, -0.00220847642, -0.00146044407, 0.0198179986, -0.0177584812, 0.0299471989, 0.00114552572, -0.0210355762, -0.020763563, -0.0137171643, -0.0226028804, -0.0217738934, 0.0174346585, 0.0108351344, -0.00871732924, 0.00521032047, -0.0152844703, 0.0212039631, -0.00410608202, 0.00783005264, 0.0116511704, 0.000303584558, 0.0193646457, 0.00105242641, -0.0104465466, 0.0122534819, 0.0161652695, 0.0128104584, -0.0175123755, 0.0163725168, 0.0105890287, -0.0164113753, -0.00460800854, -0.0180823058, -0.03303, -0.0163077526, 0.00557947904, -0.0104854051, 0.0180823058, 0.023146905, 0.00175512349, -0.0193905514, 0.0292995516, -0.00581910834, 0.00345519697, 0.015012458, 0.0140798464, 0.00792072341, -0.0266312454, -0.0125319697, -0.015012458, 0.0122275762, 0.00509698223, 0.0154269524, 0.00597778196, -0.0105048344, -0.0199863873, -0.00440723822, -0.000426232698, -0.00919658784, 0.00399922, -0.0261778925, 0.00916420575, 0.0134192463, -0.00377578218, -0.000755318324, -0.0243774336, 0.00935202278, -0.0160746, 0.00113500142, 0.00625303201, -0.0145331994, -0.000370575523, 0.0205822233, 0.0218386576, 0.00702697039, -0.0142223286, -0.00176807644, -0.00807615835, -0.00603607, 0.0247271638, 0.0294808932, 0.00590330269, -0.00866551697, -0.0362164229, 0.00968879927, 0.0135228699, -0.0192480702, 0.0113208704, 0.0118519403, -0.0349988453, -0.00331919105, -0.00893105287, -0.00953336433, 0.0215666462, -0.00170978811, 0.00607169094, -1.48123963e-05, 0.0178491529, 0.00898286421, 0.0097017521, 0.00870437641, -0.00115524034, -0.00142563297, 0.00291603082, -0.0200381987, -0.000548880838, -0.011392111, -0.00926135294, 0.0171756, -0.00241248519, -0.00411255844, 0.043236915, 0.00243029557, -0.00531718228, 0.00563452905, -0.00994785875, 0.00501602609, 0.00289174402, -0.00138272636, 0.0185874701, 0.00476668216, -0.0118389875, 0.00281726453, 0.0176678114, -0.0257115867, -0.0262944698, 0.00160940283, 0.00326737924, -0.0260354113, 0.00851655845, -0.000556976418, -0.000171828855, 0.00618502917, 2.84610519e-06, 0.015012458, -0.00974061154, -0.0255950112, 0.0268903039, -0.00998671725, 0.000163024903, 0.0014045845, -0.0134192463, 0.00392474094, -0.0193775985, -0.00130419922, 0.0064894231, -0.0151808467, -0.00625627, 0.00385997631, 0.00620122, 0.0120721404, 0.00888571702, -0.0048314468, 0.0172274113, 0.00391502632, -0.0108351344, 0.0147015871, 0.0159968808, 0.00309089548, 0.0155694345, 0.00949450582, 0.00597130554, 0.00919658784, 0.0019170352, -0.0125902584, -0.0240536109, -0.0121174762, -0.00422589667, 0.0125449225, 0.0106149344, 0.00478287321, 0.00888571702, -0.0039603617, -0.0115734525, -0.0275638569, -0.00656066416, 0.0059065409, -0.00303908368, -0.00808263477, 0.0143648107, 0.0327968448, 0.00445581134, 0.00388588221, 0.00525241718, -0.0033904321, 0.00425827922, -0.00189274841, -0.0282892231, -0.00648294669, -0.00160373596, 0.0132119991, 0.0190537758, -0.00510669686, 0.000640361, -0.0181729756, -0.0055147144, -0.0134192463, 0.0254266225, 0.000699458818, 0.00318804244, -0.0131148519, -0.00973413512, 0.021657316, 0.00283993222, 0.0213334933, -0.0152715165, -0.00758394692, -0.0120268054, -0.00443638209, 0.00398950558, 0.00937792938, -0.00520060584, 0.00231048069, 0.00358796446, -0.0189890116, -0.0116900289, 0.0280560683, 0.015310376, 0.00488973502, -0.011424494, -0.0105890287, 0.00884685852, -0.0124477763, -0.013289717, 0.0152974231, 0.0111071467, 0.014338905, 0.00794015266, -0.0112820109, -0.00113014411, -0.000283750356, -0.0125125404, -0.00369482627, -0.023224622, -0.0157896336, -0.0166056696, -0.0142352814, 0.0149735995, -0.0193775985, -0.000331109535, -0.0332372449, 0.00344548211, 0.0194682702, 0.0146238701, 0.0169424471, -0.00291117327, -0.00643113488, -0.00627893815, 0.0172274113, 0.00291279261, 0.0196755175, 0.00431009103, 0.0129658934, 0.00685858214, -0.0151031287, 0.0110941939, 0.0204397403, 0.0191444457, 0.0221365746, 0.00533337332, 0.0164113753, 0.00286421902, 0.0122340526, -0.00382111757, -0.02009001, -0.00621417305, -0.00154059031, 0.00269744988, 0.014338905, -0.015414, -0.00840645842, 0.00743498793, 0.000681648497, 0.00200770586, 0.00515527045, 0.00347462622, -0.00701401709, -0.00488002039, -0.0113273468, 0.00376282912, -0.0296104215, -0.0171496924, 0.0160746, 0.00498688221, -0.0102652051, -0.014261188, 0.0228101276, -0.00891162269, -0.00176483812, 0.0054272823, 0.00471487036, 0.00501278788, 0.00911887, 0.0031508028, 0.0127780754, 0.0130954226, -0.00195427495, 0.00117062195, 0.0145461522, -0.00386969093, 0.0265276227, 0.00266182935, -0.000147036117, 0.0133415284, 0.00762928184, -0.00787538756, 0.00968879927, -0.0179916341, 4.54111869e-05, -0.0120527111, -0.0112820109, 0.00932611711, 0.0171626471, -0.012771599, 0.00338071748, 0.000822916511, -0.0241831392, -0.0167740583, -0.0152585637, 0.00659628492, 0.016048694, 0.0038308322, -0.0156471524, 0.0075645172, -0.0140668936, 0.00129367493, 0.0244681053, -0.0112431524, 0.00789481681, 0.0153621873, -0.0232764333, -0.0020983764, -0.0235354938, -0.0303357877, -0.0197661873, 0.0101227229, 0.00119733741, -0.0156989638, 0.00412551174, -0.00893752929, -0.00120543304, -0.00460800854, 0.00291765, -6.12228832e-05, -0.00160454551, 0.0043392349, 0.00383730861, -0.0129982755, 0.00511964969, 0.00263592345, -0.00680677034, -0.0220329519, 0.014559105, -0.0136912586, 0.00249667931, 0.00696220575, 0.0148699759, -0.0279783513, 0.0119620403, -0.0219034217, 0.0326155052, 0.00381140271, 0.00985718798, 0.015983928, 0.00742203509, 0.031967856, 0.0299990103, 0.000228295583, -0.00475049112, 0.0107638938, -0.00431980565, -0.0191314928, 0.000522570219, -0.00898934063, -0.00250963215, 0.0165409055, -0.000910753617, 0.00106376025, 0.0100190993, 0.0371231288, 0.0152585637, -0.0127586462, 0.0023898175, -1.53689678e-06, 0.0375117175, 0.0112172468, -0.0126226405, -0.00549852336, 0.00870437641, -0.00927430578, -0.000182757896, -0.0158414468, -0.0298953876, 0.00282697938, -0.00324956886, -0.0086007528, -0.0121498583, -0.00878857, 0.0269162096, 0.00440076133, 0.00311680138, 0.00777824083, -0.00675495854, 0.0241701864, -0.028004257, -0.0104465466, -0.0282374099, -0.00651532924, 0.0155176232, 0.0192739759, -0.0111654345, 0.0236261636, -0.0148958815, -0.00751918182, 0.01986981, -0.0165927168, 0.00117871759, 0.0197791401, 0.0101227229, 0.0071694525, 0.00805025268, -0.000704316131, 0.00491240248, -0.00841293484, -0.0211910103, 0.00554062054, 0.0181082115, -0.0122534819, 0.00428094668, 0.00926782936, -0.0136523992, -0.000712006935, -0.0108480873, 5.43922324e-05, 0.000529046694, 0.025465481, 0.0041838, 0.000200669383, 0.0300767273, -0.00106537936, -0.00112447713, 0.0129011292, -0.000540380483, -0.00603607, -0.00357501162, -0.000778795569, 0.0147533994, -0.00589035, -0.00267154397, 0.0083352169, 0.0119685167, -0.00956574641, -0.0152844703, -0.00184093672, -0.00554709695, -0.0199863873, -0.0263333283, 0.00375959091, 0.00625950843, 0.0370972231, 0.0217609406, -0.0128881754, -0.0173439868, -0.0200511515, -0.000406398496, -0.0103947343, 0.0119879469, 0.0108416108, -0.0128169348, 0.0249603167, 0.00744146435, 0.00105323596, -0.00160373596, -0.000959327153, 0.00506783789, 0.0144684343, 0.000127707899, 0.0112949638, 0.031656988, 0.00618826738, -0.0236132108, -0.00340662338, 0.0171756, -0.00487354398, 0.00516174687, -0.0229655635, 0.0110812411, 0.000938278623, 0.00110828597, -0.00230076606, 0.0109517109, 0.0289627742, -0.0105177881, 0.00834817, -0.0154010467, 0.0359314568, 0.00837407634, -0.00482497038, -0.00138191681, -0.00143453816, -0.010155105, -0.00249991752, 0.0150254108, -0.00614940841, 0.0121498583, -0.0104335938, 0.00371425576, -0.0100514814, 0.0427965149, 0.0229655635, 0.00448171748, -0.0082575, -0.0083611235, 0.017551234, 0.0080955876, -0.027252987, -0.0037822586, 0.0023396248, -0.010971141, 0.00727955252, 0.0216702688, -0.00083708379, -0.00601016451, 0.00234286301, 0.0160357412, 0.0150254108, -0.0279524457, 0.0192998815, 0.01418347, 0.00913182274, -0.00573815266, -1.24849148e-05, -0.00334185874, -0.015608293, 0.0147663523, 0.0134192463, -0.0286519043, 0.00772642903, -0.00103137793, -0.0144554814, 0.00665133493, 0.00597130554, -0.00866551697, 0.0130565641, -0.00464362931, 0.00301965419, 0.0255950112, -0.0134062935, -0.00431656744, 0.00121514779, -0.00118762278, -0.0203361157, -0.00202065869, -0.0114827817, 0.0035426293, 0.023069188, -0.00957222283, -0.0179786813, -0.00852303486, -0.00344548211, 0.00875618774, -0.0108416108, -0.0157378223, -0.0171108339, -0.00731841149, 0.000498283422, -0.00138920289, 0.00773938186, -0.00568310264, 0.00612997916, -0.0145331994, 0.0066901939, -0.00357501162, 0.00460477034, -0.0147404466, 0.00834817, 0.00974061154, -0.00476992037, 0.00738965254, -0.0129529405, 0.00183931761, -0.0140927993, -0.00646999385, -0.0224215407, -0.0132638114, 0.00622388814, 0.00124914921, -0.00998024084, 0.00382759399, -0.0062983674, -0.00667076418, 0.0219552349, 0.00224895426, 0.00760985259, -0.0038308322, -0.0287296213, -0.00527832331, 0.000269178301, 0.0133156227, 0.0190149173, 0.0313461162, -0.0173698924, 0.0108221816, -0.0211003404, 0.0107379882, -0.00826397631, -0.0249214582, -0.0060587381, 0.00912534632, 0.00976004079, 0.0190149173, 0.0142352814, -0.00740908179, 0.00406722352, -0.0019818, 0.00318966154, -0.000189740342, 0.00663190568, 0.0185227059, 0.0119426111, 0.00900229346, 0.00699458783, -0.0190278701, -0.0174346585, 0.000311882526, -0.00393769378, 0.0177325755, -0.0152067523, -0.0239758939, -0.00883390568, 0.00482820859, -0.0111006703, -0.00422265846, -0.0203879289, 0.0181211643, -0.00243191468, 0.0159709752, 0.00839350559, -0.0115669761, 0.00106456981, 0.0103234937, -0.00189436751, -0.000518927176, 0.00602959376, 0.0224863049, 0.0101162465, 0.0234577749, -0.00977299362, -0.00801139418, -0.00568634085, 0.0096628936, -0.00705935247, 0.0058353, 0.00772642903, 0.00968879927, 0.0165668111, 0.00613645557, -0.00996081159, 0.0321751051, 0.00343576749, -0.00416113203, -0.00798548758, -0.0533661135, -0.000319168554, 0.0136783049, 0.0107897995, -0.0118066054, -0.0069298232, 0.012130429, 0.0301803518, -0.0173051283, 0.00285126595, 0.016515, 0.0103364466, -0.0106732231, 0.00232343376, -0.0403613634, -0.0100255758, -0.0136912586, -0.00393445557, 0.0284446571, 0.00944917, -0.00374339987, -0.00997376442, -0.0045918175, -0.00707230577, 0.00333862053, 0.00397655275, 0.000780009897, -0.0137301171, -0.0174346585, -0.0153362816, 0.00913829915, 0.00273468951, 0.0136394463, -0.0135487756, -0.00531718228, 0.00915772934, 0.00390531146, -0.00195913226, 0.0173180811, -0.0007937724, 0.00867847, -0.0111913411, -0.0038535, -0.0202843044, -0.0171367396, 0.0166833866, 0.00595187629, -0.00443638209, 0.0166315753, 0.0274861399, 0.00394093199, 0.00115524034, 0.0227971748, 0.00169521605, 0.00332242926, 0.0137689756, -0.00363653805, -0.0345843509, -0.0150513165, -0.0136394463, 0.00244324841, 0.0225381162, -0.00707878219, 0.00685858214, -0.0124024404, -0.0376930572, -0.00361387036, -0.00411579665, 0.0151419872, 0.0195200816, -0.00379521167, -0.00810206402, -0.0276156701, 0.0178880114, 0.00212104409, 0.0139762228, -0.000704316131, -0.0121045234, -0.00960460585, -0.00289822044, -0.000567500712, -0.00324633066, -0.000230926642, 0.00510022044, 0.0107962759, 0.00305365585, 0.0216314103, -0.00911239348, 0.0165927168, -0.0208801404, -0.00537223229, -0.0459570326, 0.0214630216, 0.0385738574, 0.0287814345, -0.0222272463, 0.0102457758, 0.0175123755, -0.0115669761, -0.00988957, 0.0126096876, 0.000676386349, 0.00888571702, -0.00232991017, 0.017616, 0.00113176322, 0.0194035042, 0.0404908918, 0.0030245115, 0.0151937995, -0.00424208818, 0.0174994227, 0.00563452905, 0.0130889462, -0.0101162465, 0.00183769839, 0.0228360351, -0.00323661603, -0.000556166866, -0.0213334933, -0.00837407634, -0.0125254933, 0.0270198341, 0.00762928184, -0.00999967, -0.00130581832, 0.0102069173, -0.0123830112, -0.012175764, 0.0198439043, -0.0314756446, -0.0129529405, -0.00517469971, 0.000826154719, -0.0160875525, -0.0169942584, 0.0154269524, 0.013289717, -0.000619717233, 0.00743498793, 0.0211521517, -0.0145979635, 0.00886628777, -0.038081646, -0.0126679763, 0.00827045273, -0.0127651226, -0.0181988813, -0.00852303486, 0.0313461162, 0.0317865163, -0.00634370279, -0.0308539048, -0.00580291729, 0.00455295853, 0.0150254108, 0.0157119166, 0.0075127054, 0.0129529405, 0.0182895511, -0.00513907894, 0.00655094953, 0.00902819913, 0.0103364466, -0.0123765348, -0.000635503617, -0.00913829915, -0.0102846352, -0.008808, -0.013069517, -0.00607816735, 0.00253391895, 0.00175350427, 0.00670314673, -0.00711764069, -0.00290307775, 0.00323823513, -0.00253553805, 0.0015478764, 0.0100190993, -0.0146238701, 0.00387940579, -0.00601016451, -0.000354991527, 0.0105566466, -0.004199991, 0.000676791125, -0.018069353, -0.0082315933, -0.0109840939, 0.0283151288, 0.0305948462, 0.00372720859, -0.00615264662, -0.0115605, 0.0251546111, 0.00729898177, 0.00250477483, 0.0355946794, -0.0215407405, 0.0254525281, 0.0042485646, -0.00385026168, 0.00737022329, -0.0184579398, 0.0170978811, 0.00265697204, -0.00203685, -0.00185874698, 0.00147582567, -0.0123247225, 0.0195718929, -0.0208671875, -0.00154301908, -0.00170007348, 0.0163077526, 0.005505, 0.00287231454, -0.0105501702, -0.0192869287, 0.00891809911, 0.0196237043, 0.0279783513, 0.0260354113, -0.021579599, -0.00977299362, -0.01374307, -0.000694601447, 0.0141446115, -0.0020983764, -0.0079272, -0.00745441718, -0.0198309515, 0.0135617284, -0.0157507751, -0.00232991017, -0.00479258783, -0.0155564817, -0.00839998201, -5.76304665e-05, -0.00906705856, -0.0174864698, -0.0120397583, -0.0109322816, 0.015530576, -0.0136783049, -0.0158803053, -0.00960460585, -0.0155435288, 0.0179657284, -0.00192836905, -0.000748841849, -0.00858132355, -0.0259576924, 0.00906058215, 0.000400934, 0.00764223514, 0.00294031762, -0.0176548585, -0.0019818, -0.00161992712, 0.0262297038, 0.00963051151, 0.00603930838, -0.0034649116, 0.0166186225, -0.012111, -0.000511641148, -0.0191573985, -0.0361905172, 0.025763398, 0.0119361347, 0.00655742595, -0.0116835525, 0.00978594646, -0.00108238007, -0.00231048069, 0.000447686, -0.00935202278, 0.0110229524, 0.00718240533, 0.012111, 0.0150772231, -0.0077523347, 0.0104983579, 0.00291279261, -0.00785595831, -0.00312651601, 0.00468896469, -0.00139729842, 0.00818625838, -0.00740908179, -0.00529451435, 0.00819921121, 0.0163854696, 0.00683915243, -0.00899581704, 0.0151419872, -0.00285612349, -0.0171367396, -0.0234059636, 0.000432304398, -0.00471163215, 0.00513260253, -0.0109517109, -0.00658333208, -0.0157507751, -0.0281078815, 0.0157637279, -0.00114714482, 0.00744794076, -0.003995982, -0.0104983579, 0.0281337872, 0.00318642333, 0.0223826822, 0.000952041126, 0.000675576797, 0.00869142357, -0.0163854696, 0.00193322636, -0.0179527756, 0.0243903864, 0.00684562931, -0.00964994077, -0.000337181234, 0.00968232285, -0.0162818469, 0.0355169624, 0.00291603082, -0.0120268054, -0.000511236372, 0.00436837925, -0.0178102925, 1.51792274e-05, 0.00999319367, 0.0154658109, 0.0355169624, -0.0248566922, -0.0131731406, -0.014857023, -0.0225122105, 0.00359767932, -0.0110553345, 0.0209578574, 0.00479906425, -0.00705287606, -0.0152585637, 0.0247789752, 0.00129610358, 0.0182377398, -0.0138078351, -0.0082575, 0.0119620403, 0.0085878, 0.0220459048, -0.00452381466, -0.0085748462, 0.00570577, -0.00926135294, 0.007707, -0.00500954967, -0.012991799, -0.0107120816, -0.00864608772, 0.00965641718, 0.0027832631, -0.0171626471, -0.0085359877, -0.020012293, -0.0169554, -0.0144166229, -0.0247401167, -0.00729898177, 0.000868656556, -0.00810206402, -0.0151549401, -0.0359055512, -0.0122340526, -0.00250801304, 0.00516498508, 0.0273566097, -0.00263916166, -0.0112755345, 0.0103234937, -0.0370195024, -0.0143259522, 0.0134321991, 0.00805025268, -0.00216637924, 0.00551795261, 0.0192869287, 0.00290793506, 0.00404455559, 0.019416457, -0.020828329, -0.0119167054, -0.0151678938, -0.0387033857, 0.0149865523, -0.0060943584, -0.0138725992, 4.71062e-05, -0.00145396753, 0.00030742996, -0.00343252928, -0.00783005264, 0.0111589581, 0.00656714104, 0.00713707041, -0.00718888221, -0.0100190993, 0.0215925518, 0.0201288704, -0.00945564639, 0.00310708652, -0.00957869925, 0.01836727, -0.00573167624, 0.00900877, 0.00795958191, 0.00203199266, 0.00272983219, -0.00878209341, 0.0147015871, 0.0118260346, 0.0286519043, -0.011800129, -0.0166186225, 0.0123571055, -0.0201677289, 0.00110909552, 0.0101227229, -0.0126291169, -0.0179657284, 0.00876914058, -0.0125967348, -0.0136005878, -0.000278488209, 0.00549204694, -0.0130371349, -0.000125987586, 0.00543052051, 0.0121498583, 0.0201547761, 0.0145202465, -0.0214630216, 0.003098991, 0.00419351459, 0.0461642817, 0.021722082, 0.0185615644, -0.0205692705, -0.0156212458, -0.00644732593, -0.0180952586, 0.0143000465, -0.00802434701, 0.00608140556, -0.0118066054, -0.00974061154, -0.0110488581, -0.0246364921, 0.000397695752, 0.0568893142, 0.0194423646, 0.0181600228, -0.0314756446, 0.00250153663, -0.022175435, -0.0110941939, 0.0328227505, -0.00340014696, 0.000765033066, 0.000875942584, -0.0223179162, 0.00437809387, -0.0186133757, -0.00863313489, 0.00578348804, 0.00276221451, 0.0130500877, -0.0118195582, 0.00508402893, -0.0230562333, 0.00428094668, 0.0205563158, -0.0194294117, 0.0109581873, 0.0082315933, -0.00688448781, -0.0066383821, -0.0222661048, 0.0205045044, -0.0111524817, 0.0104076881, 0.00164178526, -0.0082315933, -0.0233800579, -0.000424208789, 0.0251027979, -0.0117159346, -0.00659304671, -0.0227583162, -0.0169424471, 0.0100255758, -0.00297917635, 0.010563123, -0.0014313, -0.00941678789, 0.00586768193, 0.0123571055, 0.00988957, 0.00683915243, -0.0266571511, 0.00290469686, 0.00162640365, -0.015388093, -0.0102911117, 0.0141187049, 0.000512855477, -0.0170460697, 0.00702049397, -0.00717592891, 0.0169294942, -0.0088792406, 0.00201094407, 0.016126411, -0.00338071748, -0.00951393507, -0.00444609672, 0.00900877, -0.00120057573, -0.00905410573, -0.0071694525, -0.00851655845, 0.0115799289, 0.00241248519, 0.00559243187, 0.00797901116, 0.00706582889, 0.00130177056, 0.0144425286, -0.00888571702, -0.00373692345, 0.0163595639, -0.0192739759, -0.0141575644, 0.0124024404, -0.0140798464, -0.0117029818, -0.0227583162, -0.00523946434, -0.00465982035, 0.00860722922, 0.0250768922, 0.00871732924, 0.0155823873, 0.0359832682, -0.00650561461, -0.0104141645, 0.0116511704, 0.0228619408, -0.027848823, 0.0120850932, 0.00565072, -0.00629512919, 0.00189922494, -0.0171756, 0.00374339987, 0.00532042049, 0.00245296303, 0.00900877, -0.00133496244, 0.0123571055, 0.00133658154, -0.0119879469, 0.0150513165, 0.00662219105, 0.00992195215, 0.00883390568, 0.0153233288, 0.0131278057, 0.00127100723, 0.0212946348, -0.000455781585, -0.0129982755, -0.00564424368, 0.00886628777, 0.0143000465, 0.0165409055, -0.0216443632, 0.0121045234, -0.00985071156, 0.00163126097, -0.0287296213, 0.00465334393, -0.00527184689, 0.0182377398, 0.0210485291, -0.0197014231, -0.0211780574, -0.0317606106, 0.0149088344, 0.00849065278, 0.00315566012, 0.00845827, 0.0199993402, 0.0266830567, -0.00461772317, 0.0134969642, -0.0118713696, 0.0235614, -0.00463715289, -0.0120721404, 0.0260095038, -0.000957708049, -0.00875618774, 0.00492859399, -0.00426799385, 0.00408665277, -0.0154917166, 0.0261519868, -0.0214112103, -0.0311906803, 0.00616236124, 0.00854894053, -0.00194941752, 0.00715649966, -0.00964994077, -0.00281726453, 0.00683267601, 0.00408989098, 0.00816682912, 0.00323013961, 0.012285864, 0.00691039395, 0.00109695212, -0.00366892037, -0.000430685264, 0.0221106689, 0.0316310823, 0.00335804978, -0.0135746812, -0.0104983579, 0.0104271173, -0.0053625172, 0.0274343286, 0.00816682912, -0.0202843044, -0.010187488, 0.00992195215, 0.0307761859, -0.0049318322, -0.0110618109, 0.0218645632, -0.030828, -0.0170072112, -0.00263754255, -0.0113273468, 0.0125773055, -0.00624007918, -0.00562481442, -0.0104335938, 0.0240277052, 0.00196722778, 0.0174864698, 0.00996081159, -0.0015478764, 0.0187688116, 0.0017567426, 0.0193905514, -0.00721478788, -0.00034669356, -0.00866551697]
|
17 Feb, 2023
|
Sort given Array based on the fractional values
17 Feb, 2023
Given an array arr[] that contains N real numbers. The task is to sort the array in decreasing order of the Fractional Values
Note: If the values of the fractional part are same then sort those elements in Decreasing order of their Integer Values.
Examples:
Input: arr[] = { 8.33, -3.85, 1.999, 6.33, 5}Output: { 1.999, 8.33, 6.33, -3.85 , 5}Explanation:
Element
Integer Value
Fraction Value
8.33
8
0.33
-3.85
-4
0.15
1.999
1
0.999
6.33
6
0.33
5
5
0.0
1.999 has the biggest fractional value so it will be at index 0 while 5 has the lowest fractional value so it will be at the last index. 6.33 and 8.33 have the same fractional values but the Integer part of 8.33 is greater than 6.33 so we place 8.33 before 6.33 as the given condition in the problem statement.
Fractional value = Given number – Integer Value. Fractional Value of positive value e.g. (8.33) = 8.33 – Integer Value of ( 8.33)= 8.33 – 8= 0.33Fractional Value of (-3.85) = -3.85- Integer Value of (-3.85)= -3.85 – ( -4 ) = -3.85 + 4 = 0.15
Hence, the order for the above example will be: {1.999, 8.33, 6.33, -3.85, 5}
Input: arr[] = { 1.1, 1.11, 1.111, 2.1, 2.11, 2.111}Output: { 2.111, 1.111, 2.11, 1.11, 2.1, 1.1 }Explanation: Here the biggest fractional value is 0.111 which is present in both 2.111 and 1.111. But the integer value of 2.111 is greater than 1.111. so, 2.111 will come before 1.111. The same applies to other elements.
Naive Approach: The basic idea to solve the problem is to store the pair of {Fractional value, Integer value} in a vector and then sort the vector in descending order of fractional part. Lastly reverse the vector for the final answer as the desired answer should be in descending order.
Below is the implementation of the above approach:
C++
// C++ program to sort Array
// in descending order of fractional value
#include <bits/stdc++.h>
using namespace std;
// Function to sort the fractional part
void SortFraction(long double arr[], int n)
{
// To store fraction and it's
// corresponding integer and the
// original element
vector<pair<pair<long double, int>,
long double> >
v;
for (int i = 0; i < n; i++) {
// Calculate fractional value
long double fraction
= arr[i] - floorl(arr[i]);
// Calculate integer value
int integer = floorl(arr[i]);
v.push_back({ make_pair(fraction,
integer),
arr[i] });
}
// Sort the vector
sort(v.begin(), v.end());
// To get final answer,
// reverse the vector
reverse(v.begin(), v.end());
// To print output
for (int i = 0; i < n; i++)
cout << v[i].second << " ";
}
// Driver Code
int main()
{
long double arr[] = { 8.33, -3.85,
1.999, 6.33, 5 };
// Size of array
int N = sizeof(arr) / sizeof(arr[0]);
// Sort in descending order
// of fractional value
SortFraction(arr, N);
return 0;
}
Java
import java.util.*;
import java.io.*;
class GFG{
// Function to sort the fractional part
public static void SortFraction(double arr[], int n){
// To store fraction and it's
// corresponding integer and the
// original element
ArrayList<ArrayList<Double>> v = new ArrayList<ArrayList<Double>>();
for(int i=0 ; i<n ; i++){
// Calculate fractional value
double fraction = arr[i]-Math.floor((double)arr[i]);
// Calculate integer value
double integer = Math.floor((double)arr[i]);
ArrayList<Double> temp = new ArrayList<Double>();
temp.add(fraction);
temp.add(integer);
temp.add(arr[i]);
v.add(temp);
}
// Sort the vector
Collections.sort(v,new Comp());
// To get final answer,
// reverse the vector
Collections.reverse(v);
// To print output
for(int i=0 ; i<n ; i++){
System.out.print(v.get(i).get(2) + " ");
}
}
// Driver code
public static void main(String args[])
{
// Size of array
int N = 5;
double arr[] = {8.33, -3.85, 1.999, 6.33, 5};
// Sort in descending order
// of fractional value
SortFraction(arr, N);
}
}
class Comp implements Comparator<ArrayList<Double>>{
public int compare(ArrayList<Double> a, ArrayList<Double> b){
for(int i=0 ; i<2 ; i++){
if(a.get(i).equals(b.get(i))){
continue;
}
return a.get(i).compareTo(b.get(i));
}
return a.get(2).compareTo(b.get(2));
}
};
// This code is contributed by subhamgoyal2014.
Python3
# Python program to sort Array
# in descending order of fractional value
import math
# Function to sort the fractional part
def SortFraction (arr, n) :
# To store fraction and it's
# corresponding integer and the
# original element
v = []
for i in range(n) :
# Calculate fractional value
fraction = arr[i] - math.floor(arr[i])
# Calculate integer value
integer = math.floor(arr[i])
v.append([[fraction, integer], arr[i]])
# Sort the vector
v.sort()
# To get final answer,
# reverse the vector
v.reverse()
# To print output
for i in range(n) :
print(v[i][1],end=' ')
# Driver Code
if __name__ == "__main__":
arr = [8.33, -3.85, 1.999, 6.33, 5]
# Size of array
N = len(arr)
# Sort in descending order
# of fractional value
SortFraction(arr, N)
# This code is contributed by jana_sayantan.
C#
// C# code
using System;
using System.Collections.Generic;
class Program {
// Function to sort the fractional part
public static void SortFraction(double[] arr, int n){
// To store fraction and it's
// corresponding integer and the
// original element
List<List<double>> v = new List<List<double>>();
for(int i=0 ; i<n ; i++){
// Calculate fractional value
double fraction = arr[i]-Math.Floor((double)arr[i]);
// Calculate integer value
double integer = Math.Floor((double)arr[i]);
List<double> temp = new List<double>();
temp.Add(fraction);
temp.Add(integer);
temp.Add(arr[i]);
v.Add(temp);
}
// Sort the list
v.Sort(new Comp());
// To get final answer,
// reverse the list
v.Reverse();
// To print output
foreach(var item in v){
Console.Write(item[2]+ " ");
}
}
// Driver code
public static void Main(string[] args){
// Size of array
int N = 5;
double[] arr = {8.33, -3.85, 1.999, 6.33, 5};
// Sort in descending order
// of fractional value
SortFraction(arr, N);
}
}
class Comp : IComparer<List<double>>{
public int Compare(List<double> a, List<double> b){
for(int i=0 ; i<2 ; i++){
if(a[i].Equals(b[i])){
continue;
}
return a[i].CompareTo(b[i]);
}
return a[2].CompareTo(b[2]);
}
};
// This code is contributed by Utkarsh
Javascript
<script>
// JavaScript program to sort Array
// in descending order of fractional value
// Function to sort the fractional part
const SortFraction = (arr, n) => {
// To store fraction and it's
// corresponding integer and the
// original element
let v = [];
for (let i = 0; i < n; i++) {
// Calculate fractional value
let fraction = arr[i] - Math.floor(arr[i]);
// Calculate integer value
let integer = Math.floor(arr[i]);
v.push([[fraction, integer], arr[i]]);
}
// Sort the vector
v.sort();
// To get final answer,
// reverse the vector
v.reverse();
// To print output
for (let i = 0; i < n; i++)
document.write(`${v[i][1]} `);
}
// Driver Code
let arr = [8.33, -3.85, 1.999, 6.33, 5];
// Size of array
let N = arr.length;
// Sort in descending order
// of fractional value
SortFraction(arr, N);
// This code is contributed by rakeshsahni
</script>
Output
1.999 8.33 6.33 -3.85 5
Time Complexity: O(N * logN)Auxiliary Space: O(N)
Efficient Approach: The idea to solve the problem in optimized way is by using Comparator, to sort the vector.
Follow the steps to solve the problem:
Firstly, make a comparator function to sort the array according to the requirements given in the problem.
Return true if fraction of a > fraction of b, to sort the elements in decreasing order of the fractional Values.
If fraction of a = fraction of b then return true if integer of a > integer of b
Return False in every other case.
The final array is the required sorted array.
Below is the implementation of the above approach:
C++
// C++ program to sort Array
// in descending order of fractional value
#include <bits/stdc++.h>
using namespace std;
// Comparator to sort array
// according to question
bool comp(long double a, long double b)
{
int int_a = floorl(a);
int int_b = floorl(b);
long double fraction_a = a - int_a;
long double fraction_b = b - int_b;
if (fraction_a > fraction_b)
return true;
if (fraction_a == fraction_b) {
if (int_a > int_b)
return true;
else
return false;
}
return false;
}
// Function to print answer
void print(long double arr[], int n)
{
// Sort in descending order of
// fractional value pass comp to sort
sort(arr, arr + n, comp);
for (int i = 0; i < n; i++)
cout << arr[i] << " ";
}
// Driver Code
int main()
{
long double arr[]
= { 8.33, -3.85, 1.999, 6.33, 5 };
// Size of arr
int N = sizeof(arr) / sizeof(arr[0]);
print(arr, N);
return 0;
}
Java
// Java program to sort Array
// in descending order of fractional value
import java.util.Arrays;
import java.util.Comparator;
public class Main
{
// Comparator to sort array
// according to question
static class FractionalComparator implements Comparator<Double> {
@Override
public int compare(Double a, Double b) {
int int_a = (int) Math.floor(a);
int int_b = (int) Math.floor(b);
double fraction_a = a - int_a;
double fraction_b = b - int_b;
if (fraction_a > fraction_b) {
return -1;
}
if (fraction_a == fraction_b) {
if (int_a > int_b) {
return -1;
} else {
return 1;
}
}
return 1;
}
}
// Driver Code
public static void main(String[] args) {
Double[] arr = { 8.33, -3.85, 1.999, 6.33, 5.0 };
// Sort in descending order of
// fractional value pass comp to sort
Arrays.sort(arr, new FractionalComparator());
// Function to print answer
for (Double number : arr) {
System.out.print(number + " ");
}
}
}
// This code is contributed by ratiagrawal.
Python3
# Python program to sort Array
# in descending order of fractional value
import math
from functools import cmp_to_key
# Comparator to sort array
# according to question
from functools import cmp_to_key
def comp(a, b):
int_a = math.floor(a)
int_b = math.floor(b)
fraction_a = a - int_a
fraction_b = b - int_b
if (fraction_a > fraction_b):
return 1
if (fraction_a == fraction_b):
if (int_a > int_b):
return 1
else:
return -1
return -1
# Function to print answer
def Print(arr,n):
# Sort in descending order of
# fractional value pass comp to sort
b=sorted(arr,key=cmp_to_key(comp),reverse=True)
for i in range(n):
print(b[i],end=' ')
# Driver Code
if __name__ == "__main__":
arr = [8.33, -3.85, 1.999, 6.33, 5]
# Size of array
N = len(arr)
Print(arr,N)
# This code is contributed by Pushpesh Raj.
C#
using System;
using System.Collections.Generic;
public class Program
{
// Comparator to sort array
// according to question
class FractionalComparator : IComparer<double>
{
public int Compare(double a, double b)
{
int int_a = (int)Math.Floor(a);
int int_b = (int)Math.Floor(b);
double fraction_a = a - int_a;
double fraction_b = b - int_b;
if (fraction_a > fraction_b)
{
return -1;
}
if (fraction_a == fraction_b)
{
if (int_a > int_b)
{
return -1;
}
else
{
return 1;
}
}
return 1;
}
}
// Main method
static void Main(string[] args)
{
Double[] arr = { 8.33, -3.85, 1.999, 6.33, 5.0 };
// Sort in descending order of
// fractional value pass comp to sort
Array.Sort(arr, new FractionalComparator());
// Function to print answer
for (int i = 0; i < arr.Length; i++)
{
Console.Write(arr[i] + " ");
}
}
}
// This code is contributed by lokeshpotta20.
Javascript
function comp(a, b) {
const int_a = Math.floor(a);
const int_b = Math.floor(b);
const fraction_a = a - int_a;
const fraction_b = b - int_b;
if (fraction_a > fraction_b) {
return 1;
}
if (fraction_a === fraction_b) {
if (int_a > int_b) {
return 1;
} else {
return -1;
}
}
return -1;
}
function Print(arr, n) {
// Sort in descending order of fractional value
// pass comp to sort
const b = arr.sort(comp).reverse();
for (let i = 0; i < n; i++) {
console.log(b[i] + " ");
}
}
const arr = [8.33, -3.85, 1.999, 6.33, 5];
// Size of array
const N = arr.length;
Print(arr, N);
Output
1.999 8.33 6.33 -3.85 5
Time Complexity: O(N * logN)Auxiliary Space: O(1)
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values
|
https://www.geeksforgeeks.org/sort-given-array-based-on-the-fractional-values/?ref=ml_lbp
|
Pandas
|
Sort given Array based on the fractional values
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0187051781, -0.0151111707, -0.00756239193, 0.0050030225, -0.00490432372, -0.0367569029, -0.0307124332, 0.0276901983, -0.0341975316, 0.0442444198, -0.0170715377, -0.00221902784, 0.0180108808, -0.0248449426, -0.016867334, 0.0107207624, 0.00792315416, 0.0431825519, -0.0275949035, -0.0365935378, -0.0268461518, 0.0221085958, -0.0100673065, 0.0150022609, -0.0393435, 0.032645572, 0.00319921179, 0.0129465973, -0.0313386619, 0.00477839727, 0.0348237604, 0.00240111048, -0.0150022609, -0.0184601322, 0.0039888043, 0.031093616, 0.0435092784, 0.0346876234, 0.0294327475, 0.0155876484, -0.0272273347, -0.0143215777, 0.000140284581, 0.0439993739, -0.00602745125, -0.000629206654, -0.00779382419, 0.0203932729, 0.0262335371, -0.0273770839, -0.0103055462, -0.019372249, -0.0234971903, 0.0321554802, -0.0151656251, 0.0207608417, -0.0098426817, 0.0288337469, -0.024749646, -0.00767130125, 0.0465859696, -0.0439721458, -0.0208833646, -0.0318559818, -0.00851534866, 0.00390712265, -0.045306284, 0.0266827866, 0.00288439565, -0.00962486304, -0.0574496761, 0.02818029, 0.0313658901, -0.00839282572, -0.0549992137, 0.0257842857, 0.0427469164, -0.0348237604, -0.018310383, 0.0330267549, -0.0252669659, 0.0231160074, 0.00620442862, -0.0269822888, 0.0409226827, 0.0248177145, -0.0108432863, -0.0413583219, 0.00899182726, 0.0374648124, -0.0216593444, 0.00583686, 0.0159143768, -0.0105778193, 0.020148227, 0.0397791341, 0.0250627603, 0.00555437617, -0.035286624, 0.0552987158, -0.0331084393, 0.00066877139, 0.00618741149, 0.00386287807, 0.00194505265, -0.019099975, 0.0002544054, 0.0165542196, 0.0338708051, 0.0376009494, 0.010536978, -0.0231296197, -0.012653904, 0.00469671516, -0.00488049956, -0.0199031811, -0.00708591379, -0.0687762499, 0.0213053897, 0.0305218417, 0.0347965322, 0.0242867824, -0.00508130109, 0.0566873103, -0.0427741408, 0.00404666271, 0.00125075562, -0.00867871288, -0.0318287537, -0.01184389, -0.0318015255, -0.0132801319, -0.0407593176, -0.00332513824, -0.00888291746, 0.018963838, 0.00944107771, 0.023184076, -0.005993417, 0.00292693847, 0.0249402374, -0.0592466779, 0.0140493046, -0.0131916432, 0.0275404491, -0.00793676823, 0.00150260853, 0.0847314671, -0.0545091219, 0.0145802377, -0.0302223414, 0.00920283888, 0.0494720675, -0.00133243762, 0.00616699131, -0.0150703294, 0.00156982604, 0.0219452307, -0.0248585567, -0.0664347, 0.0154787395, -0.0153834438, 0.00547950109, -0.0233746655, -0.0264241286, 0.0344970338, 0.00771214254, 0.0268461518, -0.0458780564, 0.0394796357, 0.0179700404, -0.00162853498, 0.0051391595, 0.027799109, -0.0296505671, 0.0221358221, 0.0289426558, 0.0286976099, 0.00751474407, -0.0313386619, -0.00887611136, -0.0318832099, 0.0209105927, 0.00264105131, -0.0183512233, -0.016989857, -0.00138519064, -0.000771724735, 0.0111836279, -0.0125245741, -0.0428285971, -0.0244501457, 0.00273975055, 0.035558898, 0.0298411585, -0.0257979, -0.0344698057, 0.0065311566, -0.0278535634, 0.0345787145, -0.0213462301, -0.0516774803, 0.0185418148, -0.0100196591, 0.0435365066, -0.0452246033, -0.0190727469, -0.0176297, 0.00952276, 0.00131116633, -0.0371925384, 0.038744498, -0.0367024466, 0.0191680435, 0.0245318282, 0.0189774521, -0.011462708, 0.0116396854, -0.0130827343, -0.0384449959, -0.0145666236, -0.00487028947, 0.0229934845, -0.00626228703, -0.0255120117, -0.0583754033, 0.0116805267, 0.0508878864, 0.00505747739, 0.00160386018, 0.00788231287, 0.000367994449, -0.0140220774, 0.000800228387, 0.0141854407, -0.0543457605, -0.0539645776, 0.0333534852, 0.00231432333, 0.0604991354, 0.0213462301, 0.0182287, -0.00802525692, -0.00698381104, 0.0248449426, -0.0590833165, -0.0116532994, -0.00186847581, 0.043618191, 0.0506428406, -0.0229526423, -0.0566873103, -0.029623339, 0.00263424451, -0.0344153494, 0.0196581353, -0.0376009494, 0.0144985551, 0.0176705401, -0.0316109359, 0.000617294689, 0.0251716711, 0.0435365066, 0.0276221298, 0.0261654686, 0.0100332722, -0.00193143904, -0.0246407371, 0.00887611136, -0.0306035243, 0.00237047975, -0.000100666686, 0.00684086792, -0.0524670742, 0.00793676823, -0.0257979, -0.0335440747, -0.0324277543, 0.0285614729, 0.040160317, 0.00149580173, 0.0104621034, 0.0217818674, 0.0333807133, -0.0275676753, -0.00511533534, 0.0127219716, -0.00498260232, -0.0625684112, 0.000926580222, 0.000489666592, -0.050452251, -0.0179972686, 0.00718120951, -0.00317879138, 0.0341430753, -0.0132460985, -0.0442716442, -0.0180925634, 0.0185962692, -0.010659501, -0.0369747207, 0.0259612631, -0.0184056778, -0.0341975316, -0.0173710398, -0.0102647049, -0.0350960344, -0.0222719591, 0.00538760889, 0.00825668871, -0.00490092, -0.0111087523, -0.0335168466, -0.0343064405, 0.00489071, 0.0353955328, 0.00965889636, -0.0019756835, -0.0169762429, 0.0171668343, 0.00059900136, -0.000678556215, 0.00326217501, -0.0275404491, -0.0081137456, -0.0215232074, 0.0135864401, -0.00294225384, -0.0582664944, -0.0372742191, -0.0132937459, -0.0383088589, 0.00359060476, -0.00121416897, 0.0114899352, 0.000125926425, 0.0143079637, -0.030957479, -0.00771894911, 0.00572114345, -0.00720843673, -0.0231160074, 0.0235516448, 0.0159279909, -0.028724838, -0.0288337469, -0.0143079637, 0.060335774, -0.0150294881, 0.00124565058, -0.0114490939, 0.0197125897, -0.00618060492, 0.0523309372, -0.0349326693, 0.0142535092, -0.0281258356, 0.00733095966, -0.00794357434, 0.0159960594, 0.0284253377, -0.0632218719, 0.0168537199, 0.00991755631, 0.00359400804, -0.0288337469, -0.0092504872, 0.00440402143, 0.00112823269, -0.0137838377, 0.0113674123, 0.00231772684, 0.00708591379, -0.0292966124, -0.00343404757, -0.0215368215, -0.0251308288, 0.0123884371, 0.00654817373, -0.0130555071, 0.0420662314, 0.0148116695, -0.0125586083, 0.00483965874, -0.0317198448, -0.047402788, 0.00465587433, -0.0365663096, 0.0310119335, -0.0228301194, 0.0144713279, -0.0144985551, -0.00154430035, 0.0189502239, 0.00158939569, 0.0358039439, -0.000354593474, -0.00681704376, -0.0198487267, 0.0102987392, 0.0288337469, 0.00576879131, -0.0279080179, -0.0115307756, 0.0422023684, -0.0295961127, -0.00241472409, 0.0443261, 0.033326257, 0.0278671756, 0.0317470729, -0.0181061774, -0.00142858422, 0.0129602114, 0.00189570314, -0.0232113022, 0.0138042588, -0.0254439432, -0.038063813, 0.0188549291, 0.0318287537, -0.0162138771, 0.0139812361, -0.00743986899, 0.0194130894, 0.00655498076, -0.0136000533, 0.0370019488, 0.0260021035, -0.0383633152, 0.0186507236, 0.011980027, 0.0132256774, -0.0328361653, -0.0222311188, -0.00283504627, -0.00318900147, -0.0253078081, -0.0370564, 0.0173438117, 4.98547379e-05, -0.0210331157, 0.00268359412, -0.0305490699, 0.00882846303, -0.0403509103, -0.00127713219, -0.0254439432, 0.0192769524, -0.0385539047, -0.0173438117, -0.0360762179, -0.0139335878, 0.0616971403, -0.00180210918, 0.0193314068, -0.00629632082, 0.0408954546, -0.00309030246, 0.00512214238, 0.00532975048, -0.0357222632, -0.00486688595, 0.0317198448, 0.00479201088, -0.0143215777, 0.00370632089, -0.0311208423, -0.00914157741, -0.0416305922, -0.0337618962, 0.0242187139, 0.0103055462, 0.0218227077, 0.028588701, -0.0217137989, -0.0234971903, -0.00932536181, -0.0417122766, 0.0397246815, -0.030685205, 0.0127832331, -0.0649644211, 0.0187051781, -0.0156012625, 0.0209105927, -0.0153153753, 0.00121416897, 0.0233610533, 0.0136817358, -0.0100332722, -0.00730373245, -0.00473074941, -0.0119664138, 0.0098426817, -0.055598218, -0.0200529322, 0.00560542755, 0.0472394265, 0.0213870704, -0.0424474142, -0.0255936943, 0.0132597117, -0.0395068601, -0.045986969, -0.0145530105, 0.0237150081, -0.0106254676, -0.0120208682, 0.0302767958, -0.0106526949, 0.0266827866, 0.0246815793, -0.00393775338, -0.011850697, -0.0279080179, -0.0115988441, -0.0306307506, 0.0124224713, 0.0171668343, -0.000778531597, 0.00432914635, 0.0372469947, -0.011592038, 0.022517005, 0.0149614206, -0.0422568209, 0.0205838643, -0.00404666271, -0.000865318696, -0.00627930416, 0.00214074925, -0.0100400792, 0.00615678076, -0.0283981096, -0.00699061807, 0.00650392938, -0.00885569, 0.0188821554, 0.027404312, 0.0109045478, -0.00935258903, 0.0231296197, -0.00833837129, 0.032645572, 0.0182695407, 0.0199440215, 0.000708336127, 0.00759642618, 0.0123407897, 0.0279352441, -0.00880804285, 0.0110951383, -0.0320193432, 0.0191816576, 0.00793676823, -0.0277446527, -0.0214959811, -0.00444826577, -0.00975419208, 0.0140220774, 0.0275949035, 0.00782785844, 0.00768491486, -0.0350960344, 0.00244195154, 0.0269550607, -0.0532022119, -0.00581643917, 0.0380365849, -0.0333534852, -0.00162683323, 0.000827455719, 0.00174084771, 0.0387989506, -0.0177658349, 0.00467289146, 0.0277446527, -0.00884888321, -0.0185145866, -0.00265977019, 0.0107071493, -0.0104961377, -0.00996520463, -0.0295144301, -0.0261654686, -0.0104825236, -0.0152881481, -0.0128104603, -0.0218907762, 0.0432642326, -0.0109590022, 0.0185554288, -0.0253214203, 0.0117009468, 0.00775298337, -0.00327238534, 0.0010176216, 0.00352593977, -0.0144304875, 0.0116124582, -0.0176569261, -0.00863787159, -0.00416237861, 0.0138178719, -0.00482944818, 0.0255664662, -0.0129261771, -0.0166086741, -0.0593011342, -0.00597299635, 0.00792315416, -0.00454356149, -0.00245896867, 0.0293238387, 0.0117554013, -0.0218907762, -0.00859703124, -0.0310391616, 0.00130095601, -0.0438360088, -0.00402624207, 0.0319104344, 0.0425835513, 0.00665368, -0.014362419, -0.00982226059, -0.00948872603, -0.0374648124, -0.0118711181, 0.00234665582, -0.0103600007, -0.0267780833, -0.00155025639, -0.0153289894, 0.00344936294, 0.011993641, -0.0129397903, 0.00748071028, -0.0116124582, 0.00488049956, -0.0243820772, 0.0656723306, 0.0017127695, 0.00352934329, -0.0193314068, -0.00314986217, 0.0341703035, 0.00986990891, 0.00986310188, 0.0178611316, 0.0212917756, 0.0199984778, -0.0025746848, -0.0118302768, 0.0213598441, 0.0101694092, 0.00618060492, 0.00415557204, -0.0192633383, 0.0109453881, 0.0250763744, 0.0304673873, -0.0139676221, -0.011326571, 0.016731197, 0.0207608417, 0.0274859946, -0.0113129569, -0.00947511196, -0.00580622908, 0.00317198434, 0.042801369, 0.00908712298, -0.0117485952, -0.00343234581, 0.040977139, 0.0331356674, 0.00470011868, -0.0143896462, -0.0114354808, 0.00917561166, 0.00301202387, -0.0363484919, -0.00845408719, -0.0109930364, -0.0128513016, 0.0128581086, -0.0138519062, -0.0207472295, 0.00285036163, 0.0420390032, 0.0108705135, -0.0206247065, 0.00790273398, 0.00349871255, 0.0422568209, -0.0319376625, -0.0172485169, 0.0139948502, -0.030167887, -0.0198759548, -0.0261790827, -0.0119459927, 0.00249980972, 0.00727650523, 0.0388261788, -0.00691233948, -0.00556799, 0.0103055462, 0.0102102505, -0.0148252835, 0.0214959811, -0.00210331148, 0.00486688595, -0.026478583, 0.0114014465, -0.0259884913, -0.0200937726, 0.00569391623, 0.0413583219, 0.00893737283, -0.0377643108, 0.027404312, -0.013566019, 0.0171940625, 0.0107139563, -0.026995901, -0.00225136, 0.0206519328, 0.0280986093, -0.00812055264, -0.0063609858, -0.0122795273, -0.00389691209, 0.0348237604, -0.004809028, -0.0171940625, -0.0102510909, 0.00867190585, -0.0088897245, 0.0118711181, 0.010931775, 0.0114354808, 0.0296505671, 0.0055169384, -0.00458099879, 0.0204613414, 0.024749646, -0.0225714594, -0.00402624207, -0.0134298829, -0.0159279909, 0.0100605, -0.0176297, -0.0179972686, -0.0105437851, 0.0189366117, -0.000775553577, 0.0120072542, 0.0234018937, -7.43965647e-05, 0.010135375, 0.0166359, -0.0149205793, -0.0534200296, 0.00848812144, -0.00535357464, -0.0152064664, 0.0373014472, 0.00116737199, 0.00494176103, -0.0276765861, -0.0518680699, 0.0143215777, 0.0208152961, 0.024109805, -0.0040568728, 0.00844047405, -0.0153698297, 0.0248313285, 0.00599682052, 0.00244535506, -0.0001272027, -0.0213190019, 0.00976099912, -0.0226667561, 0.0465042852, 0.0199304093, -6.88660148e-05, 0.0244637597, -0.0175480172, 0.0210195016, 0.0229934845, -0.0175888576, -0.0335440747, -0.0372742191, -0.033326257, -0.0288882013, 0.0145802377, -0.0178339034, -0.00720162969, 0.0112789236, 0.0210058875, -0.00748071028, -0.0191544294, 0.00649712281, 0.00532634743, -0.00652094651, -0.0159552172, 0.0233338252, 0.0307668876, 0.012504153, 0.0145802377, 0.00658220798, -0.020284364, 0.0133686215, -0.0110542979, 0.00267678732, 0.00815458689, -0.00292523671, 0.0280441549, -0.0177249946, -0.021196479, -0.000338639977, -0.000593470817, -0.0360217616, 0.032781709, 0.00807290431, 0.0325911194, -0.016731197, -0.0228709616, -0.00198759534, 0.000802355527, -0.0137361903, 0.0218090955, 0.0401058644, -0.00889653154, 0.0194811579, 0.029623339, -0.0209105927, -0.00228539435, -0.0237830766, 0.0121706184, 0.00328259543, -0.029759476, 0.0294055212, 0.00756919896, -0.00835879147, 0.024245942, -0.00694977725, 0.00127117615, 0.0116396854, -0.00906670187, 0.0249402374, -0.0271456521, -0.0132801319, 0.00210161, -0.00624186639, 0.00215266109, 0.00244195154, -0.0130487, 0.0103463866, 0.0226395279, 0.00969973765, -0.0236877799, -0.0261382405, -0.038472224, -0.0487641543, 0.0231296197, -0.0215640478, -0.00817500707, -0.0156284906, -0.027526835, 0.0165269915, -0.0256209206, 0.0480290167, 0.0405415, -0.00842005294, 0.00490432372, 0.0053093303, -0.0250899885, 0.00089935289, 0.00916199759, 0.0176705401, -0.0137498034, -0.00884207711, 0.0152200796, -0.040242, 0.03319012, 0.0130827343, -0.0344698057, -0.0312025249, -0.0101285679, -0.0217274129, 0.00196887669, 0.0198078863, 0.0270095151, -0.00812736, 0.00711994804, -0.000121246725, 0.0152336936, 0.0170443114, 0.0277446527, 0.00105250662, 0.00238579512, 0.0121093569, 0.00701103872, 0.0158463083, -0.0225986876, 0.00368930376, -0.0237558484, -0.0529299378, -0.00276697776, -0.0118166627, -0.0566873103, -0.00314475712, 0.0115035484, -0.00350211584, 0.0200529322, 0.00397519069, 0.0126675172, -0.00474436302, -0.00583005277, -0.0074534826, -0.0373559035, -0.0125722215, -0.000365229149, -0.0226803701, 0.0263288319, 0.0136000533, 0.0200937726, -0.0112176621, -0.0132460985, 0.0235108025, -0.0224897787, -0.0156965572, -0.039888043, -0.0376009494, -0.00215266109, 0.0249810796, 0.0517319366, -0.0246679652, 0.00593215553, -0.0170987658, -0.0194539297, -0.002404514, 0.00802525692, 0.0162547193, -0.00398540124, -0.00164470111, 0.00773936976, -0.0399697274, 0.00790273398, -0.0122386869, -0.0392618142, 0.00375056523, -3.07371083e-05, 0.0114422869, -0.00468310155, -0.0178883579, -0.00137753296, -0.0254031029, -0.024627123, -0.0205974784, -0.00468650507, -0.0199712496, 0.00969973765, -0.0283981096, 0.0196445212, -0.0095499875, 0.0293782931, -0.00100315711, -0.0455241, 0.0243548509, 0.0241234172, -0.050724525, -0.0107071493, 0.0038730884, -0.00244024978, 0.0109794224, 0.020556638, 0.016322786, 0.0247360338, -0.0197398178, 0.0388806351, -0.0119051514, -0.000542419555, 0.023565257, -0.000357996905, 0.0129942456, 0.029895613, -0.027662972, -0.00548971118, -0.00787550677, 0.00085213047, -0.0106118536, -0.0157237854, -0.0243548509, -0.0149886478, 0.0160096716, 0.00529231317, -0.00499281241, 0.0282347463, 0.0022122208, 0.00390371913, -0.0079299612, -0.00414536148, -0.00323154428, -0.0268733781, 0.0109181609, 0.00557479681, -0.00788912, 0.0115171624, 0.0282892, -0.021196479, -0.0217137989, 0.0195900667, 0.00611594, -0.0161321964, -0.0278807897, -0.00897140708, 0.0105642052, 0.0171123799, 0.000490517414, -0.0153698297, 0.0141718276, -0.00711994804, -0.0106322737, -0.0108637065, -0.0101149548, 0.00432233931, -0.0161594227, 0.00579942204, 0.0263560601, 0.0197262038, -0.0236605536, 0.0111223664, -0.0114422869, 0.0206110924, 0.00996520463, 0.0440266, 0.00372333801, -0.00583005277, -0.0241778735, -1.67511917e-05, -0.0065311566, 0.0198623408, -0.00048243432, 0.000424576254, 0.0115784239, 0.0122318799, 0.00346638, 0.0125381872, -0.0132869389, 0.00418960582, -0.00637459941, 0.00322133396, 0.00801164284, -0.00335236546, -0.0107411835, 0.00701784529, -0.0114082526, 0.000570072327, 0.0260429457, -0.0125313802, 0.00514256256, 0.0178475175, 0.0133209731, 0.0155876484, -0.000677279953, -0.0221494362, 0.0148661248, -0.0070450725, 0.0297322497, 0.00375056523, -0.0102306707, 0.00340171508, -0.0169081744, 0.0139676221, -0.0219724588, 0.016867334, 0.0191816576, -0.00705868658, -0.00139965513, 0.0161185823, 0.00188208953, 0.000788316422, -0.0437543243, 0.00731734606, 0.0139812361, -0.00415216852, -0.00285206316, -0.000727905775, -0.0322099365, 0.0296505671, 0.0745484382, 0.00241982937, -0.00780063123, -0.0230207108, -0.0198487267, 0.000670898531, -0.0137361903, -0.00377098587, -4.78605471e-05, -0.0148252835, -0.00647670217, -0.00419981638, 0.0137361903, -0.00791634712, -0.00609211624, 0.0146346921, 0.00168043701, 0.00146261835, 0.00960444193, -0.0298139304, 0.0209105927, -0.00192803564, 0.0249538515, -0.013164416, 0.0220677536, -0.00997201074, 0.0102170575, -0.00262913946, -0.0463409238, -0.00911435, 0.0167584233, -0.0198623408, 0.0157918539, 0.000153153756, 0.00755558535, 0.0360489897, 0.035150487, 0.00541143259, -0.00822265539, 0.0350415781, -0.00590492832, 0.025947649, 0.000734287198, 0.0283981096, 0.00128989492, 0.00435637357, 0.0173574258, 0.00780063123, -0.0189229976, -0.00719482312, -0.0103940349, 0.016458923, -0.0365390815, -0.00322303572, -0.00676258933, -0.00685448153, -0.00812055264, -0.0177930631, -0.00407729344, -0.0098494878, 0.00158599217, -0.023701394, 0.0143351918, -0.0250899885, -0.00862425845, -0.00187698437, -0.0343336686, -0.00546248397, -0.00358720124, 0.00349190552, -0.0180925634, 0.0304129329, -0.00545227388, 0.00233984902, 0.0109658092, 0.00413515139, -0.0187596325, -0.0167039689, -0.0139540089, -0.0197942723, -0.0129738245, -0.0126947444, 0.00967931747, 0.00986990891, 0.00731734606, 0.00608871272, -0.0145530105, -0.00144134695, 0.0282619726, -0.0050949147, 0.0208152961, -0.0137293832, -0.0243548509, -0.004410828, -0.0181197915, 0.0162955597, 0.0239464398, 0.017003471, 0.0188413151, 0.00552714895, -0.0275949035, 0.00891014468, -0.00949553307, -0.0246679652, -0.0146619193, -0.0204613414, 0.0192497261, 0.00383565063, 0.00639502, 0.0167720374, 0.0227620509, 0.0113606052, 0.00355316722, 0.0032877007, 0.0251444429, 0.000128478991, -0.00497579528, 0.0108705135, -0.0175616313, 0.0310391616, -0.00959082879, -0.00986310188, 0.0160096716, -0.0210467298, -0.00464226026, -0.0218090955, -0.0148661248, 0.0184329059, 0.00141326885, 0.00662645232, -0.00475116959, -0.00316687929, 0.00760323321, -0.0027584692, -0.0251988973, 0.0142807364, -0.0102919322, -0.0128104603, 0.000148048624, 0.00504386378, 0.00272613694, 0.0286431555, -0.0167720374, -0.0200257041, 0.0346059427, -0.0207472295, -0.00347318687, -0.00334385689, 0.0159824453, 0.0155740352, -0.00478180079, -0.00251172157, 0.00420322, -0.0169490147, 0.0165542196, -0.0218499359, 0.0200257041, 0.00643586135, -0.0149478065, -0.00116396858, 0.00769852893, 0.0130827343, 0.0380365849, 0.00559521699, -0.0333534852, 0.0156965572, -0.00912115723, 0.0055169384, -0.0189910661, 0.00188379118, 0.00754877832, -0.0233882796, 0.00918922573, 0.0122795273, 0.0342792124, 0.00265636691, 0.0153289894, 0.0103395805, 0.0272817891, 0.0247360338, -0.0319921188, 0.0209105927, -0.0095499875, 0.0190863609, -0.0209650472, -0.0248041023, -0.0282075182, 0.00495537464, 0.0350415781, 0.00399561133, -0.010666308, -0.0246815793, -0.00334896217, -0.00318219466, 0.0100468863, 0.00261892914, -0.012517767, -0.0192633383, -0.00294055208, 0.00398199772, 0.00378800277, -0.0240145084, -0.0129465973, 0.00532294391, -0.00902586151, -0.00831114408, -0.0316653885, -0.0155604212, -0.00848131441, 0.0117077539, 0.00487709604, -0.0214279126, -0.00730373245, -0.018051723, -0.00153153751, -0.00803887, 0.0155740352, 0.021999687, -0.000623250671, -0.00631333794, 0.0015179239, 0.0111155594, 0.0104280692, -0.00450272, -0.0117077539, -0.0231296197, -0.00662645232, -0.000374163123, -0.005071091, -0.0120617086, -0.00735818688, 0.00487028947, 0.0260974, 0.00922325905, 0.00389691209, 0.000907010573, 0.00440402143, -0.02502192, -0.0222991873, 0.0251716711, 0.0298139304, -0.020420501, -0.0109590022, -0.00489071, 0.028316427, 6.15274e-05, -0.00771894911, -0.00699742511, -0.0463136956, 0.0167992655, -0.0104008419, -0.0199440215, 0.00970654469, -0.0241914857, 0.00588450767, 0.0222719591, 0.0101013407, -0.0112585025, -0.0337074399, -0.0457419232, 0.00576198474, 0.00138689228, -0.0179292, 0.0447345115, 0.00758961961, 0.0186779518, -0.0340341665, 0.00246747723, 0.0202162955, 0.019236112, 0.000707059808, 0.00272613694, -0.04002418, 4.82593859e-05, -0.0155604212, -0.0133754276, -0.00275336416, 0.0103804208, -0.00738541456, -0.00705868658, -0.00318559818, 0.0321010277, 0.00274145231, 0.0269414466, 0.00279420521, 0.000961465237, 0.00565647846, 0.0132120643, 0.0124973468, -0.0352594, -0.0161321964, 0.00719482312, -0.0113606052, 0.00463205, 0.0218907762, 0.0152336936, 0.0136477016, -0.00788912, -0.0132460985, -0.00364846271, -0.0282075182, 0.0221630502, -0.0136681218, 0.00277888984, -0.0110406838, -0.014362419, -0.00118098559, -0.028452564, -0.00145240815, 0.0324277543, 0.0187187921, -0.0184873603, 0.00128478988, -0.00309030246, -0.0155604212, 0.013436689, 0.0136749288, -0.018569041, -0.000745773723, -0.0233202111, -0.0174799487, -0.0240553506, 4.05219325e-05, 0.0100468863, -0.0176977664, -0.000465842662, -0.024885783, -0.0182831548, -0.0286976099, -0.00198759534, 0.0134162689, 0.00479201088, -0.00799122266, -0.00293885032, 0.00404325919, -0.00536378473, -0.0296505671, -0.00594236562, 0.0247088056, -0.00343404757, -0.00854257587, 0.0514324345, -0.00422364, -0.00126522023, 0.0050949147, -0.0227756649, -0.0264377408, -0.000233559476, 0.000717695511, 0.0495809764, -0.00840644, -0.0225033909, -0.000581558852, 0.00108654075, 0.0282619726, 0.022789279, 0.0327000283, -0.0089646, 0.00681704376, 0.00352593977, -0.00465587433, -0.0120276753, 0.00623846287, -0.00873316731, 0.0104621034, 0.00596278626, 0.00350211584, 0.0136408946, 0.0197670441, 0.00788912, -0.0062316563, -0.0163908545, -0.0213598441, -0.00765768765, 0.000385649677, -0.0145938508, -0.00706549315, -0.0238239169, -0.00920964591, -0.0328633934, 0.00474436302, -0.00729011884, 0.00330982287, -0.00660943519, -0.0392073616, -0.0108909337, -0.0215095934, 0.0432642326, 0.0237694625, 0.0060308543, -0.00560883107, 0.0355316699, 0.0238239169, 0.0289154295, 0.0213870704, 0.0220269132, -0.0121638114, 0.0168264918, 0.0157646257, -0.00456398167, 0.030821342, 0.027662972, 0.00499961944, 0.0116873328, -0.0207063872, 0.0241234172, 0.00889653154, -0.0300862044, 0.000363527448, -0.0293510668, -0.00695998734, 0.00670132786, -0.0173301976, -0.015410671, 0.0134639172, 0.0113537982, 0.000557734922, 0.0328089371, -0.00506428396, 0.00914838444, -0.0118847312, -0.0110679111, 0.000409473578, -0.0156421028, 0.000680683355, -0.0184465181, 0.00259680697, 0.018051723, -0.00560202403, -0.0161594227, 0.00924368, 0.0238783713, 0.0253486484, -0.0287792925, 0.00334555865, -0.00171702378, 0.00395477051, 0.00832475722, -0.00334385689, 0.0199984778, 0.0169081744, 0.0224625506, -0.0202435236, 0.00758961961, 0.00773256272, -0.000907010573, 0.0291332472, 0.00121246721, -0.0128649157, 0.0140493046, -0.00456398167, -0.00152217818, 0.00994478352, -0.010809252, -0.0103055462, 0.0135796331, -0.0281258356, -0.00121587061, -0.00741264177, -0.0140765319, -0.0113401851, 0.0051391595, -0.00518340385, 0.00232963869, 0.026219923, 0.00432914635, 0.00502344314, 0.0127491988, 0.00864467863, 0.0158599224, -4.00699137e-05, -0.00541483611, 0.000584536814, 0.0037335481, -0.00763046043, -0.000796824927, -0.0189774521, -0.00571774039, -0.0178611316, 0.0217954814, 0.00250151125, 0.0168537199, 0.0176705401, -0.00111121556, 0.00975419208, 0.0472938791, -0.0147299878, 0.00359741156, 0.00697019743, 0.0142398961, -0.0142943505, 0.00157748372, -0.0180108808, 0.00972696487, 0.00575177418, -0.00400922494, -0.00456398167, 0.0271592662, 0.0022445533, -0.0148933521, 0.0142398961, 0.00331152463, -0.010278319, 0.00242323265, 0.0166631285, 0.00924368, 0.00146261835, 0.019236112, -0.00161492126, -0.0113674123, -0.010278319, -0.027254561, 0.00802525692, 0.00281292386, 0.0159143768, -0.00619762205, 0.0207063872, -0.00891014468, -0.00377779268, 0.0212100931, -0.00414536148, -0.00581303565, 0.0144441007, 4.56004673e-05, -0.0124565056, 0.0158735365, 0.00111376808, 0.0211284105, 0.00414536148, -0.00870594, 0.0141037591, 0.02160489, -0.00374716194, -0.0134434961, -0.0121025499, 0.00563265476, 0.0140356906, 0.00508470461, 0.017003471, 0.00454696501, -0.00230241148, 0.00995159056, 0.00213224068, 0.0215095934, 0.000453079847, 0.0147027606, 0.00489411317, -0.00846770126, -0.00384586095, -0.00840644, 0.0153153753, -0.00382544054, -0.00196887669, -0.00320601859, -0.00401603198, -0.0217818674, -0.017384652, 0.016458923, 0.00348339695, 0.0140629178, -0.00505407387, 0.00147282856, 0.00433935644, 0.00436998717, 7.50347e-05, -0.00281632738, 0.00948872603, 0.00364846271, -0.00135881419, 0.00494176103, 0.00641884422, -0.0105233649, 0.0137293832, 0.0280713812, 0.00227178074, 0.00729692541, 0.000423299964, 0.0161594227, 0.00692254957, 0.0092504872, -0.00314135361, 0.0121433912, -0.00673536165, -0.00520042097, 0.0184329059, -0.00394796347, 0.00144134695, 0.0160369, -0.00328599894, 0.00286908029, -0.00545227388, 0.0102578979, 0.000121246725, 0.00600022357, -0.00923006609, -0.0059389621, -0.00503025, 0.0103463866, 0.00302393571, -0.00236026943, 0.00161066698, 0.000548375538, 0.0110270707, 0.00381523021, 0.00399220781, -0.0377370864, -0.00481923809, 0.0109045478, -0.0302495677, -0.000683235936, -0.0274315383, -0.0266964, -0.0112108551, 0.00418620277, -0.00402624207, -0.013566019, -0.00974057894, 0.0111632068, 0.0117962426, -0.0114695141, 0.00736499391, -0.00463205, 0.00922325905, -0.0226939823, 0.0140220774, 0.0105846263, -0.00277888984, -0.0212645475, -0.00810693856, -0.00814778, 0.00332003296, 0.0153834438, -0.00590492832, 0.00384245743, 0.00334385689, -0.00280441553, -0.0146891465, -0.0267916974, 0.0101830233, 0.00482264161, 0.0180653371, -0.00612615, 0.0236333255, 0.0110066496, -0.00244705658, -0.0171804484, -0.0218907762, -0.018174246, -0.0248721689, 0.0179292, 0.00266317371, 0.00976780616, 0.0120140612, -0.0220949817, 0.0138178719, -0.00378119596, -0.00796399545, 0.0151656251, -0.0143896462, 0.0101013407, 0.00382203702, 0.00131286797, -0.014621078, 0.0228981879, 0.0153289894, -0.0217954814, 0.0251444429, 0.00751474407, -0.00686469162, -0.0100741135, 0.00150601193, -0.0281258356, -0.00452314084, -0.0092981346, -0.0175752435, 0.0118370838, 0.0403236821, -0.00651414, -0.016458923, 0.0330267549, 0.00317198434, -0.00341022364, 0.00807971135, 0.00534336455, -0.014362419, -0.0258795805, 0.00905989576, -0.0146346921, -0.00697700446, -0.0145666236, 0.0211692527, -0.0050030225, -0.0101966364, -0.0155876484, -0.0131576089, -0.0144168735, -0.00396157708, -0.00166171824, -0.0210603438, 0.0205294099, 0.0224353243, 0.0185962692, 0.00221051928, -0.015410671, -0.000889993506, -0.0081137456, -0.0132597117, -7.56728477e-05, -0.0170443114, 0.00577219483, -0.00303754956, 0.000176020461, 0.00176126813, -0.00613976363, -0.00110100536, -0.000729607476, 0.0147027606, 0.0333807133, 0.02476326, 0.00436318, 0.00642905431, -0.0273090154, 0.0206927732, -0.0179836545, -0.0338708051, 0.00607169559, -0.00436318, -0.0177930631, 0.0015179239, 0.00170766434, -0.00773936976, 0.0128444945, 0.00316687929, -0.00231772684, -1.43980487e-05, 0.008957793, -0.00893056579, -0.0121978456, -0.0018582656, 0.000102527927, 0.00311582815, 0.0134979505, -0.00340171508, -0.00319070322, -0.0226803701, -0.00282143243, 0.00739222113, -0.0163636282, -0.0223400276, 0.0432642326, 0.00387649168, -0.00140305853, 0.0093662031, -0.0154515123, -0.00519361394, 0.00944788475, -0.00546929054, 0.0144304875, -0.00173489167, -0.0134843374, -0.0101013407, -0.0138587132, -0.0267508551, -0.0201346129, -0.0158326942, -0.0127355857, -0.0190319065, 0.00308009214, -0.0010176216, 0.00959082879, 0.0196581353, -0.00350211584, 0.0104689104, -0.0189366117, -0.0303584784, 0.0243140087, -0.00621463917, -0.00746709621, 0.00777340401, -0.00298479642, 0.0136340875, -0.0200393181, 0.00452314084, 0.00987671502, -0.00980184, -0.00141497049, 0.00405006576, 0.00248619588, 0.00916199759, 0.0229390282, -0.0114354808, 0.035286624, 0.0105914334, -0.00234835758, 0.0163091738, 0.00234835758, -0.00224795681, 0.0228981879, 0.00919603184, 0.00029907524, 0.0185009744, -0.00578240491, -0.00451293075, -0.00221562432, 0.00483965874, -0.00274996087, -0.00746709621, 0.0053093303, -0.000117205163, -0.00799803, 0.00879442878, -0.0128444945, -0.0128308814, -0.0167992655, -0.0040806965, 0.00731734606, -0.00254065054, 0.00177318009, 0.0246543512, -0.00221051928, -0.00633716211, 0.0104144551, 0.00212543388, -0.00469671516, 0.00473755598, -0.0339524858, -0.0107275695, -0.0338435769, -0.00216967822, -0.0068612881, -0.00201482279, -0.00116652111, -0.0110883322, -0.0225033909, 0.00460482296, 0.0216321163, 0.00477839727, -0.000939343, -0.00606829207, 0.000382246246, 0.0535289384, 0.00115886342, 0.0157646257, -0.0154242851, -0.00201652455, 0.0126675172, 0.0015281341, 0.00415216852, 0.0149069652, -0.00244024978, 0.00527869957, 0.0107139563, -0.00400922494, 0.00154855463, 0.0191408154, 0.0220269132, 0.0105642052, -0.00978142, -0.0181334037, 0.00136817351, -0.0166631285, -0.0157237854, -0.000672174792, -0.00436998717, 0.0123271756, -0.00281122234, -0.0241234172, -0.0169217885, -0.0145393964, -0.0131576089, 0.00845408719, -0.00688851578, 0.00684767449, -0.0335440747, 0.00334896217, 0.00162002642, -0.0214823671, 0.0128921429, -0.0144441007, -0.00486688595, 0.025947649, 0.0209650472, 0.00792315416, -0.00383905414, -0.00314645888, 0.00096742122, 0.00348339695, 0.014348805, 0.0103327734, -0.0202571359, 0.011721367, 0.00226837723, -0.0104552964, 0.0174935628, 0.0188821554, 0.0203115921, 0.0108568994, 0.0104484893, -0.00874678139, -0.000892546, 0.00940023735, -0.0179019719, -0.00385266775, -0.00486007938, 0.00530252326, -0.0102442848, 0.000166129277, 0.00171106774, -0.0181470178, 0.0204613414, -0.0208152961, 0.0063235485, -0.00401943503, -0.00140220777, -0.0171804484, 0.00179189898, 0.00495877815, 0.00812736, -0.0279897, -0.0123680169, 0.00838601869, -0.0142807364, -0.0052174381, -0.0237558484, 0.015669331, 0.013838293, -0.0116805267, -0.00222583464, 2.17499601e-05, 0.000867871277, -0.00225476362, 0.000902756292, 0.0122999484, -0.000536463573, -0.0277446527, 0.00650052587, 0.000882335822, -0.0102442848, 0.0220949817, -0.0136000533, -0.0110611049, 0.0162819456, 0.00236707646, -0.00592194498, 0.0118030496, -0.0161185823, 0.00389691209, 0.00209480291, -0.00685788458, 0.00393775338, 0.0187324062, -0.0128104603, 0.00722885737, -0.00908031594, -0.0106254676, -0.00656178733, 0.00265126163, 0.0126334829, 0.021196479, 0.00864467863, -0.00865148567, 0.0312842056, 0.00844728, 0.00239260192, 0.0272273347, -0.00831114408, 0.0055713933, 0.00409771362, -0.00495197158, -0.011326571, -0.00968612451, -0.0363757201, -0.0105301719, 0.010802445, -0.010795638, -0.00972015876, -0.00899863429, -0.0116260713, -0.00765088107, 0.00185996725, -0.000273124198, -0.00678300951, 0.00408750353, -0.00583005277, 0.00148133712, -0.000696849602, 0.00733095966, 0.00875358749, -0.00385266775, -0.00771894911, 0.00275676767, -0.0246815793, 0.0220541414, 0.0133754276, -0.0138791334, -0.0203524325, 0.00647329865, -0.00633035507, 0.0246679652, 0.00369951408, 0.0200801585, 0.0285342466, 0.0060172407, 0.00953637343, 0.037927676, -0.00889653154, -0.0267916974, 0.0156965572, 0.0143896462, -0.0274996068, 0.0109658092, 0.01184389, 0.00348850223, 0.00790273398, 0.00707910676, -0.00985629484, -0.00279590697, 0.0305762962, 0.0483829714, 0.0098494878, 0.0146755334, -0.00656859437, 0.0273226295, -0.0098426817, -0.0200801585, -0.00258319336, 0.000537739834, -0.00696679391, -0.0127900401, -0.0372469947, -0.00917561166, 0.00187358097, 0.0136477016, -0.00296948105, -0.0130146658, 0.000150069405, 0.0309302509, 0.0114490939, -0.00633375859, 0.000333322125, 0.000457334128, 0.0136136673, -0.0056632855, -0.0195900667, -0.00362123549, -0.00142688246, -0.00174425112, 0.0230207108, -0.000105080493, 0.00788912, -0.0286159273, -0.0060308543, 0.00315837073, -0.00529911974, -0.0014719778, 0.0208152961, -0.000429468666, -0.00538420537, 0.0164316967, -0.00124394882, -0.00806609821, 0.00553055247, -0.00568710966, 0.016989857, 0.025934035, -0.0154378982, 0.00221392256, -0.00782785844, -0.0262471493, 0.0111495936, -0.0131508028, 0.00244535506, 0.0143896462, 0.00265296339, 0.00222583464, 0.00714036822, 0.0318559818, -0.00365186622, 0.00085170503, 0.0104008419, 0.00183273992, 0.0027516624, -0.00445847586, 0.005071091, 0.00149580173, -0.00376758236, -0.00382544054, 0.00120310788, 0.00664346945, -0.00233304221, -0.0168945603, 0.0175888576, 0.00194505265, -0.0155331939, -0.0147163738, 0.0278399494, 0.0131508028, 0.0266555604, 0.0198078863, -0.00203354144, -0.0186643377, -0.0237558484, 0.0220813677, -0.0119323796, -0.00152728322, -0.000781084178, -0.00851534866, 0.0107275695, 0.0187868606, -0.00438019726, -0.00976099912, 0.00236707646, -0.00233814726, 0.0122659141, -8.20542482e-05, 0.00555437617, 0.0212781616, -0.00538080186, -0.0299772955, 0.00640863366, 0.00765088107, -0.00968612451, 0.0205838643, -0.0238919854, 0.00290992134, -0.00854257587, -0.0157782398, -0.00807971135, 0.0140220774, 0.0229798704, -0.0128104603, -0.00198589358, -0.0105097508, 0.0260565598, 0.0132460985, 0.0139335878, -0.00855619, -0.0137566105, -0.00860383734, -0.00214415253, 0.0201346129, -0.00637119636, -0.00673195859, -0.0119528, 0.00810693856, -0.00837921165, 0.0236197133, 0.0165542196, -0.0106186606, -0.00470352219, 0.0115239695, 0.00299841026, -0.0012379929, -0.00749432389, -0.0199167952, 0.0135932462, -0.0209105927, -0.0230887793, 0.0283436552, -0.0112380823, -0.00810013153, 0.0184192918, 0.0139948502, 0.012653904, 0.00439721439, 0.0204341151, 0.00508810813, 0.0170579255, -0.00972015876, -1.29090531e-05, -0.00947511196, -0.0195764527, 0.011857504, 0.0353410803, -0.0184192918, 0.0191952698, -0.00515277311, 0.000100028548, -0.00265466515, 0.00195015781, -0.000228454344, -0.00193824584, -0.00953637343, -0.0101830233, 0.0193314068, -0.0193314068, 0.00196206965, 0.00595597923, -0.00519021042, -0.000929132802, -0.00106186606, -0.00639842357, -0.0124905398, 0.0185282, 0.013831486, -0.0209242068, -0.0143760322, 0.00300181354, -0.0063473722, -0.00383565063, -0.0047171358, -0.0138655202, 0.0119119585, -0.00365186622, -0.0124837328, 9.13072872e-05, -0.00518680736, -0.0096657034, -0.00356337731, 0.00267508556, -0.00319751, -0.00178509206, 0.00266317371, 0.0167448111, 0.0273770839, -0.00499621592, -0.00377098587, -2.10719354e-05, 0.000716844632, -0.00597980339, 0.00813416578, -0.0255120117, -0.00625888351, 0.002666577, 0.00415897509, -0.0258659683, -0.00230751652, -0.000384798797, -0.0135864401, 0.00214074925, -0.00733095966, -0.0108568994, -0.00848131441, -0.0251988973, -0.00170341006, 0.00787550677, 0.00722885737, 0.0174254943, 0.0342247598, 0.00250661653, -0.00707910676, 0.00159450073, -0.00119374844, 0.0104621034, -0.00688511226, -0.00621804222, -0.00195185957, 0.0105437851, -0.00244024978, -0.00313965208, -0.0023977072, -0.00526168244, 0.00680343, 0.00993797742, 0.00939343, 0.000985289109, 0.00964528322, 0.00945469178, 0.0122591071, -0.00952956732, -0.0114763211, 0.00177147845, -0.00150175765, -0.000812140352, 0.00340171508, -0.0146891465, -0.0244501457, -7.42902048e-05, 0.0249674655, -0.00464226026, -0.00743986899, 0.00253894902, 0.0348782167, -0.00835198443, 0.0164997652, -0.0145257832, -0.00880123582, 0.000572199468, 0.0151111707, -0.00420322, -0.0032587715, 5.21945876e-05, 0.00772575615, -0.00720843673, 0.0287520643, 0.00251001981, -0.0108977407, -0.0101557961, 0.0195356123, -0.0138110649, -0.00795718841, 0.0012941492, 0.0037267413, 0.0078210514, 0.00451293075, -0.0131167686, 0.0244365316, 0.00813416578, -0.00151281874, -0.0194403175, -0.0249266252, -0.00965209, 0.0122931413, -0.00237728655, -0.018051723, -0.0342519879, 0.00119630096, 0.0195628405, -0.0112857297, 0.00517659681, 0.00722205034, 0.0115580037, -0.0154651254, -0.00883527, -0.0378732234, -0.0029882, -0.00018442265, 0.00503025, 0.0112448893, -0.00891014468, -0.00325707, -0.0162411053, 0.0052548754, 0.00681364024, 0.0196172949, 0.00336768082, 0.00286737853, -0.00602404773, -0.0177113805, -0.00494176103, 0.00124990486, -0.00434956653, 0.0230070967, -0.00756919896, -0.0151520111, 0.0114967423, 0.00178679381, -0.00176126813, 0.0188957695, -0.0100332722, -0.00941385049, -0.0150022609, 0.00554756913, -0.0147436019, -0.022258345, 0.0203932729, 0.00490432372, -0.00272783847, 0.0190182924, 0.0303040221, -0.00127287791, -0.00110781216, 0.00472053885, 0.0199440215, 0.00935939606, 0.00379821309, 0.0148116695, -0.0294599757, -0.0147708291, -0.005333154, -0.00158003625, 0.0130214728, -0.00381863373, 0.00333875185, -0.0141854407, -0.0316653885, -0.0186371095, -0.0185418148, 0.00431553228, 0.023184076, 0.00416918565, -0.00260531553, -0.0227348246, 0.0114695141, -0.0106390808, 0.00127117615, -0.014348805, -0.0149750337, 0.00181231939, 0.00456398167, -0.014348805, 0.0189910661, -0.00832475722, -0.00724247098, -0.00684086792, 0.0151383979, 0.00692595309, -0.00463545369, 0.00802525692, -0.00344766118, 0.01330736, -0.0659446046, 0.00590833137, 0.0373831317, 0.0377643108, -0.0137089631, 0.00481923809, -0.00228539435, -0.0320738, -0.00937981624, 0.0120480955, -0.00489071, 0.0175888576, 0.00982906763, 0.0253758747, 1.27096346e-05, -0.00740583474, 0.043618191, 0.00445507234, 0.0107684107, -0.00466268091, 0.00199610391, -0.0058232462, 0.0323733, -0.0162547193, 0.00236026943, 0.010673115, -0.00227858755, -0.000981885707, -0.00378459948, -0.00489411317, -0.00838601869, 0.0134230759, 0.0174254943, -0.0113946395, -0.0069531803, -0.0190591346, 3.459254e-05, -0.0172757432, 0.013702156, -0.0206383187, -0.0115784239, 0.000686213898, -0.00842005294, -0.00974738598, -0.0065992251, 0.00489071, -0.00218839687, -0.00262573594, 0.0120957429, 0.00267508556, -0.00784147251, 0.0216865726, -0.0181470178, -0.00842005294, 0.00102953357, -0.0213190019, -0.00930494163, -0.0188549291, 0.0292693842, 0.0226395279, -0.0154515123, -0.0163908545, -0.00810013153, 0.00502684666, 0.0224625506, 0.0069293566, -0.00443124864, 0.00126266759, 0.00340001332, -0.0054931147, -0.0241778735, 0.0121706184, 0.0309302509, -0.0159824453, 0.0145666236, 0.00541143259, -0.00271762838, -0.0204477273, 0.00482604513, -0.00135285815, 0.0234155077, -0.0140356906, 0.00722205034, -0.00949553307, -0.00165746396, -0.00442784512, 0.00727650523, 0.00552714895, -0.000688341039, 0.00146432011, 0.0121297771, -0.00915519148, 0.00691914652, 0.0107207624, -0.0155604212, 0.00399561133, -0.00989713613, -0.00845408719, 0.000480732619, 0.03003175, 0.00322984252, 0.00397859421, 0.000918071659, -0.00630993489, 0.0417122766, -0.00490092, 0.0107275695, 0.0261110142, -0.00848131441, 0.0127287786, -0.0208425242, 0.00267508556, 0.00589471776, -0.0137157692, 0.0121433912, 0.000797250366, 0.00633035507, -0.00466948794, 0.0102034435, 0.0104621034, -0.00861064438, -0.0181606319, -0.0132460985, 0.00431553228, 0.00636779284, 0.0171940625, -0.0149478065, 0.00651073642, -0.0159279909, -0.00021888224, 0.000593896199, 0.0124020511, -0.0115648098, -0.0152336936, 0.0176841542, -0.0289698839, -0.00927090738, 0.00939343, 0.0150431022, -0.00117758219, -0.00365867303, -0.0200529322, 0.00637119636, -0.0150975566, 0.0155876484, 0.0209242068, -0.01330736, -0.00768491486, -0.000335661985, 0.00893737283, -0.00891014468, -0.00624867342, -0.0155059667, 0.00621463917, -0.0241370313, 0.00892375875, 0.0101694092, 0.00206587394, 0.0153426025, -0.00670813443, 0.00425767433, -0.00871274713, -0.0174935628, 0.0100332722, 0.000634311815, 0.00533655751, 0.00639161654, -0.0223672558, 0.000579431711, -0.00702465232, 0.0149478065, 0.00755558535, -0.00337448763, 0.000835964223, 0.00820223428, 0.00216287142, -0.0152064664, -0.00953637343, -0.017125994, 0.0161730368, 0.0159688313, -0.00612955354, -0.0179700404, 0.0132392915, -0.00246067042, -0.0119459927, -0.00245046, -0.0193450209, 0.00678300951, -0.0116056511, 0.0100809205, 0.00186166901, -0.0120004471, 0.00595597923, -0.00698381104, 0.0243548509, -0.00543185323, 0.010142182, -0.00942065753, -0.00408750353, -0.012504153, -0.00478520384, 0.0149478065, -0.0165269915, -0.00899182726, -0.00493495446, -0.00849492848, -0.0135524059, -0.00668431073, -0.0217818674, 0.000125501, -0.0139676221, 0.00795038138, -0.0109930364, -0.00130010524, -0.0098426817, -0.0120753227, 0.00569051271, 0.00950233918, 0.00409771362, 0.00902586151, -0.00118864328, 0.0221494362, 0.00498260232, 0.0185554288, -0.0203932729, 0.00709272036, 0.0189093836, -0.0119664138, 0.0112721166, -0.017125994, 0.0102510909, -0.00854257587, -0.0123475958, 0.0116873328, -0.00677279942, -0.0112721166, 0.0317198448, -0.0154651254, 0.00909393, 0.00312774, 0.0141446, -0.00100315711, 0.0108705135, -0.00644947495, 0.015805468, 0.0267236289, -0.0134639172, 0.000653456, -0.0187596325, -0.0132733257, 0.00403645216, 0.00165916572, 0.0291060209, 0.00189400138, -0.00494856806, -0.0246679652, 0.00510852877, 0.0167175829, 0.01818786, 0.00423725368, -0.0068374644, 0.0059389621, -0.00493495446, -0.00459120935, -0.0112925367, 0.0137293832, -0.0114150597, -0.00680002663, -0.000490092032, -0.000590492797, -0.00933216885, -0.0176297, 0.00636779284, 0.0112585025, -0.00900544, -0.00955679454, -0.00415897509, -0.0153289894, -0.0038730884, -0.0212645475, -0.0114695141, -0.00239260192, -0.0300589763, 0.00424406072, -0.00361102517, -0.0222719591, -0.0212373212, 0.00171787466, 0.00281632738, 0.0416850485, -0.0024827926, -0.00265466515, 0.011857504, -0.0478384271, -0.0119732199, 0.0114422869, 0.00225646538, 0.00637119636, 0.00581984269, 0.0116124582, 0.0115648098, -0.00520382402, 0.00415897509, -0.030821342, -0.017003471, -0.00931855477, -0.0235516448, 0.00964528322, 0.000529231329, -0.0136340875, 0.00096742122, -0.0150975566, -0.00102017412, -0.0119459927, 0.00665027648, 0.0117962426, -0.0100741135, 0.00119715184, -0.00490772678, 0.00236026943, 0.01818786, 0.0152881481, -0.0163091738, -0.00906670187, -0.0220677536, -0.000448825595, 0.00466268091, 0.0130827343, 0.00539101195, -0.00916880462, 0.00567009253, -0.022258345, -0.00324005284, 0.0108841266, 0.0266691744, -0.0130555071, -0.00670473091, 0.0108637065, -0.000800653768, 0.0023194286, 0.00344085437, -0.0120004471, -0.0115375826, 0.00788912, -0.022394482, -0.0117894355, -0.00477839727, 0.0243276227, 0.0028265377, -0.0148525108, -0.0123475958, 0.0171668343, 0.0146619193, 0.0228845738, -0.00940023735, -0.0199440215, -0.00336427754, 0.0202299096, 0.0165814459, 0.00986310188, -0.00885569, -0.00584707, -0.0173029713, -0.0210603438, 0.00847450737, -0.012776427, 0.000422449113, -0.0151383979, 0.00265466515, -0.00675578229, -0.0176569261, 0.00711994804, 0.0692118853, 0.0184737463, 0.0140084634, -0.0254983976, -0.000167937353, -0.0298411585, -0.0189502239, 0.0364574, -0.0032587715, -0.00127202703, 0.0119187655, -0.00381863373, -0.00729692541, 0.00353615, -0.00779382419, 0.00697700446, -0.0132869389, 0.00139710261, 0.00266317371, 0.0142535092, -0.0156012625, 0.0076917219, 0.00814097282, -0.0232385304, -0.00592194498, -0.00274315383, 0.000441167911, -0.0193586349, -0.0254575573, 0.0134707233, -0.00977461319, 0.00927090738, 0.0132733257, -0.00780063123, -0.023837531, 0.00082830654, 0.024885783, -0.00749432389, -0.00755558535, -0.0182967689, -0.00876039453, 0.0164997652, 0.0175752435, 0.0173165854, 0.000238239169, -0.00296267425, 0.00261212233, 0.0075215511, 0.00724247098, -0.00712675462, -0.0261654686, 0.00813416578, -0.00711994804, -0.00722205034, 0.0161594227, 0.0190319065, 0.0189910661, -0.0153153753, 0.0113129569, 0.0219860729, -0.00429851562, 0.00409771362, -0.00867871288, 0.015941605, 0.0016702268, -0.0127832331, -0.00562244467, 0.0110406838, 0.00416918565, -0.00113929377, -0.00535017112, -0.00906670187, 0.0128921429, 4.56802336e-05, -0.0126334829, -0.00102868269, -0.0105233649, -0.000680257916, 0.00674897525, -0.0128717227, -0.00713356165, 0.00982906763, -0.0162002631, -0.0168401059, -0.000636438956, 0.00755558535, -0.0028265377, -0.00836559851, -0.00331152463, 0.00150941534, -0.000787891, 0.0265874919, -0.0167039689, 0.0126266759, 0.0370019488, -0.0062690936, -0.00689532235, 0.00559181394, 0.00941385049, -0.00332854153, 0.0180108808, 0.0149341924, -0.0110134566, 0.0100605, -0.00515277311, -0.00414536148, 0.00658901501, -0.00243344298, 0.00363825262, -0.0126675172, 0.0192497261, 0.014757215, -0.00402283855, 0.0210875701, -0.00264105131, -0.00149920513, 0.00884207711, 0.0070450725, 0.0132188704, 0.00878762174, 0.013838293, 0.00577559834, -0.00608190568, -0.0080456771, -0.0107207624, -0.00628270721, 0.00602745125, -0.00546929054, 0.0208833646, 0.00117162627, 0.0186915658, -0.0130555071, -0.00572795048, -0.0038730884, 0.0123339826, -0.0118030496, -0.0133618144, -0.00025334183, -0.0204885695, 0.00625548, 0.0157101713, 0.00805248413, -0.00678641303, 0.0364301726, 0.0128172673, -0.0161594227, 0.0254847854, -0.00300011178, 0.0104825236, 0.00499621592, -0.0198078863, 0.0134911444, 0.00062197441, 0.0051391595, 0.00346808159, 0.00431553228, -0.0120685156, -0.0156557169, 0.0241370313, -0.0216457304, 0.0190591346, 0.0124428915, 0.0172893573, 0.00975419208, 0.0111768208, -0.0135796331, 0.00289971102, 0.0117894355, 0.00759642618, 0.00870594, 0.0214551389, 0.00127628131, -0.0112380823, 0.00557479681, -0.00852896273, 0.00106867286, 0.000466693513, 0.0302495677, -0.0199576356, -0.0287792925, -0.00799122266, -0.0025423523, -0.00773256272, 0.0310663879, -0.000536889, -0.00698381104, -0.000996350311, 0.0058232462, 0.0230070967, -0.00335917226, -0.000798526686, -0.00778021058, -0.0120140612, -0.0120821297, -0.00883527, -0.0188549291, 0.0332718, 0.0171804484, 0.00750113046, 0.00983587466, 0.0217001848, -0.0125722215, -0.00270231301, 0.0138927475, 0.0165814459, 0.00915519148, -0.00903266855, 0.00918922573, -0.00141922478, -0.00472053885, -0.0127628129]
|
22 Oct, 2024
|
Sorting a 2D Array according to values in any given column in Java
22 Oct, 2024
We are given a 2D array of order N X M and a column number K ( 1<=K<=m). Our task is to sort the 2D array according to values in Column K.
Examples:
Input: If our 2D array is given as (Order 4X4) 39 27 11 42 10 93 91 90 54 78 56 89 24 64 20 65
Sorting it by values in column 3
Output:
39 27 11 4224 64 20 6554 78 56 8910 93 91 90
Java Program to Sort a 2D Array according to values in any given Column
Java
// Java Program to Sorting a 2D Array
// according to values in any given column
import java.io.*;
import java.util.*;
class GFG {
public static void sortbyColumn(int a[][], int c){
Arrays.sort(a, (x, y) -> Integer.compare(x[c],y[c]));
}
public static void main(String args[])
{
int m[][] = { { 39, 27, 11, 42 },
{ 10, 93, 91, 90 },
{ 54, 78, 56, 89 },
{ 24, 64, 20, 65 } };
// Sort this matrix by 3rd Column
int c = 3;
sortbyColumn(m, c - 1);
// Display the sorted Matrix
for (int i = 0; i < m.length; i++) {
for (int j = 0; j < m[i].length; j++)
System.out.print(m[i][j] + " ");
System.out.println();
}
}
}
Output39 27 11 42
24 64 20 65
54 78 56 89
10 93 91 90 Java Program to sort 2D Matrix according to any ColumnThe idea is to use Arrays.sort in Java.
Syntax:
Arrays.sort(arr, (a,b)->a[0]-b[0]);Example:
Java
// Java Code to sort 2D Matrix
// according to any Column
import java.util.*;
class sort2DMatrixbycolumn {
public static void sortbyColumn(int a[][], int c)
{
Arrays.sort(a, new Comparator<int[]>() {
@Override
// Compare values according to columns
public int compare(final int[] entry1,final int[] entry2){
if (entry1[c] > entry2[c])
return 1;
else
return -1;
}
});
}
public static void main(String args[])
{
int m[][] = { { 39, 27, 11, 42 },
{ 10, 93, 91, 90 },
{ 54, 78, 56, 89 },
{ 24, 64, 20, 65 } };
// Sorting the matrix by 3rd Column
int c = 3;
sortbyColumn(m, c - 1);
for (int i = 0; i < m.length; i++) {
for (int j = 0; j < m[i].length; j++)
System.out.print(m[i][j] + " ");
System.out.println();
}
}
}
Output39 27 11 42
24 64 20 65
54 78 56 89
10 93 91 90
Explanation of the above Program: If element at 0 index of array a is greater than element at 0 index of array b, their difference will be positive. This means array a is kept after array b.If element at 0 index of array a is smaller than element at 0 index of array b, their difference will be negative. This means array b is kept after array a.If both the elements are equal, then their difference will be 0. This means that they will be equally placed.On the basis of these values, the entire array is sorted. Time complexity: O(n log n) where n is the number of rows.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java
|
https://www.geeksforgeeks.org/sorting-2d-array-according-values-given-column-java/?ref=ml_lbp
|
Pandas
|
Sorting a 2D Array according to values in any given column in Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0219507422, -0.0197501667, -0.00736642675, 0.046608191, -0.0219947528, -0.0101336502, -0.0130164046, 0.0181547478, -0.0303019267, 0.0193760674, -0.00992459618, -0.0575230457, 0.023260083, 0.00471748412, -0.0308960807, -0.0049237879, 0.0188039187, 0.0646529123, -0.0582272299, -0.0117400708, -0.0293116663, 0.00126120483, 0.0242723487, 0.0434393622, -0.02955373, 0.0052181147, 0.0173845477, 0.00904436596, -0.0376958586, -0.0207514279, 0.00172470114, -0.00331736775, 0.04049059, -0.043593403, -0.0214996226, -0.0330746509, -0.00548218377, 0.0230400264, -0.0145568075, 0.0224348679, -0.00286074821, -0.0240522921, 0.00372172357, 0.00937995315, -0.0144357756, 0.0108763445, -0.00664023682, 0.00356768328, -0.00560321566, 0.01055176, 0.00956150051, 0.0304779727, -0.0088243084, 0.0563787483, -0.0167683866, 0.0234361291, -0.0454638898, 0.0381359756, -0.0037712364, -0.00962201692, 0.0263849013, -0.0402705334, -0.0383120216, -0.0222368166, -0.0109368609, -0.0389501862, -0.0245804302, -0.00102395529, -0.0144357756, 0.0138526233, -0.00575450528, -0.018561855, -0.0191670135, -0.0134565197, -0.0263408907, -0.0472683646, 0.0795728117, -0.0115420185, -0.00783955, 0.043769449, -0.0106342817, -0.00814763084, -0.0134565197, 0.0041645891, 0.0070308391, -0.0272431262, 0.00633765757, -0.0246244408, -0.0307860523, 0.0277712643, -0.0186388753, -0.00390052027, 0.0116520477, -0.0316002667, 0.0100291232, 0.00747645553, 0.00973754656, -0.00967703108, -0.0174835734, 0.0534739867, -0.021367589, -0.020245295, 0.0177366398, 0.00344940228, 0.0123672346, -0.0255486835, 0.00662923418, -0.0192990471, 0.0361774638, 0.0175385866, -0.00228584791, 0.0116080362, -0.0122902151, -0.00862625614, -0.0105792675, -0.00183335459, -0.0308080576, -0.0508773066, 0.0196401365, 0.021367589, 0.0203443207, 0.00617261464, 0.00689880457, 0.0320403799, -0.0391922519, 0.0254606605, 0.039104227, 0.0213345811, -0.0176706221, -0.0416348912, 0.00798258837, -0.0357593521, -0.0110633941, -0.0312921852, 0.0184188168, 0.0170874689, 0.0355172902, 0.0437474437, -0.00592504954, -0.00165180711, -0.0152059775, -0.0167133715, -0.019034978, -0.0391922519, 0.0131044276, -0.0106122755, 0.0101171462, 0.0745555, -0.0231280494, 0.00294327, -0.0654011071, -0.00877479557, 0.0472243503, -0.0117840823, 0.0328986049, -0.0169004202, 0.0177476425, 0.0136655746, -0.031622272, -0.0469162725, 0.0323484614, -0.018264778, -0.0125652868, 0.00111404143, 0.00534189725, 0.00706934929, -0.00695381872, -0.0231500547, -0.0492488816, 0.02825539, -0.0107553136, -0.0336688049, 0.0533419512, 0.0398084112, -0.0500410907, -0.00217856979, 0.0203773305, -0.0213345811, 0.00749846129, -0.0277272519, -0.0110688955, -0.0507012606, 0.0260108039, 0.0433953516, 0.0171644893, -0.0284534432, 0.0108048264, -0.0267149881, 0.0166253485, 0.0165813379, -0.0162182413, -2.82056192e-07, 0.0346150547, 0.00528138131, -0.00639817351, -0.0307200346, -0.038510073, -0.0152829979, -0.0107333073, 0.0145568075, -0.011217434, -0.00964952353, 0.00966602843, -0.00446716836, 0.0577871166, 0.0176596195, 0.0165703334, -0.0567748509, 0.0212245509, -0.000556676881, -0.05065725, 0.0504812039, -0.0612200126, -0.00947898, 0.0445176437, -0.00295702345, -0.021191543, 0.000805273128, -0.0224568732, -0.0196401365, 0.0188809391, 0.00394178089, 0.0487647541, -0.011409984, -0.0154370377, -0.0449577607, 0.0326345377, -0.0103757139, -0.00184435747, -0.0268030111, -0.0267149881, 0.00350166601, -0.014303741, -0.0200912543, 0.0357813574, -0.0405786149, -0.024294354, 0.0191780161, 0.00304229581, 0.0099135926, 0.0203113127, 0.0126313036, -0.069890283, -0.0221818015, -8.40688663e-05, 0.0151949748, -0.00864276104, 0.0299938451, 0.0297517814, 0.0323264562, -0.00827416405, -0.0160421953, -0.0550143905, -0.0164823104, 0.0179456938, 0.027837282, -0.0306980293, 0.0196951516, -0.0145898163, 0.0471363291, -0.000546017836, 0.0549703799, -0.0189799648, 0.0091213854, 0.0301478859, -0.0218187068, -0.0113109583, -0.024382377, 0.00992459618, 0.0180887319, -0.0202893075, -0.0330966562, 0.0326125287, -0.0473563857, 0.0518015511, -0.0182977859, -0.0101226475, -0.0362434797, 0.0375198126, -0.00132928521, -0.00964402221, 0.0108213304, 0.0280133281, 0.0284534432, -0.0118831079, -0.0165373255, 0.0450457819, -0.022577906, -0.0614400692, -0.0357593521, -0.00689880457, -0.0405786149, 0.0138526233, -0.0109423622, 0.0227319449, 0.00400779815, -0.0104967458, 0.00817513838, 0.00664023682, -0.0111679211, -0.0112394402, -0.0334707536, 0.0216866732, 0.0073114126, -0.0261428375, 0.0202232897, -0.00838969462, -0.0156791, 0.0147328535, -0.0214005969, 0.00759748742, -0.0167243741, -0.0184958372, -0.00120412745, -0.00258980249, 0.0235241521, 0.046168074, 0.00793307461, -0.00339163723, 0.009220412, 0.0118280938, -0.0162512511, 0.0154040288, 0.0201352667, -0.00286349887, 0.00168068963, -0.016108213, 0.0217196811, -0.015811136, -0.0336247943, -0.0235021468, 0.0183417983, -0.0175055787, 0.0125102727, -0.00320458831, -0.00111610442, 0.010078636, -0.000592436234, -0.0537380576, 0.0332286917, 0.0339108706, 0.0396103598, 0.00825766, 0.0352752283, -0.0121251717, -0.0183968116, 0.024030285, 0.0143257473, 0.0492488816, -0.028079344, 0.000614098099, 0.0179897062, 0.0190459825, 0.0020437846, 0.0131484391, -0.00710785901, -0.0228419751, -0.0251745842, 0.00076882611, 0.0204653535, 0.0246244408, -0.0191670135, -0.0329206102, 0.00483576488, 0.00927542616, 0.00748195685, 0.0037712364, -0.0111019034, 0.00368321338, -0.0268470217, -0.0215436351, -0.0105572613, 0.00239450135, 0.0196731463, -0.00768551044, -0.00799359102, -0.0226439219, -0.0119821336, 0.00966602843, -0.0221707989, -0.0153490147, 0.0101281488, -0.0328545943, -0.0388181545, -0.0439014845, -0.0285414662, 0.00741593959, 0.0274191722, -0.020333318, 0.0169004202, -0.0146778394, 0.0330306403, -0.00491828658, -0.000928367837, 0.00930843502, 0.0106617883, 0.0278812926, 0.00868677255, 0.011409984, -0.0166253485, -0.0250865612, 0.000613754266, 0.0184188168, -0.0270010624, -0.0159981847, 0.00320183742, -0.0138636259, 0.0125762895, 0.0347470902, 0.0172415096, 0.0103317024, 0.0299058221, -0.0468722582, -0.0044644177, 0.0156460926, 0.012147177, 0.0389061756, 0.0608239099, -0.0144577818, 0.00474499119, 0.0383780375, 0.00638717087, 0.0178246628, -0.0124332523, -0.0237882212, -0.0113989813, 0.0266929828, 0.0133244852, 0.00446991902, 0.0131704453, -0.0271771085, 0.00648619654, -0.0396763794, 0.0334707536, -0.0322384313, -0.0146998446, 0.0351872034, -0.00530613773, -0.0186058674, 0.00021300884, 0.0139736552, 0.0248885099, -0.0405346, -0.0100676334, -0.03972039, -0.00577100925, -0.0331626758, 0.0113989813, -0.0325905234, -0.0119931372, -0.0248445, -0.0106067741, -0.0140946871, -0.0147658624, 0.0422290452, 0.0179236885, 0.0133134825, -0.00210430031, 0.0186058674, 0.0315122418, -0.0161192156, -0.0107773189, -0.00242200843, -0.00192275294, 0.0159541722, 0.00091461424, -0.0061231018, 0.000764012337, -0.0118280938, -0.0374317914, -0.0216316581, -0.0445836596, -0.0245584231, -0.0173405353, 0.0359794125, 0.0151949748, 0.0108268317, -0.0123342266, 0.00952849258, -0.0349231362, 0.0283654202, 0.00467347261, -0.0339108706, -0.024382377, -0.0233261, -0.0154040288, 0.00615611, -0.0078890631, -0.0502171367, -0.0244924072, 0.0241623204, 0.0341089219, 0.0102766883, -0.0116190389, 0.0256147, 0.0425151214, -0.0563787483, -0.0142487269, -0.00639817351, 0.0339768864, 0.00712986477, -0.0508773066, -0.00941846333, 0.0144577818, -0.0195411108, -0.0133794993, 0.00894533936, 0.00772952195, 0.00376023352, -0.0115420185, 0.00957250409, 0.0300158504, 0.0320843905, 0.025328625, -0.0110964021, -0.0215656403, 0.00271083415, 0.00602407567, -0.0285634715, -0.0189579595, -0.00890683, 0.00442040619, 0.0236341823, -0.0126643125, 0.0057985168, 0.0251305737, 0.0197171569, -0.0427131727, 0.00928092748, -0.0032128403, -0.00769101176, 0.00584252831, 0.00374097843, 0.00256917207, -0.0149859199, -0.0565547943, -0.0054354216, -0.0225338936, 0.00305329869, -0.0138636259, -0.00221157842, 0.007344421, -0.0135225374, -0.0109423622, -0.0214666147, 0.031622272, -0.01731853, 0.0223688502, -0.0147988712, 0.00926992483, 0.0171204787, 0.0417669229, -0.0117070619, 0.00821915, -0.0238102283, 0.0511413775, -0.00508883083, -0.0167573839, -0.0121691832, -0.00730591081, -0.00435989024, -0.0157011077, 0.00873628538, 0.03386686, -0.0145788137, 0.0153490147, 0.00203415705, 0.0353632495, -0.0220827758, -0.000674613926, -0.0030147885, -0.0161192156, 0.0066677439, -0.00462395931, -0.0261428375, 0.0240963027, 0.00420860061, -0.0196621437, -0.00621112483, -0.0179456938, -0.0124992691, 0.025328625, 0.0188479293, 0.011409984, 0.0157011077, -0.0418769531, -0.0242723487, -0.0117840823, -0.0415468663, 0.0413048044, -0.0249545276, 0.0320843905, -0.0156240864, -0.00970453862, -0.0284534432, 0.00591954822, 0.00944047, -0.00766900601, 0.000233123472, -0.00189387042, -0.0116630504, 0.00104321039, 0.00833468, -0.0411067531, 0.0137976091, 0.0194860976, 0.0248224922, 0.019211024, -0.0202893075, -0.00931943767, -0.0488087684, -0.0221377909, -0.0191670135, 0.00316882879, -0.00901685841, 0.00150189281, 0.0220167581, 0.0110688955, -0.00815863442, -0.0357373469, -0.00025977107, -0.00513559347, -0.00995210279, 0.0143587561, 0.0200802516, 0.00734992232, -0.0186388753, 0.00176046044, -0.000609628216, -0.0179677, -0.0149309058, -0.0246904586, -0.0520216078, -0.0150189288, 0.00369971781, -0.0290035866, 0.0179346912, 0.0211255252, -0.000352092087, 0.0343069732, -0.0206414, -0.0078230463, 0.0153930262, 0.0584913, -0.00638166908, -0.00818614103, -0.03386686, -0.0127633382, -0.0220607705, 0.000718625437, 0.018825924, -0.0129283816, 0.0148318792, -0.000957250362, 0.00197089044, -0.0205753818, -0.0176926274, 0.0119381221, 0.00523461914, -0.0123562319, -0.018561855, -0.0017467069, 0.0260108039, 0.0141827101, -0.0112394402, 0.0347250812, -0.0205203667, -0.0140836835, -0.00060584594, 0.0100951409, -0.0216426607, -0.0068823, 0.00901135709, 0.0319083445, 0.0409747176, -0.0149419084, -0.0214226041, 0.0386641137, 0.00843370613, 0.005039318, 0.0115200132, 0.001754959, 0.0127303302, 0.0286955051, -0.0232160725, -0.00595255708, -0.0298838168, -0.00565547915, 0.0246904586, -0.0277932696, -0.0215436351, 0.0259447861, 0.0104252268, -0.00269983127, 0.00635966333, -0.0258347578, 0.0199372154, 0.00285524689, -0.00801559631, -0.0228419751, 0.0243383665, 0.0131044276, -0.0337128192, 0.021664666, -0.0384880677, 0.0554104932, 0.00694281608, 0.0210044943, -0.0143807614, -0.00599106681, 0.0129503878, -0.0217746962, -0.0244483948, 0.0149969226, 0.000393009046, 0.00123094697, -0.0417449176, -0.0295757353, -0.00541066518, -0.0285414662, -0.0255706888, 0.0037547322, 0.0307420418, 0.00421685306, 0.0150519367, -0.018352801, 0.0135775516, -0.00867026765, 0.00456894515, 0.00193100504, 0.0108433366, 0.014303741, -0.0206083898, 0.00240687956, -0.00881330483, -0.00983657315, 0.0183968116, 0.00628264342, 0.000179484443, -0.0323264562, 0.0204543509, 0.00183748058, -0.0251965914, -0.00837869197, 0.0408866927, 0.0251965914, -0.0042333575, -0.0335147679, 0.0253726374, 0.00561696896, 0.0161302183, -0.013445517, 0.0105242524, -0.00877479557, 0.0395003334, -0.0312701799, -0.0356053114, 0.00391702447, 0.0213455837, -0.0105792675, 0.00397478975, 0.0357593521, -0.0148098739, -0.000689399079, -0.0149969226, -0.00520986272, -0.0219947528, -0.0124002434, 0.00915439427, 0.00367771205, -0.0130604161, -0.0133794993, 0.00860975217, -0.0362214744, -0.0115750274, -0.0127633382, 0.00466522, -0.0309180878, 0.0285854768, -0.00688780146, 0.0195961259, 0.0210925173, 0.0387301296, 0.0197391622, 0.0198051799, -0.033008635, 0.0135555454, -0.0209934916, 0.0259447861, 0.015338012, 0.00755347591, -0.00292126415, -0.00188836898, 0.0149639137, 0.015161966, 0.000283667934, -0.0303899497, -0.000315988902, -0.0162512511, -0.0134125082, 0.01861687, 0.0154040288, 0.0164383, 0.0169994459, 0.0201022588, -0.00551519264, 0.00583702652, 0.0214666147, -0.00254441542, 0.0275071952, -0.0246244408, -0.0177476425, -0.00371897267, 0.0341089219, 0.0325685181, 0.042053, -0.0205753818, 0.00615611, 0.0153710209, -0.00628264342, 0.00944597088, -0.00896734558, 0.0371017046, 0.0258347578, -0.0191890188, 0.00786155649, 0.00372722489, -0.00473123742, 0.0430212542, 0.00221708, 0.0370356888, -0.0169994459, -0.0276832413, -0.00240137801, -0.00980906561, 0.00435163826, -0.0165153202, 0.0260548145, -0.00261593424, 0.00697032316, 0.00615611, -0.00407931721, -0.00804860517, -0.00386751164, 0.0150959482, -0.00975405145, -0.0310281161, -0.0141056897, 0.0257467348, 0.0228419751, 0.0164603051, 0.00349066313, -0.0232160725, 0.0239862744, 0.0251965914, 0.0562467128, -0.0270450749, -0.00831267424, 0.0170544609, -0.0242723487, 0.0148208765, -0.00719588203, -0.00106315303, -0.0230400264, 0.0262528677, -0.0211695377, 0.000621318759, 0.00417559221, -0.0193870701, 0.00259392848, -0.0129283816, 0.0247124638, -0.00849422161, -0.0244043842, 0.000143639132, -0.0130714187, -0.00204516, 0.037299756, 0.0124662612, 0.0121361744, 0.031622272, -0.00851622783, -0.0204103384, -0.00826316141, 0.0101776617, 0.0210375022, -0.0385320783, -0.00708585326, 0.0253506303, -0.0242503434, 0.0249545276, -0.0130384108, -0.0159431696, -0.0477524884, 0.0123892408, 0.00541341584, 0.01035921, -0.00135954306, 0.0263849013, -0.00196263846, 0.00856574066, 0.0163172688, 0.036441531, -0.00588103803, 0.0125982957, -0.00793857686, 0.0279032979, 0.0246904586, 0.00132103299, 0.0146228252, 0.018737901, -0.00618361728, 0.0134015055, -0.0113879787, 0.0174615681, -0.0168013945, -0.027661236, -0.0138746295, 0.00939095672, 0.0127413329, -0.0226439219, 0.0101996679, -0.00361994677, 0.0135885542, 0.00305329869, -0.0148318792, -0.0418109372, -0.0230400264, -0.0126092983, -0.0297297761, -0.00761399139, -0.000121289537, -0.00292126415, -0.0014895146, -0.00878029689, -0.00115942827, -0.0458159819, 0.0198822, -0.0447597057, 0.00824665744, -0.0109038521, 0.0288275406, 0.044979766, -0.0198271852, -0.00777353346, 0.0175715964, -0.00827416405, -0.00885181502, 0.0163282715, 0.00984207448, 0.026362896, 0.0104747396, 0.00584252831, -0.0333387218, 0.018440824, -0.00641467795, -0.0158661492, -0.00182235171, 0.021752689, -0.00768000865, 0.0127523355, -0.034461014, -0.0088078035, -0.0059470553, -0.0124662612, -0.0112449415, -0.010815829, -0.018737901, 0.00614510756, -0.0279032979, 0.0446496792, -0.0135775516, 0.00626063766, 0.000523668248, -0.033426743, 0.0102931922, 0.00391427381, -0.0156680979, -0.0168784149, -0.0107608149, 0.00889582653, -0.00202177884, -0.0309620984, 0.0156240864, 0.0264069065, -0.00452493364, 0.00725639798, -0.0107828202, 0.0286294892, 0.0305219833, 0.0134235108, 0.00240000268, 0.0133024799, -0.00885181502, -0.00830167159, -0.020333318, 0.00333112129, -0.0276392289, -0.0412167795, -0.0218957271, -0.0185508523, -0.0200802516, 0.0178136602, 0.0260108039, 0.0382900164, 0.00360344257, 0.0193320569, -0.0106892958, 0.0173845477, -0.00131759467, -0.0121691832, -0.00564997783, -0.0130274072, -0.0196951516, 0.0194860976, 0.021279566, -0.0162732564, 0.00963852089, 0.0327665694, 0.0221157838, 0.0210595075, -0.0392142572, -0.00816413574, 0.00684379, 0.00127014471, -0.00107346824, -0.00862625614, 0.00318258256, 0.0107002985, -0.0117290681, -0.00599106681, -0.00869777519, 0.00407931721, 0.0135885542, 0.0233921185, 0.0113989813, 0.0078230463, -0.0293116663, 0.00410407363, -0.0123672346, 0.0159541722, 0.00918740314, 0.0212025456, 0.0131154303, -0.0309841037, -0.0221047811, -0.0191670135, 0.00145513064, -0.00626063766, 0.00546017801, -0.00611209869, 0.00959450938, -0.0217967015, 0.00857124198, -0.00623313058, -0.0128403585, -0.014215718, 0.01731853, -0.00349616446, 0.0117400708, 0.0215106271, -0.0169224255, 0.0336247943, -0.0226879343, -0.0109423622, 0.0271551032, 0.00552344462, 0.0257027224, 0.00988058466, 0.0236561876, 0.0140286693, -0.019034978, -0.0207514279, -0.00303404359, 0.00187599065, 0.00278785429, -0.00959450938, -0.00573249953, 0.000369627931, -0.0112614455, -0.00286349887, -0.0271551032, 0.0165483281, 0.0204873588, -0.0378058888, 0.0164713077, 0.0233481061, 0.0135225374, 0.0250425506, -0.0103372037, -0.0140616782, 0.00904436596, -0.00868677255, -0.0077075162, 0.0099300975, -0.0037547322, 0.00509433262, 0.0300818682, -0.0114429928, -0.00789456535, -0.0346150547, 0.00739943562, -0.0136215631, 0.0183748063, 0.00400504749, -0.00557020679, 0.00731691392, 0.00869777519, -0.0033118662, 0.0357813574, -0.0208834615, -0.0264069065, -0.0210154969, 0.0224238653, -0.00897834823, 0.0154920518, -0.0105902702, 0.0193540622, 0.00168206496, -0.00986958109, 0.016284259, 0.0149419084, -0.00383725367, 0.00518235564, 0.00300378562, -0.00852723047, 0.0141497012, -0.00914889295, -0.0150079252, 0.00201490195, 0.00205066148, 0.0134125082, 0.0431973, 0.0296197478, -0.00885181502, -0.0176046044, 0.020245295, -0.0115090106, 0.00990259, -0.00545742735, 0.0178246628, -0.00290200906, -0.0010555886, 0.0169004202, -0.00826316141, -0.00121169188, -0.0067502656, -0.030499978, 0.0120261461, -0.018440824, 0.0448257253, -0.0311161391, -0.0105737653, 0.0289155636, -0.00709685637, -0.0192220286, -0.0345710441, 0.0219837502, 0.0208724588, 0.00322384317, -0.0160752051, 0.0137646, 0.0323704667, -0.021279566, -0.00721788779, 0.0347030759, 0.0237662159, -0.010535256, 0.0371677205, 0.0178136602, -0.000411232555, 0.01120093, 0.0148428828, -0.03789391, -0.0425151214, 0.0151399598, -0.0295757353, 0.00177696475, -0.00343014719, 0.00913238898, 0.00486052129, -0.0029982843, 0.0128843701, -0.000351404422, -0.0202893075, 0.00231885654, 0.0131704453, -0.0170654636, 0.000943496765, -0.0302799195, 0.0217416864, -0.0209164713, -0.00330086332, 0.027573213, 0.0270230677, -0.00055427, -0.0103812153, -0.0166033432, -0.00601307303, -0.0209164713, 0.0280133281, 0.00468722591, -0.0184628293, 0.0132254595, 0.0269130394, 0.0103151985, 0.0151399598, 0.00170132, 0.000335415854, 0.0205093641, -0.0122682089, 0.0177806504, -0.00638717087, -0.00480275601, -0.0116520477, 0.0141827101, 0.0220717732, 0.00189937185, -0.0121031655, 0.00382074947, -0.00281123538, -0.0130274072, -0.00759748742, -0.00238487381, 0.0134675223, -0.00292951614, -0.0164603051, -0.000799084, -0.00458544958, 0.0103427051, -0.00376023352, -0.0276172236, -0.0242283382, -0.00368046272, -0.0157561209, -0.0494689383, 0.00428011967, 0.0360454284, 0.0189689621, 0.00254716631, 0.00593055133, 0.00490728347, -0.00310556241, 0.001976392, 0.00764149893, 0.0132474648, -0.0079715848, -0.00665674126, 0.0149089, -0.00789456535, -0.022996014, -0.0210595075, -0.0166143458, 0.0386641137, 0.0240082797, 0.00348241092, 0.0313582, -0.0173515379, -0.00802109763, 0.0205203667, 0.0274191722, -0.0168013945, -0.00235186517, 0.00299003208, 0.0124332523, 0.000983382226, 0.00505032111, 0.0101721603, -0.0256367065, 0.0146338278, 0.0176816247, 0.010166659, 0.00820264593, 0.0227539521, -0.0204213411, -0.00436814269, 0.0014179959, -0.0391922519, 0.00499805715, 0.00265994575, 0.0181437451, 0.00435163826, -0.00996860769, -0.00605158275, 0.00107278058, -0.00484951865, -0.0080541065, 0.00612860313, -0.00386201, 0.00167793885, 0.00100401265, 0.0197831746, 0.0146228252, 0.00287450175, 0.0257467348, -0.0198271852, 0.00409307051, 0.000809399236, -0.0170324557, 0.0116190389, 0.00709685637, -0.0160091873, 1.05300978e-05, -0.000740631192, -0.032216426, 0.0262528677, 0.00547668245, 0.0153050032, -0.0117290681, -0.0159761794, -0.0366175771, 0.00957250409, 0.0088078035, -0.0310281161, 0.0256147, 0.000513696868, -0.00395553466, -0.00693181297, -0.000659141166, 0.00853273179, 0.0108763445, -0.0201352667, -0.0521536432, -0.00967703108, -0.00879680086, 0.00772402, -0.00479175337, -0.00885731634, 0.0267810058, 0.0270450749, 0.00266132108, 0.0161192156, -0.0104197254, 0.00522636715, -0.00979806297, -0.0108048264, -0.00248940103, 0.0171644893, 0.0218957271, -0.00427461788, 0.016196236, 0.00723439222, -0.000152235138, -0.0201682746, -0.0145237986, -0.0245804302, 0.0142927384, -0.0010198293, -0.0191780161, -0.00798258837, -0.0164603051, -0.0092864288, 0.0194200799, 0.00358418748, 0.02748519, 0.0161302183, 0.0172745176, 0.0133244852, 0.0294877123, -0.0140286693, 0.0402705334, 0.0154920518, -0.00587553671, -0.0133464914, 0.00173295324, 0.0175605938, 0.00658522267, -0.0144247729, 0.00665674126, 0.00335312705, 0.0077405246, -0.011112907, -0.00260630669, 0.00648619654, 0.00985857844, -0.00517410319, -8.28224438e-05, -0.0216426607, -0.0130714187, -0.0184298214, 0.0140616782, -0.0320403799, -0.00853273179, -0.00256504584, 0.014127695, -0.0343289785, -0.0279253051, 0.0192440338, 0.00703634042, 0.0187489036, -0.0119491257, -0.0123782381, 0.0254606605, -0.0274411775, 0.0075094644, 0.00519885961, 0.00321834185, 0.0140836835, 0.00624413323, -0.0187268984, 0.000408825697, -0.0180337168, -0.0137205888, 0.00915989559, 0.0217306837, 0.00224596239, 0.028431436, 0.00807611272, 0.00531439, -0.00786705781, 0.0246244408, -0.00380424503, -0.0163502768, 0.00317433034, -0.0143587561, -0.00528138131, 0.009517489, -0.0244483948, -0.0313582, 0.0190459825, 0.00779553922, 0.0159651767, 0.00710785901, -0.02317206, -0.0138856322, -0.012708324, -0.00413433136, 0.0102986936, 0.0107168034, 0.00013418353, -0.0140946871, 0.0185508523, -0.00816963706, 0.0157121103, -0.00122750853, 0.00623313058, 0.0067502656, 0.000780516653, 0.0398304164, -0.00807061139, -0.0165153202, 0.00742144138, -0.0112504428, -0.00619462039, 0.0166033432, 0.00913238898, 0.0208834615, -0.0232820902, -0.0104032215, 0.0089728469, -0.0228639804, -0.00244401419, -0.0113219609, 0.0396543704, -0.00334487483, 0.0192220286, 0.000685273, 0.0153050032, 0.00227071904, -0.00260493136, 0.0124552576, 0.0285414662, -0.00522086537, 0.0162512511, -0.0152059775, 0.0251525789, 0.00570499199, 0.00278372806, -0.0135115338, 0.00107553136, -0.000330086332, 0.00354567752, -0.0234801415, 0.0149309058, 0.0516255051, -0.00361444545, -0.0468722582, -0.00864276104, -0.0128403585, -0.00873628538, -0.0224458706, 0.00687679881, -0.0051025846, -0.0259667914, 0.000979943783, 0.0072288909, -0.00505307177, 0.018858932, 0.0116300415, 0.0198822, 0.0291356202, 0.00435713958, 0.0156350899, -0.0111184083, -0.00451393053, 0.0110358866, -0.000250143552, 0.00575450528, 0.00300378562, 0.00230235211, 0.00505582243, -0.00342464587, 0.0320183747, -0.0203113127, -0.0344170034, -0.0149199022, -0.0287175123, 0.00834018178, 0.0126643125, -0.0146228252, -0.0149309058, -0.00785055384, -0.00615611, -0.020036241, 0.0418549478, -0.00583702652, -0.0192440338, 0.00777353346, -0.017230507, 0.00214556116, -0.0279913209, 0.000926304783, -0.01731853, -0.0179566965, 0.020245295, 0.0114539955, -0.025328625, 0.00509708328, 0.00791657064, 0.00766900601, -0.0296857655, 0.00414258335, 0.00512459036, 0.0349231362, 0.0144027676, -0.0076580029, 0.0107993251, -0.000283152185, -0.0179236885, -0.0307420418, 0.00460195355, -0.00803760253, 0.0108818458, 0.0219837502, 0.00926442351, -0.0109808724, 0.00814212952, -0.00605158275, 0.0174725708, 0.0122792115, -0.0180227142, 0.0209934916, -0.0164493024, -0.0269130394, -0.00757548166, -0.00980356429, -0.00914889295, -0.0266049597, 0.0160862077, -0.00105627626, -0.00120343978, 0.00648069521, 0.0121691832, 0.00280298316, -0.00234498829, 0.015073943, 0.00209467299, 0.00555645349, -0.0173955504, -0.00534464791, -0.0192330312, -0.00863725878, -0.0144027676, -0.0221707989, -0.00684379, -0.00304779713, 0.000734442088, 0.0054024132, 0.0219837502, -0.00726740109, 0.00888482388, 0.000911175855, 0.0564227588, 0.00372172357, 0.00440665241, -0.00370796979, 0.0233701132, 0.00704184175, 0.00705834618, -0.000929743168, 0.00282223825, 0.00387576385, -0.0156240864, -0.00270670792, 0.00955049787, -0.00446716836, -0.000812837621, 0.00573249953, -0.00923691597, -0.0113989813, 0.0273091439, 0.0140726808, 0.0205203667, 0.00195438624, 0.00800459366, -0.0074599511, -0.00868677255, -0.012147177, -0.0269570518, -0.0125872921, 0.0126092983, 0.0199702233, -0.0131264338, 0.000354498974, 0.000469685358, 0.0113659725, 0.021455612, 0.0012281962, 0.00230922899, 0.00280298316, -0.0150849456, -0.00424986146, 0.0101336502, -0.00324034761, 0.0282994024, -0.00266407174, -0.0223578475, -0.0018457328, 0.0121141691, -0.00431587873, -0.00793307461, -0.032656543, -0.00958900806, -0.00657421956, -0.017142484, 0.0216206554, -0.0192550365, -0.0075094644, 0.0101116449, 0.00761399139, 0.000283496018, 0.0108378343, 0.00707485061, -0.000832092657, 0.0128843701, 0.0149419084, 0.00698132627, 0.01770363, -0.0142707331, -0.015426035, 0.0122572063, 0.0028965075, -0.0113109583, -0.00679427711, 0.0111019034, 0.00532539282, 0.0277272519, -0.00804310385, -0.0166913662, 0.00462946109, 0.0112779494, -0.0133464914, 0.00732791657, 0.00175908511, 0.00374372932, 0.0101336502, 0.0139296437, 0.00874728803, -0.00993559882, 0.000617880374, 0.0217967015, -0.00315507525, 0.00504481932, -0.013269471, 0.0238102283, -0.00100332499, 0.00662373239, 0.0193210542, 0.00625513634, 0.00151152036, 8.13181468e-05, 0.000608940551, 0.0106452843, 0.00190487329, -0.00819164235, 0.00799359102, 0.0509653315, 0.00130384101, -0.0103427051, -0.0228859857, -0.00417284155, -0.0174615681, -0.00253341254, -0.0165813379, 0.00923691597, -0.0190239754, -0.00923691597, -0.0100456271, -0.0236121751, 0.00124263752, 0.000251175079, -0.0147548597, -0.0258127525, -0.00236699404, -0.00172332581, -0.0425151214, 0.00888482388, -0.00569949066, -0.0326785482, -0.0076580029, 0.00869227387, -0.0157891307, -0.000943496765, 0.0188919418, 0.0257027224, 0.000405731116, -0.0025512923, 0.0094514722, 0.0239202566, -0.00347140804, 0.00667874701, 0.0070638475, 0.02317206, -0.00368871493, -0.0319083445, -0.00940195937, -0.012532278, 0.00188424287, 0.00108034513, 0.00576550793, -0.000654671225, 0.00587553671, 0.00761399139, 0.0160972103, -0.0237882212, -0.00618911907, 0.00150601892, 0.00620562304, -0.0123672346, 0.0249765329, 0.0229520034, 0.00944597088, -0.0117510734, -0.00159129128, -0.00269157905, -0.0119931372, -0.0200582463, 0.0228199679, -0.00806510914, -0.00709685637, 0.000579370302, 0.0172195043, 0.0114319902, -0.0062716403, 0.0264069065, -0.013830618, -0.0117950849, 0.022996014, 0.00117593259, 0.00416734, 0.0281233564, 0.00731691392, 0.00357043394, 0.00476974761, 0.00859324727, 0.00380974659, -0.00931943767, -0.0156570952, -0.0143697588, -0.0145237986, -0.00799909234, 0.000922178733, 0.0229299981, 0.0134785259, 0.0141937127, -0.0144577818, 0.000209226608, 0.00168344029, 0.00304504647, 0.0214226041, 0.0211365279, 0.0081366282, -0.00978706, 0.012620301, -0.000432894478, 0.0102271754, 0.0149199022, 0.00616161153, -0.00060447061, 0.00776803168, -0.00510808593, -0.0289595742, -0.0202342924, 0.0231060442, -0.00152389857, -0.0133134825, 0.00285249599, 0.0235241521, 0.00151014503, 0.00281123538, 0.0141166924, 0.0150959482, -0.0127413329, -0.00474774186, -0.0110964021, -0.0176376142, -0.00431862939, 0.0073114126, 0.0182427708, -0.0248665046, -0.00308080576, 0.0046624695, -0.0120261461, -0.0117290681, 0.00748745864, 0.0271771085, 0.0051025846, -0.00973204523, -0.027837282, 0.0177696478, 0.0130384108, -0.00482751289, 0.0111789238, 0.0267810058, -0.0198711976, 0.00524012046, -0.022665929, -0.00188424287, 0.0433953516, -0.0152609916, 0.00775152771, -8.88611339e-06, 0.0167903919, 0.0207624305, 0.0178906787, -0.0173075274, 0.00628814474, -0.00590304378, -0.0257467348, -0.012147177, -0.00677777268, 0.00259392848, -0.0109093534, 0.0103372037, -0.00478900271, -0.00429937476, 0.0237001982, -0.00979256164, -0.00621112483, -0.00979256164, -0.0123012178, 0.00933594164, 0.0034741587, 0.00185536034, -0.000587278628, -0.0139846578, -0.0238982514, -0.00508332951, 0.0100841373, -0.0229299981, -0.0399184413, 0.0031963361, 0.00201765285, -0.0160532, 0.00553169707, -0.00286074821, -0.0173405353, 0.00864276104, -0.00459920289, 0.000706247229, -0.0202783048, -0.0094514722, -0.00514659612, 0.00854373444, -0.00363370054, 0.0146998446, -0.0261648446, 0.00662373239, -0.0102216732, -0.0156901032, 0.00827966537, -0.00972654391, -0.0165813379, -0.00300653651, -0.0022060771, -0.0124662612, 0.0115750274, 0.0207074154, 0.0153490147, -0.00363920187, -0.0132474648, -0.00764149893, -0.0227099396, 0.00435438892, -0.000393352879, 0.032216426, -0.00519610895, 0.00314132171, 0.0159321669, 0.00328435912, -0.00365295541, -0.0138636259, -0.00038235, -0.00756447855, 0.0211145226, -0.0113329645, 0.0136215631, -0.0209274739, 0.00547668245, -0.00683828862, -0.0360014178, -0.000158080409, -0.0216536634, -0.0155800749, -0.00705834618, 0.0107498113, -0.00977605674, -0.0144577818, 0.0117180645, -0.00712986477, 0.00277547585, -0.0100676334, -0.0151069518, 0.000100315301, 0.00786705781, 0.00717937807, 0.00203690771, -0.0212465581, -0.0109973764, -0.0273971669, 0.0071133608, 0.0122021921, -0.000426705374, 0.00358143682, 0.000489284226, -0.0260328092, -0.010727806, 0.0262748729, -0.00358418748, 0.00838969462, 0.0102601834, 0.00639817351, 0.0195301082, -0.0192000214, 0.0111789238, 0.0170544609, -0.024030285, -0.0139296437, 0.00859324727, -0.0265169367, -0.000613410433, 0.0279693156, 0.0126092983, -0.00171232293, 0.01693343, 0.00318258256, 0.0057985168, -0.0180007089, -0.040314544, -0.00232435786, -0.00672826, -0.00193925726, -0.0151399598, -0.0244483948, -0.0138966348, -0.00102533074, 0.000975130068, 0.0149529111, -0.00336137926, -0.0119491257, -0.0278152749, 0.000434957532, 0.0163832847, 0.000332493219, 0.0116080362, -0.0157121103, -0.0124772638, 0.0115090106, 0.00464871572, 0.0237662159, 0.00653570937, -0.00861525349, -3.21920124e-05, 0.0208174456, -0.0168784149, 0.00164080423, 0.0220057555, 0.000766075391, 0.0376078375, 0.00019392572, 0.0198271852, 0.00777353346, 0.0165813379, 0.0256147, 0.00599106681, 0.00254716631, 0.0144247729, 0.0107993251, -0.00717387628, -0.0133244852, 0.0137756029, 0.00718487939, 0.00545192603, 0.00775152771, -0.0126643125, -0.0234141238, 0.00448367279, 0.00546292868, 0.000360344246, -0.0026860775, -0.00679427711, 0.00283874245, -0.00505857309, -0.00811462291, 0.011288953, -0.0102986936, -0.0131044276, 0.011217434, -0.0355172902, 0.00606258586, -0.00317983166, -0.00359243969, 0.0064696921, -0.0138746295, 0.00306430156, -0.00950098503, -0.00157203618, -0.000734442088, -0.000509914651, 0.0158881564, 0.00517135253, 0.00843370613, 0.0114429928, 0.0197831746, -0.0233481061, 0.00248665037, -0.00377948862, -0.00521261338, 0.0162402485, -0.00818064, -0.0057490035, -0.0130824223, -0.0132804736, 0.00496229809, 0.00653020805, -0.0199702233, 0.013093425, 0.0187489036, -0.0187709089, 0.00931393635, -0.00948998239, -0.0177476425, -0.018528847, -0.00943496823, 0.00579301501, -0.00665124, -0.00323209539, -0.00283324113, 0.0233481061, 0.000237421482, 0.0171644893, 0.00555645349, -0.00100470032, 0.00960551202, 0.0163502768, -0.00379874371, 0.00249765324, -0.00326785468, -0.0277932696, -0.0228199679, 0.0280133281, -0.00730040949, 0.00390602159, -0.00160504482, -0.00916539691, 0.0213455837, -0.00556195481, -0.00456894515, -0.00196263846, -0.00697582448, -0.0174725708, 0.00630464917, 0.016108213, 0.00830717292, 0.0206193924, -0.0301478859, -0.0146228252, 0.0135335401, -0.00753147, 0.0227099396, -0.00328710978, -0.00904436596, -0.00595255708, -0.00668974966, -0.0112779494, 0.0390822217, -0.00174120546, 0.00857124198, 0.0096825324, 0.000554613827, 0.0102821896, 0.0237222053, 0.0028002325, -0.00103564584, 0.0157781262, -0.0457279608, -0.0163392741, 0.0124442549, -0.00387851452, -0.0050695762, 0.0104582356, -0.00117593259, 0.0214776173, 0.0205753818, 0.0352972336, 0.0187268984, 0.00494854432, -0.00578751368, -0.00584802963, 0.0271771085, 0.0221928041, -0.00629914785, -0.0160091873, -0.00801009499, -0.00769651309, 0.000783267373, -0.0197281595, -0.00695381872, -0.00341914431, 0.0371237099, 0.00424436, -0.00308630732, -0.00819164235, 0.0348791219, -0.00433788449, -0.0023216072, 0.0381359756, -0.00263656466, 0.024382377, -0.00662923418, -0.0146558331, -0.0294877123, 0.0062386319, 0.00467897393, 0.0146228252, 0.00764149893, -0.00737192808, -0.0216536634, 0.00393903, -0.000162550336, -0.000407450338, 0.00583702652, 0.0389942, 0.0153710209, -0.00193375582, 0.00427186722, -0.00297627854, -0.00758098299, -0.0198491924, -0.00325135048, 0.0119821336, 0.0288715512, -0.0132034533, -0.0100896386, 0.000688711414, 0.00391702447, -0.00163255201, -0.0191780161, -0.0164383, -0.00340814143, 0.0158221386, -0.0142707331, 0.00626063766, 0.0117070619, -0.0159541722, 0.00230372767, 0.0198491924, -0.0125432806, 0.00244814041, 0.00692081032, 0.0196071286, 0.0198271852, -0.0187489036, 0.0161742307, 0.00483026356, 0.0127523355, 0.0030973102, -0.001316907, -0.0272431262, -0.0315782614, -0.0117290681, -0.000733066758, 0.0197831746, 0.00826866273, 0.0128623648, 0.0223688502, -0.0102271754, -0.00303679425, -0.00292951614, 0.00623313058, 0.0175165813, 0.0193980746, -0.00529238442, -0.00749296, 0.0117620761, 0.0129063763, -0.0102106705, 0.00843920745, -0.0119491257, -0.0120261461, 0.0169554353, -0.0140946871, -0.0121581806, 0.000154040288, -0.0185508523, -0.0160091873, 0.00705834618, -0.0062386319, -0.0212245509, -0.0206964128, 0.00249902857, 0.00865376368, -0.0165153202, -0.00386201, -0.00259530381, 0.0134015055, 0.020157272, -0.00761399139, -0.00757548166, -0.000510602316, 0.00815863442, 0.00904986728, 0.00051232148, -0.00426086457, 0.00237112027, 0.00684929173, 0.0188699365, 0.00338063436, -0.00529513508, 0.0186278727, -0.0152279828, -0.000575931917, -0.0172855221, 0.0294216964, 0.00424160948, 0.00173707935, -0.026626965, -0.0106507856, -0.00265994575, 0.0056142183, -0.0167793892, -0.00111954287, 0.0085107265, -0.0120041398, -0.0109313596, 0.0340869166, 0.00977055542, 0.00981456693, -0.00075025874, 0.00291301194, 0.0144467792, -0.0146558331, -0.0113219609, 0.00195988757, -0.0261868499, 0.00182097626, -1.72672117e-05, 0.00136710762, -0.0185728576, 0.00867026765, 0.00737743, -0.0292236432, 0.00987508334, 0.00127152, -0.0126423072, -0.0343289785, 0.0149639137, -0.00654671248, 0.0359354, 0.00284699467, 0.0190899931, -0.00590854557, -0.0134785259, 0.0029955334, 0.018825924, -0.0175826, -0.00390602159, 0.00793857686, -0.0164162945, -0.0245364178, 0.019034978, 0.00958900806, -0.0100951409, 0.0092039071, -0.00156653475, -0.0161522254, -0.000819026725, -0.0137095861, -0.0183968116, 0.000990946661, -0.00244538952, -0.00576000661, 0.0115310159, -0.00628264342, 0.0113989813, -0.00273559056, -0.00692081032, -0.00756447855, -0.00324034761, -0.0194200799, 0.00600757124, 0.01731853, -0.00180859806, 0.0027493441, -0.0202562977, 0.00476424629, 0.00453593628, 0.000667737157, -0.00741593959, -0.0234801415, 0.0136875799, -0.00425261213, -0.00753697148, -0.0223248396, 0.0033751328, -0.0274411775, 0.0137976091, 0.0150519367, -0.00335037638, -0.0189249497, -0.00723439222, -0.0187599063, -0.0120811602, 0.00297077699, 0.0257027224, 0.0100126192, -0.010815829, -0.00262006023, -0.015987182, 0.0136655746, -0.0105132498, -0.0187929161, 0.000156619091, 0.00153077545, -0.00699783023, 0.022996014, 0.0204873588, -0.0177586451, -0.00972104259, -0.00591404689, -0.0229520034, 0.00282773958, -0.0222808272, 0.0115200132, 0.00868127, 0.0166913662, 0.0230620317, -0.00526487688, -0.0155250607, 0.0159981847, -0.0100236218, 0.00644768635, -0.00452493364, -0.0107718175, -0.00651370361, 0.0156240864, -0.0144467792, 0.00619462039, -0.0107608149, 0.0275292, -0.00459920289, 0.0099300975, -0.00157478696, -0.0163062643, -0.00859324727, 0.0213455837, 0.00114429928, 0.022489883, 0.00571049377, -0.00277685141, 0.0173075274, 0.0169884432, -0.0073114126, 0.0194860976, -0.00341639365, 0.0117730796, -0.0121031655, -0.00849422161, 0.0127633382, 0.000957250362, 0.00907737389, 0.00318808388, -0.00868677255, 0.0210375022, 0.00119725068, -0.0054354216, 0.0155690722, -0.0231280494, 0.0133464914, -0.0087417867, -0.0068657957, -0.0209934916, -0.0185728576, 0.0122572063, 0.00859874953, 0.00910488144, 0.0013904887, 0.00119174924, -0.00322934473, -0.0221597962, 0.010727806, -0.0253506303, -0.0287835281, 0.00341364299, -0.0120261461, 0.00595255708, -0.00806510914, -0.00384550588, 0.0103096962, -0.0123232231, -0.00151289569, -0.00167243741, -0.0179346912, 0.00347966026, -0.00137879816, -0.00325685181, 0.0012453883, 0.00303954515, -0.00218269601, 0.0210815147, -0.000408481836, -0.00481651, -0.00967703108, -0.0154370377, -0.00254166475, 0.00561696896, 0.0216976758, 0.0179566965, 0.00195163547, 0.0245144125, -0.00766350469, -0.0109368609, 0.0180997346, -0.0129393842, 0.00351266889, 0.0136435684, 0.0110138804, 0.0368376337, -0.010711302, -0.00051232148, 0.00393077824, 0.0191340055, 0.0030147885, 0.00559221255, -0.0188479293, -0.0232820902, -0.0115310159, -0.0136325657, 0.00462946109, -0.00144687842, 0.00811462291, -0.0108213304, -0.00297077699, -0.0132364621, -0.0242723487, -0.014039672, 0.0183197912, 0.00492103724, -0.00174945756, 0.00759748742, 0.00487427507, 0.0177256372, -0.00444791326, 0.00825766, -0.0261868499, -0.0141056897, 0.00407931721, 0.0163722821, 0.00652470673, -0.012620301, -0.0238542389, 0.0176046044, 0.00401054882, -0.0184738319, -0.000488252699, 0.00439289911, -0.0304339603, -0.00539416075, 0.00276997453, 0.0188039187, 0.0219617449, 0.00335312705, -0.000320458814, -0.00893433671, 0.00423885882, -0.0210815147, 0.00634315936, 0.00701433467, 0.00672826, -0.0087913, -0.00324584893, 0.0177586451, 0.00576000661, 0.00154315366, 0.0384880677, 0.0151839713, 0.00188424287, 0.000427736872, -0.00431862939, 0.0182867832, 0.0357373469, 0.00393077824, -0.00852723047, 0.0126753151, 0.0187709089, -0.023084037, -0.0130054019, -0.0061176, -0.0234141238, 0.0358693823, 0.00979256164, -0.0303239319, -0.00303404359, 0.0175605938, -0.0134125082, -0.0152940005, -0.00347966026, -0.0100126192, 0.00323209539, 0.0199152082, 0.00558396056, -0.00428287033, -0.00198051799, 0.000454900233, 0.00239450135, 0.00876379199, 0.00986958109, 0.00896734558, -0.0276172236, 0.0147438562, 0.00250590546, -0.018352801, -0.00854373444, -0.0257027224, 0.00512734102, 0.00130452868, 0.0386641137, 0.0131704453, -0.0178686734, -0.0206414, -0.0190569852, -0.00472848676, 0.0324804969, 0.0174725708, -0.00397478975, 0.00739943562, 0.0459480174, -0.028079344, -0.0139406463, -0.00320733897, -0.00429387297, 0.0242503434, 0.0208724588, -0.0128623648, 0.0177366398, -0.0024522664, -0.0196401365, -0.00522911781, -0.00257879961, 0.006915309, 0.0237882212, -0.00360344257, 0.00435713958, -0.00385650876, 0.0233921185, -0.0087417867, -0.0032596027, -0.00447266968, 0.000972379348, 0.00893983804, 0.0144907907, -0.00276309764, -0.000269398588, 0.0339768864, -0.00687129749, 0.00181272416, -0.0041838442, 0.0138636259, 0.0236341823, 0.0128183533, -0.0153930262, 0.00212080474, 0.0173955504, 0.0188149214, 0.0024357622, 0.0355172902, -0.0222808272, -0.0014303741, 0.00122750853, 0.0250425506, 0.00159679272, -0.0128623648, 0.0125542842, -0.00680528, 0.00904986728, -0.00193375582, -0.00768000865, -0.0121361744, 0.0230180211, -0.0291576274, -0.00158991583, -0.00409857184, 0.009220412, 0.0123012178, 0.00240825489, -0.00251690834, -0.014600819, -0.0163612794, 0.0205533765, 0.0100181205, 0.0196401365, -0.0113989813, -0.0343729891, -0.00855473801, -0.0315782614, -0.000216103406, 0.00921491068, 0.0124222497, -0.00940746069, -0.00829617, 0.0133354878, -0.035231214, -0.013445517, -0.00997961, 0.000345902983, 0.00788356178, -0.00832917821, 0.0050200629, -0.00254441542, -0.0246024355, 0.00199702242, 0.00191312539, -0.0293336734, -0.0156901032, 0.0207734331, 0.00274521811, 0.0260768216, -0.000437020557, 0.00664573815, 0.0183197912, -0.0147878677, -0.00363094965, -3.31805531e-05, 0.000849972304, 0.0192660391, -0.0206744075, 0.00631015049, -0.00760849, 0.0155580696, -0.00954499654, 0.0123012178, -0.00208229455, -0.00436814269, 0.00173432869, 0.00124470051, -0.0281893741, -0.0143697588, 0.0017467069, -0.0124332523, 0.00196538912, -0.00525387423, 0.0124662612, 0.00876929332, -0.013654572, 0.0126313036, -0.0153490147, 0.00332562, 0.0037712364, 0.0157011077, 0.0112229353, -0.0144907907, 0.00864276104, -0.0108378343, 0.0177806504, -0.00816963706, -0.00735542411, -0.0132804736, -0.0125212753, -0.0149749173, -0.0157451183, 0.0169774406, 0.00395828532, 0.0190129727, 0.00687679881, 0.00203553238, -0.00437914534, -0.00706934929, -0.0072288909, 0.0155580696, -0.00404630834, -0.00593605265, -0.000151375527, -0.00114911306, -0.0198822, -0.0129613904, -0.0057159951, 0.00757548166, -0.013951649, 0.0231500547, -0.00778453611, 0.0116410451, -0.00118074636, 0.0205423739, 0.0171204787, 0.00202315417, -0.00442040619, 0.00543817226, 0.00995210279, 0.00442315685, -0.0122682089, 0.0171314813, -0.0289375689, -0.0168123972, -0.00378223928, -0.00292676548, 0.025240602, 0.00134854019, 0.00338613568, 0.00763049582, 0.00600757124, -0.0181877576, -0.00867026765, 0.00933594164, 0.0038537581, 0.0385980941, -0.0192770418, -0.00389776961, -0.0280573387, 0.00180722272, 0.00463496242, -0.00848872, -0.0110633941, -0.00346040516, 0.00829066895, -0.0150959482, 0.0211695377, 0.00222120597, 0.00834018178, 0.00708035193, 0.00561146764, 0.0112999557, 0.00241650711, 0.024118308, -0.0120041398, -0.00555920415, 0.0179126859, 0.011498007, -0.0052181147, -0.0137646, -0.0140616782, -0.00186361244, -0.00142074656, 0.00301753939, -0.00925342, -0.00353467464, -0.0237001982, -0.0165593307, -0.00334762572, -0.0132144568, -0.0231060442, -0.00234911451, -0.00426086457, -0.0087913, 0.00273971655, -0.0169884432, -0.00906637125, -0.0170104485, 0.00957800541, 0.0169554353, -0.0240742974, -0.00623313058, 0.0112064313, -0.0385980941, 0.00445616571, -0.0146778394, -0.0233040955, 0.0142707331, 0.0113879787, 0.02748519, 0.00515759923, 0.0118721053, 0.00442865817, 0.0128403585, 0.00355117884, 0.0053831581, -0.0135995569, 0.0188479293, -0.0134345144, -0.019860195, 0.00836218707, -0.0112999557, 0.00817513838, 0.0322604366, 0.00318533322, 0.0171204787, -0.0147438562, -0.0157341156, -0.0128403585, -0.00631015049, -0.021367589, 0.0246244408, -0.0222038068, -0.00171369826, -0.00200527441, -0.00686029438, 0.0171754919, 0.00732241524, 0.0146998446, -0.00710235769, 0.0118500991, -0.000669456378, -0.00698682759, 0.017439561, 0.00277822674, -0.00492103724, -0.0179126859, 0.00733891968, -0.0191890188, -0.0127193267, 0.00252378522, -0.0250865612, 0.00173983013, -0.00552344462, -0.00782854762, -0.0169994459, -0.00780104054, -0.0110138804, 0.00207404257, -0.00109684945, -0.0071463692, 0.00890132785, -0.0071133608, 0.0104087228, -0.0191670135, -0.0110743968, -0.00585903227, 0.0309620984, 0.00516035, -0.00562522141, -0.00891233142, -0.0145678101, -0.00339988922, -0.0384660624, -0.000369971764, -0.0102491807, -0.00908837747, -0.0227759574, 0.0135555454, -0.0349011272, 0.00508608, -0.000810774567, 0.00733891968, 0.0273311492, -0.00247839815, -0.038246002, -0.00708035193, 0.00635966333, -0.0189799648, 0.029377684, 0.0133134825, 0.00775152771, -0.0175385866, -0.0205973871, -0.00843920745, 0.000124727943, -0.00596355973, 0.0133684967, -0.000432894478, 0.0222808272, -0.00642017927, 0.0282773972, -0.0193540622, 0.00353467464, 0.0117730796, -0.0101996679, 0.0160311926, 0.0217636917, -0.0042663659, -0.0219947528, -0.0119271195, 0.00995210279, -0.00219782488, 0.00445066392, 0.0108708432, -0.0188809391, -0.0240963027, 0.000169685009, 0.00923141465, 0.00774602592, 0.00224458706, -0.0056334734, 0.000715187052, 0.00436539203, 1.45326101e-06, 0.0135995569, 0.00738293119, 0.00630464917, 0.0256587118, -0.000931118557, 0.00533089414, 0.0099135926, -0.0084282048, 0.0134235108, 0.0117730796, -0.0158771537, 0.00322934473, 0.0253506303, 0.00212218, -0.010535256, 0.0163502768, 0.00381249725, 0.0145237986, 0.0188369267, 0.00160917093, -0.000124641971, 0.0103922179, 0.000763324671, -0.0159651767, 0.0198161826, -0.00611209869, -0.00234636362, -0.0189029444, -0.0160972103, 0.00908837747, 0.00869777519, -0.000951748923, -0.00490178214, 0.000475874462, 0.00752596837, 0.00990259, -0.025504671, -0.024382377, -0.000667049491, -0.00394728268, -0.0246244408, 0.00786705781, -0.0325465128, -0.0260548145, -0.0111514172, 0.00823015254, 0.00706934929, 0.00161329703, 0.0193430595, 0.0192990471, 0.0192990471, 0.0140836835, -0.00810361933, -0.00179346907, -0.0056334734, 0.0111514172, -0.0102381781, -0.00100813864, 0.0127633382, -0.0356933363, 0.000849284639, -0.0020754179, -0.00567198358, -0.0071133608, -0.015073943, 0.019123001, 0.0122792115, 0.00553994905, 0.00923691597, -0.0122572063, -0.00877479557, 0.0255266763, 0.0177366398, -0.00412883, 0.0180117115, -0.0134895286, -0.0111459149, 0.0228199679, -0.00937995315, 0.00695932051, -0.00973754656, 0.0151289571, 0.00614510756, 0.0193100516, -0.0197941773, 0.00179346907, -0.00272046146, -0.0068657957, -0.00971004, -0.000223324038, 0.00588103803, 0.0215656403, 0.0181987602, -0.0154700466, -0.011376976, -0.0047257361, 0.00345490361, 0.0157451183, -0.000335587771, -0.00272458768, 0.0267149881, 0.00814212952, -0.0118941106, 0.00885731634, -0.0152059775, 0.0424711071, -0.0235021468, -0.0112614455, 0.0100951409, -0.0118831079, -0.0115640247, 0.00869777519, 0.0121801859, -0.0176486168, -0.00210980186, 0.0263849013, -0.0239202566, -0.0149639137, 0.00374648, 0.0288055353, 0.00221845531, 0.0187158957, -0.010920356, 0.013918641, 0.0153820235, 0.0197061542, 0.0112669468, 0.0116520477, 0.0263849013, -0.00913238898, -0.000733754423, -0.0018773661, -0.0319303535, -0.000495129498, 0.0150079252, 0.00218682201, -0.015249989, -0.0271991137, -0.00221708, -0.011498007, 0.00151839713, -0.00772952195, -0.0292236432, -0.0103537077, 0.013742595, 0.0159101617, 0.0250865612, 0.0162072387, 0.0424711071, -0.0180997346, -0.0273751598, 0.0273751598, -0.0124882665, 0.0373437665, -0.0124552576, -0.0119821336, 0.00142762344, -0.00243851286, -0.0163942873, 0.000220401402, 0.00426086457, 0.0026021807, 0.0127413329, -0.019684149, 0.0150519367, -0.00163530279, -0.0135995569, 0.0124222497]
|
17 Feb, 2022
|
Split a String into a Number of Substrings in Java
17 Feb, 2022
Given a String, the task it to split the String into a number of substrings.
A String in java can be of 0 or more characters.
Examples :
(a) "" is a String in java with 0 character
(b) "d" is a String in java with 1 character
(c) "This is a sentence." is a string with 19 characters.
Substring: A String that is a part of another string is called substring of the other string.
Example 1: Let us consider the string bat. The possible substrings are:
(1) "b"
(2) "ba"
(3) "bat", every string is a substring of itself
(4) "a"
(5) "at"
(6) "t"
(7) "" , "" is a substring of every string
Example 2: Let us consider the string The Cat. The possible substrings are:
(1) "T"
(2) "Th"
(3) "The"
(4) "The "
(5) "The C"
(6) "The Ca"
(7) "The Cat", every string is a substring of itself
(8) "h"
(9) "he"
(10) "he "
(11) "he C"
(12) "he Ca"
(13) "he Cat"
(14) "e"
(15) "e "
(16) "e C"
(17) "e Ca"
(18) "e Cat"
(19) " "
(20) " C"
(21) " Ca"
(22) " Cat"
(23) "C"
(24) "Ca"
(25) "Cat"
(26) "a"
(27) "at"
(28) "t"
(29) "" , "" is a substring of every string
Note: Total number of substrings of a string of length N is (N * (N + 1)) / 2. This is after excluding the empty string “” because it is a substring of all strings.
Approach:
Let us consider a string which has n characters:
1. For each character at index i (0 to n-1):
find substrings of length 1, 2, ..., n-i
Example: Let our string be cat, here n = 3 (the length of string)
here,
index of 'c' is 0
index of 'a' is 1
index of 't' is 2
Loop from i = 0 to 2: (since n-1 = 2)
When i = 0:
Substring of length 1 : "c"
Substring of length 2 : "ca"
Substring of length 3 : "cat" , (substring of length n-i or 3-0 = 3)
When i = 1:
Substring of length 1 : "a"
Substring of length 2 : "at" , (substring of length n-i or 3-1 = 2)
When i = 2:
Substring of length 1 : "t" , (substring of length n-i or 3-2 = 1)
Example:
Java
// Java Program to split a string into all possible
// substrings excluding the string with 0 characters i.e. ""
import java.io.*;
import java.util.ArrayList;
class SubstringsOfAString {
// function to split a string into all its substrings
// and return the list as an object of ArrayList
public static ArrayList<String>
splitSubstrings(String s)
{
// variables to traverse through the
// string
int i, j;
// to store the length of the
// string
int stringLength = s.length();
// List object to store the list of
// all substrings of the string s
ArrayList<String> subStringList
= new ArrayList<String>();
// first for loop
for (i = 0; i < stringLength; i++) {
for (j = i + 1; j <= stringLength; j++) {
subStringList.add(s.substring(i, j));
}
} // end of first for loop
// returning the list (object
// of ArrayList) of substrings
// of string s
return subStringList;
}
public static void main(String[] args)
{
// here "The Cat" is our input string
String stringInput = new String("The Cat");
ArrayList<String> subStringList
= SubstringsOfAString.splitSubstrings(
stringInput);
System.out.println(
"\nSubstring list printed as an ArrayList : ");
System.out.println(subStringList);
System.out.println(
"\n\nAll substrings printed 1 per line : ");
int count = 1;
// each substring would be printed
// within double quotes
for (String it : subStringList) {
System.out.println("(" + count + ") \"" + it
+ "\"");
count++;
}
}
}
Output
Substring list printed as an ArrayList :
[T, Th, The, The , The C, The Ca, The Cat, h, he, he , he C, he Ca, he Cat, e, e , e C, e Ca, e Cat, , C, Ca, Cat, C, Ca, Cat, a, at, t]
All substrings printed 1 per line :
(1) "T"
(2) "Th"
(3) "The"
(4) "The "
(5) "The C"
(6) "The Ca"
(7) "The Cat"
(8) "h"
(9) "he"
(10) "he "
(11) "he C"
(12) "he Ca"
(13) "he Cat"
(14) "e"
(15) "e "
(16) "e C"
(17) "e Ca"
(18) "e Cat"
(19) " "
(20) " C"
(21) " Ca"
(22) " Cat"
(23) "C"
(24) "Ca"
(25) "Cat"
(26) "a"
(27) "at"
(28) "t"
Time Complexity: O(n2) where n is the length of a string
Output 1: When string Input = bat
Substring list printed as an ArrayList :
[b, ba, bat, a, at, t]
All substrings printed 1 per line :
(1) "b"
(2) "ba"
(3) "bat"
(4) "a"
(5) "at"
(6) "t"
Output 2: When string Input = The Cat
Substring list printed as an ArrayList :
[T, Th, The, The , The C, The Ca, The Cat, h, he, he , he C, he Ca, he Cat, e, e , e C, e Ca, e Cat, , C, Ca, Cat, C, Ca, Cat, a, at, t]
All substrings printed 1 per line :
(1) "T"
(2) "Th"
(3) "The"
(4) "The "
(5) "The C"
(6) "The Ca"
(7) "The Cat"
(8) "h"
(9) "he"
(10) "he "
(11) "he C"
(12) "he Ca"
(13) "he Cat"
(14) "e"
(15) "e "
(16) "e C"
(17) "e Ca"
(18) "e Cat"
(19) " "
(20) " C"
(21) " Ca"
(22) " Cat"
(23) "C"
(24) "Ca"
(25) "Cat"
(26) "a"
(27) "at"
(28) "t"
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java
|
https://www.geeksforgeeks.org/split-a-string-into-a-number-of-substrings-in-java/?ref=lbp
|
Pandas
|
Split a String into a Number of Substrings in Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0404806808, 0.0135497469, -0.0142758582, 0.0118641322, 0.00975711457, -0.0143017909, -0.00108592468, -6.90858797e-05, -0.0122790532, 0.0412845872, -0.0134071177, -0.00199680473, 0.0434888527, 0.00331936381, 0.012298502, -0.00794832, 0.0072546252, 0.00741022034, -0.0271254275, 0.00674245786, 0.00807798281, 0.0075334, -0.0688768, -0.00240037986, -0.00284771598, 0.0417773053, -0.032286, 0.00215564156, -0.0232225806, -0.0373947099, 0.0196568575, -0.022263078, 0.00433073239, -0.0108657302, 0.00410706457, 0.00830489304, -0.0193197355, 0.0181657374, -0.00879112817, -0.00245062402, -0.00658037933, 0.00186714216, -0.00427886751, -0.0294593535, -0.0128949508, 0.00565977488, -0.0263863504, 0.00291740964, -0.0039385031, 0.0043534236, 0.00943295751, 0.00434694, -0.00419782847, 0.0302113984, 0.025011925, 0.0286035817, -0.0388209969, 0.00914121699, 0.0170636047, 0.0407140739, 0.0429702029, -0.045952443, 0.0107879322, 0.0012010003, 0.00543610658, -0.00777327595, -0.0383542106, -0.00445067044, 0.0234430078, 0.0220945161, -0.0370835178, 0.0114103137, 0.0225353688, -0.035735026, -0.0127782542, -0.0302113984, 0.0384838767, 0.011131539, -0.00827247743, 0.0497645251, -0.0320785381, -0.000493528438, -0.019695757, -0.0355275646, -0.0386394709, -0.0226002, -0.00826599356, -0.0332195722, 0.0474046655, 0.0174914915, -0.0286295135, 0.0443964936, 0.0296149496, -0.0165319871, -0.00594179099, 0.0348533206, 0.0343606025, -0.00679432275, -0.0278256051, 0.0517353974, 0.00309407501, -0.00103973236, -0.0188010838, -0.0113325156, -0.0163374934, 0.0128495684, -0.0133163547, 0.0192289706, 0.0417773053, 0.00403899141, 0.0198124535, -0.0029789994, -0.00875222869, 0.00963393506, 0.00692398567, -0.00692398567, 0.0217962917, -0.0421144292, 0.00147896458, 0.0307559799, 0.0171543695, 0.0465229601, 0.0105675058, 0.0218611229, -0.0357609577, 0.0345680639, -0.0048364168, 0.00581861148, -0.025011925, -0.00700826617, 0.0227428284, 0.000875222904, -0.0121753225, 0.00588020124, 0.00336150429, 0.0305225886, -0.0228595249, 0.0410252623, 0.0037764248, 0.0223408751, -0.0119484132, -0.019034477, -0.0026629467, -0.0291481633, -0.0483901, -0.00954965409, 0.0286554452, 0.0117085371, -0.0123179518, 0.00418486213, -0.00467433874, 0.00792238768, -0.0430739336, 0.023105884, -0.0111445049, -0.0167135149, 0.0165060554, -0.0107295848, 0.00310379965, -0.0177119188, -0.0261010919, -0.0211998429, -0.0230669864, -0.0223149415, -0.0276700091, -0.0283701885, -0.0235078391, -0.0220685825, -0.022768762, 0.0297446121, 0.00565005, 0.0239486918, 0.012298502, 0.0267623719, 0.00293361745, -0.0455634557, -0.00510222511, 0.00978953, -0.047275003, -0.0203440692, -0.0386654027, -0.0168431792, 0.0107684834, -0.011215819, 0.0187492184, 0.0306781828, 0.0150797665, 0.0397805, 0.000825383817, -0.0497126617, -0.0338938162, -0.017867513, 0.00373428431, 0.0297446121, 0.00599689782, 0.00724814227, -0.0491162129, 0.041206792, 0.0145351831, 0.0188140515, 0.00451550167, -0.0574146211, 0.00311028282, 0.0236504674, 0.0330899097, 0.000867119, -0.0334529653, -0.0414661169, 0.0340753458, 0.00826599356, -0.0281108636, 0.0612007715, -0.068721205, -0.0115399761, 0.0177508164, 0.00992567558, -0.0355275646, 0.0235337708, -0.0321304053, -0.0184898935, -0.0058672349, 0.0105156414, 0.021601798, -0.00380559871, -0.0148463733, -0.0442927629, -0.03423094, 0.0139128026, 0.00757878181, 0.000961124373, 0.0116048073, 0.00408113189, -0.0366945304, -0.00130716164, 0.0187103208, -0.0307041164, 0.015287227, 0.019695757, -0.00184931362, 0.022263078, 0.0340753458, 0.00988029409, 2.57679203e-05, 0.00256894133, 0.0134849157, 0.0057083983, -0.00435990654, 0.00504387729, 0.0359684192, 0.0302632619, -0.00696288422, -0.0101072034, 0.0154298553, 0.0308597106, -0.0247007348, 0.00831137598, 0.0290444344, -0.00304545159, 0.0183472652, 0.0333751664, 0.0260492265, 0.0279812, -0.0237152986, 0.03423094, -0.00065196, 0.00698881689, 0.00354627357, -0.0375243723, -0.0107879322, 0.0112676844, 0.0491421446, -0.0328565165, 0.0191382077, -0.00125448615, -0.0110148424, -0.0391581208, 0.015870709, -0.0388469286, 0.0526171029, 0.00179096533, -0.0212517083, 0.0315339565, 0.0270735621, -0.0228724908, 0.00382828969, -0.0402732193, -0.01163074, 0.011306583, -0.0339456834, -0.0292259622, 0.00465813093, -0.0247137, 0.0141721275, 0.000675866555, -0.0109889098, 0.0199550819, 0.0242987815, -0.0186065901, -0.0321822688, -0.0295112189, -0.0184250623, -0.0474824645, -0.00375697529, 0.00912176725, -0.062497396, -0.0181787033, -0.011131539, 0.00934867747, 0.00708606374, -0.0178415813, 0.00437935581, -0.096157819, -0.0183472652, 0.0182954, -0.0233392771, -0.0245970041, 0.0773308054, -0.0101072034, 0.00231447839, -0.0237282645, -0.008058534, -0.0301076677, 0.0118641322, 0.0456412546, 0.00874574576, -0.0101979673, -0.058037, 0.0274366178, 0.0121493908, 0.0161819, -0.00495311338, 0.0219648536, -0.00754636619, -0.0123179518, -0.00119775871, -0.0289407037, 0.0334270298, -0.0108268317, 0.0366686, 0.0249211621, -0.00311676599, 0.0152223948, 0.00267429207, 0.00493042218, -0.0159485061, -7.19222517e-05, -0.0321044736, 0.0353979021, 0.0261529572, 0.0259065982, 0.00103000773, -0.00763064716, 0.00227233791, -0.0173229296, 0.0108916629, -0.0393915139, 0.00590613391, 0.000503253192, 0.0182305686, 0.0157410465, -0.0229762215, 0.0112676844, -0.0246099718, -0.0233781766, 0.0189177804, -0.0661279485, -0.000983815407, -0.017867513, 0.0402213559, -0.0299520716, -0.0167913139, 0.0112417517, 0.00200815033, -0.0557030737, -0.0172192, 0.0140035665, 0.0110602239, -0.0363574065, 0.0165968202, -0.00618490856, -0.0119095147, 0.0364611372, -0.0132644894, -0.0257510021, -0.0384579413, -0.00512167485, -0.0114167966, 0.0450707376, 0.012881984, 0.052850496, -0.0120197274, 0.0257510021, -0.0212257765, -0.0241302196, -0.00989326, 0.0323897302, -0.0379133597, -0.0124735469, 0.00733242277, -0.00978953, -0.00422051921, -0.023598602, 0.0151705304, 0.00111347798, -0.0357090943, 0.0164801236, -0.0280589983, -0.0141980601, 0.00905693602, 0.0416217111, 0.0108462805, 0.0327527858, -0.0331417732, -0.030496655, -0.00785107352, 0.0065155481, 0.000805124, 0.0391581208, -0.00818171352, -0.0310671721, -0.0208108556, -0.0033777121, 0.00190117862, 0.02326148, -0.0222371444, -0.00213943375, 0.0383542106, 0.0127782542, 0.00908935163, -0.0409993306, -0.0126485918, 0.00387691334, 0.0307819135, 0.0337641537, -0.0134071177, -0.0443964936, -0.0295112189, -0.020940518, -0.00489476509, -0.0225613, -0.00585426856, 0.032415662, -0.0321304053, 0.0192419384, 0.000792157778, 0.010139619, -0.0427886732, -0.0158058777, -0.0103470795, -0.017206233, -0.0347755216, -0.0210442487, -0.0316895507, 0.0228465591, 0.0427627414, -0.00838917308, 0.0055657695, -0.0212387424, 0.00794183742, 0.0207719561, -0.0171284359, 0.030574454, 0.0135497469, -0.0299002081, 0.00719627691, 0.0201366097, 0.0042626597, -0.0271254275, -0.0383282788, -0.032234136, -0.0206682272, -0.0160781685, -0.0260492265, -0.00536803389, 0.0377836972, -0.000452198496, 0.0151575636, -0.035735026, -0.00814281404, -0.0191382077, 0.0285257827, 0.0195401609, -0.0308597106, -0.00696288422, 0.00593530806, -0.0337122902, -0.0174396262, -0.0219518878, -0.00783162378, 0.0110926395, -0.00600986369, 0.0510092862, -0.0431517288, 0.0146648455, -0.0174396262, 0.0261918548, -0.0656093, -0.0538359322, 0.00123827835, 0.033660423, -0.0139128026, -0.0268920343, -0.00711199641, 0.0297964774, 0.0129403323, -0.0460561737, -0.0478195846, 0.0123892659, 0.00806501694, -0.0123244347, -0.0169209763, -0.0011596703, -0.00150246592, -0.0101914844, -0.0266327094, 0.0376021676, -0.0175692886, 0.0178415813, -0.0116242571, -0.0130310962, -0.00624001492, 0.0155984173, 0.00812984817, 0.0320266746, -0.0430739336, 0.0300558023, 0.0119030317, 0.0102044502, -0.000171397813, -0.0216666292, 0.00302114, 0.0364092737, 0.0226779971, 0.0196568575, -0.0300817359, -0.0202014409, 0.0122855362, 0.0148334075, -0.0214332361, 0.0171543695, 0.00571488123, 0.0175433569, -0.0221204478, -0.0105675058, -0.016143, 0.0338419527, 0.0108527644, -0.00635022856, 0.0119808288, -0.000852531928, -0.00184283045, 0.0232096147, -0.00794832, 0.0260232948, -0.0233652089, 0.0023274445, -0.0033744704, -0.009971058, -0.00440204702, -0.000561196182, -0.0669059306, 0.0393396467, 0.0151316309, 0.0113325156, 0.0535247438, 0.0150797665, 0.00253490475, 0.0128301196, -0.0136016123, 0.0237541981, -0.0251934528, -0.0044960524, -0.0102692824, -0.0234430078, -0.0176600534, 0.0176989511, 0.0044960524, -0.0285776481, 0.0199939813, -0.0368501246, 0.00816226378, -0.02193892, -0.032234136, -0.00883002672, -0.00498228753, 0.0248303972, -0.0122336708, 0.00889485795, -0.00258839061, -0.00672949152, -0.00485586608, 0.0230540186, 0.00714441203, -0.0122660864, -0.0235467367, -0.00349765, -0.0170376729, -0.00446039531, 0.00508925924, -0.0173229296, 0.0310153067, 0.0130505459, 0.0232874118, -0.0166357178, 0.0203051716, 0.005150849, 0.0277218744, 0.00511843339, 0.014042465, 0.0017698952, -0.0204348341, -0.0225483347, 0.0145092504, 0.0162596963, -0.0020940518, -0.00768251205, 0.033738222, -0.019280836, -0.00774734328, 0.00670355884, -0.00151219068, -0.0267364383, -0.00908935163, 0.00756581547, -0.0173747949, -0.0134200845, -0.000188517341, -0.0190733764, -0.00957558677, -0.00815578084, 0.00275208987, 0.0135886455, 0.00374725065, -0.011546459, -0.0247396342, 0.0123244347, -0.0108203478, -0.00517029827, -0.00878464431, 0.0282923896, 0.01645419, -0.00287364842, 0.00724814227, 0.0807539, -0.0115399761, -0.00130392, -0.0269957632, -0.0147945089, 0.0337900855, 0.020849755, -0.00611359393, -0.00925791357, -0.010548057, 0.0120586269, -0.0385357402, 0.0176859852, -0.00264998036, 0.00911528431, 0.024674803, 0.0494792685, -0.0222890098, -0.0310412385, 0.0113649312, -0.00463868119, -0.00533561828, 0.00888837501, -0.0240394548, 0.0202014409, -0.0205515306, 0.00600662222, -0.0362018123, -0.0145611158, 0.00145708409, 0.020188475, -0.0305225886, 0.000970038702, -0.0239357259, 0.0780569166, 0.0302632619, -0.00445391191, 0.0151834963, -0.0116048073, 0.0155465519, -0.00307786721, 0.00304383063, -0.00347820064, -0.00571488123, -0.000774734362, -0.0330639742, -0.0530838892, -0.0266327094, 0.0110342912, 0.0177248847, 0.0111509878, 0.0165579207, 0.00300655281, 0.0230669864, 0.0361240134, 0.00386718847, 0.01537799, 0.0278515369, 9.47778244e-06, -0.0372131802, 0.0157280788, -0.0238449611, 0.0167783462, 0.00688508665, 0.0291222315, 0.0253231153, 0.0102303829, 0.00921253115, 0.00715737836, -0.00518002314, 0.0128690181, 0.0260751583, -0.0125837605, 0.0246229377, -0.027747808, 0.00218319497, -0.0429961346, -0.00145546324, -0.00899858773, -0.0175044574, -0.0388469286, 0.024104286, -0.0323378667, -0.0198383853, -0.00912825, 0.018865915, -0.0218222234, 0.00170182227, -0.0193456672, 0.00061994954, 0.000241294096, -0.0112806503, 0.00696936762, -0.0108981458, -0.0334010981, -0.0351904444, 0.00882354379, -0.020188475, 0.0142628914, -0.03905439, -0.0237801298, 0.0288629066, -0.0230669864, 0.0172969978, 0.0028882355, 0.00756581547, 0.0434888527, -0.00505036, 0.0209534839, 0.0298483428, -0.00807798281, 0.00510870852, 0.00590289198, 0.0209664516, -0.0010826831, 0.0131866913, 0.026088126, -0.00969876628, 0.0226650313, -0.0167653803, 0.0499201193, 0.0069304686, 0.00210701814, -0.0248822626, 0.0120326942, -0.00385422236, -0.0362536758, -0.00213781302, -0.0129921976, 0.0159874056, -0.0169987734, -0.00841510575, -0.0187881179, 0.0109629771, -0.014211027, -0.0159355402, 0.0145870484, -0.00737132179, 0.0259714294, 0.0239616577, -0.00295306696, 0.0182694681, 0.00258514914, 0.0021848157, -0.0318710804, 0.0297446121, 0.0080715, -0.0112676844, 0.0158836748, 0.00894023944, 0.0389765948, -0.00741670374, -0.0289666355, -0.0105026746, -0.0305485204, -0.00138252799, -0.0299520716, 0.028836973, 0.00631781248, -0.026010327, 0.0185158271, 0.0144055206, -0.00222209375, -0.0464192294, 0.030911576, -0.0297964774, 0.00205029058, 0.00715089543, -0.0146907782, -0.00134525, 0.0221982468, 0.02193892, 0.0414142497, 0.0114297625, 0.00517678121, -0.017621154, 0.0317932814, 0.00433073239, 0.000473268679, 0.0270476285, -0.0325712562, -0.00514760707, 0.0570515655, 0.016039269, -0.0141980601, 0.0076436135, 0.0143147567, 0.0236634333, -0.01088518, 0.0131542757, -0.00856421795, -0.00714441203, 0.0176730193, -0.0189048145, -0.0162337646, 0.0346199274, 0.038561672, -0.00982842874, 0.0144962845, -0.0239875913, -0.0258676987, 0.011883582, 0.000806339609, -0.0103276297, -0.0078121745, 0.00732594, -0.0196438916, -0.00333881332, -0.0106258541, 0.0116826044, 0.0076436135, 0.0108981458, 0.035060782, -0.00988677703, -0.00905045308, -0.00287851086, -0.00383153139, 0.027747808, -0.0104313605, -0.0175822563, 0.00496607972, 0.032234136, -0.00991271, -0.00638912711, -0.00229016668, -0.013873904, -0.00462247338, 0.001038922, -0.00515409047, -0.00118641322, -0.00761768082, 0.01777675, 0.000526349351, -0.00785107352, 0.00930977799, 0.0137572074, -0.041206792, 0.0251026899, -0.0258806646, -0.0314561576, -0.0242080167, -0.00194331899, 0.0288110413, 0.0215110332, -0.0592817627, 0.0340753458, 0.00381532358, 0.0132515226, -0.00816874672, -0.01096946, -0.0397545695, 0.0162985958, 0.00741022034, -0.000409450353, -0.00689805299, 0.0020859479, -0.0196568575, 0.0107684834, -0.0032237377, -0.0126226591, 0.00397740165, 0.00886244234, -0.0586075187, 0.00362082943, 0.00853180233, 0.00736483838, 0.0429961346, 0.000586318318, 0.00166778581, -0.0139128026, -0.0246877689, 0.016143, -0.0183472652, -0.00978304725, 0.00477806851, 0.0061168354, -0.0290963, -0.0115723917, -0.00537775829, -0.0112352688, 0.011384381, -0.00632105442, 0.0028963394, 0.00156729727, -0.0449151434, 0.0107814493, -0.050101649, 0.00951723848, 0.00319456356, 0.0125448611, -0.0161689334, -0.0178545471, 0.0128495684, -0.0187232867, 0.00338419527, -0.0433591902, 0.00367269455, -0.00829192623, 0.0224057063, 0.00540369097, -0.00891430769, 0.00944592431, 0.00538748316, 0.00678135687, -0.00277153915, 0.0144962845, 0.0119419303, 0.00332908868, 0.011215819, 0.00633726222, -0.039313715, -0.0357609577, -0.000188821243, -0.0176730193, -0.0170506388, -0.00698233396, 0.00599689782, -0.0169469081, -0.0343865342, 0.00293848, -0.0014951725, 0.00503739389, -0.0114621781, -0.000324967026, -0.0173877608, -0.00560466805, 0.0156762153, 0.00973766483, -0.0106517868, 0.0327527858, -0.00442473777, -0.00958855264, 0.0128430855, -0.0331417732, -0.0176730193, 0.00389312115, 0.0243376791, 0.0259843953, 0.0216795951, -0.0124216815, -0.0034522682, -0.00276991841, -0.0130570289, 0.00415892946, 0.00412327237, 0.0117020542, 0.0140035665, 0.0439815708, -0.0334010981, 4.38117931e-05, 0.0043372158, -0.00538748316, -0.015040868, 0.0186454896, -0.0182954, -0.0186454896, -0.0140813636, -0.013128343, 0.00209081033, -0.00341336918, 0.0154298553, 0.0381467529, -0.00924494676, 0.0221593473, -0.00268077524, 0.00462571485, -0.0191641394, -0.0128171528, -0.0221982468, 0.0254009143, 0.0423478223, 0.00843455549, 0.0167653803, -0.0172580983, 0.0380170904, 0.0346458592, 0.0176859852, 0.00867443159, -0.0437222458, -0.00702771591, -0.0164023247, -0.000196418652, -0.00163942215, -0.0260232948, 0.0149371373, 0.0172580983, 0.0209794175, 0.0281886607, 0.0114556951, -0.0332973674, 0.00473592849, 0.00597420661, -0.0293556247, 0.00711847935, -0.0207460243, -0.0044279797, 0.014872306, 0.0332195722, -0.00322211697, -0.0062659476, 0.000105047009, -0.0109370444, -0.00936812628, 0.0274625495, 0.039806433, 0.00457385, 0.0165579207, 0.00443446264, 0.00485910801, -0.00693695201, 0.0375762358, -0.0185936242, -0.021692561, -0.00984139554, 0.0146778123, -0.00557225244, 0.0109629771, -0.00622704905, -0.0186843872, 0.0191382077, -0.00678784, -0.00271157012, 0.0164671559, -0.00737780472, -0.023767164, 0.0071703447, 0.0146389129, 0.0273588188, -0.000961124373, 0.00038716456, 0.000589154661, 0.0110018756, -0.00972469896, 0.00977008, 0.00846048817, 0.00160862727, -0.0499201193, 0.0112741673, -0.0139517011, 0.0429961346, 0.00302924379, 0.00421079481, 0.00793535449, -0.01196138, -0.0192289706, 0.014457386, -0.0298483428, -0.00208756863, 0.0184769277, -0.00541341584, 0.0188788828, -0.0140683977, -0.0095042726, -0.00126745238, 0.0530579574, -0.00796128716, -0.0168431792, -0.00625622272, 0.000485424564, -0.0175433569, -0.0125578279, 0.00434369873, -0.0149241714, -0.00402602553, -0.0116112903, -0.0227557961, 0.0036111048, 0.00771492766, -0.00753988326, 0.0232225806, -0.00706013152, -0.00382504822, 0.0146518797, 0.014457386, -0.0153909568, -0.00991919264, -0.00343281869, 0.0107360678, 0.030574454, -0.0112352688, -0.0153261255, -0.0150279012, -0.0251415875, 0.00605848758, 0.0170376729, -0.0184639618, -0.0274106842, 0.0195012633, -0.00375049212, -0.00415244652, -0.0215499327, -0.000723274483, -0.0116177732, 0.00796777, 0.00399685139, -0.00341661088, -0.00800018571, 0.0255435426, -0.0212128107, -0.0188918486, 0.00603579637, -0.0158577431, -0.013128343, 0.00991271, 0.0328824483, -0.012214222, -0.0097441487, -0.0211609453, -0.00357868918, -0.0208367873, 0.0201495755, -0.00147896458, -0.00170506386, 0.0112612015, -0.00691101933, -0.0064572, 0.0151186651, 0.0016491469, 0.0178026818, 0.0248822626, -0.0108073819, -0.0119095147, 0.026088126, 0.0208627209, 0.00210863887, 0.0115853576, 0.0288888384, -0.00518002314, 0.0181268379, -0.00102109334, -0.0218092576, -0.0160522368, -0.0109046288, -0.00198545936, -0.0216277298, 0.00832434185, 0.00424969336, 0.00873926282, -0.0132644894, 0.00503091095, 0.0121104913, 0.00778624229, -0.0410511941, 0.00816874672, 0.00141494372, 0.0107879322, -0.00831137598, -0.0134849157, -0.0235726703, -0.0184898935, 0.000234608364, 0.00482345046, -0.0153131587, 0.0140294991, 0.00450901873, 0.0108138649, 0.0213424731, 0.00640857639, -0.0040130592, -0.00354951504, 0.0105415732, -0.00718979398, -0.010548057, 0.0243895445, 0.00592234172, 0.0271254275, -0.0175692886, -0.00830489304, 0.00563060073, -0.000105857398, -0.0214202702, -0.0109305615, 0.0087651955, 0.0114167966, -0.014703745, -0.0215758644, -0.00597744808, -0.0362536758, 0.011715021, -0.0316895507, 0.0276700091, 0.0265549105, -0.00251221377, -0.0169728417, -0.0204867, -0.000406006176, 0.00377966627, -0.0119095147, 0.011131539, -0.000259933091, 0.0109629771, -0.00904397, 0.00281367963, -0.00953668822, 0.0117863351, 0.0238190293, -0.0188788828, -0.0286035817, 0.00387367164, -0.00937460922, -0.018528793, 0.0237541981, 0.00480400119, -0.0221723132, 0.00814281404, -0.0138350045, -0.00489476509, -0.0153909568, 0.00627891393, -0.00482345046, -0.0127717713, 0.00811039843, -0.0252064187, -0.025426846, 0.0311190356, 0.0109175956, -0.0147296768, -0.0258936323, -0.0208367873, -0.00544259, 0.0221982468, 0.0184120964, -0.032286, 0.00243441621, -0.0212128107, -0.0100294063, 0.0398583, -0.0226909649, -0.00855125207, -0.00313945697, -0.00604876271, 0.0173488632, 0.00748153497, -0.0196438916, -0.00829841, 0.0134200845, -0.00810391549, 0.00208756863, -0.0272810217, 0.0156502817, -0.0379133597, -0.023598602, 9.61073783e-06, 0.00794832, -0.00489476509, 0.00239227596, -0.0136016123, 0.0210183151, -0.00548473, -0.00480724266, 0.0100747878, 0.000836324121, -0.000899534614, 0.00421403628, -0.0251286216, -0.00435666507, -0.0105934385, 0.000279179891, -0.00374076748, -0.0242080167, -0.0129144, 0.00681377249, -0.032234136, 0.015209429, 0.00236310181, -0.0212646741, 0.00446363678, -0.0185547248, -0.000280192879, -9.22833424e-05, -0.0284220539, -0.0207460243, -2.60528236e-06, -0.0172580983, 0.00932274479, 0.0094135087, 0.000230961596, -0.0296408813, -0.00981546286, -0.0186843872, 0.0145611158, 0.00999699067, -0.00153731275, 0.00906341895, -0.023015121, 0.0101979673, 0.0313005634, -0.00676190713, 0.0240264889, 0.0193197355, 0.00187524606, -0.0241691191, -0.0441631, -0.00779272523, -0.000915742479, 0.0337122902, -0.0127263889, 0.00285906135, 0.0101201702, -8.38755295e-05, 0.0153520582, -0.0137831401, -0.0172969978, 0.00807798281, -0.0142369587, -0.0357609577, 0.0390025266, 0.00211512204, 0.0139646679, 0.0388987958, 0.00124962383, 0.00523188803, -0.0261659231, 0.00672300858, 0.0255954079, 0.00231285742, 0.00382828969, 0.0131413098, 0.0242858138, 0.00191252411, -0.0105091576, -0.000933571078, 0.0216666292, 0.00663872762, 0.0176730193, 0.00963393506, -0.0330380425, 0.0149241714, 0.0110861566, -0.0282405261, 0.022107482, -0.00868091453, -0.0289666355, -0.0155984173, -0.0153390914, 0.0182565, 0.00489152363, -0.00331288064, -0.0036111048, -0.0352941751, -0.0215888321, 0.00306814257, 0.0131542757, -0.0217833258, -0.0226520654, -0.00766954571, -0.0148982387, -0.00215077912, 0.00886892527, 0.0270735621, -0.0100229234, -0.00470999582, -0.0156632476, 0.0314561576, -0.025180487, 0.0274884813, 0.00634374516, 0.0230929181, -0.0125643108, -0.00838269, 0.010139619, -0.0271254275, 0.0206422936, 0.0143666221, -0.0247137, -0.0111056063, -0.00826599356, -0.0139257684, 0.000875222904, -0.0156762153, 0.00414596312, -0.0165579207, -0.00541665731, 0.0188010838, 0.0317932814, 0.00467758, -0.00293361745, -0.00929681212, -0.0105739888, -0.00445067044, -0.00958855264, -0.0226002, 0.00200004643, -0.0392359197, -0.00311352452, -0.0233781766, -0.0014538425, -0.00660307053, -0.0248433631, -0.0026629467, 0.024765566, -0.00598069, 0.00855125207, -0.0176341198, -0.0504387729, 0.0225613, -0.00723517593, -0.00219616108, -0.0215758644, -0.014625947, 0.0329343118, 0.0425812155, -0.0138868699, 0.0328565165, -0.018282434, -0.0241172537, 0.000106161293, 0.0122466376, 0.0428664722, 0.0149241714, 0.00839565694, 0.0093421936, 0.0028963394, 0.0264511816, -0.0207719561, 0.00199194252, -0.00897913892, 0.0183731969, 0.0033744704, -0.0347755216, 0.000292551355, 0.0165838525, 0.0319748111, 0.0380689539, 0.00376021699, -0.0183213335, 0.0179971755, 0.00275046891, -0.0167783462, -0.014703745, 0.00549445488, -0.0138609372, -0.0036143465, -0.0110602239, -0.019695757, 0.0215888321, -0.0206293277, -0.00844103843, -0.00877167843, 0.00219616108, -0.00767602911, 0.0082076462, 0.00164023251, -0.025180487, -0.00938757602, 0.00551390415, 0.0257250704, 0.0251026899, -0.0181527715, -0.00232906546, -0.00647016615, -0.0194623638, 0.00452522654, -0.0168950427, 0.00796128716, 0.0123244347, -0.0223408751, -0.00432424946, 0.0116826044, 0.0157410465, -0.00689157, -0.0116631556, 0.0211609453, -0.0331936404, -0.00966635067, 0.0158836748, -0.0183861647, -0.00497256266, 0.0289925691, 0.0153001929, 0.0196438916, 0.0154168895, 0.00627891393, -0.0168820769, 0.00678784, -0.0302113984, 0.00281854183, 0.00765657937, 0.00435990654, -0.00448956946, 0.0168950427, 0.00255921669, -0.0139517011, 0.00432749093, 0.000268847391, -0.00659334566, -0.00268401694, 0.00367917772, 0.00827247743, -0.0135108484, 0.0183213335, -0.00946537312, -0.0185417589, -0.00735187251, 0.00451550167, -0.00238417205, 0.00169209763, -0.0230929181, -0.0120262112, -0.00299682794, 0.000658443139, -0.0076436135, 7.47079757e-05, -0.000696126372, 0.0203700028, -0.00835027453, 0.00213781302, -0.0164152924, 0.0012917642, -0.00207136082, -0.00515409047, 0.00956262089, 0.0283961203, -0.00493690558, -0.00972469896, -0.0213165395, 0.00486559095, -0.0123633342, 0.0320526063, -0.00151300104, 0.0139906, -0.00700178323, 0.0119937956, 0.00310542039, 0.00370511017, -0.0123633342, 0.00796128716, 0.000468811515, 0.0149630699, -0.0174396262, 0.000401954225, -0.0019400774, 0.00119046518, 0.0148852719, 0.0157540124, 0.0301076677, -0.00631132955, 0.00497580413, 0.00303896843, 0.0437741093, 0.00243279547, -0.0137442406, -0.00776030961, 0.0107684834, 0.00650906516, -0.0136405108, 0.000242307084, 0.00541017391, 0.0142888241, -0.000510951912, 0.00441501336, 0.0152742602, -0.00151219068, -0.0195660945, -0.0147815421, -0.00426590117, -0.00878464431, -0.00709254714, 0.0163893588, 0.0209923834, 0.0178286154, 0.00253004255, 0.017621154, -0.00133714604, -0.00242307084, -0.00683322176, -0.0119484132, 0.0117539195, 0.0100423722, -0.000755690155, 0.00704068178, 0.00365648675, 0.0149241714, -0.0151056992, 0.0204348341, -0.00631781248, 0.0126680406, -0.00624325685, 0.0112806503, 0.00108754553, 0.0248692967, 0.0194493979, 0.00327236112, 0.00994512532, 0.00897265505, 0.0017261341, -0.00123098481, -0.00375697529, -0.0161300339, -0.0213943366, 0.00718979398, -0.00286068232, 0.0287591759, 0.0029044433, 0.000769061618, -0.0121882893, -0.0429442711, 0.00565653294, 0.00148301653, 0.0054750056, 0.0113714142, -0.00534858415, -0.00742967, 0.0183731969, 0.0133163547, 0.00932922773, 0.015624349, 0.0129532991, -0.00697585056, 0.00238093035, -0.0122531205, 0.00500821974, -0.0149760358, -0.00331936381, -0.00735835545, -0.00249114376, 0.00277640158, -0.0193975326, -0.0158577431, -0.00629512174, 0.00218967791, 0.00595475733, -0.000197938134, 0.00583157782, 0.000780407107, -0.0228076596, 0.0182046369, -0.0128625352, 0.00569867343, 0.00659334566, 0.0116501888, 0.0103211468, -0.000299844891, -0.0117863351, 0.0124087157, -0.00321725453, -0.00232420303, -0.0021524, 0.0152223948, 0.00461599045, 0.0315598883, 0.0339197479, -0.00792238768, 0.0054004495, -0.00252518, -0.0153650241, -0.00584454415, -0.00932274479, -0.0109046288, -0.00877816137, -0.0248044655, -0.0172192, -0.0181268379, -0.00719627691, -0.0214591697, -0.0217962917, 0.0109500112, -0.00230313279, -0.00226585474, -0.0349051841, -0.00131850713, -0.00728704082, -0.0192030389, -0.0417773053, 0.00134525, 0.00933571067, 0.00273264037, 0.0014538425, -0.00731945643, 0.00720276032, -0.00636967784, 0.0142369587, -0.0280330647, -0.0121234581, -0.0139257684, 0.0137053421, -0.0241302196, -0.0204478, 0.0314042941, 0.0012423303, -0.000575378, -0.000583481917, -0.00459654117, 0.013796106, -0.0130375791, 0.00372455968, -0.0120715927, 0.0117279869, -0.00720276032, -0.000924656808, -0.039132189, 0.00341012771, 0.00779920863, 0.0217444263, 0.00480724266, 0.0228335932, 0.00137847604, 0.00853180233, -0.0136664435, 0.00295468769, -0.00844103843, -0.00191900728, 0.00142790994, 0.0162467305, 0.0126096932, 0.0101785185, -0.0125513449, -0.0144184865, 0.0345161967, -0.0187103208, -0.00348792528, 0.00132823177, 0.00435666507, -0.012959782, 0.00919308234, -0.0134460172, -0.00792238768, 0.0302373301, 0.00908935163, 0.00331936381, 0.000792968145, 0.00556901097, -0.00186714216, -0.00928384624, 0.000616302772, -0.0171543695, -0.0140035665, 0.0195531286, 0.00207622326, 0.00210539741, 0.0395471081, -0.00331450161, 0.00332584698, 0.0192938019, 0.00883002672, -0.00488828216, 0.0174136944, -0.0247526, -0.0111509878, -0.0191641394, -0.0108268317, -0.0194753297, -0.00118398212, -0.00709254714, 0.0100877546, 0.0106453039, 0.0104378434, -0.00013371461, 0.0121818064, -0.000152454915, -0.00516381487, -0.00143925543, -0.0124281654, 0.00630808808, -0.00184445118, 0.00567274122, 0.0120456601, 0.00144735933, -0.00314269844, -0.0286813788, 0.00444094557, -0.0074880179, -0.0121169752, -0.0062886388, 0.0103535624, 0.0156891812, -0.0043534236, 0.00278612622, 0.00616221735, -0.0183213335, 0.0194493979, -0.00271481182, 0.0193327013, 0.0182694681, 0.00608766126, -0.00830489304, -0.00235823938, -0.0012172081, -0.0151445977, -0.0178804789, -0.0206682272, -0.027592212, -0.00547176367, -0.00480724266, -0.00508277584, 0.0222760439, 0.0219259541, -0.00790293887, -1.09529483e-05, 0.0047521363, -0.0118965479, 0.00300979428, 0.0142369587, -0.0232874118, 0.00702771591, 0.0295371525, -0.00723517593, 0.0010826831, -0.0122207049, -0.0274625495, 0.00223992229, -0.00834379159, 0.00242469157, 0.0300558023, -0.0199680477, -0.0148593402, 0.00341012771, 0.0101331361, 0.0175822563, -0.00553335343, 0.00191900728, 6.40209328e-05, -0.0238060635, 0.00198221789, -0.0092643965, 0.00574405538, 0.0168950427, -0.000717196555, 0.0140165323, -0.0417254418, 0.00206649839, -0.0149501041, -0.00399685139, 0.0232355464, -0.00362082943, 0.000236229142, 0.0050017368, 0.00330801844, -0.0218351912, 0.00261108158, -0.0182435345, -0.022768762, 9.95768642e-05, 0.00041937764, 0.0193586331, -0.00473268656, -0.0269179661, 0.0122725703, 0.00552038755, 0.0241302196, 0.00453495141, 0.0105934385, 0.00830489304, -0.0139128026, 0.00343930186, 0.0183343, 0.0147815421, -0.0119808288, 0.0174396262, -0.0201755092, -0.0105610229, 0.00942647457, 0.00342957722, 0.000578214356, -0.00847993698, -0.00416865433, -0.00459005777, -0.0229632556, 0.00334853795, -0.0178804789, 0.000373387913, -0.00380235724, 0.00969876628, 0.0074945013, -0.00603579637, 0.00786403939, 0.0228854585, -0.0158966407, 0.00730649056, -0.00807798281, -0.0319488756, 0.00803908426, 0.00467433874, 0.000157925053, -0.00490773143, -0.0156632476, 0.00551066268, -0.00919956528, 0.0158318095, -0.00807798281, -0.00336798746, -0.00754636619, 0.0304188579, -0.015533586, -0.00785755645, -0.00936812628, -0.044526156, -0.00387691334, -0.0160911344, -0.000376629469, 0.00655120565, 0.0130051635, -0.0061233188, 0.00705364812, 0.0212776419, 0.0136145782, 0.0167135149, 0.011799301, 0.0108397976, 0.0042561763, 0.00700826617, 0.00543610658, -0.00292227208, -0.00620111637, 0.0269439, 0.005381, -0.0299520716, 0.0101525858, 0.011637223, -0.00411678897, -0.00827896, -0.0348273888, -0.0353719704, 0.00371159334, -0.010762, -0.0114556951, 0.00851235259, 0.00667762663, -0.0120910425, 0.00463219825, -0.0210572146, -0.00906341895, -0.0282923896, 0.00328208576, 0.0137831401, 0.00117911969, 0.0217444263, 0.0183731969, -0.0125513449, 0.0164930895, 0.00358841382, 0.0082854433, -0.0131153772, -0.0232744459, 0.0114362454, 0.0048266924, -0.00183796813, -0.0096533848, -0.0161041021, -0.0089337565, 0.00855773501, 0.0135108484, 0.0144444192, 0.00317673502, 0.00623029051, 0.0196309257, 0.0050762929, 0.0186325237, 0.00203732448, 0.00222695596, 0.00352034089, -0.00194818131, -0.0169987734, 0.00266618817, -0.00744263595, -0.0112741673, -0.0122660864, 0.0125189293, -0.000314837118, 0.00966635067, 0.00934867747, -0.00168561446, 0.0138609372, -0.00470027095, 0.000687617227, 0.000724895275, 0.0167524144, 0.00879112817, -0.00807798281, -0.00726110861, -0.00378614943, -0.0306522511, 0.00140846055, 0.00630160468, -0.000923846383, -0.0107360678, -0.0141072962, -0.0377836972, 0.0206422936, 0.0108138649, 0.0221982468, -0.0050600851, 0.0181657374, -6.28053458e-05, -0.00366945309, 0.00713792909, 0.0152353616, 0.00831137598, -0.00578943733, 0.0337641537, -0.0110213254, -0.0165319871, 0.0168042798, -0.0300558023, -0.0103535624, -0.0119808288, 0.00937460922, 0.0203181375, -0.0132709723, -0.0153650241, -0.00957558677, -0.0135497469, -0.0319748111, -8.59521533e-05, 0.0028963394, 0.0123503674, 0.0234041084, -0.00535506755, -0.00143196189, -0.00800666865, 0.0140554318, 0.00807798281, 0.00246845279, 0.0213424731, -0.00318321818, -0.0014562736, 0.00374725065, 0.00696288422, 0.00824006181, 0.0192938019, 0.00227233791, 0.00455764215, 0.00183796813, -0.00702771591, -0.0101136873, -0.00700826617, 0.00105837139, -0.0235337708, 0.0283183232, -0.00505684363, -0.0284739174, 0.00711199641, 0.0219129883, 0.0106453039, -0.0149890026, 0.00325453258, -0.0339716151, -0.00424645189, -0.0146648455, 0.00119694835, 0.0067489408, -0.0162596963, 0.00493042218, -0.00565005, -0.00975711457, -0.0122660864, 0.0200847443, -0.000884137175, -0.00441177189, 0.000452198496, 0.0234948732, 0.00857070088, 0.0141072962, -0.00691101933, 0.0166357178, -0.0138998358, -0.00561439293, 0.0102952141, 0.0130894445, 0.000764604425, 0.00247169426, 0.0195531286, 0.0073129735, -0.00805205107, 0.0170895383, 0.011967863, 0.000203712174, 0.00369862723, 0.0160133373, -0.0187103208, -0.00235661864, 0.0158577431, 0.00903748721, 0.0181009062, -0.0013987358, -0.00464840606, 0.00260946085, -0.00255759573, -0.034982983, 0.000226504446, 0.0180879403, 0.00413623871, 0.00449929386, -0.0270994939, -0.0076436135, -0.0100164395, 0.0112482347, -0.0117863351, 0.0205515306, 0.00778624229, 0.0131024113, 0.0111445049, -0.000804718817, 0.0180620067, 0.00394498603, 0.0292000286, -0.0284479856, -0.0208627209, -0.0247396342, 0.0181916691, 0.00120829383, -0.00577322952, 0.0185936242, -0.0142888241, -0.0110213254, 0.000695721188, -0.00118398212, -0.0115399761, 0.0249730274, 0.00162645592, 0.00779920863, 0.00648313249, 0.00440204702, -0.00193521508, -0.00824006181, -0.0137183089, -0.0127588045, 0.0121947723, -0.000958693214, -0.0145870484, -0.0111185722, 0.0259584635, -0.0388728641, 0.018528793, 0.0132709723, 0.00184607203, 0.00619463297, 0.0204607658, 0.0128625352, 0.00365324528, -0.00802611839, -0.0197994877, 0.00560142659, 0.0236893669, 0.00576350465, 0.00711847935, 0.0108138649, 0.0166097861, -0.0104508093, 0.00901155453, -0.00319294282, 0.00383477286, 0.0224705376, -0.0145092504, -0.0131931752, -0.00571488123, -0.00268239621, -0.0124411313, -0.0219259541, -0.00671004225, -6.78196448e-05, 0.00370511017, 0.00694343494, -0.0232096147, 0.00437287288, -0.0331936404, -0.000858204672, 0.0244543757, -0.0309634414, 0.000626837893, -0.00802611839, 0.0200977102, 0.0169987734, -0.00949779, -0.0196049921, 0.0294593535, 0.00270994939, -0.00164428446, -0.00095302047, 0.0181398056, 0.0326490551, 0.00296279159, -0.0371094495, -0.00970524922, -0.0137572074, 0.00478455191, 0.00662576128, -0.0289407037, -0.00432749093, 0.0164412241, -0.0219518878, 0.00411030604, -0.0162337646, 0.00521892169, 0.0159225743, -0.000804313633, -0.0200717784, -0.00685915444, 0.0105091576, -0.00309407501, 0.00593530806, -0.0116437059, -0.0162856281, 0.0113649312, -0.0057926788, -0.00794832, 0.00107214809, -0.0226650313, 0.00300817355, 0.00678135687, 0.00898562185, -0.00761119742, 0.0229373239, -0.0209275521, -0.00388987944, 0.0234819055, 0.00177637837, -0.015702147, 0.0170895383, 0.009971058, -0.00927087944, -0.0199810155, 0.0217314605, 0.00220912741, 0.00362407113, -0.0135108484, -0.000624001492, 0.0122855362, -0.00310866209, -0.0108916629, 0.00326587795, -0.0170117393, -0.0156632476, -1.62964679e-05, 0.0145740816, 0.00279909256, 0.0226391, 0.00945889, -0.015209429, 0.00239065522, -0.00175692898, -0.00180393166, 0.02193892, 0.0180231091, -0.0116437059, 0.0108073819, 0.0322600678, 0.00478779338, 0.00617194222, -0.0217962917, 0.00986732822, 0.00899210479, -0.0199032165, 0.0164023247, -0.000339756662, -0.0134849157, -0.016869111, 0.0207330585, -0.0228335932, -0.0255046431, -0.0108916629, 7.17703e-05, -0.0053842417, 0.0112676844, -0.011805784, -0.0170765705, 0.00457385, -0.00508925924, 0.0167005491, 0.0165968202, -0.0143536553, 0.0123892659, -0.00137199298, -0.0246618371, -0.0161948651, -0.00251383474, -0.0155206192, 0.031482093, -0.0197735541, -0.000180919917, 0.0141980601, 0.0086096, -0.00221398985, 0.0116890883, -0.00459005777, -0.00552687049, 0.0183861647, -0.00520919682, 0.0180231091, 0.00380884041, 0.00356248138, -0.0303929262, -0.0225872342, 0.00582185294, 0.010385978, -0.00647989102, -0.0117409527, -0.0166746173, -0.0160911344, 0.0101850014, 0.000879274856, 0.0102822483, 0.0102627985, -0.00680080615, -0.0116696386, -0.00527727, -0.0013217486, 0.0087651955, -0.0307559799, -0.0179453101, 0.0231966488, -0.0120391771, -0.00210539741, -0.00925143, -0.018528793, -0.0309634414, 0.00516381487, -0.01088518, 0.0289925691, 0.0179712437, 0.0173229296, 0.00656417152, -0.00318808039, -0.00969228335, -0.0253490489, -0.0146129811, 0.000133613314, -0.0219518878, 0.0247266684, -0.0129727479, 0.0199032165, 0.00964690093, -0.0263863504, -0.0323378667, -0.00188172923, -0.0380948856, 0.0241302196, -0.0139517011, -0.02940749, -0.00269374158, -0.00785107352, 0.0225224029, -0.0156113831, 0.00581212854, 0.0231577493, 0.00713792909, -0.00595151586, -0.0307300482, -0.00551066268, 0.0198124535, 0.00713792909, -0.0144703519, -0.00395146944, -0.00417189579, 0.00169858069, 0.0157540124, -0.00720924325, 0.01088518, 0.0159614719, -0.00585751049, 0.0168431792, 0.00211674278, -0.0163893588, 0.0356572308, 0.00581861148, -0.0108592473, -0.0243636128, 0.0155465519, 0.0133811859, -0.00120181066, -0.00858366769, 0.000883326808, 0.00677487347, 0.00690453639, 0.0132385567, 0.019190073, -0.00415244652, 0.0106842024, -0.0405844115, -0.00167102739, 0.0124865137, 0.0128495684, -0.00627243053, -0.00637940224, -0.0135756796, 0.0103276297, 0.00473592849, 0.00560466805, 0.020525597, -0.0179971755, -0.00192224875, -0.00122288091, -0.0118641322, -0.00115399761, 0.00118560286, 0.0062821554, 0.0203829687, 0.000148200357, -0.00937460922, 0.00102838688, -0.00105026748, -0.012129941, 0.00624974, -0.0224964693, 0.023676401, 0.0143406894, 0.00257704523, -0.0184639618, 0.0034490265, 0.0112287859, 0.00156891812, -0.0134330504, 0.0223927405, -0.00253814645, 0.00632105442, -0.00686563738, 0.0227168966, -0.0026905, 0.00239389669, -0.00302114, -0.0191511735, -0.0203829687, -0.00658686273, -0.00637940224, -0.0257769357, 0.0116955712, -0.00404223334, 0.0247137, -0.0185417589, -0.0222760439, -0.0155984173, -0.00372455968, -0.0126096932, 0.00136632018, 0.0197476223, -0.0223279092, 0.00360462163, 0.00297575793, 0.00877816137, 0.00532913487, 0.000829840952, -0.00664521102, 0.011377898, 0.015455788, 0.000584697525, 0.00514112413, 0.00109240785, -0.00592558319, -0.0064572, 0.0131607587, 0.00809095, -0.00927736238, -0.0065155481, 0.00284933671, -0.0159744378, -0.0526430346, 0.0137572074, 0.00656417152, 0.0080715, 0.00718331104, 0.0139128026, -0.0114686619, -0.0101655517, -0.000489476486, 0.0225353688, 0.0171932671, 0.00959503651, -0.00641830126, 0.0153131587, -0.00790942181, 0.0203311034, -0.00925791357, 0.0223927405, 0.00651230663, -0.0186584555, 0.0214332361, -0.00107376883, 0.0143277226, 0.000228530422, 0.00235337717, 0.0222501103, -0.0024927645, -0.0191641394, -0.00354627357, -0.0323638, -0.00646368321, -0.000294374739, 0.00886244234, -0.00834379159, -0.0148463733, -0.0187362526, -0.0199032165, -0.000918173639, 0.0182565, 0.0071703447, 0.00690453639, 0.0183861647, -0.00493690558, -0.011131539, -0.0115853576, -0.00215726229, 0.00765009644, 0.00529347779, -0.00669707591, -0.00559494318, 0.0169339422, 0.025011925, -0.0189696457, 0.00844103843, -0.0145351831, 0.00703419885, 0.00485262461, -0.0165190212, 0.0137831401, 0.0039385031, -0.00956262089, -0.00835027453, 0.00836972427, 0.00178124069, 0.0289666355, 0.00830489304, -0.0246488694, 0.0218740888, 0.00453495141, 0.023015121, -0.0163504612, -0.0131477928, 0.0125189293, 0.00949779, -0.000206548546, 0.014379588, 0.0175044574, -0.00381856505, -0.00125286542, 0.0100294063, 0.0233392771, 0.0194882974, -0.0011596703, 0.00742967, 0.0135627137, -0.011053741, -0.0070730974, -0.0138220387, -0.0123244347, -0.00381208188, 0.00012409121, -0.00158188434, 0.0044214963, -0.0122012552, 0.00803260133, 0.019280836, 0.0132774552, -0.0133811859, 0.019280836, -1.04844412e-05, 0.0398583, 0.00188335, -0.00879761111, -0.00141089177, 0.0189826116, -0.0110083595, 0.00131688628, 0.0126421088, -0.00955613703, -0.00436963141, -0.0205904283, 0.00166778581, -0.0281627271, -0.0124476142, 0.0366167314, 0.0165190212, 0.00562087586, 0.0214721356, -0.0234430078, -0.00572136464, 0.0120197274, -0.0229502898, -0.00565977488, -0.000251018791, 0.0127393557, -0.0153261255, -0.00704716519, 0.00963393506, -0.0168172456, -0.00613304321, 0.00221561058, 0.0133033879, 0.00285095745, -0.00934867747, 0.00543286512, -0.00923846383, 0.00236958498, 0.0125383781, -0.00191738643, 0.00454791728, -0.0227298625, 0.000669383444, 0.00779272523, -0.00516381487, -0.0113001, -0.0156502817, -0.00237930962, 0.0151186651, -0.016869111, -0.00399360945, 0.0061233188, -0.00444094557, 0.00265322207, -0.00381208188, -0.00898562185, 0.0131737255, 0.0083762072, -0.0184898935, 0.00766306277, 0.000759742106, 0.0243765786, 0.0170117393, -0.0141591616, -0.0020940518, -0.00945889, 0.00368241919, 0.00291416817, -0.00374400895, -0.00842807256, -0.0224835034, 0.0183991306, 0.0319229439, 0.00337122893, 0.0119937956, -0.00259973621, -0.000551471487, 0.00850587, -0.0196049921, -0.0213165395, -0.00117182615, 0.0174655598, -0.000156608177, 0.00257056206, 0.0114297625, -0.0121234581, -0.00519947242, 0.00172937557, -0.00137280335, 0.00131769665, -0.0162207969, 0.0343865342, 0.019280836, -0.0206422936, -0.00744263595, 0.00546528073, -0.00775382668, -0.0107490337, 0.0111639546, -0.00367269455, -0.00144168665, 0.00261918548, -0.00761119742, 0.00776030961, -0.0350867137, 0.00775382668, 0.00502766948, -0.0113325156, -0.00129581615, 0.0209275521, -0.0132255908, -0.0282145925, 0.0195142291, 0.00463868119, -0.011715021, 0.00536479242, -0.0225483347, -0.0117604025, 0.0213424731, -0.0228984244, 0.00144249701, 0.0129208835, -0.0140943304, 0.0248174313, -0.0112352688, 0.0185547248, 0.0126161762, 0.00836972427, 0.0248822626, 0.00409085676, 0.00336798746, 0.00176341203, 0.00623353198, 0.015624349, -0.0458227806, -0.00838917308, 0.0216277298, 0.00345875113, 0.0381467529, -0.0148074748, -0.00970524922, -0.0136016123, 0.0221463814, -0.0296408813, 0.01537799, -0.00758526521, 0.000917363272, 0.0426590107, -0.013290422, -0.000450982916, -0.00206649839, 0.0145092504, 0.0119743459, 0.0130829616, -0.0029871033, 0.00481048459, 0.00700178323, -0.00268239621, 0.021692561, -0.0120132444, 0.0223408751, 0.00738428812, 0.00374076748, 0.0046613724, 0.00211512204, -0.0150279012, 0.0302113984, 0.00486883242, -0.0076436135, 0.00399360945, 0.0164671559, 0.00630484661, -0.00641830126, -0.00648637395, 0.00470675435, -0.0130116474, -0.0049109729, -0.00935516, 0.0270476285, 0.00623029051, -0.00677487347, 0.00351385796, -0.0317154862, -0.00304707233, 0.00762416376, -0.0155724846, -0.0078121745, 0.00403899141, 0.00604876271, -0.00328046503, 0.0139517011, -0.00191090337, -0.0222112127, 0.000966797117, 0.00317997648, -0.0286554452, 0.0121558737, -0.0106842024, -0.00249762693, -0.0116501888, -0.0114362454, 0.00686563738, 0.0162856281, -0.0119419303, 0.015533586, -0.0171284359, -0.00765657937, 0.00309083355, -0.0234041084, -0.0037926326, -0.00304058916, -0.00600986369, 0.0211998429, -0.0121818064, 0.0106777195, 0.00122855359, -0.00567598268, -0.0229762215, -0.00353330723, -0.000234608364, -0.00928384624, -0.0212128107, 0.00785107352, 0.0141072962, 0.00582833635, 0.00570515683, -0.0147296768, 0.0045187436, 0.00461274898, 0.0184509959, -0.00252355938, 0.00782514084, -0.0112093361, -0.0231836829, 0.00822709501, -0.00231285742, 0.00875871163, 0.00274398597, -0.015702147, -0.0115723917, 0.0192289706, -0.0068397047, -0.00724165887, -0.0151186651, -0.0112417517, 0.00283312891, -0.00971173216, -0.0049790456, 0.0173618291, 0.000382302213, -0.0163504612, -0.0214980673, 0.012797704, -0.00608766126, 0.0111704376, 0.0109889098, 0.00407464895, -0.0126485918, -0.0123957498, 0.0141461948, -0.00614600955, -0.00213943375, -0.0283442549, -0.0215758644, -0.0120391771, 0.0333233029, 0.00655444711, -0.00420107, -0.0078121745, -0.0106842024, 0.00919308234, 0.0149241714, 0.00480075972, 0.0116826044, 0.0623418, 0.00312324916, -0.00433397433, -0.0103535624, -0.00121396652, -0.0324934609, -0.0125124454, 0.0342568718, -0.0123374015, 0.0382245481, -0.0360721499, -0.00517678121, 0.011883582, -0.0108462805, -0.0284739174, -0.000695721188, -0.00464840606, 0.0202144068, 0.00598393148, -0.0155595178, 0.0161041021, -0.000537289598, 0.00479103485, -0.0126745244, 0.012129941, -0.00106809614, -0.0251415875, -0.00896617211, 0.0107490337, 0.027747808, -0.0279034022, 0.00259811548, -0.0162596963, 0.0094135087, -0.0026434972, 0.0138090728, 0.0149241714, 0.00290606427, 0.0190474428, -0.0144703519, -0.00871981308, 0.0212906078, -1.13138258e-05, -0.0124281654, -0.000559980574, -0.00840214, -0.000764604425, 0.017621154, 0.00211674278, -0.00534210121, 0.00281205866, 0.000539315573, 0.0222501103, 0.00388663798, 0.0170117393, -0.0069953, 0.00196276838, -0.0050600851, -0.00186876301, 0.013627545, -0.00150327641, 0.00577971246, -0.0186843872, -0.0106388209, -0.0104767419, 0.0067489408, -0.0114621781, 0.0225094371, -0.0106582697, 0.0164152924, -0.032415662, -0.00163699093, -0.0050762929, -0.00961448532, 0.0127782542, 0.00279098866, 0.00162969739, 0.0290703662, -0.00486234948, 0.00118236127, -0.0103405965, -0.00325453258, -0.0156502817, -0.0285257827, -0.00491745584, -0.00477482704, 0.00320266746, -0.00300169038, 0.0185028594, 0.0335307606, -0.0057019149, 0.0341531411, -0.0144962845, 0.0292778257, -0.0002404837, 0.00920604821, -0.0121688396, 0.0179323442, -0.0033744704, -0.00568570709, -0.00413623871, 0.00100002321, -0.0138350045, 0.00700826617, 0.0106971683, 0.0112871341, 0.000777570705, 0.0213813707, 0.0195401609, -0.0110667069, 0.011384381, -0.0136145782, -0.001599713, 0.003863947, 0.0242858138, 0.00875222869, -0.000686401676, 0.00829841, -0.0200588126, -0.0126485918, 0.00435990654, 8.54963073e-05, -0.00903100334, -0.00793535449, -0.00788348913, 0.014120263, 0.0128106698, 0.00251869694, 0.0078770062, 0.0181787033, 0.00166940666, 0.00520595536, 0.00382180675, -0.0226261318, 0.0234948732, 0.00897913892, -0.0298742745, -0.00757878181, -0.000158634153, 0.00683322176, -0.0158577431, 0.00904397, 0.00857718475, -0.00422051921, 0.00783162378, -0.0251934528, 0.0207200926, -0.000375819101, 0.0283442549, 0.0195401609, -0.0158318095, -0.00919956528, 0.0024846606, 0.00238255132, -0.00999050774, -0.0107749663, -0.00733890617, -0.0164023247, 0.0167264827, -0.0195531286, -0.0112741673, 4.36345217e-05, 0.0204478, 0.0196438916, 0.0163893588, -0.0113260327, 0.0199032165, 0.0159096066, 0.00669707591, -0.00103811163, 0.016959874, -0.014457386, -0.0133163547, 0.0131866913, -0.0117344698, -0.00450901873, -0.0141850943, 0.0389247276, 0.0107879322, -0.00178934459, -0.012052143, 0.00191252411, -0.017452592, 0.0276440773, -0.0176600534, -0.0304707233, 0.00157702202, -0.00312811136, 0.0017698952, 0.0180879403, -0.0212257765, 0.0167524144, -0.0100488551, -0.00110537407, -0.00563708367, -0.00527727, -0.0147426436, -0.0133811859, 0.00332908868, -0.0127588045, 0.0144833177, 0.00639885198, 0.00165400922, -0.000984625774, 0.000611845637, 0.0274625495, 0.0275662802, -0.00157621165, 0.0176081881, -0.0129014337, -0.0165968202]
|
04 Jan, 2025
|
Initializing a List in Java
04 Jan, 2025
The Java.util.List is a child interface of Collection. It is an ordered collection of objects in which duplicate values can be stored. Since List preserves the insertion order, it allows positional access and insertion of elements. List Interface is implemented by ArrayList, LinkedList, Vector and Stack classes.
List is an interface, and the instances of List can be created in the following ways:
List a = new ArrayList();List b = new LinkedList();List c = new Vector(); List d = new Stack(); Below are the following ways to initialize a list:
Using List.add() method Since list is an interface, one can’t directly instantiate it. However, one can create objects of those classes which have implemented this interface and instantiate them. Few classes which have implemented the List interface are Stack, ArrayList, LinkedList, Vector etc. Syntax:List<Integer> list=new ArrayList<Integer>();List<Integer> llist=new LinkedList<Integer>();List<Integer> stack=new Stack<Integer>();Examples:
Java
import java.util.*;
import java.util.function.Supplier;
public class GFG {
public static void main(String args[])
{
// For ArrayList
List<Integer> list = new ArrayList<Integer>();
list.add(1);
list.add(3);
System.out.println("ArrayList : " + list.toString());
// For LinkedList
List<Integer> llist = new LinkedList<Integer>();
llist.add(2);
llist.add(4);
System.out.println("LinkedList : " + llist.toString());
// For Stack
List<Integer> stack = new Stack<Integer>();
stack.add(3);
stack.add(1);
System.out.println("Stack : " + stack.toString());
}
}
OutputArrayList : [1, 3]
LinkedList : [2, 4]
Stack : [3, 1]
Double Brace Initialization can also be used to do the above work. Syntax:List<Integer> list=new ArrayList<Integer>(){{ add(1); add(2); add(3); }};Examples:
Java
import java.util.*;
public class GFG {
public static void main(String args[])
{
// For ArrayList
List<Integer> list = new ArrayList<Integer>() {{
add(1);
add(3);
} };
System.out.println("ArrayList : " + list.toString());
// For LinkedList
List<Integer> llist = new LinkedList<Integer>() {{
add(2);
add(4);
} };
System.out.println("LinkedList : " + llist.toString());
// For Stack
List<Integer> stack = new Stack<Integer>() {{
add(3);
add(1);
} };
System.out.println("Stack : " + stack.toString());
}
}
OutputArrayList : [1, 3]
LinkedList : [2, 4]
Stack : [3, 1]
Using Arrays.asList()Creating Immutable ListArrays.asList() creates an immutable list from an array. Hence it can be used to instantiate a list with an array. Syntax:List<Integer> list=Arrays.asList(1, 2, 3);Examples:
Java
import java.util.Arrays;
import java.util.List;
public class GFG {
public static void main(String args[])
{
// Instantiating List using Arrays.asList()
List<Integer> list = Arrays.asList(1, 2, 3);
// Print the list
System.out.println("List : " + list.toString());
}
}
OutputList : [1, 2, 3]
Creating Mutable ListSyntax:List<Integer> list=new ArrayList<>(Arrays.asList(1, 2, 3));Examples:
Java
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class GFG {
public static void main(String args[])
{
// Creating a mutable list using Arrays.asList()
List<Integer> list = new ArrayList<>(
Arrays.asList(1, 2, 3));
// Print the list
System.out.println("List : " + list.toString());
list.add(5);
// Print the list
System.out.println("Modified list : " + list.toString());
}
}
OutputList : [1, 2, 3]
Modified list : [1, 2, 3, 5]
Using Collections class methods There are various methods in Collections class that can be used to instantiate a list. They are: Using Collections.addAll()Collections class has a static method addAll() which can be used to initialize a list. Collections.addAll() take in any number of elements after it is specified with the Collection in which the elements are to be inserted. Syntax:List<Integer> list = Collections.EMPTY_LIST;Collections.addAll(list = new ArrayList<Integer>(), 1, 2, 3, 4);Examples:
Java
import java.util.*;
public class GFG {
public static void main(String args[])
{
// Create an empty list
List<Integer> list = new ArrayList<Integer>();
// Instantiating list using Collections.addAll()
Collections.addAll(list, 1, 2, 3, 4);
// Print the list
System.out.println("List : " + list.toString());
}
}
OutputList : [1, 2, 3, 4]
Using Collections.unmodifiableList()Collections.unmodifiableList() returns a list which can’t be altered i.e. it can neither add or delete an element. Any attempt to modify the list will result in an UnsupportedOperationExample. Syntax:List<Integer> list = Collections .unmodifiableList(Arrays.asList(1, 2, 3));Example 1:
Java
import java.util.*;
public class GFG {
public static void main(String args[])
{
// Creating the list
List<Integer> list = Collections.unmodifiableList(
Arrays.asList(1, 2, 3));
// Print the list
System.out.println("List : " + list.toString());
}
}
OutputList : [1, 2, 3]
Example 2:
Java
import java.util.*;
public class GFG {
public static void main(String args[])
{
try {
// Creating the list
List<Integer> list = Collections.unmodifiableList(
Arrays.asList(1, 2, 3));
// Print the list
System.out.println("List : " + list.toString());
// Trying to modify the list
System.out.println("Trying to modify the list");
list.set(0, list.get(0));
}
catch (Exception e) {
System.out.println("Exception : " + e);
}
}
}
OutputList : [1, 2, 3]
Trying to modify the list
Exception : java.lang.UnsupportedOperationException
Using Collections.singletonList()Collections.singletonList() returns an immutable list consisting of one element only. Syntax:List<Integer> list = Collections.singletonList(2);Example 1:
Java
import java.util.*;
public class GFG {
public static void main(String args[])
{
// Creating the list
List<Integer> list = Collections.singletonList(2);
// Print the list
System.out.println("List : " + list.toString());
}
}
OutputList : [2]
Using Java 8 Stream With the introduction of Stream and functional programming in Java 8, now one can construct any stream of objects and then collect them as a list. Syntax:1. List<Integer> list = Stream.of(1, 2, 3) .collect(Collectors.toList());2. List<Integer> list = Stream.of(1, 2, 3) .collect(Collectors.toCollection(ArrayList::new));3. List<Integer> list = Stream.of(1, 2, 3, 4) .collect(Collectors.collectingAndThen(Collectors.toList(), Collections::unmodifiableList));Examples:
Java
import java.util.*;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class GFG {
public static void main(String args[])
{
// Creating a List using Syntax 1
List<Integer> list1 = Stream.of(1, 2, 3)
.collect(Collectors.toList());
// Printing the list
System.out.println("List using Syntax 1: "
+ list1.toString());
// Creating a List using Syntax 2
List<Integer> list2 = Stream
.of(3, 2, 1)
.collect(
Collectors
.toCollection(ArrayList::new));
// Printing the list
System.out.println("List using Syntax 2: "
+ list2.toString());
// Creating a List using Syntax 3
List<Integer> list3 = Stream
.of(1, 2, 3, 4)
.collect(
Collectors
.collectingAndThen(
Collectors.toList(),
Collections::unmodifiableList));
// Printing the list
System.out.println("List using Syntax 3: "
+ list3.toString());
}
}
OutputList using Syntax 1: [1, 2, 3]
List using Syntax 2: [3, 2, 1]
List using Syntax 3: [1, 2, 3, 4]
Using Java 9 List.of() Java 9 introduced List.of() method which takes in any number of arguments and constructs a compact and unmodifiable list out of them. Syntax:List<Integer> unmodifiableList = List.of(1, 2, 3);Examples:
Java
import java.util.List;
public class GFG {
public static void main(String args[])
{
// Creating a list using List.of()
List<Integer> unmodifiableList = List.of(1, 2, 3);
// Printing the List
System.out.println("List : "
+ unmodifiableList.toString());
}
}
OUTPUT:[1, 2, 3]
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java
|
https://www.geeksforgeeks.org/initializing-a-list-in-java/?ref=next_article
|
Pandas
|
Initializing a List in Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Initializing a List in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0194778182, -0.00168733788, -0.008714105, 0.0283028893, -0.0123629319, 0.00804178, 0.0310966242, 0.0111879967, 0.0149086257, -0.0176501404, 0.012473898, -0.000711488712, 0.0127349943, -0.0303655546, 0.0169060156, 0.0111488318, -0.0358746946, 0.0173629355, 0.00292265182, 0.0207180288, 0.00732376426, 0.0164490957, -0.0468407609, 0.00255385274, 0.0088381255, 0.0421932377, 0.0101893013, 0.00292591564, -0.0267624184, -0.0190209, 0.00357376202, -0.0122911306, -0.00270561525, 0.00208714232, -0.00288022379, 0.00545365876, 0.0321932323, -0.0313055031, -0.0493472889, 0.0172062777, 0.0217885245, -0.00384791358, 0.00897520129, -0.0142558832, -0.01742821, -0.0207180288, -0.00235476648, -0.00262565445, -0.0384595543, -0.00530679198, 0.0285117663, -0.013498703, 0.0144778155, 0.00550587801, -0.00258648978, 0.0594256222, -0.025574429, 0.000163389457, -0.03375981, -0.0345953219, 0.0140992254, -0.0418799222, 0.000576860679, -0.0158877373, 0.0367102064, 0.00105091452, -0.0409660824, 0.0116644977, 0.0168276858, -0.016879905, -0.0166840833, 0.0371801779, 0.0166840833, 0.00769582717, -0.0407572053, 0.000441008742, 0.0274673793, 0.0287467539, -0.0100261159, 0.0400261357, 0.0032588141, -0.0361619033, 0.00456919335, 0.00906005781, -0.0481201336, -0.0129634542, -0.01742821, -0.0329504125, 0.0149086257, -0.017506538, -0.00374347484, 0.0381462388, 0.00246899622, 0.00219974015, -0.00142868888, 0.02992169, 0.0271540638, -0.00157310802, -0.0141383903, 0.0267102, -0.0213577151, 0.00988904, -0.019347271, -0.00130793161, -0.0357180387, -0.00970627181, 0.0346475393, 0.0271018445, 0.00015788195, -0.00476828, 0.0136814704, -0.0242167246, -0.0224282127, 0.0343342237, 0.0199347381, 0.0282506701, 0.00666123116, -0.0409921929, 0.00860313885, 0.0227415282, -0.00375979347, 0.0565535612, -0.0140992254, 0.00397846196, -0.0524543412, 0.031174954, -0.0142689385, -0.00928851776, 0.013746745, 0.0284595471, 0.00206592819, -0.00281005399, -0.0246475339, -0.0251175091, -0.00783943, -0.0140078412, 0.0100391703, -0.01454309, -0.0256135929, 0.047180187, -0.0548303202, -0.0307049789, -0.0134203741, -0.0147650223, -0.0386423208, -0.00690600928, 0.0310705155, 0.0421410166, -0.021605758, 0.00825718511, -0.0330809616, -0.0308616385, 0.0140600605, 0.0313055031, 0.0259138532, -0.00329145114, 0.00759138865, -0.00870105, 0.0187989678, 0.0144517059, 0.00709530478, 0.00307767815, -0.015626641, -0.0264360476, -0.0359791331, 0.0010394915, -0.00530352816, -0.0034954329, -0.0253786054, 0.0292689465, 0.0271801725, 0.0224151574, -0.00168407417, 0.0219582375, 0.0229504053, -0.0373368375, 0.0253786054, 0.0148041863, 0.0189425703, -0.0257702507, 0.0129830362, -0.0157832988, 0.039112296, 0.0340731293, 0.00175424386, 0.00553525146, 0.0362141207, -0.0133942645, -0.016188, -0.00473564258, -0.0119190672, 0.0110966126, -0.00307604624, 0.0554047339, 0.010365542, -0.0127611049, -0.0158094093, -0.00981723797, -0.0500783585, 0.0464230031, -0.0173890442, 0.00404373603, -0.0143994866, 0.0305744316, 0.0144517059, -0.0370757394, 0.00186847372, -0.0342820063, 0.0433942825, 0.000984824379, -0.0336031541, 0.0202872194, -0.002596281, -0.0146475285, 0.0460574701, -0.00132751383, 0.0054340763, 0.0202872194, -0.0230809543, -0.02908618, -0.00349216931, 0.0107441321, 0.0523499027, -0.0191645026, -0.0619843714, -0.0262663346, -0.0105874734, 0.0293472763, -0.00648825476, -0.0207963567, 0.0257310867, 0.0342036746, 0.0200261213, -0.0231592823, 0.0307049789, 0.00917102396, -0.00792428665, -0.0265927054, 0.00195169833, 0.0597911589, 0.0141514447, 0.00898825657, -0.0393995, 0.00739556598, -0.0546736643, -0.00271377456, -0.0150130643, 0.0213446599, 0.0375457145, -0.0038511774, -0.0242167246, -0.0173368249, -0.0272062831, -0.0272323918, -0.0367363133, 0.0339164697, 0.0300522372, -0.0207180288, 0.0365274362, 0.0133812092, -0.00783943, 0.043916475, -0.00652415538, -0.0221801698, 0.00471932394, -0.0494256169, 0.0240992308, -0.0340992361, 0.031174954, 0.0408616439, 0.0310182963, -0.004167757, 0.0298694707, 0.0079699792, 0.032976523, -0.00220789947, -0.0165404808, -0.0255091544, 0.0183159374, 0.0137206353, 0.00964099821, -0.00175261206, -0.00927546248, 0.000385729683, 0.00407310948, -0.0461880192, -0.067310743, -0.024738919, -0.0258485805, 0.00500326697, 0.00440600794, 0.00897520129, -0.00187989674, 0.0136553608, 0.0349869654, 0.0236684214, -0.0280679017, 0.00833551399, -0.0297911409, 0.00821149349, -0.0251827836, -0.043916475, 0.0385639928, -0.0186553635, -0.0463707857, -0.0122911306, 0.0161227249, -0.00203818665, 0.00618799357, 0.00695170136, -0.00359660806, -0.039738927, -0.00332082459, -0.0345431, -0.0546736643, 0.0183681566, 0.0602089129, -0.0253524967, -0.0140339509, 0.0164490957, -0.0283551086, -0.0236292575, -0.020809412, 0.0463185646, 0.000322903274, 0.00452350127, -0.0405744389, -0.00409595529, -0.00608029077, -0.0296083726, -0.0378068127, -0.012454316, -0.00924935285, 0.0280156825, 0.0325848758, -0.0257310867, 0.00247062813, -0.0320887938, -0.00752611412, -0.0225848705, -0.024947796, 0.00408290047, -0.00248368294, -0.0305222124, 0.0187989678, -0.0486945473, -0.0111031402, 0.00215568021, 0.0519582555, 0.0144908708, 0.00109252683, 0.0032588141, -0.027832916, -0.0463968962, 0.0372846164, -0.0301827863, 0.0297650304, -0.00632506935, -0.0056657996, 0.00936684664, -0.0241253413, 0.00633812416, -0.0201827791, -0.0197389163, 0.00466384087, -0.0487467647, -0.00757833384, 0.0166971385, -0.00990209449, -0.000395724783, -0.00137075805, -0.0121605815, 0.00430483278, -0.00592036918, 0.0318538062, 0.00350196031, 0.00793734193, 0.0306788702, 0.0143994866, -0.0307049789, 0.00978460163, 0.00945170317, -0.006236949, -0.00363903609, -0.0104634529, -0.0254177693, -0.0253263861, -0.0113642365, -0.0200652871, -0.00836162362, 0.00632180553, 0.0419843607, -0.0134073189, 0.00508812303, 0.00431788759, 0.0191514473, 0.00695170136, -0.0243081097, -0.00776762888, 0.0127415219, -0.0167885218, -0.00130793161, 0.0105026178, -0.0134203741, -0.0419060327, 0.0143603217, -0.00509138685, 0.0160574503, 0.023694532, 0.00768277235, 0.0274934899, 0.0118081011, -0.0299739093, 0.0136814704, -0.0121540548, -0.0037108378, -0.0197780803, 0.0651175305, -0.00184889149, 0.0181070603, 0.020639699, -0.00366514595, -0.00281005399, 0.0199086275, -0.0209660698, 0.0176631957, -0.0100848628, -0.0139817316, -0.0234334338, -0.0136814704, 0.00900783855, 0.0366840959, 0.00264523667, 0.022650145, -0.00956266932, -0.0520888045, 0.0333942771, 0.0106396936, -0.0744125769, -0.0340470187, -0.0297389217, 0.0309138577, -0.0128785977, 0.0124020968, -0.00823107548, 9.0210975e-05, -0.0498694815, -0.0202088896, -0.0300783478, -0.00379569433, -0.024282, -0.0467624292, -0.0161227249, -0.00463446742, 0.0209007952, 0.0163446572, 0.0317232572, -0.00292917923, -0.0198694635, 0.0329504125, 0.0121214176, 0.0137859089, -0.000904047571, -0.00415143836, 0.00367167336, -0.0114034014, -0.0121475272, -0.0154308192, -0.0350914039, 0.0285378769, -0.0227937475, -0.0220365673, 0.0143342121, -0.020235, 0.00799608883, -0.0318799168, 0.00137075805, 0.0143472673, -0.010802879, -0.05984338, -0.00860313885, 0.0457702614, 0.00388381444, -0.00426240452, 0.0113381268, -0.03953005, 0.0160574503, 0.0278068054, -0.0159269031, 0.0285900962, 0.00862272084, 0.0524282306, -0.00508485967, 0.0186162, -0.00928199, -0.0365274362, -0.0119973961, -0.0186031442, 0.0125718089, 0.0346997604, -0.0141906096, -0.0211880021, -0.0366057679, 0.056240242, -0.0116449157, -0.0204177666, -0.0124412607, -0.00242330437, 0.00802872516, -0.00190437457, -0.0372062884, 0.00316416635, 0.0311488435, 0.0377545916, 0.0211880021, 0.0211096741, -0.0127741592, 0.0182114989, -0.0116710253, -0.0109987017, -0.0175718125, 0.0373890586, 0.00645561749, -0.0138381282, -0.0189164598, 0.0208746865, 0.0192297772, -0.00830287673, 0.00973238237, -0.0294517148, -0.00594321499, 0.0063054869, -0.013498703, 0.0244256016, 0.00118554255, -0.0404961072, -0.00420039427, -0.00912533235, 0.00496410206, 0.0209138505, 0.0101827737, 0.00412859255, 0.00123205036, 0.00351827894, 0.0172062777, 0.0230548438, 0.0079699792, 0.0295300446, 0.0301827863, 0.0146736382, -0.00766971754, 0.0531854108, 0.0157571901, -0.00550914183, -0.0364229977, 0.0367102064, 0.00495104725, -0.0102611026, -0.0049118828, -0.0324021094, -0.0112924352, -0.00684073521, 0.0290339608, -0.00316416635, 0.0224543214, -0.0044484362, 0.0131396949, -0.0175718125, -0.0115143675, 0.0233551059, -0.00903394818, -0.0094778128, -0.0119517045, -0.00344974105, -0.0148302959, 0.00909922272, 0.0262141153, 0.00832246, 0.0150261186, 0.0171932224, 0.0150130643, -0.0117558818, 0.0257049762, -0.0151827773, -0.0227023643, 0.00894256402, -0.0344647728, 0.0235378742, 0.013746745, 0.0203394387, -0.00939295627, 0.0341775678, 0.028041793, -0.0186162, 0.00406331848, 0.0233289953, 0.000944843923, 0.0334203877, -0.0116906073, -0.0261096768, -0.00627937727, -0.00931462739, 0.0407572053, -0.0321932323, -0.0311488435, -0.000731070933, 0.0201697256, -0.0264099371, 0.00676240632, -0.0139295124, -0.0272062831, -0.0322715603, 0.00250163348, 0.0130874757, -0.00789164938, -0.0232506674, 0.0109464815, 0.01370758, -0.00712794159, 0.018759802, 0.000238862747, -0.0134203741, -0.00706266752, 0.0336553715, -0.000884465291, 0.0105678914, 0.00907311216, -0.0130091468, -0.00580287538, -0.00111618871, -0.0316188186, -0.0311227348, 0.0189034063, 0.0172323864, -0.0183942672, 0.0169321261, -0.00484660873, 0.0101566641, -0.015169722, 0.000734334637, 0.0315927081, 0.0112075787, 0.0135509223, 0.0869974419, -0.00233518425, 0.039608378, -0.0523237921, 0.0104699805, 0.0320365727, -0.0043994803, 0.00495431107, 0.00663512154, 0.0209660698, 0.0116840806, 0.000293733872, 0.0191383921, 0.00426893216, -0.00291122892, 0.0272846129, 0.0194647647, 0.0233681612, 0.0152480509, 0.00658942945, 0.00158453104, -0.0142428288, -0.00721932575, -0.00782637578, 0.0178329088, 0.021775471, 0.00150212238, -0.0147780767, -0.0256788675, 0.00770888198, 0.00189458346, 0.00484660873, -0.0276501477, -0.0227154195, 0.0230026245, 0.0211880021, 0.00660901191, 0.00501958514, -0.0154960928, 0.0380940177, -0.00530026434, -0.0145692, -0.00045895917, -0.0232245568, -0.0195692033, 0.00184889149, 0.0105222, -0.0255222097, 0.0251305643, 0.0107114948, 0.0154699832, 0.00165470073, -0.00951697677, -0.00360639906, 0.0303133354, 0.00204145024, -0.0344908834, 0.028877303, 0.00648499094, -0.033263728, 0.00481397146, 0.000148702762, 0.0200652871, 0.0149086257, 0.0231331736, 0.0125000076, 0.00401436258, -0.00619452074, 0.01370758, -0.00385444099, 0.0231201183, 0.00493799243, 0.00223400909, 0.00580940302, -0.0290339608, 0.0260052383, -0.0357180387, 0.0086161932, 0.00977807399, 0.012473898, 0.00104928261, 0.0127480496, 0.00530679198, -0.0414360575, -0.0281723402, -0.00954961404, -0.00675587868, -0.00659922091, -0.00223727291, 0.0211096741, 0.00685379, -0.0264491029, -0.00167754677, 0.0285900962, 0.00431462424, -0.0103524867, 0.00753916893, 0.0152872158, 0.00204471406, -0.0233420506, -0.0324021094, 0.00371736521, -0.00783290341, 0.00996084139, -0.000611945521, 0.00360313547, 0.0192036666, 0.00391971506, 0.0127480496, 0.0547781028, -0.0196736418, -0.0221279506, -0.0158616286, 0.00655352883, -0.00484008109, 0.00212630676, 0.0127545772, 0.00060215441, 0.0132441334, -0.0401827917, 0.000188683203, -0.00617167493, -0.0231853928, -0.0130678928, -0.0160313416, -0.0128198508, -0.00193701161, 0.0292167272, 0.026997406, 0.0221279506, 0.012304185, -0.00504895858, -0.0222585, -0.0164099317, -0.00731723662, 0.0175457019, -0.0245561507, -0.0355352685, -0.0109268995, 0.0274412706, 0.00165633264, 0.00460509397, 0.000717200164, -0.00420365809, -0.00685379, 0.00916449632, 0.0228720773, 0.0216188114, 0.0330026299, -0.00791775901, 0.019973902, 0.0315143801, -0.0314099416, 0.0102023557, -0.0423498936, -0.0615666173, -0.0240209028, 0.0275718179, -0.0301827863, 0.0110248113, 0.0102872122, -0.0275979284, 0.0177415255, -0.000279455126, -0.0126762483, 0.00992820412, 0.012454316, 0.00453002891, 0.0166971385, -0.00246736454, -0.00209856522, 0.0238120258, 0.0178590193, 0.0201697256, -0.0105352541, 0.00945170317, 0.0120887803, 0.00588120474, -0.0242428351, 0.045509167, -0.0279895738, 0.00555483392, 0.0396867096, -0.0124086235, 0.0132571887, 0.010822461, -0.00437663449, 0.00248694676, -0.0257310867, -0.0155352578, 0.0015584213, -0.0131266396, 0.0473107323, 0.00278231245, 0.043420393, 0.0179242939, 0.0181984454, -0.0382767841, -0.00325718219, -0.0127480496, -0.0189164598, -0.0029781349, 0.0217232518, -0.00909922272, 0.0146605838, 0.00486292737, 0.00639360724, 0.00559726171, -0.026618816, -0.0510183088, 0.025156673, 0.0423237868, 0.025574429, -0.0289817415, 0.00958225131, 0.00347585068, 0.0198172443, 0.0108094057, 0.00419713045, -0.00334530231, 0.0324804373, 0.00680809794, -0.000418978714, 0.0169060156, -0.00172813423, 0.000240698588, 0.0165665895, 0.0167624131, 0.0174543187, -2.05256729e-05, 0.00602807151, -0.021684086, -0.00949739479, 0.0121083623, 0.0220235121, -0.0112532703, -0.0152088869, 0.0045071831, -0.0026713463, -0.00973238237, -0.0424804427, -0.000495675893, 0.00891645439, -0.0164752062, -0.00919713359, 0.00397519814, -0.00293407496, 0.0134203741, -0.0190209, -0.0288250837, -0.030966077, 0.00686031766, 0.01188643, 0.009360319, -0.00328492373, 0.00780026568, 0.0300261285, 0.00621736655, -0.0126436111, 0.0212271679, 0.0286945347, 0.0316971466, 0.00156413286, -0.00823760312, 0.00949739479, -0.027911244, 0.0423237868, 0.00404047268, 0.0124477884, 0.0211227275, -0.0572846308, 0.0745170191, 0.0217885245, -0.0163185485, 0.00455613853, 0.00995431375, 0.00168081047, -0.00432115141, 0.0113707641, 0.00580287538, -0.00819843821, 0.00751958694, -0.0264882669, -0.0417232625, -0.0180417858, -0.0174412634, 0.00445822719, -0.00064539857, 0.00475848839, 0.0140861701, 0.0106788576, 0.00970627181, 0.0192558859, -0.00409595529, 0.00531984679, -0.0537337139, 0.0236814767, 0.00633159652, 0.0551436357, 0.0115078399, -0.00820496585, -0.00802872516, -0.0363968909, -0.0396606, 0.0245953146, -0.00573433749, 0.0182376094, 0.0137336897, 0.0292950571, -0.00543081295, -0.0110443933, 0.01742821, 0.000432033557, -0.0125979185, 0.00270071975, -0.0113120172, 0.0127088847, 0.0151436124, -0.0312793925, 0.0166579746, -0.00725849, 0.0178329088, 0.0299739093, 0.00628916826, -0.0299477987, -0.0187728573, -0.0103720687, 0.00788512267, 0.019804189, 0.0215274282, 0.0064752, -0.0145692, 0.0296083726, -0.0350914039, -0.0028116859, -0.0350914039, 0.0126436111, 0.0171148926, 0.0199347381, -0.0233681612, -0.0117689371, -0.010802879, -0.0327676423, 0.030966077, -0.0211096741, 0.0446997657, 0.041122742, -0.00714752404, -0.0286684241, 0.000802464609, -0.0106331659, -0.0194778182, -0.00908616744, -0.0259660725, 0.0159791224, -0.0177023616, 0.0105548371, -0.00711488677, 0.025156673, 0.0183420479, 0.0142297735, 0.0475457199, -0.0170626733, 0.041697152, -0.0138381282, -0.0074804225, -0.00309236487, 0.00324086356, -0.0054340763, -0.00994778704, 0.014125335, 0.0300522372, 0.0120887803, 0.00533942878, 0.0222454444, 0.0341775678, 0.0168537963, 0.0146214189, -0.0294778254, -0.0115926964, -0.037154071, 0.0167885218, 0.0236553662, -0.0251044538, -0.0103394315, -0.00971932709, 0.000777986774, 0.0230287351, 0.00202023634, 0.0182506647, 0.0170757286, -0.00210509263, -0.00086896267, 0.00545365876, -0.0240339581, -0.0139295124, -0.0168537963, 0.00489882799, 0.0181201156, 0.03485642, 0.0124086235, -0.0294778254, -0.00296997582, -0.00501305796, 0.00254406151, -0.00345626846, 0.0227676388, 0.00151354528, -0.02992169, -0.0201958343, 0.00250326516, -0.0102023557, 0.000119125398, -0.0368146449, 0.00627937727, 0.0127088847, -9.1128888e-05, 0.00411880156, -0.0165404808, 0.0515927225, -0.00398172578, 0.0133355176, 0.0560835861, -0.00135035987, -0.00648172712, -0.0142036639, 0.00403720886, 0.000456919341, -0.00853133667, -0.00315111154, -0.00548629556, 0.0236031469, 0.00183583668, 0.00152823201, 0.00515666092, -0.0349869654, -0.0409660824, 0.0514360629, -0.0135900863, 0.0269190762, 0.0153655447, 0.00553198764, -0.0366057679, 0.0040665823, -0.0129242903, -0.00821802113, -0.0146736382, 0.00346279587, 0.0170235094, 0.00834856927, 0.0165143702, -0.0138511835, -0.0197389163, 0.00524804508, 0.0679895952, 0.00387402321, -0.0329504125, 0.00397193432, 0.0258094147, -0.0106266383, -0.0101501364, 0.012265021, -0.00658290228, -0.0115274219, 0.0186684188, 0.00910574943, 0.00199575839, -0.00437663449, -0.00182604545, 0.00600196188, 0.0153394351, -0.0107049672, 0.00386423222, -0.0299739093, -0.0133812092, 0.00671018707, -0.0181462243, 0.0446997657, 0.0201566704, -0.00561684417, -0.000301281194, -0.00962794293, -0.0403916687, -0.00542754913, 0.00885770749, 0.00188152853, 0.0129960915, -0.0130483108, 0.0306788702, -0.00656332, 0.0248694662, -0.00628916826, -0.026866857, -0.0129177626, 0.0297128111, -0.00074127, -0.0174021, 0.0171148926, -0.019804189, 0.00821149349, -0.00962141622, -0.00144582335, -0.0259008, -0.00522846263, 0.0143342121, -0.0244908761, -0.015835518, -0.00284269103, -0.022859022, 0.00977154635, 0.0180678964, -0.0158485733, 0.0150652835, 0.00146295782, -2.54339875e-06, 0.00405026367, 0.0165535342, -0.0281723402, -0.00200554961, 0.00168081047, -0.0197519697, 0.00119778141, -0.00131690677, 0.0099412594, -0.019347271, 0.0321932323, 0.0138250738, -0.0113838194, 0.0157571901, -0.00152007269, -0.0218799096, 0.00579961203, -0.0146997478, -0.016671028, 0.0213968791, 0.0127415219, -0.00161308842, -0.0234073251, -0.0221932251, 0.0083746789, 0.020809412, 0.0121344719, -0.0124477884, -0.0153655447, -0.0142689385, -0.009758492, 0.00595300645, 0.031174954, -0.0209921803, 0.00384138618, 0.0321149, 0.0363446698, -0.00819843821, 0.028955631, 0.00546018593, 0.0178068, 0.00026272863, 0.00221605878, 0.00757833384, -0.0142689385, 0.0160835609, 0.00472911494, 0.00435052486, 0.0260966215, 0.0246475339, -0.00997389667, -0.0160443969, 0.027832916, 0.00631854171, -0.00991515, 0.000267420197, -0.0051109693, 0.0367363133, 0.000907311274, 0.00811358169, -0.00600848952, -0.0179242939, -0.0105091445, -0.0178459641, -0.0245039314, -0.015796354, 0.0389817469, -0.0154569289, -0.00127039896, -0.0170104541, 0.00132506608, -0.00137075805, -0.0199086275, -0.00307278265, -0.00178688101, 0.0186945293, 0.00352480635, -0.0175457019, -0.0108094057, 0.00513055129, 0.010404706, -0.00677546114, -0.0274934899, 0.0263316091, 0.00188316044, -0.0120887803, 0.00278720795, -0.00460509397, 0.0113511821, 0.0106331659, -0.00559073454, -0.00046099897, -0.0180417858, -0.00447454583, -0.0108159333, 0.0165143702, -0.0183420479, -0.0238772985, -0.00696475618, 0.0178329088, 0.0212663319, 0.0168537963, -0.010234993, -0.0164882615, -0.0198303, -0.0113120172, -0.036945194, -0.0300261285, 0.0165796448, -0.00375000224, -0.00608029077, 0.013061366, -0.021853799, 0.0075130593, -0.019347271, 0.0131266396, -0.00720627094, 0.0191122834, -0.0151827773, -0.0169190709, 0.00651762821, -0.00533290161, 0.00174934836, -0.0368407518, 0.011240216, -0.0216710307, -0.0152872158, 0.0104177613, 0.0175326485, 0.018472597, -0.0215013195, 0.00766319, 0.00286880066, 0.00372715644, 0.0172846057, 0.0185248163, -0.00750653213, 0.000690682558, -0.0050522224, -0.0242950544, 0.0119255949, -0.00428198697, 0.0302611142, -0.0135900863, -0.0341775678, -0.00313805672, 0.0217624158, 0.00190111087, 0.0160574503, 0.00597585225, -0.00650130957, -0.000101582962, 0.00531005533, 0.0183551032, -0.00993473176, -0.00567885488, 0.00530026434, 0.0251044538, 0.0214229897, 0.0164752062, 0.0276240371, 0.0057832934, 0.00467363233, -0.00356070721, -0.0194386542, 0.0263446644, 0.000865698967, -0.00869452208, 0.0114817303, -0.00854439195, 0.00734987389, 0.0332115069, 0.0076305531, 0.0121540548, -0.00168896967, 0.027832916, -0.0225718152, -0.0334987156, 0.0058648861, 0.0227023643, 0.0222976636, -0.035065297, -0.00295365718, 0.0126762483, -0.000156862036, 0.0162793826, 0.0189947896, -0.0339686908, 0.0144125419, -0.028041793, -0.0349086374, -0.0100522256, 0.00612924667, -0.000272111793, 0.006236949, -0.00635770615, -0.0085574463, -0.0290339608, -0.0165796448, 0.0134464838, 0.00294549786, 0.000249673787, 0.0167232472, 0.00786554, 0.0164360423, -0.0358224772, 0.00893603638, -0.00497389352, 0.0064458265, 0.0306788702, 0.0273368321, -0.00635117898, 0.0134334285, 0.0105744191, -0.0350914039, 0.0366840959, -0.000427953928, -0.0194255989, -0.010992174, -0.0133355176, 0.0428981967, 0.00625979481, -0.0189686809, -0.00945823, 0.000160737691, -0.00678198831, 0.0216579773, 0.0232767761, -0.0064458265, -0.0126109738, -0.00699739344, 0.00786554, 0.0160705056, -0.00973238237, 0.0150652835, 0.00117167179, -0.00870105, 0.00828329474, 0.0102872122, -0.0113511821, 0.00289817411, -0.0271540638, 0.0286162049, 0.00870757736, -0.0158746839, 0.0199477933, -0.00805483479, 0.0145692, -0.0100456979, -0.0194125436, -0.0117297722, 0.00942559354, 0.000651518, -0.00334203849, -0.00622389419, 0.0135248126, 0.00196312135, 0.00316906208, 0.0160313416, 0.00568538206, -0.0172193311, 0.00257506687, 0.0196866971, -0.00787859503, -0.0112467436, -0.0223237742, -0.00679504313, -0.0130483108, 0.0125522269, -0.015417764, -0.0111618871, -0.0406266563, -0.00390992407, -0.0137597993, 0.0177415255, -0.0150261186, 0.00359334424, -0.00300587644, -0.0112271607, -0.0329243019, 0.00859008357, 0.00723890774, -0.0049706297, -0.00624674, -0.0185770355, -0.0034889055, 0.00691906409, -0.00499347551, 0.0274673793, -0.00904700253, -0.00594647881, 0.0125587545, -0.0101044448, 0.0320104621, 0.0154569289, 0.0238120258, 0.0276762564, -0.000476093643, -0.0084986994, 0.0147128031, 0.00546671357, 0.0264882669, -0.00910574943, 0.0169712901, 0.0154699832, -0.0200652871, 0.0259269085, 0.0240861773, 0.0250913985, -0.0128590157, -0.033054851, -0.0045887758, 0.0268929675, 0.00125571224, -0.0147780767, -0.0049118828, 0.0139817316, -0.0103720687, -0.0352480635, -0.0134073189, -0.00362598128, -0.0198433548, -0.00435052486, -0.0273368321, -0.000751877087, 0.00914491434, 0.0248303022, 0.000533208542, -0.00608029077, -0.00695170136, 0.00449739164, 0.0239164643, 0.0136423064, -0.012872071, 0.00172976602, -0.00930157211, 0.0214099344, 0.0303133354, -0.00109823828, 0.0276240371, -0.0157180261, -0.0127806868, -0.00717363367, 0.0136814704, 0.0226240344, 0.00425261352, -0.0339164697, -0.00109660637, -0.0329504125, 0.0123302946, -0.025953019, -0.0210313443, -0.00898172893, 0.0197780803, 0.00735640153, 0.00956266932, 0.021814635, 0.0228329115, -0.0246605892, -0.0277284756, -0.0115535315, -0.0122454381, 0.0231592823, -0.035561379, 0.00066906045, -0.00298629422, -0.0144778155, -0.0263185538, -0.0332115069, 0.00143195258, 0.0049118828, -0.0148955705, 0.000953003182, 0.00395561615, 0.00813316461, 0.00828329474, 0.00331103336, 0.0181853902, -0.0214621536, -0.00992167741, 0.0230156798, -0.0166449193, 0.0040665823, -0.0103263771, -9.0618938e-05, -0.0087989606, 0.00153231167, -0.00424282253, 0.00924935285, 0.0084986994, 0.0199347381, 0.00431788759, -0.0240861773, 0.00731723662, -0.020235, 0.000685786945, 0.00115208945, 0.0165927, -0.0184595417, -0.0142819928, -0.0235378742, 0.0131592769, -0.01249348, 0.031174954, -0.0120039238, 0.00152578426, -0.00767624471, -0.00309399678, -0.00159921765, -0.00315927085, -0.0185770355, -0.0015935062, 0.000358600082, -0.00659922091, -0.00673629669, -0.0060150167, -0.00491841044, -0.00618146593, -0.00665796734, 0.00130140421, 0.0231201183, -0.000334326236, 0.0177284703, 0.00573760131, 0.0525326692, -0.0101044448, 0.0110378657, 0.0143211577, 0.0199216828, 0.00179993582, -0.00503264, 0.00228296476, 0.0120626707, -0.00136096694, 0.0108877355, -0.0107702417, 0.0128002688, 0.00943212, -0.0177806895, -0.00677546114, -0.0115535315, -0.0126175014, 0.00344974105, 0.0138250738, 0.0260705128, -0.0094190659, 0.0117297722, 0.0114882579, -0.00319027621, -0.00612271903, -0.0149869546, -0.0327415355, -0.00706266752, 0.0252088923, -0.00268603303, -0.00590731436, -0.0208616313, 0.0234726, 0.000365943444, 0.0208616313, -0.00168570597, -0.0010011429, -0.00265339599, 0.0110248113, 0.0255222097, -0.0124086235, 0.019765025, 0.00954961404, -0.00158208318, 0.0160182863, -0.00606070878, 0.00271214265, 0.00593342399, -0.0293733869, -0.0103981784, -0.0179242939, -0.0030434092, 0.011240216, 0.00454634754, -0.000142073361, -0.00623042136, -0.00178688101, 0.0155091481, 0.0047389064, 0.00284432294, 0.00571149169, -0.010195829, -0.00497389352, 0.0211227275, 0.00723238057, -0.00668407697, -0.00868146773, -0.0285117663, -0.0111292498, 0.0262532793, 0.00250326516, -0.0027513071, -0.00539164804, -0.00881201588, 0.00240372214, -0.0163054932, -0.0223107189, 0.00691906409, -0.00257996237, 0.00433747, 0.00606723595, 0.00165225298, 0.013061366, -0.00265829149, 0.00136504648, -0.00230581081, 0.00270887883, 0.0242950544, 0.00786554, -0.017715415, -0.00574412895, 0.0179634579, 0.0108942622, 0.00633486034, 0.0290600695, 0.0122519657, 0.00850522704, -0.0178590193, 0.0250130706, -0.000616433157, 0.0387989804, 0.0229112413, -0.00925588049, 0.0218407437, -0.00619125692, 0.00510444166, 0.000212549086, -0.0213838257, -0.0258877445, 0.00249510608, -0.00978460163, 0.0103198495, -0.00921671558, -0.00250326516, -0.0221279506, -0.0291122887, -0.00455287471, -0.00823760312, -0.0110705029, -0.0108812079, 0.00609987322, -0.00500979414, -0.0257702507, -0.0057735024, -0.00269256043, 0.0121671092, 0.00275620283, -0.0101697193, -0.0321932323, 0.015587477, -0.0215404835, 0.00243799109, 0.00676240632, 0.00155270984, -0.0182898287, 0.00170039269, -0.0130548384, -0.0107114948, 0.0119582321, 0.0130222011, -0.0119451769, -0.0153394351, 0.00179667212, -0.00327676442, -0.00840731617, -0.00665470399, -0.0197128057, 0.0211227275, -0.00705614, 0.00555809727, -0.000851012242, -0.0220235121, -0.00874674134, -0.0237467512, 0.023694532, 0.0241383966, 0.00491841044, 0.00560378935, -0.00273825228, 0.00717363367, 0.0140731158, -0.00341710402, -0.0146736382, -0.0108289886, 0.0192036666, -0.00108436751, 0.00587141374, -0.0230940096, -0.00335509353, -0.0202872194, 0.00827024, 0.0143342121, 0.00557115208, 0.00627937727, -0.00998042431, -0.00734987389, 0.00611945521, 0.00736292871, 0.0168015771, 0.00405026367, 0.00495104725, 0.0188511871, 0.00956266932, 0.00666449498, -0.0101044448, 0.00220300397, -0.0145953093, 0.00271377456, 0.00203655474, 0.0151436124, 0.00574739277, 0.00147030118, -0.0138250738, 0.000319435581, 0.00881201588, -0.0110770306, 0.0193081051, -0.0222846083, 0.00682768039, -0.0200522318, -0.0036292451, -0.00877285097, -0.00306299143, 0.0120691983, 0.00118309469, 0.00521867163, -0.000387769483, 0.0174543187, 0.00650457339, -0.0332115069, -0.00450065546, -0.000516482047, -0.0115404772, 0.019804189, -0.00143032067, 0.0283028893, 0.0215665922, 0.0129177626, -0.0026011765, 0.00248041935, -0.006236949, 0.0064784633, -0.000708632928, -0.0219582375, -0.000956266886, 0.0130156735, -0.0119647589, -0.00262075872, -0.0109530091, -0.000161451637, -0.00587794092, 0.020809412, 0.0201044511, 0.01742821, 0.0129960915, -0.0213707704, 0.0144908708, 0.00373368384, -0.00656984746, -0.0115404772, 0.0117558818, -0.0449086428, -0.0103002675, -0.0139947869, 0.000395928771, 0.0206658095, -0.00978460163, -0.00405026367, -2.11631163e-06, 0.0222976636, 0.00414164737, 0.00431136042, -0.00103133218, 0.00475522503, 0.00255385274, -0.00786554, -0.0130483108, 9.30157257e-05, -0.00778068369, -0.00888381712, 0.0222454444, -0.0191253386, 0.00334040681, 0.00153639133, -0.00886423513, -0.0144778155, 0.000644582615, -0.00727807218, 0.0137206353, 0.0079112323, -0.0144908708, 0.00150538608, -0.0114360387, -0.0109073175, 0.0142558832, 0.00627937727, 0.00508812303, -0.00460183062, -0.015796354, 0.00213283417, -0.0164099317, -0.0127741592, -0.0130287288, -0.0190209, 0.0132832984, -0.00733681908, -0.0104830349, -0.00656658364, -0.0361880101, -0.00578655722, -0.0126305558, -0.0139947869, 0.00341710402, 0.00428851414, 0.0259791277, -0.00301729958, -0.008714105, -0.00682768039, -0.027075734, 0.012304185, 0.023733696, -0.00349216931, 0.014373377, 0.00796345156, 0.00558747072, 0.0354569405, 0.019516984, -0.0136423064, 0.0126370834, 0.000675587857, -0.00731723662, -0.00703655789, -0.00928851776, -0.00426893216, 0.0025261112, -0.00415470218, -0.0142558832, -0.0142036639, -0.00493146526, 0.010822461, 0.00179014471, 0.0107376045, -0.00817232858, 0.0121736368, -0.00337793934, 0.00960836094, 0.0107898237, -0.00868146773, 0.00244288659, -0.0337337032, -0.00241514505, -0.0153394351, 0.0166971385, -0.0151958317, 0.000447536178, 0.00287369639, 0.0185248163, -0.0104112336, -0.0100522256, -0.0251305643, 0.0105874734, 0.0131788589, 0.0189164598, -0.00125816, -0.0192036666, -0.0143864322, -0.0264882669, 0.00296834391, -0.0124673704, -0.00118391064, 0.00119125401, 0.000310052419, -0.0127154123, -0.0116122784, 0.0235378742, 0.017506538, -0.00802219845, 0.00487598218, 0.0147650223, 0.00576044759, -0.00556136109, 0.00531658297, -0.00103704375, -0.00521214399, -0.00387728703, 0.00062908, -0.00475522503, -0.00106070563, -0.0157702453, 0.0237859152, -0.014751967, -0.00793734193, -0.0144517059, -0.00225685514, 0.00734987389, -0.0286423154, -0.0119908694, -0.00149396306, 0.0151044475, 0.00832898729, 0.0105548371, -0.0181070603, 0.00442885375, 0.00903394818, 0.018720638, -0.00130711566, 0.0050522224, 0.00667102216, -0.0130156735, 0.0266710352, -0.0145692, -0.00577676576, -0.0160705056, -0.0254438799, -0.000969321758, -0.0102741579, -0.00844648, -0.0292167272, 0.00798956119, -0.0306005403, 0.0237859152, -0.00602480769, 0.00194680272, 0.000638871163, 0.00381201273, 0.0113707641, 0.0146475285, 0.0256788675, 0.0166579746, 0.0145039251, -0.00991515, 0.013348572, -0.00736945635, -0.00733681908, 0.0028916467, -0.00726501737, 0.00393929752, 0.00245920522, -0.018720638, 0.0270235147, 0.0184856504, 0.00705614, 0.00800914317, 0.0191906132, 0.00092770945, -0.0140339509, 0.028329, 0.00471606, -0.00419060327, -0.00401109923, -0.0100000063, -0.00492493762, -0.00525457226, 0.00806136243, -0.000900783867, 0.0190078449, 0.00349216931, 0.00075718062, 0.0230287351, 0.00680157077, -0.0106201107, 0.0150261186, 0.0281984508, 0.0134073189, 0.00236455747, -0.00206429628, 0.00116188056, 0.0140992254, 0.0156135866, 0.0187728573, 0.00250652898, -0.00257343496, 0.0321410112, -0.0267232545, -0.0180940051, -0.00362271769, 0.00900783855, 0.00707572233, -0.000877937884, -0.000872226374, -0.0075130593, -0.0276762564, -0.00926893484, 0.00131853868, -0.00299445353, 0.0034138402, 0.00973890908, -0.0066188029, -0.000546671334, -0.00418081181, 0.00609008223, 0.013498703, 0.00338120316, -0.0167232472, 0.00774804642, 0.0154569289, 0.0019973903, 0.0068994821, 4.04139028e-05, -0.0098825125, -0.00579961203, 0.0197128057, 0.00427872315, 0.0195430927, -0.00425261352, 0.00303361798, 0.00732376426, 0.0062141032, 0.00350522413, -0.0118929576, 0.021684086, -0.00164980523, 0.043916475, 0.00351501512, -0.0164752062, 0.0168276858, 0.0077219368, 0.0162010547, -0.0165143702, -0.00911227707, 0.00898172893, -0.00614882866, -0.00132017047, -0.0193603244, -0.00929504447, -0.00718668848, 0.0418277, 0.0174151547, -0.00954961404, -0.00974543672, 0.00556788873, -0.0171540566, 0.00309889228, 0.0145169804, 0.02620106, -0.00765013508, -0.00180809514, 0.0255352631, 0.00906658545, -0.0236814767, 0.00103133218, 0.0174804293, 0.00797650591, -0.0184464864, 0.0094778128, 0.00554830628, -0.00139849959, 0.0101762461, -0.00930157211, -0.0146083636, 0.0297389217, 0.0103002675, 0.00598890707, 0.023733696, 0.000184399585, 0.0163185485, 0.0154047096, 0.0170626733, -0.0049706297, -0.0076305531, 0.00388707803, -0.000436521164, 0.0108681526, -0.0165796448, -0.0199608486, 0.0101240268, -0.0233812146, -0.00157473981, -0.01454309, -0.0164099317, 0.0236162022, 0.0294778254, 0.00440927176, 0.0322976708, 0.0213838257, 0.0129699819, -0.021018289, 0.00623368518, -0.00819843821, 0.0160052311, 0.0038511774, -0.019973902, 0.00958225131, -0.0123172402, -0.01742821, 0.00226011896, 0.0082767671, 0.000762076175, -0.00372389262, 0.0295561533, 0.00535901124, 0.0056331628, 0.0131853865, -0.0142950481, -0.00602154434, -0.0214490984, -0.0069908658, 0.010365542, 0.0408616439, -0.0168276858, -0.00684726285, 0.0159660671, -0.00974543672, 0.0132114962, -0.00350522413, 0.0156527516, 0.00476828, 0.0119908694, -0.00789164938, 0.0132180238, 0.0168146323, 0.0065861661, 0.00510444166, 0.0134203741, 0.00657637464, 0.00147193298, 0.0263838284, 0.00821802113, -0.00894909166, -0.0222715549, 0.00239882665, 0.00390339666, 0.00834856927, -0.00640666205, 0.000746165577, -0.00750000449, -0.0107637141, -0.0238511898, -0.00831593201, 0.00881854352, -0.0210052356, 0.0171148926, 0.0116775529, -0.0280940123, -0.026866857, 0.0287467539, -0.00800261553, 0.0164490957, -0.0259269085, 0.0116253337, 0.00195822585, 0.0135117574, 0.0114360387, -0.0220757313, -0.00538838468, 0.0263838284, 0.0115143675, 0.00822454784, -0.0298172515, -0.019765025, 0.0360835716, -0.0162402187, -0.0257310867, 0.00939295627, -0.047180187, -0.0174934827, -0.0018521552, -0.00191742938, 0.02293735, -0.0136161959, -0.0104373433, -0.00210835645, 0.00400457159, 0.0099412594, -0.005923633, 0.0251697283, -0.00965405256, 0.0179242939, 0.00132669799, -0.00838773325, 0.0120430887, -0.00629895926, 0.00857050158, 0.0140600605, -0.012284603, 0.0401044637, -0.00150538608, -0.00214588898, 0.00966058, -0.00325555028, 0.00575065613, -0.00297650322, 0.00405679084, -0.026997406, -0.0162532739, 0.00159513811, -0.0156396963, -0.0101566641, -0.0159399584, 0.00219484465, -0.0214360449, -0.00165062107, 0.0314360522, -0.0192428324, -0.0265274309, 0.00388055062, -0.00456592953, 0.0279634632, -0.0173237696, 0.0116840806, 0.00171507942, 0.00830287673, -0.0116840806, -1.89575621e-05, 0.00198923098, -0.0109987017, -0.019973902, -0.00928199, 0.00632506935, -0.0118211564, 0.0101436097, 0.00760444347, 0.0176631957, 0.00413185637, -0.00285900966, 0.0052611, 0.00220789947, -0.00701044826, 0.0084986994, 0.00149885868, 0.0101305544, -0.0020838785, -0.0207963567, -0.00905353, -0.00567559106, -0.022062676, -0.0208877418, 0.0193342157, 0.028120121, 0.00896867365, -0.00708877714, 0.035639707, -0.00128263782, 0.0222062804, -0.000427545951, -0.0308616385, 0.0176893063, 0.00517950719, -0.00239066733, 0.00977154635, -0.00994778704, -0.00662533054, -0.00299282162, 0.00308257365, 0.0122519657, 0.00460835779, 0.00811358169, 0.00905353, 0.0123368222, -0.0132506611, -0.00271377456, -0.00671018707, 0.0143211577, 0.0155483121, 0.00753916893, -0.0145692, 0.00983029325, -0.0199477933, -0.010424288, -0.0107963514, 0.0275195986, -0.0145953093, -0.00703655789, 0.0214882642, -0.00961488858, 0.00953656, 0.00733681908, 0.00820496585, -0.00443864521, 0.00148498791, 0.00155107793, 0.00723238057, 0.00505548622, -0.0187989678, -0.0144647611, 0.0110770306, 0.00684073521, 0.000435705238, 0.0188381318, -0.00221605878, -0.012911235, 0.00587141374, -0.020770248, -0.0186945293, -0.00654047402, -0.0275979284, 0.00545365876, 0.00642298, 0.0253655501, 0.0235900935, -0.00275946641, -0.0170887839, 0.00363903609, 0.0139295124, -2.40698573e-05, 0.00744125759, 0.00907964, 0.0147258574, 0.000418570766, -0.00120186107, -0.0116449157, -0.00270724716, 0.00595300645, 0.0118211564, -0.00379895791, -0.0213968791, -0.000885281246, -0.00290633342, -0.00559073454, 0.00307931, 0.0116122784, 0.0078133205, -0.0207441375, 0.00207082368, -0.0201697256, 0.0134856477, 0.0161357801, -0.0258355252, -0.000638055208, 0.0093081, 0.00423303153, -0.020561371, 0.00236782129, -0.0245430954, 0.019516984, 0.00210998813, -0.0298433602, -0.0101566641, 0.0196475312, -0.0217363052, 0.0199869573, -0.0225326512, -0.0221932251, 0.018681474, 0.0132637154, 0.00647193613, 0.00864883047, -0.00819843821, 0.00440274412, -0.0151566677, 0.0308616385, 0.0301044565, -0.00171507942, 0.0159660671, 0.00671671424, 0.0246344805, 0.0130678928, 0.0155222025, -0.0176109765, -0.009360319, 0.00389686925, 0.0132963527, 0.00731723662, -0.0221148953, -0.0109725911, -0.00851828232, 0.0180417858, -0.00949086715, 0.00571149169, -0.00632506935, -0.0289817415, 0.00701697543, -0.00847259, 0.0125848642, -0.00125408045, 0.0211357828, 0.0296867024, 0.0109791188, -0.00419386663, 0.00964099821, 0.0158877373, -0.00966710784, 0.0178068, -0.00323107257, -0.0198564082, 0.00129242893, -0.0127545772, -0.00753264176, 0.00420692144, 0.00536880223, -0.0253655501, 0.012284603, 0.0255352631, 0.012930817, 0.0245039314, 0.000911390875, 0.00302709057, 0.00983029325, -0.00868146773, 0.00112842757, 0.00193211611, -0.0244778208, 0.012930817, 0.00645561749, 0.0118211564, 0.016631864, -0.00167265115, -0.00349869672, 0.00402415404, 0.00406005466, -0.00645561749, -0.00229275599, 0.00184236409, -0.00685379, 0.0093211541, -0.0183551032, -0.0262271706, 0.000737190421, 0.00299934903, -0.0287206434, -0.0106984396, -0.00855091866, 0.00457245717, 0.0348303095, 0.00570170069, 0.0210705083, -0.00826371275, -0.0122519657, 0.0104765082, -0.00489882799, 0.00337141193, -0.00472911494, -0.0173629355, -0.00812663697, -0.00940601062, -0.0520888045, 0.00290959701, 0.019765025, 0.00634791516, -0.0153655447, 0.0131331673, -0.00533290161, -6.61028662e-06, 0.00069843384, -0.00304504111, 0.0138120186, 0.0477545969, 0.0123172402, 0.0102872122, 0.00128182198, 0.0101762461, -0.000913838681, 0.00295855268, 0.0127219399, -0.0012981405, 0.0173759889, -0.0149086257, 0.0348042, 0.00769582717, 0.0252219476, 0.0134725934, -0.00302056316, 0.00788512267, -0.0135900863, -0.00343668624, 0.00334530231, 0.0127219399, 0.00295039336, -0.00690600928, -0.0280156825, -0.00235803, -0.0190470088, -0.0129047073, -0.0105091445, -0.0241906159, -0.00974543672, 0.00874021463, -0.0447519869, -0.0183420479, -0.0051109693, 0.0166840833, 0.0269712955, 0.00443211757, 0.00196964876, 0.000321475381, -0.0200000126, 0.0182506647, -0.0183420479, -0.0117558818, -0.0149477897, -0.024947796, 0.00288511929, -0.0166188087, 0.0110705029, 0.0072846, -0.0178068, -0.0149869546, 0.0146083636, 0.00169549708, 0.00834204163, 0.0179895665, -0.0261618961, 0.0198694635, 0.026240224, 0.0365535468, -0.0454308391, -0.00193211611, -0.00542428531, -0.017715415, 0.0033387749, 0.0147780767, -0.00568864588, -0.00646214513, -0.00994778704, 0.0154308192, 0.0239686836, 0.00288348738, 0.0115665868, 0.0148302959, -0.0158616286, 0.0145692, 0.0103394315, -0.0164752062, -0.0152611062, -0.0209399611, 0.0301044565, -0.00761097064, 0.0027464116, 0.00391645171, 0.0342820063, 0.0188511871, 0.0225326512, -0.00154291873, 0.00398825295, -0.0114229834, -0.00480418047, 0.0148433512, -0.00671671424, -0.0139686773, 0.0224282127, -0.0167624131, 0.0134464838, -0.00966058, -0.00231397012, 0.00183257298, 0.00911880471, 0.00392950652, -0.000448352104, -0.000284146721, 0.00114311429, -0.0155352578, -0.00158126734, 0.00563642662, -0.0131658046, 0.0103002675, 0.0126958303, -0.00623368518, 0.00238414, -0.0130483108, 0.0141906096, 0.0261618961, 0.00835509691, 0.0134595381, 0.0040176264, -0.0098825125, -0.00229112408, -0.0151436124, -0.000773499196, -0.0333942771, -0.0179765131, -0.0289034117, -0.0233159419, 0.00761097064, 0.00117330358, 0.0180287324, -0.00764360791, 0.0112728532, 0.00696475618, -0.00479438948, 0.00331103336, -0.0057245465, -0.008094, -0.00453329273, 0.0130874757, 0.00147356489, 0.0107963514, -0.0189034063, -0.0111096678, 0.0112206331, -0.00116922392, -0.00182115, 0.00149477902, -0.022859022, 0.0121083623, -0.012682775, -0.000519337773, -0.00340078538, -0.00389360543, 0.0190731194, -0.000896704209, 0.0164360423, -0.000432441506, -0.00516971573, -0.0132245515, -0.0105483094, 0.00261423131, 0.00833551399, -0.0104569253, -0.00168081047, -0.0087989606, 0.00509138685, -0.00283616362, -0.0194778182, 0.0248433575, -0.0159138478, -0.0110248113, -0.00701044826, 0.00259464909, -0.000798792928, 0.000190723033, -0.0291122887, 0.0233681612, -0.0244125482, 0.00287859188, -0.00184399588, 0.0190600641, 0.0117558818, -0.0107310768, -0.00147682859, 0.0138250738, -0.000303524983, -0.0134725934, 0.0229242966, -0.0052513089, -0.0104765082, -0.00404047268, -0.000358600082, 0.00149233115, -0.00641971687, 0.0146736382, 0.0103133218, 0.00764360791, 0.0278851353, 0.00225195964, -0.00698433863, -0.00887729, -0.00319517171, -0.00372389262, -0.00795692392, -0.00464752223, -0.00519256201, -0.0144255962, 0.00947128516, -0.0083746789, -0.015417764, 0.0186031442, 0.00481070811, 0.00621083938, -0.00474217, 0.00794386864, 0.0196344759, 0.00420692144, 0.00380548532, 0.0159269031, -0.0177545808, -0.00986293051, 6.21634681e-05, 0.0318538062, -0.00662206672, -0.0153524894, 0.0229242966, 0.0199086275, 0.00762402546, 0.00171671121, -0.00269256043, 0.0148433512, 0.0157180261, -0.00671018707, -0.000232743289, 0.00958225131, 0.0135117574, 0.048094023, -0.00951697677, 0.00307931, -0.00129406084, -0.00834856927, -0.0292689465, 0.00915144198, 0.000132996167, 0.00233028852, -0.013916458, -0.00160982471, 0.0225457065, 0.00723238057, 0.0377023742, -0.00321964943, -0.0164360423, 2.2336013e-05, 0.00196148944, -0.00498368451, -0.0263185538, 0.0122258561, -0.0110443933, 0.0167363025, -0.0165143702, 0.00362598128, -0.0264491029, -0.0188120212, 0.0156005314, 0.0109073175, 0.00227643736, -0.0122519657, 0.00696475618, 0.00825065747, -0.00943864789, -0.0206788629, -0.0257310867, 0.000685379, 0.0188381318, 0.00760444347, -0.0150913931, -0.00836162362, -0.00421344908, -0.00585183129, -0.0102676302, 0.0143081024, -0.0138772931, -0.00840078853, 0.00156086904, -0.0253524967, -0.00281494949, 0.0138120186, -0.00271867, 0.00166612375, -0.00774151925, 0.00812010933, 0.0187075827, 0.000608681818, 0.0002315194, 0.00699739344, -0.0165404808, -0.0026762418, -0.00384464976, -0.0042493497, 2.35854e-05, -0.0088968724, 0.000610313669, 0.0198564082, 0.00338120316, -0.00314458413, -0.0183812119, 0.0026811373, 0.023864245, -0.000666612701, -0.0100000063, 0.0132571887, -0.00626632245, 0.00552219665, 0.00154455053, 0.0125000076, -0.023485655, 0.0043570525, 0.0142428288, 0.00243635918, 0.0164099317, 0.00252284738, 0.00235150266, -0.00699739344, 0.00301566767, -0.00774804642, 0.0054340763, -0.00234171166, -0.0163446572, 0.00654047402, -0.00500979414, -0.0244386569, 0.0161488354, 0.00425261352, -0.0207441375, -0.0017770899, -0.0163446572, -0.0106070563, -0.0142297735, 0.00365209091, -0.0132571887, -0.0287467539, 0.0122584933, -2.71040881e-05, 0.0056919097, -0.00612271903, 0.0162793826, 0.0078524854, -0.0181462243, 0.00995431375, 0.00959530659, 0.0136814704, -0.0337075926, -0.0096997451, -0.023485655, 9.908418e-05, -0.0150783379, -0.00337141193, -0.0155483121, -0.00192069309, -0.00962141622, 0.00518929819, -0.0127349943, -0.000234579129, 0.0624543466, 0.027911244, -0.002596281, -0.0378329195, 0.0213707704, -0.00249021035, -0.0128329061, 0.0309921857, 0.0129438723, 0.00986293051, -0.00653721, -0.0329504125, -0.00827024, -0.00253263861, 3.29685645e-05, -0.00576044759, 0.00690600928, -0.00128834939, -0.00476175221, -0.0179242939, -0.00595300645, 0.00236618938, 0.0107637141, -0.0104634529, 0.00716057885, -0.0129765095, 0.00870757736, 4.01844227e-05, -0.00924935285, 0.0205874797, -0.0148172416, 0.015169722, -0.00743473042, 0.0156005314, -0.0257180315, -0.0132898251, 0.0145561444, 0.00476175221, -0.000155230184, 0.00685379, 0.0274151601, 0.00205124146, 0.0246605892, 0.00904047582, 0.00154863019, -0.000973401358, -0.00857050158, -0.00305972761, 0.00514034275, -0.0116971349, 0.014373377, 0.00907964, 0.00768929953, -0.0109268995, 0.00267950562, -0.00419713045, 0.0068994821, 0.0181331709, 0.0026125994, 0.0305483211, -0.00527741853, 0.016462151, 0.00663512154, -0.0116449157, -0.0046801595, -0.0180809516, -0.0180026218, 0.0196605865, -0.00307278265, -0.00532311, -0.0261618961, -0.0152741605, -0.000483844953, 0.00663838536, 0.0211618934, 0.00930157211, -0.0286945347, -0.00294712977, 0.00649804575, -0.0330809616, -0.0107441321, 0.0230156798, -0.0163707677, -0.0353002809, 0.0175848678, -0.0139947869, -0.0256135929, -0.00995431375, -0.0218668543, 0.0255091544, -7.03737387e-05, 0.00577676576, 0.00889034476, 0.0280679017, -0.00373042, 0.0181723349, -0.0114882579, -0.00988904, 0.00450391928, -0.0160052311, 0.00500000315, 0.00611292804, 0.00612598285, 0.00317558949, -0.00298792613, 0.0124282064, 0.0193211604, 0.00293570687, 0.0167101938, -0.0252872221, 0.00901436619, -0.0201044511, 0.00553198764, 0.00663185772, 0.00430483278, 0.00719321612, 0.00401109923, 0.0180156771, 0.012911235, -0.00599869806, 0.0349086374, 0.017258497, -0.0170757286, -0.00198107166, 0.0174021, 0.0108485706, 0.0164099317, 0.00074534968, 0.018302884, -0.00915144198, -0.00416123, -0.0147258574, 0.00133730494, -0.00398825295, -0.00178361731, 0.00702350307, 0.00290470151, -0.0163707677, 0.00165388477, 0.00558747072, -0.015626641, 0.0146475285, 0.0143342121, 0.014751967, -0.00128100603, 0.0328198634, -0.0110443933, 0.0113381268, 0.0477807075, 0.0272062831, -0.0339947976, 0.0192428324, 0.00190111087, -0.000409799541, -0.00658942945, 0.0118276831, 0.0152611062, -0.0186162, 0.0100783352, -0.0219060183, -0.00506527722, 0.00701044826, 0.0240731221, -0.00573433749, -0.0022291136, -0.0269190762, -0.00359987165, -0.0106984396, 0.00392297888, 0.0122323837, -0.0074216756, -0.0037859031, 0.0054340763, 0.0168146323, 0.000394092931, -0.0165143702, -0.0136031415, 0.0129504, 0.000842037087, -0.00660901191, -0.00285248226, 0.00934726465, 0.0230287351, 0.0492428504, -0.00748694967, -0.0361357927, -0.0148694608, 0.0155222025, -0.000293733872, 0.0290078502, -0.00964099821, 0.0218668543, -0.0155613674, 0.00593342399, -0.00862272084, -0.0306788702, 5.247433e-05, 0.00195822585, -0.0174934827, -0.00514034275, 0.00868799444, 0.0121083623, -0.0051207603, 0.00430483278, 0.000541367801, 0.0215927027, 0.00850522704, -0.000903231616, 0.00455613853, -0.00189784716, 0.00307115074]
|
22 Oct, 2020
|
How to Find a Sublist in a List in Java?
22 Oct, 2020
List in Java contains index-based methods. This enables us to maintain the order collection. So this enables us to search, insert, delete, and even update the elements. This enables us to store multiple copies of the same element already existing on our list. Also, in addition, null elements are allowed to be a part of the List.
We access the list through their index numbers called Interface that we won’t be discussing here.
Types of List
ArrayList
LinkedList
Stack
Vector
ArrayList is used where elements to be inserted are known because there is no flexibility once we have declared the ArrayList but is frequently used as operation over elements are much faster and the good part of Arraylist is we can directly access the element through ArrayList interface.
The syntax for ArrayList :
ArrayList<String> cars = new ArrayList<String>();
LinkedList is preferred over Arraylist if we want a flexible list with no size constraint and operations over elements are quite slower.
LinkedList<E> extends AbstractList<E> implements List<E>, Deque<E> ;
Vector method is similar to Arraylist just Vector has an edge over ArrayList because all elements in vectors are synchronized and are only useful if making multithreaded applications. So, in practice vector class isn‘t used more frequently anymore.
Vector object= new vector(datatype parameter1, datatype parameter2, ...., datatype parameterN)
Sublist is a portion of List
The subList() method of java.util.ArrayList class is used to return a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive.
The returned list is backed by this list, so non-structural changes in the returned list are reflected in this list, and vice-versa. The returned list supports all the optional list operations.
Syntax:
public List subList(int fromIndex, int toIndex)
Parameters: This method takes the following argument as a parameter.
fromIndex: low endpoint (inclusive) of the subList
toIndex: high endpoint (exclusive) of the subList
Return type: A view of the specified range within this list. Exception: This method throws the following Exception.
IndexOutOfBoundsException – if an endpoint index value is out of range (fromIndex size)
IllegalArgumentException – if the endpoint indices are out of order (fromIndex > toIndex)
Example 1:
Java
// Java Program to find
// Sublist in a List
import java.util.*;
public class GFG1 {
// Main Method
public static void main(String[] argv) throws Exception
{
// Try block for exception
try {
ArrayList<Integer>
arrlist = new ArrayList<Integer>();
// Populating arrlist1
arrlist.add(1);
arrlist.add(4);
arrlist.add(9);
arrlist.add(25);
arrlist.add(36);
// Print arrlist
System.out.println("Original arrlist: "
+ arrlist);
// Getting the subList
// using subList() method
List<Integer> arrlist2 = arrlist.subList(2, 4);
// Print the subList
System.out.println("Sublist of arrlist: "
+ arrlist2);
}
// Catch block for exception
catch (IndexOutOfBoundsException e)
{
System.out.println("Exception thrown : " + e);
}
// Catch block for exception
catch (IllegalArgumentException e)
{
System.out.println("Exception thrown : " + e);
}
}
}
Output:
Original arrlist: [1, 4, 9, 25, 36]
Sublist of arrlist: [9, 25]
Example 2:
Java
// Java program to find
// sublist in a List
import java.util.*;
public class GFG1
{
// Main Method
public static void main(String[] argv) throws Exception
{
// Exception try-catch block
try {
ArrayList<String> arrlist = new ArrayList<String>();
// Populating arrlist1
arrlist.add("Example");
arrlist.add("in");
arrlist.add("Geeks");
arrlist.add("for");
arrlist.add("Geeks");
// print arrlist
System.out.println("Original arrlist: "
+ arrlist);
// Getting the subList
// using subList() method
List<String> arrlist2 = arrlist.subList(2, 5);
// print the subList
System.out.println("Sublist of arrlist: "
+ arrlist2);
}
// Exception try-catch block
catch (IndexOutOfBoundsException e)
{
System.out.println("Exception thrown : " + e);
}
// Exception try-catch block
catch (IllegalArgumentException e)
{
System.out.println("Exception thrown : " + e);
}
}
}
Output :
Original arrlist: [Example, in, Geeks, for, Geeks]
Sublist of arrlist: [Geeks, for, Geeks]
Example 3: For IllegalArgumentException
Java
// Java program to demonstrate
// subList() method
// for IllegalArgumentException
import java.util.*;
public class GFG1
{
// Main Method
public static void main(String[] argv) throws Exception
{
// Exception try-catch block
try {
ArrayList<String> arrlist = new ArrayList<String>();
// Populating arrlist1
arrlist.add("Example");
arrlist.add("in");
arrlist.add("Geeks");
arrlist.add("for");
arrlist.add("Geeks");
// Print arrlist
System.out.println("Original arrlist: "
+ arrlist);
// Getting the subList
// Using subList() method
System.out.println("\nEndpoint indices "
+ "are out of order"
+ " (fromIndex > toIndex)");
List<String> arrlist2 = arrlist.subList(9, 3);
// print the subList
System.out.println("Sublist of arrlist: "
+ arrlist2);
}
// Exception try-catch block
catch (IndexOutOfBoundsException e)
{
System.out.println("Exception thrown: " + e);
}
// Exception try-catch block
catch (IllegalArgumentException e)
{
System.out.println("Exception thrown: " + e);
}
}
}
Output:
Original arrlist: [Example, in, Geeks, for, Geeks]
Endpoint indices are out of order (fromIndex > toIndex)
Exception thrown: java.lang.IllegalArgumentException: fromIndex(9) > toIndex(3)
Example 4: For IndexOutOfBoundsException
Java
// Java program to demonstrate subList()
// method for IndexOutOfBoundsException
import java.util.*;
public class GFG1
{
// Main Method
public static void main(String[] argv) throws Exception
{
// Exception try-catch block
try {
ArrayList<Integer> arrlist = new ArrayList<Integer>();
// Populating arrlist1
arrlist.add(1);
arrlist.add(4);
arrlist.add(9);
arrlist.add(25);
arrlist.add(36);
// Print arrlist
System.out.println("Original arrlist: " + arrlist);
// Getting the subList
// Using subList() method
System.out.println("\nEnd index value is out of range");
List<Integer> arrlist2 = arrlist.subList(2, 7);
// Print the subList
System.out.println("Sublist of arrlist: " + arrlist2);
}
// Exception try-catch block
catch (IndexOutOfBoundsException e)
{
System.out.println("Exception thrown : " + e);
}
// Exception try-catch block
catch (IllegalArgumentException e)
{
System.out.println("Exception thrown : " + e);
}
}
}
Output:
Original arrlist: [1, 4, 9, 25, 36]
End index value is out of range
Exception thrown : java.lang.IndexOutOfBoundsException: toIndex = 7
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?
|
https://www.geeksforgeeks.org/how-to-find-a-sublist-in-a-list-in-java/?ref=next_article
|
Pandas
|
How to Find a Sublist in a List in Java?
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Initializing a List in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0288262479, 0.0429729559, -0.0142133124, 0.0306378789, -0.0239375085, -0.00975749828, 0.00601767935, 0.00873845629, -0.019754773, 0.0198080558, -0.0174103081, -0.0118954899, 0.0573860817, -0.00404952839, -0.00996397156, -0.00527504366, -0.0163579639, 0.0455039106, -0.000537828, -0.0211667791, -0.0136938, 0.0176234413, -0.0154921105, 0.0275208093, -0.0252429489, 0.0472889021, -0.0164645296, 0.0127480226, -0.0393763371, -0.0388967879, -0.00135955587, -0.0366056077, 0.0271744672, 0.0130544007, -0.0246568322, 0.01874239, -0.00160182826, -0.00152023823, -0.0135672521, 0.00922466628, 0.0123817, -0.0277605839, 0.0183294453, -0.0179031789, -0.0256026108, 0.00154188462, -0.0123683792, -0.0012862914, -0.0226720311, -0.0115291672, -0.00222624163, -0.00120636646, 0.00990402792, 0.015731886, 0.00156686117, 0.0235378835, -0.00439253962, -0.00893160794, -0.0566401146, -0.0284799077, 0.0100971796, -0.0521643199, 0.0229917299, 0.00261587556, 0.0191952977, 0.0125215687, -0.0394562595, 0.00105817243, 0.00928461, -0.00202809437, -0.015425506, 0.0166510213, 0.0264151804, 0.0111428639, -0.0439320542, -0.024843324, -0.0226853527, -0.00411613239, -0.0288262479, 0.0174635909, -0.0251763444, -0.0122218495, -0.00652054, -0.0118888291, -0.0362059809, -0.0279204324, 0.000112706606, -0.0494468734, 0.0144797284, -0.0218994245, 0.0209136829, 0.0170506462, 0.0146528995, -0.00366988522, 0.0110296365, 0.0424667671, 0.0252962317, 0.00129794714, -0.0346341245, 0.0503793322, 0.00746631809, -0.00572462147, -0.00622082176, -0.00357330916, 0.0296254978, 0.00276406971, -0.0152123738, 0.00737973256, 0.065272, 0.0300784055, 0.036818739, -0.0137870461, -0.0432127304, 0.0106566539, 0.0322630182, -0.00600102823, 0.0320765264, -0.0391898453, 0.0136405174, 0.0287463237, 0.014146708, 0.0687887, 0.024044076, 0.0353001654, -0.047208976, 0.042919673, 0.0246568322, 0.0101970853, -0.00637734123, -0.00435257703, 0.01140262, -0.00525839254, -0.00757954502, -0.0124150021, -0.0156652816, 0.0200078674, -0.0016817532, 0.0415076651, -0.00413611392, 0.018209558, -0.00422935933, -0.017237138, -0.0165178142, -0.0138270082, -0.0482746437, 0.014279916, 0.0169174373, 0.0306911636, -0.0443050377, -0.016930759, -0.0173170622, -0.0200744718, -0.0130943637, 0.00150691741, 0.0362326242, 0.000570713775, 0.0130544007, 0.00440586032, 0.0282934159, -0.0072931475, 0.00621083099, -0.0285331905, 0.0263219345, -0.00703339139, 0.00605764147, 0.0104834829, -0.00775271561, -0.053842742, -0.0365523212, 0.0400690176, 0.00704005174, 0.025149703, -0.00456904, 0.035753075, -0.00951772369, -0.0509920903, 0.00565468706, -0.00215131207, -0.0431061648, -0.0312772803, -0.00521843, -0.0348472595, 0.0577057824, 0.0117223188, -0.0280536413, 8.04582578e-06, 0.0267348811, 0.00153189397, 0.0018199567, -0.00381974434, -0.0131876087, -0.0130344201, 0.0246967953, 0.0176367629, 0.00187990034, 0.0125815123, -0.014586295, 0.0169174373, -0.0219793487, 0.0375380628, 0.01776997, -0.0195416398, -0.0108098434, 0.0181029905, 0.0666040853, -0.0176634043, -0.0451309308, 0.00402288698, 0.0177166872, 0.00600768859, -0.0342877842, 0.0279470738, -0.0388435051, -0.00277905562, 0.0311973542, 0.0193817895, 0.00233447319, 0.0226720311, -0.0395628288, 0.00527837407, 0.0179964248, 0.0250830986, 0.0501395576, -0.0014927641, -0.0424401239, -0.0292525142, -0.0298119895, 0.0431860909, -0.0135139693, -0.0376712717, -0.0106233517, -0.00261421036, -0.0192086194, -0.0222457647, 0.00986406486, -0.00079467, -0.0336483829, 0.0116024315, 0.027360959, 0.0257091783, 0.0159450192, 0.0253361948, -0.0173969865, 0.00436256779, -0.0041860668, -0.00181662641, -0.00795252807, 0.0047555319, 0.0284532662, 0.0451575704, -0.00673700357, -0.038230747, -0.0536029674, 0.0195416398, -0.042919673, 0.00283566909, 0.0174103081, -0.0237776581, 0.0114559028, 0.0477151684, 0.0238575842, 0.0112361098, -0.0233913548, 0.00922466628, 0.0303714629, -0.0137870461, 0.0475020334, -0.0146928616, -0.00902485382, 0.0417740829, 0.0320765264, -0.0125748515, -0.0250564571, 0.0287196822, -0.0116024315, -0.026828127, -0.0153056188, -0.0320498869, 0.0537361763, 0.022765277, 0.0234446377, 0.0298919138, -0.00633071829, -0.0135339508, 0.00619751029, -0.0284532662, 0.00127380318, -0.00050452596, -0.0285065491, -0.00567466812, -0.0236178096, -0.0118888291, 0.00126298, 0.00100905192, 0.0147727868, 0.0204341337, -0.000123737904, 0.0280003585, -0.0480348654, 0.0172637794, 0.00770609267, -0.0376446284, 0.0131343259, -0.0176767241, -0.0273876, -0.0365256816, -0.0039296411, 0.00478883367, -0.0132009303, -0.0398558863, -0.00523175113, -0.0791256577, -0.0295455735, -0.0252029859, -0.00829220843, 0.0169574, 0.0517380536, -0.0206472669, 0.0214864779, -0.0455039106, 0.0151191279, -0.0226187482, 0.00417274609, 0.0375114232, -0.00130793778, -0.0383373126, -0.0283466987, 0.0366322473, -0.00994399, -0.0183694065, -0.0126547767, 0.0120686609, -0.0124882665, -0.0032286332, 0.0179964248, -0.0332221165, -0.000630657421, -0.0367654562, 0.0282934159, 0.00744633703, -0.0159316976, 0.00536828954, 0.0123817, -0.0293057989, -0.00701341033, -0.0189555231, -0.00754624279, 0.0257757809, 0.0254560821, 0.0301849712, 0.00118971546, -0.00538161024, -0.0109830135, -0.0257491395, 0.0204607751, -0.015691923, 0.00108897686, -0.00891162641, 0.00871847477, 0.0357797146, 0.00904483534, -0.000215214459, -0.0512585044, 0.0148260696, -0.015958339, -0.0232181847, -0.018609181, 0.00959764887, 0.00398292439, -0.00164012564, -0.0144264456, 0.0103236334, 0.0302915387, -0.0262153689, 0.0140268207, 0.0285331905, 0.0347140506, 0.00256259227, 0.00664042728, -0.0146129364, -0.0314637721, 0.0120020565, -0.0318367518, 0.000270370976, -0.00431261444, 0.00240607257, -0.0342078581, 0.0155986771, 0.000545321, 0.0279470738, -0.00012300942, 0.0543489344, -0.00862522889, -0.0103968978, 0.0159050561, -0.00100655423, -0.0183161236, -0.00484544737, -0.000296180049, -0.0249632113, 0.0476885252, -0.00564136636, 0.0211001746, -0.0150125613, -0.0595706962, -0.0172904208, -0.00584783871, -0.00185658887, 0.00666040881, 0.0376979113, 0.0234179962, 0.0498465, -0.0343677104, 0.00215464225, 0.0172771, 0.0395361856, -0.0294656474, 0.0410281159, -0.0101904254, -0.00185825396, -0.0105301058, 0.00533498731, 0.00831219, -0.0116956774, -0.02608216, -0.00641730381, -0.00455905, 0.0293590818, 0.0010981349, -0.0436123572, -0.00391965033, 0.0113826385, -0.0153589025, 0.0336750261, -0.0113093741, -0.0130477408, 0.00224122754, -0.0236710925, -0.0516048446, -0.0185558982, -0.0206739083, 0.0485410579, -0.0483545661, 0.0115558086, -0.00339014805, 0.00877841841, -0.0532832704, -0.00287563144, 0.0105167851, -0.008618569, -0.0265883505, -0.0171305705, 0.0101038404, -8.34112143e-05, 0.0497132912, -0.00828554854, 0.0431061648, -0.0203542095, 0.0251896661, 0.0245902296, -0.00129045418, 0.00391965033, -0.0220859144, -0.0138136875, -0.00994399, 0.016224755, -0.00930459052, 0.0162913594, -0.0374048539, -0.0391099192, -0.00899155159, -0.0098773865, 0.000280777866, -0.0253495146, 0.0390566364, 0.00405618874, 0.0111894868, -0.000187844344, -0.00340346876, -0.00736641185, 0.0473155417, 0.0438254885, -0.00821228418, -0.0122817932, 0.0253894776, -0.0483279265, 0.0166510213, -0.00440253, -0.0362326242, 0.005834518, 0.0159450192, 0.0497665741, -0.0270146169, -0.0073597515, -0.024124, -0.0140667828, -0.0392431282, -0.0122684725, -0.0135339508, 0.0501129143, -0.0153322611, -0.00258756871, -0.0409481935, 0.0583984628, 0.00642729457, -0.0242705289, -0.0301849712, -0.00353667699, 0.00144031341, -0.031783469, -0.0473155417, -0.00776603632, -0.00114642282, 0.00379976304, -0.00128962158, 0.0252962317, 0.00997063145, 0.00964427181, 0.0110362973, -0.0142665952, -0.010123821, 0.0275208093, 0.00302715576, -0.00111228821, -0.0349271819, 0.0352735259, -0.0108364848, -0.000452907785, 0.00642396417, -0.00999061298, -0.0291459486, 0.0153855439, -0.00638733199, 0.0314637721, -0.01140262, -0.0466228612, 0.000399208249, 0.00524840225, 0.00299884891, -0.00441918103, -0.00718658092, 0.0304780304, -0.0202343222, -0.00578123471, -0.0375114232, 0.0247634, -0.00225288328, 0.0269746557, 0.0033968084, 0.00801913161, 0.00606430229, 0.0553080328, 0.0231116172, 0.00301383482, -0.0365256816, 0.0237643383, 0.00883836206, 0.00149026641, 0.00606430229, -0.0117023382, -0.0303981043, 0.0153189395, 0.0240174327, 0.00129877974, 0.0221791603, 0.0263485759, 0.0287196822, -0.00681692827, -0.0111695053, 0.0254427604, 0.0010290331, -0.0109896744, -0.00370318722, -0.0270679016, -0.00489207031, 0.0203808509, 0.00318034505, -0.000682275626, 0.0228718426, 0.0073597515, -0.0011680692, -0.012241831, 0.0175701585, -0.0162913594, 0.00299385376, -0.0233780351, -0.0408949107, -0.00177999423, -0.0353800915, 0.0277605839, 0.00957100745, 0.0259622727, 0.0143731618, -0.00806575455, -0.043452505, -0.0050219479, -0.00391299, -0.00790590513, -0.0299718399, -0.0100638773, 0.0304780304, 0.00996397156, 0.0136005543, -0.041987218, 0.0329290591, -0.00304713706, 0.00223956234, 0.00157601922, -0.00815234054, -0.0164378881, -0.015998302, -0.0257891025, -0.00796584878, -0.00362659246, -0.00208970322, -0.0349005423, 0.0173570253, 0.00728648715, -0.00152356853, -0.0171438921, 0.00449577579, -0.0469692, 0.01874239, 0.0334618948, 0.00232448266, 0.012508247, -0.0124483034, -0.0129012112, -0.00575792324, -0.00487208879, -0.0199412629, -0.00749296, -0.0109763537, -0.00681026792, -0.0245369449, 0.0151724108, -0.0112560904, 0.00805909466, 0.00366655504, 0.0332221165, 0.0231649019, 0.0156253185, 0.00257424801, 0.0974018127, -0.00931125134, 0.014586295, -0.0206206255, -0.0164245684, 0.00835881289, 0.00264251721, -0.0235911682, 0.0285065491, 0.0131942695, 0.00307044829, -0.0207405128, -0.0165178142, 0.0191952977, 0.00405951915, 0.0242705289, 0.00994399, 0.012062, 0.0208604, 0.00542157283, -0.0292791557, -0.010343615, -0.008884985, -0.0147594651, 0.00573461177, -0.000223539959, 0.0226587094, -0.0257624611, -0.0259489529, -0.00020293433, 0.0105034644, -0.00710665621, -0.0174635909, -0.0226187482, 0.0559474342, 0.0207671542, -0.00930459052, -0.0020247642, -0.0204607751, 0.039696034, 0.0186491441, -0.00948442239, 0.00927794911, -0.015292298, -0.0351669565, -0.0133741, -0.0184093695, -0.0485677, 0.0245236252, 0.0422802754, -0.00312706176, 0.0343144238, -0.0157185644, 0.00681026792, 0.0254028, 0.0081057176, -0.0318367518, 0.0217262525, 0.0248966068, -0.00869849324, 7.40970499e-05, 0.015558715, -0.00775271561, 0.000541158195, 0.0110029951, 0.0382041037, 0.0218727812, 0.00830552913, -0.0131676281, -0.0119887358, 0.0182228778, 0.00120636646, -0.00151524297, 0.00363325281, -0.0363391899, 0.00833883137, -0.00945778, 0.00064730848, 0.00472556, 0.00629075617, -0.00655717216, 0.00387968798, -0.010743239, -0.0181163121, -0.0138669712, 0.00119304575, -0.00564802671, -0.00668039, -0.00831885077, 0.0339148, 0.00893160794, -0.00994399, -0.00758620538, 0.0478217341, -0.0186891071, -0.0289328154, -0.00480215484, 0.0262819733, -0.0054548746, -0.0502994061, -0.0191686563, 0.0109430514, -0.0143465204, -0.00942447782, -0.024310492, -0.0295455735, 0.0467560701, -0.000803828065, 0.015958339, 0.0395894684, -0.023870904, -0.00361327175, -0.0111761661, 0.00784596149, 0.00715327868, 0.024177283, 0.028906174, -0.0129278535, 0.0201011132, -0.0182228778, 0.0348739, -0.0180630274, 0.00332021364, -0.0345542, -0.00507190125, 0.0014761131, -0.029439006, 0.0103769163, 0.0076061869, 0.00982410274, -0.0234979223, -0.00179331505, -0.0224056151, -0.00611758558, -0.00789258443, 0.0164245684, -0.00839877501, -0.0264951065, 0.010963033, 0.014852711, 0.0140801035, -0.0018882259, -0.0149859199, 0.00974417757, -0.0293057989, 0.024310492, 0.00605764147, -0.0178898573, 0.0118621876, -0.00203642, -0.000915806217, -0.0108964285, -0.0204341337, -0.000313871744, -0.0356731489, 0.00808573607, -0.0222457647, 0.043798849, -0.0240973588, 0.0111228824, 0.0179697834, 0.0108165033, 0.0147461444, -0.0233247504, 0.000107086882, -0.0223123692, 0.0121685667, -0.00803245325, 0.0166909844, -0.0199279431, 0.0333286859, 0.0330356285, 0.0444382466, 0.00179831032, -0.00908479746, 0.0157718472, -0.0190354474, -0.00580787612, -0.0250031743, 0.0525639467, -0.0471024103, 0.0203675292, 0.0566933975, -0.0295189302, -0.014453087, 0.0318101123, 0.0309575796, 0.0153589025, -0.00661378587, 0.00100155897, 0.00266416348, -0.0347140506, 0.0330089852, 0.00218794425, 0.0078592822, 0.0219527073, 0.0293590818, -0.0238842256, 0.00294556562, -0.0193018634, -0.0261487644, 0.00578789506, 0.00980412122, -0.0141999917, -0.00603433046, -0.0107965227, 0.0357264318, 0.000259131513, -0.0373249315, -0.0236577708, 0.00651721, 0.0192352608, 0.0287729651, -0.0054548746, -0.0179964248, 0.0153189395, 0.024124, 0.00698676845, 0.00801913161, 0.00260421983, 0.0168108717, 0.0164645296, 0.00845205877, 0.000777186418, -0.00845871866, -0.0246035494, -0.00698676845, -0.00154521479, 0.0106899561, -0.00517180748, -0.0238575842, 0.0113493362, -0.000747630897, 0.0198346972, 0.00809905678, -0.0160915479, -0.0251763444, 0.0103036519, -0.00889164582, -0.0211401377, -0.0486476235, 0.00454572914, 0.0181829166, -0.0239774715, -0.0444382466, 0.0245635863, -0.0296521392, 0.0186358243, 0.0134074027, -0.0379909724, -0.043052882, 0.00304713706, 0.0226453897, -0.00284066424, 0.00195149973, -0.00762616796, 0.0391099192, 0.00885834359, 0.0126214745, -0.00563803595, 0.0119820749, -0.000783430587, -0.00516514713, 0.0019581602, 0.0152123738, -0.0153455818, 0.0659646839, -0.00548151648, 0.0040795, 0.00679361681, -0.0504592545, 0.0370585136, -0.0138003668, -0.0257491395, -0.00530501548, 0.00893826876, -0.0196881685, 0.00995731074, -0.0103502749, 0.00739971409, 0.00580787612, -0.00492870249, -0.0178765375, -0.0283999834, 0.00490872096, -0.012774664, -0.0479283, -0.0221392, 0.000772607396, -0.00895824935, 0.00647724746, 0.00282234815, -0.00104485161, -0.0305313133, 0.0126614366, -0.0666573718, -0.00182994723, 0.0148127489, 0.0438254885, 0.00415276457, -0.0246967953, 0.0227119941, -0.00654718187, -0.0159316976, 0.0309042968, -0.00164012564, 0.00647391705, 0.00434924662, 0.019581601, 0.00905149523, -0.0427598245, 0.00116890168, -0.016491171, -0.0255759694, 0.00910477899, -0.0295722149, 0.00317868, 0.00450576656, -0.0137337623, 0.0194217525, -0.0149992406, 0.00261088018, 0.022099236, -0.0104701621, -0.0225787852, -0.024124, -0.0225121807, 0.0330889113, 0.0098773865, 0.0151990522, 0.0018882259, 0.00388301816, 0.0350870341, -0.0394296199, -0.0213133078, -0.0159316976, 0.0113027133, 0.00771941384, 0.0211134963, 0.0122751333, 0.000410655834, -0.0028822918, -0.0234846, 0.0199412629, -0.0121286046, 0.0382041037, 0.00457570096, 0.000459984469, -0.0109763537, -0.00979746133, 0.0165977385, -0.0180497076, 0.00127297058, -0.00261754054, -2.41569905e-05, -0.0395628288, 0.000935787393, -0.0142266331, 0.00529502472, 0.0201677177, 0.00402954733, 0.0254028, -0.00102403783, -0.00892494805, -0.00595107535, 0.0102437083, 0.0216330066, -0.0108165033, -0.0316236205, 0.00254427618, 0.015998302, -0.00412279274, 0.00750628067, 0.0118555278, 0.00843873806, 0.0217262525, 0.0015293964, 0.00622748211, -0.0588247292, -0.00984408427, -0.0170373246, 0.00369985704, 0.0219793487, -0.0221791603, 0.000383181643, 0.0124349827, 0.0308243707, 0.0193285067, 0.00899155159, 0.0188223142, 0.0234446377, 0.00200311793, -0.00116224133, 0.0149326362, -0.0190620888, -0.0285598319, -0.0108364848, 0.0183028039, -0.00765280938, 0.0249365699, 0.0224189349, -0.0196082424, -0.0137870461, -0.0110562788, 0.0253361948, 0.0299984813, 0.00497199502, -0.0114092799, -0.0110029951, -0.00312872697, 0.0253761578, -0.00313372235, -0.0152656566, -0.0159450192, 0.014453087, -0.00641064346, 0.00178332441, -0.00464896532, -0.0345808417, 0.0422536321, -0.00623747287, -4.82619471e-05, 0.0469958447, -0.0186624657, 0.0062241517, 0.0139868585, 0.0180630274, 0.000267457042, -0.0327159278, -0.0266682766, 0.0113426764, 0.0238043014, 0.00831219, 0.00165594416, 0.00226120884, 0.00219793478, -0.0435324311, 0.0595706962, -0.016318, 0.0331688337, 0.033941444, 0.00162513973, -0.0138936127, -0.00842541736, -0.0297853481, 0.0054681953, -0.0158917345, 0.00315203844, 0.011495865, -0.00654052151, 0.0130743822, -0.0146795409, -0.0189022403, 0.0110163158, 0.0602100939, -0.0032069867, -0.0140534621, -0.016930759, 0.0101105, -0.0123084355, 0.000123841979, 0.0288528912, -0.0101904254, -0.0126014929, 0.0128146261, -0.0259622727, 0.0130277593, -0.00448578503, 0.0230050515, 0.0203275681, -0.0320498869, -0.00999061298, 0.00632072799, 0.00655051181, -0.019981226, 0.016318, 0.000357372541, 0.0335684605, 0.0273076762, 0.00318700564, -0.0203275681, -0.00192652317, -0.0243504532, 0.0138136875, -0.00344010117, 0.0149592776, -0.00194816955, -0.0105234459, 0.0154921105, 0.00188156543, 0.0147328237, 0.000414402311, -0.0121818874, -0.0103835771, 0.0173437037, 0.025549328, -0.0178099331, 0.0183560867, -0.011049618, -0.0265617091, -0.0175301954, 0.00180996605, -0.0354866572, -0.0226453897, -0.00644727563, -0.0153189395, -0.0176500827, -0.0277073, -0.0174502712, 0.00263252645, 0.010876447, -0.00735309115, 0.0243504532, 0.00429596379, -0.00355665828, 0.00356331863, -0.00345675205, 0.00182495196, 0.00907813665, 0.0227253139, -0.0194084309, -0.0168774761, 0.0121352645, 0.00813902, -0.0319699608, 0.0179298203, 0.0332754031, -0.00997729227, 0.0149725983, 0.00801247172, -0.0233780351, 0.0209403243, -0.0228185598, -0.00122218498, 0.0062241517, -0.00201810384, 0.00398292439, -0.0162380766, -0.0129145328, -0.00782598, 0.00878507923, -0.00332021364, -0.0181029905, -0.0252695903, -0.00746631809, -0.0262819733, -0.0158384517, -0.00550482795, -0.0281069241, 6.0099781e-05, 0.0134740071, 0.0239108671, -0.0168907959, 0.0136271957, 0.00711331656, 0.00332354382, 0.00129961222, 0.013260874, 0.00419272715, -0.00621083099, 0.00624080282, 0.00438587926, -0.000960763951, 0.0103569357, 0.00852532312, -0.0372450054, -0.0114492429, 0.0170906093, 0.00179664523, 0.00154937757, 0.0146129364, -0.00240107742, 0.0291193072, 0.0232581478, -0.00534830801, -0.016970722, -0.00329190702, -0.0319699608, -0.00575459329, -0.0294123646, -0.00511852419, 0.031916678, 0.00154771248, 0.0152656566, -0.0138403289, -0.00835215207, 0.0109896744, -0.00598437712, 0.000106878746, -0.00291892421, -0.0105234459, -0.0353800915, 0.0127480226, -0.0109763537, 0.0265483893, 0.00753292209, -0.0103569357, -0.0133407982, 0.00748629915, 0.00119387824, -0.0189155601, -0.0013911929, -0.00370984757, 0.0053882706, 0.0039296411, -0.00391965033, 0.0129877971, -0.00921800546, 0.00944445934, -0.000892494747, 0.0266283136, 0.0122351712, -0.0151857315, -0.0169041175, 0.0188622773, 0.00944445934, 0.0047422112, -0.0216463283, -0.0279737171, -0.0163313225, 0.0078059989, -0.00347673334, -0.0213532709, 0.0176900458, -0.00297220726, -0.0168774761, 0.0182228778, 0.0019714809, 0.00319033582, 0.0247634, -0.0255759694, 0.0142665952, 0.0364457555, -0.0130544007, -0.0105967103, 0.0140001792, 0.00887166429, 0.0124549642, -0.0181962363, 0.0128679099, -0.0301050469, -0.0133341383, 0.00345675205, -0.00154438231, -0.00871847477, -0.0104968045, -0.00283566909, -0.00183161243, -0.0339680836, 0.022059273, 0.00936453417, 0.00378977251, -0.00997729227, 0.0132675339, -0.0167575888, 0.0194883551, -0.0227785967, 0.00535829877, 0.00448578503, -0.0333286859, -0.0110829202, 0.0078726029, -0.00817232113, -0.00280070188, 0.00261088018, -0.00438587926, -0.0172238164, -0.0227519553, -0.0191153735, -0.0136538381, -0.00604432076, 0.0179697834, 0.0237110555, -0.00832551066, -0.000842125446, 0.0125015872, 0.024576908, -0.00680693751, 0.00975083839, -0.0295722149, 0.0117423, -0.00141533685, 0.0163446423, 0.00882504135, -0.0227785967, 0.0242705289, 0.0322896615, 0.00131043536, 0.0170373246, 0.00899155159, 0.0192619022, -0.0272810347, -0.0200611502, 0.00164428842, 0.0174236298, 0.016264718, -0.0197947342, -0.00089749007, 0.00541824242, -8.01330389e-05, 0.00931791216, 0.0061475574, -0.0111095617, 0.00863189, -0.0255226865, -0.0392431282, 0.0136804795, -0.00373315904, 0.0107898619, 0.0185159352, -0.0110096559, -0.00152440101, -0.0277073, -0.012594833, 0.0142532745, 0.0288262479, -0.0201677177, -0.00299884891, -0.00617086841, 0.00993066933, -0.0254560821, 0.0152256945, -0.000802579219, 0.0109430514, 0.0174502712, 0.0298386309, -0.0223789737, 0.0303181801, 0.00883170217, -0.0402288698, 0.0333020426, -0.00206139637, -0.00350670516, -0.00376313087, -0.0139202541, 0.0198080558, 0.00567799853, -0.00124050106, -0.0192885436, 0.000180663585, 0.00909811817, 0.0169574, 0.0128812306, -0.0295722149, -0.00933123287, 0.00206639175, -0.00962429, -0.00694014598, 0.0276540164, 0.0266149938, -0.00394629221, 0.0148926741, -0.0119088106, -0.00977748, -0.00625079358, 0.0189288817, -0.0350337513, 0.00936453417, 0.000445831101, -0.0125149079, 0.0279204324, -0.010476823, 0.0230982974, -0.00196815073, -0.0133741, -0.00781265926, -0.000540325651, 0.0290660225, -0.0091181, -0.0188089944, -0.00666373875, 0.00152023823, 0.00557476189, 0.00761284726, -0.0134473648, -0.00984408427, -0.0199679043, -0.00304713706, -0.0260022357, -0.00550149754, 0.00609760405, -0.0111228824, 0.00220792554, -0.024124, -0.0123950206, 0.00853198394, -0.0176234413, 0.0128013054, -0.00764614902, 0.025416119, 0.0208470784, 0.00696678739, -0.0041194628, 0.00105733983, -0.0243904162, 0.0278405081, 0.00166676729, 0.026654955, 0.00315037323, -0.00126714271, -0.0132408924, 0.0188755989, -0.0205273796, 0.0143465204, -0.0096309511, -0.0120353587, 0.0244170576, -0.00340180378, 0.0288528912, -0.00708001433, 0.0148926741, 0.0429463163, -0.00425933115, 0.0110629387, -0.0213266294, 0.0239241887, 0.00893826876, -0.010296992, 0.0400157347, 0.000987405539, 0.00872513559, 0.0110029951, 0.0302648973, 0.0416675173, -0.0178765375, -0.0269346926, 0.0122085288, -0.0054681953, -0.000955768628, -0.0332221165, -0.000329065806, 0.0367654562, -0.000120199562, -0.0128146261, -0.00321364729, -0.0142532745, -0.00765280938, -0.0150258821, -0.0134007419, -0.00410281168, -0.0130610615, 0.00412945356, 0.00625079358, 0.0116557153, -0.00677363575, -0.00481880549, 0.0280536413, 0.0141733494, -0.027627375, 0.0210335702, -0.0255759694, -0.0128013054, 0.00804577395, -0.00809239689, 0.0206073038, -0.00983076356, -0.00217961869, 0.00452241767, 0.0220193118, 0.029439006, -0.0158517733, -0.0139069334, 0.0177832916, -0.0242438875, 0.0165844169, 0.0104368599, -0.0354333743, -0.0419605747, 0.0253228731, 0.000298885832, 0.00737973256, 0.0132875154, 0.00676031457, -0.0107698804, -0.0186358243, 0.0116224131, -0.0232847892, 0.0127813239, -0.0180896707, 0.00221125572, -0.00189655134, -0.00224455772, -0.00154105201, -0.0160649065, 0.00783930067, 0.00167842302, -0.00348006352, -0.00255759689, 0.00873179547, -0.00958432816, -0.00578456512, 0.0183694065, -0.00291392882, -0.0129278535, -0.0122351712, 0.00522842072, -0.00986406486, -0.0228718426, -0.00322696799, 0.0184093695, -0.000421895267, 0.00504525937, -0.010783202, 0.0112827327, 0.00209969375, 0.00281402259, 0.0115691302, -0.019754773, 0.011802244, -0.00847203936, 0.0180097446, 0.0043092845, 0.0214864779, -0.00562471524, -0.0089848917, -0.00759286573, 0.0141067458, 0.0027291025, 0.0301849712, 0.00481880549, 0.00908479746, -0.0228585228, -0.00890496653, 0.0221791603, -0.00731312856, -0.0307710879, 0.0128013054, 0.0181562733, 0.00614089658, -0.0310108624, -0.0100105945, -0.00939117651, -0.0117423, 0.00489207031, 0.00855862536, 0.0200877916, 0.00809239689, 0.0309309382, 0.015425506, 0.00676697539, -0.00172005058, 0.00966425333, 0.0123550585, -0.00609760405, -0.00435257703, -0.00829886924, 0.00946444087, 0.00676364498, 0.0136671588, -0.0114292614, -0.0166909844, -0.00250930898, -0.00712663727, -0.0364990383, 0.00183993788, -0.0153855439, -0.00647391705, 0.0116956774, 0.0322097354, 0.0170906093, 0.0166377015, -0.00825890712, 0.020221, 0.0139069334, -0.0137870461, -0.00776603632, -0.0274675246, 0.00390966, 0.0174502712, 0.00387968798, -0.000380683981, 0.00587781053, 0.00969089475, 0.0135073084, 0.0256425738, -0.00266915886, 0.00670370134, -0.0043992, 0.0129345134, 0.0176634043, 0.0225121807, 0.00821894407, -0.00531833619, -0.00356664881, 0.00428264262, -0.0167842302, -0.00887166429, -0.0108564664, -0.025416119, 0.0239774715, -0.00519178854, -0.00067478267, 0.01776997, -0.00949108228, -0.00497865537, -0.0126014929, -0.024124, 0.0173836667, 0.00141117407, -2.08462984e-06, 0.00273076748, -0.0245369449, -0.00774605526, 0.0103769163, 0.0190620888, 0.00207804749, -0.00310874567, 0.00386636727, -0.0160382632, 0.00467893714, 0.0108831078, 0.000283483649, -0.0209669657, 0.00678695645, 0.0216196869, -0.0242705289, -0.0181296319, 0.0125348894, 0.00186824461, -0.00832551066, 0.0115291672, -0.00680027716, 0.011802244, -0.000513267762, 0.0131476466, -0.0236178096, 0.0282401331, 0.0155453943, 0.00935121346, 0.015958339, 0.0156386402, 0.0222191233, 0.00405951915, -0.0147727868, 0.0356198661, -0.0110362973, -0.00515182596, -0.00466228602, 0.0117289796, 0.0139069334, 0.0307710879, 0.0302116144, -0.0187290683, 0.0188356359, 0.000108960121, 0.00451242691, 0.00233946857, -0.0108964285, -0.00396627327, 0.0123883598, -0.0259089898, -0.00639732229, -0.0223922934, -0.0145596536, -0.00557476189, -0.0280003585, -0.00474554114, -0.0199146215, -0.00793254655, -0.0112694111, 0.0121485852, 0.0103236334, -0.0389234275, -0.0301583298, -0.0061575477, 0.00745299738, -0.00315536861, -0.00639399234, -0.0146129364, -0.0164645296, -0.00498531573, 0.0101970853, -0.0040095658, -0.00677696569, -3.3952474e-05, 0.00895158947, 0.00227286457, 0.0020597314, 0.0191420149, 0.024044076, -0.0198346972, -0.0293057989, -0.0150525235, 0.00561472448, -0.0124549642, 0.0157984886, -0.00306212297, 0.0178099331, -0.012155246, -0.00259589427, -0.0227519553, 0.00180830096, -0.00841875654, -0.00528170401, 0.0119953956, -0.00146612246, -0.00331854867, 0.0282934159, -0.0135139693, -0.000695596449, 0.00372649869, -0.0138403289, -0.0339680836, -0.0062241517, 0.0268414468, -0.0106300125, 0.00829220843, -0.0308776554, 0.000543655828, -0.00581786688, 0.0149459569, -0.00219626981, -0.00498864613, 0.00583784841, 0.0140667828, -0.000913308526, 0.00342345, 0.0198613387, 0.0197014883, 0.0035833, -0.00243104924, 0.021659648, -0.00774605526, -0.0100372359, -0.0104368599, -0.0120953023, -0.00273243268, 0.0104435207, 0.0112494305, -0.00370318722, 0.0300251227, -0.00277406024, 0.00498198578, -0.000934954849, 0.0164112467, -0.0128412675, 0.0179831032, -0.0129611548, -0.000584034598, -0.0105301058, 0.0037731214, -0.00908479746, 0.00110895804, 0.0188889187, 0.021126816, -0.000608178554, -0.000717242772, 0.0155720357, 0.00631739758, -0.00792588666, 0.00993066933, 0.00694680633, -0.0112028075, 0.0103502749, 0.00570131, 0.000410031411, 0.00761950761, -0.0149859199, 0.0068469, -0.0252029859, -0.00955768675, 0.00108814426, -0.00279071112, -0.00564802671, 0.0091181, 0.0010465167, 0.0116290739, 0.00839877501, 0.0151990522, 0.00236777519, -0.0025043136, 0.0139735369, 0.0199279431, 0.0271078628, 0.00799915101, -0.00218627905, 0.0141999917, 0.01582513, 0.00260088965, -0.0295189302, 0.00783264078, -0.0283733401, -0.00904483534, -0.00551481824, -0.00207638228, 0.0244836621, -0.00835215207, -0.000168487531, -6.91407649e-06, 0.0122817932, -0.000614006422, 0.0076727909, -0.00285232, -0.0145063698, 0.00100488914, 0.0123950206, -0.00962429, 0.00531167584, -0.00971753616, -0.0157851689, 0.0156119978, -0.0243371334, 0.00277905562, 0.0189954862, -0.00267581921, -0.00145529932, 0.0137870461, -0.00387302763, 0.0101837646, 0.00445914362, -0.00513850525, 0.00175501767, -0.0151457693, -0.0185026154, 0.00891162641, 0.0162913594, 0.0222590864, -0.00665041804, 0.0173037425, -0.020287605, -0.0146395778, -0.00693348562, -0.0036199321, -0.0180230662, -0.00157185644, -0.0117556211, 0.00210968452, -0.0165710971, -0.0265483893, -0.012022038, -0.00801913161, -0.0128013054, 0.00786594301, 0.0110696, 0.0044991062, -0.0134873278, -0.0133074969, 0.00951106381, -0.0151191279, 0.0123084355, 0.010210406, -0.00893160794, -0.00490539102, 0.0054015913, 0.00144697377, 0.0175168756, 0.0255626477, -0.0138270082, 0.0099106878, -0.00745965773, -0.000429596344, -0.0076727909, -0.00637734123, 0.00813235901, 0.00179165, -0.025416119, -0.00675365422, -0.014319879, -0.00309875514, -0.00477884337, 0.00458902167, -0.000342386629, 0.0109696928, 0.00402954733, -0.00903817452, 0.00076719583, 0.0036066114, -0.00855862536, 0.00574127212, -0.0212067403, -0.000946610584, -0.0135206291, 0.0176767241, -0.0148260696, 0.00885834359, 0.000347590074, 0.0032286332, -0.00300051412, 0.00648390781, -0.0232315045, -0.00460900273, 0.00325693982, 0.0345275588, -0.00476885261, -0.00751294103, -0.0108897686, -0.021086853, 0.0107499, -0.0181429535, -0.0175968, 0.0215797238, 0.00849868171, -0.00829886924, -0.00713995798, 0.0213266294, 0.0193018634, -0.00219793478, -0.00049370277, 0.0217395741, -0.000518679328, 0.00539493095, 0.026921371, 0.00424601045, -0.0098973671, 0.00215131207, -1.18963744e-05, -0.0364457555, 0.0137204416, 0.0191553347, 0.0180097446, -0.0262286887, -0.00441918103, -0.01255487, 0.0171572119, -0.00523508107, -0.00498531573, 0.0185825396, -0.00212467043, -0.00265750312, -0.0115757901, 0.000431677734, -0.0170506462, -0.0148127489, -0.000450826425, -0.000932457217, -0.0265350677, -0.012594833, 0.0101571232, -0.0123084355, 0.0321564525, -0.00371650793, -0.0245369449, -0.0208337586, -0.0288262479, -0.0121352645, -0.00825224631, -0.00446913438, -0.0385238044, -0.0193418264, -0.0183294453, -0.00133124914, -0.00545154465, 0.00283067371, -0.0259089898, 0.00945778, 0.0206073038, 0.0125348894, 0.0174103081, 0.0212866664, 0.00690018339, 0.0124816056, -0.0153455818, -0.0183028039, -0.00163429778, 0.000865020556, -0.0109763537, -0.0038763578, 0.0156519599, 0.00500862719, 0.0104168793, -0.00026266987, 0.0135805728, -0.00919136405, 0.0193285067, -0.00487208879, -0.00124383136, 0.0230050515, 0.000455405447, -0.0131676281, -0.0114092799, -0.00754624279, -0.00881838147, -0.0076727909, -0.00426266156, 0.0250564571, -0.00325360964, 0.00353334681, -0.0189288817, 0.0141999917, 0.0117489612, 0.0185692199, -0.000845455623, 0.00325360964, 0.0026058848, 0.0124083413, -0.000860857836, 0.0105500873, 0.0121885482, -0.00620750105, -0.00456904, 0.0116357338, -0.00249265786, 0.0136005543, -0.0132542131, -0.0111628445, 0.00677696569, 0.0050119576, -0.00392298074, -0.0172104966, -0.0256558936, 0.00342345, -0.00761284726, 0.00197481108, -0.00490206061, -0.000407325628, 0.0035533281, 0.00756622432, -0.0012355058, -0.00633071829, -0.00574127212, 0.0062241517, 0.016224755, 0.0183560867, -0.0116024315, -0.00927794911, 0.00996397156, 0.0120819816, -0.0108564664, 0.0100572174, 0.0126747573, 0.00498864613, 0.00125964975, -0.0106832953, 0.00883170217, 0.000848369556, -0.0036066114, 0.00414943462, -0.00176667341, 0.00906481594, -0.0156119978, -0.00955102593, 0.0098773865, 0.0157984886, 0.00961763, -0.00579788582, 0.0110562788, -0.0184226912, 0.00887166429, -0.0176367629, 0.0147461444, 0.00405951915, 0.00244437, -0.0124083413, -0.019315185, -0.00191653264, 0.000337391335, 0.0118488669, 0.0135006486, -0.0120686609, -0.0123217562, 0.0281335656, -0.0128146261, 0.0167442672, 0.00580454618, 0.0144264456, 0.0021946046, -0.0132075902, 0.0193285067, 0.00620084, -0.00682691904, -0.00690684374, 0.00490206061, 0.0158784147, -0.0114292614, 0.0313039199, -0.00221958128, -0.000372566603, -0.00435590744, -0.00305546238, -0.0109763537, 0.0124416435, 0.0189688448, 0.0289328154, 0.00639399234, -0.0144397663, 0.00273243268, 0.0167575888, 0.0010290331, -0.0129744764, -0.0107365791, 0.00555145042, -0.00796584878, -0.00175501767, -0.0402555093, -0.021260025, -0.00170506467, 0.00214298652, -0.000358829508, -0.0118089048, -0.00849868171, 0.0177300069, 0.0164112467, -0.00644727563, 0.0232847892, 0.00512518454, 0.0147861075, -0.0209003631, 0.00896491, -0.0411613248, -0.00401289621, 0.00468559749, -0.0127546825, 0.00862522889, 0.0160649065, -0.0194350723, 0.0121219438, 0.00743967667, 0.0037398194, 0.0138403289, 0.0444382466, -0.00457903091, 0.0173170622, 0.0178365745, -0.00441252068, -0.0119687542, -0.0335151777, -0.0187956728, 0.0214065537, 0.0301316883, -0.0221525189, -0.0165577754, 0.0105767287, -0.013260874, 0.0198213756, 0.00967091322, -0.00784596149, -0.000235820087, 0.00556144118, -0.0323695876, 0.020287605, -0.000352793519, -0.013174288, 0.00690684374, 0.0311440714, 0.0122085288, 0.00176667341, 0.00552813942, 0.0108165033, 0.0110429572, -0.00343677076, -0.000917471305, 0.0106033701, 0.0230583344, -0.00350670516, -0.023298109, -0.0119687542, -0.0132941753, -0.0146662202, -0.0124483034, 0.0333020426, 0.00821228418, 0.0111295432, 0.015998302, -0.0141866701, -0.0262553301, 2.99458225e-05, -0.00406951, 0.021526441, -0.0110895801, 0.00693348562, -0.00637068087, 0.0155720357, 0.0146262571, -0.0129145328, 0.0117023382, 0.0180497076, -0.000425641745, -0.00555145042, -0.00660046516, 0.0125815123, 0.0380975381, -0.0156386402, -0.0376979113, 0.00642729457, -0.0221258774, -0.00682025868, -0.00300883967, -0.0120819816, 0.00627410505, -0.00309875514, -0.0352468826, -0.0109763537, -0.010163784, 0.0210602116, -0.00655717216, 0.0207538325, -0.00919136405, 0.0306645222, 0.00417940645, -0.00857860595, 0.000763033051, 0.00490872096, 0.0117556211, 0.0177033655, -0.00775271561, 0.00459235162, -0.00113226951, 0.00205640122, -0.0188089944, -0.00319366599, -0.00493203243, 0.00260421983, 0.00971087627, -0.0133074969, -0.00836547371, 0.000344468019, -0.00129461696, -0.00151274528, -0.0235245638, 0.00321864244, -0.015425506, -0.00262586609, 0.0130144386, 0.0104302, -0.012241831, -0.0054448843, -0.00862522889, 0.020993609, 0.00582785765, -0.00791256502, -0.00309042959, 0.00696678739, 0.000844623079, -1.90446062e-05, 0.0208870415, 0.00993733, 0.0128545891, 0.0146395778, -0.022325689, 0.00294390065, 0.00205307105, 0.0016143166, 0.00442251144, 0.019315185, 0.00220293016, 0.0184093695, 0.0112361098, -0.014319879, 0.0034634124, 0.00355998846, 0.00415942539, -0.00801913161, -0.0104568414, 0.000208137775, 0.00249099289, -0.0196482055, -0.0146795409, 0.0445714556, 0.00115391577, 0.0131409867, -0.0144664077, 0.0157718472, -0.00129877974, -0.0054015913, -0.0119887358, -0.0243504532, 0.0126281353, 0.0285864733, -0.00151191279, 0.016264718, 0.00322696799, 0.00941781793, -0.00281069241, -0.021260025, -0.00881838147, -2.23878196e-05, -0.00262586609, 0.0186225027, 0.00601434894, -0.0040628491, -0.00373315904, -0.00832551066, -0.00821894407, 0.00228452, -0.000110104884, 0.00496533467, 0.00704671256, -0.016397927, -0.0193418264, -0.00634403946, 0.0103169726, -0.016664343, -0.0134074027, 0.0315703377, 0.0039296411, -0.00217295834, 0.00914474111, -0.00747963879, -0.0239774715, 0.0131809488, -0.0155720357, 0.0106233517, 0.0158784147, -0.00863189, -0.0206206255, -0.00176500832, 0.0140401414, 0.00660046516, -0.00136205356, -0.013394082, 0.00325693982, 0.00571796065, 0.000411488378, 0.00110063248, -0.0249498915, 0.00211467966, 0.0168241914, -0.0136538381, 0.0116090924, -0.00435923738, 0.00763948867, -0.0120087164, 0.000860025291, -0.00788592361, -0.0140801035, 0.00143032277, -0.00632072799, 0.00271245139, 0.0213266294, -0.00715327868, -0.0047555319, -0.00534830801, 0.0132875154, 0.000924964261, -0.0135872336, -0.019008806, 0.0156786013, -0.000470391358, 0.00510520302, -0.00777269714, 0.0120420186, 0.00522842072, -0.0188089944, -0.00477218302, 0.00630740682, 0.0201277547, 0.0112827327, -0.0153322611, 0.00433925632, 0.0146662202, -0.00229451084, -0.00750628067, 0.0210202504, -0.0093978364, 0.00364990393, -0.00100905192, -0.00145363424, 0.00849868171, 0.0272810347, -0.0113892984, 0.0292258728, -0.00578456512, -0.00977748, 0.00889164582, -0.00227619475, 0.000306586939, 0.000925796805, -0.00689352304, -0.00739971409, -0.00824558549, -0.000544072129, 0.0265217479, 0.0015460474, 0.000414402311, 0.0256692152, 0.00380309345, 0.0108431457, 0.00328191626, -0.0172504578, -0.00295555638, 0.023071656, 0.0305845961, -0.00529835513, -0.0181962363, -0.000338015729, -0.0125815123, 0.0163313225, -0.0100039337, 0.0221924819, -0.0185558982, 0.00112061377, 0.00137454178, -0.00937785581, 0.00422269898, -0.00470224861, 0.020554021, 0.0199279431, 0.00767945126, 0.00133041665, -0.00258923392, 0.00391965033, 0.00416275533, -0.00114059495, -0.00157352153, 0.00273076748, 0.00161931186, -0.00609427411, -0.00935121346, -0.0036532341, 0.0119754151, -0.00203975, 0.00723986421, 0.0152656566, 0.00343677076, 0.0115225073, -0.0197014883, -0.00840543583, 0.00208137766, -0.00289894291, -0.00971753616, -0.0189688448, -0.0176234413, -0.00256758765, -0.0101571232, -0.01091641, 0.00958432816, -0.00655717216, 0.01874239, -0.00988404639, -0.0195549596, 0.010743239, -0.0192352608, 0.00534164766, 0.00430595409, -0.00254760636, -0.023870904, 0.00603433046, 0.00137121161, -0.00292391935, -0.00781932, -0.00117389706, -0.0138270082, 0.000755540095, 0.0165577754, 0.0281868502, 0.00305046723, -0.0217129327, 0.008884985, -0.0124016805, 0.00535496837, 0.00658714399, -0.0109763537, 0.0109030893, 0.00430262415, 0.0021613026, -0.0512052216, 0.0121419253, 0.00395295257, 0.0149725983, -0.0145063698, 0.0356465057, -0.0101371417, -0.00645060558, 0.0293324403, 0.00801247172, -0.00555478083, 0.0217662156, -0.0285331905, 0.0224322565, 0.0129544949, -0.00266416348, 0.00415276457, 0.00211967505, 0.0263086148, -0.0147994282, 0.00419272715, -0.00665374845, 0.0299984813, 0.00367987575, 0.016397927, 0.00516181672, -0.00342345, -0.0221125577, 0.0123950206, -0.0142399538, 0.00637068087, 0.0107365791, 0.0144264456, -0.022365652, -0.0198080558, -0.00951106381, -0.0194750354, -0.00561472448, 0.00133291434, -0.0168641545, -0.0246967953, 0.00299052359, -0.0360461324, -0.0181562733, -0.0173437037, 0.0189288817, 0.00275407895, 0.0067236824, -0.00443583215, 0.0116224131, -0.00952438451, 0.024124, -0.0167709086, -0.00832551066, -0.0180230662, -0.0123950206, -5.02132389e-05, -0.0168641545, 0.0165710971, -0.000187219921, -0.0220326316, -0.0180097446, -0.0132009303, 0.0027823858, 0.0209003631, 0.0057779043, -0.0169174373, 0.0284799077, 0.0164378881, 0.0375114232, -0.0136538381, 0.00278904615, -0.00549483718, 0.00352335628, -0.000757205184, 0.00517180748, -0.0137870461, -0.00336683658, -0.0167043041, 0.00856528524, 0.0200078674, -0.00749962032, 0.0199545845, 0.0327159278, 0.008159, -0.00251263916, 0.00264917756, -0.00459568202, 0.0028489898, 0.00966425333, 0.00759286573, -0.0228851642, -0.0153189395, 0.0019215279, 0.011316034, 0.0207138713, 0.0191153735, 0.0122018689, 0.00721988315, 0.00344676152, 0.0218194984, 0.0127946446, -0.00614089658, -0.022765277, 0.0258024223, -0.0159716606, 0.00796584878, 0.017237138, -0.0271211844, 0.019048769, 0.00136288616, -0.00652054, -0.00550149754, -0.00155021, 0.0174103081, 0.0119620943, -0.00881838147, 0.00485876808, -0.0136671588, 0.00778601784, -0.00383306528, -0.0260288771, -0.00955768675, 0.00508855237, 0.0181562733, 0.00338681787, 0.00375314034, -0.00821894407, -0.0212467033, -0.0176900458, 0.0104701621, 0.0100638773, -0.00579455541, -0.015292298, 0.00250264863, -0.0357264318, -0.0052151, 0.00661711581, 0.00371317775, -0.00271078642, -0.00847203936, 0.000219585345, 0.00811237749, -0.00505192, -0.00436256779, 0.00518845813, -0.00443583215, -0.00630740682, -0.0145196905, -0.0154388277, 0.0116956774, -0.0087984, 0.00121385953, -0.00296221673, -0.0129145328, 0.000663959479, 0.0110229766, -0.008618569, 0.017237138, -0.0117289796, 0.0107165975, 0.00481880549, 0.00595440529, -0.0129544949, 0.016970722, -0.0130277593, -0.00304880203, 0.00122967793, -0.00418273686, -0.0190221276, -0.00121302693, 0.00622082176, 0.0125348894, 0.0173303839, -0.00445248326, -0.00124299875, -0.000485793571, -0.0115491487, 0.0123150954, 0.00302715576, -0.00867185183, -0.00231782231, -0.0151857315, 0.0211934205, -0.0109030893, -0.0224189349, 0.00879173912, -0.00421603862, -0.00714661833, -0.0021613026, 0.0393763371, 0.0254560821, -0.0153455818, -0.00273909303, 0.00210135896, 0.0157851689, -0.00211634487, 0.0323429443, -0.00566134742, 0.00464563491, -0.0113892984, 0.000827139476, 0.00712663727, 0.00194650446, 0.0052151, 0.00199812255, -0.0150525235, 0.0183694065, 0.0172771, -0.013127665, -0.0217129327, -0.019275222, 0.0269480143, -0.0109763537, 0.00485543814, -0.00824558549, -0.0149592776, 0.0085186623, -0.0135406107, 0.0119287921, 0.0149725983, -0.00884502288, 0.016397927, 0.00340346876, 0.00104401901, 0.00220459537, 0.00534497807, 0.0235378835, -0.0178898573, -0.0227386355, -0.00822560489, -0.00151940575, 0.0107765412, -0.0179964248, -0.00352002587, 0.0222857278, 0.0038630371, 0.0161315091, -0.00329690217, 0.00839877501, 0.000185242621, 0.0180896707, -0.00536495913, -0.00457903091, -0.00208470784, 0.0235112421, 0.0349005423, -0.00789258443, 0.0101371417, -0.0110163158, -0.00199479237, -0.00349338423, 0.00101654488, -0.00812569819, 0.0156786013, -0.0112960534, -0.00107482343, 0.0237643383, 0.00535496837, 0.0285331905, -0.000236028238, -0.0129744764, 0.0116024315, -0.017197175, 0.0122085288, -0.00217129313, 0.00731312856, -0.00717326, 0.0272810347, -0.00523175113, 0.00262087071, 0.00347673334, -0.0293057989, 0.00365656428, 0.00660712551, 0.0025376156, -0.0350337513, 0.0136671588, -0.020820437, -0.00602100929, -0.0182228778, -0.0208337586, 0.00845205877, 0.015998302, 0.000926629349, -0.0089982124, -0.00750628067, -0.014719503, -0.0147861075, -0.00418273686, 0.015292298, -0.0337016694, -0.000250806, -0.00191653264, -0.0314637721, -0.0141733494, 0.0202076808, -0.0265350677, -0.0121086231, -0.00813902, 0.0231382605, 0.0102437083, -0.00857860595, 0.00503859902, -0.0117356405, -0.0146129364, 0.00814568, -0.0181695949, 0.00613756664, -0.0140268207, -0.0197814144, 0.016930759, 0.00167759042, 0.00447912468, -0.00594774494, -0.00975749828, -0.02722775, 0.014413124, 0.0019914622, -0.000649389869, -0.00759286573, -0.00905815605, 0.00055489532, -0.00316036399, 0.0114492429, -0.0078059989, 0.00462565385, 0.0169574, 5.95274032e-05, -0.00378977251, 0.00176167814, -0.000800914131, 0.0105833896, -0.00821894407, -0.000981577672, -0.000734726316, -0.0216729697, -0.0207138713, -0.00217462331, -0.00690018339, -0.00825224631, -0.00500862719, -0.02183282, -0.0254427604, -0.00418939721, -0.0180497076, -0.0236577708, 0.0193684679, -0.00799249, -0.00765946973, -0.0172904208, 0.00542157283, -0.0142932367, 0.0184626523, 0.00389300892, 0.00927128922, -0.0321830958, -0.0249632113, 0.00943113863, 0.00412279274, 0.0203142464, -0.0138669712, 0.00417607604, -0.0247767195, 0.00331022311, -0.0151990522, -0.00285565015, -0.00144447607, -0.0028156878, -0.00421936903, 0.000681859325, -0.00981078204, 0.00160016317, 0.059410844, 0.0386037268, -0.00874511618, -0.0346341245, 0.00627743499, -0.0255226865, -0.0357797146, 0.0313039199, -0.024044076, 0.00817232113, -0.0216862913, -0.0154921105, 0.0188889187, -0.0107099367, -0.0270012971, -0.014279916, -0.00252929027, 0.014319879, 0.0140801035, -0.0142532745, -0.0171438921, -0.0142665952, 0.00133124914, 0.00187490508, 0.023031693, 0.0105301058, -0.0102303876, -0.0121685667, -0.00997063145, 0.0260022357, -0.00886500347, 0.00765946973, -0.000408990716, 0.00737973256, -0.0184626523, 0.021526441, -0.0101970853, 0.0170906093, -0.00550482795, -0.000852532336, 0.0028822918, 0.0249498915, 0.0202609636, 0.0165577754, -0.00251430436, 0.0111495238, 0.0224322565, 0.0131609673, -0.00558142224, -0.0123284161, 0.0265883505, 0.00176001294, 0.00713329762, -0.0043758885, 0.00288062682, 0.000421687117, -0.00320199155, 0.00727982679, -0.00303048594, 0.0307444464, -0.00217795372, 0.0034634124, 0.010163784, 0.00124466384, -0.000360286474, -0.00688686268, -0.0243238118, 0.0135938944, -0.0205140579, -0.00973085687, 0.0115957716, -0.0105034644, -0.000623997, 0.00232448266, 0.0105434265, 0.00474887155, 0.00517846784, 0.00586782023, 0.00270745601, -0.0210335702, -0.0143598411, 0.0121152829, -0.00273742806, -0.0352468826, -0.000112394395, -0.0120553393, -0.0110429572, -0.0171172507, -0.00374981016, 0.0299185552, 0.00401289621, 0.0119221313, 0.0191686563, 0.0111695053, 0.00853198394, -0.00356997899, -0.008884985, 0.00175335258, 0.00391632039, 0.0115158465, 0.00665374845, -0.00612091552, 0.00390966, 0.000363824831, -0.000845039322, 0.0169440787, 0.00348006352, 0.00771275302, 0.0270545799, 0.00334019493, 0.0189288817, 0.000808823388, 0.0321564525, 0.0219660271, 0.00741969515, 0.000130918663, 0.021526441, 0.0147994282, 0.00730646821, -0.00776603632, 0.0193551481, 0.00312040141, -0.0130210994, -0.0116956774, 0.00715327868, 0.0108165033, 0.0184093695, 0.00320032635, 0.0167043041, 0.00891162641, 0.00194483937, -0.0197947342, 0.0037731214, 0.0057779043, 0.0181296319, 0.0130677214, -0.0231249388, -0.00654385146, -0.00776603632, 0.00262420112, -0.0116823567, 0.0149059948, 0.0302648973, 0.0205140579, -0.0153322611, 0.0120087164, -0.00175501767, 0.00782598, 0.0234313179, 0.00851200242, -0.00629075617, 0.0151191279, 0.00713995798, 0.000830469711, 0.00336017623, 0.00589113124, 0.00528836437, -0.0164778512, 0.0103502749, -0.0224855393, -0.0118488669, 0.00550815789, 0.0270812213, -0.00765280938, 0.0132408924, -0.0321830958, 0.00784596149, -0.00715327868, 0.0186225027, 0.00708667468, -0.00897157, -0.00572462147, -0.00600768859, 0.00575126288, -0.0103236334, -0.000472472748, -0.0172238164, 0.0188223142, 0.0076727909, 0.00401622662, -0.0180230662, -0.00712663727, -0.00146195968, 0.0366056077, -0.026654955, -0.0242438875, -0.0147061823, -0.00085336488, 0.0191286933, 0.0029155938, 0.014279916, 0.00979746133, -0.0181029905, -0.010077198, -0.021126816, -0.0158650931, 0.00439253962, -0.00054448843, -0.0256026108, 0.00966425333, 0.0098973671, 0.0144797284, 0.0172104966, 0.00908479746, -0.00389300892, 0.0247367583, 0.00254594116, -0.0117756026, 0.0103236334, -0.0224855393, 0.00292724953]
|
11 Jan, 2023
|
Min and Max in a List in Java
11 Jan, 2023
Try it on GfG Practice
Given an unsorted list of integers, find maximum and minimum values in it.
Input : list = [10, 4, 3, 2, 1, 20]
Output : max = 20, min = 1
Input : list = [10, 400, 3, 2, 1, -1]
Output : max = 400, min = -1
Sorting
This is least efficient approach but will get the work done. The idea is to sort the list in natural order, then the first or last element would be the minimum and maximum element respectively. Below’s the implementation in Java.
Implementation:
JAVA
// This java program find minimum and maximum value
// of an unsorted list of Integer by using Collection
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class GFG {
// function to find minimum value in an unsorted
// list in Java using Collection
public static Integer findMin(List<Integer> list)
{
// check list is empty or not
if (list == null || list.size() == 0) {
return Integer.MAX_VALUE;
}
// create a new list to avoid modification
// in the original list
List<Integer> sortedlist = new ArrayList<>(list);
// sort list in natural order
Collections.sort(sortedlist);
// first element in the sorted list
// would be minimum
return sortedlist.get(0);
}
// function return maximum value in an unsorted
// list in Java using Collection
public static Integer findMax(List<Integer> list)
{
// check list is empty or not
if (list == null || list.size() == 0) {
return Integer.MIN_VALUE;
}
// create a new list to avoid modification
// in the original list
List<Integer> sortedlist = new ArrayList<>(list);
// sort list in natural order
Collections.sort(sortedlist);
// last element in the sorted list would be maximum
return sortedlist.get(sortedlist.size() - 1);
}
public static void main(String[] args)
{
// create an ArrayList Object list
List<Integer> list = new ArrayList<>();
// add element in ArrayList object list
list.add(44);
list.add(11);
list.add(22);
list.add(33);
// print min and max value of ArrayList
System.out.println("Min: " + findMin(list));
System.out.println("Max: " + findMax(list));
}
}
Output
Min: 11
Max: 44
Collections.max()
Collections.min() method return the minimum element in the specified collection and Collections.max () returns the maximum element in the specified collection, according to the natural ordering of its elements.
Implementation:
JAVA
// This java program find minimum and maximum value
// of an unsorted list of Integer by using Collection
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class GFG {
// function to find minimum value in an unsorted
// list in Java using Collection
public static Integer findMin(List<Integer> list)
{
// check list is empty or not
if (list == null || list.size() == 0) {
return Integer.MAX_VALUE;
}
// return minimum value of the ArrayList
return Collections.min(list);
}
// function return maximum value in an unsorted
// list in Java using Collection
public static Integer findMax(List<Integer> list)
{
// check list is empty or not
if (list == null || list.size() == 0) {
return Integer.MIN_VALUE;
}
// return maximum value of the ArrayList
return Collections.max(list);
}
public static void main(String[] args)
{
// create an ArrayList Object list
List<Integer> list = new ArrayList<>();
// add element in ArrayList object list
list.add(44);
list.add(11);
list.add(22);
list.add(33);
// print min and max value of ArrayList
System.out.println("Min: " + findMin(list));
System.out.println("Max: " + findMax(list));
}
}
Output
Min: 11
Max: 44
Naive
Here is naive way of finding find minimum and maximum value in an unsorted list where we check against all values present in the list and maintain minimum & maximum value found so far.
Implementation:
JAVA
// This java program find minimum and maximum value
// of an unsorted list of Integer
import java.util.ArrayList;
import java.util.List;
public class GFG {
// Naive function to find minimum value in an
// unsorted list in Java
public static Integer findMin(List<Integer> list)
{
// initialize min to some maximum value
Integer min = Integer.MAX_VALUE;
// loop through every element in the list and
// compare min found so far with current value
for (Integer i : list) {
// update min if found to be more than
// the current element
if (min > i) {
min = i;
}
}
return min;
}
// This function return maximum value in an
// unsorted list in Java
public static Integer findMax(List<Integer> list)
{
// initialize max variable to minimum value
Integer max = Integer.MIN_VALUE;
// loop for compare to current max value
// with all list element and find maximum value
for (Integer i : list) {
// update max if found to be less than
// the current element
if (max < i) {
max = i;
}
}
return max;
}
public static void main(String[] args)
{
// create an ArrayList Object list
List<Integer> list = new ArrayList<>();
// add element in ArrayList object list
list.add(44);
list.add(11);
list.add(22);
list.add(33);
// print min and max value of ArrayList
System.out.println("Min: " + findMin(list));
System.out.println("Max: " + findMax(list));
}
}
Output
Min: 11
Max: 44
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java
|
https://www.geeksforgeeks.org/min-and-max-in-a-list-in-java/?ref=next_article
|
Pandas
|
Min and Max in a List in Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Initializing a List in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00649147946, 0.0272773281, -0.00316377659, 0.0213759821, -0.00829466805, 0.0144910803, -0.0124059385, 0.0274871532, -0.0133239254, 0.0243266542, -0.0229103323, -0.00776354689, 0.0382144861, -0.0143205971, 0.00636689551, 0.0232906416, -0.0110551864, 0.0141501138, -0.0228709895, -0.0220972579, -0.0110289576, 0.0106683206, -0.0209563319, 0.0495450683, -0.00407520635, 0.0401816033, -0.00493418, 0.0133370394, -0.0136648919, -0.00814385619, 0.0253364407, 0.00857006386, -0.00486860937, -0.000353056152, 0.0373227261, 0.0462665446, -0.00158270786, -0.017074557, -0.0429617912, 0.0299001466, 0.00369489752, -0.00157123304, 0.0158680603, 0.00276707509, -0.00982901733, -0.0108453603, -0.00381620298, 0.000609805633, -0.015251698, -0.0253626686, -0.00738323806, 0.0033572095, 0.017520437, 0.0358539484, -0.0351720154, 0.0173630677, -0.036614567, 0.0252315272, -0.0284575969, -0.0422011726, 0.0484434851, -0.0340179764, -0.00626853947, -0.0181499142, 0.0321295448, -0.0136780059, -0.0508040227, 0.0315787531, 0.00236709509, 0.0295329522, -0.0319459476, 0.0274084676, -0.00759306364, -0.0367981642, -0.035040874, 0.00409159902, 0.00525219692, -0.0167467054, -0.0558136068, 0.0186744779, 0.0168253891, -0.0516695529, 0.0225955937, -0.0238283183, -0.00174745382, -0.034804821, -0.0163270533, -0.0478402376, 0.000157164293, 0.00180810655, -0.000487680576, 0.0188449621, 0.00969131943, 0.0441682898, 0.0209169891, 0.0409684479, 0.00957984943, -0.00362932705, -0.0181761421, 0.0365358815, 0.00542923715, 0.00809795689, 0.0147140203, -0.0335196406, 0.0340704322, -0.0227923058, -0.00348179345, 0.00553415, 0.0598527528, 0.0225037951, 0.00392767275, -0.00837991, -0.0197367202, -0.00219497248, -0.0039506224, -0.00611444889, -0.00262118061, -0.0392636135, -0.0183859672, 0.00952083617, 0.0115076229, 0.0315262973, 0.00125649467, 0.00116223714, -0.0669343621, 0.043906007, 0.00154090673, 0.0148320468, 0.00264085177, -0.0108781457, 0.0221628286, 0.00982901733, 0.00238840538, -0.0531907901, -0.00130485289, -0.0147271343, 0.0110879717, 0.0313427, -0.0131599987, 0.0306083094, -0.00216382649, -0.0459255762, -0.0187662765, -0.00892414525, -0.0525613129, 0.00610461365, 0.0189629886, 0.0623182021, -0.0559185222, 0.00784223154, -0.0226349365, -0.00589150935, 0.0190679, -0.0042555253, 0.0266609639, -0.0306345373, 0.0241692867, -0.0253626686, -0.0177827198, -0.0088454606, 0.0399455465, 0.00183269545, -0.00255233166, -0.0397619493, -0.017061444, 0.004153891, 0.00455714948, -0.0113764815, -0.0634722412, 0.0361949168, 0.0223333128, 0.0108781457, 0.0121174278, 0.0222021714, -0.00799960084, -0.0182941686, 0.0273297839, 0.00286051305, 0.0125829782, -0.0269363616, 0.0212710705, -0.0191990416, 0.0391587019, 0.00194416533, -0.0377948359, -0.0313164704, 0.0252970979, -0.0382407159, -0.0136780059, -0.00996671617, -0.0164844226, -0.0121305427, 0.00169171882, 0.00542923715, 0.0343851708, 0.0080389427, -0.0201039147, -0.00342278, -0.0505679697, 0.0400242321, -0.00868153386, -0.0054521868, 0.0164188538, 0.0379784331, 0.00864874851, -0.0326541066, -0.00760617806, -0.0264642537, 0.0234086681, -0.00738979504, -0.0479976051, 0.006825889, -0.0462403148, 0.00874710456, 0.0271986425, 0.0148451608, 0.0142025696, 0.057334844, -0.0713407, -0.0233955532, -0.00542923715, 0.027539609, 0.0705538541, 0.00493745878, -0.047079619, -0.045741979, -0.0263199974, 0.0104191527, 0.00963230617, -0.014137, -0.0119666159, 0.0137829185, -0.00600625761, -0.00761929201, 0.0113568101, -0.00255888863, -0.0199858882, 0.0138484892, 0.00533088157, 0.0401029177, 0.00942248106, 0.0261101723, -0.0387915075, 0.00558660645, -0.00490795169, -0.0188580751, -0.0289297048, -0.00940281, 0.0312377848, 0.00458337786, -0.0169303026, -0.0391324721, -0.0233299825, -0.00408176333, -0.0245364811, 0.00693735853, 0.0103994813, 0.0104716085, 0.00450797193, 0.0251003876, 0.0016097558, 0.0387652777, 0.0274871532, 0.0227398481, 0.0278018918, 0.0258741193, 0.0340179764, -0.00756027829, 0.00127042842, 0.0283789113, -0.00836023875, 0.0169171896, -0.006602949, 0.0228054188, 0.0340704322, -0.0316049792, -0.0378210619, -0.0335720964, 0.0581216887, 0.0106420917, 0.00784223154, -0.00259003462, 0.0240381453, 0.00610789191, 0.00390800182, -0.0242086276, -0.00679966062, -0.0319197178, -0.0362998284, -0.0263199974, -0.0100454008, 0.0118944887, 0.0019851469, 0.00289329817, 0.0278543476, 0.0114289382, -0.0340704322, 0.00778321829, -0.0451649576, 0.0149107315, 0.00331950653, -0.0414930098, 0.0273560118, -0.0392636135, 0.000705292681, 0.00175073231, 0.00646853, -0.0311066452, 0.00277363206, -0.0199072026, -0.0108060185, -0.0442994274, -0.0299526043, -0.0245233662, -0.036378514, 0.00297690067, 0.0711308792, 0.0158680603, 0.00733733876, 0.00253102113, 0.00438994495, -0.0556562394, 0.0312902406, 0.0404963382, -0.0195924658, -0.0429880172, -0.046319, -0.0166417919, -0.0155008659, -0.0397619493, -0.0125370789, -0.00620624749, -0.0244446825, -0.0107338903, 0.025952803, -0.0448502228, -0.0214677807, -0.0214546677, -0.0351457857, 0.0126616629, -0.0193432979, 0.0194219816, 0.0237496346, 0.0271461867, -0.00397029379, -0.0549218506, 0.00180646719, 0.00010634715, 0.0414930098, -0.00215890864, 0.00122043095, -0.0182810556, -0.00118190818, -0.0190416723, 0.0221103728, -0.0274609253, 0.0125895357, -0.00695703, 0.00918642711, 0.0300575159, 0.000361662271, 0.00252118567, -0.0365883373, 0.0203006268, 0.0171794705, -0.0141894557, 0.00500958599, 0.022989016, -5.07915247e-05, 0.0126419924, 0.00917331316, -0.0274609253, 0.0160647724, 0.0218743179, 0.0087995613, -0.0100650713, 0.000683982274, 0.0226611644, 0.0102617834, -0.0131993415, -0.0149369594, 0.0264380258, -0.0108847031, 0.0136648919, -0.0134944087, -0.00357687077, -0.0369030759, -0.00558988517, -0.0135862073, 0.0268839039, 0.012510851, 0.0518006943, -0.0210612435, -0.00505876401, -0.00215563015, 0.0235398095, 0.00114010705, 0.010006058, -0.0080586141, -0.0163139403, -0.00421618298, 0.00415716972, 0.0103142392, -0.0229496751, -0.0277494341, 0.00363916275, 0.00969131943, 0.0361162312, 0.0354605243, 0.00637673121, 0.0265298244, 0.000694227638, -0.0550267622, -0.00347851496, -0.0103142392, -0.00689145923, -0.00428831065, 0.0122092273, 0.0107863471, 0.0070553855, -0.0137698045, 0.0155270938, -0.0113043543, 0.0124059385, -0.0311066452, 0.0176909212, -0.00592757296, 0.0289821606, 0.00369817624, -0.002873627, -0.0604822263, 0.0292706713, -0.0310804155, 0.0251790714, -0.000104451756, -0.0115010655, 0.0417290665, 0.0173368398, -0.0476566367, -0.0588036217, 0.00969131943, 0.0681933165, 0.0203399695, 0.0176515784, -0.0238020904, 0.0123534817, -0.0376636945, 0.00360965589, -0.0088454606, 0.0144386236, -0.038503, -0.0436437242, 0.0149107315, -0.0382931717, 0.0526137687, -0.00897004455, 0.0519580618, -0.0186089072, 0.00668163365, 0.029349355, 0.0221366, -0.00249331817, -0.0100585148, -0.0171401277, 0.0104453806, -0.0119600594, 0.00710784225, 0.00759306364, -0.0289297048, 0.0179532021, -0.0328901634, -0.0205497947, 0.00613084156, -0.000289944554, 0.0440896042, 0.000681113568, -0.00914052781, 0.0247200783, 0.00790780224, -0.0222284, 0.0285100527, 0.0398406349, 0.00515056262, -0.00540300924, 0.015461524, -0.0345425382, 0.0261101723, 0.0072324262, -0.0313164704, 0.00124010211, -0.0237365197, 0.016379511, -0.00935035292, -0.0101699848, -0.0200908016, 0.017966317, -0.0302411132, -0.00291460869, -0.017061444, 0.0431978442, 0.0252315272, -0.0391324721, -0.0301624294, 0.0262150858, -0.000787665602, -0.0230283588, 0.00610461365, 0.0111535415, -0.00314738392, -0.0274871532, -0.0214415528, 0.0146877915, 0.00553415, -0.0181630272, -0.00153025147, 0.0126747778, 0.0174679812, 0.00572758308, -0.00667507667, -0.0281428583, -0.0135730933, 0.0319984034, -0.00346540078, -5.60935114e-05, -0.0126682203, -0.00645541539, 0.0270150453, -0.0376636945, -0.00757339271, -0.00221136515, -0.021389097, 0.00898315851, -0.000481123541, -0.0107273338, -0.00174417521, -0.0513548143, -0.0365358815, -0.00527514657, 0.00341622299, 0.0273297839, 0.00250643236, 0.0041637267, -0.00464567, -0.0164581947, -0.0130026303, 0.0109502729, 0.0272773281, 0.00992081687, 0.0111273136, -0.00374735403, 0.0101568699, 0.0346212238, -0.00597347226, 0.00565217715, -0.0376374647, 0.0501483157, -0.0121239852, -0.0440371484, -0.00363916275, -0.0296903215, -0.00326213241, 0.00284739886, -0.00486205239, 0.00775043294, 0.0396832675, 0.000120485791, 4.86143763e-05, 0.0105175078, -0.0379259773, -0.00562594878, -0.00119010452, 0.00289329817, 0.00777010387, 0.0182154849, 0.0178220607, 0.0209956728, -0.00928478222, 0.00241955137, -0.00889136, 0.0183859672, -0.0175335519, -0.0261495151, 0.0342015736, -0.0513810441, -0.00429814635, -0.0122026699, -0.0311066452, -0.00847170874, -0.0113043543, 0.014110771, 0.00341950147, 0.0296640936, 0.00512433425, 0.0114027094, -0.0273297839, -0.00945526548, -0.00869464781, -0.0198285189, 0.000316582562, -0.00398996472, 0.0113764815, -0.0139665166, 0.00439978065, -0.0301624294, -0.0166417919, 0.0110945283, 0.0186744779, 0.0255987234, -0.010130642, -0.0247725341, 0.0179532021, -0.0346474499, 0.00250971084, -0.0110420724, 0.0079471441, -0.000645459571, -0.014556651, -0.0133698247, 0.00211792719, -0.0228972174, -0.00351785729, -0.0444305688, -0.0125305224, 0.0435388125, -0.00591118028, 0.0253233258, 0.000624968787, -0.0237234067, -0.00634066714, -0.0265560523, -0.019776063, -0.0534793, -0.0164844226, -0.00146795949, -0.0114092669, 0.00200973568, -0.0085110506, 0.011146985, -0.00814385619, 0.0273822397, -0.0196318068, 0.00350146461, -0.0196055789, 0.0929527357, -0.0129370596, 0.0135337505, -0.0255724937, 0.00976344757, 0.00977000408, -0.00145812391, 0.00242446922, 0.0258216616, 0.0364047401, 0.0163663961, -0.0221366, -0.00246381154, 0.0203793105, -0.00842580944, 0.0103994813, 0.0327065662, 0.0364309698, -0.0044227303, 0.0211399291, -0.0131140994, 0.00167450658, 0.0171794705, 0.00312607363, -0.000183085125, 0.02504793, 0.00725865411, -0.00409159902, -0.000528662174, -0.0100585148, 0.0139665166, -0.0132124554, -0.0242610853, -0.036168687, 0.0311591011, 0.0168778468, -0.0172581561, -0.003865381, -0.0245233662, 0.0307919066, 0.0181105714, -0.0195137803, 0.0125764217, -0.0113305822, 0.00669802632, 0.00108683098, -0.0146091068, -0.0374014117, -0.00160729687, 0.0196580347, 0.00708161388, 0.00695047295, -0.0239332318, 0.0125698643, 0.0151205566, -0.00374735403, -0.0449289046, 0.0364834256, 0.00995360129, -0.026621623, 0.0155533226, -0.0111535415, 0.0250741579, -0.00337688066, 0.0267396495, 0.00699637225, 0.00772420457, 0.0172450412, -0.00310804159, -0.0233955532, 0.0362473726, -0.000639722159, -0.0106748771, -0.00920609757, -0.00474074716, 0.0523514859, -0.0319197178, 0.00860940665, 0.0032096759, 0.0330737606, -0.011035515, 0.00282444921, -0.0169696454, 0.0167598203, -0.0139402878, 0.00706194248, -0.0103076827, -0.00161303428, 0.0056095561, 0.00593740866, -0.00524564, -0.00906184316, -0.00461288448, 0.0382931717, 0.00476041809, -0.00788813084, -0.00308345282, 0.0207596198, 0.000621280458, -0.0218874328, -0.000165770412, 0.00514728436, -0.0238545481, 0.00957984943, 0.00402602879, 0.0161041152, 0.0205891374, -0.00894381572, 0.0059242947, 0.0169303026, -0.0152123561, -0.0119076027, -0.0252315272, 0.00269986526, -0.00320311892, 0.0252315272, 0.0309492759, -0.0204448812, -0.00323754339, -0.0161041152, -0.00603576424, -0.0213235263, -0.0230414737, -0.0087995613, -0.0222152844, -0.00295231165, 0.00143353501, 0.0113830389, -0.00399980042, 0.0265298244, -0.0146877915, -0.0106945485, -0.0233562123, -0.00218677614, -0.00305230683, 0.0295854099, -0.000219251349, -0.0501483157, 0.0435125828, 0.00880611781, 0.0287461057, -0.00281789224, -0.0131534422, -0.0156320073, -0.0136780059, 0.0405487977, 0.020930104, 0.00378669635, 0.0271461867, -0.00901594386, -0.000783567433, 0.0060456, -0.0301362015, 0.00140402827, -0.0198940895, -0.0164319668, -0.0183597393, 0.0227923058, 0.000717587129, -0.00592101598, -0.0081504127, 0.0070750569, 0.00833401084, -0.00863563456, 0.0238020904, -0.0161696859, 0.02140221, 0.0086225206, 0.00331786717, -0.00209825602, 0.0291395299, 0.00111305923, 0.0249823593, 0.0144910803, -0.00495057274, -0.00920609757, 0.00558988517, 0.00398996472, -0.00485877413, 0.0310017318, -0.0104584945, 0.00637345249, 0.03609, -0.045715753, -0.0124452803, 0.0287985634, 0.00144910801, 0.0124256099, 0.00576036843, -0.0383193977, 0.00218677614, -0.0255462658, 0.00620952621, 0.0136780059, 0.0360113196, 0.0121698845, 0.00545874424, -0.00478336774, -0.00731111038, -0.0469747037, -0.00727176853, -0.000651197042, -0.000597920967, -0.0195793509, 0.00797992945, 0.00866186246, 0.00533743855, -0.00883890316, -0.0260839444, 0.0167335905, 0.00961263478, 0.0109306024, 0.0380833447, -0.0474992692, -0.026175743, 0.0149894161, 0.010825689, -0.0105699645, -0.00809139945, -0.013428838, 0.0176122356, 0.0202481691, 0.0107404478, -0.0195006672, -0.0244053397, -0.0028555952, -0.0176122356, 0.012510851, 0.0300050601, 0.00267363712, -0.00729799643, -0.00439978065, -0.00806517154, -0.00248676119, 0.0627903119, 0.0105371792, -0.0173761826, 0.0137960333, -0.00349818612, -0.0335720964, -0.0145041943, -0.032313142, -0.00844548, -0.0296378657, -0.00493745878, 0.00763896294, 0.00910774246, 0.00240151957, -0.00853727851, -0.0241824, -0.0299001466, 0.0135206366, 0.00745536573, 0.00259331311, 0.00670130504, 0.0168516189, 0.0128649315, 0.00281953136, 0.0039965217, 0.0267396495, 0.0318934917, 0.0235004667, 0.00829466805, 0.00459649181, -0.00486860937, 0.00111305923, 0.0429880172, 0.0242217425, 0.031631209, 0.0355129838, -0.046187859, 0.0396045819, -0.0133763822, -0.0302411132, 0.0012523965, -0.0106027499, 0.00152615341, 0.00824876875, 0.00512761297, -0.00245069736, 0.0115076229, 0.00938313827, -0.0022523466, -0.0372440442, -0.0185302235, -0.0103994813, -0.0422798581, -0.0487844497, 0.0108650317, 0.0201170295, 0.00618001958, -0.0206678212, 0.0301624294, -0.0129895154, -0.000525383628, -0.0497811213, -0.00553742843, 0.0169958733, 0.0119141592, 0.0237102918, -0.0148058189, -0.00284084189, -0.0298476908, -0.0167598203, -0.00605215691, -0.0145435371, -0.0269625895, 0.0462665446, 0.0260314886, 0.0278281197, 0.00679966062, 0.0109437164, -0.0132976975, -0.0221890565, -0.00852416456, -0.00915364176, 0.00946182292, 0.0112322262, -0.00450797193, 0.00898971502, -0.0231857281, 0.0262806565, 0.00771109061, 0.0111863269, -0.0440371484, 0.0036063774, -0.034568768, 0.0203399695, 0.0289821606, 0.0201563705, -0.000477025373, 0.00934379641, 0.0266085081, -0.0410995893, -0.0257692058, -0.00627837516, 0.00014630417, -0.00193760823, 0.0123075824, 0.0126747778, -0.0118682599, 0.0164581947, -0.0178482905, 0.032103315, -0.023880776, 0.0369030759, 0.023434896, -0.00822909735, -0.014556651, 0.0126419924, -0.0156057784, -0.0453747846, -0.00411454868, 0.0058226604, 0.00639312342, -0.0233430974, 0.00295231165, 0.00918642711, 0.0146091068, 0.00548497215, 0.00208350271, 0.0297165494, -0.0215333514, 0.0179925449, 0.0157500338, -0.00472435448, -0.00220972579, 0.0035604781, -0.0210743584, 0.019330183, 0.010242112, -0.0101634273, 0.000777010398, -0.0196842644, 0.00919954106, 0.0331262164, -0.00282444921, 0.0118026901, -0.0588560812, -0.00650131516, -0.0193170682, 0.0132976975, 0.00630788179, -0.0126157636, 0.00601609331, -0.0158942882, 0.0210481305, -0.0122485692, 0.000424568978, 0.030031288, 0.0479189195, 0.0166942496, -0.00628165388, 0.0152648119, -0.0232250709, -0.0198678616, -0.0159860868, 0.00543579413, -0.00191793707, 0.0233168695, 0.0137829185, -0.0193826389, -0.0123338113, -0.00197858969, -0.0127993617, 0.00704227155, 0.00146550068, -0.0219661165, 0.00295886886, 0.00786190294, 0.00982901733, -0.00333262049, -0.00913397, -0.0216644928, 0.0103207966, 0.0141501138, 0.00897660106, 0.00614395551, -0.0303722546, 0.00742913736, -0.0114158234, -0.0104781659, 0.0599576645, 0.0114617236, 0.00488500204, 0.000546284195, 0.00908151362, -0.0237102918, -0.00528498227, -0.00410143472, -0.0217825193, -0.00718652643, 0.0174417533, -0.00186711992, -0.00595052261, -0.0068062176, -0.0318148062, 0.0222808551, -0.0184908807, 0.0280641727, -0.00340638752, -0.0101634273, -0.0266609639, 0.00771109061, -0.00333098136, -0.0267789923, -0.0146615636, -0.00173597899, 0.00128190324, -0.0257954337, 0.0140845431, -0.00997327268, -0.0332835838, 0.000274986291, 0.0617411807, -0.00557677075, -0.0165106524, -0.0302148852, -0.0023818484, -0.0127534624, -0.0138747171, 0.00346867926, -0.000470468338, -0.0122682406, 0.027539609, 0.0119272741, 0.0172581561, -0.00932412501, -0.00402602879, 0.0128518175, 0.00765863433, -0.0101634273, 0.00277199293, -0.0191728137, -0.0125960931, 0.0151730133, -0.00378997484, 0.0248905607, 0.00944215152, 0.0175860077, -0.0355392098, 0.0055538211, -0.0483648, 0.0022523466, 0.00590462331, -0.0121108713, 0.0057570897, -0.0151336715, 0.0215071235, 0.0100847427, 0.0176515784, -0.00243922253, -0.0378997475, 0.00578331808, 0.00925855432, 0.0282477699, -0.00968476292, 0.025008589, 0.012635435, -0.0237102918, -0.0123141399, 0.0133304819, -0.00535383122, -0.0124780657, -0.0080586141, 0.00357687077, -0.0201957133, -0.0126092071, -0.0172056984, -0.0127665764, 0.0186613631, -0.0188056193, 0.00669146935, -0.0211792719, -0.00485221669, -0.00450797193, 0.0022621823, -0.0242217425, 0.0278281197, 0.0082815541, -0.0319197178, -0.00290969084, 0.0166549068, 0.00480631739, -0.0196055789, 0.028903475, 0.0343851708, -0.0132845826, -0.00133845781, 0.008753662, -0.0429880172, -0.0267921053, -0.00862907805, -0.0223201979, 0.00615051296, 0.0112846829, -0.0294542685, -0.00277363206, -0.0223333128, -0.00681277504, 0.00787501689, -0.00728488248, -0.0123731531, -0.013651778, -0.010812575, -0.0120912, -0.0198285189, 0.00816352665, 0.00118190818, -0.00597347226, 0.0294018108, 0.0254020113, 0.000648328278, 0.0228578765, -0.00344572961, 0.00863563456, 0.000374366558, -0.002985097, 0.0158024896, -0.0115272934, 0.0361162312, 0.000880283944, 0.0108191324, 0.0110945283, 0.00666196272, -0.000935199263, 0.00123928243, 0.00741602341, 0.0130157443, 0.0203006268, 0.00195236155, -0.00982246082, 0.0117633473, -0.00237693056, 0.00256380648, -0.0187007058, 0.00098847528, -0.00492106611, -0.0297427773, -0.008307782, -0.0179400891, 0.0275920667, -0.0139009459, 0.0139402878, -0.00795370154, 0.00630460354, 0.0019326905, -0.0167729333, -0.0186220221, 0.00534399552, -0.0198678616, 0.0102683399, 0.0116256494, -0.00737668108, 0.00375718949, 0.00443912297, -0.0180318877, -0.00568168378, 0.0249954741, -0.00874054711, 0.0165106524, -0.00738979504, 0.0269625895, 0.000368424226, -0.0202875119, -0.00950772222, -0.00581938168, -0.0141894557, -0.00177859981, -0.0209694449, 0.0262544286, -0.00759306364, -0.012523965, 0.00979623292, -0.000830286415, -0.0104191527, 0.0163532831, -1.44588075e-05, -0.00836679526, 0.00129173882, 0.0121436566, -0.0207596198, -0.0166286789, 0.0102945687, 0.000482762785, -0.0175991226, 0.0252053, -0.00754716434, 0.0148976175, 0.000858153915, -0.0184121951, 0.00380308903, 0.0167335905, 0.0120977573, -0.023198843, 0.00373751833, -0.00212940201, -0.00290313386, -0.0223988816, 0.00627837516, -0.0429093353, 0.00405881368, 0.0101437559, 0.00589150935, 0.00539973052, -0.0306869932, 0.00287198788, -0.00637017377, -0.0122682406, 0.0295591801, 0.00490795169, -0.0106748771, -0.0208776463, 0.0318934917, -0.0232644137, 0.0100978566, -0.0208776463, 0.0394472107, -0.0130550861, -0.0179925449, -0.0449289046, 0.0305296239, 0.00579643203, 0.00440961588, -0.00188515184, -0.00129747624, -0.00171794707, -0.0516170971, -0.0397881791, 0.00339655182, 0.0054062875, 0.0244709104, 0.0174810942, -0.00485549541, 0.0111797703, 0.0104388231, 0.0151205566, -0.010353582, 0.00163680362, -0.022530023, 0.0187662765, -0.0162352547, -0.0008507772, -0.00405553542, -0.0400504619, 0.0234480109, 0.0196055789, 0.0139009459, 0.0267396495, -0.00216218713, 0.0201563705, -0.0195006672, -0.0302673429, 0.00979623292, 0.0322606862, 0.0139271738, -0.031421382, 0.0120715285, 0.0143992817, -1.55089601e-05, 0.000613084179, 0.00933723897, -0.0238414332, 0.0152254701, 0.00296870433, -0.0525088571, 0.00850449409, 0.00934379641, -0.00139501237, 0.00854383595, -0.00853727851, -0.0257036351, 0.00609477796, -0.0199334323, 0.0105043938, 0.0247069634, -0.00621608319, 0.0237889774, -0.00767830526, 0.00633083144, -0.00899627246, 0.00268183346, 0.00117535121, 0.0123534817, 0.00561611308, 0.0289297048, -0.00518662622, 0.0244315676, -0.0121961124, -0.0365883373, 0.0249430183, 0.00593085168, -0.00959296431, -0.00904217176, -0.00175073231, 0.00896348711, -0.000152861219, 0.00929789711, -0.00683244597, 0.0215726942, 0.0255462658, 0.0185302235, 0.0144386236, -0.0268839039, 0.00738323806, 0.0166417919, 0.0011417463, -0.0116912201, -0.00285887369, 0.0200252309, -0.0113371396, -0.0278805755, -0.00421290472, 0.00749470806, -0.00631116051, -0.00229332829, -0.0294280406, -0.000301624299, -7.77112873e-05, -0.0246020518, 0.0113633676, -0.0193695258, 0.0294018108, 0.0176515784, 0.0296640936, -0.031185329, 0.010130642, 0.0135468654, -0.00858973525, -0.0187531635, -0.00570791168, -0.00961263478, 0.0121436566, 0.00598986493, -0.00940936618, -0.0281953141, -0.0133435968, 0.00169171882, -0.0106617631, 0.00408176333, -0.0249167904, -0.0242348555, -0.0297427773, -0.00948149431, -0.0127010057, 0.00421618298, -0.0164057389, 0.0106486492, 0.00332278502, 0.0205235668, 0.00966509152, -0.00761273503, -0.0127403475, 0.012622321, -0.00558004947, 0.0104584945, -0.00111551816, 0.0035506424, -0.0079012448, -0.0127600189, -0.015710691, 0.0149238454, -0.00311295944, 0.0148058189, -0.0139796305, -0.0254151244, 0.0256380644, 0.0029572295, 0.0365358815, 0.00527186831, 0.0228447616, 0.0270675011, -0.00788813084, -0.0026621623, -0.018910531, 0.00518662622, 0.00987491757, -0.01864825, 0.0249036755, -0.00985524617, 0.00917331316, -0.00933723897, 0.0199990012, 0.0355916657, 0.00454403553, -0.0414667837, 0.0104453806, 0.035722807, -0.0190285593, -0.0220448021, -0.00723898318, 0.0352507, 0.000161774718, -0.0169303026, -0.0185695644, -0.00729799643, -0.00382603868, 0.00588167366, 0.00607510656, -0.0044128946, 0.00043481437, -0.0107732331, 0.00980934687, 0.00127042842, -0.00715374155, 0.0209169891, 0.0318934917, 0.0299001466, 0.00812418479, 0.0299001466, -0.0190547872, 0.00665212702, 0.020707164, -0.0116912201, 0.00261790212, 0.0065570497, 0.00392111577, 0.00600297935, -0.00667179842, 0.0322869122, -0.0283002276, -0.0223857686, 0.0162745975, -0.032785248, 0.0282477699, 0.0104125952, -0.0173368398, -0.0204579961, 0.0397881791, -0.0150681008, 0.020930104, 0.0188318472, -0.003809646, -0.00173270039, -0.0151205566, -0.0044128946, -0.00657344237, 0.00813074224, 0.014110771, 0.0178220607, -0.00933068153, 0.00919298362, -0.0261232872, -0.0323918276, -0.0017753212, 0.00839958061, -0.0199334323, -0.0103732524, 0.0309492759, -0.00175401079, 0.0131534422, 0.0069635869, -0.0116715487, -0.0123600392, -0.0153434966, 0.00833401084, -0.0184777658, 0.013081314, -0.00565873412, 0.00342933717, 0.00364899822, 0.00344900833, -0.0083733527, -0.00289001968, -0.00123928243, 0.0250217021, 0.0106355352, -0.0306869932, -0.00712751318, -0.00830122549, 0.000579479267, 0.0115863075, 0.02571675, -0.017284384, -0.0149763022, 0.00108273281, 0.0134419519, 0.0158287175, 0.0169958733, -0.00607510656, -0.00933723897, -0.0131468847, 0.00726521108, 0.0112256696, -0.00200973568, -0.00686523132, -0.0108781457, 0.00806517154, -0.00858973525, -0.0164581947, -0.0205629077, -0.0114486087, -0.0082618827, 0.0113633676, 0.0145304222, 0.0195268951, -0.0157500338, 0.00618001958, 0.0187400486, 0.0474468134, -0.000962247082, 0.00586200273, -0.00529481797, 0.0133370394, -0.000495057262, -0.00379325333, -0.019133471, 0.0146484496, 0.0031145988, 0.00171302923, -0.00669146935, 0.00963886362, 0.00280805654, -0.0113568101, 0.00617674086, -0.0203006268, -0.00208514184, -0.00765207736, 0.0217956342, 0.00560627785, 0.00646525109, 0.00628493214, 0.0212579556, -0.0100322859, -0.00942903757, -0.0158680603, -0.0215071235, 0.0171794705, 0.0140583152, 0.0183335114, -0.0139534017, 0.00350146461, 0.016091, 0.00308181345, 0.021389097, -0.000413913775, 0.00715374155, -0.000383177598, -0.0148976175, 0.0160647724, 0.00822254084, 0.00980934687, -0.00955362152, -0.0228709895, -0.00755372131, 0.00333425985, -0.0108519178, -0.0118158041, -0.0121174278, 0.00329983537, -0.00921265502, -0.00983557478, 0.0274609253, -0.0126747778, -0.00657344237, -0.026398683, -0.0025785598, 0.0290608443, 0.0193039551, 0.00483254576, -0.000617182348, -0.0111863269, -0.0222546272, 0.0142812543, 0.00463583414, -0.00406864937, -0.00803238619, -0.0118748173, -0.0190679, 0.0228578765, -0.0130944289, -0.00395717937, -0.00742913736, 0.012733791, 0.00527842529, -0.0163139403, 0.00185728434, 0.0146091068, -0.010353582, 0.0150812147, 0.00979623292, -0.00347523647, 0.0257036351, -0.00532432459, -0.00370473322, -0.0171007868, 0.00369489752, 0.021389097, -0.000597511185, 0.00226054294, -0.00845203735, 0.0285887383, -5.21490365e-05, -0.00478992471, 0.020484224, 0.014792705, 0.00578331808, -0.00679966062, 0.0197236054, 0.0115600787, 0.0286936499, 0.0138616031, -0.0170352161, 0.0252315272, 0.00672753295, 0.00876021851, -0.0180056598, -0.0103601385, 0.00454075681, 0.00975033361, -0.0228316467, 0.000227652577, -0.0081700841, -0.00411454868, -0.0132845826, -0.0144123957, -0.000120690696, -0.00429814635, -0.00800615828, -0.0123797106, 0.00454075681, 0.0100388434, -0.0329426192, -0.0156713501, -0.0123469252, 0.00428175367, -0.00446207263, -0.00374079705, -0.0215464663, -0.010687991, -0.00501614297, 0.0180318877, -0.00265396596, 0.00604887865, 0.0054161232, -0.00126796949, 0.0174286384, -0.032077089, 0.00551447878, 0.0129370596, -0.00908807106, -0.00710784225, -0.00931756757, -0.00400963612, -0.0152123561, 0.00970443338, 0.00162450911, 0.0168909598, -0.0113174682, -0.00209989515, 0.00101142493, -0.0333098136, -0.000477025373, -0.00539317355, 0.029349355, 0.0135206366, 0.0224382244, 0.0126288785, 0.00224251114, -0.0148713887, 0.0179269742, -0.00678654667, -0.0386865959, -0.000708981, 0.0164844226, 0.00652098609, -0.00104257092, -0.00959296431, 0.006825889, -0.02207103, 0.0118026901, 0.00165401585, -0.00209825602, 0.0255331527, 0.0155270938, -0.0108912596, 0.00196219725, 0.010825689, 0.0148058189, 0.00223103631, 0.00412766309, 0.0256774072, -0.0010983058, -0.0259396899, -0.0260577165, -0.0157369189, -0.00144910801, 0.0167991612, 0.0130419722, 0.026634736, 0.0416766107, -0.0135206366, -0.0128911603, 0.00275723939, 0.00141140493, -0.00839958061, 0.0410209037, 0.00154172641, -0.00638328819, -0.0258741193, -0.00231791707, -0.0128911603, 0.0137435766, -0.00101470342, 0.017284384, 0.000663901272, -0.0147140203, 0.00836679526, 0.00399980042, -0.0180581156, 0.0123469252, 0.00399324344, -0.0233693253, 0.0100978566, 0.0122485692, 0.0289821606, 0.0256249513, -0.0082422113, -0.0191859286, -0.0193957537, -0.00375391101, -0.00474074716, -0.00257036346, -0.00534727424, 0.0137566905, 0.013192784, 0.0267396495, -0.00310476311, 0.0042456896, 0.00194908306, -0.0111207562, 0.015461524, 0.0211268142, 0.0228709895, 0.00481287483, -0.00636689551, -0.00725865411, 0.0150812147, -0.00564234145, -0.0263462272, -0.00205071736, -0.0247069634, -0.0192515, -0.0059242947, 0.0016031987, 0.0170352161, -0.00144910801, -0.0128977168, -6.39056225e-06, 0.0295854099, 0.00870120525, 0.0189367607, -0.00328836055, -0.0070685, 0.0169565305, -0.000634804368, -0.0156320073, 0.00260150945, -0.0101503134, -0.0039506224, 0.0148451608, -0.0143205971, -0.00690457365, -0.00607182831, -0.0101830987, -0.0104257092, 0.00373423984, -0.00251135021, 0.0167467054, 0.0124190524, -8.88147315e-06, -0.00765207736, -0.001464681, -0.0203399695, -0.00567840505, 0.0161172282, 0.00836023875, -0.00997983, 0.000515138207, -0.0196318068, -0.0187400486, -0.00740290945, 0.00723898318, -0.00164827844, -0.00160237902, -0.0196055789, 0.00638984516, 0.00778321829, -0.0267921053, 0.00908151362, -0.00887168851, -0.00679966062, 0.00268347259, 0.0106355352, 0.0171007868, -0.00384243112, -0.00665212702, 0.0220185742, -0.0235922653, -0.00368506205, 0.00554398587, 0.000323549437, 0.0101634273, 0.00681277504, 0.016156571, 0.0211268142, 0.00692424458, -0.0084848227, 0.0330475308, 0.0135862073, -0.00152369449, 0.00150402333, 0.00598658668, 0.00018544156, 0.00146550068, -0.00278510689, -0.0131075429, -0.0278805755, 0.00451780716, -0.00498663634, -0.00534071727, 0.00263101631, -0.0110420724, 0.00148517184, -0.0217169486, -0.0139140598, 0.000875366153, -0.0211792719, 0.0104912799, -0.0213235263, -0.0385816805, 0.00200153957, 0.0193170682, -0.00421290472, -0.00751437899, 0.00954050757, -0.000657344237, -0.0233693253, 7.59183458e-05, -0.0181630272, 0.0139140598, -0.0119994013, -0.0027916641, 0.00733078178, -0.000458583672, -0.00470796181, -0.0108191324, -0.02207103, -0.00629804656, -0.0108519178, 0.0117895752, 0.00142124051, 0.00463255588, 0.00561283482, 0.0345163122, 0.0212186128, -0.0304247122, -0.0259659179, 0.0252053, -0.00630788179, -0.00357031357, 0.0278805755, 0.00658327807, -0.0131993415, -0.00136222714, 0.0265691653, -0.0248381048, 0.00246217218, 0.0137566905, 0.0158549473, 0.00330475322, 0.00588167366, -0.0194744375, 0.0112125557, -0.00576036843, -0.0251921862, -0.00179171388, -0.00674720434, 0.00300476816, 0.00872087665, -0.00953395, -0.00515384134, -0.0021507123, -0.00280477805, 0.0255200379, -0.00937658176, -0.0132583547, -0.0154221812, 0.00474730413, 0.0270150453, -0.00987491757, -0.0188187324, -0.0156582352, -0.00825532619, 0.0194088668, -0.0117830187, -0.00462927716, -0.02527087, -0.00480303913, -0.0107470043, 0.0127993617, -0.0148189329, 0.00747503666, 0.0036621124, 0.0103601385, 0.017297497, 0.0065570497, 0.0120846434, 0.0165893361, 0.00618001958, -0.00119912054, 0.0168909598, -0.00710128481, 0.00288510183, 0.0125960931, -0.00623575458, -0.00237529143, -0.00129583699, -0.00952083617, 0.0151992412, 0.0241955146, -0.00939625222, 0.00627181819, 0.027985489, 0.00220808643, 0.0151861273, 0.0270412732, -0.0162745975, -0.0137698045, 0.0150812147, -0.00443584425, 0.00422601867, -0.0313164704, -0.00966509152, 0.0152254701, 0.00614395551, -0.0129173882, -0.00519646192, 0.0109371589, 0.0106355352, 0.00564889843, -0.00387521647, 0.0106093064, 0.00827499665, 0.00966509152, -0.00230152439, 0.00184580951, 0.0125698643, 0.023434896, 0.0202875119, 0.0185826793, 0.011494508, 0.0326278806, -0.0266871937, -0.0144910803, 0.00386210228, 0.015920518, -0.0108191324, -0.0147140203, -0.00571446912, 0.00525547564, -0.0135862073, -0.00839958061, 0.0069635869, 0.00368178356, -0.0111797703, 0.000664311112, -0.0209825598, -0.0129173882, -0.0257036351, 0.00999950059, 0.0238020904, 0.0129567301, -0.0109437164, -0.00540300924, 0.0115010655, -0.0109699443, -0.00536366692, 0.0213235263, -0.00144255091, 0.00710128481, 0.00413422, -0.00608822098, 0.00472435448, -0.00677998969, -0.0224644523, 0.000382153055, 0.0102158841, -0.00626853947, -0.0128255896, 0.000335024262, -0.00201465352, 0.0424634553, -0.008642192, -0.0173237249, 0.0102945687, -0.0124256099, 0.0106945485, -0.0041440553, 0.0110814143, -0.0147271343, 0.00497680064, -0.00135321112, -0.0254544672, 0.00207530637, 0.0192515, 0.0240119174, 0.0174286384, -0.0121305427, -0.0114748375, 0.00610133493, -0.00338343764, 0.0353556126, -0.00553415, 0.0208514184, 0.00820942689, -0.0158942882, 0.00866186246, 0.0101503134, -0.00418339763, -0.0116781062, 0.0133108115, 8.46269249e-05, -0.0228841044, 0.0201039147, -0.000404078193, 0.0021785798, -0.000276625535, 0.0275658369, 0.00664557, 0.00938969571, 0.0217300635, 0.0253888965, 0.0108847031, 0.00220316881, -0.0110879717, 0.0233168695, 0.030739449, -0.0240512583, -0.0072127548, 0.00977000408, -0.0232381839, 0.00669146935, -0.0106289778, -0.0187138207, -0.00144419027, -0.00849793665, -0.0143730529, 0.000936838507, 0.00949460827, 0.0163532831, 0.00197367207, -0.0131075429, 0.0110879717, -0.00963230617, 0.0114551662, -0.0146353357, -0.0128780464, -0.033231128, 0.0226218216, 0.0122813545, -0.00253921747, 0.00119502237, 0.0168647319, -0.0105830785, 0.00554398587, 0.0172188133, -0.00177368196, 0.00719308387, 0.0367457084, 0.00275232177, 0.0101765413, 0.0127862468, -0.00949460827, -0.00274084695, -0.0230283588, -0.0164450817, 0.0126485489, 0.0460567176, -0.00971754827, -0.0212448407, 0.00134583446, -0.00373096135, 0.0194482096, 0.00312115578, -0.0065341, -0.00258347765, 0.00843236595, -0.0104584945, 0.0027916641, 0.0155270938, -0.00988803152, -0.000206854427, 0.0108978171, 0.00456042821, -0.00108765066, 0.00975033361, -0.00554726413, 0.0135730933, -0.01797943, -0.0124846231, 0.00983557478, 0.0135862073, -0.0107404478, -0.012064972, -0.0087339906, -0.0120256292, -1.83392494e-05, -0.0205629077, 0.0370866731, 0.0150681008, 0.0191990416, 0.0346474499, 0.00130403333, -0.0159992017, -0.0132124554, 0.00714062713, 0.017743377, 0.004098156, 0.0026801941, 0.00325065758, 0.0157369189, 0.00837991, -0.0142681403, -9.80483892e-05, 0.0194613244, 0.0125895357, -0.0148189329, -0.00195236155, -0.00796025898, 0.032785248, -0.0173237249, -0.0369555317, 0.0281690862, -0.00516367657, -0.0215464663, 0.0237496346, -0.00595380133, 0.00638984516, -0.0301624294, -0.00587511668, 0.00102781761, -0.000579069485, 0.00694391597, 0.00940281, 0.00307853497, -0.00590462331, 0.0303984825, 0.0102486685, -0.015697578, 0.00667835539, 0.0134550659, -0.00080077973, -0.00118354755, -0.0164450817, 0.00453092158, 0.0119731734, 0.00498991506, 0.000409405795, 0.00549152913, 0.0124256099, 0.0043571596, -0.00294903317, -0.0156057784, -0.00717341248, -0.000938477751, -0.0105830785, 0.00117207272, -0.034568768, 0.0014523865, -0.0119076027, -0.00315066241, 0.0258610044, 0.00448830053, -0.00293264049, 0.0144648524, 0.00860940665, 0.0265298244, 0.00589806633, 0.00813074224, 0.0041440553, 0.00991425943, -0.011940388, -1.76092653e-05, 0.00578659633, -0.0277494341, 0.000175810899, 0.0220841449, -0.0105175078, 0.0171270147, -0.00583577435, 0.00908151362, -3.29645445e-05, 0.0130944289, 0.0171270147, 0.0212972984, 0.0130682, -0.000827827549, -0.0167204775, 0.00931756757, -0.000545874413, -0.00473746844, 0.00189334818, 0.00694391597, -0.0080389427, -0.0158024896, -0.0224251114, 0.0263724551, 0.0244577955, 0.00458665658, 0.00144419027, 0.028667422, -0.0108584743, -0.0162745975, -0.0310279597, -0.0113961529, -9.76898e-05, 0.0025326605, -0.00624231156, 0.00301952148, -0.0181368, 0.00799960084, 0.00454075681, -0.00912085641, -0.0197891761, 0.00331458868, 0.0153434966, 0.0193432979, 0.0151598994, -0.000282772788, -0.000366989872, -0.0108191324, 0.0181499142, -0.00614395551, 0.0109568303, -0.00505220704, 0.00505220704, -0.0157893766, -0.00611772761, -0.0126026496, -0.00479976041, -0.0134812947, -0.0046259989, 0.0107797896, -0.0159467459, -0.00903561432, 0.0106748771, -0.0184121951, -0.0239201188, -0.00323262555, -0.00228677108, 0.00427191798, 0.0410209037, -0.00627509691, -0.00845859479, -0.0116649913, 0.010576521, -0.000412889232, 0.00614067726, -0.0029014945, 0.00822909735, 0.0176909212, -0.000284821843, 0.00977656152, -0.0308443625, -0.0123272538, 0.0135730933, 0.00791435875, 0.013428838, -0.0110617429, -0.00232283492, -0.00216218713, -0.000989294844, -0.00642263051, -0.0152910398, -0.0195662361, 0.0107142199, 0.0145959929, -0.0081045134, 0.00140074978, -0.0280379448, 0.00493418, 0.0220972579, 0.00133845781, 0.0117502334, -0.0278018918, 0.0295329522, 0.00942248106, 0.00352441426, -0.0166942496, 0.00689801667, 0.00346540078, -0.0082159834, 0.00784878898, -0.00690457365, 0.0126878917, 0.0163008254, 0.00418339763, 0.00218677614, 0.00507515669, 0.00934379641, 0.00498991506, 0.00693735853, -0.0278805755, 0.0109306024, -0.0121829985, -0.00710128481, 0.000308386254, 0.0221890565, -0.0201039147, 0.0312377848, -0.0240512583, -0.008307782, 0.0104519371, -0.00133845781, -0.00674720434, 0.00836023875, -0.00751437899, -0.0133567108, 0.000820860674, -0.00103765319, 0.0322344564, 0.00756027829, 0.00940281, 0.00838646665, 0.00845203735, -0.0108322464, 0.0156713501, -0.000322319975, 0.00759962061, 0.00675376132, 0.0297427773, 0.00782256, -0.0194613244, -0.0106093064, 0.00297034369, 0.0140189724, -0.0230152458, 0.00759306364, -0.00415061275, -0.00980278943, -0.00632099621, -0.00115649973, 0.00803238619, 0.00782256, 0.00565873412, 0.0226742793, -0.0190154444, 0.00172450417, -0.0117895752, -0.00353752845, -2.75088732e-05, 0.00557677075, 0.0200121161, -0.00860284921, -0.00926511176, -0.00547841517, -0.0196449216, -0.0153434966, 0.0154221812, -0.0115535222, 0.00543907285, 0.0226349365, 0.0255593807, 0.015710691, -0.00103191577, -0.0121305427, -0.0183990821, 0.00384243112, -0.0120387431, 0.00104502984, -0.0139009459, -0.00738979504, -0.00895037316, -0.00504237134, 0.0164713096, -0.0160385445, -0.0119666159, -0.00938313827, -0.0167204775, 0.000368629146, 0.00218677614, 0.0009155281, -0.00603248598, 0.00652426481, -0.0224382244, -0.0134681808, 0.0157500338, -0.0245495941, -0.00427191798, 0.000324369059, -0.00847826526, 0.00426863926, 0.013638664, 0.00095650967, -0.00455714948, -0.0325229689, 0.00595380133, 0.00623575458, -0.00660622772, 0.0083733527, -0.0016031987, 0.00815697, -0.0274871532, 0.00833401084, -0.041440554, 0.00978967547, 0.0166680217, 0.0189498737, -0.00226546079, 0.00369817624, -0.00221136515, -0.0135599794, 0.00969787687, 0.00362604856, 0.000724144222, 0.0193826389, 0.0154877519, 0.0193957537, 0.00695703, 0.00491123041, 0.0220972579, -0.00184417027, 0.0164450817, -0.00803238619, 0.00897004455, -0.00113600888, 0.0310804155, -0.00497024367, -0.0117108915, 0.00266544078, -0.00831433944, -0.00874710456, 0.000242201029, -0.000473746855, 0.00200809655, 0.00763896294, 0.00309984526, -0.0269101318, -0.00271461857, 0.00832089595, -0.0209038742, -0.0035506424, 0.0176122356, -0.0206547063, 0.00809795689, -0.00966509152, -0.0330475308, -0.0085110506, 6.33677409e-05, 0.0127272336, 0.00133435964, 0.0221497137, -0.0118879313, 0.0105043938, -0.0213366412, 0.0167335905, -0.0115797501, -0.0174417533, -0.0158024896, -0.0369293056, -0.00895693, -0.0173630677, 0.028274, 0.00665540574, -0.00809795689, 0.00187859475, 0.0143992817, -0.0134222815, 0.0122354552, -0.000877825078, -0.00545546552, 0.00993393082, 0.0130157443, 0.0104781659, -0.0192908403, -0.00179499236, 0.0102814538, -0.0139271738, 2.83989425e-06, 0.0110027296, -0.000941756298, -0.00408176333, -0.0224382244, -0.0040063574, 0.0279330332, -0.0141894557, 0.0240512583, 0.0104322666, 0.00566201238, 0.0207596198, 0.00691113062, -0.00695703, -0.00431453902, -0.000621690298, 0.00623247586, -0.0151467854, -0.0193039551, 0.0207465049, 0.00632099621, 0.032759022, -0.00157041347, 0.00245233672, -0.0041178274, -0.00460632751, 0.0080586141, 0.0210350156, 0.00363588426, 0.000884382112, 0.0183335114, -0.0270675011, -0.00353097124, 0.0122682406, -0.00666196272, 0.00343917264, -0.00450797193, 0.0164450817, 0.00667179842, -0.00701604318, 0.0158287175, 0.00583577435, -0.00110650214, 0.00638328819, -0.00230152439, 0.00813074224, 0.00824876875, -0.0174024105, -0.00114256598, 0.00598658668, 0.0159992017, 0.00238512689, 0.00782911759, -0.0158156045, -0.00831433944, 0.0016187717, 0.00783567503, 0.0199465454, -0.00190974073, -0.029113302, -0.0169171896, -0.0314738378, -0.0172581561, -0.00428175367, -0.00816352665, 0.00064955774, -0.00251626782, -0.0127862468, 0.0154090673, -0.000574151694, 0.0141501138, 0.0123338113, -0.00449485751, 0.00952739362, -0.0313951559, -0.00780288922, 0.00202448922, -0.00638984516, -0.00719964085, -0.00440633763, -0.00778977526, -0.00115322112, 0.00316705508, 0.000801599352, 0.0110683, -0.0149894161, 0.00807172805, 0.00502270041, -0.021834977, 0.0149369594, 0.00372112589, -0.0071209562, -0.010812575, 0.00217366195, -0.0322869122, -0.0216513779, 0.0119928438, 0.00103847275, 0.0148976175, -0.00349490764, -0.00148599141, 0.00327524636, -0.0121895559, -0.000827007927, -0.006658684, 0.0110879717, -0.0140583152, -0.0119731734, -0.00946838, 0.0195662361, 0.0217038356, -0.021612037, 0.00820942689, 0.00734389573, -0.00212776265, 0.00319000473, 0.0327065662, 0.015697578, -0.00612428458, 0.0035145788, -5.05353892e-05, 0.0147664761, -0.00149336806, 0.0107470043, -0.0172450412, 0.001904823, -0.00669802632, -0.0040620924, 0.0121961124, -0.0195137803, 0.00973066222, 0.00127534615, -0.00436043832, 0.016838504, 0.00355719961, 0.000373546936, -0.0119207166, 0.0022244791, 0.00692424458, -0.00344572961, 0.0228709895, -0.00866842, -0.0167073626, 0.00813074224, 0.000694227638, -0.00640295912, -0.000645869412, -0.00840613805, 0.0247463062, 0.00125731435, -0.00259823096, 0.00755372131, 0.00881267525, -0.000367809524, -0.00632427447, -0.0121436566, -0.0011171574, -0.0216513779, 0.0148320468, -0.0104453806, -0.00788813084, 0.00959952082, 0.0121829985, 0.0276969783, 0.0139140598, 0.0033391777, 0.0125305224, 0.0223595407, 0.000737668131, 0.00460304879, -0.0046718982, 0.0101765413, 0.029113302, 0.00011782199, -0.00351785729, -0.0128124757, -0.00384898833, 0.00283428491, -0.00891103, -0.0040161931, 0.0170876719, -0.00854383595, -0.00219005463, 0.0128387036, 0.0212579556, 0.0213628691, -0.00950772222, 0.010006058, 0.00641279481, -0.0148189329, -0.00305722444, -0.0082815541, -0.00288838055, -0.0147664761, 4.58737341e-05, 0.00556037808, -0.00350802159, -0.00105650467, -0.0228709895, 0.0141894557, 0.0162614845, -0.00602265028, 0.00190154451, -0.00997327268, -0.0162352547, -0.0206940491, -0.0169827584, -0.00740290945, -8.93398e-05, -0.0133894961, 0.00100322859, -0.00708161388, -0.0221759435, -0.0184384249, -0.00458665658, 0.0108519178, 0.0286149662, -0.0210350156, -0.0185695644, -0.00180974579, -0.027985489, 0.00975033361, 0.00116059778, 0.00322934706, -0.00870776176, -0.0319459476, 0.015028758, 0.00767174829, 0.0140452012, 0.0115731927, -0.0260446016, 0.00391128, 0.000802009134, -0.0150025301, -0.00108437217, -0.012399381, -0.0413356423, 1.29988393e-05, 0.0196055789, 0.0056095561, 0.00437027356, -0.00921921246, 0.0022621823, 0.0166286789, -0.000739717216, 0.00276871421, -0.0121698845, -0.0128190322, 0.0070291576, -0.0082159834, 0.00331458868, -0.0168647319, -0.0102552259, 0.0162352547, 0.0103339106, 0.0136124352, -0.00763240596, -0.00165483542, -0.00289821601, 0.00185236661, 0.00463583414, -0.0139009459, -0.0103339106, -0.0236184932, -0.0034031088, -0.0388177335, -0.0189629886, 0.0152123561, -0.0154877519, -0.0182417128, -0.0136648919, -0.00904217176, -0.0190285593, 0.00391128, 0.00567184808, 0.00226546079, -0.0160385445, 0.0015572994, -0.00554070715, -0.00074094662, 0.0086225206, 0.0169958733, -0.014556651, -0.0396045819, 0.0374800973, 0.0199858882, 0.0144910803, -0.0130157443, -0.00562594878, -0.0259790309, -0.0114682801, -0.0229103323, -0.0079930434, -0.0140058585, -0.00288838055, -0.0115010655, -0.000190666717, 0.0229234472, 0.00208350271, 0.0600101203, 0.0250217021, 0.01820237, -0.0393947549, 0.00658327807, -0.0192252696, -0.0193170682, 0.0301624294, -0.00461616321, 0.00309820613, 0.00801927224, -0.0139009459, 0.0109633878, -0.00281133503, -0.0133108115, -0.00214907317, -0.00654065702, 0.0046259989, 0.00475386111, 0.0171532426, 0.00782256, 0.0147140203, 0.00698981527, -0.00757339271, 0.00796681549, 0.00813729875, 0.00211628783, -0.0110027296, -0.0227791909, 0.0204317681, -0.0138091473, 0.00572758308, 0.00147779507, 0.0252315272, -0.0302411132, 0.0183203965, -0.00959296431, -0.000853236124, 0.00365883391, -0.00383587414, 0.0150549868, -0.00276543573, 0.00823565479, 0.0212055, 0.010465052, 0.0042456896, 0.0123797106, -0.00249331817, 0.016091, 0.00217366195, 0.0228185337, 0.0126616629, 0.00964542, -0.0221234858, -0.00283920253, 0.0128255896, 0.0164450817, -0.00466861948, 0.00168024399, 0.0284051392, -0.0070685, 0.00151221966, 0.00450141495, 0.00605871389, 0.0054980861, 0.0196711496, -0.0249299034, 0.00536366692, -0.0109174885, -0.00805205759, -0.0147009054, -0.0141632278, 0.0189761017, 0.0175860077, 0.00877989, -0.00150484289, 0.00455059251, -0.0135075226, -0.00150074484, -0.00986180268, -0.00962575, 0.00928478222, -0.02549381, -0.0612166189, 0.0136124352, -0.0127272336, -0.018045, 0.000871268, -0.00982246082, 0.0316836648, -0.0041997903, -0.00264413026, 0.0289297048, 0.019356411, 0.0121698845, 0.00209661666, -0.014110771, -0.0121370992, 0.00872087665, -0.00336376647, 0.0244446825, 0.00836679526, -0.0269101318, -0.0217562914, -0.0167073626, 0.0190416723, 0.000398750592, -0.000950772257, 0.0223595407, 0.00385554531, 0.0121108713, -0.00625870423, 0.019356411, 0.0196186937, -0.000676605559, 0.00775699, 0.00369817624, 0.0234480109, 0.0177827198, -0.0016769655, 0.026175743, -0.0119600594, -0.0158680603, 0.00343589415, 0.0199596602, -0.000233799816, 0.0140583152, -0.00879300386, 0.0207333919, 0.00494073704, -0.00473419, -0.00666851969, 0.00904217176, -0.00931756757, 0.00644558, -0.00430798158, -0.00544890855, -0.0135730933, -0.00803238619, 0.00673409039, -0.00494401576, 0.0104781659, 0.0206547063, 0.0283789113, 0.00960607827, 0.0150812147, 0.00332770287, -0.00747503666, 0.0199596602, 0.0114223808, -0.0185039956, 0.0335720964, 0.006658684, 0.0055538211, 0.0116715487, 0.0107273338, -0.00457354216, -0.0255331527, 0.0178876314, -0.016379511, -0.0124911796, 0.00143107609, 0.0378472917, 0.00338671636, 0.0227398481, -0.0314738378, 0.00934379641, 0.0040522567, 0.00164991769, 0.0128518175, -0.00749470806, 0.00419651205, -0.00113436964, 0.00908807106, -0.0132976975, -0.00230644224, -0.0295591801, 0.0109437164, -0.00538333785, 0.000660622783, -0.00259823096, 0.00538005959, 0.00186711992, 0.0529285073, 0.00312607363, -0.0137304626, -0.0055734925, -0.00309164892, 0.00283100619, 0.0229103323, 0.0140452012, 0.0147009054, -0.00188843033, 0.00480959611, -0.0191859286, -0.00822254084, 0.0132911401, 0.00654393574, -0.0100781852, 0.00893070176, 0.00762584899, 0.00515056262, 0.0068521169, -0.0106289778, -0.0174286384, 0.0185695644, -0.00583905308, -0.0177171491, 0.0137829185, -0.0280904025, 0.00693080155]
|
10 Aug, 2022
|
Split a List into Two Halves in Java
10 Aug, 2022
Try it on GfG Practice
Here we are given a list and the task is to split it into two news lists as one can better perceive from the below illustration as follows:
Illustration:
Input : list = {1, 2, 3, 4, 5, 6}
Output : first = {1, 2, 3}, second = {4, 5, 6}
Input : list = {1, 2, 3, 4, 5}
Output : first = {1, 2}, second = {3, 4, 5}
Methods:
Using loops(Naive Approach)
Using subList() method of List class
Using partitioningBy() method of Collectors class
Using Google guava Library
Let us do discuss the above-defined methods to details alongside implementing via clean java programs as follows:
Method 1: Using loops
Approach:
Create two new empty lists and assign the first half element of the original list.
Reset into the second empty list.
Example:
Java
// Java Program to Split a List into Two Sublist
// Importing required classes
import java.util.ArrayList;
import java.util.List;
// Main class
public class GFG {
// Method 1
// To split a list into two sublists in Java
public static List[] split(List<String> list)
{
// Creating two empty lists
List<String> first = new ArrayList<String>();
List<String> second = new ArrayList<String>();
// Getting size of the list
// using size() method
int size = list.size();
// Step 1
// (First size)/2 element copy into list
// first and rest second list
for (int i = 0; i < size / 2; i++)
first.add(list.get(i));
// Step 2
// (Second size)/2 element copy into list first and
// rest second list
for (int i = size / 2; i < size; i++)
second.add(list.get(i));
// Returning a List of array
return new List[] { first, second };
}
// Method 2
// Main driver method
public static void main(String[] args)
{
// Creating an ArrayList of string type
List<String> list = new ArrayList<String>();
// Adding elements to list object
// using add() method
list.add("Geeks");
list.add("Practice");
list.add("Contribute");
list.add("IDE");
list.add("Courses");
// Calling split method which return List of array
List[] lists = split(list);
// Printing specific elements of list by
// passing arguments with in
System.out.println(lists[0]);
System.out.println(lists[1]);
}
}
Output
[Geeks, Practice]
[Contribute, IDE, Courses]
Method 2: Using subList() method of List class
It returns a view of the portion of this list between the specified index(include) to another index (exclude). For example, let us take arbitrarily from 2 to 5, Here index 2 will include only. In case if both specified indexes are equal, the returned list is empty. The List.subList() returned a list, so non-structural changes in the returned list.
Example:
Java
// Java Program to Split a List into Two SubList
// Using subList() method of List class
// Importing required classes
import java.util.ArrayList;
import java.util.List;
// Main class
public class GFG {
// Method 1
// To split a list into two sublists in Java
public static List[] split(List<String> list)
{
// Finding the size of the list using List.size()
// and putting in a variable
int size = list.size();
// Creating new list and inserting values which is
// returned by List.subList() method
List<String> first
= new ArrayList<>(list.subList(0, (size) / 2));
List<String> second = new ArrayList<>(
list.subList((size) / 2, size));
// Returning an List of array
return new List[] { first, second };
}
// Method 2
// Main driver method
public static void main(String[] args)
{
// Creatingan ArrayList of String type
List<String> list = new ArrayList<String>();
// Adding elements to List object
// Custom input elements
list.add("Geeks");
list.add("Practice");
list.add("Contribute");
list.add("IDE");
list.add("Courses");
// Calling split method which return List of array
List[] lists = split(list);
// Printing specific elements of list by
// passing arguments with in
System.out.println(lists[0]);
System.out.println(lists[1]);
}
}
Output
[Geeks, Practice]
[Contribute, IDE, Courses]
Method 3: Using partitioningBy() method of Collectors class
Java 8 Collectors.partitioningBy() is a method that partitions the elements of stream always in two-part, unlike Naive and List.subList(). It returns a Collector that stores the values in a Map. The key of the map can be only in Boolean.
Syntax: partitioningBy() method
public static Collector<T, ?, Map<Boolean, List>>
partitioningBy(Predicate predicate)
Example:
Java
// Java Program to Split a List into Two Sub-List
/// Using partitioningBy() method of Collectors class
// Importing required classes
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
// Main class
public class GFG {
// Method 1
// To split a list into two sublists in Java
public static List[] split(List<String> list)
{
// Setting value of midIndex using comparators
int midIndex
= ((list.size() / 2)
- (((list.size() % 2) > 0) ? 0 : 1));
// Creating object of List with reference to
// ArrayList class Declaring object List<String>
// type
List<List<String> > lists = new ArrayList<>(
list.stream()
.collect(Collectors.partitioningBy(
s -> list.indexOf(s) > midIndex))
.values());
// Returning an array containing both lists
return new List[] { lists.get(0), lists.get(1) };
}
// Method 2
// Main driver method
public static void main(String[] args)
{
// Creating an ArrayList of String type
List<String> list = new ArrayList<String>();
// Adding elements to List object
// Using add() method
list.add("Geeks");
list.add("Practice");
list.add("Contribute");
list.add("IDE");
list.add("Courses");
// Calling split method which return List of array
List[] lists = split(list);
// Printing specific elements of list by
// passing arguments with in
System.out.println(lists[0]);
System.out.println(lists[1]);
}
}
Output
[Geeks, Practice, Contribute]
[IDE, Courses]
Method 4: Using Google guava Library
Guava is an open-source Java-based library which is developed by Google Inc. In the Guava library, we can use Lists.partition() method that splits the list into consecutive sublists, every list specified size. In order to split the list into two sublists, In our case, we can pass the size that is equal to half the size of our list.
Example
Java
// Java Program to Split a List into Two Sub-List
// Importing Guava library
import com.google.common.collect.Iterables;
// Importing required classes
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
// Main class
public class GFG {
// Method 1
// To split a list into two sublists in Java
public static List[] split(List<String> list)
{
// Partition the List into two sublists and
// getting iterator
Iterator<List<String> > itr
= Iterables.partition(list, (list.size()) / 2)
.iterator();
// Returning an array containing both lists
return new List[] { new ArrayList<>(itr.next()),
new ArrayList<>(itr.next()) };
}
// Method 2
// Main driver method
public static void main(String[] args)
{
// Creating an ArrayList of string type
List<String> list = new ArrayList<String>();
// Adding elements t oabove object
// Custom input elements
list.add("Geeks");
list.add("Practice");
list.add("Contribute");
list.add("IDE");
list.add("Courses");
// Calling split method which return List of array
List[] lists = split(list);
// Printing specific elements of list by
// passing arguments with in
System.out.println(lists[0]);
System.out.println(lists[1]);
}
}
Output
[Geeks, Practice]
[Contribute, IDE]
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java/Split a List into Two Halves in Java
|
https://www.geeksforgeeks.org/split-a-list-into-two-halves-in-java/?ref=next_article
|
Pandas
|
Split a List into Two Halves in Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Initializing a List in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0326670818, -0.00628368882, -0.0127901081, 0.00881471299, -0.0257287025, -0.0145786982, 0.00270482106, 0.0154831177, 0.00331732887, 0.0406853668, -0.0158880819, -0.0306152664, 0.0645782351, -0.0269570928, -0.0101510938, -0.0159825739, -0.0340709575, 0.0446540117, -0.0214225873, -0.006206071, 0.00768756354, -0.00988786761, -0.0338549763, 0.0148351751, -0.018925311, 0.0375536457, -0.0198432282, 0.00544676371, -0.022003036, -0.0303722881, 0.0126281222, 0.00888895616, 0.0373106673, -0.00836925302, -0.0193302743, 0.0329100601, 0.00690463372, 0.000929729489, -0.0230694395, 0.030534273, 0.0150376577, -0.0207206495, 0.00996211078, -0.0367437191, -0.0218815468, 0.00601371331, -0.0160230696, 0.00730959745, 0.0178454071, -0.0302103031, 0.0193032771, 0.0244058203, 0.00946265552, 0.0306962598, -0.0114739751, 0.0143897152, -0.0160500668, 0.0228804573, -0.0372026786, 0.0162390508, -0.00133806805, -0.0479747169, 0.00553450594, 0.00939516164, 0.011730453, 0.00661103474, -0.0725695193, 0.0144977057, 0.0230019465, -0.00880796369, -0.0305612721, 0.0309932325, 0.0235149, -0.0206126589, -0.0310472287, -0.0316411741, 0.0524563156, -0.0230019465, -0.0551290773, 0.0189658068, -0.0650641918, -0.0212066062, -0.0319651477, -0.030534273, -0.0104750646, -0.0247432906, -0.00043871082, -0.0425212048, 0.0101375952, 0.00514641544, -0.021368593, 0.00371554331, 0.00442085508, 0.00634780806, 0.00831525773, 0.0120409252, 0.0406043753, 0.000756776193, -0.00917918049, 0.0355018303, -0.0279425047, 0.003091224, 0.00301360595, -0.0271325782, 0.0274430495, 0.00872697122, 0.00133300596, 0.0310742259, 0.0522943325, 0.00714761205, 0.0581528097, 0.0125538791, -0.0212606024, 0.00385728059, -0.00135072321, -0.0297513437, 0.0123311486, -0.0578828305, -0.0168464966, 0.0151051516, 0.0493245944, 0.0479747169, -0.0235553961, 0.0336389951, -0.0482176952, 0.0245273095, -0.0183178652, 0.0163200423, -0.0118046962, 0.0258096959, 0.0361227766, 0.00240784744, 0.00616219966, -0.0431961417, -0.0164280329, 0.00996211078, 0.0273485575, 0.0368787088, -0.0400644243, 0.0360417813, 0.0161310602, -0.0359067954, -0.00342363189, -0.011966682, -0.038174592, 0.0136135342, 0.0308852419, 0.0233259182, -0.0260796715, 0.0219220426, -0.0386065543, 0.0091251852, 0.00899019744, 0.014268226, 0.0120409252, -0.0143897152, 0.0116764577, -0.0190602988, 0.00988111738, -0.0217330605, 0.00528815296, 0.013046585, 0.0296703503, -0.0210716184, -0.0384175703, 0.0105898045, 0.00769431284, -0.0175484326, -0.0144167133, 0.0310202297, 0.0185203459, -0.00994861219, 0.0247432906, 0.0659281164, -0.00519028679, -0.0279695038, 0.00918593, -5.69480399e-05, -0.0333960168, -0.0373376682, -0.0144707076, -0.0408743508, 0.0511334352, -0.00515991449, -0.018547345, 0.00214968296, 0.0281584859, -0.00790354423, -0.0180883855, -0.0131275775, -0.0136270337, -0.0333420224, 0.0339899659, 0.0167790018, 0.00951665, -0.0114064813, -0.0102928309, 0.00656716386, -0.0419272557, 0.0526453, -0.00588547438, -0.0268491022, -0.0196677446, 0.0110960091, 0.0313712, -0.0250942595, -0.0266466215, -0.0258771889, 0.020545166, -0.0164145343, -0.0317491665, 0.0279425047, -0.0328020714, -0.000668612192, 0.0164010357, 0.00876746699, 0.0165765192, 0.0520783514, -0.0104008215, 0.0129183466, -0.0012975717, 0.0367977135, 0.0323701091, 0.00102590839, -0.0427911803, -0.050377503, -0.0112107489, 0.0435741097, 0.00140303094, -0.0298593342, 0.000782086398, 0.0181153826, -0.0157125965, -0.0277535226, 0.0277535226, -0.0176564232, -0.0243788231, 0.0277805198, 0.0105290599, 0.037445657, 0.0159420762, 0.0198432282, -0.028374467, 0.00815327186, -0.00627019024, -0.0172109641, -0.00578085892, 0.00655029, 0.0206666552, 0.032208126, -0.0258096959, -0.022637479, -0.0353398435, -0.0122434068, -0.0201132037, 0.0159690734, 0.0340169631, -0.0133300601, 0.0360687785, 0.0226509776, 0.0347998925, 0.00648279628, -0.00315365591, 0.0080182841, 0.00680676708, 0.00898344815, 0.0148216765, -0.0157395955, 0.0176699217, 0.0246757977, 0.00738384062, 0.00367504684, -0.00807902869, 0.00408676034, 0.0275375415, -0.030912241, -0.00232854206, -0.0164010357, 0.0497025624, 0.0365547352, 0.011635961, 0.0127361128, 0.0192492809, -0.011730453, -0.0464358553, -0.0507284701, -0.0327480771, -0.00106049911, 0.000417408039, -0.0219490398, 0.0179399, -0.0063984287, 0.0264036432, 0.00141737342, 0.0215035807, 0.025715204, 0.0013810955, 0.0193437729, -0.0326400846, -0.0209096335, -0.00458959024, -0.0402264073, 0.0293733776, -0.0164145343, -0.0482986867, -0.0259176865, -0.0219220426, 0.000317432598, -0.0213550925, -0.0132828141, -0.000873203273, -0.0845024586, -0.0317761637, 0.00396864582, -0.0425752, -0.00489331316, 0.0594486929, 0.00168566196, 0.00762681896, -0.0016755379, 0.0323701091, -0.0440600663, -0.0232584234, 0.0364197493, -0.0013945942, -0.013539291, -0.0243113302, 0.0263901446, -0.0147811808, -0.0164685305, -0.0181018841, -0.00704637077, -0.0112174982, -0.000915387, 0.0425212048, -0.0411713235, 0.0126753682, -0.0207071509, 0.0207746457, -0.017534934, -0.00549738435, 0.00132541289, 0.0129453447, 0.00368517102, 0.0158880819, -0.0389575213, -0.00565936975, 0.0133840553, 0.0564789586, 0.0289684143, 0.00126045, 0.00897669885, -0.00508567085, -0.0195057578, 0.00919267908, -0.0521863401, 0.0200052131, 0.00153633161, 0.0421162397, 0.0122906528, -0.00173459516, -0.00479882164, -0.0502965078, 0.00666840468, -0.012810356, -0.0346379057, -0.0214765817, -0.019181788, 0.0101510938, 0.005524382, -0.0346919037, 0.00913193449, -0.0137215247, -0.0315061882, -0.022731971, 0.0229074545, 0.0188173205, -0.0100093568, 0.0102320863, -0.0148486746, 0.00980012491, 0.0341519527, 0.0113727348, -0.0310472287, -0.0193437729, -0.0220705289, -0.00481232, 0.00484944182, -0.0261471663, 0.0106977951, 0.0214090887, 0.039443478, 0.0242708325, 0.00999585725, 0.00896995, 0.0189118125, -0.0153211318, -0.0100093568, -0.00165191502, -0.0284014642, 0.00579435751, -0.0117372023, 0.00245340588, -0.0109272748, -0.0149836624, 0.0209501293, -0.0223810021, 0.0416842774, 0.0271595754, 0.0022694848, 0.0220570303, 0.0462468714, -0.0350968651, -0.0109677706, 0.0147676812, 0.0324781, -0.0213955902, 0.0623104386, -0.024729792, -0.0170759764, -0.0142412288, 0.025620712, -0.0127158649, 0.0175754316, -0.0311822165, 0.000846205687, 0.0170489773, 0.0128171053, 0.00569986599, -0.0419002585, -0.0333690196, 0.0194787607, 0.0154831177, 0.0227184724, -0.0286444426, -0.0120274266, 0.039254494, 0.0147406841, -0.0630663708, -0.016805999, -0.0130128385, 0.0410093404, -0.0122366576, -0.00185608433, -0.0250402652, -0.0028246229, -0.0637143105, -0.00755932508, -0.00322115, -0.0171434693, -0.0259176865, -0.0114739751, -0.0446810126, -0.0212336034, 0.0315871798, 0.00921292789, 0.00860548206, -0.0309392381, 0.0159960724, 0.029994322, 0.000277568965, 0.0145112043, 0.0118249441, 0.00965163857, -0.00829501, 0.0232449248, -0.0117979469, 0.0156046068, -0.0195867512, 0.00165191502, -0.0117372023, 0.0043533612, -0.00196744944, -0.0128846, 0.0444380343, -0.00119042501, 0.0203966796, -0.0192762781, -0.027173074, -0.0342599414, 0.0281044915, 0.0553990528, 0.0065536648, -0.0111567536, 0.00820726715, -0.05251031, 0.0248512812, 0.00767406495, -0.0171974637, 0.00988786761, 0.0173054542, 0.0304802787, -0.015442621, 0.0228804573, -0.00253608613, 0.0080250334, -0.0297513437, -0.0164415315, 0.00107231049, 0.0236903857, 0.031425193, -0.0350968651, -0.0393624865, 0.0637683049, -0.0128306048, -0.0499455407, -0.0518083759, -0.00197757338, -0.00956389587, -0.0376886353, -0.0431151502, 0.0240683518, 0.00903069414, -0.0190333, -0.0150106596, 0.0153076332, 0.0118384426, 0.0129925897, -0.0339629687, 0.0189388096, -0.0192762781, 0.0384715647, 0.0313172042, 0.0204911698, -0.0236633867, 0.0332610309, -0.010319829, -0.0185878407, 0.0256747082, -0.0324781, -0.0230289437, 0.012364896, 0.0157530941, 0.018263869, -0.0202886891, -0.0524833128, -0.00488656387, 0.0172919556, 0.0235688966, 0.0180613883, 0.00698562618, 0.00305916439, -0.00595634338, 0.0132828141, -0.0221245252, 0.0447620042, 0.0117911976, 0.0192762781, 0.00719485758, -0.000741590047, -0.0112242475, 0.032883063, 0.017467441, 0.0132760648, -0.00151861447, 0.00795753952, 0.0135595398, -0.00297479681, 0.0207476486, -0.024000857, -0.00125454424, 0.0179533977, 0.0377426296, 0.00722185522, 0.0270920806, -0.00581460586, -0.00479882164, 0.0151996426, -0.00359742879, 0.0256747082, -0.000941540929, -0.0281044915, -0.000338102633, -0.0151591469, -0.0157665927, 0.0114604766, 0.0039214, 0.00542989, 0.00248884037, 0.000597743492, -0.00372566748, -0.0127428621, -0.000157767165, -0.0170759764, -0.0058483528, -0.00714761205, -0.0201267023, -0.00694513, -0.0171704665, 0.0472997762, 0.0176699217, 0.0087944651, 0.00784954894, -0.0128778499, -0.00217330595, 0.0159690734, -0.0142817246, 0.0100768507, 0.00504517462, 0.010272583, 0.0193572715, 0.0110892598, 0.00822076574, -0.0454099439, 0.00560874911, 0.0151186502, -0.00809252728, -0.00664478168, -0.0303722881, -0.0179263987, -0.00953689869, -0.0216115713, 0.00229816977, 0.02317743, -0.000229690428, -0.00620269636, 0.0151591469, -0.0108800288, -0.000897669874, 0.00333926431, 0.012952094, -0.0295353625, 0.00637143105, 0.0193437729, -0.0065772878, 0.00428249268, -0.00151186506, -0.0302103031, -0.00282293558, -0.0139037585, -0.0214900821, -0.00785629824, -4.33701498e-05, -0.0156856, -0.0134448, 0.0135932863, 0.0111162579, 0.00850424077, -0.0123783946, 0.026187662, 0.00671902532, 0.0137350233, 0.012081421, 0.098757185, -0.015280636, -0.000806131167, -0.0152131421, -0.00924667437, 0.0177914109, -6.40138169e-05, -0.0140387462, 0.0198432282, 0.016900491, 0.0100228554, -0.013681029, 0.0141602354, -0.00555475429, -0.0183853582, 0.0503235087, 0.0184663516, 0.0140522458, -0.0174134448, 0.0198027324, -0.0285634492, -0.0159420762, -0.00146377552, -0.0400644243, 0.0187093299, 0.012128667, 0.0163470414, -0.0303182937, 0.0109272748, 0.0090846885, 0.0272405688, 0.00176328, -0.0306422636, -0.0165360235, 0.0455449335, 0.0270515848, -0.00923317578, 0.00163672888, -0.0269030984, 0.0263766441, 0.012364896, -0.0292383898, 0.00922642648, -0.00986761879, -0.0172784571, 0.00205012946, -0.010954272, -0.0538061969, 0.00448834943, -0.000455584319, 5.19123569e-05, 0.0107585397, -0.0288604237, -0.0155506115, 0.0361497737, -0.0108260335, -0.0101578431, 0.0304802787, -0.0172244627, -0.032208126, 0.00604746025, -0.00179196498, 0.0208151415, -0.00513966614, 0.0175619312, 0.00516666379, -0.00997560937, -0.00176328, 0.0176969208, -0.0179399, 0.0144437104, -0.00176328, 0.00714761205, 0.00188814395, -0.0235283989, -0.00784954894, -0.0111567536, -0.0214900821, 0.00679664314, 0.0120611731, -0.0369327031, -0.0128373541, -0.0237848759, 0.016900491, -0.0264576375, 0.0170894749, -0.00355018303, 0.0234744046, 0.00139881263, -0.0110757612, 0.00345569151, 0.00487981411, -0.0399024375, 0.00521053467, -0.00689788396, -0.0216250699, -0.0130330864, 0.014362718, 0.0134515492, -0.0226104818, -0.0193437729, 0.0147271855, -0.0112917423, -0.00325827161, -0.00112377468, 0.000717545336, 0.0180343892, -0.0109947687, 0.016832998, 0.0440600663, 0.0102928309, -0.00122839038, -0.00869997311, 0.000512532366, 0.00739059038, 0.014997161, 0.0352318548, -0.00479544699, 0.0117574502, -0.00195901259, 0.0147811808, -0.0196812432, -0.0120004285, -0.0153481299, -0.0202616919, 0.00218005525, -0.0134515492, 0.0141062401, 0.0134380506, 0.0132220695, -0.0260796715, -0.0166845098, -0.00130600843, -0.00341013307, -0.0179533977, -0.0144707076, -0.0219355412, -0.00617232407, 0.0444380343, 0.0185743421, -0.00953689869, 0.041819267, -0.0284824576, 0.0228669588, -0.0483256839, 0.0503235087, 0.0165360235, -0.0132423174, 0.0183043666, -0.0152401393, 0.0167250074, 0.0140927415, -0.022731971, 0.0012022364, -0.0328020714, -0.0258906893, -0.0349348821, 0.0465978384, -0.0172784571, 0.00827476103, 0.0221110266, -4.30076352e-06, -0.0209636278, -0.034340933, -0.00308278715, 0.00852448866, 0.0353398435, 0.014997161, 0.0110420138, -0.0133300601, 0.0106977951, 0.0344219282, -0.00496080704, -0.0036716722, -0.00663128309, 0.00576736, -0.0112444963, -0.012364896, -0.042899169, 0.0442220531, -0.0312362108, -0.00364467455, 0.0188713148, -0.0157935899, -0.0261606649, 0.0072960984, 0.0175754316, 0.0141737349, 0.0197622348, -0.00254452275, 0.000873203273, 0.010225337, 0.0200322121, -0.0358258, 0.00959764328, 0.0172379613, 0.0147676812, 0.00645242399, -0.000221253678, -0.0140927415, -0.0282124802, -0.00858523324, -0.0191952866, -0.0228939559, 0.0164685305, -0.00346919033, 0.0246487986, 0.00603733584, -0.0255127214, 0.00293092593, 0.0219220426, 0.0180343892, 0.0186553337, -0.0127631109, -0.0121961609, 0.00418800116, 0.0250267647, 0.00833550561, -0.0166305155, 0.00057327695, -0.00296636019, -0.00120729848, 0.00254789763, -0.0179129, 0.0114064813, -0.0131545756, -0.00113642984, 0.00365817337, -0.0024905277, 0.0190333, -0.0299133286, 0.00294948672, -0.00153633161, 0.02609317, 0.0282124802, -0.015915079, -0.0222730115, 0.0126821175, -0.00167975633, -0.0362037681, -0.0237173829, -0.0094896527, 0.00755257579, -0.0260391757, -0.028374467, 0.00971913245, -0.0130735831, -0.00255127228, -0.00698562618, -0.0361227766, -0.0132558169, 0.00919942837, 0.00169747346, -0.00886870828, 0.00620269636, 0.000296762562, 0.00245171855, 0.00931416824, 0.0206261594, 0.0185878407, 0.0444650315, 0.016171556, -0.0107382908, -0.00116680213, -0.00207543978, -0.0151591469, 0.0604746, 0.00701262383, 0.0237173829, -0.00884171, -0.0388225354, 0.0461388789, -0.00253102393, -0.0162930451, 0.00735009369, -0.00485956622, -0.0176024288, -0.0104345679, 0.0131140789, 0.00768756354, 0.00753907673, 0.00580448192, -0.00705987, -0.000562731, -0.00234204088, 0.000306253904, -0.0624724217, -0.0021648691, 0.00568974204, 0.00340338354, -0.00353668421, 0.00385390595, 0.00722185522, -0.0224754941, 0.00096600753, -0.0598806553, -0.00579435751, 0.00265588798, 0.0407393612, 0.00676627085, -0.00382015901, 0.0136472816, -0.0137417736, -0.028536452, 0.0171974637, 0.0221245252, -0.0126416218, -0.000728091225, 0.0256747082, 0.00691138301, -0.0204911698, -0.00920617767, -0.0124053927, -0.0228129625, -0.00400576741, -0.0272270683, 0.0139982505, 0.00166878849, -0.0195057578, 0.0223675035, -0.00859873183, 0.0229749493, -0.0230829399, 0.000230534104, -0.0353398435, -0.0149701638, -0.0193707701, 0.0116427103, 0.0112107489, 0.0266196225, 0.0050418, -0.0102050891, 0.00538939377, -0.0112782428, -0.0288334265, -0.0233934112, 0.0245543085, 0.0277805198, 0.0269975904, -0.0390115157, -0.0223945, -0.0224889927, -0.0327480771, 0.029265387, -0.0091589326, 0.0106033031, 0.0421432368, 0.030723257, -0.0199917145, 0.0107787875, -0.00591922132, -0.0229479503, -0.0200727079, -0.0165765192, -0.00214968296, -0.0268086065, -0.018263869, -0.00453559496, -0.00171940902, 0.0256612096, 0.00229816977, 0.046732828, -0.00461658789, 0.000561043678, 0.00975287892, -0.0016940987, 0.0256747082, 0.00338819739, -0.0105965538, 0.0243923217, 0.0272270683, 0.00578085892, 0.0339629687, -0.038714543, 0.0200997051, 0.0167655032, 0.00413400587, 0.00249727699, -0.0578288361, -0.0158880819, -0.0073298458, 0.00430274103, 0.0123851439, -0.0168734938, 0.00289042946, 0.00977312773, 0.0495405756, -0.00812627468, 0.0132220695, 0.00772806024, 0.0155506115, 0.00512279244, 0.00522065908, 0.0288604237, -0.0266466215, -0.0112242475, -0.000827644835, 0.00475495029, 0.0177779123, 0.0367437191, 0.0178724043, -0.0245678071, -0.0245678071, -0.0107450411, 0.0175754316, 0.0275510401, 0.0159285776, -0.0149296671, 0.00247027935, -0.0212471038, 0.0251077581, -0.00432298891, -0.000426055718, -0.0196137484, 0.0259311851, -0.00084873673, 0.0112849921, -0.00490006246, -0.0201806985, 0.0370946899, 0.0308312476, 0.00160466926, 0.0578828305, -0.0251077581, -0.00429936592, 0.014457209, 0.00757282367, -0.00528477831, -0.00217161863, -0.00103350147, 0.0188443176, 0.0203966796, -0.00577410962, 0.0200862065, -0.0125741269, -0.00235891435, -0.027267566, 0.0433311313, -0.0167250074, 0.0314521901, 0.0205586646, -0.00695862854, -0.0251212567, 0.0180073921, -0.0312092137, -0.00134734844, -0.0122029101, 0.00284149637, 0.0110825105, -0.00529490225, 0.0413063131, -0.010718043, -0.0174539424, 0.0037459156, 0.0574508719, -0.00737034203, -0.00885521, -0.0238928664, 0.0276725292, -0.0261066686, -0.00161732431, 0.0360687785, -0.0161310602, -0.0283474699, 0.0161310602, -0.0237578787, 0.0100566018, 0.00501480233, -0.00268119806, 0.0034050711, -0.0163200423, 0.0199242216, 0.00114571024, 0.00961789116, -0.014457209, 0.00441073114, -0.00112124369, 0.016644014, 0.0376076438, -0.0125336312, -0.0173864476, -0.0105830552, -0.0282934736, 0.00701262383, 0.0107787875, -0.0141332382, -0.00546701206, -0.00771456119, -0.0162255522, 0.02698409, -0.00459633954, -0.0179399, -0.0147406841, 0.0131680742, 0.0103130797, 0.01231765, -0.0100026065, 0.0182368718, -0.0173999462, -0.012175913, -0.00498105539, -0.00803853199, -0.0288874209, -0.00564587116, -0.00861223135, 0.00581460586, -0.0175754316, -0.027173074, -0.0199377201, 0.020639658, 0.00104109454, 0.00655703945, -0.00814652257, -0.00360080344, 0.00088164, -0.00608458184, -0.00300010713, -0.00708011771, 0.0140387462, 0.0187768228, -0.0153211318, -0.00911168661, -0.0064153024, 0.0332610309, -0.0228669588, 0.0163470414, 0.0159285776, -0.00249221502, 0.0201267023, 0.0199242216, -0.0277535226, -0.0076605659, -0.0177104194, -0.0175889302, -0.00506542297, -0.0134043032, -0.0100026065, -0.00751207909, -0.00797778741, -0.011588715, -0.00617907336, 0.00211087405, -0.0166710112, -0.0202211943, 0.00680339243, -0.00591922132, -0.0250132661, -0.014457209, -0.00821401644, 0.000390199537, 0.0155641101, 0.0283474699, -0.00853123795, 0.00611495413, 0.00141990453, 0.00957064517, 0.00684388913, -0.00289211678, 0.0141467368, -0.0132018216, 0.0296433531, 0.0157395955, 0.000890920463, 0.0191682894, 0.0150781535, -0.00572011434, 0.00975287892, 0.0203831811, 0.000171793261, 0.0223270059, 0.00441748044, -0.0338279791, 0.00990811549, 0.0193437729, -0.00349956262, -0.0152941346, -0.0163470414, 0.000111997811, -0.0131005803, -0.0411983207, 0.0056559951, 0.040901348, 0.0166845098, 0.00716786, 0.00768081425, -0.00346919033, -7.27142105e-05, 0.00174134457, -0.0102523351, -0.00970563386, -0.0105763059, -0.0234204084, 0.0127698602, -0.0230559409, 0.00420824951, 0.0216385685, -0.0259986781, -0.0153346313, 0.00757957343, -0.0215845723, -0.00575386127, 0.00488318922, 0.0116764577, -0.00147643068, -0.00349281309, -0.0126753682, -0.0112782428, 0.00428924197, 0.00732309604, -0.00826801173, 0.0276995264, -0.00101156591, 0.00517341308, -0.027011089, 0.0146326935, 0.0156046068, 0.00894970074, -0.00753232744, -0.0202076957, 0.00316884206, 0.00942890812, 0.0137552721, -0.0271190796, 0.00277400226, 0.00479207234, -0.0181153826, 0.0356638171, -0.0209501293, 0.00957739446, 0.0194922592, -0.0298053399, 0.0133368094, 0.0312362108, 0.00447147572, -0.0315601826, -0.00681351684, 1.19432698e-05, 0.00648954557, -0.00894970074, 0.012175913, 0.00853798818, -0.0406853668, -0.00287186867, 0.0228939559, 0.010272583, -0.0220300332, -0.00192020356, 0.00298492098, -0.0378236249, 0.0206531566, 0.00355355768, 0.00198432291, 0.000797694433, 0.00392814912, 0.00102084631, -0.016077064, 0.00230829394, 0.00826126244, 0.0033578251, -0.0321271308, -0.0207476486, 0.0247702878, -0.0190063026, -0.00519028679, 0.00998910796, 0.00306760101, -0.0125066331, -0.044735007, -0.0159285776, 0.00708011771, -0.0101038478, 0.0176429246, 0.00480557093, 0.014713686, 0.0301023126, 0.0220705289, 0.0312092137, -0.0123311486, 0.00654354086, -0.045274958, 0.000103455604, 0.00782255176, 0.00300010713, -0.00242303358, -0.0230964385, 0.0176429246, 0.0301023126, 0.0087607177, 0.0165360235, 0.0164550301, 0.00602383725, -0.0150511563, -0.0378506221, 0.0173189528, 0.0363657549, 0.0275510401, -0.0332610309, 0.0155641101, 0.0153886257, -3.55134325e-05, 0.00796428882, 0.00965163857, -0.0370406918, 0.00519366143, -0.0247972868, -0.0266736187, 0.020356182, -0.00509242, -0.00173796981, 0.0176429246, -0.0197622348, -0.0151726454, -0.00818027, -0.0236363895, 0.00352993491, 0.00934116635, -0.00772806024, 0.0299673248, -0.00776855648, 0.0235958938, -0.0268761013, -0.00297985901, 0.0198027324, -0.0010790599, 0.0133570572, 0.0339629687, -0.0117237037, 0.0357718058, 0.00793054234, -0.00672577461, 0.0121624144, -0.0010512186, -0.00351981074, -0.00957064517, -0.00337301125, 0.00793054234, 0.00807227939, -0.007134113, -0.00926017296, 0.0012857602, 0.017372949, 0.0231099371, -0.00101494067, -0.016171556, -0.00157682796, -0.0175079368, 0.0201537013, 0.0101578431, 0.00925342366, 0.0444920287, -0.00267444877, -0.00254452275, 0.00182233728, 0.016900491, -0.0246083029, 0.0162255522, -0.0434931181, 0.0128238555, -0.00473470241, -0.00573361292, 0.029994322, -0.0100498525, 0.0135730384, 0.0159555748, -0.0327210799, -0.0213550925, -0.012648371, -0.0049743061, -0.0121016698, -0.0276995264, 0.0213145968, -0.00319077773, 0.0281314887, 0.0313981958, -0.000859282678, -0.00805203151, -0.00815327186, -0.00447822502, -0.00370541913, -0.0209636278, -0.0295623615, -0.00793729164, -0.0065604141, -0.00594959361, 0.00128238555, -0.0139847519, -0.0121084191, 0.00373579143, -0.0112579949, 0.017467441, 0.0196002498, 0.0071273637, -0.0110150166, -0.00443097949, -0.0410633348, 0.00197251141, 0.00987436809, 0.0025715204, -0.00832200702, -0.0139172571, 0.00216824398, 0.0034624408, -0.011143255, 0.00332914037, -0.0135797877, -0.0240683518, 0.0189523082, 0.0060440856, 0.00892945286, 0.0207476486, 0.0143087227, 0.0169544872, 0.00222730124, 0.00389440241, 0.00205519143, 0.0225969832, 0.0143222213, -0.00741758756, 0.0127496114, 0.0107315416, -0.00336794928, 0.00799803622, 0.0524833128, 0.0333690196, -0.0269975904, -0.0454099439, 0.00470095547, -0.0074985805, -8.34183302e-05, -0.0098136235, -0.00285162032, 0.0257557, -0.0132558169, -0.0362847596, -0.00645242399, -0.00649966951, 0.00730959745, -0.0290494058, -0.0159960724, -0.00340675842, -0.00636130711, 0.0105628073, 0.0151996426, -0.0010326578, -0.0105830552, 0.00667177932, 0.013822766, 0.0327480771, -0.00955714658, 0.021368593, -0.0167925, 0.011730453, 0.00453559496, -0.00364467455, 0.0198297296, 0.0011094322, -0.0147676812, -0.000681689125, 0.00318234088, 0.0229344517, -0.0087134717, -0.0134717971, 0.0140387462, -0.0306962598, 0.00322621199, -0.0161175616, -0.00957064517, -0.0178859029, 0.0474347658, 0.0179668963, 0.0456259251, 0.00919942837, 0.00890920497, -0.00620944565, 0.000368053064, -0.0184258558, -0.0114267301, 0.0167790018, -0.0150646549, -0.0120071778, 0.019087296, -0.00505529856, -0.00462333718, -0.00878771581, 0.000736106129, 0.0177509151, 0.0146596916, -0.00172953308, 0.0349618793, -0.003202589, -0.000579182641, 0.000174535206, -0.00478869723, -0.00537927, -0.00934116635, 0.0281314887, -0.0214495845, -0.0268491022, 0.00955039728, -0.00255127228, 0.00747158285, -0.00598334102, -0.0112107489, 0.0275105443, 0.0143492185, 0.00905094203, -0.000411080488, -0.0126348715, 0.022003036, -0.00157682796, 0.00926692225, 0.0047650747, 0.0232584234, -0.00806553, -0.014268226, -0.014713686, 0.0142277293, -0.00625331653, 0.0272135697, 0.0108732795, -0.00143846532, -0.00187801977, 0.00428249268, 0.00741083827, 0.00400914205, -0.0100701014, -0.00517678773, -0.00187970721, 0.0143492185, -0.0308042504, -0.00513291685, -0.000129504057, -0.00623306865, 0.0187363271, 0.00144690205, 0.0277535226, -0.00245171855, 0.000484269258, 0.0115212211, 0.0444110334, -0.0019910722, -0.00340169622, 0.0141872335, 0.00526790461, -0.00630393717, 0.000973600603, 0.00012275466, 0.00636130711, 0.00259008119, -0.0072893491, 0.00390790123, -0.00757282367, 0.0043601105, -0.0177104194, 0.000900200859, -0.00534214824, 0.00449847337, 0.018898312, 0.0259851795, 0.00619932171, 0.0160230696, -0.0224889927, 0.0231234357, -0.00367504684, -0.00349618797, -0.0280774925, -0.0182908662, 0.0132288188, 0.0121084191, -0.00201806985, 0.00216824398, -0.0113052409, 0.0180478878, -0.015442621, 0.024891777, -0.00519703608, 0.0317761637, 0.00621956959, 0.00264913845, 0.0138160167, 0.00346581568, 0.00932766683, -0.00192020356, -0.009496402, 0.0175079368, -0.00682364078, -0.00631743576, 0.00677302, -0.0338819735, -0.00616219966, -0.010765289, -0.0066009108, 0.0339899659, -0.0037459156, -0.00942890812, -0.0174809396, -0.0185743421, 0.0188038219, 0.000258164451, -0.0133030619, 0.00950990058, -0.00794404093, -0.0147676812, 0.010036354, 0.0136742787, 0.010508812, -0.00816002116, -0.0106168017, -0.00194213912, 0.0137350233, -0.0139172571, 0.00904419273, -0.0120544238, 0.00624319259, 0.00878096558, -0.0116562089, -0.0184258558, 0.00705312, -0.00761332037, -0.00315196859, 0.0133840553, -0.012081421, 0.0129385944, 0.00280268723, 0.00126635574, -0.0122366576, 0.0120611731, 0.00433986261, -0.00492706, 0.000113052403, 5.91099561e-05, 0.0313172042, 0.00400239276, 0.00128238555, 0.0191682894, 0.015915079, 0.00516328914, 0.000536577078, 0.010461566, 0.0115212211, 0.0254317299, 0.0150646549, -0.0153616285, 0.0125066331, -0.0077010626, 0.00296973484, 0.00869997311, 0.00300179445, -0.00429261662, 0.000663550105, -0.0284284614, 0.0215710737, -0.0165765192, -0.0151186502, -0.0226104818, -0.0147676812, -0.0146191949, -0.0124458885, -0.00470433, -0.0205721632, 0.0212201048, 0.00745808426, -0.0391195081, -0.00940866, -0.00381340948, -0.0010908714, -0.000643723761, -0.00983387232, -0.0211121142, 0.0120206764, -0.000843674701, 0.0100566018, -0.00824101456, -0.000242134629, -0.00412388192, -0.00320933852, -0.0167250074, -0.0255937148, 0.00832875632, 0.0259446837, -0.00759982131, -0.0149026699, 0.000461911899, -0.00631743576, -0.011001518, -0.0125471298, -0.0189523082, 0.0201537013, -0.0069248816, -0.00520716, -0.0193032771, -0.00718135899, 0.0126956161, -0.00395514676, 0.0197622348, 0.00635455782, 0.00396864582, 0.0252427459, -0.000850845885, -0.000777024368, 0.0170354787, -0.0199917145, -0.010508812, -0.000597743492, 0.0285634492, 0.00629381323, 0.0156586021, -0.0147406841, 0.0165090263, -0.0149566643, 0.00157176587, 0.0107315416, 0.0154831177, 0.00975287892, 0.0112512456, -0.00327177043, 0.00209062593, 0.00408001058, 0.0138092674, 0.00620944565, -0.00854473747, 0.012364896, 0.00339157227, 0.000365943881, -0.00549063459, -0.0203291848, -0.0149836624, 0.0060508349, -0.0060508349, 0.00316378, 0.0393624865, 0.000880796346, -0.00626344094, 0.0126956161, 0.00556825288, 0.00751882885, 0.018547345, -0.0013903759, -0.00693163136, -0.0194652621, -0.0146326935, -0.0117776981, -0.0105830552, -0.0069653783, -0.0036480492, 0.0228534602, -0.00193707703, 0.00446810108, 0.00112461834, -0.0157395955, -0.00300685666, 0.00905769132, -0.0074985805, 0.0218005534, 0.0124323899, 0.00732309604, 0.00957064517, -0.0122771543, -0.00753232744, -0.0146461921, -0.0119396839, 0.0049743061, -0.00829501, -0.00165191502, 0.0190333, 0.00709361676, 0.00306928856, 0.00254283543, 0.00803853199, -0.00855148677, 0.00509917, 0.0141737349, 0.0240413528, 0.016994983, 0.01085978, -0.0116089638, 0.0105425585, 0.0144842071, -0.0127293635, -0.0207206495, -0.00148318009, -0.0353938416, -0.0178994015, -0.00460983859, 0.00158104638, 0.00597996591, -0.00751882885, -0.0112647442, -7.11850498e-06, 0.0185743421, 0.00449847337, -0.0201672, -0.00436348561, -0.00465708412, -0.00388090359, 0.00183246145, 0.00718810828, 0.00150427199, 0.0087134717, -0.000314901583, 0.00957064517, -0.00861223135, 0.00454234425, 0.0115819657, -0.00928717107, -0.00406651199, 0.00603058655, 0.0128980987, 0.00334432651, 0.00473470241, 0.00165866443, 0.0129250959, -0.00487643946, -0.0098136235, -0.012364896, -0.0126011251, 0.0129453447, -0.0126888668, 0.0126753682, -0.0127698602, -0.014997161, 0.00378978672, -0.0112782428, -0.00284487102, 0.00795079, -0.00894970074, 0.00994186196, -0.00930741895, -0.0203426834, -0.000246774842, -0.00735009369, -0.0145382024, -0.00456596725, 0.011237747, 0.0170759764, -0.0149026699, -0.00513966614, 0.0155641101, -0.00313003315, 0.00865272712, 0.00905769132, 0.00994186196, 0.0183178652, 0.00163504155, 0.00841649901, 0.0227184724, 0.0072826, -0.0178049095, 0.0209366307, -0.00780230341, 0.00288368, 0.0106775463, 0.00646592258, 0.00517678773, 0.00844349619, -0.00997560937, 0.00306928856, -0.0121556651, -0.000970225898, 0.00476844935, 0.00663465774, -0.000403909246, -0.00293430057, -0.00154392468, 0.00382015901, 0.00484944182, 0.0107855368, -0.00640517799, 0.0119261853, -0.0225294884, -0.0213955902, -0.00568974204, 0.0129790911, -0.0150781535, 0.0142817246, 0.0072893491, -0.0154021252, -0.0171299707, -0.00325152231, -0.0175214354, -0.00196913676, 0.00359405414, 0.0147001874, -0.012952094, -0.00285668252, -0.0218545496, -0.0100701014, 0.00607783254, -0.00358393, -0.00703287218, 0.00961114187, 0.0153211318, -0.0138497632, -0.00991486479, 0.0342869386, 0.0114334794, -0.00232854206, 0.00776855648, -0.000146377555, 0.00829501, 0.00270144641, 0.0235823952, -0.00702612288, -0.00857848395, 0.00890245475, -0.00668527791, -0.0271325782, -0.00077786803, 0.00770781189, -0.000419095391, -0.00922642648, -0.012412142, -0.00693838065, 0.0113457367, -0.0134313, -0.037256673, -0.00332407816, 0.00707336841, 0.0108057857, -0.00722860452, -0.00946940482, -0.00966513716, -0.00596984196, 0.00174978131, 0.00764706731, 0.00824776385, 0.00979337562, -0.00348943844, -0.00413400587, 0.0205181688, 0.00202650647, -0.0185878407, -0.00508229621, -0.0119734313, 0.00324646, -0.0115819657, 0.0073298458, -0.0186958313, -0.00811952539, -0.00796428882, 0.00872697122, -0.00586185185, -0.00281618605, 0.00284824567, 0.0259581823, -0.00325152231, 0.00265420042, 0.0161985531, 0.00940866, 0.00930067, 0.0109745199, 0.00138953223, -0.00478194794, -0.0236093923, -0.016832998, 0.00994186196, -0.00877421629, 0.00530165154, -0.027807517, 0.0049743061, 0.00956389587, -0.00189151859, 0.0122434068, 0.0230154451, 0.00782255176, 0.00996211078, 0.0200187135, -0.00296467287, -0.0120949205, 0.00725560216, -0.0100161061, -0.00505529856, -0.0112242475, -0.0228264611, 0.0164685305, 0.00608120719, 0.00313003315, -0.0235688966, 0.0147811808, 0.00684726378, -0.00389440241, -0.0117641995, -0.00152873853, 2.47433964e-05, -0.00390452635, -9.96590679e-05, 0.0132423174, 0.0105155613, 0.00693163136, 0.00669877697, 0.00460983859, 0.00405638805, 0.0150241582, -1.02691029e-05, -0.0198027324, -0.00244496926, 0.00150342833, 0.0268356036, -0.00420149975, -0.00318571553, 0.00103687623, -0.0127428621, -0.00724210357, -0.00283474685, 0.00329876808, 0.0131140789, 0.0053151506, -0.00828151, -0.0131950723, -0.0183178652, 0.0129453447, 0.0227994639, 0.0315061882, -0.0117641995, 0.0042149988, 0.0194247663, 0.0216250699, 0.00337132392, -0.00965163857, 0.0192762781, -0.0106033031, 0.0134245511, -0.0122839035, 0.0174134448, -0.0118654408, -0.0160500668, 0.00697212759, 0.00249390234, 0.0223000087, -0.02317743, -0.00283474685, 0.00845699478, 0.0246353, 0.0222325157, -0.0215980709, 0.00668190327, -0.0322621204, 0.00759307202, 0.00368854566, -0.000639083562, 0.00491693616, 0.0116427103, -0.0147406841, -0.016171556, -0.00613520201, -0.00493043475, 0.0257287025, 0.0225159898, 0.0016966298, 9.0062269e-05, 0.00645917328, -0.0182503704, 0.032154128, -0.00412050728, 0.00709361676, 0.00440735649, -0.0036480492, 0.00469758082, 0.0146866888, -0.000523078314, -0.00803178269, 0.0161985531, -0.000708264881, -0.0157125965, 0.00493718404, -0.000283474685, -0.0115009733, 0.00445122737, 0.000592259632, -0.0167790018, 0.0116899563, 0.0379046164, 0.0160365682, 0.00182571204, -0.000885858433, 0.00376616372, 0.0215710737, 0.010907026, -0.0196947418, 0.012810356, 0.0109947687, -0.023433907, -0.00404963829, -0.0430611558, -0.0334500149, 0.00994186196, 0.00193370238, -0.000872359611, 0.000939853606, -0.0101983398, 0.0232989192, 0.0385795571, -0.0033004554, 0.0208556373, 0.00794404093, 0.0284554586, -0.0216655657, -0.0123986434, -0.0189523082, 0.0056559951, -0.00934116635, -0.00824101456, -0.0101240957, 0.0182233732, -0.00928042177, -0.00403276505, 0.00857173465, 0.00934116635, -0.000113474242, 0.0136067849, -0.00470433, 0.00543663977, 0.00676627085, 0.0074918312, -0.00942215882, -0.0230694395, -0.032883063, 0.0296433531, 0.0124256406, -0.018992804, -0.00201638252, 0.00257489504, -0.0142142307, 0.0214765817, 0.00604746025, -0.0149566643, 0.0138160167, 0.0128036067, 0.00644904934, 0.0151726454, -0.000396948948, -0.0204236768, 0.00793729164, 0.0323701091, 0.00631406112, -0.00170928484, 0.0063916794, 0.00298998295, 0.000548388518, -0.022003036, 0.010272583, 0.00676964549, 0.0275105443, 0.00929392, -0.00945590623, -0.00400914205, -0.0195057578, 0.00850424077, -0.0179533977, 0.0387955345, -0.00387077942, 0.00890920497, 0.0320191421, -0.00382353365, -0.00597659126, -0.00760657107, 0.00339494692, 0.0282394793, -0.0242978316, 0.0121354163, -0.00679326849, 0.00697887689, 0.0165225249, -0.00873372052, -0.00369192031, 0.0293463804, 0.012364896, -0.00304397824, -0.0171029735, -0.00404288899, 0.0347728953, -0.00620269636, -0.0190602988, 0.00397202047, -0.0245273095, -0.0050890455, 0.00144268374, -0.0115009733, 0.0131545756, -0.011352486, -0.0202481914, -0.00587535044, -0.00323296129, 0.0198972244, 0.00403276505, 0.0111500043, -0.0164685305, 0.00938841142, -0.000229268597, 0.00676627085, 0.0212876, 0.000717123447, 0.0125538791, -0.00600696355, -0.0160635654, -0.00399901811, -0.0177914109, -0.00706661912, -0.00208050176, 0.00436686026, 0.00913868379, 0.0198027324, 0.00442423, -0.0168869924, -0.0119464332, 0.00767406495, 0.00230660662, -0.00187633245, -0.0169409867, 0.0107585397, -0.0256072134, -0.0189523082, 0.0256072134, -0.00918593, -0.0062128203, 0.00133131864, 0.000736106129, 0.00892945286, -0.00147727435, -0.00257320772, -0.00774155883, -0.00108412199, 0.010765289, -1.77830807e-05, 0.00171012862, -0.00936816353, 0.00738384062, 0.0148891704, -0.0166170169, 0.0221785195, 0.0142547274, -0.00830175914, -0.012904848, 0.0142277293, -0.000250360463, 0.0171839651, 0.0120746717, -0.0022003036, 0.00699912524, 0.00090695027, -0.00196744944, 0.0153886257, -0.0180208907, 0.00686751166, 0.0113322381, -0.027807517, -0.014551701, 0.0367707163, 0.00101915898, -0.000126656654, -0.021179609, 0.0201672, -0.0100093568, 0.00877421629, -0.0228669588, -0.020450674, 0.0108260335, 0.012952094, -0.0117844483, 0.00532864919, -0.00896995, 0.00400914205, -0.00192020356, -0.0161985531, -0.00229816977, -0.0023049193, 0.00742433732, 0.0198837239, -0.00544338906, -0.00589897344, 0.0125673776, -0.00799803622, -0.00399226835, -0.0141332382, 0.00869322382, -0.0105223106, 0.0206126589, -0.01154147, 0.0073298458, -0.000732731482, -0.00270988303, -0.0176699217, -0.00629718788, 0.0113389874, -0.0049439338, -0.00551763223, 0.0117776981, -0.0282934736, 0.00704637077, 0.00835575443, 0.00778205507, -0.000211973267, 0.0302373, -0.0284284614, -0.0207881443, 0.000518859946, 0.0121961609, 0.00917918049, -0.0147946794, -0.00524090696, 0.0285904482, 0.00173796981, 0.00499792863, -0.0116764577, -0.01231765, -0.00519028679, 0.00774155883, 0.00784954894, 0.0168599952, 0.00332407816, 0.0072826, 0.00881471299, 0.0245543085, 0.00519703608, -0.0204911698, -0.0265116338, 0.00240953476, 0.00174809399, 0.0147676812, -0.00642880099, -0.0138767613, 0.000302246452, 0.0198837239, 0.00452884566, -0.0138025181, -0.0218410492, 0.0130128385, -0.00110690121, -0.00481906952, 0.00911168661, 0.00465370947, 0.00910493731, -0.0222460143, 0.00496080704, -0.00938166212, 0.019816231, 0.00759982131, -0.000129398599, -0.00474482635, 0.011635961, 0.00455921795, 0.000991317793, 0.00167891255, -0.00575723592, 0.00273519335, -0.00339157227, -0.00303554139, 0.00985412, 0.0167790018, -0.0105965538, 0.0320731364, -0.00932766683, -0.035069868, 0.018992804, -0.0012182662, 0.0031215963, -0.00701262383, 0.016738506, -0.00867972523, 0.00391465053, -0.000814146071, 0.0245003123, 0.00913868379, 0.0179803949, 0.0218815468, 0.00312497094, 0.015442621, 0.0132828141, -0.0360687785, -0.00416775281, 0.00252933661, 0.0280234981, -0.00388090359, -0.0144167133, -0.0232314263, 0.00387752871, 0.0047650747, -0.0087944651, 0.0212876, -0.00757957343, -0.0191547889, -0.0114334794, -0.0077010626, -0.00903744344, -0.00888895616, 0.0204236768, 0.0193842687, -0.00244496926, -0.0117709488, -0.0099013662, 0.0134515492, -0.00546701206, 0.0126213729, -0.00197588606, 0.00407663593, -0.00283474685, 0.0067392732, -0.00589559879, -0.00442423, 0.0195597541, 0.00835575443, -0.00700587453, 0.00913868379, 0.0183448624, 0.0102590844, 0.000547966687, -0.0136202844, -0.000716701616, 0.00679664314, -0.00664815633, -0.00111280684, -0.0169544872, 0.00269300956, -0.0104885632, -0.0197892338, -0.00820726715, -0.000639927224, 0.011190501, -0.0119261853, -0.00793729164, 0.0103130797, -0.0144167133, 0.0116292117, 0.0101105971, 0.00077238417, -0.0252427459, -0.0139982505, 0.00862573, 0.00703287218, -0.0105020627, -0.0183313638, -0.0120071778, -0.0130600836, 0.0101443445, 0.0178319085, 0.0201267023, -0.0253912322, 0.00362105179, -0.00596984196, -0.00217330595, 0.0100768507, -0.00120561116, -0.00648954557, -0.0225024913, -0.0153751271, -0.0582608, 0.00148402376, 0.0172244627, 0.00959764328, -0.009449156, 0.00179533975, -0.0023049193, -0.00482244464, 0.00911168661, 0.0165090263, 0.0179803949, 0.0251482539, -0.016266048, 0.00681014219, 0.0051295422, 0.00140724937, -0.00789004564, -0.00186620839, 0.0235688966, -0.011143255, 0.0188578162, -0.00327008311, 0.00928042177, 0.00360417832, 0.0168464966, 0.0293733776, -0.00707336841, -0.0280234981, -0.0107517904, -0.0178319085, 0.000355608878, 0.0109677706, 0.0116562089, -0.0130263371, -0.00555475429, -0.0034624408, -0.0199377201, -0.00373579143, 0.00199782173, -0.00832200702, -0.0147406841, -0.00104362553, -0.0313981958, -0.0128508527, 0.000120645476, 0.0170624759, 0.0180478878, 0.00139881263, -0.010954272, 0.00590909738, -0.0205046702, 0.0177509151, -0.0280774925, -0.0121894116, -0.0210446212, -0.0118181948, -0.016832998, -0.0283204708, 0.000545435701, 0.00961789116, -0.00774830813, -0.0101915905, 0.00878771581, -0.00402264064, 0.0184258558, 0.0239603613, -0.0181153826, 0.0209096335, 0.00714761205, 0.0344219282, -0.0201941971, -0.013093831, -0.00411713263, 0.0166575126, -0.00554463, 0.00691813231, -0.00161648064, -0.0100093568, -0.00347256497, 0.00857848395, 0.0224754941, -0.0005673712, 0.0286174454, 0.00226779748, -0.00427911803, 0.00539951771, 0.00298660831, -0.00940866, 3.02668286e-05, 0.000837347121, 0.0157395955, -0.0359067954, -0.00187464512, -0.00471107941, -0.00216655666, 0.0356908143, 0.0026525131, -0.00348943844, 0.0157530941, -0.00539951771, 0.0249052756, -0.00164854026, -0.00570324063, 0.00878096558, 0.023460906, -0.0204101782, 0.0148621732, 0.0282664765, -0.0167790018, 0.00423187204, -0.00129925902, -0.000933947857, -0.00903069414, -0.00697212759, 0.0245678071, -0.000828910386, 0.0121421656, 0.00449172407, -0.0167925, 0.00192357821, 0.00984062161, -0.0303182937, -0.000319330866, 0.00605420955, 0.0238523707, 0.00321102585, -0.00688101072, 0.000888389419, -0.0107112937, -0.0198567268, 0.0100836, 0.005453513, 0.00847724359, -0.0359877869, -0.0141602354, -0.0212876, -0.0174809396, 0.0155101148, -0.0107045444, -0.0100093568, -0.00470770476, -0.0127563607, 0.00936141424, -0.00510254456, 0.0032076512, 0.00127816712, -0.0016476966, -0.00845699478, -0.0201806985, -0.0178454071, 0.00273688068, -0.00874721911, -0.026255155, 0.00726235146, -0.0112984916, -0.00350293727, 0.00642880099, -0.0127361128, 0.0222325157, -0.00514979, 0.00530165154, 0.0040361397, -0.00229985709, 0.0121826623, 0.00578760821, 0.00377628789, -0.00231673056, -0.00620944565, -0.0309932325, -0.0182233732, 0.0206936523, 0.0101375952, 0.00392814912, 0.0244463179, -0.0142277293, 0.00193876436, -0.0056391214, -0.00849749148, -0.00842324831, -0.00188308186, -0.00463008648, 8.5105683e-05, -0.0218815468, 0.00249727699, -0.00507554691, -0.0274835471, -0.00319415238, -0.010461566, -0.00298323366, -0.00935466494, 0.0358798, 0.00955039728, -0.0207476486, -0.0131275775, 0.0220165346, 0.00116511469, -0.00483594323, 0.0240548532, -0.00998235866, -0.00241628429, -0.00536577078, 0.00127479248, 0.000453896966, -0.0064423, 0.00109846448, 0.0109677706, -0.0202211943, 0.012999339, 0.0185203459, -0.0169409867, -0.0186688341, -0.0138767613, 0.000748761289, -0.00888220686, 0.00789004564, -0.0109475227, -0.0163875371, 0.000723451, -0.00462671183, -0.00389777706, 0.0110285152, 0.000889233081, 0.0223405063, 0.00409013499, 0.00398551906, 0.0100633511, 0.00778205507, 0.0295353625, 0.00152536377, -0.00334938848, 0.00120476738, -0.00892270356, 0.0180073921, -0.0318571553, -0.00980012491, 0.0184798501, 0.00725560216, 0.0195867512, 0.00827476103, 0.00591922132, 0.0190333, 0.0102388356, -0.0117911976, 0.00598334102, -0.027996501, 0.00839625, 0.0502695106, -0.0210041255, -0.00481232, -0.00797103811, 0.00346919033, 0.0119801806, 0.0140657444, 0.000609976763, 0.0112849921, -0.0176969208, -0.00766731566, 0.0200727079, 0.00194213912, 0.0327210799, 0.00370204449, -0.00961114187, 0.015186144, -0.00629043858, 0.0073365951, -0.00626006629, 0.00899694674, -0.00973938, 0.0148081779, 0.00255127228, 0.0004328051, -0.00428924197, -0.0298593342, 0.0103670741, 0.0101578431, -0.0040293904, -0.00328695658, 0.00572348898, 0.00133891171, -0.00199782173, -0.00350968656, -0.00556487823, 0.00849749148, 0.00241628429, 0.00283980905, -0.0111162579, -0.0195057578, -0.0201132037, -0.00956389587, 0.00192695297, 0.0160905626, -0.0282664765, -0.00458959024, 0.00276050344, -0.029994322, 0.00425886968, 0.0034860638, -0.0133165615, -0.0159015805, 0.0072893491, 0.0155776097, 0.00874721911, -0.0121556651, 0.0027503795, -0.0261471663, -0.0202346928, 0.00523078302, -0.0143492185, 0.00247702887, -0.0197622348, -0.0172244627, 0.0159690734, 0.00215643249, -0.00429936592, 0.00768756354, -0.0238928664, -0.0079845367, -0.00429936592, 0.0119059375, 0.00510929385, -0.00418462651, -0.00168650562, 0.00587535044, -0.00298492098, 0.00399901811, -0.0158070885, -0.00567624299, -0.00526790461, 0.00148992951, -0.0170894749, -0.00234541553, 0.00677639479, -0.0161850546, 0.00554463, -0.00208218908, -0.0020838764, -0.014362718, -0.0110082673, 0.0035670565, -0.0106033031, -0.0106640477, -0.00407326128, -0.0109407734, -0.0293733776, 0.0141872335, -0.0163065437, -0.00992836338, 0.00428249268, -0.00273519335, -0.008720221, -0.0208826363, -0.0011836756, -0.00828826, 0.0168869924, 0.00561212376, 0.0021024372, -0.013681029, -0.0108530307, 0.0263091512, -0.00990811549, 0.00857173465, -0.0333420224, -0.00965838786, -0.0306692626, -0.0051059192, -0.0139847519, 0.000500299095, -0.0102320863, -0.00320596388, 0.000512954197, -0.0047414517, -0.0170894749, 0.0149836624, 0.0678719431, 0.0142277293, 0.0130398357, -0.0261471663, 0.00950315129, -0.0326940827, -0.0163605399, 0.0346109085, -0.00412388192, 0.01377552, -0.0364197493, -0.017534934, 0.00945590623, -0.0172514599, -0.034880884, -0.0117439516, -0.0181018841, -0.0121556651, 0.0112782428, -0.016805999, 0.00266938657, 0.000248462195, 0.0146056963, -0.00470433, 0.0170219801, -7.64052893e-05, -0.0130263371, 0.00677302, -0.00896995, 0.022542987, -0.0208151415, 0.0161310602, 0.00447147572, 0.0193167757, -0.00465033483, 0.00836925302, 0.00772806024, 0.0127226142, 0.00257995725, -0.00493718404, 0.00469420571, 0.0189388096, 0.00548726, 0.0150511563, 0.00352656, 0.0138092674, 0.00800478552, 0.00866622664, 0.0167520046, 0.008720221, 0.00690800836, -0.00661778403, 0.00890245475, -0.00247365423, 0.00389440241, 0.00277062762, 0.0115077225, -0.00998910796, 0.0041745021, 0.0292113926, -0.00899019744, -0.00455921795, 0.00874721911, -0.00611157948, 0.00953689869, 0.00917918049, -0.0193707701, 0.0163335409, -0.012128667, -0.00120729848, -0.0225024913, -0.00930067, 0.00298829563, 0.00773480954, 0.00553788058, -0.00405976269, -0.00578085892, 0.00162660482, 0.0118586915, -0.0136202844, -0.00454571936, 0.0101578431, -0.00714761205, -0.0267951079, 0.0173864476, -0.0183178652, 0.00403951434, -0.0130330864, -0.00237241318, 0.0222055167, -0.00657053851, 0.027645532, 0.0158340856, 0.0151051516, 0.0176159274, 0.00836925302, -0.00205181679, -0.0113794841, -0.00246184273, -0.00117270777, 0.00860548206, -0.0198567268, 0.00652666716, 0.011204, -0.0148351751, 0.0194787607, -0.00753907673, 0.00377966254, 0.0427101851, -4.08654923e-05, 0.0270515848, -0.0179533977, -0.00259345607, 0.0152401393, 0.0212471038, 0.0113052409, 0.0137215247, 0.0118316934, -0.00434661191, 0.000549654069, 0.0178859029, 0.0024483439, -0.00824101456, -0.000858017127, 0.0272135697, 0.000814567902, 0.00944240671, 0.00799803622, 0.00527127925, 0.000452209613, 0.00168566196, -0.0243653245, -0.0126146236, -0.0128238555, 0.0113052409, 0.00556825288, 0.000581713684, -0.0113659855, -0.00888895616, 0.0245138109, 0.00475832494, 0.0180208907, 0.0180073921, 0.0148891704, 0.00553113129, 0.0185338445, -0.00334770116, 0.00225429866, 0.00677977, -0.00382015901, -0.0110420138, 0.0221110266, -0.00168650562, -0.0150646549, -0.0213145968, -0.0111770025, -0.00569311669, -0.0286984369, 0.0103603248, -0.0141467368, -0.011048764, 0.00324139814, 0.0300483163, -0.00561212376, 0.0126686189, -0.0109880194, -0.00605758419, -0.00897669885, 0.00699237594, 0.000867297582, -0.000776180706, -0.0069248816, -0.00226779748, 0.00695187924, -0.0134515492, -0.0232854206, -0.0181018841, 0.0110555133, 0.000544170151, 0.00996886, -0.0200322121, 0.0119059375, 0.000841143657, 0.0414413, -0.0078428, -0.0509174541, -0.0124458885, 0.00317390403, 0.0140252477, 0.0296703503, -0.00755932508, 0.0087539684, -0.0245138109, -0.0130735831, -0.0172649585, -0.0156181054, 0.012223159, -0.00170675386, -0.0227724668, -0.00317559158, 0.0122636547, 0.0175619312, 0.0335580036, 0.0101173464, 0.00819376856, 0.019721739, 0.00349281309, -0.00956389587, 0.01154147, -0.0244868137, -0.00267444877]
|
12 Feb, 2025
|
Randomly Select Items from a List in Java
12 Feb, 2025
In this article, we will explore how to efficiently select an element from a list in Java. The basic approach involves generating a random index between 0 and the size of the list, and then using that index to retrieve the item.
Different Ways to Select Items from a ListBelow are the different approaches to selecting random elements from a list.
1. Select a Single Random itemThe easiest way to select a random item is by generating a random index using the Java Random class.
Example: This example demonstrates how to select a single random element.
Java
// Randomly select an element from a list
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class Geeks {
public static void main(String[] args)
{
// creating a list of integer type
List<Integer> l = new ArrayList<>();
l.add(10);
l.add(20);
l.add(30);
l.add(40);
l.add(50);
Geeks o = new Geeks();
// take a random element from list and print them
System.out.println("Random Element: "
+ o.getRandomElement(l));
}
// Function select an element base on index
// and return an element
public int getRandomElement(List<Integer> l)
{
Random r = new Random();
return l.get(r.nextInt(l.size()));
}
}
OutputRandom Element: 50
2. Selecting a Random Element in a Multi-threaded EnvironmentIn multi-threaded applications, if multiple threads use the same Random object, they might interfere with each other and cause unexpected results. To fix, this Java provides ThreadLocalRandom class, which gives each thread its own random number generator and prevent any interference.
Example: This example demonstrates how to randomly select an element from a list using ThreadLocalRandom.
Java
// Java Program to demonstrate the working
// of ThreadLocalRandom class
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ThreadLocalRandom;
public class Geeks {
public static void main(String[] args) {
List<Integer> l = new ArrayList<>();
l.add(10);
l.add(20);
l.add(30);
l.add(40);
l.add(50);
Geeks o = new Geeks();
System.out.println("Random Element: " + o.getRandomElement(l));
}
public int getRandomElement(List<Integer> l) {
return l.get(ThreadLocalRandom.current().nextInt(l.size()));
}
}
OutputRandom Element: 50
3. Selecting Multiple Random Items With RepetitionsSometimes, we want to select multiple random items from a list, allowing repetitions. In this case, we can keep selecting random elements without removing them from the list.
Example: This example demonstrates how to randomly select multiple elements from a list.
Java
// Select randomly multiple elements
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class Geeks {
public static void main(String[] args) {
List<Integer> l = new ArrayList<>();
l.add(10);
l.add(20);
l.add(30);
l.add(40);
l.add(50);
Geeks o = new Geeks();
System.out.println("Random Elements: "
+ o.getRandomElements(l, 3));
}
public List<Integer> getRandomElements(List<Integer> l, int totalItems) {
Random r = new Random();
List<Integer> newList = new ArrayList<>();
for (int i = 0; i < totalItems; i++) {
int randomIndex = r.nextInt(l.size());
newList.add(l.get(randomIndex));
}
return newList;
}
}
OutputRandom Elements: [50, 10, 50]
4. Selecting Multiple Random Items Without RepetitionsIn some cases, we may want to select multiple random items without repetitions. To do this, we can remove elements from the list after selecting them or use a Set to track previously selected items.
Example: This example demonstrates how to select random element from a list without repetition by removing the selected items from the original list.
Java
// Select random elements from a
// list without repetition
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class Geeks {
public static void main(String[] args) {
List<Integer> l = new ArrayList<>();
l.add(10);
l.add(20);
l.add(30);
l.add(40);
l.add(50);
Geeks o = new Geeks();
System.out.println("Random Elements: "
+ o.getRandomElements(l, 3));
}
public List<Integer> getRandomElements(List<Integer> l, int totalItems) {
Random r = new Random();
List<Integer> newList = new ArrayList<>();
for (int i = 0; i < totalItems; i++) {
int randomIndex = r.nextInt(l.size());
newList.add(l.get(randomIndex));
l.remove(randomIndex); // Remove selected item
}
return newList;
}
}
OutputRandom Elements: [30, 10, 50]
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java/Split a List into Two Halves in Java/Randomly Select Items from a List in Java
|
https://www.geeksforgeeks.org/randomly-select-items-from-a-list-in-java/?ref=lbp
|
Pandas
|
Randomly Select Items from a List in Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Randomly Select Items from a List in Java, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Initializing a List in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.0111101726, -0.0269153547, -0.0152722718, -0.00386866066, -0.0162571445, 0.00253975717, 0.0060508959, 0.00328515749, -0.00274212821, 0.0194141343, -0.0188744776, 0.00590923615, 0.0400694758, -0.00486702472, 0.0209386628, 0.0218156036, -0.0121355196, -0.00688399, -0.00980825257, -0.00784525275, -0.0216941815, 0.0365077443, -0.0345919654, 0.0469770767, 0.0124593135, 0.0328111, 0.00671534752, -0.000376705371, -0.0288176443, -0.0107526509, 0.0350506715, 0.011501424, 0.00471524661, -0.0548290759, -0.00131456892, 0.0172420163, 0.0284668673, -0.00771708414, -0.0202506017, 0.00976103265, 0.0358061939, -0.0173499491, 0.0225981046, -0.0237718578, -0.029789025, -0.00170666294, -0.0133025264, 0.00575745758, -0.00971381273, -0.0359411053, 0.0142064504, 0.0233536251, -0.00768335583, -0.00181459414, 0.00601716712, -0.00662428048, -0.0181054678, -0.0106514655, -0.0408789627, -0.0252963863, 0.0124120936, -0.00742701907, 0.00524141127, -0.0121085374, 0.00428014854, -0.0119533855, -0.0360760204, 0.0196839608, 0.0134172039, 0.00544378255, -0.0502419956, 0.0381536968, 0.010246723, -0.0137477433, -0.0211410336, 0.00685363449, -0.00655007781, -0.00768335583, -0.0468691438, 0.0581749454, -0.0167293437, -0.0150294267, -0.0199807733, -0.0168237835, -0.00363593409, -0.0383695588, -0.007251631, -0.042255085, 0.00294618588, -0.000530802528, -0.00626338553, 0.0297350585, 0.0120478254, 0.0451422445, 0.00331719941, 0.0083511807, 0.0213164221, -0.00205069385, -0.023110779, 0.0396107696, -0.0216672, -0.0114609497, -0.0134374406, -0.030139802, 0.0163246021, -0.0100106234, -0.000279946689, 0.0214378443, 0.0201156866, -0.0122569427, 0.0108673275, -0.0210331026, -0.00421606423, 0.00188373763, -0.0216806903, -0.0191847794, 0.00987570919, -0.0770629123, 7.54148496e-05, -0.0220719408, 0.0298699737, 0.0328920484, -0.00338128372, 0.0346459299, -0.0651365072, 0.0182673633, 0.00375735667, 0.000691434543, 0.0501340665, -0.0120343342, 0.0073393248, 0.0100510977, -0.038396541, -0.00737305358, 0.0104828225, 0.0352665372, 0.0250805244, 0.00581479631, -0.0216941815, -0.00797342137, -0.0373711959, -0.0782501549, -0.0244329367, -0.0210331026, -0.0572035611, 0.00411487883, -0.00437121559, 0.0497293249, -0.0198458582, -0.00723139383, -0.000568747113, -0.0221528895, -0.0264566485, 0.0101860119, 0.0228679329, 0.0110359704, 0.000892119249, 0.00945747551, -0.00422955584, 0.00938327331, 0.0052717668, 0.0172555093, -0.0109415306, -0.0505118258, -0.00967333838, 0.0129315127, 0.0195760299, -0.029006524, -0.0560702831, 0.026739968, -0.00339140231, -0.00731234206, -0.00800040364, 0.055179853, 0.00900551397, 0.0118319634, 0.0220314655, -0.000481052964, -0.0179840438, 0.00125470082, 0.0143683478, -0.000464188692, 0.0533989854, 0.0205474123, -0.0068873628, -0.023785349, 0.0128775472, -0.00398671068, -0.00620267401, 0.034538, -0.00134829746, -0.0276573822, 0.00865473691, 0.0369934365, 0.0316508375, 0.00202202448, 0.00291751651, -0.0245678499, -0.0441438816, 0.0561242513, -0.0322444625, -0.0094372388, -0.00959239, 0.0274415202, 0.0492436327, 0.00160294771, 0.015299255, -0.0110899359, 0.0181459412, 0.00613521691, -0.00556183234, -0.0113192899, -0.017269, -0.00214344705, -0.00820952095, 0.00241327519, 0.0251075067, 0.0449263826, -0.00422618305, -0.030922303, 0.00180278916, 0.0102332318, 0.0494864769, -0.00977452379, -0.0448184498, -0.0158254188, 0.0124997878, 0.0526164845, 0.0339713618, -0.0443327613, 0.0218021125, 0.000110987894, 0.00326492032, -0.0239607375, 0.0167293437, -0.0176197775, -0.0210735761, 0.0339443795, 0.0235964693, 0.036129985, 0.0123716192, -0.00404067617, -0.0155421, -0.0122232139, -0.00636457093, -0.0113530187, -0.0137207601, -0.00887734536, 0.037479125, 0.0289525576, -0.036345847, -0.026739968, -0.059146326, 0.0154746426, -0.0226250887, -0.0223417692, -0.00926859584, -0.0161087383, 0.03896318, 0.0249860846, 0.0382076614, 0.0338364467, 0.0156095568, -0.0143683478, 0.00224126, -0.00321601401, 0.0440359488, -0.0387743, 0.0178221483, 0.0138556743, -0.019022882, -0.0311381649, -0.0267939325, 0.014273908, -0.00129433174, -0.0168102924, 0.00211140513, -0.0166753773, 0.0435232781, 0.036129985, -0.0226655621, 0.0190633573, 0.000127746753, 0.0216941815, -0.00214344705, -0.0306794569, -0.019036375, -0.012911276, -0.0482992344, 0.00460394239, -0.00790596381, -0.0137747256, 0.00180953485, -0.00878290553, 0.0339173935, 0.0367236063, -0.0217751302, 0.0208712053, -0.0227734931, 0.0124255847, -0.00101860112, -0.0274010468, 0.00414186157, 0.00799365807, -0.0274819937, -0.000661078899, -0.00639492646, -0.00145032618, 0.0217751302, -0.0501070842, 0.0202236176, -0.0251075067, -0.0103479084, -0.047354836, -0.0406091325, -0.00386866066, 0.051537171, 0.0161357224, 0.00269828131, -0.0119803688, -0.0161222313, -0.0327841155, 0.00131625531, 0.0218156036, 0.026618544, -0.00309796422, -0.0444137082, 0.00138877158, 0.00766311865, -0.014948478, -0.0320555829, -0.0136060836, -0.0377759375, -0.000107509644, 0.00672546588, -0.0243654791, -0.0116363382, -0.036129985, -0.00496821, 0.0192117617, -0.0506197549, 0.0441169, 0.000770696555, -0.0191173218, -0.00557532348, -0.030922303, -0.0192792192, 0.0270637609, 0.0305985101, 0.0237583667, 0.00124205253, -0.0216806903, 0.0143278735, -0.0581209771, 0.0308413543, -0.0328920484, 0.0196165051, -0.0139096398, -0.00924161356, 0.0155421, 0.0118319634, 0.017107103, -0.0437931046, -0.0100983176, 0.00962611847, -0.025485266, 0.0101590287, -0.00614533573, 0.0312460978, 0.00792620145, -0.0107189221, -0.00870195683, 0.00807460677, 0.00658043334, 0.0357522257, 0.0133767296, 0.00680978736, 0.028655747, -0.0340253264, -0.0194950812, 0.0143683478, 0.0372362807, -0.0115149152, -0.0112181045, -0.0016130663, -0.0173904225, -0.00699529424, -0.0238258243, -0.0192792192, 0.0290335063, 0.0190498661, 0.0453850888, 0.0137275057, 0.0124188391, 0.00469838222, -0.00737979915, 0.0355363637, -0.000123214486, -0.000312621181, -0.0351855867, -0.0432804301, -0.000758891576, 0.0007462434, -0.0160682648, -0.0337555, 0.00342344423, -0.031381011, -0.00316373468, 0.0158389118, 0.0297620427, 0.0181054678, 0.0300588533, -0.0275359601, -0.00864799134, -0.0133362552, -0.0146516673, -0.0105705168, 0.0555845946, 0.00185169547, -0.00532910554, -0.00150935107, 0.012971987, 0.0123513825, 0.0350776576, -0.0396917164, 0.00359883253, -0.000677521573, 0.024702765, -0.026510613, -0.0462485403, 0.00469500944, 0.0329729952, 0.0102197407, -0.00393611798, 0.00262070564, -0.00717068231, 0.0198053848, 0.0151238665, -0.0386933535, -0.0524006225, -0.00518744579, 0.0623302981, -0.0509165674, 0.0317587703, 0.0266590193, 0.00240315683, -0.07225997, 0.0153936949, -0.0188340023, 0.00388889783, -0.0202371087, -0.0437931046, 0.00129854784, -0.0112450868, 0.0346999, -0.0143548567, -0.00707624247, 0.00176906062, -0.0189554263, 0.0455739684, 0.0201156866, 0.0117645059, -0.00912019052, -0.0256876368, -0.00761589874, -0.0230837967, -0.00462417956, 0.00269659492, -0.0167968012, -0.0124188391, -0.0534259677, -0.0531561412, -0.00401032064, -0.0195490476, 0.0357792079, 0.0181189589, 0.00959913526, -0.00401032064, -0.0354284346, -0.0346729122, -0.00754844164, 0.0317317881, -0.00196468597, -0.0101860119, 0.0346999, -0.0471659563, 0.015177832, 0.00188036473, -0.0296271276, -0.0113395266, -0.00302376132, 0.0585527048, -0.0468961298, 0.0149349868, 0.00162740087, 0.00901226, -0.0504308753, -0.08181189, 0.00656356895, 0.0308953207, -0.0142199425, -0.0470850095, -0.024459919, 0.0148540381, -0.0059261, -0.0346459299, 0.0100645889, 0.00643540081, -0.00964635517, -0.0340523086, -0.0061385897, 0.0227600019, -0.00994316675, -0.0141120106, 0.0141659761, 0.0185371917, 0.00314518414, 0.0179570615, 0.00232052198, -0.00843887497, -0.00689073559, 0.0579590797, -0.000431303401, -0.00366291683, -0.0370474, 0.00604415, 0.00392599916, 0.00170750613, 0.00923486799, 0.00351788406, -0.0334586874, 0.00160294771, -0.00209285435, 0.0122906715, -0.0158119276, -0.048488114, -0.00746749341, -0.0250400491, 0.0251344889, 0.0131945955, 0.0159333516, 0.0364267975, 0.00571023766, 0.0114609497, 0.0067861774, 0.0115284063, 0.0114946784, -0.00469500944, 0.00173364568, 0.00954517, 0.00987570919, 0.0611970201, 0.0254582837, 0.0080678612, -0.0278192796, 0.0238123313, 0.00545727368, -0.0257820766, 0.00963961, -0.0151238665, -0.00945747551, 0.00794643816, 0.025593197, 0.00980825257, 0.0319206677, -0.0150968833, 0.0317587703, 0.00957215298, -0.0233671162, -0.00920113921, 0.00445553707, -0.0167698171, 0.0148810213, -0.0136735402, -0.0168642569, 0.00527851284, -0.000715044502, 0.00056368782, 0.00692783715, 0.00647587515, -0.00180110277, -0.0289525576, 0.0165809374, -0.00687049842, 0.00432399567, 0.00696156546, -0.0275764335, -0.00233401335, -0.00896504, 0.0372093, 0.0131203923, 0.012911276, -0.00744725624, -0.00470850058, -0.0172959827, 0.0116903037, 0.0107391598, -0.0207902566, -0.00185169547, -0.0336745493, 0.0333237723, -0.00294955866, 5.44399336e-05, -0.0356982611, -0.00643877359, 0.0125874821, -0.0100173689, 0.0166079216, -0.0211545248, -0.00461068796, 0.0122569427, -0.0320555829, 4.70881714e-05, -0.0035617312, 0.00105570257, -0.00562928943, -0.0155016258, 0.0205609035, -0.0123648737, 0.0210196115, -0.00301870215, -0.0271042343, 0.0198053848, 0.0201426689, 0.00670185592, -0.000423082063, -0.0169047322, -0.00412499765, 0.000106455627, 0.013309272, -0.0175658111, -0.00475909375, -0.00894480199, 0.00127746759, -0.00114255352, 0.00830396079, 0.0215997417, 0.0259169918, 0.0242845304, 0.0491896681, 0.0210600849, 0.0333237723, 0.0428756885, 0.0951413959, -0.0150833922, 0.0153532205, -0.0045499769, 0.0400424935, 0.0336745493, -0.0233131498, 0.00737305358, 0.000926691, 0.0133295096, 0.00469838222, -0.0238662977, -0.0159063675, -0.000877784623, -0.0135318805, 0.0158389118, 0.00643877359, -0.0184157696, 0.0244734101, -0.000189722894, -0.0136128291, 0.0127696162, 0.00440157112, 0.00136853452, -0.00663777208, 0.0148270559, 0.00696156546, -0.0110292248, -0.0319206677, -0.0252019465, 0.00589574454, 0.00658043334, -0.029465232, -0.0156500321, 0.0215457752, 0.0238662977, 0.0225981046, -0.0189959, -0.0129045304, 0.0309762694, 0.0186855979, 0.00854680594, -0.00139551738, -0.0307873897, -0.0121355196, 0.00684688846, -0.0126819219, -0.0537767448, 0.0118117258, 0.0324873067, -0.0177681819, 0.0226790532, -0.00124542543, -0.0122501971, -0.00351788406, -0.00475234771, -0.0431185327, 0.0263217334, 0.0178761128, -0.0101522831, 0.0197244361, 0.0276304, 0.00915391929, -0.00756193325, 0.0138286911, -0.00468489062, -0.0132822897, 0.0176062845, -0.0201156866, -0.0378838703, 0.0276573822, 0.0146381762, 0.00506939599, 0.00448252, -0.0337555, 0.0228004772, -0.0112450868, -0.00569337327, 0.0192252547, 0.0244869031, 0.00340152089, -0.00260890066, -0.00415872596, 0.0132822897, -0.0239337552, 0.0237448756, -0.000819181325, 5.04873715e-05, 0.0296541117, 0.0177951641, 0.000285849179, -0.016999172, -0.00180953485, 0.0101792663, 0.00540668098, -0.0131203923, -0.00686375285, 0.0283049699, 0.00138539879, -0.00932930782, 0.00192421186, -0.00816230103, -0.00648936629, -0.0277113486, -0.0132148322, 0.0106851934, 0.0255122483, 0.000220921778, 0.0225576311, 0.0709108338, -0.00246386812, -0.01880702, -0.0237718578, 0.0146786496, -0.00348078273, 0.0339713618, 0.00479619484, -0.0131473755, 0.0061014886, -0.0264701396, 0.0165269729, -0.0215862505, 0.0293033347, -0.0228274595, -0.0237448756, 0.00554496795, 0.00681316, 0.033080928, -0.00294787227, 0.00793969259, 0.0128438184, -0.0140040796, 0.00611160696, -0.0147461072, -0.00901226, 0.0110022416, -0.0119061656, -0.0143143823, -0.00912019052, 0.0039833379, 0.024244057, -0.0166888703, -0.00868172, 0.0327031687, -0.0166888703, 0.0301937666, 0.00521442853, 0.00332225882, 0.0136600491, -0.00400694786, 0.0440899171, -0.00304568489, -0.0127156507, 0.0101118088, -0.014611193, -0.0183752961, -0.0117779979, 0.0146651585, -0.0245543588, 0.00580805028, 0.0111439014, -0.0102737062, -0.00167968008, -0.0256471634, -0.0138421832, 0.0166618861, 0.03194765, 0.000400736928, 0.00636457093, -0.0268883724, 0.0184157696, 0.0281970389, 0.0222068541, 0.00423292862, 0.00131119601, 0.00506602321, -0.020169653, 0.00602728594, -0.020628361, 0.0446295701, -0.0119398944, 0.00198492315, 0.0164055508, -0.00790596381, -0.0186316315, 0.00565289939, -0.00764962751, 0.00620604679, 0.00202371087, -0.0172555093, 0.00406091334, 0.00219066697, 0.0429836214, -0.00951144099, 0.019022882, 0.0199133158, 0.0273875538, -0.0113934921, -0.0103951283, -0.0221259054, -0.00839165505, -0.00544040976, 0.0134374406, -0.0141794682, 0.0140580451, 0.0110562071, 0.00597332, -0.00742701907, -0.0422011204, -0.0470850095, 0.0221798718, 0.0137207601, 0.0174308959, -0.0283859186, -0.0281160902, -0.0109820049, -0.00506939599, -0.00909995381, 0.0162976179, -0.0276573822, -0.00305580348, 0.0204124972, 0.0353205, -0.0228679329, 0.00518744579, -0.0274685025, -0.0399885289, 0.00144358049, 0.011717286, -0.0220989231, -0.00708298804, -0.0020169653, 0.00352462986, 0.0119871143, 0.0264431555, 0.0012715651, -0.03807275, 0.00800040364, -0.0172824915, -0.0184427518, -0.0455200039, -0.00642528245, -0.0158524029, -0.0144897699, -0.0284938496, 0.00862100814, -0.0179300793, 0.00637468928, -0.0152183063, -0.0216537062, -0.0383155942, 0.0143953301, -0.00446228264, -0.0032177004, -0.0353205, 0.0205609035, 0.0324873067, 0.00897853076, 0.0255797058, -0.00245712232, 0.030139802, 0.0105165513, -0.00833094306, 0.00319577684, -0.0179435704, 0.0134981517, 0.0592542551, -0.000456599781, 0.0131338844, 0.0307604056, -0.037479125, 0.0532640703, 0.00159282913, -0.0130461901, -0.00224631908, -0.0192927103, 0.000556098879, -0.0131203923, 0.0112990523, 0.0227195285, 0.00489400746, -0.0109010562, 0.00564615335, -0.0221259054, -0.0158524029, -0.0277922973, -0.0417963751, -0.026051905, 6.21869476e-05, 0.014381839, 0.00306760846, -0.020736292, 0.0200347379, -0.006654636, -0.0179705527, -0.0409329273, 0.019589521, 0.0131271379, 0.0835387856, -0.0135588637, -0.0138961487, 0.0249725934, -0.0055550863, -0.0186451226, 0.0364807621, 0.0179570615, -0.0108875651, 0.0184022784, 0.0338904113, 0.0194411166, -0.0131271379, -0.000525743235, -0.00161559589, -0.0168642569, 0.0226655621, 0.0110157328, 0.0403932706, -0.0304366127, 0.00507951435, -0.00249253726, -0.000317048049, 0.0182538722, 0.00381132215, -0.012634702, -0.0270637609, -0.0488928556, -0.0325682536, -0.0119398944, -0.0149889523, 0.0413916335, 0.00244869012, -0.00290233875, 0.0171745606, -0.0207632743, -0.021748146, -0.0182673633, 0.017107103, -0.011717286, -0.00367303542, -0.0172959827, -0.00470175501, -0.0116970493, -0.0188879687, 0.0466532819, -0.00495471898, 0.0265241042, 0.00719766505, 0.00339477509, -0.022314785, -0.0105165513, -0.0301128179, -0.0202910751, -0.00513685308, -0.0298699737, -0.00472199218, -0.0533450209, -0.0061014886, 0.00391588081, -0.00401706621, 0.0257820766, 0.0409329273, 0.0429296531, 0.0229219, 0.0342411883, -0.026726475, -0.00180953485, 0.00318565825, -0.0134711694, -0.0100645889, -0.0182808563, 0.0191038307, -0.000670775829, 0.0113867465, -0.00569674606, 0.0198188759, 0.0354824, 0.00417221757, 0.0147865815, -0.0358601585, -0.0181324501, 0.0224631913, 0.0168102924, 0.0230433214, 0.00612172578, -0.0133025264, 0.0152048152, 0.014948478, 0.0151508488, -0.00636794372, 0.0184967183, 0.0226655621, -0.0081690466, 0.0114676952, 0.0203585327, -0.0492975973, -0.0250805244, -0.012742633, 0.0181054678, -0.00303725293, 0.0299779046, 0.0266860016, -0.0252019465, -0.0271716919, 0.0186990891, 0.0156635232, 0.0183887873, 0.00960588083, 0.0158524029, -0.0167968012, 0.000779128692, 0.00903924182, 0.00351451128, -0.0118589457, -0.00876266789, 0.0306254923, 0.00577432197, -0.0016139095, -0.00964635517, -0.0264161732, 0.0501610488, 0.00874243118, -0.0119061656, 0.0538576953, -0.000714622904, 0.0133362552, 0.0127628706, 0.00748098455, 0.00350776571, -0.00618580962, 0.0022345141, -0.0163650755, 0.0134509318, -0.0122434516, -0.0138286911, -0.0155960657, -0.0199402981, -0.0362918824, 0.0335936025, -0.0162841268, 0.0231377613, 0.0206688344, -0.00134576776, -0.0157984365, -0.00342007144, 0.00601379434, -0.0199133158, 0.0122501971, 0.0013542, 0.017322965, 0.0186046492, 0.026051905, -0.0067052287, -0.00473211054, 0.00186181406, 0.0457898341, -0.00647250237, -0.0490007885, -0.0108201075, 0.000546823547, -0.0137612345, -0.0113395266, -0.00198323675, -0.00259035, -0.0173094738, 0.036939472, -0.00142671622, 0.010307434, 0.0294382479, -0.00251614721, 0.0157579631, 0.0207902566, 0.000146297432, 0.00336104655, -0.0202371087, -0.00351788406, 0.0233266409, -0.026847899, 0.0310032517, 0.0263487156, -0.0027016541, -0.00914042816, 0.00849284, -0.0444406904, -0.00164848124, 0.0287636779, 0.0115418984, -0.00914042816, -0.013309272, 0.00632409658, -0.00236099609, 0.0179840438, -0.0144762788, -0.0124390768, -0.00763613591, -0.0124120936, 0.0142334336, -0.0232591853, 0.0186990891, -0.0010877446, -0.016540464, -0.00686712563, -0.00145032618, -0.0106379734, -0.00409801444, 0.0232591853, 0.00108015572, -0.0135251349, -0.0236504357, -0.0111573925, 0.0121692484, 0.0162436534, -0.00454660412, -0.00506939599, -0.0141794682, -0.0232456923, 0.00277079758, -0.015299255, -0.0258765165, -0.00484341476, 0.00476583932, -0.00551461242, -0.00809484348, -0.0275764335, 0.0157849453, -0.0178221483, 0.010246723, -0.0052211741, -0.0218965523, 0.00959913526, 0.0113934921, -0.0460866429, 0.00970032066, 0.0054539009, -0.00125976, 0.0156230489, 0.0068232785, -0.00646912912, 0.0204259884, -0.0343221389, -0.0266050529, 0.0122434516, -0.0145842098, -0.00867497455, -0.0135588637, -0.00891107414, 0.00754844164, -0.0155960657, 0.0279272106, -0.00629711384, 0.0178086571, 0.0320016146, 0.0270637609, -0.0111843757, 0.00556857791, -0.00254481658, 0.0186855979, 0.00935629, -0.00978801493, -0.000575071201, -0.013538626, 0.015973825, 0.0121490117, -0.0148540381, 0.0203045662, 0.00592272729, 0.0159198586, -0.0130664269, 0.0183752961, 0.001897229, 0.0140310628, 0.0166214127, -0.0031519297, 0.0174174048, 0.0247837137, 0.019022882, 0.00409801444, -0.00437458837, 0.012513279, -0.0090729706, -0.0258225519, -0.0119331488, 0.0385314561, -0.00838490855, 0.0299239382, -0.00606101425, -0.0148945125, -0.0248646624, -0.00727861375, 0.00798016693, -0.02254414, -0.00467814505, 0.0119264033, -0.00275730621, -0.00376747525, -0.00259372289, 0.000983186183, -0.0129854782, -0.0104693314, 0.0195625387, -0.011501424, -0.0259574652, -0.0114069842, 0.0158793852, 0.0128303273, -0.0122704338, -0.00174882356, -0.0068873628, 0.000232094346, -0.00964635517, -0.0252019465, 0.0183618031, -0.00856029708, -0.0141794682, -0.0274685025, -0.0103209261, -0.00358871417, 0.0131811043, -0.0271582, -0.00159451552, -0.0101253008, -0.00897853076, -0.00269828131, -0.000739076117, 0.0212489646, -0.00416209875, -0.0146651585, 0.0123378914, -0.0100915721, 0.0186181404, 0.0275494512, -0.00607787864, -0.0148945125, 0.0275629424, -0.0255392324, -0.03329679, 0.00111219776, 0.0190498661, -0.00473211054, -0.0338094644, 0.00315530272, -0.00643202802, -0.0240821596, -0.00480631366, 0.0350506715, -0.00482317759, 0.00150597817, 0.00422955584, 0.0250670332, 0.0116565749, 0.0340523086, -0.00137359381, -0.0197379272, -0.00437796116, 0.0500261337, 0.00603065873, 0.0223687515, -0.0125335166, 0.0342951529, -0.00209791376, -0.0365886949, -0.00782501604, 0.00579455914, 0.0262138024, -0.0137275057, 0.00340320729, -0.00503229443, -0.0144762788, -0.0324603245, -0.0337285139, 0.00605426868, -0.0193466768, 0.0170801207, 0.0102197407, -0.00242845318, 0.02186957, 0.0258765165, 0.00571023766, -0.014044554, -0.00595645607, -0.0141929593, 0.0157444719, -0.00240821601, -0.00458033243, -0.0112855611, -0.0135251349, 0.0205474123, 0.0215053018, 0.022085432, 0.00955191534, -0.0060508959, 0.0198593494, -0.00544715533, -0.0428756885, -0.0157174878, 0.0267534591, 0.0298969559, -0.0284668673, 0.000932593481, 0.0290604886, -0.000125533319, 0.00409801444, -0.0158119276, -0.0270232875, 0.0224497, -0.018240381, -0.0140310628, 0.00605764147, 0.011042716, 0.0142873991, 0.0183752961, -0.0088166343, -0.00795318373, -0.0181324501, -0.00124373904, 0.0220044833, 0.00932930782, 0.0173499491, -0.00721790222, -0.00594633725, -0.00331719941, -0.0423630141, 0.00552473078, 0.00500868447, 0.00299677858, 0.00438133394, 0.01948159, -0.035563346, -0.00941700116, 0.00520431, -0.0248511694, 0.0247972049, 0.0192792192, -0.00221765, -0.00952493306, -0.013538626, 0.0159333516, 0.0221663807, 0.0103883827, -0.0144492965, 0.0178626217, -0.00667824596, 0.000327377405, 0.0303286817, -0.0277383309, 0.016648395, -0.00438808, -0.0200617202, 0.0120140975, 0.00935629, -0.00764962751, -0.0244464278, 0.00387877924, -0.00815555546, 0.00359545974, -0.006654636, -0.00485016033, -0.0442787968, 0.00884361658, -0.00411825161, 0.00311482837, 0.0425518937, -0.0286017805, -0.00968682952, -0.013369984, -0.011838709, -0.0128842928, 0.0058181691, 0.00807460677, -0.00736630801, -0.0133767296, 0.00773732131, 0.0139501141, 0.0100915721, -0.00348415575, -0.0108673275, 0.0130057158, 0.0259979405, -0.00219572638, -0.0152048152, -3.82080834e-05, -0.0193601679, -0.0204529725, -0.0196704697, 0.000480209739, -0.0241900906, 0.00777779566, -0.0290874727, -0.00146803365, -0.0150294267, 0.0103883827, 0.0105975, 0.0186855979, -0.0074202735, -0.00530212279, -0.0313000642, -0.00844562054, -0.00276236539, -0.00376410224, 0.0024689273, -0.00893805642, -0.00767661026, 0.00708973408, -0.00541005377, 0.0283859186, 0.00333743659, 0.0117982347, 0.0304905772, -0.015865894, 0.0149214957, 0.00814206339, 0.0322984271, 0.033647567, -0.00290739816, 0.00926859584, -0.00627687667, 0.0105975, 0.00808809791, -0.00656356895, 0.032730151, 0.00496483734, -0.00286523742, 0.0203855149, 0.0377219729, 0.0332698077, -0.0123513825, -0.0105435336, -0.0218830612, -0.00209116796, 0.0024183346, 0.00493110903, 0.0223822426, 0.04031232, -0.0117645059, -0.0192792192, -0.0136667946, 0.00153717713, -0.00107846933, -0.0192522369, -0.0239067711, -0.00712346239, -0.00800714921, 2.24110172e-05, 0.00132384419, -0.0118049802, 0.0031603619, 0.0106514655, 0.015515117, 0.0114272209, -0.0168777499, -0.00595645607, -0.0289255753, -0.0133362552, 0.00814206339, -0.00477258489, 0.0162031781, 0.0130866645, -0.00832419749, -0.00631735101, -0.0143143823, 0.0130934101, -0.0283589363, -0.0328650661, -0.0210331026, -0.027873246, 0.00740678189, 0.011150647, -0.00872894, -0.0234210808, 0.0242170747, 0.0030945912, 0.0215322841, 0.0256606545, -0.00840514619, 0.00125976, -0.00720441109, -0.0160952471, -0.00157512166, 0.00281970389, -0.0177681819, 0.00324974256, 0.00785874389, 0.00560567947, 0.00110882497, -0.0270367786, 0.0100713344, 0.0100308601, -0.00128421327, 0.00423630141, 0.017322965, 0.00372025534, 0.00992967468, -0.00224126, -0.00679966854, -0.0200077556, -0.0101118088, -0.000908983522, -0.0179705527, -0.0038012038, -0.0032261326, -0.00135672954, 0.0038517965, 0.00819602888, -0.00446902821, 0.00205069385, 0.00168052327, 0.00612847134, -0.00378433941, -0.00817579217, 0.00163751945, 0.00485690637, 0.0133834751, -0.0023002848, 0.0170531366, -0.0121085374, 0.000953673793, -0.0161627047, 0.00291077094, -0.0122569427, 0.0312730782, 0.00136178883, 0.000488220277, -0.0112383412, 0.00819602888, -0.0138017088, -0.00677605858, -0.00845911168, -0.000168537183, 0.00570011931, -0.00898527633, -0.0129315127, -0.0164460242, 0.00758217042, -0.00677943183, -0.00479282206, 0.00918764807, 0.0337824821, 0.00341501227, 0.00386528787, 0.00633758819, 0.0365077443, 0.0177007243, 0.0161357224, 0.0111236647, 0.0126954131, -0.00215187925, -0.0154341683, 6.12910371e-05, 0.0113057988, -0.00116194738, -0.00330539444, -0.0153936949, 0.0247837137, -0.0164730065, -0.0232456923, -0.00508626038, -0.00515034422, 0.00539656263, 0.018914951, 0.0036190697, 0.0263487156, -0.0118049802, 0.0241226349, -0.00506602321, -0.00630723219, -0.00203720224, -0.0243115146, -0.0364267975, 0.00534597, 0.021410862, 0.00604752265, -0.0188340023, 0.00468489062, 0.030247733, -0.0111776302, 0.0120140975, 0.0140580451, 0.0164190419, -0.00693458272, -0.00993642, -0.00334924157, 0.00648936629, -0.0111371558, -0.0233536251, -0.00420257309, 0.00324636954, -0.0248781536, 0.00529875, -0.00494122738, -0.0261058714, -0.003568477, -0.0160412826, 0.0014882707, 0.0083511807, -0.00220584497, -0.0118522, 0.00239135185, -0.00377084804, 0.015515117, 0.0145977018, -0.0105975, 0.0159198586, -0.026618544, -0.0300318711, 0.0140310628, 0.00237954687, -0.0245678499, -0.0203450415, -0.0334047228, -0.0160547737, 0.0125402622, -0.0208172407, -0.00412499765, -0.00871544797, -0.00577432197, 0.0210061204, -0.00965984724, -0.0222338382, -0.00856029708, 0.000613859, -0.00524815684, 0.00821626652, 0.00669511035, 0.0180245191, -0.00216368423, -0.00383830513, 0.00634433376, 0.0143008903, 0.00379783078, 0.00245543593, 0.00960588083, -0.00202371087, 0.0155825745, 0.000452383712, -0.0235559959, 0.0205069371, 0.0103951283, -0.00970032066, -0.0243924633, 0.0024166482, 0.0170936119, 0.00717742834, 0.0158524029, -0.0130326981, 0.0402313732, -0.00963286404, -0.0161222313, 0.00427003, 0.00924835913, -0.00542017259, 0.0118926745, -0.0261328537, 0.0215592664, 0.00455672247, 0.0182133988, -0.0215592664, -0.0268883724, -0.0146786496, -0.02254414, 0.00363256107, -0.0333237723, -0.00784525275, 0.0112855611, -0.0252019465, 0.00608125143, 0.0116026094, -0.011730778, -0.00247398671, -0.034430068, -0.0223552603, 0.00318059907, -0.0202910751, 0.0196165051, -0.0112518324, 0.0193466768, -0.00228173402, 0.0221528895, -0.0109415306, -0.0188609865, 0.00635782536, 0.0182538722, 0.00583166024, -0.00373037392, -0.00584852463, 0.0054539009, -0.0270367786, -0.00464104395, -0.0164730065, 0.0116026094, -0.0147865815, 0.000355835829, -0.0089717852, -0.0100241145, -0.0225306489, -0.0111439014, -0.0031097692, 0.0118522, -0.0201291777, 0.0109752594, 0.00375398388, -0.00907971617, -0.00109364709, 0.00416547153, -0.00805436913, -0.0130259525, 0.0145437364, 0.00531224115, -0.00782501604, -0.0253503527, 0.0165539552, -0.0174983535, 0.0201426689, 0.0267804414, -0.00515709026, 0.0205743946, 0.0169317145, -0.0113597643, -0.00628699549, 0.00564278057, 0.0103344172, 0.0139636053, 0.00748773059, 0.0243789703, -0.00387203367, -0.0079666758, -0.00791270938, -0.0216941815, -0.0235155206, 0.00840514619, 0.00820952095, 0.0092551047, 0.0335666202, -0.0123851113, -0.00856704265, 0.0136735402, 0.0222878028, 0.00580130471, 0.0131338844, -0.0148945125, 0.0329460129, -0.00868172, -0.0024166482, -0.0114744408, 0.00168389617, 0.0289795399, -0.00409126887, 0.0106784478, -0.000978127, 0.0101185543, 0.0130866645, -0.0308953207, 0.00231714896, -0.00265443418, -0.0046680267, 0.017269, -0.00329696247, 0.00242676679, 0.0128708016, 0.0128505649, 0.0074202735, -0.0291954037, -0.00230365759, -0.00927534141, -0.00129095896, -0.00642528245, 0.00411487883, 0.0103816371, 0.00813531782, 0.0115081696, -0.0199402981, -0.0123176537, 0.00428014854, 0.0107998708, 0.0232591853, 0.0182268899, -0.000337074365, -0.0042531658, -0.00241327519, 0.00237280107, -0.000748773047, -0.0331888609, 0.000707034, -0.0259844493, -0.0116835581, 7.22659797e-06, -0.0241226349, 0.0254313014, -0.00667824596, 0.0148810213, -2.42094325e-06, 0.00307604065, 0.0121962316, 0.00551798521, 0.011730778, 0.0104018738, -0.00394960912, 0.00487714354, 0.00766311865, 0.0190498661, 0.00845911168, 0.00905273389, -0.00121422659, -0.0265510883, 0.00111978676, 0.0108268531, -0.00334924157, -0.0242305659, 0.0269558299, 0.00360220554, 0.0198593494, 0.0106582111, -0.00864799134, 0.00139551738, -0.0143143823, -0.0139770964, -0.0173094738, 0.00649273908, 0.0202506017, 0.00759566156, 0.0177681819, -0.0017302729, -0.029222386, -0.00367978099, -0.00488051632, -0.00659055216, 0.0187395625, 0.00944398437, 0.0204259884, 0.00741352793, -0.0174713712, -0.0184832271, 0.00347066415, -0.0111101726, 0.012297417, 0.0196299963, 0.00571361044, -0.0134914061, -0.0139636053, 0.00343019, -0.0185641758, 0.00399008347, 0.00897853076, 0.00790596381, 0.00988245476, -0.00447577424, -0.0157174878, 0.0396377519, 0.0054033082, -0.0145572275, 0.0133902207, -0.0144897699, 0.000378813391, 0.00440157112, -0.0108336, 0.0125470078, 0.0219640099, -0.0172420163, -0.027981177, -0.0226385798, -0.0214378443, 0.0171475764, 0.000446481223, -0.0082499953, 0.00412499765, 0.0167023614, -0.00509975152, 0.00294787227, -0.00323119177, -0.0166618861, 0.00645563798, -0.0285208337, -0.00167799369, -0.0242305659, 0.0173769314, -0.01007808, 0.00669173757, -0.00468151784, 0.00809484348, -0.00989594683, -0.0125942277, -0.00272357767, -0.00146381755, 0.00762939034, 0.00675582187, 0.00388215226, -0.0223012939, -0.00294281309, -0.011380001, 0.00849958602, -0.00793294702, -0.00407440448, 0.0282510053, 0.0105098058, 0.00756193325, -0.00283150887, 0.0084253829, 0.00113159174, -0.0145437364, 0.0129652414, -0.00301027, 0.0145842098, -0.00241496181, 0.0172959827, 0.00191240688, -0.0118319634, 0.0204259884, 0.0158254188, -0.0324063562, -0.00964635517, 0.0130934101, 0.00391250802, -0.00758891599, 0.0022362005, -0.0166214127, 0.0217751302, -0.00186012767, -0.0151643408, 0.00936303567, 0.00646912912, -0.0021923536, -0.00265949336, 0.00520431, -0.0192252547, -0.0303826462, 0.0104693314, 0.00488726189, -0.0082499953, 0.00429026736, 0.00200516032, -0.0082499953, 0.012573991, 0.0132553065, -0.00666138204, 0.00681653293, -0.00980825257, 0.0264566485, -0.000377759367, -0.00599355716, -0.0257416032, -0.0142064504, -0.0324063562, -0.00145622867, 0.0100645889, 0.015069901, -0.00746749341, 0.000878627819, 0.0373981781, 0.0137544889, 0.0255527236, 0.0112113589, 0.0177277084, 0.0125537533, 0.0114204753, -0.0112315957, -0.022436209, 0.0092551047, 0.0102871973, 0.00833094306, 0.0062701311, -0.020628361, 0.0229353905, 0.0144223133, -0.00445891, 0.00511998869, 0.00766986422, -0.0101590287, 0.00515709026, 0.0342681706, 0.00288210157, -0.00208779518, -0.0129315127, -0.00699529424, -0.0169856809, 0.00516046304, 0.00185338198, 0.00625326671, -0.00571361044, -0.00838490855, -0.02254414, 0.00875592232, 0.00247735949, -0.00311482837, 0.0104558403, 0.0166753773, 0.0236369446, -0.00133564917, 0.012283925, 0.00480631366, 0.0100173689, 0.00273706904, -0.00978126936, -0.00386866066, 0.00711671682, 0.0205878858, -0.0304096304, -0.0257820766, 0.0112923067, 0.00156331668, 0.00498170173, -0.00506939599, 0.00252795219, 0.00399345625, -0.00247061369, -0.0223687515, -0.0129989702, 0.00715044513, -0.00466128066, 0.00133227638, -0.0233671162, 0.00327166612, -0.0298160072, 0.0186855979, 0.0387203358, -0.000998364063, -0.0157174878, -0.00970706716, 0.0124997878, 0.00711671682, -0.00854006, 0.0151913231, -0.00400357461, -0.0169182234, -0.0026358834, -0.0108268531, -0.0059261, -0.0174039137, -0.0106919399, 0.00453311251, 0.0171205942, 0.0031080828, -0.0230163392, 0.00491087185, 0.00456684083, 0.0303826462, -0.0045364853, -0.0166349038, 0.00635107933, -0.00485690637, 0.00417221757, -0.0191982705, 0.0180380102, 0.0217751302, 0.00633084215, -0.00519419136, -0.0139231309, 0.00304737128, 0.00753495051, 0.0235290118, 0.0284129, -0.000941025559, -0.0177951641, 0.0137409968, 0.00765637308, 0.00433748728, 0.000752989086, 0.0198998246, -0.00995665789, -0.0152048152, -0.00219572638, 0.00871544797, 0.0125672445, 0.00130360713, 0.0165809374, -0.00512336148, -0.000518154295, 0.018577667, 0.00527514, -0.0140715363, 0.0154206771, 0.00242508017, -0.00830396079, -0.00307435426, 0.020048229, -0.000708720414, 0.0250130668, -0.00247735949, 0.00945073, 0.00854006, 0.00711671682, -0.00897853076, 0.0023002848, 0.00536958, -0.0232322011, -0.00718417391, -0.015407186, -0.0162706356, 0.0147865815, -0.0208307318, -0.0149214957, -0.0100173689, -0.00235425029, 0.0116228461, 0.010246723, -0.00382481376, 0.0263757, 0.00833094306, 0.00257179933, -0.014840547, -0.020048229, -0.032163512, -0.00171846792, 0.00337791094, 0.00021670571, -0.011717286, 0.0144627877, -0.00673895748, -0.000305243069, -0.0189824086, 0.0234345719, -0.0166753773, 0.0200347379, 0.00418570871, 0.0107998708, 0.0109550217, -0.0102332318, -0.00379108521, -0.0228274595, -0.0152452886, 0.0150968833, 0.0364807621, -0.0142873991, -0.0159198586, -0.0140715363, -0.00737305358, 0.0227060374, 0.00991618354, -0.00204732083, -0.016189687, 0.00629374105, -0.0155555913, 0.0230163392, 0.0214648265, -0.015069901, -0.0197379272, 0.0185102094, 0.00801389571, -0.00391588081, 0.012283925, -0.0158524029, 0.00709647965, 0.00659392495, 0.0241091438, 0.0105030602, 0.0159198586, -0.015528609, -0.00930232462, -0.00156415987, -0.0136802858, -0.0126954131, -0.00383830513, 0.0356982611, -0.0162436534, 0.00875592232, 0.0132215777, -0.0119398944, 0.00586538902, -0.00179098418, 0.0324333422, 0.0176602509, -0.0116363382, 0.0233401321, 0.0129382582, 0.00795318373, 0.00636794372, -0.0136330659, -0.00952493306, 0.0194950812, -0.0015515117, 0.0100645889, -0.0232322011, -0.0100848265, 0.0219100434, -0.0196569785, -0.016432533, 0.0168912411, -0.0151238665, -0.0152587807, -0.00415198039, -0.0243789703, 0.00542354537, 0.000175809881, -0.0282510053, -0.000358787074, -0.00731908809, -0.000578022446, -0.0038517965, 0.0100713344, -0.0215997417, 0.0182538722, 0.00500531169, -0.0163111109, 0.0142873991, -9.6495176e-05, 0.00791270938, 0.00232726755, -0.00366628962, 0.0264566485, 0.00435097842, 0.0151913231, -0.000775755849, 0.00230365759, 0.0195490476, 0.00577769475, 0.0276169088, -0.0089920219, 0.0048703975, 0.00283825467, -0.0248241872, 0.00350439269, -0.0178086571, 0.0151508488, -0.0213568956, -0.00381132215, 0.00981499813, 0.00948445871, -0.00406765891, -0.0092551047, -0.00164763804, 0.0223957337, 0.0109482761, 0.0182538722, 0.00785199832, 0.0104356026, 0.0226385798, -2.05401393e-05, -0.00847260281, -0.00361569691, -0.00479956763, 0.00370676396, -0.0112855611, 0.00318397186, -0.0145302443, 0.00868846569, 0.000958733, -0.00791270938, -0.00856029708, 0.00382144074, -0.0107526509, -0.0183078386, -0.00798016693, -0.00163751945, -0.00885710865, 0.00197649095, -0.0186990891, 0.00135167025, -0.0222743116, -0.0241496172, -0.019373659, 0.0175793022, 0.0134914061, -0.000462923868, -0.00160294771, 0.0145842098, 0.0142604169, -0.00856029708, 0.000745821802, -0.0299509224, 0.0152722718, -0.00093680952, 0.00199841452, 0.0178491306, -0.0146381762, 0.00455672247, 0.000176969304, 0.0096193729, -0.00266792555, -0.00450275699, -0.011838709, 0.00262913783, 0.00690085441, -0.00912019052, -0.00394623633, 0.00746074785, 0.0231512524, 0.00854006, -0.00112906203, 0.00452636695, 0.00955191534, 0.00245206314, -0.00202371087, -0.0275764335, 0.00986896362, -0.0102737062, -0.00997689459, -0.00400020182, -0.0126414476, -0.01007808, -0.00281295809, -0.00447914703, -0.000209116799, 0.0186451226, -0.00793969259, 0.0143953301, 0.0198863335, -0.0215322841, -0.0237583667, -0.0196839608, 0.000618918275, -0.000930063834, 0.00718417391, -0.0119331488, 0.0112113589, -0.0016054773, -0.010705431, 0.0114879329, -0.030814372, -0.0246757828, 0.0162301622, 0.011150647, -0.00135588634, -0.00163161696, 0.0155960657, 0.0129854782, 0.0202506017, -0.00448926538, -0.0117105404, -0.000107615044, 0.0172015429, 0.00994991232, 0.00562591618, -0.0042531658, -0.00563266221, 0.004617434, 0.0116768125, 0.00783850718, -0.00136178883, -0.0367505923, -0.0125065334, 0.00241496181, -0.002293539, 0.0165134817, 0.0155421, 0.0109145474, -0.0157174878, 0.00383830513, -0.0157039966, 0.0186451226, 0.0107189221, -0.0163920578, 0.0155825745, -0.00487714354, 0.0047692121, -0.0111573925, 0.00115941768, 0.00093090703, 0.00570011931, -0.0221124142, -0.0159468427, 0.00170834933, 0.0160142984, -0.00702902256, 0.0272121672, -0.0137544889, 0.00550786639, -0.00054218591, 0.000115836374, -0.0136667946, 0.0157309789, -0.0111843757, -0.00669173757, -0.0175523199, 0.00840514619, 0.00655007781, -0.00629374105, 0.00936978124, 0.0286287647, 0.018469736, -0.000309248338, 0.0104963137, -0.0182808563, -0.0179840438, 0.00332057243, 0.0272526406, 0.0149754612, -0.0138691654, -0.00980825257, -0.0213434044, 0.016081756, 0.0030439985, 0.00664114486, -0.000201949486, -0.0285747983, -0.00646912912, 0.00566301774, -0.00771708414, -0.00769684743, 0.0194141343, 0.0128303273, 0.00441506272, -0.000736968068, 0.00297316862, 0.00733257923, 0.00203382946, 0.00294787227, 0.00141575444, -0.0127493786, -0.0050525316, -0.000158418625, -0.0154341683, -0.0178761128, -0.000272779376, -0.0162706356, -0.000695229042, 0.0233671162, 0.0178491306, 0.00638143532, -0.00957889855, -0.00927534141, 0.0100983176, -0.00902575068, -0.0106177367, -0.0115756262, -0.00290739816, 0.00486702472, -0.00202371087, -7.02897e-06, 0.00274212821, -0.00710322522, -0.00238460605, -0.00435772398, 0.00981499813, 0.000421184843, -0.00773057574, 0.0069076, -0.0123918569, -0.00264600199, -0.0156905055, -0.0195760299, -0.00658717891, 0.000520683941, -0.0151643408, 0.0277113486, -0.00521105574, 0.0088908365, 0.00692109158, 0.0158254188, -0.00720441109, -0.0205339212, 0.00510649709, 0.00468151784, 0.0116835581, 0.00128252676, -0.014719124, -0.0118252179, -0.0165674463, 0.0105300425, -0.0413106866, 0.0059699472, -0.000823397364, -0.000278681866, -0.0183752961, 0.00109364709, -0.00609137, -0.014948478, 0.0253233686, 0.017673742, 0.0264026821, 0.0234480649, 0.0127291419, -0.0109010562, -0.0197784, 0.0231242701, -0.00193601684, -0.00675582187, 0.0180245191, -0.00477595767, 0.0147461072, -0.0128303273, 0.0109887505, -0.00043341142, 0.00455334969, 0.0189419352, 0.00145538547, -0.0107796332, 0.000379656616, -0.0138152, -0.000359630299, 0.00261396, 0.0124323312, -0.0165134817, -0.020277584, 0.00459045079, -0.00516383583, -0.00450275699, -0.000580130494, -0.0130934101, 0.0105502801, 0.00236436888, -0.031381011, 0.00328853028, -0.0116565749, 0.0213838797, 0.0142469248, 0.000236310414, -0.00946422108, -0.0100578433, -0.0165539552, 0.00639155367, -0.0127493786, -0.0164055508, -0.0211545248, -0.0241900906, -0.0113395266, -0.012007352, 0.00210803212, 0.0145842098, -0.0107863797, -0.0235829782, 0.00125301431, -0.0111708846, 0.00397996465, 0.00733257923, -0.0199942645, 0.0157039966, 0.0134374406, 0.0225846134, -0.0190903395, -0.0109550217, -0.00700204, 0.0038517965, -0.00784525275, 0.0206688344, 0.011670066, -0.00332394522, -0.0078857271, 0.0324333422, 0.0246353075, -0.00546401972, -0.00342681725, 0.0168912411, 0.00995665789, -0.0170801207, 0.00140816555, -0.018348312, -0.00580805028, -0.00856704265, 0.0111843757, -0.00167715049, 0.0119061656, -0.0134914061, 0.0322174765, 0.0094372388, 0.00973404944, -0.00681316, 0.00661078887, -0.0114542041, 0.0375600755, 0.0184967183, -0.0209386628, 0.0102871973, 0.0393409394, -0.0248511694, 0.0253503527, -0.015973825, -0.02254414, -0.013248561, -0.00876941439, 0.00484004198, 0.00449263817, 0.00341669866, 0.00399682904, 0.0047186194, -0.00901226, 0.0136533035, -0.0238662977, 0.0138152, 0.00252120662, -0.0177277084, 0.00339140231, -0.00671872031, 0.0154611515, 0.0137612345, 0.00243351236, 0.00692109158, -0.00688061723, -0.0135723548, 0.00995665789, 0.00358196837, -0.00237111468, -0.0286017805, -0.00489063468, -0.025026558, -0.00296305, 0.00434086, -0.00742701907, 0.00013322763, -0.0177277084, 0.00793969259, -0.00544378255, -0.00750796776, 0.00229016622, 0.00973404944, -0.00200853311, 0.0101185543, -0.021410862, -0.0057675764, 0.0143953301, -0.0154881347, 0.0240956508, -0.00830396079, -0.00896504, 0.00188879692, 0.00554159516, -0.0123581281, 0.0118522, 0.00662428048, 0.00593959168, -0.00754169608, -0.0192117617, 0.0137882167, -0.0135251349, -0.0116903037, -0.0089717852, -0.00456009526, -0.0107593965, -0.0144223133, 0.0136060836, 0.0155421, 0.00125301431, 0.00603403151, 0.00924161356, -0.00193938962, 0.00574733922, -0.00206924439, -0.000267298485, 0.00740678189, -0.00963286404, -0.00204900722, 0.0027016541, 0.0166079216, -0.0113395266, -0.0357792079, 0.00352125708, -0.00517732697, 0.00108605821, -0.0100645889, 0.0427677594, 0.0130529357, -0.00633084215, -0.0181459412, -0.00384167791, -0.00401032064, -0.00560905226, -0.00240315683, -0.0112788156, -0.00726512214, 0.00204732083, 0.00258023152, -0.0112653244, -0.0138286911, 0.0128977848, 0.0100173689, -0.0070560053, 0.00655007781, -0.00993642, -8.49141725e-06, -0.00761589874, -0.0074202735, -0.0166618861, -0.00101775792, 0.0135925915, -0.00203888887, -0.0119668776, -0.00288547459, -0.0065028579, -0.0271312185, 0.00688061723, -0.0183752961, 0.00504241325, 0.0114069842, 0.00617906405, 0.0106312279, 0.0103006884, 0.0248916447, 0.00158102415, -0.00988245476, 0.00393274473, -0.0138017088, 0.016999172, -0.0264566485, -0.00929557905, 0.0263487156, 0.0169586968, 0.0199537892, -0.000798944209, -0.000545137154, 0.0332158431, 0.0226790532, -0.00350776571, 0.00305411709, -0.0150429178, 0.0024099024, 0.0355093814, -0.00417559035, 0.0148540381, -0.00414186157, -0.00418908149, -0.00354486704, -0.0129517503, 0.00130950962, 0.0139231309, -0.0148000726, -0.00636794372, 0.00729210488, 0.00436109724, 0.038396541, 0.00220415858, -0.0158389118, -0.00170834933, -0.00390576222, 0.00203214306, -0.0253503527, -0.005184073, -0.0051807, 0.0181594323, -0.0173499491, 0.00162487128, -0.0156095568, 0.00286692381, 0.00735281641, 0.0104895681, -0.00210971874, -0.0164864976, 0.00845911168, -0.0115216607, 0.00955191534, -0.0045364853, -0.0114137297, -0.000531224126, 0.0181324501, 0.0113192899, -0.00155657099, -0.0176062845, -0.0123918569, -0.0181459412, -0.00430713128, 0.01007808, -0.00962611847, 0.0100376066, -0.00841189176, -0.0229219, -0.0147865815, 0.00682665175, -0.0127021587, -0.00812182669, 0.00179604348, 0.0218156036, 0.0110629527, 0.00190903398, 0.00273032323, -0.00838490855, -0.0246353075, -0.00716393674, 0.00476583932, -0.00392937195, 0.00413174322, -0.0170126632, 0.0155960657, 0.0283589363, -0.00572035601, 0.00262745144, -0.0081690466, -0.000738232862, 0.00538644381, -0.00223957351, 0.009801507, 0.0010295629, -0.0164999906, 0.00218560779, 0.0130596813, -0.00841189176, -0.0235020295, -0.00533922389, 0.0233671162, 0.0198053848, 0.00576420315, 0.00161137979, 0.00025275306, 0.0128505649, 0.00150935107, -0.00696156546, -0.000375229749, 0.0160547737, -0.0236909091, 0.000899708131, -0.00100763945, 0.00072895753, 0.014503262, -0.0159198586, -0.0356982611, 0.0189824086, -0.026173329, -0.0175523199, -0.00427340297, -0.0103614, 0.00132047141, -0.00985547248, 0.0252289288, -0.00491087185, 0.0172285251, 0.00436447, 0.00445553707, 0.00904598832, -0.0387203358, 0.016432533, 0.0146921417, 0.00876266789, -0.0117442692, -0.00936978124, -0.0108808195, -0.0134711694, -0.0134374406, 0.0121422652, -0.00127662427, 0.00336104655, -0.00143261871, -0.00434423285, 0.00757542439, 0.0063207238, 0.0586066693, 0.00463429792, -0.00144948298, -0.029114455, 0.00491087185, -0.0153397284, -0.0225981046, 0.0336205848, 0.0131001556, 0.00430038571, -0.0112923067, -0.0040845233, 0.00585864298, -0.0111439014, -0.0188609865, -0.0146516673, 0.00263082422, -0.0125604989, -0.00218729419, 0.0104693314, 0.00208610878, 0.000795149768, 0.00686712563, 0.00633758819, 0.00367303542, -0.0115958638, 0.00328178448, 0.0088908365, -0.00499519333, 0.0285747983, -0.0106177367, 0.0111304102, 0.00146297435, 0.00633084215, -0.0180110279, 0.0144762788, 0.00819602888, 0.00530549558, 0.00382144074, 0.0108268531, -0.009174156, 0.00866822805, 0.00490412628, 0.00819602888, 0.00304737128, -0.00526839402, 0.0142604169, -0.00354149402, 0.00619255565, -0.0129315127, -0.00885710865, 0.00202371087, 2.2134338e-05, 0.000373543298, 0.000259077147, -0.00175894203, 0.0114676952, 0.00602391269, 0.0130394446, 0.0362918824, 0.00116616348, -0.00768335583, 0.0144897699, 0.00593959168, -0.0103614, -0.0110157328, -0.0124120936, 0.0279002283, -0.00902575068, -0.0226385798, -0.0259979405, -0.0126212109, -0.00876266789, 0.00549437525, 0.011730778, 0.0132080866, -0.00465790788, 0.00374049228, 0.00692109158, -0.0171745606, -0.0153397284, 0.0178491306, -0.00222608214, -0.0213568956, 0.020048229, -0.0225711223, -0.00338465651, 0.00456684083, 0.00575408479, 0.0293303169, 0.00528188562, -0.00573047483, -0.00417559035, 0.0194546077, 0.00119230303, -0.00243182597, 0.00302038854, -0.0157444719, 0.0102399774, -0.00344536779, 0.0105030602, -0.000896335288, 0.0087896511, -0.00838490855, -0.0128573105, 0.0146651585, 0.00460394239, -0.00607450586, 0.0290335063, 0.00163077377, 0.00532236, 0.00223114132, 0.0162841268, 0.017269, 0.00931581575, 0.0186586156, 0.000158840223, 0.00929557905, 0.011730778, -0.00587550737, 0.00491424464, -0.00950469542, -0.0152317975, 0.0013213146, 0.0278192796, -0.0156095568, 0.034430068, -0.000612172531, 0.00196299958, -0.00119230303, -0.021748146, -0.019373659, 0.0282510053, -0.00546401972, 0.00652309507, 0.0101860119, -0.00702227699, -0.0198188759, -0.0148945125, 0.0063342154, -0.00654333225, 0.0198593494, 0.0162976179, 0.0146651585, 0.00720441109, 0.00168052327, -0.00376410224, -0.0121894851, 0.0392599925, 0.0163246021, 0.0101522831, 0.0193331856, -0.00472873775, 0.00200347393, 0.00144779659, 0.00603065873, 0.00261396, -0.014503262, -0.0063848081, -0.0300588533, -0.0266994927, 0.00669848314, 0.0406630971, -0.0143683478, -0.00107593962, -0.0316778235, 0.00171425182, -0.00981499813, 0.00574733922, 0.0112653244, -0.000856282713, -0.00398671068, -0.00918090157, 0.0202506017, -0.0238662977, -0.0287906602, -0.011440712, 0.010766142, -0.017269, -0.00746074785, 0.00626338553, -0.00924835913, 0.00338971592, 0.0512133762, -0.0177277084, -0.027414538, -0.0120545719, 0.0033930887, 0.000908983522, 0.0103816371, 0.000181079973, 0.00884361658, -0.0214783195, 0.00554834073, -0.0115553895, -0.00285680522, 0.00991618354, 0.0116835581, 0.00132974668, 0.00010793125, 0.0194546077, 0.0139096398, 0.00856029708, 0.00471524661, -0.0129989702, 0.0354554169, -0.0187800378, 0.000935966324, -0.00904598832, -0.020048229, 0.0088908365]
|
07 Jun, 2019
|
Get first and last elements from ArrayList in Java
07 Jun, 2019
Given an array list, find the first and last elements of it.
Examples:
Input : aList = {10, 30, 20, 14, 2}
Output : First = 10, Last = 2
Input : aList = {10, 30, 40, 50, 60}
Output : First = 10, Last = 60
The last element is at index, size – 1 and the first element is stored at index 0. If we know how to get the size of ArrayList then we can get those two values easily. But remember, that you need to use size() method for ArrayList, not length, length is used to get the length of an array.
Find First and Last in ArrayList:
// java program print first and last element of a List
import java.util.ArrayList;
import java.util.List;
public class FindFirstLast {
public static void getFirstLat(List<Integer> list)
{
// Displaying ArrayList elements
System.out.println("ArrayList contains: " + list);
// Logic to get the last element from ArrayList
if (list != null && !list.isEmpty()) {
System.out.println("First element is: "
+ list.get(0));
System.out.println("Last element is: "
+ list.get(list.size() - 1));
return;
}
}
public static void main(String[] args)
{
/* Creating ArrayList of Integer and adding
elements to it */
List<Integer> al = new ArrayList<Integer>();
al.add(3);
al.add(1);
al.add(4);
al.add(5);
al.add(2);
getFirstLat(al);
}
}
Output:
ArrayList contains: [3, 1, 4, 5, 2]
First element is: 3
Last element is: 2
Application : The first element is your lowest and the last element is your highest in case of ascending order and opposite then the first element would be the maximum and last element would be the minimum if List is in descending order.
// java program print Maximum and Minimum Value of a
// sorted List, List may be increasing or decreasing order
import java.util.ArrayList;
import java.util.List;
public class FindFirstLast {
// function find and print Maximum and Minimum value
public static void getFirstLat(List<Integer> list)
{
// Displaying ArrayList elements
System.out.println("ArrayList contains: " + list);
// Logic to get the last element from ArrayList
if (list != null && !list.isEmpty()) {
if (list.get(0) < list.get(list.size() - 1)) {
// if list in increasing order
System.out.println("Minimum Value: "
+ list.get(0));
System.out.println("Maximum Value: "
+ list.get(list.size() - 1));
return;
}
else {
// if list in decreasing order
System.out.println("Minimum Value: "
+ list.get(list.size() - 1));
System.out.println("Maximum Value: "
+ list.get(0));
return;
}
}
}
public static void main(String[] args)
{
/* Creating ArrayList of Integer and adding
elements to it */
List<Integer> al = new ArrayList<Integer>();
al.add(5);
al.add(4);
al.add(3);
al.add(2);
al.add(1);
getFirstLat(al);
}
}
Output:
ArrayList contains: [5, 4, 3, 2, 1]
Minimum Value: 1
Maximum Value: 5
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java/Split a List into Two Halves in Java/Randomly Select Items from a List in Java/Get first and last elements from ArrayList in Java
|
https://www.geeksforgeeks.org/get-first-and-last-elements-from-arraylist-in-java/?ref=next_article
|
Pandas
|
Get first and last elements from ArrayList in Java
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Randomly Select Items from a List in Java, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Initializing a List in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Get first and last elements from ArrayList in Java, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0035627, 0.0241914801, 0.00223291595, 0.00405786559, -0.0251008403, -0.0221111625, -0.0027031675, 0.00172840781, 0.00871989504, 0.00123557798, -0.0151726175, 0.0224101301, 0.030594375, 0.00823407248, 0.0188474301, 0.0092306314, 0.00149016781, 0.0445462056, -0.0243658777, 0.00719391322, -0.0321390405, 0.0204294678, -0.0149359349, 0.0382429697, 0.01259402, 0.0319895595, -0.0150729613, 0.0191837698, -0.00950468518, -0.0460908748, 0.0292988475, 0.00426652, -0.00401426619, -0.0156958103, -0.00350041501, 0.0608897805, 0.0206163228, -0.00992822368, -0.0176017303, 0.0450694, 0.00977874, 0.0281777177, 0.00543436315, -0.0147241661, -0.0296725575, -0.023219835, 0.0135033801, -0.0186356623, 0.00492051244, -0.0391398706, 0.0046464582, 0.0176141877, 0.0192709677, 0.0197692476, -0.00767350756, 0.0252004974, -0.0151726175, 0.0149982199, -0.041033335, -0.0290247928, 0.0346055254, -0.0330608599, -0.000184421893, 0.00345992972, 0.0072001419, -0.0152598163, -0.0253001526, 0.0596939102, -0.00890052132, 0.0132044125, -0.0133040687, 0.0224724151, 0.0207408927, -0.0157954674, -0.0433005057, -0.00933651626, 0.0207159799, -0.00188412017, -0.0610890947, 0.0265583098, -0.00918080378, -0.0147366226, 0.0135158375, 0.00482708495, -0.0411080755, 0.00459040189, -0.0190467425, -0.0407841951, 0.0168293975, 0.012282595, -0.0110493526, 0.0294483323, -0.00200090441, 0.0312172249, 0.00939257257, 0.0528176501, 0.0388907306, 0.0132044125, -0.0245402753, 0.0167297423, -0.0157830101, 0.0236433726, -0.00631569559, -0.0198564474, 0.0231700074, -0.00478037121, 0.00788527634, 0.00720637059, 0.0214634, -0.019906275, 0.0190965701, 0.00204294687, -0.0106507288, 0.00531602185, 0.0165428873, -0.0121144252, 0.0250759274, -0.0187726878, 0.00436306186, 0.0237305723, 0.0194827374, 0.0236060023, 0.00372464093, 0.00953582767, -0.0328117199, 0.0335591398, 0.0199810173, 0.0224475022, 0.00891920738, -0.02303298, 0.0242911354, -0.00751779508, 0.0030737631, -0.0430762805, 0.00595755689, 0.0252876952, 0.0165802576, 0.0126064764, 0.0245651901, 0.0337086245, 0.00244935625, -0.0460161306, -0.0194951948, 0.00480217068, -0.0726491809, 0.00863269623, 0.0125753339, 0.00902509131, -0.0324878395, -0.0116099175, -0.0332601704, -0.00266423938, -0.0129179014, -0.00210211752, 0.0198938176, -0.0200433023, 0.0123635652, -0.0133165251, -0.0297473, -0.0144874826, 0.0162314624, 0.0171408225, -0.00710671442, -0.0349294096, -0.00371841248, 0.0164183173, 0.03575157, -0.0313417949, -0.0541630052, 0.0380685702, -0.00252876966, 0.0331106856, 0.00685757445, 0.0226717275, 0.00409523631, -0.0296227299, 0.0351536348, 0.0180750974, -0.0285763424, -0.0313168801, 0.0119773988, -0.00464957254, 0.0564052649, 0.00150184624, -0.0423537754, -0.0325127505, 0.0360754505, -0.0177761298, -0.00846452639, -0.00164276594, -0.00440043258, -0.0257610623, 0.00252721249, 0.0216751676, 0.00609458378, 0.0277790949, 0.00246959878, 0.00264866813, -0.0438984446, 0.03943884, 0.0144127412, -0.00461843, -0.00221578754, 0.0334843956, 0.0349294096, -0.0366235599, 0.00127372751, 0.0264337398, 0.0278787501, 0.00396132376, -0.0178259574, -0.000900796324, -0.00595755689, 0.0132168699, -0.00569284568, 0.0285265148, 0.0171408225, 0.0492300354, -0.0111240949, 0.000730291184, -0.00492051244, 0.016343575, 0.0569035448, 0.00535339257, -0.0311175678, -0.0232945774, -0.0146369664, 0.0238675978, 0.0150605049, -0.0302455798, -0.0123137375, 0.0159324948, -0.0128182461, 0.0170536228, 0.0298220403, 0.000657495635, -0.00673923315, 0.0237430278, 0.0320393853, 0.0553090498, 0.0271811578, 0.0155961551, -0.0230703503, 0.0121642537, -0.00619424, -0.0367979556, -0.0283022877, -0.0239049699, 0.0249015298, 0.0362747647, 0.0307438578, -0.0530667901, -0.0184612628, 0.0124632213, -0.0228461251, -0.00187789171, 0.00525373686, -0.0228212103, 0.0249762703, 0.0546612851, 0.0131296702, 0.0298718698, 0.0109434687, -0.0106881, -0.00312047685, 0.0442472398, 0.0348546654, -0.00114137202, 0.0361751057, 0.0170287099, 5.00226124e-05, 0.0345058702, -0.00830258615, 0.0457919054, 0.00204606098, -0.00581430132, -0.0668193102, 0.000771944295, 0.0644774, 0.0150106763, -0.00412015058, -0.00213793153, 0.0246025603, 0.00305974879, -0.01971942, -0.0254122652, -0.00331044593, -0.0403606556, -0.0327868052, -0.0249389, -0.0337335356, -0.00612884061, -0.00633749506, -0.0239672549, 0.0121642537, 0.0216751676, -0.0088506937, 0.0266330503, -0.0272808149, 0.00692608813, 0.0297971275, -0.0467137247, 0.0241790228, -0.0258358028, 0.0124009363, -0.0116722025, 0.00223291595, -0.0392893553, 0.0322636105, -0.00676414696, -0.037719775, -0.0727488399, -0.0146743376, -0.0469130352, -0.0333847404, -0.0122265387, 0.0392644405, -0.0083275, 0.0055371332, -0.0111863799, 0.00129552721, -0.0613382347, 0.00791019, 0.0435994752, -0.0072312844, -0.0304199774, -0.0313667096, -0.0314414501, -0.0217000823, -0.0490058102, -0.034032505, -0.00336338812, -0.0471621752, 0.00999050867, 0.01768893, -0.0527179949, -0.0216502529, -0.0430264547, -0.00609769812, 0.0203796402, -0.00616621133, 0.0121704824, 0.0193581674, 0.0282773748, 0.0197941624, -0.0511235, -0.025250325, -0.00320767565, 0.0364989899, 0.0352532901, 0.00100668077, -0.00519768, 0.0187851451, -0.0491303802, 0.0130549287, -0.0172155648, 0.0208530053, -0.0168169402, 0.0167421978, 0.0536149, 0.000225004434, 0.0143878264, -0.0233817752, 0.0159449503, 0.0169041399, -0.0437240452, 0.004453375, 0.00528176501, 0.0049609975, -0.00523505127, -0.0156958103, 0.00631880946, 0.0256614052, -0.00789773371, 0.0192460548, 0.00674546184, -0.01284316, 0.0176391024, 0.0154093, -0.0181498379, -0.0132916113, 0.0279285777, -0.0168418549, 0.0210647751, -0.00850189757, -0.0231824648, -0.0058080731, -0.0244032498, -0.00387101062, 0.0183740649, 0.0344560407, 0.0381433107, 0.00177979283, 0.0146992514, -0.0101213064, 0.00916834641, 0.0206287801, -0.0231326353, 0.0012433636, -0.0241914801, 0.00707557192, 0.00625963882, 0.0245651901, -0.0206786077, -0.0559568107, 0.0114355199, 0.0172529351, 0.0210647751, 0.0424783453, 0.02862617, 0.0143878264, 0.0319148153, -0.0446707755, -0.0320393853, 0.0152473589, -0.0236433726, -0.0240669101, 0.00319521874, -0.0174024198, 0.0142009724, -0.0267576203, 0.0201803278, -0.0465891548, 0.0195699353, -0.0248890724, 0.0136528639, 0.0212640874, 0.0323881805, -0.0119400276, -0.0253250673, -0.0119462563, 0.0435994752, 0.00688871695, 0.0457171649, -0.0032668463, -0.0145497676, 0.0553588755, -0.0087946374, -0.0560564697, -0.0365737304, -0.0147739938, 0.0624344498, 0.0312919654, 0.0507996157, 0.00424160622, 0.00257081189, -0.0520204, 0.00348172942, 0.0131172137, -0.00119197846, -0.0178633276, -0.0107005574, 0.0406097956, -0.0284766853, 0.02315755, -0.0122265387, 0.0387910753, -0.0249513574, 0.0110119814, 0.0216004252, -0.00817178749, -0.00640289439, 9.00212399e-05, 0.00382118253, 0.00447828881, -0.0219865926, 0.00762990816, 0.0098908525, -0.0288005676, 0.0107192425, -0.0131421275, -0.0184114352, 0.00550910505, -0.00880086515, 0.0470376052, 0.012531735, 0.000805811724, 0.0123635652, 0.00625652494, -0.0312670507, 0.0551595651, 0.0372713245, -0.000244079201, -0.01996856, 0.0281029753, -0.052219715, 0.0122576812, 0.0143379988, -0.0492798649, -0.00573021686, -0.00388658186, 0.0363993347, -0.0215755124, 0.000510736718, -0.0191090275, 0.0127559612, -0.0359508805, 0.0140764024, -0.0139393751, 0.01056353, 0.0102707911, -0.0320643, -0.04337525, 0.0297223851, 0.01793807, 0.0153345587, -0.0602918454, -0.0307438578, -0.04312611, -0.0178384148, -0.0343314745, 0.0150854187, 0.00865761, -0.0191837698, 0.0170660801, 0.0219865926, 0.02862617, 0.0154217575, -0.00793510489, -0.00446271757, -0.0119462563, 0.0341819897, 0.00678283256, 0.0072312844, -0.00891297869, 0.0234440602, 0.0211146027, -0.00515719503, 0.00617555436, -0.0136528639, -0.0276046973, 0.01793807, -0.00648386497, 0.00434126193, -0.00495165493, -0.0193332527, -0.0177263, 0.0097413687, 0.0161068924, 0.0165304299, -0.0133040687, 0.00273586717, 0.0103953602, 0.00977874, -0.0152722737, 0.00223914441, 0.0117967725, 0.0133289825, -0.0011912, -0.0103579899, 0.0173027627, 0.0498778, 0.0186232049, -0.00632503815, -0.0243907925, 0.0323632695, -0.0135407513, -0.0229208674, -0.00753648067, -0.0119836275, -0.016468145, -0.00407032249, -6.13421753e-06, 0.00484577, 0.0218993928, 0.00477725687, 0.0161940902, 0.00831504259, -0.01768893, 0.00137104781, -0.0151850749, -0.00505442498, 0.0174024198, -0.00142554718, -0.00262998254, 0.0159574077, 0.000211184961, -0.0243285075, 0.012531735, 0.0166425426, 0.00348484376, -0.0187726878, 0.0426527448, -0.0532162748, -0.0171408225, 0.0116223749, -0.0269569326, 0.000367286644, -0.00894412119, 0.0147241661, 0.0333847404, 0.012780875, 0.0305196326, 0.0123635652, -0.0327868052, 0.00281839469, -0.00632815249, -0.0228461251, -0.00985348132, 0.0118652862, 0.0227464698, -0.0237554852, -0.00549976248, -0.0373709798, -0.00479905633, -0.0261846, 0.0172031075, 0.0264586527, -0.0101649063, -0.0121580251, 0.0142508, -0.0285763424, -0.00656483509, 0.00123168516, 0.0126189338, -0.0127435038, 0.0115289474, -0.01793807, -0.0201180428, -0.000400180899, -0.0172529351, -0.0401364304, -0.0294981599, 0.0097725112, -0.00698837312, 0.0301210098, -0.0048426562, -0.0167048275, -0.0125441924, -0.0357764848, 0.0105199302, -0.0270067602, -0.0148113649, -0.00549976248, -0.0133538963, -0.00698837312, -0.00611326937, 0.0243907925, -0.00299902097, 0.02875074, 0.00605409872, 0.0137026925, 0.0072437413, 0.0827642605, -0.00502016814, -0.00673923315, 0.021812195, -0.00354712876, 0.0105137024, 0.0124569926, -0.0131545849, 0.00924308877, 0.0171034522, -0.00782299135, -0.0153470151, 0.0131421275, 0.0148736499, -0.0198938176, 0.0288503952, 0.01615672, 0.0196945053, -0.0191339403, -0.00226250128, -0.0306192879, -0.00761745125, 0.00259105442, -0.0160446074, -0.00571464561, 0.0297473, 0.00255679782, -0.0382927954, -0.0267327074, -0.0138646336, 0.00744305318, 0.00707557192, -0.00999050867, -0.021812195, 0.04337525, 0.012282595, -0.00250229845, -0.00481462758, -0.0370969251, 0.0258607175, 0.0148985637, -0.0145995962, -0.00218620221, -0.0193955377, -0.0206786077, 0.0219492223, -0.0106320437, -0.0276296102, 0.00200246158, 0.0209152903, 0.0181498379, 0.0295978151, -0.0468382947, 0.00698214443, 0.0116223749, -0.000109485292, -0.0477351956, 0.0413821302, 0.00677660434, 0.0179131553, 0.0083275, 0.00508868182, 0.019407995, 0.00800361764, 0.0167546552, 0.02303298, 0.00786659122, 0.0166051723, -0.0108624976, -0.0295479875, 0.0362249352, 0.016468145, -0.00782922, 0.00230765785, -0.0216502529, 0.0275299549, -0.0191588551, -0.00323570403, 0.00136559783, 0.0238426849, 0.00421669194, -0.00433814758, -0.00260662567, 0.00940503, -0.0201803278, 0.0136030363, -0.00168480829, -0.0134410951, 0.0120396838, 0.0193830803, -0.00259105442, -0.0139642889, -0.00782922, 0.0294483323, -0.0134037249, -0.0212640874, -0.00114915764, 0.0170660801, 0.0255617499, -0.0209277477, -0.0201554149, 0.00829635747, -0.0176391024, -0.011454205, 0.0109247826, 0.00861401, 0.0231326353, -0.0122639099, -0.0169788823, 0.0426029153, -0.00233568624, 0.0137898913, -0.0295978151, 0.0322636105, 0.0104327314, 0.0378941707, 0.0154591287, -0.010750385, 0.0383675396, -0.023468975, 0.0325874947, -0.0265832227, -0.00577070192, 0.0137276063, -0.0232572053, -0.00598558504, -0.0053315931, 0.0213263724, -0.00772956433, 0.0198066197, -0.01139192, 0.00993445143, -0.00724997, -0.00337273092, 0.00508245314, 0.00874480885, -0.0280282348, -0.0257610623, 0.0320643, -0.000589371484, 0.0118964287, 0.0171408225, -0.0262095127, -0.00159916643, -0.00553090498, 0.0333349146, -0.0169913378, 0.00360007095, 0.0408838503, 0.0141386874, 0.00492674066, 0.017751215, -0.0120832836, 0.0205789525, -0.00393952383, -0.0104265027, -0.00940503, 0.0455676802, -0.0114604337, 0.0103455326, 0.00640912307, 0.0114978049, -0.00915589, -0.00786036253, 0.00276545249, -0.00642158, 0.0358512253, 0.0224475022, 0.00200401875, -0.00866383873, 0.0423537754, 0.00124881358, 0.0228336677, 0.0155463275, -0.0118715139, 0.01947028, -0.0233194903, -0.0219616778, -0.0136404075, 0.0272060726, -0.0320892148, -0.00111723656, 0.0348048396, -0.0231326353, -0.0130300149, 0.0116908876, 0.0177138448, -0.00932405889, 0.0216627102, -0.00388658186, 0.0129428161, -0.0138895474, 0.007187685, -0.00871989504, 0.0192086827, 0.0205166675, 0.0256364923, -0.0227340125, -0.0073184832, -0.0273306426, -0.0179754402, -0.0275548678, 0.00356892846, -0.0233568624, 0.00520079443, -0.0137898913, -0.00373086939, -0.0131172137, -0.0469130352, -0.0171283651, 0.0090873763, 0.0232073776, 0.0349543206, -0.0517712645, -0.00720637059, 0.0385668501, 0.0179256126, -0.0287756529, 0.00605721259, -0.0171159077, -0.00426029181, -0.00108220126, 0.00833372865, -0.0428022295, 0.0107005574, -0.0291742776, 0.00513850944, 0.0154466713, 0.0187104028, 0.0219492223, -0.0359259695, 0.0114043774, -0.0122452239, 0.00761745125, 0.0436991304, 0.0106445, -0.033783365, 0.0208779201, -0.0327618904, -0.034406215, -0.027156245, -0.00890675, 0.0176640153, -0.0184861775, 0.0115600899, 0.0119898561, -0.00431323377, 0.00364989904, 0.0215755124, -0.0205914099, -0.0219865926, 0.0201554149, 0.0154715851, 0.0102209626, 0.000414973591, 0.00496411184, 0.0170785375, 0.0111054089, 0.0166051723, 0.00868875254, 0.0335840546, 0.0246274751, 0.00597935682, -0.00575201632, -0.00797247514, -0.0140514877, 0.0596440807, 0.0340823345, 0.0144750262, 0.00508868182, -0.030594375, 0.0343563855, -0.0270815026, -0.0168792251, -0.0103081614, 0.0054187919, -0.0195574798, -0.00049516547, -0.0145746814, 0.0114915762, 0.0127933314, -0.00226250128, -0.00427897694, -0.0120832836, -0.0109434687, -0.0325874947, -0.0267327074, -0.034281645, 0.0112798074, 0.0166425426, -0.00670809066, -0.0192709677, 0.0154093, -0.0141137727, -0.00571153127, -0.0506750457, -0.0087634949, 0.0268074498, 0.0203920975, 0.0108064413, -0.0157456398, 0.0216627102, -0.026782535, -0.0280531477, 0.0149110202, 0.0194827374, -0.0112673501, 0.0490058102, 0.0160196926, 0.0112611214, -0.0123697938, 0.0192460548, 0.00550287683, -0.0137151489, -0.00619735382, -0.00629701, 0.0109746112, -0.00188256311, 0.00329487468, 0.0302455798, -0.02150077, 0.02303298, 0.00419489248, 0.0203671828, -0.0250510126, -0.00759253744, -0.0281278901, 0.0248517, 0.0410831645, -0.00142321142, 0.00830258615, 0.0294483323, 0.0135656651, -0.0381184, -0.0326124057, -0.00271406723, 0.00324816094, 0.0292739328, 0.0210896898, -0.00820915867, -0.00500148255, 0.0209900327, -0.0185484625, 0.0240669101, -0.0223603025, 0.0291991923, 0.0130175576, -0.0169165973, -0.0146618811, 0.00518522318, -0.0209900327, -0.0238551423, 0.0214509424, -0.0232696626, 0.0133788101, -0.00551221939, 0.0136902351, -0.00221267343, 0.0338830203, 0.0301459227, 0.00387101062, 0.0485075302, 0.019532565, 0.00843338389, -0.017751215, -0.0103642177, 0.0130549287, -0.00903132, -0.01093724, -0.00249918411, 0.0180750974, 0.00807213131, -0.00409835065, 0.00963548385, 0.00706311502, 0.0161442626, 0.00406098, 0.0257859752, -0.0471870899, -0.00475857127, 0.00899394881, -0.00174086471, 0.00379315438, 0.00129397016, -0.00769219315, -0.00696968753, 0.0279036649, -0.00643403688, 0.00187166315, 0.0229582377, 0.0245901048, -0.000764547964, -0.0115102613, 0.0233194903, -0.0166051723, -0.0199810173, -0.0184861775, 0.0132542402, -0.00654615, 0.021189345, 0.0108251264, -0.0183242373, -0.0171159077, -0.0219865926, -0.0144625688, -0.00978496764, 0.0376201198, -0.00800984632, 0.0104701025, -0.000939724385, 0.0152224451, 0.00425094878, -0.00603541313, -0.00852681138, 0.0102147339, 0.0165678, -0.00423226319, -0.0106195863, -0.0224101301, 0.0231450927, 0.0216128826, -0.014562225, 0.0666698292, 0.00666449126, 0.0201803278, -0.00212547439, 0.0145746814, -0.00880709384, -0.014313085, -0.00265801093, -0.00253655529, -0.00147381797, 0.0229582377, -0.0135905789, -0.00751779508, 0.000697591633, -0.0192585103, 0.0362249352, -0.0135532087, 0.0452687107, 0.0249389, 0.0127933314, -0.0114853475, 0.00713785691, 0.00808458868, -0.0156459827, -0.00987839513, -0.00678283256, 0.00422292063, -0.01462451, 0.00556827569, -0.00851435494, 0.00185142062, 0.0106694149, 0.0354027748, -0.0227340125, -0.00295075029, -0.0191588551, 0.0179754402, -0.012407165, -0.0147117088, 0.0137400636, -0.0118590575, -0.0151352463, 0.00334781688, -0.000289235817, 0.0231450927, 0.00553401932, -0.00426963437, 0.00607589819, -0.0107379276, -0.00393641, 0.00929914508, 0.0308435149, 0.00116239314, 0.00280593778, 0.0118715139, 0.0382927954, 0.0320393853, 0.0223229323, -0.00568350311, -0.000389864959, -0.0185858328, 0.00766105065, 0.0103642177, -0.00494231191, -0.00312203378, -0.011827915, 0.0134286387, 0.00380872563, 0.0260600299, -0.0039955806, -0.0167671125, 0.000913253287, 0.00308933435, 0.00775447814, -0.0097725112, 0.0133040687, 0.00435994752, -0.0151103325, -0.0196073074, -0.00502951071, -0.00612261193, -0.0149857625, -0.00694477372, -0.0259105451, -0.0281278901, -0.00666449126, -0.00413260749, -0.0131047564, 0.0127684176, -0.00703820121, 0.0174896177, -0.0108438125, -0.00320767565, -0.0108064413, -0.0258607175, -0.00631880946, 0.0136404075, 0.00807836, -0.0301210098, -0.000363977771, 0.00873235241, 0.0184861775, -0.0244530775, 0.0175892748, 0.0309431702, -0.0140514877, 0.000685523904, 0.0071254, -0.0247271303, -0.0214260276, -0.00151975313, -0.0163684878, 0.00901263487, 0.0010977725, -0.0367979556, -0.00313604809, -0.0175145324, -0.0181373823, -0.00864515267, 0.0082527576, -0.0124196224, -0.0149857625, -0.0169290528, 0.0168418549, -0.00377758313, 0.0164930578, -0.0172653925, 0.00289313658, 0.0104015889, 0.0241042823, -0.00615686877, 0.0087634949, -0.00384921092, -0.00291649345, 0.00301147811, -0.000666059845, 0.0243783351, -0.0191837698, 0.0182370376, -0.00277635222, -0.00345681561, -0.00130253437, 0.00924931746, -0.0108936401, -0.000893789227, 0.0173775051, -0.0131296702, 0.00481462758, 0.0193706248, 0.000842404144, 0.0201429576, 0.0251506679, 0.0137026925, -0.0224848725, -0.00947977137, -0.00197131908, -0.0288503952, -0.00431946246, -0.0295978151, 0.0188349728, 0.0133663537, 0.0149608487, -0.00389592466, -0.0135033801, -0.0126064764, -0.00886315, -0.0152349025, -0.000965416955, -0.0301957503, 0.00307064876, -0.00512605254, 0.00568661746, -0.0125005925, -0.00458728755, -0.0222855601, -0.0178259574, 0.0180252697, 0.00207876065, 0.0130175576, -0.00842715614, 0.0140888589, -0.00188723439, -0.0241790228, 0.00192304829, -0.0110431239, -0.00369972689, -0.00254745502, -0.0118341437, 0.00984102488, 0.014063945, -0.0388658196, -0.0212640874, -0.00459351623, 0.00206630374, 0.00148393924, -0.00934897363, -0.0126812188, 0.00265489658, 0.025125755, -0.00271406723, -0.0119462563, 0.017875785, 0.00503885373, 0.000877439452, 0.0229956098, -0.0192585103, -0.0241665673, -0.00841469876, -0.0223229323, -0.0133289825, 0.0108562689, 0.00967908371, 0.0013578122, 0.000616231875, -0.01284316, -0.00831504259, -0.0116846589, 0.0330359451, -0.0308933426, -0.0120209986, 0.0141386874, 0.00650877878, -0.0007384661, -0.0365986452, -0.0243409649, -0.0099780513, -0.00990331, 0.0184861775, 0.0102770189, -0.00456548808, -0.0144625688, 0.0126812188, 0.0071129431, 0.00161318062, -0.00777316373, 0.01284316, 0.00231700065, -0.0359508805, -0.0214883126, 0.0166923702, 0.00628143875, -0.00282306597, -0.000839289918, -0.0104140462, 0.00466202945, -0.0374208055, -0.0132791549, -0.00820915867, -0.00366235594, 0.0167172849, 0.026782535, -0.00275922404, 0.0209900327, 0.0152847301, 0.00870743766, 0.00150885328, -0.0029632072, -0.0169290528, 0.0255368352, 0.00194329093, 0.00482397061, -0.0191837698, -0.0258108899, 0.0355024301, 0.0316158496, 0.00648386497, 0.0343314745, -0.00579561619, 0.00868252385, -0.03331, -0.0150605049, -0.000882110791, 0.0204294678, 0.0180377252, -0.0458417349, -0.00250541279, -0.00238707126, -0.000116589668, -0.000950624293, 0.0139642889, -0.0138646336, 0.0123324227, 0.0052879937, -0.0360505395, 0.014313085, 0.0148736499, 0.0150605049, 0.0128680738, -0.0184488073, -0.0182868652, 0.0192086827, 0.00840224139, -0.00863269623, 0.012282595, 0.0130051, 0.0111427801, 0.00873858, -0.00398000935, -0.0111303236, 0.00391149567, 0.000328163907, -0.00239797123, 0.00677037565, 0.0244406201, -0.0408340245, 0.0361751057, 0.00161318062, -0.048532445, 0.0145497676, 0.0129303588, -0.0151227899, -0.0186232049, -0.00226561562, 0.00873235241, 0.0138272624, 0.0279285777, -0.00751156686, 0.0228212103, 0.0144251976, 0.0240046252, 0.0267576203, -0.0298967827, 0.00847075507, 0.0112922639, -0.00674546184, -0.00873858, -0.00693231681, 0.0183242373, -0.00690117432, -0.00203983253, 0.014686795, 0.033907935, -0.0188848022, 0.0238551423, -0.0219741352, 0.00304884906, -0.00170349376, -0.021687625, 0.0152722737, 0.0143878264, 0.01449994, 0.0149359349, 0.00923686, -0.0173401348, -0.0147615364, 0.00555893313, 0.0025178697, -0.0272559, -0.01176563, -0.0133788101, 0.0238426849, 0.0073496257, 0.0103579899, -0.0189346299, -0.00979119632, -0.00986593869, -0.0217000823, -0.00678283256, -0.0079600187, -0.0258856323, -0.0283272024, -0.0172903053, -0.0174771603, 0.0242163949, -0.00102925906, 0.0154715851, 0.0205042101, 0.0183740649, 0.0162314624, 0.0112860352, -0.00839601364, 0.0123012802, -0.0116659738, -0.00297255, -0.0032139041, 0.00422292063, -0.00597624248, -0.00755516626, -0.00530356495, 0.01284316, -0.0082839, 0.017626645, 0.00812818762, -0.02125163, 0.011578775, 0.00532847876, 0.00337273092, -0.00153454579, 0.0199311879, 0.0419800654, 0.0117594013, -0.00386166782, -0.0127497325, 0.0114230625, 0.0363245904, -0.0110182101, 0.012780875, 0.00579250185, 0.0270565879, 0.00206163223, 0.0353529453, 0.0389654748, -0.0132791549, -0.0463151, 0.00815310143, -0.00941748638, -0.0184737202, -0.0344809555, -0.0218993928, 0.0240419973, 0.00589838624, -0.0214011148, -0.00414817873, -0.0106507288, -0.00669563375, 0.0181373823, 0.0059077288, 0.0109434687, -0.0039208387, -0.0130923, 0.0154840425, 0.00199156185, -0.0172155648, 0.0123573374, 0.0278538354, 0.0184114352, -0.00554959057, 0.0120770549, -0.0131794987, -0.030718945, -0.00907491893, -0.00985348132, 0.0179505274, -0.0105759874, -0.00899394881, 0.0050045969, -0.0115725463, 0.0115974601, -0.0131421275, -0.0122016249, 0.0150480475, -0.0423537754, 0.0239672549, -0.0137276063, -0.0280282348, -0.0216751676, 0.0328615457, 0.00653369259, 0.0157830101, 0.0147117088, -0.0015213103, -0.00514473813, -0.0223104749, 0.0112486649, -0.0162688326, 0.0146743376, -0.000571464538, -0.00406720815, 0.00260039722, -0.00335715967, -0.0263091698, -0.0286012553, 0.00445026066, 0.0188349728, -0.0154217575, -0.00541567756, 0.0233194903, 0.00182183518, 0.0128182461, 0.0133538963, -0.0150854187, -0.0213762, -0.01412623, 0.00342255877, -0.0196446776, -0.0131794987, -0.0168916825, 0.00939880125, 0.00165678, 0.00967908371, -0.00470251497, -0.00011259954, -0.0210149474, 0.0202177, 0.00999050867, -0.0123760225, -0.0106756426, -0.0177263, 0.0186605752, 0.0230578948, 0.0322636105, -0.00707557192, -0.00261129718, -0.00441289, -0.011703345, 0.0148362787, 0.0303203203, 0.00755516626, -0.00595755689, -0.0178135, 0.0036156422, 0.00676414696, -0.00685134623, -0.0103393039, 0.000250697, -0.000109582608, -0.00768596446, -0.0126936762, -0.0208156351, -0.00323258969, -0.00845829863, 0.00409523631, 0.0178384148, 0.0166799128, 0.00415440695, -0.00188256311, 0.0200806726, 0.0178010426, 0.0128556164, 0.00676414696, 0.0020413897, 8.09704507e-05, -0.0121393399, 0.00414817873, -0.0143629126, 0.00192771968, 0.0107317, 0.00822784379, -0.0204294678, 0.00359695661, 0.00562121812, -0.00856418256, 0.00451877434, -0.0152473589, 0.0139892027, -0.00468382938, 0.0116971163, 0.0194453653, -0.00754893757, 0.00331667438, 0.014562225, -0.00402049441, -0.00072639843, -0.00910606142, -0.0243907925, 0.00633126684, 0.00674546184, 0.00490494119, 0.00533782132, 0.0194578227, 0.02887531, -0.00875103753, 0.0166300852, -0.0048987125, 0.0158826653, -0.00289002247, -0.0218495652, 0.0157580953, 0.0239049699, 0.0174397901, -0.0171781927, -0.00841469876, -0.014188515, -0.00877595134, -0.000726787664, -0.0176640153, -0.00706311502, 0.0187602323, -0.0157082677, -0.00918703247, 0.0251008403, -0.021687625, 0.00950468518, 0.00150184624, -0.00492051244, 0.0206412375, 0.0125005925, -0.00345992972, -0.0114230625, -0.0176141877, -0.0299715251, 0.00038694535, 0.0161691774, -0.0153719289, -0.0176017303, -0.0172653925, -0.00479282811, 0.0108500412, -0.00764859375, -0.00713162869, -0.021438485, 0.00607278384, -0.000548107666, -0.00779807754, -0.0030068066, 0.0110244388, 0.00629078131, 0.0244655348, 0.01271859, -0.0115227187, 0.01818721, -0.000339842343, 0.00243222783, -0.021289, 0.00392395258, 0.00820915867, 0.0124881351, -0.00246959878, 0.0155089563, -0.000761044386, -0.00559941819, -0.0158079248, 0.019781705, 0.0101150787, -0.00517276628, -0.00288223685, 0.00224070158, 0.0160695203, 0.0402859151, 0.00731225498, 0.00493608369, 0.014313085, 0.00772956433, 0.0154964989, -0.00407966506, -0.034406215, 0.00678283256, 0.00524128, -0.0121953962, 0.0120085413, -0.0264088251, 0.000282423396, -0.0186979473, 0.00488937, 0.0020943319, 0.00047570141, -0.00578627316, 0.0105448449, 0.00748042436, 0.0138023486, -0.0265333951, -0.0173775051, 0.0157207251, -0.000646206492, -0.00101524498, -0.01271859, -0.0356519148, -0.00346615841, -0.00303172064, 0.0101898201, -0.0122327674, 0.00697591621, 0.000646985078, -0.0055371332, -0.0107317, 0.00874480885, 0.00541256322, 0.0123012802, -0.00940503, -0.016219005, -0.00540322065, -0.00402360875, -0.0250136424, 0.0138148051, -0.00242288504, 0.0243160501, -0.00520702312, 0.00693231681, -0.00109621533, -0.0178135, -0.0290497076, -0.00230454374, 0.0265084803, 0.00926800258, 0.0190841127, 0.0158079248, -0.00441289, 0.00330733159, 0.0264586527, -0.00206630374, -0.0413821302, 0.0116908876, 0.0200806726, 0.00375266909, -0.0010845369, -0.00235748594, 0.00175332173, -0.00665826257, 0.0199187323, 0.0023824, -0.00951714255, 0.0276046973, -0.00192771968, -0.012780875, -0.00951714255, 0.0187104028, -0.0125753339, -0.00742436759, -0.00431634812, 0.0211146027, 0.0048426562, -0.0071565425, -0.0435496457, -0.0146743376, 0.0100652501, 0.0154093, 0.0117718587, 0.01996856, 0.0361501947, -0.00508556748, -0.00753648067, 0.00798493251, 0.0150355902, -0.0150355902, 0.0176515598, -0.01768893, 0.00557761872, -0.0103704464, -0.0108687263, -0.0109310113, 0.00817178749, -0.00296943565, 0.0117469439, -0.00131499127, -0.0102147339, 0.00307999155, 0.0160072353, 0.011952485, 0.00616932567, 0.00571464561, -0.0211146027, -0.000539154222, -0.0071004862, 0.0181498379, 0.0372464098, -0.0103517612, -0.0132044125, -0.023095265, 0.00427897694, -0.00635929499, -0.00897526368, -0.0163186602, -0.00477725687, 0.00906869117, 0.0343065597, -0.00233257189, -0.00799739, -0.000482708478, -0.0049609975, 0.0191588551, 0.0330857746, 0.0133663537, 0.00342878723, 0.0064278082, -0.0128556164, 0.00141386874, 0.0048862556, -0.0392644405, -0.0148861064, -0.0401364304, -0.00601049932, -0.00716899941, -0.000859532505, 0.0106382724, -0.0157207251, -0.0171781927, -6.45354976e-06, 0.0297223851, 0.000420812779, 0.0311175678, 0.00185764907, -0.0163684878, -0.00186854892, -0.0128057888, -0.0131421275, 0.00253655529, 0.00731225498, -0.0239921678, -0.00540010631, -0.00969776884, -0.00558384694, 0.00502951071, -0.00518833753, -0.00668317685, 0.0248392448, -0.00516653806, 0.0164307728, -0.000184519202, 0.0199561026, 0.000490494072, 0.00891297869, 0.00582987256, 0.00907491893, 0.0032139041, 0.0156210689, -0.0046464582, -2.33325318e-05, -0.0227215551, -0.00186699186, 0.0031921044, 0.00956074242, 0.00390526722, 0.0122514525, -0.0278040078, -0.00117017876, 0.00265178247, -0.0336089656, 0.0100839362, -0.014188515, 0.00399246626, -0.00101680204, -0.00524128, 0.00584232947, -0.00345681561, 0.00170505093, 0.0249389, -0.0197567903, 0.0136902351, -0.000938167272, 0.00305352034, 0.0103766751, -0.00604475569, 0.00618489692, 0.0407592803, 0.00644026557, -0.0293985028, 0.0214883126, 0.00927423127, -0.0149982199, -0.000619346101, -0.000722116325, 0.0110368961, 0.0161816347, -0.00490494119, -0.012531735, -0.0340823345, -0.00564924628, -0.000152111563, 0.00667072, -0.0104950164, -0.00927423127, 0.0126127051, -0.0152224451, -7.53258792e-05, -0.00577381626, -0.0108251264, 0.00862023886, -0.026907105, -0.0201803278, 0.0104763312, 0.0153470151, 0.00845829863, 0.00041692, 0.0141511438, -0.00153454579, -0.0272808149, 0.0017766786, -0.00769842183, -0.00240575685, 0.00135080516, 0.00763613684, 0.000725230551, -0.018249495, -0.00729979808, -0.00802853238, 0.00773579255, -0.0254994649, -0.0082839, 0.0155338701, -0.000114448623, -0.000126127052, -0.0167546552, 0.0384173654, 0.00246337033, -0.0133289825, -0.0126002487, 0.0185858328, 0.0197941624, -0.00209900341, 0.0259852875, -0.00369972689, -0.0175145324, 0.0120583689, 0.00425094878, -0.0157456398, -0.0103953602, 0.0102022775, 0.00809704512, -0.0107877562, -0.0127559612, -0.0224350449, 0.0156210689, -0.0168792251, -0.021289, 0.0330608599, 0.0059233, 0.000833061407, -0.0145871388, 0.00899394881, -0.0132542402, -0.0113981487, 0.0058641294, 0.00833372865, -0.00928668864, -0.00290403655, -0.022970695, -0.0219741352, 0.0177138448, -0.00242599938, -0.0176141877, -0.00959188491, -0.0160570648, 0.000554336177, 0.00588904321, -0.00397378067, -0.0415814407, -0.0263589974, -0.0171781927, 0.0131172137, -0.00445026066, 0.00308933435, 0.0036903841, 0.0159324948, 0.0170411672, -0.00163965172, -0.00367792719, 0.0151601601, 0.00520702312, -0.00618178258, 0.00121533533, 0.0081967013, -0.0126749901, 0.00122857094, -0.0161816347, -0.00192771968, 0.00601361319, 0.00938011613, 0.03231344, 0.012282595, -0.0121393399, 0.00866383873, 0.0290746223, -0.0121331112, -0.00506999623, 0.0250510126, -0.00340387342, -0.00129163451, 0.0202550702, -0.0218495652, 0.0104514174, -0.00341010187, -0.00933028758, 0.0172778498, 0.0281278901, -0.0078416774, -0.00646517938, 0.0196322203, 0.0102209626, 0.00149250345, 0.00151118892, 0.0251755826, 0.010171135, -0.00234035752, 0.016468145, 0.00332601718, 0.0233942326, 0.0182619523, 0.0131545849, 0.0104202749, 0.0183616076, 0.0262095127, -0.0221236199, -0.0197069626, -0.0117282588, -0.00640289439, -0.0100341076, -0.00374644063, 0.0207284354, 0.00109621533, -0.0211644303, -0.0131919552, 0.00167235127, -0.0138895474, -0.00592018571, 0.00242755655, -0.00323881814, -0.0179007, -0.0113171777, 0.0248267874, 0.0420298949, 0.0165802576, -0.0151726175, -0.0135781225, 0.00744305318, -0.00428520562, -0.00248828437, 0.018124925, 0.00514162378, -0.00221578754, -3.97796566e-06, -0.0079600187, 0.0116908876, -0.0148985637, -0.00223291595, -0.00153376721, 0.00767350756, -0.00831504259, -0.0368228704, -0.00572087383, 0.00212703156, 0.0314663649, 0.00956697, -0.0118466, -0.00269538187, -0.0172903053, -0.00127139187, -0.0240419973, 0.0110244388, 0.00581118744, 0.00895035, 0.00103938032, -0.0343065597, 0.00825898629, 0.0148861064, 0.0290995352, 0.0209651198, -0.00842092745, -0.00374955498, -0.000147440194, -0.0229208674, 0.0375204645, 0.0138023486, 0.0227713827, 0.0282773748, 0.00611638371, 0.00139051187, 0.00356892846, -0.000696813047, 0.0145871388, 0.0134784663, 0.0125691062, -0.0164307728, 0.00283085159, 0.00217063096, 0.00345058716, -0.0165179726, 0.0110804951, -0.0116535174, 0.021289, 0.0183366928, 0.0279534925, 0.000488936959, 0.00830881391, -0.00182650657, 0.0103206187, 0.0192211401, 0.00264555379, 0.00438174745, 0.0145248538, -0.00313293375, -0.00324816094, -0.0173525903, -0.0256364923, 0.00368415564, -0.0280780625, -0.000911696174, 0.00201336155, -0.000857196806, 0.0155712413, 0.017875785, -0.0120521411, 0.00164743734, -0.0149234775, -0.000595210702, -0.0118777426, -0.00728111248, -0.0252254102, 0.0273306426, 0.00397378067, -0.00985348132, -0.00827144366, 0.008969035, -0.0138023486, -0.00133211969, 0.0151227899, 0.0087634949, -0.0053004506, 0.0326622352, 0.00543747749, 0.0272060726, 0.0130673852, -0.00840847, -0.0124943638, -0.0148985637, -0.0112362076, 0.0161940902, 0.0320144705, -0.0218371078, -0.0169165973, -0.00264555379, 0.000958409917, 0.0126999039, -0.0174896177, 0.0026813678, -0.00155400985, 0.00152520312, -0.0181996673, 0.0159200374, -6.66643755e-05, -0.0174522474, -0.00299434969, 0.00124414219, 0.0230205227, -0.00977874, 0.0192709677, 0.00603229878, 0.0163560323, -0.00512293819, 0.00390215311, 0.0270815026, 0.0191463977, -0.00732471189, -0.0177761298, -0.00334470253, -0.00834618509, 0.0063530663, -0.0292490199, 0.0301210098, -0.0109746112, 0.0170162525, 0.0190342851, -0.00994068, -0.0345557, -0.00222980184, 0.00497968309, 0.0214883126, -0.0103953602, 0.0238053128, -0.00438486133, 0.0228834953, 0.00243222783, 0.00547796255, -0.0173401348, 0.0124943638, 0.0149110202, -0.014188515, -0.0071254, 0.00382118253, 0.0230828077, -0.0128929876, -0.0308186, 0.00015882666, -0.00517899496, -0.0117095737, 0.0238551423, 0.00190280564, 0.01164106, 0.008969035, 0.00683266064, 0.00548107689, 0.0157705527, 0.0210647751, 0.00621603942, 0.0115227187, 0.00521636568, 0.0173027627, 0.00319833285, -0.00629389565, 0.0140265739, 0.0278040078, 0.00514785247, -0.00192304829, -0.026907105, 0.00343501591, 0.0132666975, -0.010750385, -0.00537207816, 0.0316407606, 0.0128556164, 0.0183366928, 0.000417698553, 0.00665826257, -0.0103704464, 0.00550910505, -0.0141636012, 0.0149359349, -0.0117531726, 0.00472431444, -0.0255866628, -0.0109247826, 0.0198315326, 0.0163560323, 0.000651656417, -0.00721882749, 0.00814064499, 0.0247520451, -0.00251319841, 0.00492362631, 0.00546862, -0.0134535525, -0.00268603908, -2.02669435e-05, 0.0128805311, -0.0142632574, -0.00609458378, 0.0143629126, -0.00769842183, -0.00695723062, -0.0114292912, 0.0137026925, 0.0106009012, 0.00496411184, 0.00526307942, 0.0172031075, -0.000210017111, 0.00379315438, -0.00754893757, 0.0139642889, -0.0045717163, -0.0044969744, -0.00870743766, -0.00678283256, -0.00220021629, -0.0331605151, -0.00827767141, 0.0108811837, 0.0147615364, 0.0186854899, 0.00761122257, 0.0185733773, 0.00911851879, -0.000830725709, -0.0262095127, -0.0152473589, -0.00372464093, 0.00388346752, 0.00488937, 0.0108375838, -0.00928046, -0.01271859, -0.000458962342, -0.000110653134, -0.0193083398, 0.00667072, 0.0233194903, 0.00389903877, 0.0153594725, -4.19450298e-05, -0.00276545249, 0.00961679872, 0.0202675276, -0.00223914441, 0.0097725112, 0.01010885, 0.0157207251, -0.00465891557, -0.00350041501, -0.0276296102, 0.0154715851, -0.00553090498, -0.00499214, 0.0107192425, 0.000983323902, 0.00518210884, 0.0175519027, -0.00231855782, -0.0120645976, -0.00225627283, 0.00534093566, -0.000621292507, 0.0328117199, -0.0118652862, -0.0133040687, -0.00066177774, 0.00338830217, 0.00691363122, -0.00491428375, 0.00125815626, 0.0124632213, 0.0226966403, -0.00992199499, -0.000555114762, -0.0319148153, -0.00975382514, 0.00339764473, 0.00390526722, -0.00683266064, 0.00164120877, 0.00367169874, 0.00834618509, 0.0118030012, -0.0160570648, -0.0227713827, -0.01603215, 0.0229457803, 0.0023014294, 0.0071565425, -0.00681397505, -0.0130549287, -0.0144874826, 0.00716899941, -0.0114106052, -0.0166425426, -0.0221983623, 0.0144501114, 0.0129801864, 0.0172653925, 0.00616309745, 0.0166300852, 0.012282595, -0.0110929525, -0.00241821376, -0.00264711096, 0.00174397905, 0.0095296, -0.0119960839, 0.0162688326, 0.00663957745, 0.00338830217, -0.0112548927, 0.00959188491, -0.00841469876, 0.0197692476, -0.0121580251, -0.0144625688, 0.00336027378, 0.00875726622, -0.0292490199, 0.0360256247, -0.00290559372, -0.00931160245, 0.00962302741, -0.0205664951, -0.00468071504, 0.00170349376, -0.0197941624, -0.00609769812, -0.00881955121, 0.00143255421, 0.0258358028, 0.00552467629, 0.0125691062, 0.0226468127, 0.00478348508, -0.00975382514, 0.0101960488, -0.0173401348, -0.00728111248, 0.0153470151, 0.0211270601, 0.0116597451, -0.0121206539, -0.0223727599, -0.0350539796, 0.00608212687, -0.0154964989, 0.00176889298, -0.00545616308, -0.0119088851, -0.00161629485, -0.0155961551, 0.0241914801, 0.00274988124, -0.00856418256, -0.00174242188, -0.00822784379, -0.00992822368, 0.00270005316, 0.00788527634, 0.0024649275, 0.00741813937, -0.0046028588, -0.00599804195, -0.00982233882, 0.00121844967, -0.025250325, -0.00512916688, 0.00108842971, -0.00821538642, 0.00754270935, 0.00307687721, -0.000296437502, 0.0200183876, 0.00262064, 0.00335404533, -0.0099780513, -0.0204792973, -0.00685757445, 0.00158982375, -0.0213762, -0.00664580567, 0.00535339257, 0.00515408069, 0.0211021453, -0.0148238214, -0.00175332173, -0.0153594725, -0.0248392448, -0.0087946374, 0.0139393751, 0.0152847301, -0.00730602629, 0.00422603497, -0.0285514276, -0.0145248538, 0.00297099282, -0.00479905633, -0.00471497187, -0.00260351156, -0.0295230728, 0.01234488, 0.0141013162, 0.0175768174, -0.000215467051, -0.0116036888, 0.00898772, 0.00736208307, -0.0102022775, 0.0101960488, -0.00424472056, -0.0108375838, -0.0149857625, 0.00410457933, -0.0295479875, 0.0137026925, 0.0149359349, 0.0117967725, 0.000864203903, 0.00791641884, -0.00240731379, -0.0189097151, 0.0100278789, -0.00198066188, 0.00334158842, 0.00383363967, -0.00651500747, 0.0209900327, 0.00699460134, -0.00293050753, 0.00829012878, 0.0133414399, 0.00491428375, -0.000323103246, 0.01947028, 0.00645272247, 0.0221360773, -0.00224225875, 0.00686380314, 0.0130051, -0.0188474301, 0.00195107656, 0.0101524489, -0.0193083398, -0.00158826658, -0.00209121779, 0.00734339748, -0.0138148051, -0.0106133576, 0.00743682496, -0.0185733773, 0.0123884799, 0.0153719289, -0.0173525903, -0.00044884102, -0.0119649414, -0.0211644303, -0.00605721259, -0.00085408258, 0.00853926875, -0.00223135878, 0.00429143431, -0.00539076375, -0.00373709784, -0.00656483509, 0.0183242373, -0.0167048275, -0.00583610125, -0.0192709677, -0.0244530775, -0.0196197648, -0.0167795699, 0.0137649775, 0.0146743376, -0.00782922, -0.00539699197, 0.0081655588, -0.0242911354, 0.0237554852, -0.00997182261, -0.0141760577, 0.0188723449, 0.0126002487, 0.00337584503, -0.0217872802, -0.0105822152, 0.0178259574, -0.00503262505, 0.00700705871, 0.000380327576, 0.0235686302, -0.00330733159, -0.0168044828, -0.00341633032, -0.00817801617, -0.00847698376, 0.00919326115, 0.0181996673, 0.00372775504, 0.0184488073, 0.0055059907, -0.00644649379, 0.00402360875, 0.00494231191, 0.0126625337, -0.01412623, -0.00862646755, 0.00438486133, 0.00771087874, 0.0389903896, 0.00402360875, -0.00756139494, -0.0072873407, 0.00759876566, 0.0348795801, 0.0119960839, -0.00109932967, -0.01793807, 0.0276794378, -0.0228585824, 0.0112362076, 0.00469628628, -0.0165927149, 0.00582053, -0.0118403714, -0.00411080755, -0.00742436759, -0.00305507751, -0.00109387969, 0.00542813446, -0.00737454, 0.00655237818, -0.0144625688, 0.00169570814, -0.0113234064, -0.0202675276, -0.0106507288, -0.00406098, 0.0239672549, 0.00253811223, -0.00285888, 0.00199467596, -0.02340669, 0.00921817496, 0.0117158014, 0.00981611, 0.00446271757, -0.0346802697, -0.000832282822, -0.0142009724, -0.010501245, 0.00657106377, -0.0188848022, -0.00936143, -0.0130798426, 0.00761745125, -0.00769219315, -0.0110867238, 0.00392395258, 0.00586101506, 0.0126376189, 0.00467760069, -0.0260600299, -0.00608524121, -0.00839601364, -0.00687003182, -0.0050170538, -0.00873235241, -0.00830881391, 0.00511359563, 0.00318431878, -0.00168169406, 0.0132791549, -0.00931783114, 0.0116348313, -0.00928668864, -0.000630246, 0.0114168338, -0.0032139041, -0.00616309745, -0.0070693437, 0.000248555938, -0.0260600299, -0.0351785496, 0.0255119223, -0.00259416876, 0.00781053444, 0.0193457101, 0.00518210884, -0.00919326115, -0.0127435038, -0.000973202579, -0.0109185539, 0.00303794909, -0.00969776884, -0.0109496964, -0.0223104749, 0.00268292497, 0.00565858884, -0.0291991923, 0.0268074498, -0.000311619457, -0.00418243557, 0.0176391024, 0.0375702903, 0.0468881205, -0.0180252697, -0.00717522809, -0.000280087697, 0.00291493628, -0.000659831334, 0.00729979808, -0.0150605049, 0.00884446502, -0.00195419067, -0.000846296956, 0.0228959527, 0.0212142598, 0.0154217575, 0.0079600187, 0.00186232047, 0.0116099175, 0.0104265027, 0.0142508, 0.00179536408, -0.0196820498, 0.0150978751, -0.0183366928, 0.00557761872, -0.00305819185, -0.0100714788, 0.0136777787, -0.0128307026, -0.00339141628, -0.00331356, 0.00255212653, 0.0323632695, 0.000267241441, 0.00282929442, 0.00226717279, -0.00421980629, -0.00187322032, -0.00265489658, -0.00947354268, 0.0100652501, 0.000489715545, 0.00417620689, -0.0391398706, -0.00542813446, 0.0279036649, 0.00961679872, 0.0334843956, 0.00792264752, 0.00178290717, 0.0148487352, -0.00788527634, -0.00792264752, 0.00390838133, -0.0091434326, -0.00026218078, 0.0246773027, -0.021438485, -0.00493608369, -0.00238084281, -0.0134037249, 0.00874480885, -0.00549976248, -0.0071254, 0.00733716879, -0.0165553428, -0.0088818362, 0.0183616076, 0.00747419568, 0.0073184832, 0.00415440695, -0.00881955121, 0.0164806023, -0.00967285503, 0.0120459124, -0.00331667438, 0.00648386497, -0.0121144252, 0.00134224095, -0.00573644508, -0.00171283656, 0.00761122257, -0.00856418256, -0.0072873407, -0.00787282, -0.01284316, -0.0229582377, 0.0125504201, -0.0202177, -0.00379315438, -0.00119587127, -0.00769842183, 0.00706311502, 0.00139284751, -0.0012877417, -0.0117344875, -0.0132168699, -0.0224848725, -0.00183117797, 0.0164432302, 0.0135656651, -0.0138770901, 0.00656483509, -0.000520079455, -0.0263340827, -0.00281372317, -0.00677037565, -0.0062534106, -0.0143878264, -0.0250510126, 0.0225347, 0.0166923702, 0.0121953962, 0.0143629126, -0.0191339403, -0.00227184407, -0.00236994284, -0.0170411672, -0.00521013746, 0.000644649379, -0.0297722127, -0.0268821903, 0.0233817752, 0.00643403688, -0.00369661255, -0.00571776, -0.0124943638, 0.0199187323, 0.0280780625, -0.000853304, 0.00350352935, -0.000784790551, 0.00179224985, 0.00284019439, -0.0199436452, -0.00947977137, -0.00215973123, 0.0103206187, 0.00542190624, 0.00880709384, -0.00370595534, 0.0110182101, -0.00842092745, 0.0114915762, -0.00189969142, -0.00200246158, -0.021313915, -0.0174273327, 0.00375889754, -0.0125192776, -0.0142009724, 0.0211021453, 0.00753648067, -0.0178135, 0.00494542625, -0.0184986349, -0.00721882749, 0.00901263487, -0.0227589253, -0.00601049932, -0.0270565879, 0.00962302741, -0.00895035, 0.00137649768, 0.0140265739, 0.000614285469, -0.0206536949, -0.0277541801, 0.0397876352, 0.0192086827, -0.00789773371, -0.0212018024, -0.00258171186, -0.0133538963, -0.0256364923, -0.0315909348, -0.000865761, -0.00928046, -0.00298189279, -0.0018296208, 0.0050045969, 0.00373398373, 0.000312203396, 0.0525186807, 0.0329612046, 0.0143629126, -0.0215879679, 0.00201647566, -0.0264337398, -0.00911229, 0.0278538354, -0.000170991698, -0.00276545249, -0.00346304406, -0.00809704512, 0.000918703212, -0.011827915, -0.0198315326, -0.0142881712, -0.00619424, 0.00289469375, 0.00791019, 8.97779391e-05, 0.000573410944, 0.0331106856, 0.00761745125, -0.00984102488, 0.01768893, 0.019532565, 0.0175020751, -0.00293985032, -0.0205415823, 0.0164556876, -0.0108188987, 0.0116908876, 0.00442846119, 0.0297971275, -0.0132791549, 0.00809704512, -0.0109123262, -0.0117158014, 0.00949222874, -0.00550287683, 0.0115414038, -0.000258871878, 0.00909360498, 0.0142757138, 0.00161473767, -0.00136871205, 0.0192834251, 0.0140514877, 0.00745551, -0.00163653749, 0.0120023126, 0.00403295131, 0.00164432311, -0.0118403714, -0.0118341437, -0.00218153093, 0.0193955377, -0.00763613684, -0.00403918, 0.0329362899, 0.00829012878, -0.00265333941, 0.01806264, -0.00100356655, 0.0109310113, 0.0071129431, 0.00155868125, -0.00518833753, -0.00980365369, -0.0128556164, -0.000670731242, -0.0155836986, 0.0140390312, 0.0181373823, 0.0335840546, 0.00753648067, -0.00176733593, 0.00887560751, -0.00520390878, -0.0142009724, 0.00382741098, 0.0274552125, -0.0244655348, -0.0313168801, 0.0220613349, -0.0172653925, -0.00189657719, -0.00275143841, 0.00881955121, 0.0231824648, 0.00540010631, 0.00564924628, 0.0194329098, 0.0161940902, 0.0167795699, -0.0110244388, -0.0133912675, -0.0260351151, 0.00193706236, -0.00926800258, 0.0203920975, 0.00687003182, 0.00515096681, -0.0188474301, -0.00432569068, 0.00915589, -0.0137525201, 0.00123246375, 0.00975382514, -0.00881955121, 0.0107067851, -0.0331356, 0.0103704464, 0.00691985944, 0.0020631894, 0.0131794987, 0.00833372865, 0.0253001526, 0.00393641, -0.000604164146, 0.0172778498, -0.0138521763, -0.0165055152, -0.0089378925, 0.0262842551, -0.0172155648, 0.0120209986, -0.000460908748, -0.00294452161, 0.0153843863, -0.0171781927, -0.0228585824, 0.0099469088, 0.00284019439, -0.000791019062, -0.0152722737, -0.0251132976, -0.0188225172, 0.00101290923, 0.0221734475, -0.0220987052, 0.0212018024, 0.0383675396, 0.00821538642, 0.00850812625, 0.0201927852, -0.00532225, -0.00336027378, 0.0340823345, 0.0148985637, -0.00543747749, 0.0380685702, -0.00511982432, 0.00472120056, 0.0151975313, 0.00424160622, 0.00942994375, -0.0332103446, 0.0152349025, -0.0179878976, -0.0103579899, 0.00280593778, 0.0150231337, -0.00282929442, 0.0115974601, -0.0401862599, 0.00178135, -0.0220862478, 0.0159947798, 0.0139642889, -0.00861401, 0.00205384661, -0.00623161066, 0.0206786077, 0.0117220301, -0.00353778596, -0.0236807428, 0.0149359349, -0.0083399564, -0.00909983367, -0.00385543937, 0.00333536, 0.00959811267, 0.0380436555, -0.00132511265, -0.0452438, -0.0134784663, 0.00479905633, 0.0130300149, 0.0191837698, 0.0142134288, 0.00304417755, -0.00787282, -0.00683266064, -0.0165802576, -0.00459351623, 0.0110368961, 0.00626898184, -0.0165553428, -0.00374332629, 0.0120895114, 0.0218371078, 0.0180750974, 0.0013531408, -0.00427897694, 0.00875103753, -0.00141153298, -0.0229582377, 0.0308435149, -0.0168293975, 0.00677660434]
|
28 Oct, 2021
|
Java Program to Find the Length/Size of an ArrayList
28 Oct, 2021
Given an ArrayList in Java, the task is to write a Java program to find the length or size of the ArrayList.
Examples:
Input: ArrayList: [1, 2, 3, 4, 5]
Output: 5
Input: ArrayList: [geeks, for, geeks]
Output: 3
ArrayList – An ArrayList is a part of the collection framework and is present in java.util package. It provides us with dynamic arrays in Java. However, it may be slower than standard arrays but can be helpful in programs where lots of manipulation in the array is needed.
Approach – Using size() method
The size of the ArrayList can be determined easily with the help of the size() method. This method does not take any parameters and returns an integer value which is the size of the ArrayList.
Syntax:
int size = ArrayList.size();
Below is the implementation of the above approach:
Example 1 – Java Program to determine the size of an Integer ArrayList
Java
// Java program to find the size
// of an ArrayList
import java.util.*;
public class GFG {
public static void main(String[] args)
throws Exception
{
// Creating object of ArrayList<Integer>
ArrayList<Integer>
arrlist = new ArrayList<Integer>();
// Populating arrlist
arrlist.add(1);
arrlist.add(2);
arrlist.add(3);
arrlist.add(4);
arrlist.add(5);
// print arrlist
System.out.println("ArrayList: "
+ arrlist);
// getting total size of arrlist
// using size() method
int size = arrlist.size();
// print the size of arrlist
System.out.println("Size of ArrayList = "
+ size);
}
}
Output
ArrayList: [1, 2, 3, 4, 5]
Size of ArrayList = 5
Example 2 – Java Program to determine the size of a String ArrayList
Java
// Java program to find the size
// of an String ArrayList
import java.util.*;
public class GFG {
public static void main(String[] args)
throws Exception
{
// Creating object of ArrayList<Integer>
ArrayList<String>
arrlist = new ArrayList<String>();
// Populating arrlist
arrlist.add("GeeksforGeeks");
arrlist.add("a");
arrlist.add("computer");
arrlist.add("science");
arrlist.add("portal");
arrlist.add("for");
arrlist.add("geeks");
// print arrlist
System.out.println("ArrayList: "
+ arrlist);
// getting total size of arrlist
// using size() method
int size = arrlist.size();
// print the size of arrlist
System.out.println("Size of ArrayList = "
+ size);
}
}
Output
ArrayList: [GeeksforGeeks, a, computer, science, portal, for, geeks]
Size of ArrayList = 7
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java/Split a List into Two Halves in Java/Randomly Select Items from a List in Java/Get first and last elements from ArrayList in Java/Java Program to Find the Length/Size of an ArrayList
|
https://www.geeksforgeeks.org/how-to-find-the-length-or-size-of-an-arraylist-in-java/
|
Pandas
|
Size of an ArrayList
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Randomly Select Items from a List in Java, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, Size of an ArrayList, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Java Program to Find the Length, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Initializing a List in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Get first and last elements from ArrayList in Java, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.000450338091, 0.0306515824, -0.00842136, 0.0407885164, -0.00830698851, -0.00143340696, 0.0307719745, 0.019094035, -0.0200932808, 0.0103536379, -0.0043972861, 0.00840932, 0.0356598534, -0.00146651454, 0.00457185321, -0.00486681145, -0.0258600153, 0.024042109, -0.0203099847, 0.00226786803, -0.00680209929, -0.0159999821, -0.0287494026, 0.0386696346, 0.008896905, 0.0490473472, -9.89464679e-05, 0.0171075799, -0.0390548855, -0.0476508103, -0.000714446127, -0.00570954941, 0.00907749124, -0.0144469365, -0.0229947064, 0.0222603213, 0.0318795741, 0.0019443169, -0.0421850532, 5.5445762e-05, 0.0250172783, 0.0262934249, 0.00233859778, -0.00416854303, -0.0155665735, -0.0138088632, -0.00414747465, 0.00203310535, -0.0370082334, -0.0176854581, -0.0156508479, 0.0025026307, 0.0248968862, 0.0124123264, 0.0395846069, 0.0269194581, -0.00634461269, 0.0249691214, -0.0262693465, -0.0307960529, 0.0458690226, -0.0420887396, -0.0111843366, 0.0174446758, -0.00384047721, -0.0120993089, -0.00532429805, 0.0278103519, 0.0645778, 0.0173002053, 0.0161324125, 0.022693729, -0.00774716958, -0.00874641631, -0.0507569, -0.00461399043, 0.0121835833, -0.012725343, -0.0331316404, 0.0411737673, -0.0253302958, 0.0122497985, -0.00286530913, -0.00179533276, -0.0626997054, -0.0154341441, -0.0143145062, -0.0328186229, 0.00288938731, -0.00338299084, -0.0154823, 0.0285326988, 0.0423295237, 0.0011753185, -0.0027253544, 0.0561985821, 0.0195756, 0.0312053822, -0.0125447568, 0.0327945463, 0.015987942, -0.00481865508, 0.00231903419, -0.0193468556, 0.00412339624, -0.0116237644, -0.0141700367, -0.0041113575, 0.0379954427, 0.00199096836, 0.021899147, -0.0230187848, -0.0262211896, -0.00886680745, -0.00904739369, 0.0192746203, -0.0204785317, -0.024379205, 0.00825281255, 0.0525868498, 0.026799066, 0.0436056703, -0.00907749124, 0.010979672, -0.0432685725, 0.0443761721, 0.0133513771, 0.0373694077, 0.0275936481, -0.0317832604, -0.00842738, -0.0169510711, 0.00209781551, -0.0360691845, 0.00288938731, -0.00141534826, 0.029110577, 0.0236327797, 0.0141218798, 0.0220556557, -0.0065372386, -0.0447132662, -0.0201293975, -0.0234642327, -0.0362858884, 0.0153017137, 0.00140857627, 0.00752444612, -0.0180586707, -0.0137366289, -0.0257877819, 0.000757711707, -0.00443641329, 0.000673437899, 0.0282919165, -0.00666364934, -0.000739653, 0.0083972821, -0.00128893764, 0.0095109, -0.00585100939, 0.0157471597, -0.0138810975, -0.0266545974, -0.0398013107, 0.0110880239, -0.0142061543, -0.0185281951, -0.0471451692, 0.0243430883, -0.00617004558, 0.0392234325, 0.0185041167, 0.0221640076, -0.00236418098, -0.0378750525, 0.0441353917, 0.0125447568, -0.0260285642, 0.00490292907, -0.0107268505, 0.0131587507, 0.0440872349, 0.0192385036, -0.00425582658, -0.0250654351, 0.0391512, -0.00347027439, 0.0283159949, -0.00432806136, -0.00748230889, -0.0199849289, -0.000291948498, 0.0160120204, -0.00796387345, 0.0305311922, -0.00999246445, 0.00262904144, -0.052538693, 0.0383806936, -0.000948832661, -0.0433408096, 0.00231602439, 0.013965372, 0.0174807925, -0.0126892254, -0.0258840937, -0.0199728888, 0.0677561313, 0.0245959088, -0.0391271189, 0.0133634163, -0.0549946725, 0.0115635684, 0.0156628862, 0.0260044858, 0.00573061826, 0.0472655594, -0.00448456965, -0.00833708607, -0.00319337496, 0.0057486766, 0.0423536, -0.0304348785, -0.0705973655, -0.0385492407, -0.0110218087, 0.0285086203, 0.0109134568, -0.000705793034, 0.00333483447, -0.00630849553, -0.0121474657, -0.0101971291, 0.0406681262, -0.034961585, 0.0195635594, 0.0108592808, 0.0101790708, 0.0364544354, 0.00103912596, 0.0339262225, -0.0060315961, -0.01644543, -0.00834912527, -0.0388863385, -0.0205026101, -0.0383566171, 0.0437260605, 0.033781752, -0.0102392659, -0.011936781, -0.0154823, -0.00846349727, -0.0323611386, -0.00707297912, 0.0155665735, 0.00303536141, 0.0106847137, 0.0395364501, 0.0336613618, 0.0377546586, -0.0112866694, -0.0134476898, -0.0112385126, -0.0229345113, 0.0316147134, -0.0270398483, 0.0175530277, 0.0142302327, 0.00564333471, -0.00828291, -0.00240932754, 0.0256433114, -0.0120571721, -0.00263054622, -0.0553799234, -0.0146516012, 0.0530684143, 0.0329390131, 0.00889088493, 0.0180827491, -0.00235966616, 0.0206109621, -0.0157351214, -0.0113047278, -0.0344318636, -0.0172761288, -0.0152174393, 0.0147358747, -0.0260526426, -0.0365025923, 0.0361895747, 0.00869224, 0.00513468217, 0.0102994619, -0.0335409716, 0.0354913063, -0.0202497896, 0.0056312955, -0.0258118603, -0.0593769066, 0.00231903419, -0.00427087536, 0.00226335344, -0.0257877819, -0.000156132257, -0.0454115346, 0.00634461269, -0.0137847848, -0.0218630303, -0.0410052203, -0.0190579165, -0.0272806305, -0.0389585719, 0.0251617469, 0.0440631546, 0.0181429442, -0.0127975773, -0.0205026101, 0.00179533276, -0.022802081, -0.00613994803, 0.0500345565, 0.0295199063, 0.00139127008, -0.0528276302, -0.0309646, 0.00898117851, -0.0531647243, -0.0305552706, 0.0333965, -0.0389585719, -0.00341308862, 0.0313257724, -0.040716283, 0.0107027721, -0.0401143283, -0.00440631574, 0.0292550456, 0.00103536376, -0.00515575055, 0.0138449809, 0.00275394716, -0.000615875877, -0.0186124705, 0.00708501833, 0.0211406834, 0.0124604823, 0.0122678569, 0.000918734877, -0.00393679, 0.0146275228, 0.0130383596, -0.0101248948, -0.00967342779, 0.0236929748, -0.0177215748, -0.0105823809, -0.00253573828, -0.0223566331, 0.00465612719, -0.0404032655, 0.00851165317, 0.0144589758, -0.0483490787, -0.00316026737, -0.0109375343, 0.00790969748, -0.0333724245, 0.0113649229, 0.0344318636, 0.00840330124, 0.00750638731, -0.00531225884, 0.00600149808, -0.00849359483, 0.0121956216, -0.00131828291, -0.00743415253, -0.0109555935, 0.0481805317, -0.00608577207, 0.00639276952, -0.037224941, -0.0144589758, -0.0293513592, -0.0149164619, 0.00905341376, 0.0497456156, -0.0200330857, 0.0197441466, 0.00251316489, 0.013062438, -0.0108472416, 0.0298329238, -0.0022829168, -0.0202497896, -0.00258389465, -0.00468622474, 0.0244514402, -0.010359657, 0.018973643, -0.043966841, -0.0228261594, -0.00615499681, -0.00295560248, 0.00613994803, 0.0428351648, 0.000509781239, 0.0163009595, 0.0669856295, -0.0429314785, -0.0300496276, 0.00907749124, -0.0225853771, -0.0358043239, 0.0236929748, -0.0254988428, 0.00834912527, -0.0207915492, 0.0308923647, -0.0184559617, -0.00762677845, -0.0357320905, -0.016385233, 0.00331376609, 0.0370804705, 0.00264559523, -0.055235453, -0.00901729614, 0.0477712043, 0.00842738, 0.0269916933, 0.00855981, -0.0562948957, 0.00912564807, 0.0038344576, -0.0478915945, -0.0455800854, -0.0274010226, 0.0318314172, 0.00200601737, 0.020719314, -0.00346425502, 0.0196357947, -0.0455078483, 0.0104258722, 0.011882605, -0.0116237644, -0.0307238176, -0.0102573251, 0.0356839336, -0.0125929127, 0.0252580605, -0.0172279719, 0.0458449461, -0.0208035875, -0.00571857905, 0.00860796589, -0.00380736962, -0.0021143693, -0.0148201492, 0.0257637035, -0.00291798, 0.0367915295, 0.0205989238, 0.00889088493, -0.0103476178, 0.00558915827, -0.0440149978, -0.0189375263, 0.0141700367, -0.0285808556, -0.000741910364, -0.020213671, 0.00979983807, 0.0257637035, -0.00607975246, -0.00312114018, 0.0179142, 0.048373159, -0.0558133312, 0.00500827143, 0.000931526418, -0.0529239438, 0.0334446579, 0.0133393379, -0.0185402352, -0.00447253091, -0.0186245088, 0.0521052852, -0.0415349416, -0.0417757258, -0.00812640134, 0.00130549143, -0.022019539, -0.0277381185, -0.0246801823, 0.0431000255, -0.0161564909, -0.0283641517, -0.0409329869, 0.0563912094, 0.0179743972, -0.0250413567, -0.0134236114, -0.00303987623, -0.0165056251, -0.0352746025, -0.0412460044, 0.0328427032, -0.00708501833, 0.00848155562, -0.0239096787, 0.0107208304, 0.0364785157, -0.00461399043, -0.0144108189, 0.00102633447, -0.0293995161, 0.0445688, -0.0114190988, -0.0145071317, -0.0125808734, 0.010925496, 0.00555906072, 0.00438825693, -0.0103476178, -0.00304288603, -0.0201414376, 0.0097456621, -0.00297366106, 0.00973362289, -0.0335650481, -0.0378509723, -0.0181309059, -0.00483069429, 0.00144619856, 0.000781789946, 0.0211406834, 0.0206470806, 0.0165898986, -0.00707297912, -0.0181309059, -0.00092023972, -1.35204891e-05, -0.00251015509, 0.00587207777, 0.0122317392, 0.0203701798, 0.0374657214, 0.0456041619, 0.0051738089, 0.00347328419, 0.0442557819, 0.0221158508, -0.0253302958, 0.00287283352, -0.0133393379, -0.035130132, 0.00679607969, 0.0187810175, 0.0118645467, 0.031807337, -0.00378630124, 0.0281715263, -0.00673588412, -0.0155786127, 0.0113348253, -0.00330172689, -0.0227178074, -0.00969148614, -0.00611887965, 0.00618810439, 0.0147117972, 0.00544468919, -0.0125327175, 0.00892098341, -0.00633859308, -0.00151166122, -0.014471015, 0.0118224099, -0.00694054877, -0.00481263548, -0.0038344576, -0.0295439847, 0.00320842373, -0.0283159949, 0.0131346732, -0.00877049379, 0.0182272177, 0.0198645368, -0.010811124, -0.0334928147, -0.00508652534, -0.0087343771, -0.0139533328, -0.024102306, -0.023030825, 0.0110519063, -0.00458991202, 0.0139292544, -0.0244153216, -0.00544769876, -0.0144830532, 0.0289901849, 0.0351060554, -0.0225974154, -0.0152655961, -0.0309405215, -0.0270157717, 0.0110639455, -0.00263807084, -0.00395484874, -0.00960119348, 0.00308502279, -0.00112339982, 0.00129570963, -0.00466214679, -0.00737997657, -0.0321203545, -0.00372911547, 0.000328442053, -0.0104439314, 0.000893151737, -0.0236207414, -0.0307960529, 0.0066997665, -0.0162648428, -0.000332204276, -0.0498900861, -0.0159157086, 0.0237652101, -0.0287975594, 0.0113589037, -0.00177125458, 0.0168788377, -0.0140496455, 0.0206952356, 0.0148923835, 0.000709555228, 0.0176373012, 0.0863926783, -0.00728968345, -0.0101971291, -0.0219954606, 0.00526711205, 0.0112987077, -0.00763279805, 0.0398253873, 0.0212610736, 0.0141579974, -0.00641082786, 0.00223476044, 0.0182753745, 0.0270639267, -0.0136764329, 0.0356598534, 0.0365748256, -0.00933633279, 0.0182512961, -0.0169029161, -0.0197923034, -0.00741007458, -0.0110097695, -0.0100466404, -0.00982391648, 0.0201414376, -0.00385251641, -0.023030825, -0.0226094555, -0.0152415177, -0.00166290253, -0.00113995362, -0.0126892254, -0.0160240605, 0.0311090704, 0.0077772676, 0.0335650481, -0.00330774649, -0.0181429442, 0.0167102888, 0.00818057731, -0.00464709802, -0.00829494931, -0.0328427032, 0.0220436174, -0.013230986, -0.0234281141, -0.0422572903, -0.000358727964, 0.00095786195, 0.0219834205, 0.046230197, -0.0385010839, 0.00294807786, 0.0159036685, 0.018973643, -0.019768225, 0.00556508033, 0.0404273421, 0.008222715, -0.00549284555, -0.018468, 0.019094035, -0.00277200597, 0.0192144252, 0.0195876379, 0.0282437596, 0.00815048, -0.00029495827, -0.0103115011, 0.0132911811, 0.0253543723, -0.0341670029, -0.0065372386, -0.047121089, -0.00217907946, -0.0171677768, 0.00297366106, -0.0216824431, 0.0258118603, -0.0118464874, -0.0189616047, -0.0159638654, 0.00803008862, 0.00722948788, 0.0262934249, -0.00788561907, -0.00426786579, -0.00478855753, 0.0114732748, -0.00839126203, -0.00428291457, 0.0252099037, -0.00437922776, -0.00259292405, -0.0345281772, 0.00675996207, 0.0055711, -0.0210323315, -0.036309965, -0.0205146503, 0.00295409746, -0.0211647619, -0.0117742531, -0.0155304568, -0.0245959088, 0.0138810975, -0.0172038935, -0.00850563403, 0.0458208658, 0.0200932808, -0.00687433407, -0.0115154125, 0.0235244278, 0.00102407706, -0.00354250916, 0.0309886783, -0.0124966, 0.0386455543, -0.0153859872, 0.0193468556, -0.0145673277, 0.0296162199, -0.0219232254, -0.0011512402, -0.00497215381, -0.0349134281, 0.0347448811, 0.00465913676, 0.0199488103, -0.0119488202, 0.00780736515, -0.0003374714, -0.00793979503, 0.00351843098, 0.0202979464, -0.00786756072, 0.0147719923, 0.0143987797, 0.00259593385, 0.0330353267, 0.0257637035, -0.0117561948, -0.0085718492, -0.0211527217, 0.020213671, 0.001942812, 0.00435214, 0.0218750685, 0.00234461739, 0.0187569391, -0.00625431957, -0.0114251189, 0.00543265, -0.0265823621, -0.00479457714, -0.00775318919, 0.0332520306, -0.00281715253, 0.000595936144, 0.0238254052, -0.00727162464, 0.000491722545, 0.00534536643, 0.0202497896, -0.00419563102, 0.0253302958, 0.00151391851, -0.0240180325, -0.0174807925, 0.0126169911, 0.0204544533, 0.025547, -0.000168829763, -0.00742211333, 0.0241745394, 0.0162528027, -0.00679006, -0.00947478227, 0.0281956047, -0.0201053191, -0.00834912527, 0.0203340631, 0.0375138782, 0.0142543102, -0.000338788173, 0.0174446758, 0.000385627849, 0.000887884642, 0.00111211312, 0.0249932, -0.00308803259, 0.0364544354, -0.00612188922, 0.0222001262, 0.00922196079, 0.0279066656, -0.0134717682, 0.0166862123, -0.0167825241, -0.0438464507, -0.0136884721, 0.00756658288, -0.0172640886, 0.00517681893, 0.00157712388, 0.00471632276, -0.0330834836, -0.0329390131, -0.0222482812, 0.00101655268, 0.0276418049, 0.0400661714, -0.027256554, -0.0261971112, 0.006982686, 0.0114792949, -0.0189134479, -0.0132671036, 0.00576673541, -0.00320842373, 0.0217065215, -0.00141685316, -0.0230669416, -0.0135440025, -0.0236688964, 0.0201053191, 0.0216342863, 0.0224047899, 0.0221038125, -0.0281233694, 0.00160270697, 0.0124604823, -0.0109555935, 0.000365311862, 0.0124364039, -0.0443039387, 0.0124604823, -0.0313498527, -0.0421850532, -0.0191542301, -0.0183114912, -0.00397591712, -0.0198284201, -0.0247042608, 0.031975884, -0.00589615572, 0.00925205834, -0.0157230832, 0.0239457972, -0.0389826484, 0.0111722974, 0.0209600963, 0.00276297657, 0.00801203, -0.0143145062, 0.006531219, 0.0106786937, -0.01711962, 0.00269525661, 0.0371286273, -0.00102783937, 0.0122497985, 0.0032746389, 0.0118705658, -0.0157230832, 0.0434612, 0.0304830354, 0.0211527217, -0.00598945888, -0.0322166681, 0.035419073, -0.0178540051, -0.0225733388, -0.00503836898, 0.0159157086, 0.00638675, -0.0248968862, -0.0123160128, 0.0335891284, -0.0157592, 0.00516477972, 0.00185251865, -0.0329390131, -0.0328667797, -0.0162287243, -0.0319277309, 0.0177576933, 0.0176974963, 0.00694054877, -0.0158675518, -0.0150007354, 0.0171677768, -0.0220556557, -0.00234160759, -0.0444002524, -0.00283370633, -0.00473438157, 0.0406922027, 0.0198886152, -0.0229465496, 0.010642576, 0.00769299362, -0.00463806838, 0.0300014708, 0.00669374736, 0.00169450522, 0.027425101, 0.0386937112, 0.0361414179, -0.0139774112, 0.016216686, 0.00234612217, -0.0119307619, 0.00321444334, 0.00867418107, 0.0084574772, 0.00395785877, -0.0101850899, -0.00374416425, -0.0154823, 0.00178630347, 0.0143145062, 0.0157471597, -0.0108713191, -0.0147479139, -0.0160842557, 0.0260767192, 0.0169992279, 0.0200210456, -0.0203340631, -0.00830096845, 0.0216824431, -0.0569690838, -0.0420887396, 0.00511662336, 0.0151813226, 0.0215861313, 0.0248246528, -0.0377065055, -0.00770503283, 0.0142302327, -0.0108472416, 0.0420887396, -0.0149646178, 0.0389826484, 0.0374657214, 0.000660646358, -0.0224409085, 0.00605567405, -0.0323129818, -0.0245597921, -0.0101670315, -0.0365748256, 0.00114371581, -0.0204303749, -0.00536041521, -0.0131828291, 0.0326500759, 0.0323611386, -0.000951842405, 0.0683340058, 0.000892399286, 0.0233077239, -0.00534536643, -0.0184198432, 0.0329390131, 0.00772911077, -0.0448336601, -0.0233558808, 0.0049601146, -0.00109179714, 0.0125929127, -0.0247283392, 0.00700074434, 0.0175289493, -0.00548080634, 0.0107388897, -0.0560059547, -0.00081113528, 0.000281038054, -0.0034943528, 0.0250654351, -0.0230187848, 0.0101429531, 0.0144348973, 0.0250895135, 0.021345349, 0.0136523545, 0.00120692118, 0.0372730941, -0.0124966, -0.00975168217, 0.0249209646, -0.022019539, -0.00207825191, -0.0125327175, 0.00199096836, 0.00964333, 0.013568081, 0.0236929748, -0.0157953165, -0.00158013368, -0.0189856812, 0.0121715441, 0.00150865142, 0.0480119847, -0.0295921415, -0.0132550644, 0.0175409876, 0.0210202914, -0.000370578957, -0.0255710781, -0.00860796589, 0.0207433924, 0.0119608594, -0.00742813293, 0.00467719557, -0.0169871897, 0.0276899617, 0.00617004558, -0.013459729, 0.0123099936, 0.0228863545, 0.0130503988, -0.0068141385, 0.0201293975, -0.0167584457, -0.014699758, 0.00420466, -0.00948080234, 0.0098600341, -0.00575469621, -0.00451165764, 0.00630849553, -0.0266786758, -0.0301218629, 0.0346967243, -0.018636547, -0.00408727909, 0.0408125967, 0.013459729, -0.0167945642, 0.00108803494, -0.00989615172, -0.00924002, -0.0151090873, -0.004617, -0.010979672, -0.0139172152, 0.00970352534, -0.000931526418, -0.0146516012, -0.00639878865, 0.0354672298, 0.00752444612, -0.00108427263, -0.0243190099, 0.0158314351, 0.00516477972, -0.00743415253, 0.0146516012, 0.0108352024, -0.00178178877, 0.001147478, 0.011599686, 0.0281233694, -0.014639562, -0.00571255945, 0.0167464074, -0.0250654351, -0.010136934, 0.0348893516, 0.00492700702, -0.0105342241, 0.0186485872, 0.000526711228, 0.0223205164, 0.0275214128, -0.00225131423, 0.00955303665, -0.00704890117, -0.0124966, 0.00575469621, 0.00742211333, 0.00693452964, 0.0145552885, 0.0149285011, 0.00413543545, 0.00341609842, 0.0148201492, 0.0268953796, -0.0344800204, -0.0112866694, 0.00520089688, -0.00546876714, -0.00949886069, -0.0013401038, -0.00358765596, -0.0288216379, -0.0212610736, -0.0244755186, -0.0186726656, -0.016216686, -0.0175771061, -0.0127975773, -0.0300255492, -0.0157351214, -0.00989615172, -0.00220165285, 0.00662753219, -0.00677802088, 0.00271782978, -0.0302181747, 0.00904739369, -0.00248457212, -0.00656733662, -0.00393378036, 0.0249691214, 0.0105462633, -0.0136523545, -0.00332881487, 0.00595033169, -0.0182633344, -0.0190338381, 0.0264138151, 0.0489991941, -0.00919186324, 0.00921594165, 0.0118765859, -0.0390308052, -0.0108171431, -0.015145205, -0.0258118603, 0.0135921594, -0.00589314615, -0.0213814657, 0.00141008117, -0.0100887772, -0.0173724405, 0.00931827351, -0.0122497985, -0.0231271368, 0.00187810173, -0.0108231632, 0.00920992158, 0.00886680745, 0.0141459582, -0.0245357137, 0.0141098415, 0.00247403793, 0.00916778482, -0.0186245088, 0.0115515292, -0.0293513592, 0.00887884665, 0.0236207414, -0.0154100657, -0.00295409746, -0.0200571641, -0.00340405945, 0.00257336046, 0.00954099745, 0.00508050574, -0.00995032769, -0.00100601837, -0.0260526426, 0.0219593439, 0.00291196071, -0.0220917743, -0.00565537345, -0.0197321065, 0.0097878, 0.0303144883, -0.00252068951, -0.020779511, -0.0120391138, -0.0169029161, -0.024945043, -0.0114491973, 0.00254928228, 0.0385492407, 0.00261399243, 0.0029255047, 0.00400601514, -0.00156508479, 0.00450563803, 0.00487283105, -0.00849359483, -0.0253302958, -0.0169631112, -0.0113528837, 0.00236418098, 0.00625431957, 0.0142663494, 0.0110880239, 0.0110880239, -0.0214657392, 0.0102814026, 0.0140014887, 0.0195515212, 0.0158795901, 0.00812640134, 0.0165658202, -0.00403310312, -0.00525206327, 0.00828291, -0.0106546152, 0.0134356506, -0.0275214128, 0.0120029962, 0.0127133038, -0.0166862123, 0.00531526841, 0.00825281255, -0.00263656583, -0.00834912527, -0.00697666639, -0.00895108096, -0.00449058926, -0.000465010758, 0.020948058, -0.00645296508, 0.00717531191, 0.00855379, 0.00338600064, -0.0122377593, 0.0133272987, -0.00184348924, 0.00519186771, -0.0116297835, -0.00596538093, 0.0292309672, 0.00846349727, -0.0194070507, 0.00721744867, -0.00621218281, -0.00199849275, -0.0236568581, 0.00282016234, -0.0395846069, 0.00421068, 0.00667568855, 0.0115093924, -0.0052942, -0.0152655961, -0.00664559053, 0.00232655881, -0.00312415, -0.006531219, 0.0122798961, -0.0108893784, -0.00401805434, -0.00265311962, -0.013568081, -0.0028773481, -0.0209962148, 0.013399533, 0.00275394716, -0.0356116965, -0.00917982403, 0.0130022429, -0.0106305368, -0.00775318919, 0.0192505419, -0.00329871709, -0.0298810806, -0.0127494214, -0.0176613797, 0.0135199241, -0.0253302958, 0.00295560248, 0.0095109, 0.00220767246, 0.0316869467, 0.0140978023, 0.0223084781, -0.013459729, -0.00795183424, -0.0298570022, 0.0138449809, 0.0138931368, -0.00591120496, -2.30730075e-06, -0.0331075639, 0.0272083972, 0.0450262837, -0.00204815413, 0.00650714105, -0.00237471517, 0.0189254861, -0.0366229825, 0.00298720505, -0.010474029, 0.0144589758, 0.0217787568, -0.0352986827, 0.000866063754, 0.0328186229, -0.000156414419, -0.00610383041, 0.020322023, -0.0192746203, 0.00463505881, 0.0073258006, -0.0358284, -0.0244032834, 0.0127012646, 0.0113528837, 0.005405562, -0.0274732579, 0.00564032467, 0.00356357754, 0.0155304568, 0.0159638654, 0.0277621951, -0.0246199872, 0.0255951546, 0.00353047, 0.0151211265, -0.0129902037, -0.000625657674, 0.0175771061, 0.00659141457, 0.00631451514, 0.0223807115, -0.0253062174, 0.0384047739, 0.0138088632, -0.0411256105, 0.00406922027, 0.0203822199, -0.00489991903, -0.00961323176, -0.0156869646, 0.002731374, 0.0137005113, 0.0139533328, -0.0277140401, 0.0206109621, 0.0149525795, 0.00948682148, 0.030579349, -0.0175048709, 0.0011512402, -0.00591120496, -0.00621218281, -0.00207223231, 0.00470428355, 0.0446891896, -0.00420165062, 0.0171557367, 0.0173002053, -0.00100902817, 0.000817154825, 0.011485314, -0.0265101288, 0.00872233789, -0.0141700367, -0.0320240408, 0.0170714632, 0.00481564552, 0.00288637751, 0.0117501747, -0.0121956216, -0.0110639455, 0.00112565712, 0.021850992, 0.00345823541, -0.0202257112, -0.00892098341, -0.0111000631, 0.00397892715, -0.00243039615, 0.0371527039, -0.000206546043, 0.000499247, -0.00999246445, -0.0110097695, -0.0199608505, 0.011996977, -0.012273876, -0.00943866465, -0.0174205974, -0.0341188461, 0.00151015632, -0.0152174393, 0.0167945642, -0.00320240413, -0.00197892939, 0.0108231632, -0.0129781645, -0.018973643, -0.0202618279, -0.039464213, 0.00866214186, 0.010082758, 0.0237531718, -0.00320240413, -0.00269074179, -0.00486681145, 0.0228381976, -0.00951691903, 0.017625263, -0.0159759037, -0.0186004303, 0.00199548318, 0.00251316489, 0.00664559053, 0.0175289493, 0.0177817699, 0.0270398483, 0.0174807925, -0.0067057861, 0.0030774984, 0.0140737239, 0.0183596481, 0.0150609314, 0.0182512961, -0.0168667976, 0.00699472521, -0.0137005113, 0.0369119234, 0.0410774574, 0.00325658033, -0.025450686, 0.00199849275, 0.00585401896, -0.00848155562, -0.0210202914, 0.00193077279, 0.0131828291, 0.00194883149, -0.0183355696, -0.00949886069, -0.00450262846, -0.021224957, 0.00672384491, 0.00876447465, 0.0476748906, -0.00239126896, 0.00690443162, 0.0169149544, -0.00964934938, -0.00754250446, 0.0152415177, 0.021850992, 0.0178660452, 0.0282437596, 0.0136643937, -0.0348893516, -0.015987942, 0.0108352024, -0.0180586707, 0.0083972821, -0.00911962893, -0.00186004303, 0.00333784427, 0.00935439114, 0.0310127567, -0.00315424777, -0.0283641517, 0.00813844055, -0.0318314172, 0.0218630303, -0.00492098788, -0.0229345113, -0.0161926076, 0.00720540946, -0.00965536945, 0.0116899796, -0.00898117851, 0.0034943528, -0.0464469, -0.0161685292, -0.00727162464, -0.022525182, 0.00767493481, -0.0104981074, -0.0126651479, 0.0106245177, 0.00673588412, 0.00214747689, -0.0170714632, 2.75700404e-06, 0.00296764146, -0.0258359369, 0.0019653854, 0.0109856911, -0.0106124785, 0.00375018385, 0.00325056072, -0.00463204877, -0.0116659012, -0.0185763519, -0.0110458871, -0.000726861472, -0.0142061543, -0.00783746317, 0.000433031877, 0.00464709802, 0.000755078159, -0.0157351214, -0.00474040117, 0.00867418107, -0.0032625997, 0.0149044227, -0.00986605324, -0.00186455774, 0.00376523286, 0.0230669416, 0.000641459, 0.0211406834, -0.0234160759, 0.00902933534, -0.013230986, 0.00475845952, 0.008108343, 0.0301218629, -0.0216583647, 0.006982686, -0.00618208479, 0.00453573605, 0.0172520503, -0.0229826681, -0.00578479422, 0.00613392843, -0.00910759, -0.00485778227, -0.0127614606, 0.000941308215, -0.0125327175, -0.0180586707, 0.00913768727, 0.00789765827, 0.0284845419, 0.011882605, 0.00985401403, 0.011882605, 0.00818057731, 0.0161685292, 0.00828892924, -0.00457486324, 0.0176493414, 0.0109435543, -0.00745221134, -0.00279006455, -0.00662753219, 0.0172520503, -0.0155906519, -0.00913768727, -0.0166260153, -0.0215138961, -0.0175409876, 0.0265823621, -0.00111437042, 0.0115635684, 0.00501429103, -0.00294657308, 0.0409329869, -0.00197742437, 0.0167945642, -0.00492098788, 0.00610985, 0.00167494162, -0.0106184985, -0.0206470806, 0.0191542301, 0.0204905719, 0.0013498856, 0.0151813226, -0.0115936659, 0.0246801823, 0.00100601837, 0.0341429263, -0.0267749894, 0.00483370433, -0.00133634161, -0.0165778585, 0.00784348231, 0.0307960529, 0.0150007354, 0.00762677845, -0.00268171262, -0.0164333899, 0.00373513508, -0.00692851, 0.00319638476, -0.0149525795, 0.0095831342, 0.00228743162, 0.0086200051, 0.00379834045, -0.0167464074, 0.00711511634, -0.00744619174, -0.0156147303, 0.0176974963, 0.00450563803, -0.0276177265, 0.00818057731, -0.0214777794, -0.00881865062, -0.00924002, 0.0280511342, -0.0156147303, -0.0167945642, -0.0076689152, -0.0172400102, 0.00781338476, 0.0194792859, 0.00644694548, -0.0240782276, 0.0157832783, -0.000350639195, -0.0138449809, -0.0132911811, 0.0110880239, -0.0209841747, 0.00373513508, 0.0195515212, -0.0101971291, -0.000395785872, 0.00367794931, 0.0124002872, 0.0055801291, -0.020213671, 0.0202979464, 0.00906545296, -0.00136192469, 0.00655529741, -0.00187509193, -0.00315123796, -0.0235725846, 0.0137847848, 0.00370804709, -0.0114371581, 0.0138570201, 0.00286982371, 0.0105101457, 0.0203942582, 0.0295199063, 0.00287885312, 0.00385552621, -0.000497365894, 0.00644694548, -0.00908953, -0.00991421, -0.00753648533, -0.00541459117, -0.0236327797, 0.000324491732, -0.0197561849, -0.00320240413, -0.026124876, -0.0103536379, 0.0107208304, -0.0261007976, 0.00487283105, -0.000118133801, 0.00559216831, 0.000110609355, -0.0203099847, -0.0197321065, 0.009234, 0.00163430965, 0.000436417875, -0.00757862208, -0.0293513592, -0.000841233064, -0.00316026737, 0.0109014176, -0.015939787, 0.0065372386, 0.00675394293, 0.0147117972, -0.00727764424, 0.0136643937, 0.0161926076, 0.0217426382, -0.015542496, -0.0251858253, -0.0110338479, 0.0101309139, -0.0201414376, 0.0152054, -0.0181670226, 0.0371286273, -0.0141459582, 0.00943264551, -0.0146154836, 0.00161775586, -0.0307960529, -0.00603761524, 0.00934235193, -0.00604062527, 0.00639276952, 0.00778930634, -0.00424980698, 0.000943565508, 0.0174567141, -0.0348171182, -0.0191181116, 0.00511963293, 0.0105221849, -0.00511361333, -0.00299322465, -0.0270398483, 0.0162407644, -0.00850563403, -0.00219111866, 0.0117080379, 0.000482317, 0.0099202292, -0.00110233133, 0.00519186771, 0.00795785431, 0.0110759847, -0.00763279805, -0.0134236114, -0.000402557867, 0.0195635594, 0.00140782387, -0.0199126936, -0.0141579974, 0.0083972821, 0.000384687301, 0.00860194676, 0.0107810264, 0.0041053379, 0.021622248, 0.00209480571, -0.00944468472, -0.00115801219, 0.0298088454, -0.000548908312, 0.0258840937, -0.0156388078, 0.0170233063, -0.0124484431, -0.00630849553, -0.0021083497, 0.00130774872, 0.014699758, 0.00916176569, 0.0239457972, 0.00437621772, -0.00903535448, 0.011996977, 0.00615499681, 0.00675996207, 0.00949886069, -0.0258118603, -0.00614596764, 0.0132911811, 0.00999246445, 0.0269194581, -0.0206711572, -0.010022562, -0.0354913063, -0.019768225, -0.00737395696, -0.0151331658, -0.00931225438, 0.0133272987, 0.0179262403, 0.0156508479, 0.00710307714, 0.00277050096, -0.0156869646, 0.00668170815, 0.0271120835, 0.049095504, -0.0029089509, -0.0170112681, 0.0060255765, 0.00886078738, 0.00482467469, -0.0028743383, -0.0273528658, -0.00549585512, -0.0422091335, -0.00142287277, -0.00960721262, 0.0168427192, 0.0253062174, 0.00378329144, 0.00497516384, -2.72173315e-06, 0.0187328607, 0.00346726482, 0.00739201577, 0.00864408351, -0.0149405403, -0.0015440163, -0.011936781, -0.00515575055, 0.00423776777, -0.0120330937, -0.0305552706, 0.00157411408, -0.0135801202, 0.0069887056, 0.0241263844, -0.00321745314, -0.0165056251, 0.00395183917, -0.00930623524, 0.0175409876, -0.00872233789, 0.0274732579, -0.0150488922, -0.0113408454, -0.0108231632, 0.00477350876, -0.00819261651, 0.014639562, -0.0106365569, 0.00806620624, -0.0168788377, 0.00158163859, -0.024102306, 0.00404213229, 0.00784348231, 0.0136403153, -0.0294235945, -0.00159969716, -0.0113468645, -0.0424258374, 0.0155063784, -0.0126169911, 0.00503234938, -0.00780736515, -0.016613977, 0.00872835703, 0.00210383511, -0.01644543, 0.00514371134, -0.0224529468, 0.0114913341, 0.0181188658, 0.00887884665, -0.00295259268, 0.00730172219, 0.00288336771, 0.0315424763, 0.0120330937, -0.00162076566, 0.00199247338, -0.00191421912, -0.00251316489, -0.000784047297, 0.000996236689, 0.00846349727, 0.00235966616, -0.0112385126, -0.0132550644, -0.0206230022, 0.00201805634, 0.0172159318, 0.00323551171, 0.00167193194, 0.0034943528, -0.000595936144, -0.015987942, 0.0252339821, 0.0203701798, -0.0162407644, -0.0107328696, -0.0151933618, -0.0127975773, 0.010979672, 0.0183476098, -0.0184318833, 0.0235003494, 0.0123400912, 0.00754852407, -0.0111121014, -0.0147117972, -0.0129661253, -0.00608878164, -0.000333521079, 0.00437922776, -0.0280029774, -0.00374717405, -0.0197561849, 0.00250112591, -0.0209600963, -0.0283641517, -0.00677802088, 0.0240300708, -0.00505642779, -0.00583897, -0.00852369238, 0.0163370762, -0.00818057731, 0.0109555935, 0.00666966895, 0.0205266885, 0.0129540861, -0.00572459865, 0.0022829168, -0.0123762088, -0.00486982148, 0.0192625821, -0.00611887965, -0.0235003494, 0.0131346732, 0.0237170532, 0.0158675518, -0.0197441466, -0.0209841747, -0.0175530277, 0.0040541715, -0.0188773293, -0.0143506238, 0.0225974154, -0.00894506183, 0.00854777079, -0.00930623524, 0.00254928228, -0.015373948, 0.00532429805, 0.0365025923, 0.0107449088, -0.00773513038, 0.007771248, -0.0104680089, -0.0115575492, 0.0222723596, -0.0186004303, -0.0235364679, -0.0113047278, -0.0191783085, 0.0130744772, -0.0121173682, 0.00431301259, -0.0201895926, -0.013796824, -0.000203724368, 0.0189856812, 0.00286380411, -0.00176824478, -0.00721744867, 0.00159668748, 0.00371105666, 0.0244032834, -0.0065372386, 0.000729495, 0.00204965915, -0.0148201492, -0.0172279719, -0.000286681403, -0.0030489054, -0.00485477271, -0.00599246891, 0.0122317392, 0.000582015899, -0.00969148614, 0.0191783085, 0.00645898422, -0.00160270697, -0.0050173006, 0.0304348785, -0.00112339982, -0.00937244948, 0.0290383417, -0.00143265456, -0.000821669528, -0.020045124, -0.000923249521, -0.0152655961, 0.0135560418, -0.0166741721, -0.00235364679, 0.0149525795, 0.0092460392, -0.0215861313, 0.0195154026, 0.00834310614, -0.00419563102, -0.0021143693, 0.0153619088, -0.00234762719, -0.00737997657, -0.00522798486, -0.00189616042, 0.0112144342, 0.0156628862, -0.00660345377, -0.00705492077, -0.0298088454, 0.0199488103, -0.013399533, -0.0214175824, -0.0151331658, 0.00552294357, -0.00232655881, 0.00722948788, -0.0122136809, -0.00306696421, -0.01779381, -0.00891496334, -0.00179984747, -7.29401e-05, 0.00433408096, 0.0043912665, -0.00293152407, -0.00195184129, -0.00939652789, 0.00962527096, 0.0196959898, -0.00448456965, -0.00682015764, -0.01480811, 0.0152415177, 0.0136643937, -0.00352144078, 0.0157351214, 0.0147358747, 0.0105161658, -0.00746425055, -0.00298269046, -0.00833708607, -0.00500827143, 0.0148201492, -0.00812640134, -0.0125206783, -0.0104439314, -0.0184559617, 0.0111181214, 0.0218389519, 0.026750911, 0.00281865755, -0.0380676761, 0.016722329, 0.0134115722, 0.0131948683, -0.0347208045, 0.00690443162, 0.00981789734, -0.0135078859, 0.00151918561, -0.0277862735, 0.0116478428, -0.00464408798, 0.0250654351, 0.00408125948, -0.0285808556, -0.00741609419, 0.0211406834, -0.011653862, 0.0348893516, -0.0078314431, 0.012893891, -0.00614596764, 0.00602858607, 0.0147238355, 0.000784799689, -0.0171918534, 0.00779532595, 0.00585100939, 0.00523400446, -0.0205868836, -0.000953347306, 0.0104860682, 0.00412038667, -0.0103415987, 0.0211888403, -0.0152535569, 0.0183235314, 0.00910157, 0.0180345923, -0.00220315787, 0.00318133575, 0.0156388078, 0.0306275059, 0.00728968345, -0.00418660184, -0.00071331748, 0.0232956856, -0.0289661065, -0.00207975693, -0.0312294606, -0.0165778585, 0.0130022429, -0.0248005744, -0.00324755092, -0.0046230196, 0.00437019812, 0.0143145062, -0.0156749263, -0.0116237644, 0.0251135901, -0.00219864305, 0.000101862184, -0.0215740912, 0.0138931368, -0.00821067579, 0.00939050876, -0.000790066842, -0.00725356583, 0.0164093114, -0.000824679271, -0.00795785431, -0.000144939637, 0.0152294785, 0.00314220856, -0.00198795856, 0.033059407, -0.00387358479, -0.00821067579, 0.00830698851, -0.010082758, -0.0173844807, -0.0320240408, 0.00531526841, 0.0298088454, 0.0258118603, -0.0120752305, -0.00296463165, 0.0128096165, -0.0174567141, 0.0277381185, -0.00789765827, -0.00423776777, -0.0141218798, 0.0132550644, -0.025450686, 0.00551692396, -0.0118344482, -0.0178540051, 0.0175289493, 0.0043972861, 0.0089571, 0.00112866692, 0.0301700179, -0.00237170537, -0.0122558177, -0.0030774984, -9.49491e-05, 0.0212851521, 0.0263656583, -0.0030910424, -0.0166260153, 0.00519186771, 0.0103476178, -0.0168427192, -0.0128096165, 0.0174807925, -0.00276297657, 0.0162046477, 0.0289901849, -0.0197080281, -0.0198645368, 0.00104138337, -0.00531526841, 0.0140496455, -0.0133634163, 0.0192866605, -0.00607072283, 0.0225733388, 0.0142061543, -0.00744619174, -0.00966740865, 0.0195033643, 0.021850992, -0.0120752305, 0.0106606353, 0.00650112145, 0.040716283, -0.0191181116, -0.024607949, -0.00489089, -0.00755454367, -0.0141579974, 0.0193107389, -0.00600751769, 0.00515575055, 0.00464408798, -0.0184198432, 0.0138931368, 0.00195334619, 0.0128698125, 0.0141579974, 0.0123521304, 0.0170112681, 0.0101309139, 0.00677200127, -0.0139292544, 0.00477049872, 0.0151090873, 0.00492098788, -0.0188291743, -0.00712715508, -0.00105567975, 0.0126531087, 0.00852971151, -0.018865291, 0.0148442267, -0.0116719203, -0.00163882435, 0.00353648956, -0.00771707203, -0.0151572442, -0.00143641676, 0.00225733384, -0.0133513771, -0.00754250446, -0.000447704544, -0.0134236114, -0.0217426382, 0.0279548224, 0.0175409876, -0.013796824, 0.0155063784, 0.00395785877, 0.0181549825, -0.00607975246, 0.0177336149, -0.00474642031, -0.00978178, -0.023199372, -2.05864144e-05, 0.0176854581, 0.00356357754, 0.00807222538, 0.0185281951, -0.018299453, 0.0128698125, 0.00286229933, 0.00350639177, 0.00119563448, 0.0124364039, 0.00514672091, 0.0108773392, -0.00397591712, 0.00772911077, 0.00179984747, 0.006531219, 0.00671782531, -0.00742211333, -0.0157471597, 0.000392399845, 0.00958915427, -0.01644543, 0.00393679, 0.0258359369, 0.0238013268, -0.0053543956, -0.00284875534, 0.0153257912, -0.0161203723, 0.00798795186, -0.00811436214, -0.0101850899, 0.0227539241, 0.0303144883, 0.0028683187, 0.0189014077, -0.0122558177, 0.00827087089, -0.00232806359, -0.00111512293, 0.00132655981, 0.00179683766, 0.0144950924, 0.0151090873, 0.00185101375, -0.0315184, -0.013965372, -0.00494807586, 0.0113408454, 0.0142904278, 0.00385853602, -0.0017230981, 0.0117080379, -0.00626033917, -0.0169149544, -0.0243190099, 0.00885476824, -0.025450686, -0.00902331527, 0.00264860503, 0.00772309117, 0.000978178, 0.0119066834, 0.0119668785, -0.00355755817, 0.0185041167, -0.00434612, 0.0154341441, 0.0144228581, -0.00565236388, -0.013905176, 0.014242271, -0.00493302662, 0.00489991903, -0.0139774112, -0.0144950924, 0.00831300765, 0.00580285257, -0.0130503988, 0.0126290303, -0.00816251896, -0.0326741524, 0.0138088632, -0.0015530457, 0.0186726656, -0.0248487312, 0.0198886152, -0.00322046294, 0.00259743887, -0.00547177717, -0.00503234938, -0.0201775543, -0.00271030539, -0.0120090162, 0.00779532595, -0.00798795186, -0.00866816193, 0.00762677845, 0.00655529741, -0.00224830443, -0.0125447568, -0.0145914061, 0.013230986, 0.00198645378, -0.0051738089, 0.00730172219, 0.0133513771, -0.00499021262, -0.00514973095, 0.00618208479, 0.00398795633, 0.00939652789, 0.00292399968, -0.00560420752, 0.0015515408, 0.00037434118, 0.0218871087, 0.00241534715, -0.00592023414, -0.0198524985, 0.00480962591, 0.0149164619, -0.00905341376, 0.0056312955, -0.00393077079, -0.00875243545, 0.0352505259, -0.011996977, -0.0201775543, 0.00118585269, -0.0095109, 0.0169992279, 0.00394581957, -0.0091858441, -0.00272986898, 0.00999848358, -0.0158314351, 0.0269916933, 0.00078555214, 0.00587809738, 0.0120090162, 0.0121354265, -0.00524604367, 0.0236809365, -0.0208999012, -0.00578780379, 0.0138690593, 0.0241865795, -0.00786154158, -0.0136764329, -0.0149285011, 0.00762075884, 0.0134476898, -0.0103656771, 0.00956507586, -0.0317832604, -0.0101790708, 0.00590819493, -0.00706094, 0.00830698851, -0.00778930634, 0.00520992652, 0.0262693465, 0.000333897304, -0.00504137902, 0.00285327, 0.0111241406, -0.00625431957, -0.000852519704, 0.0157832783, 0.00492399745, -0.0105823809, 0.0102031492, -0.00047366388, -0.013568081, -0.000334837852, -0.00784348231, -0.00542663038, 0.00884272903, -0.00507147657, 0.0259081721, 0.00967944693, 0.00588712655, 0.00537245441, -0.0117381355, -0.00700676395, -0.00765687646, -0.0234883111, -0.013122634, -0.0172761288, -0.00690443162, 0.0121715441, -0.0253543723, -0.00365086109, -0.0132671036, -0.0019653854, -0.0138690593, -0.00858990755, 0.00631451514, -0.00525206327, 0.00525808288, -0.0348411947, -0.00244995952, 0.0127373822, -0.00742813293, -0.0124845607, 0.0171557367, -0.020779511, 0.00465010758, 0.0209239796, -0.00915574562, -0.00426485576, 0.00370202749, -0.00380435982, 0.00614596764, -0.00495108543, -0.0121113481, -0.00213092309, 0.00822873414, -0.0118705658, -0.0138449809, -0.0617365763, 0.0318314172, 0.00996838603, 0.0129420469, 0.00904137455, 0.0289420299, 0.00565537345, -0.0258840937, 0.0350338221, 0.00789163914, 0.00824077334, 0.011208415, -0.00514371134, 0.0177817699, 0.00836718362, -0.0107930657, 0.00269826641, 0.0174687542, 0.00993226841, -0.00702482276, 0.0146275228, -0.0057486766, 0.0205146503, -0.00730774179, 0.0105342241, -0.00227539241, -0.00409329869, 0.0191903468, 0.00898117851, 0.0101790708, -0.000647478562, 0.0220676959, 0.00695258798, -0.00690443162, -0.008222715, 0.0127373822, -0.0200090073, -0.0117983315, 0.0189856812, -0.0173724405, 0.00593829295, -0.00490894867, -0.0392475091, -0.0166019369, -0.0165056251, 0.0165297035, 0.0135440025, 0.00630247593, 0.0178058483, 0.00786756072, -0.0120391138, 0.028773481, -0.0268231444, 0.000225545271, -0.00343114743, -0.0117923114, -0.00934235193, -0.00350037217, 0.0199247338, -0.00825883169, -0.0269676149, -0.0170714632, -0.00368396868, -0.00544769876, 0.00556207029, -0.0133032203, -0.000522196526, 0.00494205626, 0.0246801823, 0.00537546398, -0.0386455543, -0.0121354265, 0.0187569391, 0.00446952088, 0.00138148828, 0.000840480614, -0.00921594165, 0.00338299084, -0.0371767841, -0.00283069653, 0.00951691903, -0.00103084906, 0.0163611546, 0.0144469365, -0.0108532608, 0.0149164619, 0.0138088632, 0.00487885065, -0.0020887861, 0.00209781551, 0.0141820759, -0.00294356328, 0.00675996207, -0.00687433407, -0.00314521836, 0.0105763609, 0.0193950124, -0.0165297035, -0.0038826142, 0.0222844, 0.0361173414, 0.0112385126, 0.010756948, -0.0205146503, 0.0100586796, -0.0163491163, 0.00452068727, 0.00105191756, -0.00402106391, 0.0134717682, 0.00169149542, 0.00884272903, -0.0151211265, -0.00970352534, 0.0284845419, 0.00697064679, -0.0382121466, 0.00307900319, -0.0127012646, -0.00107975805, -0.00609480124, -0.021790795, -0.0200210456, -0.00462903921, 0.0239939541, -0.0019413071, -8.11229329e-05, -0.00275996677, -4.37358431e-05, -0.00331376609, 0.0103536379, 0.0089089442, -0.010925496, -0.0236207414, -0.0164695065, -0.0254266076, 0.00647704303, 0.0101971291, -0.0122257201, 0.00863204431, -0.0214657392, 0.00223927503, -0.000280097505, -0.00278855977, -0.000327877729, -0.00886680745, 0.00613392843, 0.00363581232, -0.0214898176, -0.0194792859, 0.00686229486, -0.00863204431, -0.00684423605, 0.00769901322, -0.0150729707, -0.00321143353, -0.00589314615, -0.0114612365, 0.0258840937, -0.00243491074, 0.00651918, 0.00785552152, 0.00214446709, 0.00372309587, -0.00665762974, -0.00590819493, -0.00384950661, -0.00372911547, -0.0199728888, -0.0206831973, 0.00505040819, 0.0138088632, 0.00381940883, 0.00277802534, 0.00462903921, -0.0158675518, -0.00422572903, -0.0211647619, -0.00760871964, 0.00352445059, -0.00423475821, -0.000255643041, -0.00859592669, 0.0184318833, -0.00784950238, -0.0171316583, 0.0200571641, -0.0135560418, -0.00804212783, -0.0038344576, 0.0363340452, 0.0417034887, -0.0145552885, 0.000626410125, -0.00431602215, -0.00301429303, -0.00457486324, 0.0267749894, -0.0238494836, -0.00629645633, 0.0163972732, -0.00198193896, 0.0124123264, 0.0125206783, 0.00314220856, 0.0203340631, 0.0154823, 0.0285086203, 0.031975884, 0.00752444612, -0.00998042524, -0.00589916576, 0.00112791441, -0.0243430883, -0.00578178419, -0.00800601, -0.0109676328, -0.00324153132, -0.0190218, -0.00130624382, 0.0178660452, -0.00106470915, 0.0254266076, 0.00830096845, 0.0328667797, 0.0120752305, 0.00488487026, 0.0155184176, -0.0233558808, 0.000783294847, -0.00248908671, 0.00667568855, 0.00536342524, -0.0324815288, 0.0199367721, 0.0238615237, 0.00741609419, 0.0302663315, -0.0129179684, -0.0232475288, 0.0156628862, 0.0238615237, -0.0100406203, -0.013399533, -0.00514371134, 0.00707899872, 0.00694054877, -0.0146756796, 0.00793377589, -0.0129661253, 0.00513167214, -0.000509781239, -0.00454476522, -0.00329570728, 0.00604664488, -0.0107870456, -0.0137486681, 0.00683821645, -0.012051153, -0.000975168194, -0.0177576933, -0.0175891444, 0.00964934938, -0.0106305368, 0.0158916302, -0.00416854303, -0.016385233, -0.0109736519, 0.0129059302, 0.0026471, -0.00225582882, 0.0208758228, -0.0189014077, -0.00219111866, -0.00683219684, 0.00304439082, -0.0161685292, 0.00995634682, -0.0143747013, -0.0167945642, -0.0232354887, 0.000337095174, 0.00248457212, 0.0215018559, 0.00802406948, -0.0117983315, -0.020779511, -0.00223626546, 0.00208126171, 0.0182272177, 0.0105763609, -0.0190819949, 4.42531491e-05, 0.000731376174, -0.0217546783, 0.000172497923, 0.000952594855, -0.0127735, 0.00730172219, -0.0110880239, 0.00736191776, 0.00720540946, 0.00392475119, 0.000773513049, -0.00897515938, -0.0203942582, -0.00833708607, -0.0120752305, -0.00361474394, -0.0226094555, -0.0194070507, 0.00421970943, 0.0161564909, -0.00952895824, 0.00361775374, -0.00910157, -0.00604664488, 0.00688637281, 0.00348231359, -0.0166862123, -0.00124905806, 0.0147960708, -0.000819412176, -0.00457486324, -0.0078796, -0.0108472416, 0.00679006, 0.0348411947, 0.00470127398, 0.00583897, -0.00312415, -0.00318133575, -0.00142964476, 0.00179533276, 0.0126531087, 0.00758464169, -0.0106004393, -0.0224168301, -0.020779511, 0.00880661141, -0.0109676328, 0.0106907329, -0.0240661874, -0.0185161568, 0.000617757032, -0.0048427335, -0.0133393379, -0.00418660184, -0.000453724089, 0.00198344397, -0.0298088454, 0.000966891297, -0.00701278355, -0.000548908312, 0.00549284555, 0.00999848358, -0.015939787, -0.0206350405, 0.00176824478, 0.00605868408, 0.00409630826, -0.0215138961, 0.00754250446, -0.0097456621, 0.00200902717, -0.0268953796, -0.0086200051, -0.0152415177, -0.00842136, -0.0134115722, -0.0113528837, -0.0219593439, 0.0103175202, 0.0508050583, 0.0453393, 0.0207554325, -0.0142302327, 0.00970954541, -0.0132069075, -0.0348893516, 0.0202979464, 0.000712188834, 0.015036853, -0.0227298457, -0.00344619621, 0.0166260153, -0.00803008862, -0.0303385668, -0.00518885814, -0.00962527096, -0.00238675438, 0.00363882212, -0.00124604825, -0.0019352875, 0.0284604654, 0.00540255243, -0.0075003677, 0.0150850089, 0.000690744142, -0.00823475327, -0.0197561849, -0.0142181935, 0.033155717, 0.00179984747, 0.00545973796, -0.00278855977, 0.00970352534, 0.00533633726, 0.0191783085, 0.0199006554, 0.00492098788, 0.0197441466, -0.00525206327, 0.0186726656, 0.0155545352, 0.00814446062, 0.0250895135, -0.00788561907, -0.00607373286, 0.00606169365, 0.0217306, -0.00022121871, -0.00081188773, 0.0190097596, -0.000222159273, 0.00506545696, 0.0122257201, 0.0154341441, 0.0097456621, 0.0251135901, 0.00769901322, -0.0107087912, 0.00837922283, 0.00979381893, 0.00756658288, 0.00556508033, -0.00394280953, -0.0129059302, -0.00551391393, -0.0107750064, -0.000203160045, -0.00621820195, -0.0163491163, -0.00545973796, -0.0137245897, 0.00598644931, -0.00460797083, 0.0119728986, 0.0105643226, 0.0280029774, 0.0106124785, -0.00270729559, -0.0143747013, -0.00108427263, 0.0025282139, -0.00559216831, -0.0311572254, 0.0111422, -0.00105567975, -0.0149044227, -0.0115154125, 0.00863806438, 0.0292309672, 0.0042166994, 0.0258118603, 0.0152655961, 0.03289086, 0.00487283105, -0.00640480826, -0.0104318922, 0.00305041042, 0.00464408798, 0.0202618279, 0.00318735535, -0.0201534759, -0.00160571677, -0.000308502291, -0.00274040317, 0.00599848852, -0.00279608415, -0.000117851632, -0.00409931829, -0.0203822199, 0.0125447568, -0.00367192971, 0.0278825872, -0.000448833191, -1.83114446e-06, 0.00979983807, -0.00957711507, 0.00206320314, -0.00157862878, -0.0140978023, 0.0260767192, 0.00373814488, -0.0209239796, -0.00647102343, -0.00187659683, 0.0102452859, 0.00493302662, 0.0179743972, -0.00371707627, -0.00565236388, -0.0165297035, -0.00966740865, 0.0204303749, -0.00510759372, 0.00288336771, 0.00878855307, -0.0223205164, -0.0308923647, -0.00403611269, 0.0100165429, -0.018865291, 0.0282196831, 0.0194792859, 0.014471015, -0.0157351214, 0.0133513771, -0.00753046572, 0.0143265454, 0.0392956659, 0.0052942, -0.0112987077, 0.00849359483, 0.00577576458, 0.0205868836, 0.0145552885, 0.00590819493, 0.00550187472, -0.0247042608, 0.0221038125, -0.0387659445, -0.00775920879, -0.0020887861, 0.0270398483, -0.00772911077, -0.0159759037, -0.0441835485, -0.00276448135, -0.01153949, 0.00504739815, 0.00635665189, 0.00150639412, 0.0118886251, 0.0124364039, 0.00424679741, 0.00544167915, 0.0131346732, -0.00811436214, 0.0177576933, -0.0282437596, -0.0086200051, 0.000940555765, 0.0104499506, 0.0048939, 0.0495048352, -0.00516778929, -0.0347930379, -0.010979672, 0.018973643, 0.0287494026, 0.0200812407, 0.00924002, 0.00651918, -0.00860796589, 0.000149830536, -0.025619233, -0.00700074434, 0.0151813226, -0.0230789799, -0.0235846229, 0.00593829295, -0.00357260695, 0.0172159318, 0.0103355786, -0.00149661233, 0.00140105188, 0.0257877819, -0.000208050929, -0.0113528837, 0.00799999107, 0.00374416425, -0.00626635877]
|
18 Jan, 2023
|
Why Array.length() gives error when used in Java?
18 Jan, 2023
What will happen if we use Array.length()?
Before moving to the reason why we cannot write Array.length(), let us first see what will happen if we try to use the Array.length() in the Java code. Below is a code snippet to check that.
Java
import java.io.*;
class GFG {
public static void main(String[] args)
{
int arr[] = new int[3];
int size = arr.length();
}
}
Try to run the above code. You will see that there is a compile-time error due to the usage of length().
Compile Error:
Main.java:6: error: cannot find symbol
int size = arr.length();
^
symbol: method length()
location: variable arr of type int[]
1 error
Why cannot we use Array.length() in Java?
We have seen that using length() gives an error. But the question is why?
Though arrays are objects in Java but length is an instance variable (data item) in the array object and not a method. So, we cannot use the length() method to know the array length.
Once the length variable of the array is initialized, it cannot be modified or changed. It is used only for arrays and gives the size (length) of the array i.e., the total number of elements in the array.
Whereas String objects in Java have the length() method, this method returns the number of characters present in the string at that time. This method is a way to access the field member of the object. It is modifiable with the operations performed on the string.
length field is used in arrays like: int[], double[], long[], String[], etc.length() method is used in String objects like: String, StringBuilder, etc.
Implementation of length instance variable and length() method:
The below code snippet showcases the use cases of length instance variable and length() method.
Java
// Java program to explain
// length field in array object
public class Main {
public static void main(String args[])
{
// arr is an integer array
int[] arr = new int[3];
// length is a field variable for array arr
System.out.println("Length of the array is: "
+ arr.length);
// str in a String
String str = "GeeksFor";
// length() is method for
// getting length of string
System.out.println("Length of the string " + str
+ " is: " + str.length());
// Updating the string
str += "Geeks";
System.out.println("Length of the updated string "
+ str + " is: " + str.length());
}
}
Output
Length of the array is: 3
Length of the string GeeksFor is: 8
Length of the updated string GeeksForGeeks is: 13
Time Complexity: O(1)Auxiliary Space: O(1), since no extra space has been used.
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java/Split a List into Two Halves in Java/Randomly Select Items from a List in Java/Get first and last elements from ArrayList in Java/Java Program to Find the Length/Size of an ArrayList/Why Array.length() gives error when used in Java?
|
https://www.geeksforgeeks.org/why-array-length-gives-error-when-used-in-java/?ref=ml_lbp
|
Pandas
|
Why Array.length() gives error when used in Java?
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Randomly Select Items from a List in Java, Array of Structures vs Array within a Structure in C++, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, Size of an ArrayList, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Java Program to Find the Length, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Initializing a List in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Why Array.length() gives error when used in Java?, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Get first and last elements from ArrayList in Java, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.0118656438, -0.00851305574, -0.00667657, 0.0322672278, 0.0065678684, -0.0274843555, 0.00691113714, 0.00185221899, -0.0139023699, -0.0174151491, 0.0336403027, -0.00361862103, 0.0220950413, -0.0048972955, 0.00803248, 0.0462268107, -0.0242347475, 0.00946276542, -0.00951997656, 0.0040248218, -0.014874964, -0.0157560185, -0.0125292959, 0.0158017874, -0.0203901418, 0.0347387604, -0.00924536213, 0.0130670834, -0.064031, -0.036043182, 0.00438525388, -0.0176096689, 0.00948565, -0.0133302556, -0.0323816501, -0.0210309103, 0.00455402723, -0.00696834829, -0.0414897054, 0.000591780408, 0.000127652936, -0.00165483973, -0.0159276538, -0.00245293882, -0.0116882883, 0.0127123725, -0.00542650092, 0.015939096, -0.0254476294, -0.0272326265, -0.0122775659, 0.0290176217, -0.023044752, 0.0184678398, 0.041466821, 0.034967605, 0.0133188134, -0.00567823136, -0.0100463219, -0.0397275947, 0.0445333533, -0.0452427752, -0.0210080259, -0.0112477606, -0.0256307069, 0.00796382688, -0.0253332071, -0.00336116971, 0.0623375401, 0.00672806054, -0.00158761628, -0.0114594428, -0.00193088467, 0.00964584202, -0.0364779867, -0.0442587361, 0.000990472385, 0.0443045087, -0.00726012653, 0.0438697, -0.0220950413, 0.0185593776, -0.013959581, -0.00247153244, -0.0608271584, 0.00413066288, -0.010915935, -0.0180902444, -0.00556952972, -0.00279334653, 0.000128546861, 0.0566621684, -0.0163395759, -0.0142227532, -0.0118313171, 0.0769836605, -0.0108358385, 0.0183076467, -0.0257222448, 0.0197036061, 0.0317866541, -0.00320383837, -0.0383316353, -0.00925108325, -0.00471421937, -0.0432289317, -0.015939096, 0.010509734, 0.0217632167, 0.0560671687, -0.00295782927, -0.0236626342, -0.0141541, -0.00310943951, 0.000827419863, 0.0262714736, -8.52807425e-05, -0.0231706165, 0.0546025597, 0.0796382651, 0.013044199, 0.0480575748, -0.041832976, 0.0152411163, -0.0243720561, 0.0292235818, 0.0070656077, -0.00255591911, 0.0141083309, -0.0359745286, 0.0116539616, -0.0352193378, 0.0385376, -0.0323587656, -0.00174637791, 0.00200382923, -0.0130327567, 0.031214539, 0.0102923308, -0.0017120511, -0.0117168948, -0.0213169679, -0.0334801115, -0.00471135881, 0.018982742, 0.0253560916, -0.00229274668, 0.0379426, -0.0483321883, 0.0146117909, -0.0437781624, -0.0118427593, 0.00403912459, -0.00911377557, 0.0233880188, -0.010406753, -0.0101779075, 0.0107500218, 0.0200354327, -0.018628031, -0.00883344, 0.0168659203, -0.0282853153, -0.000593210687, -0.0363635644, 0.0227472521, -0.0110990116, -0.0186051466, -0.0500714146, 0.0159162115, -0.00479145441, 0.0475083441, 0.0253103226, 0.0435950868, -0.00533496309, -0.00750613539, 0.0272555109, 0.01375362, 0.00417929282, 0.015481404, -0.0236626342, -0.0206533149, 0.0259739757, 0.00676810835, 0.0133531401, -0.0168430358, 0.00312088174, -0.0435722023, 0.0426797047, -0.0249441694, -0.0359745286, 0.0171176512, 0.00450825831, -0.0178728402, -0.00641911896, 0.00944560207, -0.0344412625, 0.00197808421, -0.00357285189, 0.00342410221, -0.0030407859, -0.0246009, -0.000149107203, 0.0206647571, 0.0151381362, 0.00555522693, 0.000273184414, -0.0544652529, 0.0413066298, 0.0113049727, -0.00822699908, -0.00104053225, -0.0422220118, -0.000477715163, 0.0368899107, 0.00947420765, -0.0187195688, 0.0354024135, -0.0148864063, -0.0408718213, 0.0148520786, -0.050757952, 0.0309856925, -0.0173121691, -0.0460666195, -0.029589735, -0.0206762, 0.00467131054, -0.00991473533, -0.0208020639, -0.0121860281, 0.0368899107, 0.000431588473, -0.0281251241, 0.0180673599, -0.0236626342, 0.0105326185, -0.0250585917, 0.0290405061, 0.0134561211, -0.0210766792, 0.00690541556, -0.0348760672, -0.0222666766, -0.00103624142, 0.00166056084, -0.0068024355, -0.0393614434, -0.0189026464, -0.0211110059, -0.000608586241, -0.0259968601, 0.00738599151, -0.00182504358, -0.0282395463, 0.0141083309, -0.0066193589, -0.0057468852, 0.0327478051, 0.0491102636, 0.00287916372, 0.0409404784, -0.0356083736, -0.0283082, 0.0042994367, -0.0179529376, -0.0162251517, -0.00686536776, 0.00657358952, -0.00173922651, 0.0159047693, -0.0545110218, 0.0149665019, 0.0145316953, -0.0161793828, 0.00147605408, -0.0179186091, 0.0104868496, 0.0586760119, 0.0112763662, 0.0140854465, 0.0108930506, 0.017003227, -0.0157789029, 0.0143028498, -0.0327020362, -0.0223124456, -0.0149550596, -0.0108701661, -0.00101407198, -0.0191658176, -0.0674636811, 0.017106209, 0.0381485596, 0.0136735244, -0.0347616449, -0.0503002629, 0.00837574899, -0.0111962706, -0.00896502659, -0.0107957907, -0.0730475113, -0.029086275, -0.050254494, -0.043343354, -0.0438239314, 0.035677027, -0.0294066593, 0.0235482119, 0.0106985318, 0.0337776095, -0.0105211763, -0.000536714448, -0.0151724629, -0.00504032429, 0.0167972669, 0.0478287302, -0.0107786274, -0.0108816084, -0.031466268, -0.00790089369, 0.000549587, -0.0241660941, 0.0185937043, 0.0118885282, 0.0111962706, -0.0493391082, -0.0125178536, -0.0249899384, -0.068058677, -0.0353108756, 0.025127247, -0.0197837017, 0.0229646545, 0.00264030602, -0.00913666, 0.00182075275, -0.0357685648, 0.00581839914, 0.015939096, 0.015859, 0.0180559177, -0.00609301403, 0.0187195688, -0.0298414659, -0.00789517257, -0.0112248762, 0.0133073712, 0.0208821613, -0.0232621543, 0.000587847142, 0.015859, 0.022998983, -0.0316722319, -0.00333542447, -0.00780363474, -0.0318553075, -0.00570969749, -0.0220836, 0.00979459099, 0.000219727532, 0.0208249483, 0.00910805445, 0.0100463219, 0.000573901867, -0.0573944747, -0.00102408405, -0.000289275136, 0.0131014101, -0.0542364046, -0.0108701661, 0.00508323265, 0.0286514685, 0.00720291492, 0.0200583171, 0.0158475582, -0.0245322473, 0.004542585, 0.0232392699, 0.00894786231, 0.00278619514, 0.0465243086, -0.0265003201, -0.0122661237, -0.022026388, -0.0144630419, -0.0416956656, -0.00707132882, 0.0221408103, 0.0385376, -0.0156301539, 0.0228731167, 0.0225756187, -0.0220492724, 0.00676238723, 0.00807252806, -0.00836430676, -0.0236855187, -0.00726012653, -0.00023939395, -0.000103785052, 0.0192344729, 0.0292235818, -0.0280107, -0.0185021665, 0.0228044633, -0.0101779075, 0.0243949406, 0.0362949111, -0.00998911, 0.0029134904, 0.0824759528, -0.0284455065, -0.0543279424, 0.00452828221, -0.00265031797, -0.0126093924, 0.0310314633, -0.0380341373, 0.0213627368, -0.00528347259, -0.000803820149, -0.0431145094, 0.00579265412, -0.00522912201, -0.0162022673, -0.038217213, 0.0369814485, -0.00840435456, -0.0178499557, -0.064259842, 0.0458606556, 0.0340979919, 0.0229303278, -0.0164883249, -0.0416498967, 0.00252731354, -0.0090107955, -0.034715876, -0.0196921639, -0.00628753286, 0.0219920613, 0.0178041868, 0.0173236113, -0.0243720561, -0.000753045, -0.0280793551, -0.0135362167, -0.00732878037, 0.00443388335, -0.0238457117, 0.00327249197, 0.0457462333, -0.00263172435, 0.061422158, -0.0245551318, 0.0319010764, -0.0396818258, -0.00189798814, 0.0117054526, 0.00324960751, -0.0255620535, -0.0148635209, 0.0346701071, 0.0219348501, 0.0231248476, -0.00560957752, -0.0279420465, -0.00579265412, 0.00118570623, -0.0166485161, -0.0264087822, -0.00242433301, -0.0216030236, -0.0205961037, -0.0181817822, -0.011322136, -0.00732878037, -0.0242805183, -0.0519021824, -0.0427483581, 0.046043735, -0.039178364, -0.0076033948, -0.024921285, -0.0215458125, 0.0219920613, 0.0256993603, -0.00573258195, -0.00609873515, -0.00241289078, 0.0130785257, -0.0515360273, -0.0201612972, 0.0177927446, -0.00049738161, -0.026340127, 0.0250814762, -0.0560671687, 0.0574402437, -0.0136964088, -0.0152640007, -0.0206647571, 0.0359974131, -0.0288345441, 0.00381600019, -0.0463183485, 0.02700378, -0.0182504356, -0.0380570218, -0.0192230307, 0.00660219556, -0.0096000731, 0.0224955212, -0.00873045903, -0.0176211111, -0.00847872905, -0.0177813023, -0.00127438386, -0.0114823272, -0.0211338904, 0.0308941547, 0.006750945, -0.00386463, -0.0253560916, 0.00368727464, 0.0238685962, 0.00401337957, -0.00696262717, 0.00629897509, -0.0267520491, 0.023044752, -0.0146003487, -0.00132372871, -0.0345556848, -0.000806680706, -0.0107557429, -0.0127695845, -0.0140396776, -0.0219920613, 0.0371187553, 0.0522225648, -0.00301504065, 0.0344641469, 0.00358715467, 0.00330967945, -0.00472852215, 0.0105440607, 0.00840435456, 0.00626464793, 0.0113335783, 0.0459064245, 0.038629137, -0.00140382466, -0.00408489397, 0.0410320163, 0.0133874668, 0.00300931954, 0.00392184127, -0.000879625266, -0.0293151215, 0.00661363779, 0.019646395, 0.0119457403, 0.013856601, -0.0279191621, 0.0178613979, 0.000206139826, -0.0458606556, 0.0420389362, -0.0214771591, -0.0387664437, -0.0151495785, -0.00151324144, 0.037256062, -0.0114651639, 0.0163739026, 0.000748754188, 0.0326333828, 0.0181474555, -0.0130213145, -0.0184335131, 0.0203443728, -0.00647633, -0.0181817822, -0.0180788022, -0.00332398224, 0.0029492476, -0.0504375696, 0.0029692715, -0.020401584, 0.00516905, -0.00439383555, 0.0205388926, -0.00463126274, 0.0257908981, -0.0155500583, -0.0127810268, -0.0055437847, 0.00598431239, -0.00731733767, 0.0275301244, 0.023754172, -0.0204702392, -0.0042479462, 0.0125178536, -0.00146461185, 0.0107385796, -0.0213055257, -0.000440170203, -0.0308255013, -0.0121745858, 0.0124492, -0.0134675633, -0.00506893, -0.0294524282, -0.00368155353, -0.00986896642, 0.0169460159, 0.0176325534, 0.00437381119, 0.00991473533, -0.00347273191, -0.00110203458, -0.00185507955, 0.0319010764, -0.0174037069, -0.0118999705, 0.00551803922, -0.00865036342, -0.0205846615, -0.0524056405, 0.005786933, 0.0255620535, -0.0147490986, 0.0101264175, 0.0385604836, 0.0136277555, -0.0277360864, -0.00735166483, -0.0264545511, 0.0278505087, -0.0116768461, 0.063436, 0.000286593335, 0.0141998688, -0.0296126194, 0.012231797, 0.00981175527, -0.0335716493, 0.0377137549, 0.00392184127, -0.0296812728, 0.00858743116, -0.000164572164, 0.00595570635, 0.0543279424, 0.0198065862, 0.0256764758, 0.0268435888, -0.0149893863, 0.0198523551, 0.00296355039, -0.00792377908, 0.00264316658, -0.00264602713, 0.00428227335, -0.00969733205, -0.00511469925, -0.00819267239, -0.00819267239, -0.0254247449, -0.00981175527, -0.0159162115, 0.0308255013, 0.000607513532, 0.0171863046, 0.0146461176, 0.0187653378, 0.0601863898, 0.0215915814, -0.0203901418, 0.0107271373, 0.01325016, -0.0117626637, -0.0022998983, -0.0117512215, 0.00843296, -0.00891925674, -0.0116654038, -0.0404599, 0.00883344, -0.0119686248, 0.0239143651, 0.0235710964, -0.0120029515, 0.018319089, 0.0193603374, 0.00302648288, -0.0148635209, 0.0169345737, 0.0280107, 0.00373018323, -0.0143943876, -0.0346243382, 0.0242347475, 0.008272768, 0.023754172, 0.0286514685, 0.0231591742, 0.00209822808, 0.00741459709, 0.00697979052, 0.0103667052, -0.00226843194, -0.0116882883, 0.00147748436, -0.00192945439, -0.0251730159, -0.0261341669, 0.0254476294, -0.0179987065, 0.0123118926, -0.0245322473, 0.000325926172, -0.00555808749, -0.00909661222, 0.00374734658, 0.0201155283, 0.00204959838, -0.0311458856, 0.0122546814, 0.00603580242, -0.0155729428, -0.0114022316, 0.0316493474, 0.0157789029, 0.0161793828, -0.0123919891, 0.0259053204, 0.0145889064, -0.0156759229, -0.0198752396, -0.0397504792, -0.0189598575, -0.0066594067, -0.00167057279, -0.00818123, 0.00394758629, 0.0343726091, -0.035677027, 0.00860459451, 0.0442129672, 0.00423936453, 0.0106527628, -0.00373590435, 0.0361804888, -0.0126666036, 0.000630040537, 0.0390868261, -0.0192344729, 0.0100749275, -0.015481404, 0.00408775453, 0.0130785257, 0.0273012798, 0.0018593705, -0.00657931063, -0.0153555395, -0.00556952972, -0.00526917, 0.0122775659, -0.0487441123, 0.0143600609, -0.015584385, 0.0127695845, -0.0216259081, -0.0203901418, 0.0363864489, 0.00796954799, -0.0136506399, 0.0248297472, -0.0138337165, 0.0323129967, 0.0256993603, -0.0241660941, 0.00795238465, -0.0259053204, 0.0161564983, 0.0109445406, 0.0142456386, -0.00371874101, 0.0356541425, 0.00490587763, 0.0121059315, -0.0148978485, -0.022484079, -0.0208821613, -0.0105955508, -0.0186852422, 0.0318553075, -0.0150122708, -0.00885060336, 0.000669730944, -0.0132387178, -0.0203329306, 0.0308941547, -0.00692830049, 0.00126294163, 0.0149436174, 0.00523484312, 0.0083128158, -0.015332655, -0.00929685216, 0.0262943581, 0.0302305035, -0.0198294707, 0.00606440846, 0.0250128228, 0.0452427752, -0.00378739461, -0.0128954491, 0.0254018605, 0.00415068679, 0.0071056555, -0.00011111526, 0.0360889509, -0.000628252688, -0.00518907374, 0.0151610207, -0.0134904478, -0.019943893, -0.0126208346, 0.0268664733, -0.0264087822, 0.014771983, -0.00730017433, 0.0163395759, 0.0136391977, 0.0140740043, -0.0403912477, 0.00954858214, -0.0104925707, -0.0112935305, -0.0179300532, 0.0308483858, 0.010961704, -0.00705988659, -0.00636762846, -0.00753474096, 0.0074718087, 0.00605868688, -0.00449967664, 0.00340979942, 0.0410549, 0.00810685474, 0.00394758629, -0.0240059029, 0.00305508869, -0.00796954799, -0.0208135061, -0.00168487569, 0.00538931368, 0.00478001218, 0.0328164585, 0.00408203341, -0.0101607442, -0.0379883684, -0.0100692064, 0.0190285109, -0.00640767673, 0.0209279303, 0.0101264175, -0.00374448602, 0.00215114863, 0.0178728402, -0.0188797619, 0.0300931949, -0.0046541472, -0.0206533149, 0.0153555395, -0.0133188134, -0.0126322769, 0.0115280971, 0.00459979661, 0.025378976, -0.0224726368, -0.0464098863, 0.037919715, -0.0158933271, 0.00555522693, -0.00527775148, -0.00814118236, -0.0556552485, 0.0298872348, -0.00104053225, -0.0107957907, 0.00146461185, -0.00113779167, -0.0119228559, 0.0219462924, 0.0115967505, 0.0103895897, 0.00377309183, 0.00529491482, -0.0217746589, 0.012437758, 0.0135705434, -0.0149893863, 0.0330224186, 0.0419016294, 0.0067108972, -0.0016205128, -0.0367297195, 0.0287658907, -0.0139252543, -0.0328622274, 0.0243262872, 0.00330681889, 0.0111733861, -0.0319010764, 0.0156644806, 0.00251587131, -0.00488299271, 0.00100906601, -0.000235460655, -0.0336860716, -0.0220607147, -0.0128267957, -0.0433891229, 0.0291091595, -0.00399907678, 0.0293608904, 0.00714570377, -0.0219348501, 0.0135819856, -0.0419016294, -0.020756295, -0.0178385135, -0.0150008285, -0.00735738594, 0.0423135497, 0.0360660665, -0.010406753, -0.0114823272, 0.015584385, 0.00217546336, 0.00844440237, -0.0123576624, 0.0208363906, 0.0230561942, 0.0408489369, 0.0118198749, -0.0163166914, 0.00330395834, -0.00752329873, -0.00434806617, -0.00203100475, 0.00890781451, 0.0205617771, -0.00399621623, -0.0166485161, 0.0161450561, -0.00391898071, -0.00857026782, 0.0223696567, 0.0342810713, -0.0415812433, 0.0186509155, -0.0383774042, 0.0127123725, -0.00108344085, 0.00712281931, -0.0122089125, -0.00956574548, -0.00450253719, -0.043343354, -0.0224268679, 0.0145431375, 0.0137765044, 0.0259510912, 0.0147376563, -0.0202413928, 0.00913666, -0.0142799653, 0.00569539471, 0.0266833957, -0.0016777243, 0.0170833245, 0.0506206453, 0.00249155634, -0.0319239609, -0.00573258195, -0.0264087822, -0.0198866818, -0.0125178536, -0.0381027907, 0.0287430063, -0.0393385589, -0.00746036647, -0.0253560916, 0.00289632706, 0.0129755456, 0.00197379314, 0.0305737704, -0.00354424608, 0.0258595515, 0.0340064541, 0.018479282, 0.011980067, 0.00669373339, -0.00814690348, 0.00364436605, 0.00545510696, -0.0241889786, 0.0108072329, -0.0237770565, -0.0226557143, 0.00688825222, 0.00379311573, 0.0233308077, -0.0651294589, 0.00926824659, 0.0114022316, -0.000593210687, 0.00996050425, -0.00714570377, 0.0094169965, 0.0169689, -0.0106870895, 0.0162365939, -0.00178356539, -0.0050803721, 0.0158475582, 0.00148606603, -0.00231706165, 0.00716286711, -0.0159619804, 0.011980067, -0.011419395, 0.0224726368, 0.00484294491, 0.0150809251, 0.00940555427, -0.0139710233, -0.00478287274, -0.00633902289, 0.0158132296, -0.0112534817, 0.0305737704, -0.00727156876, 0.0106127141, -0.0073402226, 0.00157760433, -0.00735738594, 0.00598431239, -0.0090107955, 0.000260311877, -0.000681530801, -0.00384460599, -0.0115567027, -0.00913093891, 0.0392470211, -0.00298071397, -0.00939411204, 0.0201841816, 0.0221179258, 0.017209189, -0.00524342479, 0.0208707172, 0.0225069635, -0.00019326726, -0.0156072695, -0.011116175, 0.00391039904, -0.0041878745, -0.000348274392, 0.0115853082, -0.00435378728, -0.0319468454, 0.0138680432, -0.000927539775, -0.0120143937, 0.0177240912, 0.0279878154, -0.0200583171, 0.0173236113, -0.00239143637, -0.0107843485, -0.00321528059, -0.00939411204, -0.0220950413, -0.0213512946, -0.00224125665, -0.00635046512, -0.0204359107, -0.000665797677, 0.0602321588, 0.00093111553, -0.00128797162, -0.0243491717, 0.018982742, -0.000160281314, 6.38711645e-05, 0.0307797324, 0.0111962706, -0.00123004511, 0.0139366966, 0.0371187553, 0.0214657169, -0.0267291646, 0.0100577641, -0.00442530168, -0.0100749275, -0.00901651662, 0.000572113961, -0.0120830471, -0.011522376, 0.0161336139, -0.0131700635, 0.00526344869, 0.00998911, 0.00410777843, -0.00307511259, -0.0174037069, -0.021213986, 0.015733134, 0.00672233943, 0.00980603416, -0.00764916418, -0.010303773, 0.00950853433, 0.0154699618, 0.03634068, 0.0340751074, 0.00370729854, 0.00433376338, 0.0020839253, -0.0178499557, 0.00556094805, 0.0258595515, 0.00584700471, -0.015332655, -0.0223124456, -0.0136163132, -0.0300703105, 0.00580123579, -0.0328622274, 0.00065435539, -0.0114251161, 0.0306195412, -0.0379426, 0.006344744, 0.00318953558, -0.000145978454, -0.00397905288, -0.0367297195, 0.0128382379, 0.00743748201, -0.0220378302, -0.00636762846, 0.0325876139, 0.00718575157, -0.0126666036, 0.00105626544, 0.0162022673, 0.00905656442, 0.0143600609, 0.0260197446, 0.0129641024, 0.00758051034, -0.00958290882, 0.00971449539, 0.000820983551, -0.0142456386, -0.0234795585, -0.0172549579, 0.0074203182, -0.0147262141, -0.0159848649, -0.00915954448, -0.00477715163, 0.00484294491, -0.0128496801, 0.0135591011, -0.0101435808, -0.00962295756, -0.0225184057, 0.00700839609, 0.00271325046, 0.0193145685, 0.00775786582, 0.0285370462, 0.0112763662, 0.0217861012, -0.00864464231, 0.00448251329, -0.0211911015, 0.000282123714, 0.00148177519, 0.004136384, -0.0044310228, 0.0122203548, -0.0197493751, 0.00686536776, 0.00516046816, -0.00110489514, -0.00167915458, 0.0174494758, -0.00822699908, 0.016900247, -0.00936550554, 0.00239143637, 0.0135934278, -0.00720291492, -0.00200096867, -0.0139939077, -0.011728337, -0.00585272629, -0.00789517257, -0.0340751074, -0.00895930454, -0.00409061508, -0.0118313171, 0.00262600323, 0.0107900696, 0.0108415596, -0.0136964088, -0.00617311, 0.012792469, 0.00226414111, -0.0190971643, -0.0152640007, -0.011013194, -0.00757478923, -0.0148063097, -0.0158475582, 0.0249899384, 0.0313747302, 0.0361576043, -0.0338462628, -0.00187224301, 0.0153898662, 0.0139824655, -0.0133188134, -0.000833141, 0.0183877442, -0.00590993743, -0.0146003487, 0.0121745858, -0.00383602432, 0.0319926143, -0.0442816205, 0.0339378, 0.00111562223, -0.0175066888, 0.0269122422, 0.0135133322, 0.0169460159, -0.0208020639, -0.0190170687, -0.0195548553, 0.000800959591, -0.0167743824, -0.0259510912, -0.019440433, 0.00726584764, 0.0100577641, 0.0212483127, -0.00901651662, 0.0206876416, -0.00214971835, 0.0280335844, -0.0149550596, -0.00479145441, -0.00958290882, 0.0212711971, -0.02172889, 0.0169116892, 0.0163853448, -0.00147033297, -0.0436179712, -0.0121974703, -0.0334114581, -0.00234995829, 0.0178499557, -0.00347559247, -0.00466272887, 0.00420217728, -0.0039533074, -0.00305508869, 0.0143486187, -0.0157674607, 0.00853021909, -0.0129984301, 0.00611589849, -0.0204931237, -0.0199553352, -0.00263887574, -0.00812401902, 0.011671125, -0.0200583171, -0.0283768531, 0.0013072805, 0.00405056681, 0.00303220423, 0.00971449539, 0.00967444759, 0.0379883684, -0.0123233348, -0.0100577641, 0.0105841085, 0.0354024135, -0.000748039049, 0.00500885816, 0.0162022673, -0.00711137662, 0.0149321752, 0.00867324788, -0.00347845303, -0.0511241071, -0.0251501314, -0.010555503, 0.000748754188, 0.00442244112, -0.00698551163, 0.0192001462, -0.0276445486, 0.00301790121, 0.0204473529, 0.0209279303, -0.00116854277, 0.000298750761, 0.0255162846, -0.0326791517, 0.00204387726, -0.00289060595, -0.00382458209, -0.0189941842, -0.0306424256, -0.00281909155, 0.0128267957, -0.000160817668, 0.00493448321, -0.006344744, -0.0214886013, -0.000986896572, -0.0147033297, -0.0319926143, -0.0105783874, 0.00536070811, 0.00157045294, 0.00822127797, -0.0205045659, 0.0157903451, -0.00270466879, -0.00271325046, 0.0171519779, 0.00811257586, 0.0105040129, -0.00158189517, 0.00952569768, 0.00989757199, 0.00591565855, -0.012231797, 0.0102465618, -0.0135819856, 0.0116940094, 0.018833993, 0.00886776671, 0.0137993889, -0.00371588022, -0.0199324507, -0.00276331045, 0.0318553075, -0.025836667, -0.00368441409, -0.0158818848, -0.000797383895, 0.00931973662, -0.0199782196, -0.0321985744, -0.00341838109, 0.0204130262, 0.00486582937, 0.0194175486, -0.0347616449, 0.00324674696, -0.0010519746, 0.0179643799, -0.0198523551, -0.0176211111, 0.0385376, -0.00601863908, 0.0228044633, 0.00273470487, -3.71427122e-05, -0.00263172435, 0.0392012484, -0.0140968887, -0.00627036905, -0.0271639712, -0.0339149162, 0.0130785257, 0.00823844131, 0.00660219556, 0.00536070811, -0.0137650622, 0.0117397793, -0.00902795885, 0.0200926438, 0.0014188427, -0.0115052126, 0.000670446083, -0.012483527, -0.0216945615, -0.0184563976, 0.0271868557, -0.000307153707, 0.0253560916, 0.0046541472, -0.0024672416, -0.00744320313, 0.00558669306, -0.0040248218, -0.0215572547, -0.00804392248, -0.0160649605, 0.00103838684, -0.0318324231, 0.0335487649, -5.55129336e-05, 0.0267978199, -0.00127295358, -0.0230218675, -0.00976026431, -0.0161450561, -0.0384231769, 0.0273241643, -0.00534068421, 0.0184907243, 0.0180788022, -0.00978887, -0.0008667527, 0.0306653101, -0.00584986527, 0.0235939808, 0.00887348782, -0.00353566441, -0.0322672278, -0.00314662699, -0.0116768461, -0.0072486843, 0.013044199, -0.000886776659, 0.0136506399, 0.00489443494, -0.00111204654, 0.00934262108, 0.00108773168, 0.0338920318, 0.00663652224, -0.0178270712, 0.0042994367, 0.0122661237, 0.0335716493, 0.0181016866, 0.0111047328, -0.0296812728, 0.0126437191, 0.00304364646, -0.0181016866, -0.0127466992, -0.00847872905, 0.00440527778, 0.00715142488, 0.00211825198, -0.000344877451, 0.0101206964, 0.0071170982, -0.0225298479, 0.0178957246, 0.0124720847, -0.0198180284, -0.0033754725, -0.00365008716, -0.00486296881, 0.00299215619, 0.0273699332, 0.00666512782, 0.0454487354, 0.0163052492, -0.00164625794, -0.0283082, -0.00360145746, 0.00746608758, -0.0218890812, 0.00211253087, -0.0153097706, 0.0107900696, 0.0116654038, 0.01817034, 0.0283082, -0.012334777, -0.0253103226, 0.00617311, -0.0105955508, 0.0184563976, -0.00359573634, -0.0380799063, -0.00922247767, 0.0211338904, -0.037256062, 0.0101206964, 0.0196120683, 0.0210194681, -0.0569825545, -0.0223925412, -0.0186738, -0.00276331045, 0.014566022, -0.0274157021, 0.00380741851, 0.00659075333, -0.00211539143, 0.00861031562, -0.0114136739, 0.0131700635, 0.024921285, -0.0191658176, -0.0102351196, -0.00322958338, -0.0145431375, 0.00746036647, 0.00545796752, -0.0119571825, 0.00837002788, 0.00984036084, -0.0125407381, -0.0087876711, -0.0113621838, -0.0346929915, 0.0103323786, 0.00117998512, 0.0128725646, -0.0186738, 0.00148892659, 0.0114823272, -0.00124720845, 0.0145431375, 0.00103910198, 0.00913666, 0.000458048773, 0.0072258, 0.00203243503, 0.0348760672, -0.0265003201, 0.0112763662, -0.00513186259, -0.0159963071, 0.012231797, 0.00255878, -0.0216945615, 0.00716858823, -0.00266462099, 0.0067108972, 0.0172549579, -0.0414439365, -0.00520051597, 0.00311802118, -4.31767257e-05, 0.010864445, -0.0269808955, -0.0178499557, -0.00412494177, -0.0119686248, 0.00233994611, 0.00480575766, 0.0204702392, 0.0235482119, -0.00707705, -0.00390467793, 0.0366381779, 0.00704844436, 0.0155042894, -0.0124148736, -0.0130327567, -0.00408203341, -0.00737454928, -0.00501744, 0.00149464782, 0.0170489959, -0.0169231314, 0.0171977468, -0.016248038, -0.0137307355, 0.0198409129, -0.00564676523, 0.00701983878, -0.0154356351, 0.00206962228, 0.000919673243, 0.00576118799, -0.0146003487, 0.0219577346, -0.00344698667, 0.00257737353, 0.00287773344, 0.004542585, -0.028422622, 0.005100396, -0.000908230955, 0.00783224, 0.0242118631, 0.0191772599, 0.0189713, 0.00865036342, 0.0146346753, -0.0222781189, 0.000371874077, -0.00182218303, -0.012437758, -0.000640052545, 0.0163395759, 0.020252835, -0.012231797, 0.0201269705, -0.0345099159, 0.0107500218, -0.00750613539, 0.00257308269, -0.0239830185, 0.0218890812, 0.0217174459, 0.000471994048, 0.0145889064, -0.00484008435, -0.000863176945, -0.00799815357, -0.00172921456, 0.0119915092, 0.0120258359, -0.016900247, -0.00152039295, -0.0152525585, -0.0157560185, -0.00519193429, 0.025378976, 0.00063683436, -0.0174380336, 0.00539217424, -0.0252645537, 0.0102637252, -0.000772353902, -0.00298643508, -0.0132616023, 0.0282395463, 0.00799243245, -0.000405128201, 0.00517191039, 0.00508609321, -0.0219348501, 0.0142685231, 0.00695690606, -0.0218433123, -0.00200239895, 0.00534926588, -0.0084558446, -0.0185937043, -0.0177469756, 0.00224983832, 0.0236626342, -0.00691685826, 0.00473996438, -0.00750613539, -0.00590421632, -0.0136620821, 0.0108701661, 0.0115280971, -0.0140511198, 0.00271468074, 0.00830709469, 0.0123919891, 0.0271868557, 0.0247382093, -0.0136506399, 0.00517763151, 0.0018236133, -0.00951997656, -0.00627609063, -0.0113793472, -0.00443674391, -0.00114351278, -0.0436179712, 0.0080095958, -0.00811257586, -0.00921103545, -0.00151181116, 0.0163739026, 0.000487012032, -0.00377595238, 0.00807824917, -0.0185021665, -0.0248297472, -0.00582698081, -0.00800387468, -0.0216030236, 0.00994334091, -0.0162022673, 0.00182790414, -0.0145774642, -0.0273699332, 0.025882436, -0.0163624603, 0.00783224, 0.00511183823, 0.00597287, 0.00174065679, 0.0205388926, 0.00315520866, -0.00725440541, 0.0201727394, 0.0235710964, 0.0184335131, -0.0127695845, -0.00324960751, -7.15589413e-05, -0.0142570809, 0.00166056084, -0.0203214884, 0.0208135061, -0.0247153249, 0.0167743824, 0.00246438105, 0.000876764709, -0.0254933983, -0.0237084031, -0.00537501089, -0.0185479354, 0.015023713, -0.0175753422, 0.00170060887, -0.00395044684, 0.00783796143, -0.00596142793, 0.00419359561, -0.00116282166, 0.00862747896, 0.0258137826, -0.00650493614, -0.00403912459, -0.0117054526, -0.0333656892, -0.0036901352, 0.00829565246, 0.00649921503, 0.00538359256, -0.0110704051, 0.0127238147, -0.00605868688, -0.00175639, 0.034715876, -0.0116596827, -0.0190399531, 0.00415926846, -0.0139252543, -0.0116654038, -0.00567251025, 0.0100920908, -0.012792469, -0.00870757457, 0.00142670923, -0.00354996719, -0.00347845303, 0.0016076403, -0.00446248893, 0.00989757199, 0.0094570443, -0.00892497785, 0.0315120369, -0.00465128664, -0.0139366966, -0.00122074818, -0.00794666354, -0.0115395393, 0.00118570623, 0.00746608758, 0.0243949406, 0.00981175527, 0.00783796143, -0.0222552344, 0.0160649605, -0.0227014832, 0.00221694168, 0.00502888206, -0.0394300967, -0.0129755456, 0.00655070506, 0.00534926588, 0.0144516, -0.0125064114, -0.000868183, -0.0267749336, 0.0200125463, -0.000722293917, 0.0128725646, -0.00973165873, 0.0104639651, -0.00342410221, -0.00541791925, -0.00290204817, -0.0176325534, -0.00709421327, 0.00681959884, 0.0172549579, 0.0263630133, -0.0121631436, -0.00513758371, -0.000638622208, -0.00645916676, 0.00431373948, 0.00661363779, -0.0193832219, 0.0172320735, -0.00872473791, -0.00637907116, -0.00703128101, 0.030253388, 0.0161679406, 0.00460265717, -0.00254447688, -1.39341046e-05, 0.0190285109, -0.00381886074, 0.00850161351, 0.00946848653, -0.0131357368, -0.00117426401, -0.00919959322, -0.00154899864, 0.0231134053, -0.00147319352, -0.00640195562, 0.00640767673, -0.020859275, 0.0175867844, 0.02700378, -0.016751498, -0.00669373339, -0.00885060336, 0.00213255477, 0.0221408103, -0.00720863603, -0.000660791644, -0.0122432392, -0.00235138857, -0.0214085057, 0.0192001462, 0.023754172, 0.00242433301, -0.0109388195, 0.0189598575, -0.00745464535, -0.000350598595, -0.0152411163, 0.0274157021, 0.00301218, 0.0141655421, 0.00170060887, -0.00846156571, -0.0326562673, -0.0027261232, 0.00771209644, -0.0267062802, -0.008678969, 0.00529777538, -0.0343954936, 0.00890781451, -0.0093369, -0.0059900335, 0.0155615006, -0.00651637837, -0.0136506399, 0.0178613979, -0.000834571256, 0.00180645, 0.0277132019, -0.00629897509, -0.00396761065, 0.0254247449, 0.014211311, 0.0091252178, 0.0036129, -0.0077349809, -0.019795144, 0.0124492, 0.00606440846, -0.00962295756, -0.0125750657, -0.0186852422, -0.00669373339, 0.0217861012, 0.0146117909, 0.0222094655, -0.00467703165, -0.00124863873, -0.0167171713, 0.00192087272, 0.0150923673, 0.0454945043, -0.0102751674, 0.003984774, -0.0319010764, -0.0059900335, 0.016248038, 0.018319089, -0.00219262694, 0.00691685826, 0.0152296741, 0.0143600609, 0.00840435456, 0.00484294491, -0.0157674607, 0.00975454319, -0.00983464, -0.013959581, -0.0289489683, -0.0181245711, -0.018376302, 0.00363864494, -0.0296126194, -0.0435035489, -0.00257451297, 0.00467989221, -0.010103533, -0.0176325534, -0.0103094941, 0.0116825672, -0.00696834829, 0.00386749045, 0.0265918579, 0.0155157316, 0.0189713, -0.0113507416, 0.00494020432, -0.00973165873, -0.00142098812, 0.0224955212, -0.0233651344, -0.0159963071, 0.0257451292, 0.00391612, 0.00375878881, -0.020607546, -0.0142685231, 0.0125064114, -0.0117626637, -0.00667084893, -0.0297270417, 0.0103323786, -0.00713426154, 0.0203672573, -0.0198752396, -0.0302762724, 0.00119929388, 0.0136735244, 0.0267520491, 0.00457405113, 0.020252835, -0.00267606322, 0.00960579421, -0.00288202427, 0.0169460159, -0.00624176348, 0.0194862019, -0.0154585196, -0.0299330037, -0.00455974834, -0.0246466696, -0.0166256316, -0.0028648607, 0.00256307074, -0.000963296916, 0.0148864063, 0.00123290566, 0.00345842913, 0.00674522389, -0.0173121691, 0.0147262141, 0.0112706451, -0.00141026103, 0.0148864063, -0.0125750657, 0.00270323851, -0.0133531401, -0.00985752419, 0.014566022, -0.0121173738, 0.0111791072, -0.000366868102, 0.0026546088, 0.00308655505, -0.00326963142, 0.00517477095, -0.0178385135, 0.0271639712, -0.00655070506, -0.00661363779, -0.00922819879, -0.0127466992, 0.0120143937, 0.0202185083, -0.0248526316, 0.00993189868, -0.0197722595, 0.00796382688, 0.00127581414, 0.00683104107, -0.00377023127, -0.0167743824, -0.00504318485, 0.0183076467, 0.00921675656, 0.00504890596, 0.00988613, -0.000140704287, 0.0179186091, -0.0107385796, -0.0150809251, -0.010303773, 0.00448823441, 0.00397619233, 0.00942271762, 0.00635046512, -0.0335945338, 0.021522928, -0.0144630419, 0.000973308925, -0.00685392553, 0.00107557431, -0.00539503479, 0.0114537217, -0.0160306338, 7.99171758e-05, -0.0245780163, -0.00672233943, -0.00958290882, -0.0241889786, -0.0048172, 0.0264316667, -0.0101378597, -0.0184678398, -0.00319239614, -0.0209050458, 0.0199782196, -0.000432661211, -0.00687108887, -0.00755762588, 0.00625892682, -0.001586186, -0.00218261476, 0.00744892424, 0.0115109337, 0.0265689734, 0.00959435105, 0.0137993889, 0.0207677372, 0.00792377908, -0.0125178536, -0.00489157438, 9.72593771e-05, -0.00329251587, -0.0157445762, -0.0180444755, 0.0440527759, 0.00754046254, 0.00407917285, -0.00816978794, 0.0221522544, 0.0117111737, 0.00635046512, -0.018319089, 0.00518907374, -0.00915382337, 0.00240430911, -0.0116825672, -0.0336174183, -0.00245293882, -0.00191658188, 0.0351049155, -0.0175295733, 0.0108530018, -0.0157445762, 0.0156187117, -0.0076548853, 0.0212940816, 0.00122432387, -0.00412780233, -0.0143028498, 0.00665368559, 0.0146804452, 0.0105440607, -0.0231248476, -0.00198380533, -0.00243577524, -0.00498025212, 0.00784368254, 0.0126551613, 0.0030407859, 0.00657931063, -0.0132158333, 0.0120372782, -0.006750945, 0.0261112824, 0.0205045659, 0.0186051466, -0.00594998524, -0.00552376034, -0.000221694165, 0.04984257, 0.00819839351, 0.000991902663, -0.0104239164, -0.000918242964, -0.0235253274, -0.00515474705, -0.00399621623, -0.0146575607, 0.0026774935, -0.000558526255, 0.0104353586, -0.000385461783, -4.99258858e-05, 0.00744320313, 0.00631041732, 0.00147033297, 0.00915382337, -0.0127352569, 0.015126694, -0.0113564627, 0.0216030236, 0.00237284275, 0.00178213511, -0.0155958273, -0.00281050988, 0.018319089, -0.0110189151, -0.0253332071, -0.00578407245, 0.0134561211, -6.02507534e-05, 0.00166199112, 0.0395216346, -0.00533210253, -0.0146918874, 0.00667084893, 0.00766060641, -0.020710526, -0.0551060177, -0.00062682241, 0.0197608173, 0.028170893, -0.0107042529, 0.00683676219, 0.000590707699, -0.0276216622, 0.0142799653, 0.000736596761, -0.0099032931, 0.00280621904, 0.0165684205, -0.0151038095, 0.0173808224, -0.00716286711, -0.0232735965, 0.00797526911, 0.0140282353, -0.0024872655, 0.0189026464, 0.0177698601, -0.0147033297, -0.0151610207, -0.00586988963, -0.0155958273, 0.0261570513, 0.00126937788, 0.0282624308, -0.0224726368, -5.43061333e-06, -0.00384460599, -0.00591565855, -0.00594426412, 0.00616166741, 0.00984608196, 0.0101264175, 0.0246695541, -0.00870757457, -0.0177355334, 0.00841579679, -0.0189369731, 0.0139252543, -0.0189713, 0.0313747302, -0.0228616744, 0.0259739757, 0.0182389934, -0.00277189235, 0.00862747896, 0.000278190419, 0.00240144855, -0.00418501394, -0.00843296, 0.00615594629, 0.00257165241, -0.0187767819, -0.0218661968, 0.00857026782, -0.0148520786, -0.0261112824, 0.00616738852, 0.00802103803, 0.0108930506, 0.00845012348, -0.0148291942, 0.00334114558, -0.00715142488, -0.00392184127, 0.0185708199, 0.00770065421, 0.00151753239, -0.000345413806, -0.00168487569, -0.0184907243, -0.00929685216, -0.0031523481, -0.00900507439, 0.00160907058, 0.016545536, 0.0217975434, 0.0232621543, -0.00142384868, -0.00387321156, -0.00795810577, 0.000571398821, 0.00791233685, 0.0331826098, -0.0384002924, -0.00244006608, 0.007563347, -0.00467989221, -0.0205503348, -0.0135934278, -0.014669003, 0.00809541252, -0.027667433, 0.0149436174, 0.00432804227, -0.0062131579, 0.00866180565, 0.000737311901, 0.0253103226, 0.0042279223, -0.0206990838, -0.000411206915, -0.0126208346, -0.00217117253, -1.43251982e-05, 0.0205961037, 0.0169231314, 0.00807252806, 0.00803820137, -0.00979459099, 0.017712649, -0.0157216918, 0.0107729062, 0.0134446789, 0.0271868557, 0.00703700213, 0.00115424, -0.00674522389, 0.000261920941, -0.00833570119, 2.82146061e-07, 0.00672233943, 0.0106127141, -0.0113164149, -0.0141769843, 0.0109903095, -0.0150923673, 0.0079066148, 0.0141998688, 0.0077864714, -0.00993762, 0.00990901422, 0.00885632448, 0.00535784755, -0.00180501956, -0.00699123275, -0.00937122665, 0.0102808885, 0.0235482119, 0.0168087091, 0.018525051, -0.00261170045, -0.00615594629, -0.00172206305, 0.00254876772, 0.0110532418, 0.00549229421, 0.0143829454, 0.0106642051, 0.0145202531, -0.030047426, -0.00842723902, 0.0200697593, -0.00130656536, 0.0203672573, 0.00201527146, -0.0332741477, 0.0100749275, -0.0109044928, -0.01827332, -0.0248068627, -0.0131357368, -0.000209894322, -0.0111848284, 0.0192459151, 0.000646846369, -0.00295210816, -0.00404770626, 0.00503746374, -0.00739171263, 0.00980603416, 0.0115452604, 0.0237999409, -0.000432661211, -0.015859, -0.00854738336, 0.00597287, 0.00108058029, 0.00172492361, -0.00776930805, -0.00649349391, -0.000258524, -0.0144287143, -0.0226099454, 0.0210309103, 0.00372732268, -0.025378976, 0.0164883249, -0.0125750657, 0.00893069897, -0.013044199, 0.0153555395, -0.00242004218, 0.0153212128, 0.0103609841, 0.00749469316, -0.00593854301, 0.00344698667, -0.00538931368, -0.0111791072, -0.00268464489, -0.00437667221, -0.00683676219, -0.00657931063, -0.00585272629, -0.00830709469, -0.0155729428, -0.00593282189, -0.0232392699, -0.00976026431, -0.00522912201, 0.00690541556, -0.00638479227, -0.0143715031, -0.0171290934, 0.00527775148, 0.0175639, 0.00712854043, -0.00292207208, -0.00397905288, -0.00494592544, 0.0077349809, -0.00952569768, 0.00107271376, -0.0364093333, 0.00539789535, 0.0112248762, -0.0140854465, -0.0022913164, 0.00194375729, -0.00395902898, 0.011671125, 0.00672233943, -0.00636190735, -0.00761483703, -0.0187882241, -0.00456546945, 0.00188797619, 0.000169756953, -0.0120487204, -0.00436809, -0.011322136, -0.0008109716, 0.00823844131, -0.00127080816, 0.00607585069, 0.00913666, -0.0210309103, 0.0368441418, -0.0160191916, -0.0066193589, 0.00542650092, 0.00200096867, -0.00550087588, -0.0104353586, -0.00815262459, 0.00453400332, 0.00616166741, -0.00272469292, 0.0100634852, -0.0262028202, -0.00143529091, 0.0106184352, 0.00740887597, 0.00481147878, 0.00386749045, -0.00325532863, 0.00310657895, 0.00787800923, 0.00885060336, 0.0187424533, 0.0108758872, -0.00623604236, 0.00768921198, -0.00291206012, 0.00951997656, -0.000781650713, 0.00577549078, -0.00680815661, -0.00595570635, 0.0093483422, -0.00640767673, 0.0175410155, -0.00927396771, 0.0220836, 0.015939096, 0.01827332, -0.00669945497, 0.0128039112, -0.00551803922, 0.0236397497, -0.0107443007, -0.0179643799, 0.00139738841, -0.00235424913, -0.00434234506, 0.0165112093, -0.0124263158, -0.00563246198, 0.000603222696, -0.00601291796, -0.00596714905, 0.0187538955, 0.0218204278, 0.0027890557, 0.0111047328, -0.00962295756, -0.00198380533, 0.016900247, -0.0170718804, -0.0264087822, 0.0183648597, -0.0285599306, -0.000637907069, 0.0267749336, -0.0132387178, 0.00586416852, 0.0254018605, -0.00653926283, 0.00482864212, 0.00798671134, -0.0297270417, 0.012231797, 0.000700482051, -0.012231797, -0.0153212128, -0.0270953178, 0.00448823441, 0.0184220709, 0.00113207055, 0.00746036647, 0.00628753286, 0.00624176348, -0.00905656442, 0.00759195257, 0.0268664733, 0.00977170654, 0.0101664653, 0.00583270192, 0.025127247, -0.0206990838, -0.00260454882, 0.0123576624, 0.0177584179, 0.0059900335, 0.00158189517, 0.025584938, -0.018021591, 0.0254933983, 0.00551231811, 0.0266605113, 0.0190399531, 0.0122089125, 0.0106127141, 0.0102751674, 0.0103667052, 0.00406487, 0.0217174459, 0.0198523551, -0.0091252178, -0.00244006608, 0.0043595084, -0.00887920894, -0.00209107669, 0.00161622197, 0.00112277374, 0.00819839351, 0.00293780537, -0.0325647295, -0.000697621494, 0.0150923673, 0.00576404855, 0.00922247767, 0.0143943876, 0.00667084893, 0.00181646191, -0.00214113668, 0.0125064114, -0.00359573634, -0.0033754725, -0.0179758221, -0.00524056423, -0.00712854043, -0.0224268679, 0.0184449553, -0.00571827916, -0.0307339635, -0.00883344, -0.0114651639, -0.0153212128, 0.00867324788, -0.00994334091, 0.0031237423, -0.00194089673, 0.029589735, 0.00919959322, -0.0305508859, 0.000357750017, 0.0202757195, 0.00303220423, -0.0124034313, 0.00590993743, -0.00563532254, 0.0156873651, -0.0199324507, 0.00854738336, 0.000826704723, 0.0144516, -0.00683676219, -0.00795238465, 0.00182218303, 0.00940555427, -0.00602436, 0.00815834571, -0.000254411949, -0.0143600609, 0.0195777398, 0.0068825311, 0.00815834571, 0.00160334946, -0.000283375208, -0.0136277555, 0.0229646545, -0.00665368559, -0.00419359561, 0.0313747302, 0.000376880082, 0.0352651067, 0.0195319708, -0.0075118565, 0.0195548553, 0.00640767673, -0.0275301244, 0.00559241418, -0.00413352344, 0.022690041, -0.018833993, 0.0066594067, -0.00523484312, -0.0203100462, 0.0132158333, -0.00101478712, -0.0274385866, 0.0106127141, -0.0303678103, 0.000604295405, 0.00568395248, -0.0137307355, 0.00216831197, 0.0111562228, 0.0139138121, 0.010355263, 0.0152296741, 0.00274328655, -0.00419645617, -0.00511183823, 0.00464556552, 0.00508895377, -0.00729445321, -0.0106470408, -0.0177698601, -0.0141655421, 0.00580981746, 0.0117512215, 0.00886204559, 0.00362148159, -0.0104525229, -0.0111333383, 0.0096801687, -0.00332970335, 0.00948565, -0.0126551613, -0.0150580397, 0.00987468753, -0.00749469316, -0.0018593705, -0.0149893863, 0.00678527169, -0.00121431192, 0.0187310111, -0.00411922066, -0.00740315486, 0.00361003913, -0.0067909928, 0.00870185345, 0.0103438208, 0.0096401209, -0.0108472807, 0.0071056555, 0.00857026782, 0.000478430331, -0.00380741851, -0.00308369426, -0.00868469, -0.0176439956, 0.00980603416, -0.0188568775, 0.00362720271, 0.0114251161, -0.000100924481, 0.0118656438, -0.00590421632, 0.0125521813, -0.0159848649, 0.00601863908, 0.0146461176, -0.0101836286, 0.0173464958, -0.00437095063, -0.00426510954, -0.00459979661, -0.0356999114, -0.0021797542, -0.00297213206, -0.0158933271, 0.000596071244, 0.0151610207, 0.0257908981, -0.0154356351, 0.00636762846, -0.008678969, 0.0147834253, -0.00362720271, 0.00294352649, 0.00953714, -0.0214542747, 0.000635404082, 0.00578121189, -0.00240287883, 0.00623032125, 0.0087876711, 0.0135934278, 0.0121402591, 0.0224726368, 0.00987468753, -0.0168659203, 0.00426797, -0.0244407095, -0.00415926846, -0.0169460159, -0.0152067896, -0.0245093629, -0.00139881868, 0.0225985032, -0.00204101671, -0.00381886074, 0.0243491717, 0.00818123, 0.00377309183, 0.0185364932, 0.0306881946, 0.0125979502, -0.000561029301, 0.0239830185, -0.0099032931, 0.0042279223, -0.0107385796, 0.00953141879, -0.00504604541, -0.0152525585, -0.00337833306, -0.0114079528, 0.00903368, 0.0150122708, 0.0134790055, -0.00893642, 0.0185479354, 0.0362491421, -0.0106813684, 0.00221408112, 0.00509753544, 0.00266033, 0.00625320571, -0.00293208426, -0.000507751189, -0.00626464793, -0.00524342479, -0.00696834829, -0.0178499557, -0.00170776027, -0.00686536776, 0.00419359561, -0.00462554162, 0.00415354734, -0.0141541, -0.0158132296, -0.018376302, -0.0146232331, 0.0237084031, 0.0165112093, 0.00303792534, -0.00989757199, 0.00267463294, -0.00723152095, 9.18958103e-05, -0.00552948145, -0.00676810835, 0.0183991864, 0.0039332835, -0.019440433, -0.000538144726, -0.00268607517, -0.0175982267, 0.0111390594, 0.0177698601, -0.0264087822, -0.035631258, 0.00828993134, 0.00805536471, 0.00350991939, 0.0050803721, -0.010606993, 0.00443674391, -0.00748897204, 0.0208363906, 0.0106870895, 0.00838147, -0.0298872348, -0.0093483422, -0.0149550596, -0.028880313, 0.00411063898, 0.00488299271, -0.0194061063, -0.00475140661, -0.000835286395, -0.00747753, 0.00893069897, 0.0109845884, -0.0139710233, 0.0249441694, 0.00500027603, 0.00171777222, -0.0240516718, 0.00418501394, -0.0200125463, -0.0219462924, -0.00587561075, -0.0117168948, -0.0149665019, -0.00919959322, -0.0104811285, 0.00180645, 0.00334114558, 0.00252016215, 0.00503460318, -0.00391898071, 0.00426510954, 0.0168087091, 0.00522340089, -0.00730589544, -0.0101264175, -0.000402982783, 0.0179186091, 0.0166370738, 0.0106298774, -0.00014428, -0.00247725355, 0.00977170654, -0.0130670834, 0.0251043625, -0.00641339784, 0.0014603209, -0.0169231314, -0.0197837017, 0.0212826394, -0.0137650622, 0.0108530018, -0.0032839342, -0.008678969, 0.0114823272, -0.00837574899, -0.00400193734, 0.011219155, 0.000717287883, 0.00104982918, -0.0248526316, 0.0171634201, -0.00532638142, -0.00947992876, -0.0103953108, 0.0046741711, 0.0105612241, 0.00206962228, 0.00116782764, -0.0107786274, 0.00535212643, -0.0370272174, -0.0120601626, -0.00343840499, -0.00992617756, -0.00198952644, -0.021522928, -0.0202871617, -0.0142456386, 0.00407917285, -0.00709421327, -0.0141197732, -0.0208707172, 0.0109445406, 0.0379883684, 0.0198409129, -0.0204244684, 0.0102637252, -0.0138451587, -0.0199095663, 0.0256535914, 0.0105211763, 0.0252416693, 0.0001778023, -0.0115052126, -0.00239572721, -0.00559241418, -0.0211796593, 0.00887920894, -0.0212597549, 0.00988613, -0.0046341233, 0.00515474705, 0.00763772149, 0.00470563769, 0.00722007826, 0.00302076177, -0.000246902928, 0.0112019917, -0.0122661237, -0.0299330037, -0.0195777398, 0.0294066593, 1.13864089e-05, -0.00891925674, -0.00215114863, -0.0238228254, -0.00748325093, -0.00619599456, 0.0073802704, 0.00295782927, -0.00231849193, -0.0177927446, 0.0106241563, 0.0073802704, 0.0150465975, 0.0290633906, 0.0123004504, 0.00561529864, 0.00288774539, 0.00979459099, -0.0177584179, -0.00689969445, -0.00219977833, 0.0225527324, 0.0117168948, -0.0124949692, 0.0178499557, -0.0118084326, -0.0186051466, -0.0144516, -0.0223810989, 0.0178842824, 0.0273012798, 0.0135705434, 0.00547799142, -0.00299215619, -0.0107729062, -0.0107500218, -0.0150580397, 0.0130213145, 0.0109845884, -0.00709993439, -0.00861603674, -0.0114537217, 0.00551803922, 0.00421648, 0.00989757199, 0.00741459709, 0.00635618623, 0.0212711971, -0.00373590435, -0.0186852422, -0.00422220118, 0.00157188321, -0.0320841521, -0.0233651344, 0.00674522389, 0.00754046254, -0.0091652656, -0.0328164585, -0.00237570331, 0.00800387468, 0.00851877686, 0.00980603416, 0.0170146693, 0.0101836286, -0.00788373, -0.0113965105, -0.02223235, -0.00707132882, 0.0290633906, -0.00458835438, 0.0116825672, -0.0157674607, -0.00388751458, 0.0133073712, 0.00533782365, -0.00882199779, -0.00455116667, -0.00369585631, 0.0100348797, -0.0216487925, -0.00525772758, 0.00526630925, 0.0313518457, 0.00740315486, 0.00720291492, -0.00763772149, -0.0171519779, -0.0111962706, -0.000923248939, -0.019898124, 0.0135476589, -0.00923964102, -0.0116654038, -0.0203901418, 0.00102909, 0.0317866541, -0.0122890081, 0.0132844867, -0.00897646882, -0.0116654038, -0.008678969, -0.0135934278, 0.00111204654, -0.0104811285, 0.0149321752, 0.0211110059, -0.00638479227, -0.0133760246, -0.0136735244, 0.0246237852, -0.0140740043, 0.0111962706, 0.00257165241, 0.00540647702, -0.01827332, -0.00281623099, 0.00885632448, 0.01817034, 0.0592710078, 0.00506034819, -0.0076548853, -0.00600719685, -0.0012407722, 0.00319239614, 0.00247153244, -0.00461696, -0.00890781451, -0.00974882208, 0.0361347198, -0.00965728424, -0.0130213145, 0.00139667327, 0.0100406008, 0.0133188134, 0.00178213511, -0.0510783382, 0.00360717857, -0.00237427303, 0.00216974225, 0.0184106287, -0.000927539775, 0.0223124456, 0.00374448602, -0.00660219556, 0.0127466992, 0.00127724442, -0.00109631347, 0.0121631436, -0.0204931237, -0.00253446493, 0.00164625794, 0.000288202427, 0.00360717857, 0.0021583, -0.00473424327, -0.0018450676, -0.032541845, 0.032129921, 0.0202299505, -0.00072908774, -0.000380098238, -0.00245293882, -0.0245093629, -0.0117969904, 0.000436236907, 0.0148635209, 0.0326333828, -0.00921103545, -0.0319926143, 0.00382458209, -0.00300645898, 0.00480003655, 0.0156644806, -0.0134332366, -0.00915954448, 0.0126666036, -0.00409061508, 0.0186738, 0.00444532558, 0.00672233943, 0.0118084326]
|
28 Jun, 2021
|
CharArrayWriter size() method in Java with examples
28 Jun, 2021
The size() method of the CharArrayWriter class in Java is used to get the current size of the buffer. Syntax:
public int size()
Parameters: This method does not accept any parameter.Return Value: This method returns an integer value which signifies the current size of the buffer. Below program illustrate the above method: Program 1:
Java
// Java program to illustrate
// the size() method
import java.io.*;
public class GFG {
public static void main(String[] args)
throws IOException
{
// Initializing the character array
char[] geek = { 'G', 'E', 'E', 'K', 'S' };
// Initializing the CharArrayWriter
CharArrayWriter char_array1
= new CharArrayWriter();
for (int c = 72; c < 77; c++) {
// Use of write(int char)
// Writer int value to the Writer
char_array1.write(c);
}
// Use of size() method
System.out.println("\nSize of char_array1 : "
+ char_array1.size());
}
}
Output:
Size of char_array1 : 5
Program 2:
Java
// Java program to illustrate
// the size() method
import java.io.*;
public class GFG {
public static void main(String[] args)
throws IOException
{
// Initializing the character array
char[] geek
= { 'G', 'O', 'P', 'A', 'L', 'L' };
// Initializing the CharArrayWriter
CharArrayWriter char_array1
= new CharArrayWriter();
for (int c = 72; c < 78; c++) {
// Use of write(int char)
// Writer int value to the Writer
char_array1.write(c);
}
// Use of size() method
System.out.println("\nSize of char_array1 : "
+ char_array1.size());
}
}
Output:
Size of char_array1 : 6
Reference: https://docs.oracle.com/javase/10/docs/api/java/io/CharArrayWriter.html#size()
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java/Split a List into Two Halves in Java/Randomly Select Items from a List in Java/Get first and last elements from ArrayList in Java/Java Program to Find the Length/Size of an ArrayList/Why Array.length() gives error when used in Java?/CharArrayWriter size() method in Java with examples
|
https://www.geeksforgeeks.org/chararraywriter-size-method-in-java-with-examples/?ref=ml_lbp
|
Pandas
|
CharArrayWriter size() method in Java with examples
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Randomly Select Items from a List in Java, Array of Structures vs Array within a Structure in C++, CharArrayWriter size() method in Java with examples, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, Size of an ArrayList, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Java Program to Find the Length, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Initializing a List in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Why Array.length() gives error when used in Java?, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Get first and last elements from ArrayList in Java, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[-0.00903221779, 0.0227132142, -0.00824680738, 0.0277016312, 0.0187967774, 0.0164087061, 0.0320744552, 0.0141904522, -0.0500539802, -0.00833171606, 0.0270648114, 0.0288054496, -0.00798677281, 0.00738710165, 0.00134926045, 0.01688632, -0.0455537923, 0.00398807973, 0.0248784, 0.0368081443, 0.0275742672, 0.00924449, -0.0294847246, 0.0295059513, 0.00842193235, 0.0349825956, -0.0050865924, -0.00345739699, -0.0419663787, -0.0482708886, -0.00200465345, 0.0187967774, -5.87482209e-05, -0.0132670645, -0.0281898584, -0.015697591, 0.0237321239, 0.0158674084, 0.00550848525, -0.0146574527, 0.024220353, -0.00291610067, 0.0469123386, 0.00533070648, -0.00174063887, 0.0565070808, -0.0368505977, -0.000330349896, -0.00602855394, -0.00516884821, 0.00371212466, 0.0210574847, -0.0044418131, -0.00922326278, 0.043643333, 0.0237108972, -0.0193274599, 0.00372539158, -0.0176611152, -0.0504360721, 0.0282959957, -0.0443650633, 0.000438144809, 0.0121950852, -0.0206541661, -0.030779589, -0.0260034464, 0.0211423934, 0.0358529165, 0.0196989365, 0.00821496639, 0.00987600256, -0.0353434607, 0.0150926122, -0.0519219823, -0.0238382611, 0.00148458453, 0.0110488115, -0.00375457923, 0.0456811562, -0.0485680699, 0.00118673895, -0.017979525, 0.0332631841, -0.0366595536, -0.0105552766, -0.0142116789, -0.00404645456, -0.0117386989, 0.0490350686, 0.00961066131, 0.0381879173, 0.0312041361, -0.0157718863, -0.0345155932, 0.0396101475, -0.00768959057, 0.0199005958, -0.0150395446, 0.0192850046, 0.054808896, -0.00805576146, 0.0113035385, -0.013638542, -0.0275530387, 0.00169022405, -0.019104572, -0.0427517891, 0.0185420495, 0.00335656735, 0.0228193514, 0.0138083603, -0.0111124935, 0.042709332, -0.0198793691, 0.0130123366, -0.0171516612, -0.0205692574, 0.00169420417, 0.0562948063, 0.0184359122, 0.0519219823, 0.0052272235, 0.010438526, -0.0111761754, 0.0105871176, 0.00125042081, 0.00735526066, 0.00407564221, -0.0417328775, -0.00113698747, -0.0400771461, -0.036213778, -0.0441103354, -0.0312465895, -0.0265765842, -0.000289222, 0.0120252669, 0.00739240833, 0.0306946803, -0.0162813421, -0.0299941786, 0.0216093939, -0.0162495, -0.00780103402, 0.00162388873, 0.0132564511, 0.0211848486, -0.00575259933, 0.0210787114, 0.0114309024, 0.0125665637, -0.00195821864, 0.0276591759, -0.0253666267, 0.00228458853, 0.0118766762, 0.0238807164, 0.0128106773, 0.010677333, -0.00416320469, -0.00311510661, -0.0132033825, -0.0128955869, -0.0203039162, -0.00847500097, -0.00385806221, -0.00905344449, -0.0443650633, 0.0218853485, -0.00569422403, 0.035768006, 0.0119297439, 0.000164179917, -0.0173639338, -0.0165148415, 0.0250694454, 0.00797615945, -0.0215881672, 0.0125028817, -0.0193168465, 0.0127469953, 0.0195291191, 0.0333268642, -0.00329553871, 0.0101997191, 0.00527233118, -0.0137871336, 0.014731748, -0.0139357243, -0.0124179721, -0.00127828168, -0.00293732807, -0.0256213546, 0.000300830696, 1.4790704e-05, -0.011483971, -0.0468698852, -0.00396950543, 0.030652225, -0.0235835332, -0.0105393557, -0.0358529165, 0.0090003768, -0.0083529437, 0.0509455279, -0.0118023809, -2.22223334e-05, 0.0265129022, 0.0246448983, -0.020972576, -0.0141479978, -0.0220127124, 5.04148447e-05, 0.00374927232, 0.017597435, -0.0426244251, 0.0132352235, 0.041074831, -0.0303974971, 0.00306734536, -0.0225221682, 0.0364260525, -0.0277653132, -0.0481859781, -0.0480161607, -0.0367232338, 0.00987600256, 0.01900905, -0.00355822663, -0.0137234516, 0.0271709487, -0.0197626185, -0.00525110401, 0.0376147814, -0.0228193514, 0.020070415, -0.0188604593, -0.0131078595, 0.0411385149, -0.0532805286, 0.0358316861, 0.0125877904, -0.0203357562, 0.0225009415, -0.0227981228, -0.028529495, -0.0241142157, -0.0141055426, -0.0253666267, -0.015602068, 0.0213971213, 0.0355557315, -0.00885709189, -0.0496294349, 0.0447471552, 0.0049724956, -0.00531213265, 0.02959086, 0.0330296829, 0.0473368838, 0.00640533864, -0.0142010655, 0.00022719847, -0.0228830334, 0.00620367937, 0.0298880432, -0.0140737016, -0.0346217304, 0.00493800128, 0.00897914916, -0.0286356322, 0.0211211666, -0.0234137159, -0.0399073288, 0.0140843159, -0.0420300588, 0.0124710407, 0.0417328775, 0.0151138399, 0.0218428951, 0.0152942715, 0.0165360682, 0.0116962437, -0.0400559194, -0.000557548366, -0.0486954339, 0.0364048257, -0.0032292034, -0.00784348883, -0.0117386989, -0.0558278076, 0.0472095236, -0.000169403822, 0.016016, -0.0218004398, -0.0259822197, 0.0264492203, 0.0375086442, -0.0384426452, -0.0152624305, -0.0470821597, -0.00437017111, -0.0232863519, -0.0106561063, 0.00538642798, 0.0269586742, -0.0144557934, 0.0132776778, 0.00190780382, -0.00798677281, -0.0471246131, 0.00177645986, 0.0181281175, -0.0259397645, 0.00964780897, 0.0767154694, 0.0131290872, -0.0601157211, -0.00456121657, -0.0110063562, 0.014922794, 0.0050706719, 0.0328386389, -0.00380764739, 0.00525110401, 0.00986538921, -0.0190621186, 0.0504785255, -0.0465302467, -0.0171092059, 0.0497992523, 0.00929225143, -0.0203994382, 0.028593177, -0.0292299967, -0.0145831574, -0.0143072018, 0.0167695694, 0.0265765842, -0.0156551357, 0.0204949602, -0.0104491403, 0.0278502218, 0.00589057663, 0.0354708247, 0.0030328508, -0.0210468713, 0.00633635, 0.0055350191, 0.000464347249, 0.021290984, 0.0519219823, 0.01479543, 0.00288691325, -0.0300578605, 0.00958412699, 0.00309653278, -0.0156551357, -0.00905875117, -0.0308008157, 0.00139171502, -0.0233288053, -0.0171198193, 0.0303550437, -0.105711967, -0.00157480058, -0.0139994062, 0.00814597774, -0.0113035385, 0.00813005678, 0.0539598055, -0.0138932699, 0.00528825168, 0.0418390147, 0.00316552166, 0.0104650604, -0.0135217924, 0.0208133701, 0.0192743912, 0.0026627, 0.0125134951, -0.022033941, -0.000950585178, -0.0446197912, 0.00210946333, -0.0254939906, 0.0105605833, 0.0267888568, 0.0245175343, -0.0469123386, -0.00473368866, 0.0151350666, -0.0198899824, 0.0171198193, 0.0212591439, -0.00333268661, 0.00971149094, 0.00249951496, -0.0129168136, 0.00327165797, 0.0177141838, -0.00142488268, -0.0346005037, 0.000309620111, 0.00594364479, -0.0278502218, -0.0167058874, 0.0100935828, -0.00926041137, 0.0139569519, 0.0496294349, -0.0204737335, 0.00368028367, 0.0129911099, -0.0320532285, 0.0129698822, 0.0149015663, -0.028593177, 0.00728627155, -0.0147105213, -0.00919142179, -0.00878279656, -0.0038182612, -0.0294422694, -0.0101625714, -0.01904089, 0.0541296229, -0.0212379172, -0.0388247371, -0.0358953699, 0.0368930511, -0.00246502063, 0.00738179451, 0.0286993142, -0.0686915517, -0.0351099595, 0.0088040242, -0.0417753309, -0.0137128374, -0.0229254868, 0.043452289, 0.00911712646, -0.0188710727, -0.0250482168, 0.0283596776, -0.0179264583, -0.00479737064, 0.0372114629, 0.00955759361, -0.0196140278, -0.0139357243, 0.0199005958, 0.0127894497, 0.0170561373, -0.0313527249, 0.0214077346, -0.00696255546, -0.0190196633, 0.0138932699, -0.0243901704, 0.00613999739, -0.0296969973, 0.0294210427, 0.0196777098, 0.021036258, 0.058247719, -0.0053811213, 0.00104876142, 0.0322655, -0.038761057, -0.0148803396, 0.00662291842, -0.0492473431, -0.0127151543, -0.0429852903, 0.0165997501, 0.02113178, -0.00511047337, -0.000106716951, -0.00186136912, 0.0333268642, -0.0685641915, 0.00938777439, -0.00523518352, -0.0172153432, -0.0414993763, -0.0146256117, -0.00969557092, -0.00373335183, -0.0314588621, 0.00963719562, 0.0216624625, -0.0421998799, -0.00335922069, 0.0485680699, -0.00935593341, -2.3155173e-05, 0.000768163, 0.0264492203, -0.0330084562, -0.00513700722, 0.00749323796, 0.0288903601, 0.0102740144, -0.00152173231, -0.0221400764, 0.0340698212, -0.0469972491, -0.000306800852, -0.000631512259, 0.0409899205, -0.008008, 0.0032504308, -0.0289540421, -0.017979525, 0.0246661268, -0.0306946803, 0.0111655612, 0.0305036344, -0.0189135261, 0.027531812, -0.0142541341, -0.0164723862, 0.0204525068, -0.0196458697, -0.00511843339, 0.00581097417, -0.0320107713, 0.0212803707, -0.0206753928, -0.00185871567, -0.00814597774, 0.0138614289, -0.014731748, -0.0247298088, -0.0120464945, -0.0380393267, -0.0218004398, 0.0148484986, -0.0015840875, 0.0386761464, 0.0222886689, -0.0039509316, -0.00782756787, -0.019168254, -0.0245599896, -0.00593303097, 0.00352903921, 0.00698908931, 0.0128849726, 0.0114202891, 0.0553183518, -0.00724381721, 0.0225858502, 0.0389096476, 0.0268525388, -0.0342184119, 0.00607100874, 0.0126514724, -0.0268100835, 0.0258973092, 0.0155596128, 0.00803984143, 0.0255152173, -0.0337301828, 0.0108471522, 0.0160690676, -0.0247934908, 0.0190196633, -0.0179901384, -0.00610284973, 0.0260034464, -0.0109002199, 0.00946737733, -0.00811413676, 0.00449222792, 0.00376784639, 0.0324777737, 0.0360227339, -0.00371743133, -0.0388247371, 0.0227132142, -0.0209513474, 0.00376253948, 0.00135589403, -0.0101041961, 0.0108471522, -0.0407351926, 0.00504148426, 0.0153367268, 0.0122269262, 0.0027966972, -0.00557216723, -0.0347915478, -0.000604314788, -0.0209513474, 0.0197944604, -0.0121314032, -0.0376996882, 0.0176611152, -0.00298774289, 0.0120783355, 0.0101731848, -0.00875626225, 0.00223417371, 0.011675017, 0.020845212, -0.0327961817, 0.0112080164, -0.00686172582, -0.0402469672, 0.0373176, -0.0128637459, -0.0179052297, 0.00233765668, -0.0175019111, -0.028656859, -0.0255789, 0.00401461357, -0.00361660169, 0.00821496639, -0.00354495971, 0.0117493123, 0.0216836892, -0.0361925513, 0.00624082703, -0.0365958698, 0.0109745152, 0.00642656581, 0.00228458853, -0.0180856623, -0.0156445224, 0.013829588, -0.0149758626, 0.016981842, -0.00173135195, 0.00525906449, -0.0057738265, 0.0379544161, -0.00759937428, -0.00773735205, -0.0160902962, 0.0235198513, -0.00202986086, 0.00718544191, -0.0389096476, -0.00272770831, -0.00425076764, -0.0102103325, 0.0113566071, -0.00898445584, -0.0271921754, 0.00205772161, 0.0114415167, 0.0205374155, 0.0464028828, 0.0185738895, -0.000529687561, 0.0192107093, -0.0128212906, 0.00520068919, -0.0163662508, -0.0103430031, 0.00405706838, 0.00499106944, -0.0258973092, -0.0160266142, 0.0183616169, -0.00803984143, -0.00796023849, -0.0160266142, -0.00869788695, -0.0198899824, -0.0020537416, -0.00853868295, 0.00949391164, 0.0129804956, -0.0109639019, 0.0237533525, 0.0278714485, 0.0103960717, -0.0220763944, 0.00124179723, 0.00173400529, -0.00807168148, -0.0193168465, 0.0367656872, 0.0132564511, -0.0315013193, -0.0149758626, -0.000800667331, 0.00257779052, -0.00359802786, 0.0228618048, 0.012704541, 0.0045957109, 0.00153897947, 0.0164617728, -0.0181493443, -0.00652739545, 0.0444924273, -0.0206010975, -0.00104876142, -0.00877749, 0.0100458208, -0.0128743593, 0.0264916737, -0.00196750555, 0.0220763944, 0.00146866404, -0.0110912658, -0.00316021475, 0.0186057314, 0.0105393557, -0.00625144085, 0.0154959308, -0.0155171584, 0.00435159728, -0.00567830354, 0.0265553556, -0.0497143418, 0.00893669482, -0.00629389519, 0.005243144, 0.000594696146, 0.000360864156, -0.00593303097, 0.00243848632, 0.0101784915, 0.000351577211, -0.00485839881, -0.0187330954, 0.0100192865, -0.0299941786, 0.0222037584, -0.0309494082, 0.00207496877, -0.0392917395, -0.00345474365, -0.00200863346, -0.0072597377, -0.0224584863, -0.0302276798, -0.00629920233, -0.037572328, -0.00608692924, 0.0110806525, 0.00263616559, 0.046190612, -0.0296120867, -0.0025021683, 0.018106889, 0.00449488126, -0.0107357083, -0.0241354443, 0.0121314032, -0.00817251205, -0.0228830334, 0.0520493463, -0.0207603015, 0.0259185378, -0.0109426742, -0.00192637776, 0.0309706349, -0.00887301285, -0.0143602705, 0.00869258, 0.00507863238, -0.0402894206, -0.0148060434, -0.00704215793, 0.00823088642, 0.00872972794, 0.00332472636, 7.36736692e-05, -0.0204949602, -0.0103058554, 0.0236472152, -0.00856521633, 0.0146149984, 0.00301958388, -0.001857389, 0.015920477, 0.0239019431, 0.00387928961, 0.017979525, -0.0363199152, 0.016143363, 0.00936124101, 0.0103695374, -0.0162919555, 0.00880933087, -0.010629572, 0.0314800888, -0.0184040722, 0.000727698498, -0.0178946164, 0.00310449302, -0.00532805314, 0.0219914857, 0.00534928031, -0.0034627039, 0.0270860381, -0.0271284934, 0.00129818229, -0.0143390428, -0.00240133866, -0.000654729607, 0.0189347547, 0.0092763314, -0.00245440681, 0.00614530407, -0.0194866639, -0.0195821878, 0.0450867899, -0.0170242973, 0.0010733055, 0.0240293071, 0.00310714636, 0.0173745472, 0.0301427711, 0.041945152, -0.00682988483, -0.0398436487, 0.0123330634, 0.0413932391, 0.0112610841, -0.0097221043, 0.00201128703, -0.0173214786, -0.0183403902, 0.0101148095, 0.0151775219, -0.0139994062, 0.0267676283, -0.0173214786, 0.0267676283, -0.0214820299, 0.0249845348, -0.0183191616, 0.0181599576, -0.0258973092, -0.0182342529, -0.0397162847, 0.00139702193, -0.00338575477, -0.00642656581, 0.0163874775, -0.0140843159, -0.0295484066, -0.0177884791, 0.00867135357, 0.04014083, 0.0279775858, 0.00851214863, 0.00883055758, -0.0355769582, -0.00986008253, -0.00516884821, 0.00230846927, -0.0320107713, 0.00628328184, -0.014890953, 0.0364685059, -0.0200385731, -0.0386761464, -0.0165679101, 0.0172896385, 0.0237108972, 0.0293361321, 0.0280412678, 0.00727565819, -0.0203251429, -0.00640533864, 0.0269586742, -0.0149015663, -0.00381560763, 0.00802922715, 0.00669190707, 0.02322267, -0.0124285854, -0.0399285555, 0.00960004795, -0.000679937075, 0.00564115588, -0.00745078316, -0.0330296829, 0.0107993903, -0.0155277718, 0.000821231282, -0.00437282445, 0.0257487185, -0.0520493463, -0.0039933864, 0.00630450901, 0.0330933668, 0.00212405692, -0.0315013193, -0.0153473401, 0.00978578627, -0.017820321, -0.0406927392, -0.00424811384, -0.0193380732, 0.00474164868, 0.0161327496, 0.00477083633, -0.00482390448, -0.0059860996, 0.000672308495, -0.0133625874, -0.0204100516, -0.0304399524, 0.00450549508, 0.0181281175, -0.0368930511, 0.0344519131, -0.00646902062, 0.00506536523, -0.0156126814, 0.00952575263, 0.00469123386, -0.00198342605, 0.0259822197, -0.0260459, -0.0412658751, -0.0617289953, 0.00662822556, -0.0403106473, -8.26600262e-06, 0.00117015513, 0.00985477585, -0.0218216665, -0.0079071708, 0.00213599741, -0.0604553595, -0.0133838141, -0.0408413298, -0.00557216723, -0.0043436368, 0.00433567679, 0.0142222932, -0.0186694134, -0.0457236096, 0.00477348967, -0.00861297827, 0.015602068, 0.00803453382, 0.0408625565, -0.00767897675, 0.0199855063, 0.0334966853, 0.00465939287, -0.0109851295, -0.00915427413, -0.00398011925, -0.000798013934, 0.00172604504, 0.010709174, -0.0105765034, -0.00934532, -0.0172471832, -0.009472684, 0.0111124935, -0.00269056065, -0.0188498441, -0.00177380652, -0.00520599587, -0.0151881352, -0.0229679421, -0.00418708567, 0.0248996262, -0.0118023809, -0.0104756737, -0.00269586756, -0.0532380752, -0.0287417676, -0.00216385815, -0.0245599896, 0.015824955, -0.000758876093, -0.018881686, 0.0145619297, -0.0118448352, -0.0225433949, 0.0520068929, 0.0100670485, 0.020972576, 0.0164723862, 0.0161858182, -0.0455537923, -0.00990784355, -0.0113778347, 0.00629389519, 0.00752507895, -0.0120571079, 0.0036988575, -0.0268737655, -0.0337089561, -0.0356830955, -0.00207629567, 0.0109745152, -0.00501229707, 0.0195078906, -0.000526702439, 0.0194442086, 0.058247719, -0.015602068, -0.00640003197, 0.00792839751, -0.00529355882, -0.00673966855, -0.0132458368, -0.0103536174, 0.0323928632, -0.0377846, -0.0352373235, 0.0172365699, 0.0260883551, -0.00427730149, -0.0248571709, -0.0227132142, 0.00512108672, 0.00202986086, 0.00952044502, 0.00281792437, 0.00251941546, 0.0239443984, 0.0194654372, 0.0331145935, -0.00742424931, 0.00471246103, 0.0140949292, 0.00692010066, 0.00107927574, 0.0134474961, -0.00629389519, -0.0238382611, -0.0181281175, -0.0236472152, -0.00242256606, -0.0164511595, 0.0106561063, 0.0178946164, -0.00617183838, 0.00470715435, 0.010772856, -0.00399869308, 0.0427730158, -0.019847529, 0.00676089618, 0.0114309024, 0.0213122126, 0.00250349496, -0.0384638719, -0.0182024129, 0.0142647475, 0.0164617728, 0.0141479978, 0.0122269262, -0.00255258312, 0.0150607713, -0.0256850366, -0.015793113, 0.00862359162, -0.0192637779, 0.0104969013, -0.0140737016, 0.0116644027, -0.016854478, -0.00649024779, -0.00737648783, -0.0114627434, 0.00520599587, -0.0119721992, -0.00925510377, 0.0092763314, -0.0129062, -0.037147779, 0.0123012224, -0.0172577966, -0.00944084302, -0.0034414765, 0.00314694759, -0.0122056995, 0.00332207303, -0.00729688536, -0.00241593248, -0.0131290872, -0.0102315601, -0.00587465614, -0.0055774739, 0.0270435847, 0.0138720423, -0.00464877952, -0.014763589, 0.0394403301, -0.00974333193, 0.0234561693, -0.0374237336, 0.019911211, -0.00849622767, -0.0115582664, 0.00353434589, 0.017884003, 0.0142222932, -0.00566768972, 0.0194654372, 0.0115688797, -0.0140524749, 0.0165891368, 0.0033645276, 0.00282323128, -0.0244750809, -0.000246767391, -0.0135748601, -0.00708991941, 0.0229042601, -0.00900568347, 0.0113884481, -0.00299570314, 0.0152518172, -0.0147211347, -0.00423750049, -0.0102209467, 0.0079071708, 0.00241327891, -0.00159602787, -0.0102103325, -0.00590119045, -0.00359802786, 5.17415501e-05, -0.0123649044, 0.0227556694, -0.0120252669, -0.0142435199, 0.00999806, -0.00943553634, -0.0100988895, -0.00431710295, 0.0289328136, -0.0346005037, -0.0102156391, -0.000286071067, -0.020070415, -0.000441793236, -0.0308008157, 0.00460897805, 0.0213122126, 0.00620367937, -0.0209831893, -0.00932409242, 0.0088252509, -0.0270223562, -0.0264492203, -0.0235198513, 0.0140206339, 0.00137446786, 0.0123649044, 0.0218428951, 0.00479737064, 0.000604978122, -0.0103217764, 0.0384638719, 0.0189241413, -0.00274362881, -0.0248359442, 0.00466735335, 0.0164511595, -0.00512108672, 0.0180644356, -0.00135788403, -0.039270509, 0.00350515847, -0.0145619297, -0.0286356322, -0.000163184886, -0.00985477585, -0.014763589, 0.0148803396, 0.0020126137, -0.012577177, 0.00613469072, 0.0045983647, -0.0111867888, 0.000861032458, 0.00103615772, 0.00580566749, 0.00903752446, -0.0171728879, 0.000470317435, 0.00566768972, -0.0115688797, -0.00601794058, -0.0206435528, 0.0064743273, -0.0262157191, 0.0118236076, 0.0284233578, -0.0127788363, -0.01904089, -0.00813005678, -0.00601263344, -0.00700501, -0.00535724079, -0.00195291184, -0.0148378843, 0.00074826245, -0.0222674403, -0.0156126814, -0.00512639387, -0.0091967294, -0.0112716975, -0.0169712286, -0.00810883, 0.00883586518, 0.00233765668, -0.00764182908, 0.0293573607, -0.0133095188, -0.0326051377, -0.00608162209, -0.00540500181, 0.000455060304, -0.00889954716, -0.0320107713, -0.009472684, -0.0100033665, 0.0313527249, -0.00983885489, 0.0275105853, -0.0174276158, 0.0236472152, -0.0235835332, 0.0105128214, -0.000270648103, -0.00905344449, 0.00653800927, 0.0282959957, -0.0230103973, -0.00474960916, 0.00506801857, 0.0122163128, -0.0268313102, 0.0164617728, 0.0104332194, -0.0146256117, -0.0279775858, 0.00610284973, 0.00737118116, 0.00840070471, 0.000778776652, -0.0069254078, -0.00312572042, -0.0170242973, 0.00708461227, 0.000231178594, -0.000186899764, -0.0444924273, -0.0197626185, -0.00870319456, -0.0208982807, -0.0155277718, 0.0104915947, 2.34764843e-06, 0.000640135841, 0.0074720108, 0.0130229499, -0.00746139698, 0.0100564351, -0.00878810324, -0.0135111781, 0.000763519551, -0.0247510355, 0.0178415477, 0.0149121806, -0.0153685678, -0.00322389673, -0.01056589, -0.0103695374, -0.0179158431, -0.0214714166, -0.0261944924, -0.0161752049, 0.024284035, 0.0227768961, 0.00279139029, 0.0149440216, 0.00659107743, -0.010454447, 0.0245812163, -0.00439405162, 0.0388884172, -0.00710583944, -0.0254939906, -0.0383577347, -0.00934532, 0.0086872736, -0.00077678659, -0.0166209787, -0.00355822663, -0.0105128214, -0.00516354153, -0.00676620286, -0.0124816541, 0.00195158517, -0.00539173512, 0.00533070648, 0.000867666036, -0.00507332524, -0.0194017552, 0.0310979988, -0.00836886466, 0.00976986624, -0.00174063887, -0.00223682704, 0.0191151872, 0.00560931489, -0.0111443345, -0.0102103325, -0.0197201651, -0.00268525374, 0.0088252509, -0.00266668, -0.0109108333, 0.00998213887, -0.0603279956, 0.00115423463, 0.0274469033, 0.0169500019, 0.0130123366, 0.0231802147, 0.0156763624, -0.0172684118, -0.00126037106, -0.0215244852, -0.00858644396, 0.0107569359, -0.0335603654, 0.0103111621, 0.00902691, -0.000194694163, -0.000637814112, 0.0472095236, 0.00164644269, -0.00899506919, 0.0186375715, -0.00963719562, -0.0194760505, -0.00233898335, -0.0122056995, 0.00467000669, 0.0166422054, 0.0162601136, 0.0020736421, 0.00206170185, 0.0166422054, 0.00363252219, -0.00678743, 0.0195715725, 3.20897125e-05, 0.0069254078, -0.00855991, -0.0420088321, -0.0059118038, -0.00723320339, 0.0193380732, 0.0253878552, 0.0191364139, 0.0294847246, 0.0149015663, -0.0130760185, 0.0190302767, 0.022479713, 0.00342290266, -0.00451876223, -0.0289115869, -0.0166422054, -0.012545336, -0.00504413806, -0.0182660948, -0.00301693054, 0.0113990614, 0.00914896745, 0.00173002516, 0.00602855394, 0.00444977358, -0.0075940676, 0.00657515693, 0.00963188894, 0.00851214863, 0.0369991884, -0.000425541075, 0.000759539427, 0.0256425813, -0.0203675963, -0.0189029127, 0.00982824154, -0.00724381721, -0.00496188225, -0.0363836, -0.0023482705, 0.020972576, 0.00146335724, -9.10452291e-05, -0.0157082044, -0.0100245941, -0.016854478, -0.00590649713, -0.021004416, -0.00844316, -0.0148378843, -0.0215775538, -0.0334754586, 0.00419239234, -0.0134899514, 0.0521767102, -0.0091383541, 0.0172790252, -0.0165997501, -0.012577177, -0.0252392627, 0.0125241084, -0.026406765, -0.0040491079, 0.0067290552, 0.00371212466, -0.000119403579, -0.0108630722, -0.007397715, -0.00963188894, -0.0078063407, -0.00743486267, 0.00833702367, 0.000137811629, -0.0150501579, -0.0328598656, 0.0124498131, 0.0142116789, 0.0231165327, 0.0115051987, 0.0121207898, -0.00658577075, -0.00163980911, -0.0104066851, 0.0168438647, 0.0153579535, -0.0133625874, -0.0193805285, -0.0101837981, 0.00871380791, 0.0111549478, 0.00763652241, -0.0164830014, 0.0172047298, 0.000212604704, -9.0133115e-05, 0.00473368866, -0.00698908931, 0.0256425813, 0.0139569519, -0.0440254249, -0.00624082703, -0.0158674084, 0.0354920514, 0.0222886689, 0.0283384491, -0.0240293071, -0.00249553472, -0.00546072377, -0.0190302767, 0.0131290872, 0.0143814981, 0.0183722302, 0.0234561693, -0.0183722302, -0.0230103973, -0.00587465614, 0.0164617728, 0.011675017, 0.0298455879, 0.0309069529, 0.0173957739, 0.0302276798, -0.00957351364, -0.014763589, 0.0172790252, 0.0110275839, -0.0107463226, 0.0185951181, 0.0189029127, -0.00537581462, -0.0267676283, 0.0160902962, 0.00136252749, -0.0208558254, 0.012640859, -0.0142222932, 0.00569953071, 0.000548261451, 0.00265739299, 0.00774265872, 0.00232173619, -0.00893138815, -0.00355026638, -0.0288479049, 0.00214130408, 0.0157188177, -0.0280200392, -0.0214608032, 0.013829588, -0.0141055426, 0.0208770521, -0.0122693814, 0.0113459937, -0.0621110871, -0.0275530387, -0.0434098355, -0.0173533205, 0.032499, -0.0111231068, -0.0110912658, 0.00690418, -0.0124285854, 0.0214608032, 0.00583220134, 0.0033433002, 0.0130229499, -0.0187755488, -0.0436008796, 0.0198369138, -0.00773204491, 0.00840070471, 0.007397715, -0.00431975629, 0.0074136355, -0.00924979709, 0.000275623257, 0.000226203454, -0.017947685, -0.00330349896, -0.00543418946, -0.0171410479, 0.00912243314, -0.00823088642, -0.00414463086, -0.00576851936, 0.0041074832, 0.00816189777, -0.0044975346, 0.00996621884, 0.00889424, 0.0113353794, -0.0193911418, 0.0146680661, -0.0194548238, 0.0116644027, -0.00503617758, -0.0178415477, 0.00401992071, 0.0174700711, -0.0225646235, -0.00207496877, -0.0217367578, -0.0054394966, 0.0172259565, -0.0302489065, 0.00409421604, 0.00394827826, 0.00826272741, 0.00867666, 0.00270780781, 0.0235623065, -0.0076683634, -0.0153897945, 0.00299835647, -0.00401461357, -0.00282853818, 0.0275105853, 0.000971812464, -0.0244750809, 0.00249951496, 0.0203039162, 0.0219065771, -0.00202190061, -0.00388459652, 0.0238170344, -0.00570483785, -0.00558278058, 0.00580566749, 0.0228193514, -0.00824680738, -0.00492208079, -0.0378058255, -0.0104279127, -0.00762590859, 0.0138720423, -0.00356618688, -0.000723718375, 0.00118342217, 0.00492738793, 0.0184889808, -0.000965842279, 0.0121314032, -0.0326263644, 0.00511843339, -0.0184889808, -0.00908528548, -0.0128743593, 0.0197095517, 0.00639472483, 0.00970087759, 0.0143602705, 0.0126514724, -0.00514231436, 0.0130229499, 0.031522546, -0.0220763944, 0.000583419169, -0.0253241733, -0.0246236715, -0.0139994062, 0.0326688178, 0.00930817239, -0.0237108972, 0.00912243314, -0.0107993903, 0.0161858182, -0.00644248631, 0.00870850123, 0.00910651311, 0.0171622746, 0.00783287454, -0.0112186298, 0.00439139828, 0.0105393557, -0.000133582755, 0.0126939276, -0.00347066415, 0.00161990861, 0.0173320938, -0.00417912519, -0.0117811533, -0.00385540887, 0.00221957988, -0.0263855383, 0.0203463696, 0.0137765193, -0.0182130262, 0.0123330634, -0.00590119045, -0.00871911459, -0.00288691325, 0.00134926045, -0.011675017, 0.00364313577, 0.0036219086, 0.00465939287, 0.00960535463, 0.00248492113, -0.0127894497, 0.00850153528, 0.0108418446, 0.00351311872, -0.0186163448, 0.00616122456, 0.00247298088, -0.0111655612, -0.0116644027, 0.00117678859, 0.0231802147, 0.00420300616, -0.00030862508, -0.00433833, -0.0145937707, 0.00339371501, -0.00480267731, 0.0188286174, 0.00114362093, 0.00570483785, 0.00791247748, 0.0074136355, 0.0296120867, 0.0213334393, 0.00964250229, -0.00886239856, -0.00260167127, 0.00850684196, -0.00101957389, 0.000643452629, 0.00322389673, -0.0175868198, -0.0158461817, 0.00715890806, -0.0068670325, -0.00460101804, -0.0114202891, -0.0102740144, 0.00351842539, 0.00262289867, 0.004696541, -0.00953636598, -0.00990253687, 0.00991315, -0.00526171783, -0.0201765522, 0.00928163808, -0.026279401, 0.014763589, -0.0123118358, -0.0166422054, 0.0124498131, 0.0356194153, 0.00632573618, -0.0176611152, 0.00354495971, -0.00397215923, 0.0199324377, 0.0217579864, -0.0091595808, 0.00323185697, 0.0197732318, 0.0141161568, -0.0102634011, -0.0153579535, -0.00358476071, -0.0261944924, 0.0178627763, -0.0121526308, 0.0126939276, -0.0172259565, -0.00159072096, -0.010581811, 0.0198581424, -0.0308008157, -0.00903221779, -0.00620367937, -0.0171835013, -0.0191151872, 0.00887301285, 0.000681927078, -0.00660699792, 0.0091595808, -0.022033941, 0.00258575077, -3.08873859e-05, 0.00277812337, 0.0269374475, 0.0044975346, -0.0142965885, 0.00539438846, -0.00979640055, -0.0202826876, -0.00993437786, 0.0118023809, -0.0035237323, -0.0198050737, 0.00261361175, 0.0033433002, 0.0115051987, -0.00299835647, 0.00783287454, -0.00810352247, 0.0114627434, -0.0121420175, -0.0365109593, -0.00659638457, 0.0270011295, -0.010518129, -0.00904283114, -0.0137446783, -0.0185102075, -0.000371146132, 0.0052272235, -0.0033645276, -0.0133413598, 0.0180219803, -0.0139994062, 0.0184465256, -0.0014965249, 0.0027025009, -0.0093347067, -0.00779042, 0.012640859, 0.003425556, 0.0019396448, 0.00252737571, 0.0133625874, 0.0059277243, 0.0110275839, -0.00789655652, 0.00757814711, 0.00848030765, 0.00751446513, -0.0163768642, -0.00174063887, 0.00702623744, 0.00169022405, 0.00865543261, -0.0254515354, 0.00400134642, -0.0276591759, 0.019783847, -0.00349719822, 0.0155596128, -0.0195185058, -0.000748925784, -0.00308591919, 0.00771612441, 0.0177990943, -0.00408625603, -0.0122481538, 0.027340766, 0.0100086732, 0.0188923, -0.0235623065, -0.00770020392, 0.00906936545, 0.0139463376, -0.0134581104, -0.00838478468, -0.0130866319, 0.000963852217, -0.0110488115, -0.00370681775, -0.00649555493, 0.0263643097, 0.018722482, -0.0017592127, 0.0108418446, -7.06885794e-06, 0.00677681668, 0.00272770831, -0.0222886689, -0.00465143286, 0.000236817097, 0.0145088611, -0.00977517292, -0.00159204775, 0.0178733896, -0.0270223562, -0.0204843469, 0.00672374805, -0.0255152173, 0.00118010538, 0.0155596128, -0.01056589, -0.0353222303, 0.0075940676, 0.000344943663, 0.00425342098, -0.00937716104, -0.00185208221, 0.000257381034, -0.0026627, -0.00926041137, 0.00993437786, 0.00274893572, 0.00635757716, -0.000319736253, 0.0106879473, -0.0260246731, 0.0255152173, -0.00261361175, 0.00210813642, 0.00663353223, -0.00038772996, -0.00810352247, -0.00928694475, -0.0108577656, -0.00838478468, 0.0226283055, -0.0137128374, -0.0032292034, -0.00569953071, -0.00770551106, -0.000720401586, -0.00326900464, -0.00718013523, -0.0067290552, -0.0247934908, 0.0010162571, -0.00200067321, -0.00148458453, 0.00316286809, 0.0132882921, 0.00127828168, -0.00198873295, 0.0402257405, 0.0126620866, 0.012736382, -0.0111655612, -0.00951513834, -0.0142647475, 0.00630981568, 0.000705807819, -0.0103854584, -0.00912774, -0.000357879064, -0.022161305, 0.00545011, 0.0335391387, 0.00510516623, 0.00962658226, -0.00347066415, -0.0182767082, -0.0396101475, 0.0113353794, 0.00398011925, 0.0090003768, -0.00425607432, -0.0176717304, 0.00328227179, 0.0192425493, 0.0337938666, 0.000794033811, -0.000748925784, 0.026406765, 0.0075940676, 0.0162707269, 0.0094143087, -0.0151456809, 0.0199961197, -0.00569422403, -0.0210574847, -0.0420300588, 0.0284870397, -0.0216412358, 0.0183510035, 0.00224478729, -0.0321593657, -0.00148989132, 0.0130866319, -0.0107197883, -0.0149121806, -0.0109851295, -0.00421361951, 0.021970259, 0.0145088611, 0.0304611791, 0.0185526628, 0.0268100835, -0.0152199762, 0.000814597763, -0.0144027248, -0.0182873216, -0.00488758646, 0.00687764632, -0.0276379492, 0.0090216035, 0.0302276798, -8.75626283e-05, -0.0163131822, -0.0107993903, -0.0287205409, -0.00270515447, 0.00891546719, 0.0112186298, 0.0102050258, -0.000281427609, -0.000293202116, -5.489248e-05, 0.0155702271, 0.0132564511, 0.00979109388, 0.00734995352, 0.000336651749, 0.00794431847, -0.00698378263, 0.0171941146, 0.00108789932, 0.0279139038, -0.0199642777, -0.00734995352, -0.00729157869, -0.0103217764, 0.00697847595, -0.0069254078, 0.0141479978, -0.0194017552, -0.00174594566, -0.00679804385, 0.00641064532, 0.00795493182, 0.0165360682, 0.0192637779, -0.0176505018, -0.00531743933, 0.00584281515, -0.016143363, -0.00621429272, -0.00113300735, -0.00872972794, -0.00423750049, 0.000137065363, 0.00627266802, -9.85079532e-05, -0.0260671284, -0.0155277718, -0.000566503673, -0.00616122456, 0.0321169086, 0.00875095557, -0.0125028817, 0.0119085172, 0.0238382611, -0.00147131749, -0.0024092989, 0.0217155311, 0.0304611791, 0.0218428951, -0.0113778347, 0.0204631202, -0.0187118668, 0.0115370387, -0.020845212, -0.00843785331, 0.00242787274, -0.0308432709, -0.0199536644, 0.0115901073, -0.00549787143, -0.00255523669, -0.00251410878, 0.0138932699, 0.00828926172, 0.0012716481, -0.0163662508, -0.00949391164, 0.00480798399, 0.0357043222, 0.00500964327, 0.0115051987, -0.0333905481, -0.00515823439, -0.0215987805, -0.0018268748, 0.00534397364, 0.00569422403, -0.0179370716, 0.0046779667, -0.0076524429, 0.00437282445, -0.0335815921, -0.0135854743, -0.0150501579, 0.0191788673, 0.0270648114, 0.0171410479, -0.0209938027, -0.0221400764, -0.0198793691, -0.0151456809, 0.0186375715, 0.000405640487, 0.0100882761, -0.0105128214, 0.0320956819, -0.00733403303, 0.00158010738, 0.00983354822, 0.022161305, 0.00461163139, -0.0144770211, 0.00318940217, 0.00294528832, -0.000407298881, 0.00855991, 0.00858644396, 0.00356088, 0.0173639338, 0.00235888408, 0.00872972794, 0.014699907, 0.0167377293, -0.00169022405, -0.0243689436, -0.00862359162, 0.0161645915, 0.00249951496, -0.0123861311, -0.00421627285, 0.0207921434, 0.0106348787, -0.00592241762, -0.0180007536, -0.00177645986, 0.0125877904, 0.0206010975, -0.0165042281, -0.0228405781, -0.00229918235, 0.00798677281, -0.0193062313, 0.0240080804, -0.0201234836, 0.0171941146, -0.00675028237, -0.00214130408, 0.0330933668, 0.00301162363, -0.00799738616, 0.0080982158, -0.00327696488, -0.0101360371, -0.000253732607, 0.00576851936, 0.000776123255, -0.0164617728, -0.00154428626, 0.0186269581, -0.0193699133, 0.0202614609, -0.0104756737, 0.0312890448, -0.0137552926, -0.000443119963, -0.0105605833, 0.0373388268, 0.00532009266, -0.00920203608, -0.00698908931, 0.0264279917, -0.0233924873, 0.0108312313, -0.015824955, 0.0140524749, 0.0170561373, -0.00323981722, 0.00842193235, 0.00658046408, -0.0189665947, 0.00525641069, -0.0213228259, -0.00791247748, 0.0256213546, -0.0102209467, -0.00713768043, -0.0382728279, 0.0149652483, 0.015761273, -0.0123330634, -0.00320532266, -0.00129486551, 0.0278289933, -0.00135987415, -0.0153048858, 0.00659638457, 0.00877218321, -0.000287563627, -0.0172259565, 0.0370841, 0.0110488115, -0.0159629323, 0.0208345987, -0.0107144816, -0.0341547318, -0.0291238595, 0.01056589, 0.0134793371, -0.00291610067, -0.00755692, 0.0161964316, 0.0143602705, -0.0256425813, 0.0119509716, -0.00962658226, -0.000652076211, -0.00490085362, 0.0128955869, -0.0177460257, 0.0287417676, -0.0164087061, -0.0279139038, 0.0124179721, -0.0035025049, 0.00179901393, 0.00426403433, 0.0153791811, 0.0117917666, 0.0122481538, 0.0188710727, -0.0072013624, -0.00318144192, 0.0091967294, 0.0177778658, -0.0168757066, -0.0132776778, 0.00561992824, -0.0196352545, 0.000744945661, 0.0252604913, -0.0021718184, 0.00113698747, 0.0345580503, -0.00438874494, -0.0046381657, 0.00456652371, -0.0175125245, 0.00392439775, -0.0260671284, 0.0161221363, -0.00896322913, 0.0415418334, -0.0159947723, 0.00338310143, -0.0135005647, 0.026406765, 0.0119615849, -0.00788594317, 0.0063204295, 0.00253002928, -0.0183191616, 0.000241626403, 0.00691479398, -0.00207894901, -0.0124604264, -0.014827271, -0.00399603974, -0.0312678181, -0.00292406091, 0.0086872736, -0.0112186298, 0.00250349496, 0.0392280556, -0.00115290785, 0.0258548558, 0.00178044, 0.0111549478, -0.00633104332, -0.00287629967, -0.0190196633, -0.00661761174, 3.96457199e-06, 0.0150183169, 0.00111111661, -0.0101201171, 0.00567830354, 0.00801861379, 0.00810883, -0.010629572, 0.0256638099, -0.0146786803, -0.0133095188, 0.0251331273, -0.0142116789, -0.00254727644, 0.0099768322, 0.0055350191, -0.0221188497, 0.0120146535, -0.0177884791, -0.00353434589, -0.0251543541, 0.0191470273, 0.00659638457, -0.0206753928, 0.0375935547, -0.00146468391, -0.00469123386, -0.0250482168, -0.0225433949, -0.00567299686, -0.00721197622, -0.0153685678, -1.71849952e-05, 0.0281898584, -0.0209195074, 0.0184783675, -0.0142647475, -0.0152518172, 0.00808229577, 0.0109002199, 0.00701562362, -0.00451876223, 0.0219278038, -0.00306734536, -0.00120265933, -0.00047960438, -0.0121950852, -0.00731811253, 0.0010162571, 0.00538642798, -0.0055350191, -0.0122693814, 0.00781164737, -0.00728627155, 0.0162388869, 0.0104969013, -0.00438078446, -0.00455856323, -0.0105871176, 0.0160690676, 0.0145619297, -0.0153473401, -0.00873503555, -0.0140100196, 0.0219914857, 0.00749854464, 0.0079018632, 0.00883055758, -0.00996091217, -0.00845377333, -0.0168438647, 0.0185738895, 0.0130229499, -0.00841662567, 0.0126727, 0.0128849726, 0.00998744648, 0.0247085802, -0.00568891736, 0.00350515847, 0.0218428951, 0.00114096748, 0.00612938358, -0.00869258, 0.000487896294, 0.0166422054, -0.014699907, -0.00943553634, -0.00562523538, 0.0044418131, -0.0384214185, -0.00236684433, -0.0170985926, 0.00547133712, 0.0041313637, -0.00992907118, 0.0379756466, 0.00556155341, 0.0173427071, 0.0100352075, 0.0327961817, 0.0420088321, -0.00528559834, -0.00162123528, 0.00898445584, -0.0129698822, -0.00909059215, 0.00155357318, -0.0247722622, 0.00387663627, -0.00515823439, -0.0176292751, 0.000736985414, -0.0094143087, -0.0306309983, 0.000491876388, -0.0191151872, 0.0256001279, -0.0141373836, -0.00850153528, -0.00963188894, 0.0208876655, -0.00456652371, 0.00121658982, 0.00752507895, 0.0164193194, -0.00638411148, -0.00854399, -0.0122375404, 0.000737648807, 0.00725443056, 0.00296651549, 0.0026826004, -0.00935593341, -0.00239603175, 0.000666006643, -0.0143708838, -0.00659638457, 0.0132033825, 0.00905875117, -0.0423484705, 0.00158143404, 0.0145513164, -0.0181175023, 0.0152199762, -0.0123224491, 0.00114826439, 0.015697591, 0.00263218558, 0.0155596128, -0.00655392976, -0.00155091984, -0.0144239524, -0.0165148415, 0.0280200392, 0.00268525374, -0.00679273717, -0.0100192865, -0.00618775887, 0.0233075786, -0.0155277718, -0.00912243314, -0.0109214475, -0.0153579535, -0.0144027248, -0.000437149778, -0.0103005487, -0.00342024909, 0.0113884481, -0.000364512583, 0.0106508, 0.00775327254, 0.0128106773, 0.0138932699, -0.00451345509, -0.00407033553, 0.00807168148, -0.0346217304, -0.00628858851, 0.0307583623, 0.00317082833, -0.0101519581, -0.0207709167, 0.00291344733, 0.00599140627, 0.0140100196, -0.00159735454, -0.00208160235, -0.0206223242, 0.00723320339, -0.00166501652, 0.00543418946, 0.0121314032, 0.00154959317, 0.00210415642, 0.0082945684, -0.00375192589, -0.0138720423, 0.0250057634, 0.009472684, -0.0225221682, -0.00298508955, 0.0133732008, 0.00537316129, 0.0170030706, 0.0196246412, 0.0177884791, -0.0292087682, 0.000655724667, 0.0156763624, -0.00382356788, -0.00220763939, 0.00747731747, 0.0303550437, 0.0259822197, -0.0104597537, -0.00401992071, 0.000604978122, 0.00392174441, 0.0111337202, -0.00965311565, -0.00758876093, -0.0110275839, 0.00342024909, -0.00564646255, -0.0187543221, 0.0335603654, -0.018043207, 0.0103058554, -0.00245838705, 0.00871911459, 0.0142859751, -0.0249633081, 0.00536785414, -0.0192000959, -0.0078487955, -0.00749323796, 0.0104332194, 0.00293467473, 0.00990253687, -0.0419876054, 0.0161009096, 0.0450018831, 0.00807168148, -0.00447896076, 0.0322655, 0.00165174948, 0.0170667507, 0.0135217924, 0.000470317435, 0.00855991, 0.00273832213, 0.00595425861, -0.00752507895, -0.0386124626, 0.0141692245, -0.00285507226, -0.0176717304, 0.00607631542, 0.00679273717, 0.00785410218, -0.00866073929, 0.0232014414, 0.00554032624, -0.00406237505, -0.0108683789, -0.00554032624, 0.00267066015, 0.0166209787, -0.0103854584, -0.0147211347, 0.00392705109, 0.0269162208, -0.0095629, 0.0344519131, -0.000649422815, -0.00961066131, -0.0269586742, -0.00183748838, 0.00594364479, 0.0142753609, 0.00361925527, -0.00495392177, 0.00485309213, 0.00376519281, 0.0041313637, 0.0117280846, -0.00589588331, -0.000363185885, -0.00186667591, -0.00910651311, 0.00316021475, 0.00783287454, 0.00269984757, 0.022097623, -0.0328386389, -0.00740302168, -0.00677681668, -0.00289222, 0.0168757066, -0.00339106168, -0.00307265203, 0.000366834342, 0.00682988483, -0.00930286571, 0.00198342605, -0.020908894, 0.00751446513, -0.00211742357, -0.00683519151, -0.00594364479, 0.00731280586, 0.0158674084, -0.00806637481, -0.018106889, -0.021195462, 0.00222223322, -0.010709174, 0.0113035385, 0.000859705789, -0.0101519581, -0.0045399894, 0.00959474128, 0.00689356681, -0.0139569519, -0.0244963076, 0.026406765, 0.00276485621, 0.00819373876, -0.00544480328, -0.0293573607, 0.00422423333, -0.0230740774, -0.0074560903, 0.00789655652, 0.00883055758, -0.00919142179, 0.00414993754, -0.00178442011, 0.0130123366, 0.0140843159, 0.00145009009, 0.0242415797, -0.011643176, -0.000597017875, 0.0117068579, 0.00707930559, -0.0219065771, -0.00394297158, 0.010597731, 0.0187330954, -0.00381030096, 0.00244379323, 0.020070415, -0.00336187403, 0.0107993903, 0.016695274, -0.0131715415, 0.000361195824, 0.00698908931, -0.0280624945, -0.00929225143, 0.0111337202, -0.00905875117, -0.0059277243, 0.00888893288, 0.00987069588, -0.00917019509, 0.00579505367, -0.00707399892, -0.0187118668, -0.0069094873, -0.00495392177, 0.00772673823, -0.0111018792, -0.0151456809, -0.0272983108, -0.00136916107, 0.0183828436, -0.0103270831, 0.00434894348, -0.00740302168, 0.0087456489, -0.0118979029, 0.0197095517, 0.00811944343, -0.0174382292, -0.00960535463, -0.00320532266, -0.00513170054, 0.0223948043, 0.00222223322, -0.00663883891, -0.000763519551, -0.0192107093, -0.00320532266, 0.0148166576, 0.00324512389, -0.00309387944, -0.0243689436, 0.00240797224, 0.0205374155, 0.0163874775, -0.00496188225, -0.0120040402, -0.0171728879, -0.00323185697, 0.00127231143, -9.51082693e-05, -0.00686172582, -0.0284021311, 0.0084325457, -0.00537581462, -0.00541826896, 0.00391909061, 0.00496453559, -0.0115264254, 0.00694663497, -0.00101360376, -0.00339106168, 0.00214793766, -0.00542622944, -0.00635227049, -0.0121314032, -0.0288266782, 0.0197626185, 0.0111974021, -0.0178627763, 0.00794431847, -0.0126302456, -0.00207496877, -0.0133519731, -0.00667068, 0.0159417037, 0.0155489994, 0.000811944366, 0.00830518268, 0.00316286809, 0.00509189907, -0.00513966056, -0.0013983486, 0.0106348787, 0.00646371394, -0.00256187, 0.0358741432, 0.00451876223, -0.027531812, 0.0276379492, -0.00421627285, -0.0173214786, -0.0119615849, 0.0257487185, -0.0269799028, -0.0183934588, 0.0131821549, 0.00736587401, -0.000129188033, -0.0117917666, -0.00264279917, 0.0201447103, 0.00490616029, 0.0231802147, 0.00012288618, 0.013797747, -0.0124498131, -0.0339212306, -0.0203039162, -0.00698378263, 0.00819904543, -0.00729157869, -0.00765774958, -0.0223311223, -0.00992907118, 0.00257646386, 0.0240717623, 0.00872442126, 0.0263855383, -8.90551673e-05, 0.046190612, 0.0241778977, 0.00935062673, 0.017820321, -0.0116007207, -0.00359006762, -0.0115582664, -0.0048504388, 0.00162919553, -0.0110594248, 0.0206223242, 0.0032663513, 0.0160584543, 0.0172365699, -0.00866073929, -0.00582689466, 0.0194335952, 0.0152093628, -0.0223311223, -0.0166209787, 0.00648494111, 0.00725443056, 0.000484247837, -0.0237745792, 0.00560400821, -0.0144133391, 0.00235490385, 0.00293732807, -0.0149015663, -0.0116644027, -0.0172896385, 0.00781164737, 0.00286303251, 0.00137446786, -0.0091595808, -0.0175762065, -0.0348127782, -0.0112716975, 0.0161009096, 0.0262369458, 0.00471776817, -0.0123861311, 0.00626736134, -0.0264916737, 0.00252737571, 2.444042e-05, 0.00255258312, 0.0191576406, -0.00509720622, 0.00418708567, -0.00165970973, 0.0128531316, -0.00877749, 0.0329235457, -0.000530019228, -0.0199005958, -0.00769489724, -0.00222223322, -0.00572075834, 0.0198899824, 0.010358924, 0.00276485621, -0.0180219803, 0.00548725761, 0.00308857253, 0.0140312472, -0.00652739545, -0.0248784, -0.00887301285, 0.00678743, -0.0271072667, -0.016822638, -0.00828395505, -0.0099237645, 0.0143921115, -0.00369620416, -0.00414197752, -0.00688295299, 0.00828395505, 0.0182448663, 0.0324777737, -0.0169712286, 0.00558808772, -0.00627266802, -0.00901099, -0.0405653752, 0.0154747041, 0.0199324377, 0.000534662686, -0.00661761174, 0.013765906, 0.00196883245, -0.0120146535, -0.00424280716, -0.0131821549, 0.0134368828, -0.00412871037, -0.00488228, 0.011643176, 0.0113884481, 0.00391909061, -0.0132564511, -0.00550848525, 0.0395676941, -0.00124511402, 0.00283649843, 0.00515027437, 0.00786471553, -0.00772143155, 0.00556686, -0.00153632602, -0.00819904543, 0.0131290872, -0.0339212306, -0.00331676612, 0.0317985, 0.00467531336, -0.00432771631, -0.0212697573, -0.00652208878, 0.0104013784, -0.00282057794, -0.0232438967, 0.0174063891, 0.0234773979, 0.00442854594, -0.0434098355, 0.0226070769, -0.000997683266, 0.0241142157, 0.00836355705, 0.00512374, 0.00628328184, -0.0219914857, -0.0193593, -0.00935062673, 0.0131715415, -0.0167695694, -0.00520599587, -0.000932011288, 0.0041313637, 0.00949391164, 0.00529621216, 0.00728096487, -0.0195185058, -0.0027807767, 0.00622490654, -0.0121632442, 0.00917550176, 0.00473899534, 0.0287629962, 0.00160266133, -0.00423484715, -0.00642125914, -0.0085492963, -0.0245175343, 0.0114945844, 0.00522457, 0.0107250949, -0.0234561693, 0.000764182885, 0.001455397, -0.0180750489, -0.0244750809, 0.0062620542, 0.0092763314, -0.00550848525, 0.0254515354, 0.00945145637, -0.00277016312, -0.00175788603, 0.00681396434, -0.00186004245, -0.0244963076, -0.00207894901, -0.0139569519, -0.00884647854, -0.00110846327, 0.0170773659, 0.00620367937, 0.0103323897, -0.00351311872, -0.0176717304, 0.020006733, 0.00571014453, 0.0236259885, 0.0159735456, -0.0086660469, 0.00426668767, -0.00291079399, 0.00443650642, 0.00299570314, 0.0182024129, 0.000727035105, -0.0179158431, 0.00628328184, 0.00330084562, 0.0134687237, 0.000328525668, -0.00846969429, -0.00249686162, 0.0122799948, 0.0175868198, 0.0130441776, 0.0126196314, 0.0213971213, 0.0147848167, -0.00191841752, -0.00298508955, 0.0269374475, 0.0161327496, 2.7010914e-05, -0.00243715965, -0.0105605833, 0.00755692, -0.00733934, 0.00214528432, -0.00238011125, -0.0255364459, -0.0211848486, -0.0131397005, 0.00370151084, 0.00796023849, 0.00468327384, 0.00279404386, 0.00970618427, -0.0057738265, -0.000128690517, -0.00709522609, 0.0165572967, -0.006851112, 0.0108471522, -0.00623552036, -0.00291610067, 0.00216385815, -0.015793113, 0.0168438647, -0.00615061121, -0.00170747121, -0.00969557092, 0.00824680738, 0.0132882921, 0.0184465256, -0.0227981228, -0.00991315, -0.0204206649, 0.00220631273, 0.00304081105, 0.0117705399, -0.0197413918, -0.0222674403, -0.0226283055, 0.0173427071, 0.0125559494, -0.000408957247, -0.00509455288, -0.0159947723, -0.00801330712, -0.0152305895, -0.00684049819, 0.021970259, 0.0372963697, -0.015920477, -0.0069094873, 0.00206170185, -0.0061665317, -0.00894730818, -0.0112823118, -0.0149758626, 0.0121207898, -0.00400134642, 0.02113178, 0.00713768043, 0.0144345658, 0.00476818299, -0.0133201322, 0.0152836582, -0.0256638099, -0.00439670496, -0.000389388326, 0.0322018191, -0.00680335052, -0.00498045608, 0.0146680661, 0.0199642777, 0.00339371501, -0.0147848167, -0.0289115869, 0.0190515053, -0.0153048858, 0.0157294311, -0.0055774739, 0.00485574547, -0.00629389519, -0.014699907, 0.00851214863, 0.0214077346, 0.0356194153, 0.0106667196, -0.00458775088, -0.0102103325, -0.000697184238, -0.00284445868, 0.0100086732, 0.00684049819, 0.0156126814, 0.0102050258, 0.0299304966, -0.0346005037, -0.00235357718, -0.0103217764, 0.0299092699, 0.00437547779, -0.00231775618, -0.0257699452, -0.0139144966, -0.0151669076, 0.0101148095, 5.19903078e-05, 0.000102819751, 0.0309069529, 0.0180644356, -0.00360333477, 0.0113884481, 0.0142965885, -0.00447896076, -0.00938246772, -0.0377846, 0.00427199481, 0.0075516128, 0.00515027437, 0.0330721363, 0.0101572648, 0.0113459937, -0.0364472792, -0.00123118353, 0.0042056595, 0.016695274, -0.0143921115, -0.00620367937, 0.0240717623, -0.00378907355, 0.00844846666, 0.000430184562, -0.00524579734, 0.00935062673, -0.0335391387, -0.0203039162, 0.00344412983, 0.00593833812, 0.00664414605, 0.00697316881, -0.011483971, -0.00707930559, 0.0340061411, -0.000482589472, -0.0190302767, -0.0231802147, -0.0201447103, 0.0031522545]
|
05 Jun, 2020
|
CharArrayWriter append() method in Java with Examples
05 Jun, 2020
The append() method of CharArrayWriter class in Java is of three types:
The append(char) method of CharArrayWriter class in Java is used to append the specified character to the writer. This append() method appends one character at a time to the CharArrayWriter and returns this CharArrayWriter.Syntax:
public CharArrayWriter append(char c)
Specified By: This method is specified by the append() method of Appendable interface.Overrides: This method overrides the append() method of Writer class.Parameters: This method accepts one parameter c that represents the 16-bit character that is to be appended.Return value: This method returns CharArrayWriter after appending the character into it.Exceptions: This method does not throw any exception.Below program illustrates append(char) method in CharArrayWriter class in IO package:Program:
Java
// Java program to illustrate
// CharArrayWriter append(char) method
import java.io.*;
public class GFG {
public static void main(String[] args)
{
// Create charArrayWriter
CharArrayWriter charArrayWriter
= new CharArrayWriter();
// Append the character
charArrayWriter.append('G');
charArrayWriter.append('E');
charArrayWriter.append('E');
charArrayWriter.append('K');
charArrayWriter.append('S');
// print the charArrayWriter
System.out.println(
charArrayWriter.toString());
}
}
Output:
GEEKS
The append(CharSequence) method of CharArrayWriter class in Java is used to append the specified character sequence to the writer. This append() method appends a character sequence at a time to the CharArrayWriter and returns this CharArrayWriter.Syntax:
public CharArrayWriter append(CharSequence csq)
Specified By: This method is specified by the append() method of Appendable interface.Overrides: This method overrides the append() method of Writer class.Parameters: This method accepts one parameter csq that represents the character sequence that is to be appended. If the character sequence is null then the 4 characters ‘null’ is appended to the CharArrayWriter.Return value: This method returns CharArrayWriter after appending the character sequence into it.Exceptions: This method does not throw any exception.Below program illustrates append(CharSequence) method in CharArrayWriter class in IO package:Program:
Java
// Java program to illustrate
// CharArrayWriter append(CharSequence) method
import java.io.*;
public class GFG {
public static void main(String[] args)
{
// Create charArrayWriter
CharArrayWriter charArrayWriter
= new CharArrayWriter();
// Create character sequence
CharSequence csq1 = "GEEKS";
CharSequence csq2 = "FOR";
// Append character sequences
// to the charArrayWriter
charArrayWriter.append(csq1);
charArrayWriter.append(csq2);
charArrayWriter.append(csq1);
// print the charArrayWriter
System.out.println(
charArrayWriter.toString());
}
}
Output:
GEEKSFORGEEKS
The append(CharSequence, int, int) method of CharArrayWriter class in Java is used to append the subsequence of a specified character sequence to the writer. This append() method appends a portion of character sequence to the CharArrayWriter and returns this CharArrayWriter.Syntax:
public CharArrayWriter append(CharSequence csq,
int start,
int end)
Specified By: This method is specified by the append() method of Appendable interface.Overrides: This method overrides the append() method of Writer class.Parameters: This method accepts three parameters:
csq – It represents the character sequence whose subsequence is to be appended.
start – It represents the starting index for the subsequence.
end – It represents the index of character following the end for the subsequence.
Return value: This method returns CharArrayWriter after appending the subsequence of the given character sequence into it.Exceptions: This method throws IndexOutOfBoundsException if the start or the end are negative or start is greater than end or end is greater than the length of given character sequence.Below program illustrates append(CharSequence, int, int) method in CharArrayWriter class in IO package:Program:
Java
// Java program to illustrate
// CharArrayWriter
// append(CharSequence, int, int) method
import java.io.*;
public class GFG {
public static void main(String[] args)
{
// Create charArrayWriter
CharArrayWriter charArrayWriter
= new CharArrayWriter();
// Create character sequence
CharSequence csq = "GEEKSFORGEEKS";
// Append subsequence of character
// sequence to the charArrayWriter
charArrayWriter.append(csq, 8, 13);
// print the charArrayWriter
System.out.println(
charArrayWriter.toString());
}
}
Output:
GEEKS
References: 1. https://docs.oracle.com/javase/10/docs/api/java/io/CharArrayWriter.html#append(char) 2. https://docs.oracle.com/javase/10/docs/api/java/io/CharArrayWriter.html#append(java.lang.CharSequence) 3. https://docs.oracle.com/javase/10/docs/api/java/io/CharArrayWriter.html#append(java.lang.CharSequence, int, int)
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java/Split a List into Two Halves in Java/Randomly Select Items from a List in Java/Get first and last elements from ArrayList in Java/Java Program to Find the Length/Size of an ArrayList/Why Array.length() gives error when used in Java?/CharArrayWriter size() method in Java with examples/CharArrayWriter append() method in Java with Examples
|
https://www.geeksforgeeks.org/chararraywriter-append-method-in-java-with-examples/?ref=ml_lbp
|
Pandas
|
CharArrayWriter append() method in Java with Examples
|
memcpy() in C, array::fill() and array::swap() in C++ STL, C++, Python | Pandas Series.to_sparse(), Calculating the Product of List Lengths in a Dictionary – Python, Randomly Select Items from a List in Java, Array of Structures vs Array within a Structure in C++, CharArrayWriter size() method in Java with examples, CharArrayWriter append() method in Java with Examples, Sort given array to descending-lowest-ascending form, Python calendar module | setfirstweekday() method, Merging or Concatenating two Dictionaries in Python, Find Maximum and Minimum Element in a Set in C++ STL, Dictionaries in Python, Python | Calendar Module, C++ Map of Functions, Sort elements by frequency | Set 4 (Efficient approach using hash), Sum of all even occurring element in an array, Python | Pandas Series.var, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Pandas, std::function in C++, Sort an array in descending order based on the sum of its occurrence, Python | Pandas Series.sum(), How to Get Current Date and Time using Python, Passing Pointers to Functions In C++, Comparison of Exception Handling in C++ and Java, Print with your own font using Python !!, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, Competitive Programming – A Complete Guide, Size of an ArrayList, set cbegin() and cend() function in C++ STL, How to pass an array by value in C ?, When do we pass arguments by pointer?, Python | Pandas Series.to_string(), Foreach in C++ and Java, Dictionary items in value range in Python, Python | Ways to change keys in dictionary, Difference between std::set vs std::vector in C++ STL, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Sorting a 2D Array according to values in any given column in Java, Pandas Tutorial, How to Delete an Element from the Set in C++?, Python – Dictionary values String Length Summation, Java Program to Find the Length, Frequency of an element in an array, STD::array in C++, How Does Default Virtual Behavior Differ in C++ and Java?, Templates in C++ vs Generics in Java, Find the Kth occurrence of an element in a sorted Array, Initializing a List in Java, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, How to traverse a C++ set in reverse direction, Virtual Functions and Runtime Polymorphism in C++, Why Array.length() gives error when used in Java?, Floating Point Operations & Associativity in C, C++ and Java, C++ Programming Examples, Hashing in Data Structure, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Commonly Asked C++ Interview Questions | Set 2, Get first and last elements from ArrayList in Java, Python – Access Dictionary items, Python | Pandas Series.sort_values(), Counting Inversions using Set in C++ STL, Python Program to Swap dictionary item’s position
|
GeeksforGeeks
|
[0.00236029597, 0.0217422433, -0.011768573, 0.0451357961, -0.00117640861, 0.0120437909, 0.0103147021, -0.0018652021, -0.0408758968, -0.00145461829, 0.0299150292, 0.00256670965, 0.00806509238, -0.00581548177, -0.040660508, 0.0264209546, -0.00689840596, 0.022448238, 0.0122651625, 0.0342467278, 0.0134856952, 0.00557317026, -0.0335527, 0.021598652, 0.0168361794, 0.0438434668, -0.00746080838, 0.0078856023, -0.0358023085, -0.0262534302, 0.00390989427, 0.0259901788, 0.046164874, -0.0326193497, -0.023716636, 0.00670096697, 0.0262055658, -0.0309201758, -0.000568759511, -0.0284073129, 0.00898647495, -0.0272346437, 0.0338877477, 0.00896254275, -0.0319731832, 0.0620796718, -0.00651549362, 0.00844202191, 0.00681464374, 0.011194204, 0.0293167289, 0.0283115841, 0.00448725466, -0.0196601581, 0.0457340963, 0.0379083268, -0.00368254026, 0.00279705529, -0.02577479, -0.0236687716, 0.0167524163, -0.0502572507, 0.00515435962, -0.0373339579, -4.88923761e-05, -0.0246021207, -0.0112779662, -0.0154241892, 0.0077958568, -0.00208208617, -0.00627019024, 0.0145387044, -0.0333612412, 0.0164173692, -0.0570060797, -0.00340133882, 0.0120497737, 0.0456383713, -0.00977024902, 0.0502572507, -0.0127198705, -0.0287423618, -0.0290056132, 0.0322364382, -0.0241354462, -0.0358023085, -0.0234294515, 0.00227802945, 0.0117865214, 0.0473614745, 0.0135933897, 0.0216704477, 0.027378235, -0.00756251952, -0.0234174859, 0.0410434231, 0.010254872, -0.00295410911, -0.0501615219, 0.0233337227, 0.024506392, 0.0324278921, 0.00520521542, -0.00201328145, -0.0516931713, 0.0266363434, -0.0104822265, -0.0169917364, 0.00206712866, 0.00108142837, -0.00381715782, -0.00130279956, 0.0150532434, 0.0262773633, -0.00543256942, -0.00367655721, 0.00752063841, -0.044346042, 0.0176498685, 0.0517410375, 0.00469067693, 0.0153045291, -0.00655139145, 0.0304893982, -0.0101232463, 0.016213946, 0.00177695276, -0.0312552229, 0.0220653266, -0.0291252732, -0.00768816285, -0.0595907383, -0.0397989564, -0.0199234094, -0.0122352475, 0.000277274929, -0.0243149363, 0.00112256152, -0.000489858619, 0.0235610772, -0.0291731376, -0.0453272536, 0.0233815871, -0.00773004396, -0.0196481925, -0.0251764897, 0.0163216405, 0.0421442948, -0.0312791541, -0.00658130646, -0.00747277448, -0.00914801657, 0.000475275039, 0.015065209, -0.000582969165, -0.00153314532, 0.0215866864, 0.0183438957, 0.0110266805, -0.00135290727, -0.00602488685, -0.0201268326, -0.0189182647, 0.021084113, -0.0261816345, -0.00288380892, 0.00422998518, -0.0248414408, -0.0277132839, 0.0423596837, -0.00434665382, 0.00501076737, 0.0516453087, -0.00528000295, -0.0546607412, -0.021084113, -0.00235730433, 0.00444836495, -0.00579753285, 0.00027540524, -0.00599796372, 0.0109249689, 0.00499880174, 0.0275696926, 0.0372621603, 0.0113078812, -0.026468819, -0.0245542563, -0.0133062052, -0.0348928906, -0.023596976, -0.0148498211, -0.00558513589, -0.0180447455, -0.000463309028, 0.0353236683, -0.00606976, -0.0275936238, -0.0268038679, 0.0489409901, -0.00914203282, -0.0228670482, -0.0186909102, 0.0040504951, 0.0291492045, 0.019361008, -0.00929160789, -0.0562402569, 0.0246499851, 0.00769414566, -0.0464520603, 0.0103805158, 0.0220413934, 0.00246200687, 0.0546607412, 0.00418212125, -0.00498683564, -0.012887395, 0.0056120595, -0.0280961972, 0.00685652485, -0.0198037494, 0.0421203636, 0.00150098663, -0.031614203, -0.0414502658, -0.0346296392, 0.0221849866, -0.0105181243, -0.00504965708, 0.0105779544, 0.0213952288, -0.0287902243, -0.0051214532, 0.0204738472, -0.0233935528, 0.00474153226, 0.0192772448, 0.00268188235, 0.0488931239, -0.0276414882, 0.0219337, 0.00113527535, 0.00728730112, 0.0166806206, 0.0102728214, -0.0185592845, 0.00301244343, -0.0237405673, -0.0268038679, 0.00900442433, 0.0265406147, 0.0250328965, 0.0193370748, -0.040229734, 0.0233696215, 0.0192772448, -0.000572498888, 0.0326672122, 0.0344860479, 0.0196601581, 0.0517410375, -0.00784970354, -0.018056713, 0.00826851465, -0.0275936238, 0.00923776161, -0.00144040876, -0.0364724062, 0.034031339, 0.0231183358, -0.0230704714, 0.0179370511, 0.00784970354, -0.0096386224, -0.00119286182, -0.0318295918, -0.0204858128, 0.0414502658, 0.0104283793, 0.00233935541, 0.05475647, -0.00329663628, 0.0123967882, -0.0212157387, -0.0360416286, -0.061983943, 0.0119540459, 0.00766423065, 0.0193729736, -0.00477144727, -0.027043188, 0.0196840893, 0.0106018865, 0.0279286727, -0.0167763494, -0.0163216405, 0.019995207, 0.0408758968, -0.0445374958, 0.0159865916, -0.0543256961, 0.0371664315, -0.0234892815, -0.0274978951, 0.000872771, 0.0261337701, 0.00342227938, 0.0354911909, 0.0164293349, -0.00848988537, -0.0221969523, -0.0211319774, -0.00286735571, -0.0432930328, 0.00680267764, 0.0544214211, 0.0184635557, -0.035180077, -0.0100454669, -0.0302022137, 0.00391886896, 0.00288829627, 0.0173507184, 0.016728485, 0.0254636742, 0.0102010248, -0.0166925862, 0.00572872814, -0.0293167289, -0.0360894911, 0.0101292292, 0.0286227, 0.00814287085, 0.00513940211, -0.00500179315, -0.030704787, -0.000687671767, 0.0211080443, -0.000424419501, -0.0569103546, -0.010254872, 0.0231662, 0.0171712264, 0.0203182884, 0.0112959156, -0.00685054203, 0.0258465856, 0.0108950539, 0.00255773496, 0.000929609581, 0.00932750665, 0.054086376, -0.0442981757, -0.0122651625, -0.0183079988, 0.00629412243, 0.00680267764, -0.0404211879, 0.0096386224, -0.00917793158, 0.00536376471, -0.0291731376, -0.0404690541, 0.0218020733, -0.0758166537, 0.00856766477, 0.00530692656, 0.00320389983, -0.0168122463, -0.0075445706, 0.0136532197, 0.0056120595, -0.00869929, 0.0345099792, -0.0126002105, 0.00871724, 0.00426588347, 0.0485580787, -0.000374872732, 0.0112899328, 0.00626420742, -0.00865142699, 0.0032278318, -0.0206054728, 0.0095010139, -0.039535705, 0.00550436554, 0.00506461458, -0.000919139304, -0.0465956517, 0.0380758494, 0.00176049955, -0.000840612338, 0.0145746022, -0.012372856, -0.0124207204, -0.0103565836, 0.032762941, 0.00880698487, 0.0238123648, 0.00127587607, -0.00505863177, -0.00111657847, -0.0200311039, 0.0255833343, -0.00663515367, 0.00183528708, 0.0311594959, 0.0492999703, 0.0223285779, 0.0481033698, 0.0025876502, -0.0277611483, -0.0208328273, 0.00224661874, 0.00518128322, 0.0399664789, -0.0247457121, -0.00832236093, -0.00668900087, -0.0303218737, 0.0152207669, -0.00871125702, -0.0161780491, -0.00425391737, 0.00303338398, 0.0274021681, -0.0389374048, -0.0175302085, -0.0285748374, -0.00498982705, 0.0184755232, 0.0205815416, 0.012372856, -0.0555222966, -0.0338398814, -0.0198875125, -0.0401579365, -0.036998909, -0.0224243067, 0.0200071726, -0.010889071, -0.0283594485, -0.0200430695, 0.0202345271, -0.0437956043, -0.0208088942, -0.00282996194, 0.0224362724, -0.052937638, 0.0056629153, -0.0228191856, -0.00213443744, -0.00633002026, -0.0448725447, -0.0127797006, -0.00265795039, -0.022232851, 0.0169558395, 0.00292120269, 0.00113377965, -0.0217542108, 0.0223764423, 0.025200421, -0.028072264, 0.0282637198, 0.00639583357, -0.0168002807, 0.0136891175, -0.0335287675, -0.0275696926, 0.0113677112, -0.0260141101, -0.0126720071, -0.0496350192, 0.0159506947, -0.0113916434, -0.0173387509, -0.0170276351, -0.00571676204, 0.029556049, -0.0455665737, 0.00229298696, 0.000304198475, -0.0404211879, -0.0259901788, -0.0129352594, -0.0364006087, -0.00610565767, -0.0148378545, 0.0233456902, 0.0143711809, 0.00769414566, -0.00227204664, 0.0242431406, -0.0124566182, 0.0160583872, -0.0113916434, 0.0166207906, -0.0169558395, 0.0197080225, 0.0295799822, -0.0192892123, 0.0203781184, -0.0281440597, -0.0441545844, -0.010284787, -0.0193011779, -0.0190020278, -0.0255833343, 0.0125643127, 0.0118224202, 0.0297953691, -0.0182840656, -0.00965657178, -0.013521594, 0.0153284613, -0.0214909576, 0.0211439431, -0.00252931588, 0.00781380571, -0.013342103, -0.0274500325, 0.0212875362, -0.0319731832, 0.00637788419, -0.000713099551, -0.00391886896, -0.000987196, -0.0104463287, -0.0029391516, -0.00535179907, 0.0106018865, 0.00039786991, -0.0346535705, 0.0163336061, -0.0384587646, -0.00365561666, 0.00714370934, -0.0115591679, 0.0304654669, 0.0151130734, -0.0144669088, -0.014610501, -0.0060907, -0.012372856, 0.000663365819, 0.014036132, 0.0357544422, -5.33796301e-05, 0.043771673, 0.0417613834, 0.0139284376, -0.00171413121, 0.0200430695, 0.00566889811, -0.0417613834, 0.0025876502, 0.00664711976, -0.029221002, 0.0156874415, 0.0238123648, -0.00532487547, 0.0252722166, -0.0662917048, 0.0173866153, -0.00288380892, -0.0190259591, 0.00889074709, -0.014670331, -0.000793496147, 0.0345578417, 0.00295859645, 0.0120258424, 0.00408340152, 0.0185951833, 0.00102683343, 0.0439391956, 0.0347493, 0.000922130828, -0.00987196, 0.0306090582, -0.0279765353, 0.0314466804, 0.00984204467, -0.0289577488, 0.00441545853, -0.0319731832, -0.016094286, 0.0198276825, 0.0061924113, -0.0081249224, -0.00967452116, -0.0123967882, 0.00951896235, -0.0121634509, 0.0164173692, -0.00825654808, -0.0176259354, -0.00969845243, 0.0194687024, 0.0437956043, 0.00525607076, 0.0015585731, 0.00610864908, 0.00917793158, -0.00464580394, -0.0260859057, 0.00146583642, 0.0212636031, -0.0331458524, 0.0230704714, -0.00793346576, -0.00766423065, 0.0158190671, -0.00856168196, -0.0140480986, -0.0213114675, 0.0150532434, -0.0041193, -0.0199234094, 0.0295081865, 0.0284312442, 0.0286944974, -0.0221012235, 0.00980614685, -0.0246978495, -0.00565992389, 0.0130309872, 0.00277013169, -0.00602488685, -0.00622830912, 0.0229149126, -0.000503694348, 0.00960870739, 0.00493298844, -0.00478042196, 0.0120796887, 0.0109548839, -0.014095962, 0.00274919136, -0.0082864631, 0.0505444333, -0.0158549659, 0.0249132365, -0.0410194881, -0.00988392625, -0.00447229715, -0.0293406621, -0.0136771519, -0.0296039134, -0.0222089179, 0.0212755688, -0.0245303251, -0.0172789209, 0.0475768633, 0.017243024, -0.0154241892, 0.024626052, 0.0151609369, 0.00106273149, 0.00502572488, -0.00478341337, -0.0154002579, 0.0105061587, -0.0281201284, -0.0161421504, 0.0174823441, 0.00837022532, 0.0151848691, -0.0343424529, 0.0116608785, 0.000636816199, -0.00575565174, -0.00494495453, -0.019420838, 0.0246499851, 0.00295560504, 0.00278359349, 0.0280483328, 0.010799326, -0.0228431169, -0.000317660219, -0.00930955727, -0.00287333853, -0.0388895385, -0.02577479, 0.00206862437, -0.0285748374, -0.00606976, -0.000968499109, 0.0174703784, -0.0126361083, 0.03345697, 0.0103506008, 0.0113617284, 0.00744285947, 0.0114275413, -0.0272107106, 0.0104104308, 0.0121514853, -0.0400382765, -0.00017079612, -0.0256072655, -0.0254158098, -0.00569881313, 0.012492517, -0.023022607, 0.011828403, 0.0125044826, 0.00628215633, -0.0185473189, 0.0278568752, 0.00545650162, 0.000996170449, 0.0223525111, -0.0159985572, 0.0081488546, -0.0282397885, 0.0418331772, -0.029556049, -0.00218828442, -0.0182840656, 0.00077255565, 0.0184396245, -0.016154116, -0.0114215584, -0.0145267388, 0.00244405796, -0.0144549422, -0.0125284148, 0.0075685028, -0.000863796507, -0.0606916137, 0.0033564663, -0.0205097441, -0.0170037039, -0.0458537564, 0.0198994782, -0.0110805267, 0.00600394653, -0.0262773633, -0.0340552703, 0.028072264, -0.0193729736, -0.00845997, 0.0113258306, -0.00481332839, 0.0487734638, -0.0172310565, -0.00745482557, 0.0306329913, -0.0182721, -0.0196122937, -0.0189541634, -0.00454409327, 0.0242790394, -0.010195042, 0.0576761775, -0.021478992, 0.0265884791, -0.0174703784, 0.00832236093, 0.0156515446, -0.00552829774, -0.00351800746, -0.00680866092, -0.0110924933, -0.0119839609, -0.0127916671, 0.0143592143, 0.0247696452, 0.0092078466, 0.0175421741, 0.00176199526, -0.00966853742, -0.0246499851, 0.00791551732, -0.0441306531, -0.00191306614, 0.00874715485, 0.00898049213, -0.0060907, 0.0256790612, -0.00327569572, 0.00414323155, -0.0331458524, 0.00536675658, -0.0175062753, 0.00536675658, 0.0103685493, 0.024626052, -0.026349159, 0.0464999229, -0.00984802749, -0.0237525348, -0.0183558632, 0.00497187814, -0.0190857891, 0.0048193112, -0.0224003755, 0.0218140408, -0.006988151, -0.0133062052, 0.0103565836, -0.0118104536, -0.0141198942, -0.0184635557, 0.016728485, -0.00924374443, -0.0121036209, 0.00948904734, -0.0117266914, -0.0380040556, 0.0519324914, -0.0332176499, 0.0129831228, -0.00270431861, 0.00522914715, 0.00424195128, 0.025320081, 0.0579154976, -0.0237525348, -0.0102608558, 0.0443939045, 0.0266363434, -0.000691037218, -0.0128395306, 0.028646633, 0.00153464102, -0.0284073129, 0.0133181717, -0.000943071325, -0.0139523698, 0.0207370985, -0.0122651625, 0.0258226544, -0.00328766182, 0.0418092459, -0.0219097678, 0.0288620219, -0.0324518234, -0.0147062289, -0.00872322265, 0.0077719246, -0.0156156458, -0.00410733372, 0.0303458069, -0.000866040122, -0.0053876969, -0.0212037731, -0.0197199881, 0.0511188023, 0.0128036328, 0.0158788972, 0.00656335754, -0.0381476469, -0.0163455717, -0.00846595317, 0.0362330861, -0.0237405673, -0.0331937186, 0.0028389364, 0.0251764897, 0.0122771282, -0.00493598, -0.0100514498, 0.0114095928, 0.010769411, 0.00853176694, 0.0255115367, -0.0099018747, 0.00878903549, -0.0228072181, 0.0131506473, 0.0274500325, -0.00241713435, -0.00442144135, -0.000211648832, 0.0128036328, 0.00670695, -0.0339595415, -0.00847193692, 0.0145387044, -0.0222448166, -0.0249132365, -0.0278568752, -0.00539068831, -0.0143233165, -0.000665235508, 0.0220653266, -0.00874715485, -0.027043188, 0.0258705188, -0.00482828589, 0.0150532434, -0.0117446408, -0.0263252258, -0.0150173455, 0.00981213, -0.00370647223, -0.03642454, 0.00385604729, -0.00900442433, -0.0335527, 0.0251286253, 0.000242124777, -0.00371245528, -0.00221221638, -0.00214789924, 0.00271030166, -0.0106856488, -0.0268756635, -0.0138566419, 0.0103326514, -0.011283949, 0.00679669483, 0.0100095691, -0.00420904486, -0.013342103, 0.0281919241, 0.0100335013, 0.00635993527, 0.00480734557, -0.0415220633, -0.0334330387, -0.0358262397, 0.000903433887, -0.0280004684, 0.00484922621, -0.00853775, 0.00138207444, -0.016608825, 0.00543256942, -0.0260380413, -0.0725140348, -0.000372255163, -0.045040071, -0.0152446991, 0.00264897593, 0.0283833798, -0.00744884228, -0.0268517304, 0.00233785971, -0.016668655, -0.0260380413, 0.0301064868, 0.014610501, 0.0298432335, 0.018726809, 0.0179849155, 0.00734713161, -0.0232619271, -0.00959674176, -0.019540498, 0.00220473763, -0.0244226307, 0.0174943097, 0.00953092892, 0.00280453404, -0.0244465619, -0.0197798181, -0.0158190671, -0.00552530587, -0.024231175, -0.0102309398, -0.0126361083, 0.0174823441, -0.000889972143, -0.000414697104, 0.00205067522, 0.0077838907, 0.00820868462, 0.00532487547, 0.0319013894, -0.0458058938, 0.00346116908, -0.0273543037, -0.00612061517, 0.0102488892, 0.00899245776, -0.0217183121, 0.00763431564, 0.0113736941, -0.0192054491, 0.0349407569, 0.0148617867, 0.0145746022, -0.00149575155, -0.0116309635, -0.0118044708, -0.0190259591, 0.0067368648, -0.0142754521, 0.0194926336, 0.02589445, -0.00158100936, -0.0312791541, -0.0126002105, -0.0185951833, -0.030585127, -0.016788315, 0.0142754521, 0.0186310802, -0.0016004541, -0.00662318757, 0.0343903191, -0.00441845, -0.0233217571, 0.00201029, -0.00633600354, 0.00498683564, 0.0110745439, -0.00965657178, 0.0327150784, -0.0274978951, -0.047529, 0.0216106176, 0.0265884791, 9.35428943e-06, -0.0272825081, -0.0072274711, -0.011164289, -0.00103580789, 0.00126914517, 0.0114933541, 0.00857963, -0.00542658661, -0.00637788419, 0.00707789604, 0.00475349836, 0.0275457595, 0.0130549194, 0.0077958568, -0.000477892609, 0.00165878842, -0.025320081, -0.0213593319, -0.0146224666, -0.0111044589, 0.00164383091, 0.00367057417, -0.00601292122, 0.00771807786, -0.00708387932, 0.00344022852, 0.00930357445, -0.0101292292, 0.0148498211, -0.0019474685, 0.0133062052, 0.00695225317, 0.0244824607, -0.0150532434, -0.0368313864, -0.0135335596, 0.0107514616, 0.0191216879, 0.0248893052, 0.00664113648, -0.00640779966, 0.0114754057, -0.0380519181, -0.00149724726, 0.0411630832, -0.0381955095, -0.00204917951, 0.0118463524, 0.0163096748, 0.00676678, -0.00948904734, -0.0117925052, -0.0119839609, 0.00528000295, -0.0279047396, -0.0216704477, 0.00152267504, 0.0187387746, -0.0491085127, 0.00963264, -0.0182242356, 0.0182960331, -0.00617446238, -0.00214042049, -0.0264927503, 0.0164772, 3.59915211e-05, -0.00522017293, 0.00465777, 0.00146284502, 0.0165609606, -0.0180208143, 0.0144310109, -0.00451417826, -0.0256311987, -0.0336962901, 0.0610745251, -0.00657532364, 0.0181404743, -0.0124446526, 0.0261098389, -0.00719755609, -0.00903433934, 0.0172908865, 0.00196093018, 0.0148737533, 1.11830796e-05, 0.00525906216, 0.0240157861, 0.00405647792, 0.0126959383, 0.0104882093, 0.00925571, -0.0269713905, -0.000661870057, -0.0077838907, -0.0183558632, 0.00496888673, 0.00541761192, 0.0155677814, -0.00230794447, -0.000139104886, -0.00673088199, -0.0051603429, -0.00178443152, 0.00867535919, 0.0200071726, -0.0012033321, 0.0165130962, -0.010739496, 0.00436460273, 0.0118343858, -0.0154481214, 0.010679666, -0.0105839381, -0.0147899911, 0.0127916671, -0.0118643008, -0.0194567349, -0.00260410341, 0.0269474592, -0.0267081391, -0.0119779781, 0.00302141812, -0.0365681313, 0.00555821275, -0.0252243541, -0.021084113, 0.0403254591, -0.00152342289, 0.00507358927, -0.0200430695, -0.0120437909, -0.0295799822, 0.0221610535, -0.012947225, 0.00326672127, 0.00853775, 0.0226755925, 0.017422514, 0.00134019332, 0.00158100936, -0.0243747663, 0.0417374484, -0.00422998518, -0.0109309517, -0.0360176973, 0.00680866092, -0.00351800746, -0.00921981223, 0.00916596502, 0.00483726058, -0.0365442, -0.00070375111, -0.00787363574, -0.0332894437, 0.025200421, 0.00170814816, 0.00664113648, -0.0115950657, -0.00574966893, -0.00955486, -0.00891467929, 0.0116070313, -0.0239320248, -0.0129831228, -0.00588129507, -0.0132463751, 0.0296039134, -0.0253679454, -0.00224213139, -0.00767619675, 0.0088369, 0.0105360737, -0.0132942395, 0.0109608667, 0.0024231174, 0.0304176025, -0.0054116291, 0.00389194535, -0.00681464374, -0.0175302085, 0.0198396482, -0.00113377965, -0.0100514498, 0.0182481688, 0.0218379721, 0.0135455253, -0.0130668851, -0.0244226307, 0.0021583694, -0.013976302, -0.00122875988, -0.0223525111, -0.00482529448, -0.00422101095, -0.0154122235, -0.0133780017, 0.00579155, -0.0112959156, -0.0209285542, -0.00604582764, -0.0018098593, 0.00646164641, -0.0139882676, -0.0207969286, 0.00281500444, -0.0215148889, 0.0185233857, -0.0259662457, 0.0297475066, 0.0133660352, 0.0207490642, 0.00369151472, 0.000568011659, -0.0206294041, -0.000459569652, -0.0114454906, 0.0211319774, -0.0107873594, 0.00132598367, 0.00612659799, -0.0191695504, -0.00964460615, 0.0218858365, -0.00113976269, -0.0100155519, -0.0176020041, 0.0124446526, 0.00725140329, 0.0169678051, 0.00969845243, -0.0029526134, -0.00717960717, -0.0273543037, -0.00793346576, 0.0210601818, 0.0152805969, -0.0243269019, -0.013282273, -0.0192533135, -0.00686250813, 0.000431898254, 0.00740097836, -0.0153523935, -0.0224961024, -0.0156994071, 0.0153404279, 0.00307227368, -0.0194447692, 0.0132463751, 0.00525607076, -0.0127438027, -0.0283833798, 0.0168361794, -0.0239080917, -0.0103805158, -0.00820868462, -0.0160583872, 0.00357185467, -0.0158190671, 0.006988151, -0.0258226544, -0.0114813885, 0.0268517304, 0.0225798655, 0.0109489011, 0.0064317314, 0.000218566682, 0.00383211533, 0.00777790789, 0.000674209965, 0.0176857654, -0.00477743, -0.0131865451, -0.0280483328, -0.0198037494, 0.0142036565, -0.00868732482, -0.0121036209, 0.00613856409, 0.00204020506, -0.0102728214, -0.0225798655, 0.00841210689, -0.00829244591, 0.00165280537, 0.00482230308, 0.00996768847, -0.00999760348, -0.0271867793, 0.0183079988, 0.00121978531, 0.0209883843, 0.00604582764, -0.0158190671, 0.0237884317, 0.00271628471, 0.00181135512, -0.00288380892, -0.00936340448, -0.0199593082, 0.00658728974, -0.0263730902, 0.00322484015, 0.0145147722, -0.0448486134, 0.0061924113, 0.0344860479, -0.00204170076, 0.0254876055, 0.00392186036, 0.0337202214, 0.00488512451, 0.000161915101, -0.00775397569, 0.00177844858, 0.00866937544, -0.0274739638, 0.012947225, 0.010195042, -0.000105076542, 0.00710182823, 0.0172549896, -0.0161182191, -0.0046039233, -0.0121873831, -0.0155318836, -0.0103745321, -0.0212157387, -0.00597702293, 0.0127438027, 0.0263252258, 0.0113198478, -0.00205067522, -0.0246021207, -0.00221221638, -0.0165489949, -0.0114335241, 0.000160699798, -0.0146344323, 0.0144549422, 0.00557317026, -0.0448007509, -0.000659626385, 0.00141647668, 0.019815715, 0.0219695978, 0.0094471667, 0.00064018165, 0.0225559324, -0.0220174622, 0.0375972092, -0.00476546446, -0.0116848107, -0.013342103, -0.0277372152, 0.0220892578, -0.00381416641, -0.0169199407, -0.0149934134, -0.00984802749, 0.00141572882, 0.0116249807, 0.0158071015, -0.010799326, 0.0106318016, 0.00743089337, 0.0276893526, -0.0190259591, 0.00762833282, 0.0305611938, -0.0121634509, 0.00500478456, -0.0042628916, -0.0100574335, -0.00289427908, 0.00784970354, -0.0317099318, 0.0061924113, -0.0193011779, 0.00689242315, 0.0116130151, -0.0142993843, 0.0296278466, -0.0197798181, -0.0222687479, -0.00227653375, 0.011798488, -0.0447050221, -0.0107813766, -0.0096386224, 0.0114574563, -0.0134139, -0.0012167939, -0.017302854, 0.0533205494, -0.0148139233, 0.0107933432, -0.0260619745, 0.0053607733, -0.0324757583, 0.00838219188, -0.012552347, 0.0156276114, 0.00446930528, 0.00647361251, -0.0261577014, -0.0209165886, -0.00914801657, -0.000992431073, 0.00402656291, 0.00677276263, 0.0230704714, -0.000996918418, -0.0192293823, -0.0373100266, 0.00697020208, -0.00055081048, 0.0208806917, -0.00466674473, -0.0034940755, 0.0100933313, 0.00961469114, -0.0108950539, 0.0530812293, 0.00383809838, -0.0015451113, 0.00507358927, -0.00789756794, 0.0202943571, 0.0275936238, -0.00099168322, 0.00548641663, -0.00549838273, 0.00466076192, 0.0146463988, 0.0155438492, -0.00152267504, 0.00896254275, 0.0197917838, -0.0355629884, -0.00918989722, 0.0204858128, 0.0331937186, 0.0108711217, 0.0284791086, -0.0155677814, -0.0138925398, 0.00936340448, -0.0293885265, 0.000365711254, 0.00514239352, 0.0351082794, 0.00913605, -0.035993766, -0.0276654195, 0.000553428079, 0.0235850103, -0.00345817744, 0.0154840192, -0.0101591442, 0.0142993843, 0.0390331298, -0.0254158098, -0.0129113272, 0.00337441545, -0.0108830882, 0.00728131831, 0.0222208835, -0.00170066941, 0.00404750369, -0.0635634586, 0.0179609843, -0.00564496638, -0.0173507184, 0.00851381756, -0.0159267616, 0.00679071201, -0.000117696945, 0.00442144135, 0.0138566419, -0.0110027483, -0.0137010841, 0.0156635102, 0.00707789604, 0.00415519765, 0.0148378545, -0.0415938571, -0.0321407095, 0.0185114201, 0.0137010841, 0.0252961498, 0.00545650162, 0.0259901788, -0.0413306057, 0.000431524299, -0.0491085127, -0.00936938729, 0.0465238541, -0.0182242356, 0.00703601493, 0.0153523935, -0.0269474592, 0.0171831939, -0.0123608904, 0.013282273, 0.0403493941, -0.058298409, -0.0377408, 0.00899245776, 0.0106557338, 0.0155917136, 0.017302854, 0.00770611176, 0.00085332623, -0.00495392876, 0.0116907936, -0.00503170816, -0.0134019339, -0.0158669315, -0.0111044589, -0.0176020041, 0.0116728451, 0.00423297659, -0.0011345275, -0.0203661527, 0.00223315693, -0.00143442571, 0.00231093611, -0.0151848691, 0.0124805504, -0.00950699672, -0.0208208617, 0.014036132, -0.028646633, 0.00403254619, -0.00340732187, -0.0141677586, -0.00500777597, 0.0289577488, -0.0220772922, 0.00850185193, -0.0315663405, -0.00135290727, -0.0132224429, -0.0048552095, -0.0324996896, 0.0197678525, 0.0189421978, 0.00180088484, -0.00477443868, 0.00805911, 0.00907023717, -0.00430776412, -0.00147107162, -0.00577060925, 0.00635395246, 0.015125039, 0.00662318757, -0.0158190671, 0.0151130734, 0.0210482143, 0.0262294989, -0.00689242315, 0.00527102826, 0.0263252258, -0.00634198636, -0.00238871505, 0.00787363574, 0.00560906809, -0.00885484926, 0.00817278586, -0.0228431169, -0.00468768505, -0.0171831939, -0.00555222947, -0.00776594179, 0.00770012895, 0.00597403152, 0.00356587162, 0.00666506868, 0.000514164567, -0.00633002026, 0.00435562851, 0.0113198478, 0.00368852331, -0.0094232345, -0.0187387746, 0.0152446991, 0.0014060064, 0.00511846179, -0.00356288, -0.00130653894, 0.00464281254, -0.0029645795, 0.0386502184, -0.0144070787, 0.0250328965, -0.0140241664, 0.0159028303, -0.0236089416, 0.0232379958, 0.0095010139, -0.012253196, 0.0106916316, -0.017362684, 0.0017530208, -0.00191456196, 0.00988392625, -0.0124805504, -0.000193512853, -0.00425391737, -0.0085257832, -0.00244555366, 0.00135365513, 0.00774200959, 0.0470024943, -0.00489110732, 0.00326073822, 0.00516632572, -0.0108112916, -0.00309620565, 0.00193101517, -0.00419707876, -0.0139404042, 0.0102010248, 0.0315902717, -0.0195763949, 0.00832236093, 0.0106318016, 0.00325475517, 0.0117865214, -0.0214670263, -0.0191575848, 0.0115890829, 0.0110984761, 0.00284342351, 0.0107454788, 0.00117715646, -0.00248294743, 0.0272346437, -0.00403254619, 0.0137250163, -0.0121096037, 0.00741294445, 0.0169079751, 0.00466375332, 0.0132463751, 0.0176857654, 0.0175421741, 0.0203063227, -0.00832834467, -0.00113751902, -0.015005379, -0.00981213, 0.0248414408, 0.00855569821, 0.00379023422, -0.0259423144, 0.0104762437, 0.0171113964, 0.0267799348, 0.0243388694, 0.0148378545, 0.006760797, -0.0102488892, 0.0149694812, -0.0217183121, -0.00163485634, -0.0146583645, -0.00722148828, -0.0189541634, 0.0103685493, -0.00612360658, -0.0102728214, -0.00965058897, -0.00580949895, -0.00499880174, 0.0203063227, 0.00705994712, -0.011283949, -0.0311355628, 0.00267889095, -0.00904032215, -0.00998563692, 0.0133780017, -0.0285748374, 0.0111283911, -0.0143472487, -0.0188943334, 0.0106557338, 0.00576761784, -0.0171233639, -0.0255833343, -0.00049322407, -0.00665908586, 0.00680866092, 0.0150173455, -0.010769411, 0.0296757091, 0.00664711976, 0.0240038205, -0.00273273792, -0.0136651853, 0.00131252198, -0.017996883, 0.00947109889, -0.0129232928, -0.00662318757, -0.0075685028, -0.0156635102, -0.0343663879, 0.0229388457, -0.0251286253, -0.0141557921, 0.00840014, -0.0110984761, -0.0324757583, 0.00462187221, -0.00494196313, -0.000100682773, 0.00385604729, -0.0099796541, 0.00793944858, -0.0173985809, 0.00911810156, 0.0324039608, 0.00610864908, -0.0284791086, 0.00504367426, -0.0150412768, -0.0148617867, -0.00522615574, -3.82351463e-05, 0.0101292292, -0.00482828589, 0.00179789332, 0.0104822265, 0.00985999405, -0.00631805416, 0.00604283623, -0.00138880522, 0.0109070204, -0.0240397174, -0.0185353532, 0.00289427908, 0.0111702718, -0.0114873713, -0.00708387932, -0.00869929, -0.00185323611, 0.0313270204, -0.000740770949, 0.000164065248, -0.0202464927, -0.00105749629, -0.00563300028, 0.00807107519, -0.0160703547, 0.0118463524, -0.00914801657, -0.00585138, 0.0275936238, 0.0122053325, -0.00312911207, 0.0126480749, 0.00545949303, 0.00460990611, 0.0184755232, -0.00649156142, 0.00178891874, -0.000698889897, 0.0117207086, -0.0126839727, -0.00541761192, 0.0161182191, 0.0136891175, 8.77351777e-05, -0.00865142699, 0.00341330492, -0.00971041899, 0.0194088724, -0.00580052426, 0.0184515901, -0.0147181945, -0.0107514616, -0.0161660817, -0.00429879, 0.0116369464, -0.00508854678, -0.0211918075, 0.000223988784, 0.0258226544, 0.0187507402, -0.0155318836, 0.000470787782, 0.0018083636, 0.014550671, -0.00127961545, -0.00690438878, -0.0014261991, 0.00247098156, -0.0182721, 0.0140480986, -0.00109189865, 0.0120617403, 0.0269474592, -0.00408639293, 0.0297235735, -4.19511571e-06, 0.00203721365, -0.00775397569, -3.65991691e-05, -0.0151968356, -0.00447229715, 0.01431135, 0.00977623183, 0.0160105247, 0.029221002, -0.0194328036, -0.0277850796, -0.0028120128, -0.0265884791, 0.00324578071, 0.0263730902, -0.00929160789, -0.00953092892, 0.00625224132, -0.00673088199, 0.00280154264, -0.0129591906, 0.000118164367, -0.00185323611, -0.0158310346, -0.010769411, -0.00341031351, 0.0135574918, 0.00942921732, 0.00162289036, 0.0263012946, -0.00523213856, -0.00332355988, -0.0028374407, 0.00152491871, -0.0211080443, 0.00317697623, 0.0194687024, 0.00463682972, -0.00526205357, 0.01152327, 0.00500478456, 0.00478341337, -0.00822065, 0.00171562703, 0.00164383091, 0.0228790157, -0.0179729499, -0.00838219188, -0.0113976263, -0.0263252258, 0.00959674176, 0.000148453342, 0.0119779781, 0.00249790493, 0.0119001986, 0.00184874889, -0.000522765156, 0.0283355173, 0.00732918223, 0.00211200118, -0.00399066508, -0.0119959274, -0.0255594011, -0.00356886303, -0.0126959383, -0.0127438027, 0.000159858435, 0.00978819747, -0.0384587646, -0.0051483768, 0.0152207669, 0.0205576085, 0.00857963, -0.00539068831, 0.00253829034, -0.00445434777, 0.00483726058, 0.00202674326, -0.0164413, 0.00421502767, -0.00314107817, 0.00449323747, 0.00783773791, 0.0367356576, 0.00413126545, -0.0185592845, 0.0129831228, 0.0183558632, 0.0104642771, 0.00953092892, -0.03345697, 0.0215148889, 0.0151729034, 0.000416192866, -0.0186071489, 0.0225559324, -0.00584240537, 0.00797534734, 0.00853775, -0.0250328965, -0.0100693991, 0.0310876984, 0.00466076192, 0.00114499778, -0.0114036091, 0.00167374592, 0.0240636505, 0.00922579505, 0.0206533372, 0.0201866627, 0.00914801657, -0.00445434777, -0.00108815928, 0.00839415751, -0.017518241, 0.00694627, 0.00277162762, -0.0319253206, 0.0156036802, 0.00290923659, 0.010135212, -0.00499880174, -0.024626052, -0.0239918549, -0.00687447377, 0.000166215381, -0.00640779966, 0.0255354699, 0.000411331654, -0.00425092597, 0.0269953236, 0.0145387044, 0.0234414171, -0.0234294515, -0.00847193692, -0.000836125109, 0.0102608558, 0.0109130032, 0.0182840656, 0.00188913418, 0.0132344095, 0.00486418372, 0.010799326, -0.0293406621, -0.0179131199, -0.00776594179, 0.00452614389, 0.0209764186, -0.0171233639, -0.000115266354, 0.00613258127, -0.00462486362, -0.000854822, 0.00552829774, -0.0047923876, 0.00346116908, 0.0198516138, -0.0162498448, -0.00088249339, 0.00195345143, 0.00529196905, -0.0117087429, 0.00262504397, -0.00847792, -0.00749072339, 0.00533684157, -0.0139882676, -0.00749072339, -0.0154122235, -0.0099018747, 0.0127079049, -0.00181434653, 0.005929159, 0.0105300909, 0.0125044826, -0.00167673745, 0.00476845587, 0.0146583645, 0.0219217334, 0.0148019567, -0.0106736831, 0.00177096983, -0.0111523233, 0.00710182823, -0.00999162, 0.00156455603, 0.00233187666, -0.0172310565, -0.0142036565, -0.00744285947, -0.0106078694, -0.0150412768, -0.0132463751, 0.029101342, 0.0168242138, -0.0051453854, -0.0062462585, 0.000526504533, 0.0111463405, 0.0253440142, 0.00655139145, 0.00303039257, -0.0405887142, 0.0185473189, -0.0280483328, -0.0107873594, -0.000527626369, 0.0293645933, -0.00731721614, -0.0212995019, -0.00533384969, 0.0149335833, -0.029221002, -0.0139882676, -0.0144429766, 0.0312791541, 0.00878903549, 0.0197199881, -0.0211439431, -0.00964460615, -0.0198396482, -0.0157712046, 0.0146224666, -0.00376630225, 0.0176498685, -0.00201029, 0.0126121771, 0.0241952762, 0.0037842514, 0.00208358187, 0.0254876055, 0.0036466422, -0.00644369749, 0.00819073524, 0.00787363574, -0.0110685611, -0.022567898, -0.00920186285, -0.00858561322, -0.00592018431, 0.0058783032, 0.00977024902, 0.0116249807, 0.0318295918, -0.00133645395, -0.0133899674, 0.00540863723, 0.00477144727, 0.00189661293, -0.017302854, -0.00773602678, 0.0198276825, 0.0021583694, 0.00668900087, -0.0231901314, 0.00497786095, -0.00795739796, 0.0255354699, -0.0228550825, 0.00142844266, -0.00707191322, -0.00143367785, -0.0194447692, 0.0153045291, -0.022508068, 0.0163455717, -0.0126600405, 0.0105899209, 0.0148617867, -0.00874117203, -0.00918989722, 0.00155408576, -0.00698216818, -0.00202823896, -0.00376929389, 0.0231303014, 0.000443490309, -0.00536974799, 0.00832236093, 0.020964453, -0.00679669483, 0.0247696452, 0.0108053088, 0.0152566656, 0.000411331654, -0.00196691323, 0.0060907, 0.016034456, -0.010799326, -0.00473255757, -0.0134737296, 0.0234533828, 0.0119001986, 0.0162977092, 0.000182014264, 0.0088668149, -0.00851381756, -0.0241713449, 0.00901040714, -0.0149335833, -0.00671293261, 0.00817278586, -0.0217063464, -0.0186191145, 0.0140122, -0.000364963373, -0.0129591906, -0.0213952288, 0.00313210371, 0.00746679166, 0.00465777, -0.00704798102, -0.0059411251, 0.00666506868, -0.000875014637, -0.013581424, 0.0163336061, 0.00161690742, -0.00760440063, 0.0106976144, 0.0316620693, 0.0202584583, -0.0203182884, 0.0341270678, -0.0141677586, -0.0126480749, -0.0238123648, 0.0105779544, 0.0227354225, 0.0206533372, -0.00842407253, 0.00535479048, 0.00359578663, -0.0337920189, 0.00332056824, 0.0264927503, -0.0025607266, 0.0056659067, -0.00574667705, -0.0212277062, 0.0431494378, -0.0174464453, -0.00921981223, 0.0113018984, 0.0147540933, 0.0184874889, 0.00255623925, -0.000453212706, 0.00313808676, 0.00507358927, 0.0206294041, 0.00545051834, 0.00583642256, 0.00903433934, 0.005399663, -0.00261756522, 0.0075565367, -0.00853775, -0.0310876984, -0.018786639, 0.0154002579, 0.00772406068, 0.0214311276, 0.0321167745, -0.00493298844, -0.00768816285, -0.011798488, -0.0172789209, -0.00491803093, -0.0273543037, 0.00224362733, -0.0128155993, 0.0269235279, -0.019420838, 0.0131506473, -0.00631805416, 0.0217781421, -0.015065209, -0.00680267764, -0.0118702836, 0.00601890404, -0.0104822265, -0.000466300524, -0.0120378081, 0.0122352475, -0.000917643541, -0.0142036565, -0.00664711976, -0.0209285542, 0.00964460615, 0.00751465559, -0.00414622296, 0.00183229556, 0.023776466, -0.00676678, 0.0214430932, -0.0016139159, -0.00268038665, -0.00544154411, -0.0127079049, 0.00341928797, -0.0197439194, -0.00505863177, 0.024506392, 0.0205935072, -0.00928562507, 0.0206294041, 0.0192892123, -0.0124566182, -0.0107873594, 0.0217302777, -0.0209524874, -0.00212995, 0.028526973, -0.0222807135, -0.0079992786, 0.0245303251, -0.00599796372, -0.0251046941, 0.0117566064, -0.0114574563, -0.0164772, -0.035993766, 0.000414323178, 0.0064317314, -0.00843603816, 0.0134976618, -0.0112001877, -0.0161900148, -0.0404929854, -0.0146224666, -0.0156395771, 0.00249042618, 0.00470563443, -1.92110583e-05, -0.000683558465, 0.0103087192, 0.00247995602, -0.00290026213, -0.0251046941, -0.000198934955, 0.0258465856, -0.00841809, 0.00887878053, 0.0200071726, -0.00267141219, -0.00134168915, -0.000506685814, -0.00150771753, 0.00601591263, -0.00267141219, 0.00518128322, -0.0154959857, -0.0156754758, -0.000425541308, -0.0140839964, 0.0103805158, -0.00556419557, -0.00429879, -0.0119540459, -0.0106318016, 0.00327270431, 0.0151130734, -0.00917793158, -0.00826851465, -0.0210123174, 0.00791551732, -0.000188838632, 0.0122651625, 0.0160823204, -0.00605181046, -0.0075445706, -0.0192413479, 0.0460930802, -0.00419109594, 0.000129569467, 0.0130309872, 0.0154481214, -0.00129532081, 0.0311594959, 0.00929160789, -0.0126839727, 0.00715567498, 0.00860954542, 0.00663515367, -0.00981213, -0.0136891175, 0.0236328728, -0.0252722166, 0.00529496046, 0.00144340016, 0.013282273, -0.0360894911, -0.0207370985, 0.0045411014, 0.00910015218, 0.000869779498, -0.000854822, 0.0196481925, 0.00665908586, 0.00690438878, -0.00371245528, 0.0181644056, 0.0235730428, -0.00121978531, -0.00660523865, 0.0107753938, -0.00995572191, -0.00694627, 0.00358681218, -0.00794543233, -0.00340133882, -0.0131267151, -0.024985034, -0.00139329256, -0.0165011305, -0.0287423618, 0.00761636673, -0.0182003044, 0.0218260065, -0.00159147964, 0.011738658, -0.00811295584, 0.00303787133, 0.00554026337, -0.000664861524, -0.00107694103, 0.0232978258, 0.0007097341, -0.0143592143, -0.000966255495, 0.0123010604, 0.00793944858, 0.00520820683, 0.0207610317, 0.000768068421, 0.00723345438, 0.0154481214, -0.0261098389, 0.00260260771, -0.00945314951, 0.00439750962, -0.0245542563, 0.0122651625, 0.0295321178, -0.00938733667, 0.0203781184, -0.0159267616, -0.00550735695, 0.0135096274, 0.00898647495, -0.00381416641, -0.0185712501, 0.0126720071, -0.0040504951, -0.0116309635, 0.0248175096, 0.00911810156, 0.00420605345, 0.00588129507, -0.0228550825, 0.0145028066, -0.0147301611, 0.0117027601, -0.00189661293, -0.0233337227, -0.00267739524, -0.0117087429, -0.00613258127, -0.0163695049, -0.00805312581, 0.00790355075, 0.00862151198, 0.000998414122, 0.0239439905, 0.0196122937, 0.00640779966, -0.00873518921, 0.00889074709, -0.0307765827, -0.00605181046, 0.0473375432, 0.000287745206, -0.00243657921, -0.0173387509, 0.0126241427, -0.00901040714, 0.0153763257, 0.00612360658, 0.0154481214, 0.0113976263, 0.0140480986, -0.00550735695, -0.00834629312, 0.0251046941, -0.00829244591, 0.00417913, 0.0153643591, -0.0101232463, -0.00770012895, 0.0149814468, 0.0113497628, -0.0191934835, 0.00960870739, 0.00172609719, 0.00984204467, -0.00124222168, 0.0274500325, 0.0109369354, -0.0162737761, 0.00415519765, -0.00263102679, 0.00228999555, 0.00303488, 0.012552347, 0.00417613797, -0.000169580831, -0.0230106413, 5.45949297e-05, 0.00543556083, 0.020174697, -0.0178532898, -0.0206533372, 0.0006686009, -0.0202464927, -0.0119241308, 0.00320389983, -0.0184396245, 0.0108771054, -0.00752662169, 0.00746679166, -0.0169797707, -0.00137758709, -0.00278060208, -0.0117925052, 0.0224362724, -0.0182960331, -0.014670331, -0.0035060416, 0.00811894, 0.0108950539, -0.0272346437, -0.0193729736, 0.0237046704, 0.0429579839, 0.0112420684, 0.0124087548, 0.0109728333, -0.0085257832, 0.00667105149, 0.0329544, 0.00560607668, 0.00627019024, -0.00955486, 0.00949503, 0.00595907401, -0.0476247296, 0.0114275413, -0.0118643008, -0.00113527535, 0.0119839609, 0.011254034, 0.00663515367, 0.0138805741, 0.00501375925, 0.0271149836, 0.0243029706, -0.00989589188, -0.0274021681, -0.00590821821, 0.000514538493, 0.0253679454, 0.00530692656, -0.00893262774, 0.0100813648, -0.0332894437, 0.0216824133, 0.00382912392, 0.00769414566, -0.0182840656, 0.025200421, 0.0178532898, 0.00443639886, 0.00977623183, -0.000757598144, 0.00801722798, 0.00612061517, -0.0028374407, 0.0163216405, -0.0153882913, -0.0111583062, -0.00226755929, -0.0213473663, -0.00367356581, 0.0201866627, 0.00397570757, 0.0108711217, -0.0221012235, -0.00498085236, -0.00890869554, -0.0149216168, 0.0231781658, 0.00202674326, 0.0151130734, -0.015065209, -0.000340470433, -0.023716636, 0.0120198587, -0.0299389623, -0.00799329579, -0.00776594179, -0.0240995474, -0.00277162762, -0.00620437739, 0.0299389623, -0.0232858602, -0.0107514616, 0.00426588347, 0.00967452116, -0.00400861399, 0.0109130032, 0.0114514735, -0.00718559045, -0.00236328738, -0.000524260919, 0.0206892341, -0.0035209991, -0.0166566893, 0.0115890829, 0.0133181717, 0.00843603816, -0.00227653375, -0.00972836744, -0.00453212718, 0.000597552746, 0.0156036802, 0.0263012946, 0.00697020208, -0.0115711335, 0.00413126545, 0.0162259117, -0.0180447455, 0.000775547174, -0.0136292875, 0.0141438264, 0.00252482854, 0.00714370934, -0.00328467041, 0.00935742166, -0.00317398459, 0.00546846772, 0.0251046941, 0.0137489475, 0.0067488309, -0.0204140171, 0.00656934083, -0.00335945794, 0.0156635102, -0.00740696164, -0.0132583417, 0.0086274948, 0.0102189742, 0.0104164137, -0.00313210371, 0.0114574563, -0.0253679454, -0.00840612315, 0.00386801339, 0.0145147722, -0.0103924815, 0.000886980619, -0.0221969523, -0.0182481688, -0.00159447105, -0.0281679928, -0.00184127013, 0.0072394372, -0.0220413934, -0.0214430932, -0.00849586818, 0.0174464453, -0.00102608558, -0.0173866153, -0.00117341708, 0.00090492965, -0.0115172863, 0.0150891412, 0.00181733805, -0.00677276263, -0.0279765353, -0.00139628397, -0.00598001434, 0.0180926099, -0.0247935764, 0.012947225, -0.00902835652, 0.00455007609, 0.00694627, 0.00746679166, 0.00388297089, -0.00291521964, -0.0112121534, -0.00304834149, 0.0330022611, 0.0251046941, -0.0064317314, 0.0051603429, -0.0277372152, -0.00612659799, 0.00168720772, -0.0221969523, -0.0249611, -0.00697020208, -0.0126480749, 0.0026983358, -0.0157831702, 0.0267320704, 0.00235580862, -0.0180686787, 0.0126121771, 0.00941126887, 0.0192293823, 0.0108053088, -0.00533684157, -0.00846595317, -0.0240038205, -0.017362684, 0.020174697, -0.00771209458, -0.00523213856, 0.00571676204, 0.0153643591, -0.0144788744, -0.0186310802, 0.0157353058, -0.00472657476, 0.0186071489, 0.00596206542, 0.0129711572, -0.00474751508, 0.00518726604, -0.0147062289, -0.00355091412, 0.0115472013, -0.00138207444, 0.00917194784, 0.0121036209, -0.000874266727, -0.0214191619, 0.0184037257, -0.00342527102, -0.0113736941, -0.010195042, 0.032308232, -0.0154600879, -0.0184994545, -0.0108531732, 0.0102309398, 0.00278658513, -0.0122053325, 0.00782577228, 0.00491503952, -0.0153045291, 0.0201627295, 0.0036316847, -0.0155079514, 0.00030849874, -0.0178293586, -0.00891467929, -0.00904032215, 0.0178054255, 0.0053488072, -0.00868134201, -0.0121514853, -0.00469366834, 0.000806957949, 0.0213832632, 0.00820868462, 0.0471700206, 0.0109728333, 0.0372860953, 0.00704199821, 0.0221610535, 0.0293645933, 0.0308483783, -0.0213593319, -0.0121215703, -0.00906425435, 0.0292688645, -0.0191815179, 0.0190498903, 0.0018367829, -0.000608770875, 0.028526973, -0.0227234568, 0.00385903893, 0.00947708171, -0.00334450044, -0.0112001877, -0.0197439194, 0.0115412185, 0.00625224132, 0.00513042789, -0.0210601818, -0.000863796507, -0.0127318371, -0.0229029469, -0.00530393468, 0.0121155875, 0.00924374443, -0.0273064394, 0.0137250163, -0.0140600642, 0.0126121771, 0.00983007904, 0.000983456615, -0.0299868267, 0.000477518653, 0.0218738709, 0.00561505137, -0.00261307787, -0.0199353769, 0.0136771519, -0.0246739164, 0.00775995897, 0.00473854085, 0.00528897718, -0.0161301848, -0.0251046941, -0.00655139145, 0.00522017293, 0.00278957654, -0.0116848107, 0.0507358909, -0.00247098156, -0.00833432749, -0.0194926336, -0.0130429529, -0.0033684324, 0.002269055, 0.00734114833, -0.0148737533, -0.0229986757, -0.00646164641, -0.00954289455, 0.00489409873, -0.0111822383, -0.0310876984, 0.00014032019, 0.000454334513, -0.0242790394, -0.0179250855, -0.00212247134, -0.00313509512, 0.0110805267, -0.006156513, 0.0093454551, -0.0104523115, 0.00090567756, 0.0190618578, 0.0150173455, -0.0122651625, 0.0161182191, -0.0159985572, -0.00600095512, -0.0205935072, -0.00214191619, 0.0264209546, -0.00359279523, -0.00181135512, -0.00150622171, -0.0289098844, -0.0199473426, 0.000744884252, -0.00384108978, -0.00110685616, -0.00787363574, -0.00837620813, 0.001077689, 0.0301543511, -0.00331757683, 0.00247696438, -0.00558214448, 0.0282876529, 0.0141438264, 0.0184156932, 0.00989589188, -0.0111702718, -0.00474751508, 0.00825056527, -0.00863347761, -0.0148857189, 0.0109130032, -0.0301782824, -0.00737704663, 0.0152925635, -0.00596505683, -0.0240277518, -0.00606377656, -0.0168601107, 0.0158071015, -0.00650352752, -0.0385305583, 0.0301543511, 0.0234533828, -0.0160224903, -0.020904623, 0.00923177786, 0.00230495306, 0.0106318016, -0.00340732187, 0.00241713435, -0.00567188952, -0.0115113035, -0.00133645395, 0.0141557921, 0.0159865916, -0.0141677586, -1.82879e-05, 0.0114095928, 0.0129352594, -0.0176618341, 0.0088668149, -0.00740696164, -0.00843005534, -0.00659925584, -0.00145536626, 0.00575565174, 0.00393980928, 0.0557137504, 0.0227713212, 0.0176139697, 0.0139404042, -0.002155378, -0.0276893526, -0.0232260302, 0.0179011542, 0.00172609719, 0.00142470328, -0.0256072655, 0.00218529301, -0.0025726927, -0.00966853742, -0.0159267616, 0.0045799911, 0.0206533372, 0.00236927043, 0.0151609369, -0.00819073524, 0.00926169287, -0.0140002342, 0.0106976144, -0.00516931713, -0.00395775866, 0.00423896, -0.0126720071, -0.00323680625, 0.00777790789, 0.00104553031, -0.00370348082, -0.00294064754, -0.00130055589, -0.00621036, -0.00770611176, 0.009106135, -0.00156006881, -0.00890271273, -0.00643771468, 0.00135215931, 0.000697394134, 0.00373937865, 0.0167763494, 0.004340671, 0.00603984436, -0.00421203626, 0.00810099, -0.00117566064, 0.0149575146, -0.0034940755, -0.0218978021, -0.00950699672, 0.0211678762, 0.00163485634, -0.0109847989, -0.0238602273, 0.0303936712, -0.00371843833, -0.00729926722, 0.00947109889, 0.0273543037, 0.01821227, 0.00114574563, -0.00418212125, -0.00366159971, -0.00506162317, -0.0193849392, 0.0064975447, 0.00581847318, -0.0151011068, -0.00178293581, -0.00163784786, -0.0064197653, 0.0144310109, 0.0208088942, 0.00486717559, 0.00516632572, -0.0103685493, 0.00412229123, -0.00258465856, -0.000655139156, 0.00693430379, 0.00452913577, -0.0131027829, -0.00842407253, 0.018966129, -0.0161301848, 0.00784970354, 0.000612510252, 0.0050825635, -0.00651549362, 0.0114514735, 0.00184426166, 0.0267560035, -0.0180208143, -0.00940528512, 0.013916472, 0.017243024, 0.021024283, 0.00624027522, -0.0162498448, -0.00758046843, -0.0121873831, -0.00549239945, 0.00946511514, 0.0147421267, 0.00265645469, -0.013282273, 0.00844202191, -0.00306180329, -0.00713772606, 0.00262055662, 0.0275696926, -0.00151444844, 0.00147331518, 0.0144788744, -0.00741294445, 9.46062792e-05, -0.00169019925, -0.00308423955, 0.0081488546, -0.00829244591, 0.012552347, 0.00933947228, 0.00692233816, -0.00126764935, 0.00519624073, 0.0170874652, 0.00576761784, -0.000774799264, -0.00255175214, 0.000872771, -0.0109788161, 0.00871724, 0.0161421504, 0.0210123174, 0.016094286, -0.0201268326, -0.0234055202, 0.0227114912, -0.0213114675, 0.0110266805, -0.0033564663, 0.0107155638, 0.0106676994, -0.0172908865, 0.0113198478, 0.00108741131, 0.0508316197, 0.0116010485, -0.00322484015, 0.00738901226, 0.00188763835, -0.0220892578, 0.0104822265, -0.00690438878, -0.00395177538, -0.0183438957, 0.0283115841, -0.00983007904, -0.00775995897, -0.00285987696, 0.02577479, 0.0104941921, -0.0102907708, -0.019420838, -0.00266094203, 0.00132673164, 0.0051334193, 0.0157712046, 0.0145746022, 0.030010758, 0.00226456788, -0.0014680801, 0.0087052742, -0.0115950657, -0.0145746022, -0.0215866864, -0.0200789683, -0.0233696215, 0.00248893048, -0.00523513043, 0.00834031, 0.0414024033, 0.00194447697, -0.0284312442, 0.00179490179, 0.0102668386, 0.0125643127, 0.000358980353, -0.0155079514, -0.00657532364, -0.00444836495, -0.00088249339, -0.000375620584, -0.0178054255, 0.0240636505, -0.00512444461, -0.0276414882, 0.0107574444, 0.013342103, 0.00266094203, 0.00196541753, 0.00635993527, -0.0111044589, 0.0284551773, 0.00415220624, -0.0182721, -0.0371903665, -0.021658482, -0.0121096037]
|
29 Jan, 2019
|
Writer append(char) method in Java with Examples
29 Jan, 2019
The append(char) method of Writer Class in Java is used to append the specified char value on the writer. This char value is taken as a parameter.
Syntax:
public void append(char charValue)
Parameters: This method accepts a mandatory parameter charValue which is the char value to be appended on the writer.
Return Value: This method do not returns any value.
Below methods illustrates the working of append(char) method:
Program 1:
// Java program to demonstrate
// Writer append(char) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a Writer instance
Writer writer
= new PrintWriter(System.out);
// Append the char value 'A'
// to this writer using append() method
// This will put the charValue in the
// writer till it is appended on the console
writer.append('A');
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
A
Program 2:
// Java program to demonstrate
// Writer append(char) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a Writer instance
Writer writer
= new PrintWriter(System.out);
// Append the char value 'G'
// to this writer using append() method
// This will put the charValue in the
// writer till it is appended on the console
writer.append('G');
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
G
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java/Split a List into Two Halves in Java/Randomly Select Items from a List in Java/Get first and last elements from ArrayList in Java/Java Program to Find the Length/Size of an ArrayList/Why Array.length() gives error when used in Java?/CharArrayWriter size() method in Java with examples/CharArrayWriter append() method in Java with Examples/Writer append(char) method in Java with Examples
|
https://www.geeksforgeeks.org/writer-appendchar-method-in-java-with-examples/?ref=ml_lbp
|
Pandas
|
Writer append(char) method in Java with Examples
|
memcpy() in C, C++, Python | Pandas Series.to_sparse(), Find Maximum and Minimum Element in a Set in C++ STL, Sum of all even occurring element in an array, std::function in C++, How to pass an array by value in C ?, Sorting a 2D Array according to values in any given column in Java, Java Program to Find the Length, Templates in C++ vs Generics in Java, Virtual Functions and Runtime Polymorphism in C++, C++ Programming Examples, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, array::fill() and array::swap() in C++ STL, Calculating the Product of List Lengths in a Dictionary – Python, Randomly Select Items from a List in Java, CharArrayWriter size() method in Java with examples, CharArrayWriter append() method in Java with Examples, Merging or Concatenating two Dictionaries in Python, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Competitive Programming – A Complete Guide, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Why Array.length() gives error when used in Java?, Hashing in Data Structure, Size of an ArrayList, Python Program to Swap dictionary item’s position, Sort given array to descending-lowest-ascending form, C++ Map of Functions, Sort an array in descending order based on the sum of its occurrence, How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Ways to change keys in dictionary, Pandas Tutorial, Python – Dictionary values String Length Summation, Frequency of an element in an array, How Does Default Virtual Behavior Differ in C++ and Java?, Initializing a List in Java, How to traverse a C++ set in reverse direction, Floating Point Operations & Associativity in C, C++ and Java, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Dictionaries in Python, Python | Calendar Module, Sort elements by frequency | Set 4 (Efficient approach using hash), Python | Pandas Series.var, Pandas, Comparison of Exception Handling in C++ and Java, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, set cbegin() and cend() function in C++ STL, Python | Pandas Series.to_string(), Foreach in C++ and Java, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, How to Delete an Element from the Set in C++?, STD::array in C++, Find the Kth occurrence of an element in a sorted Array, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
|
GeeksforGeeks
|
[-0.00530738849, 0.0397597477, -0.0140244942, 0.0275415909, -0.00275009987, 0.0269327126, 0.00703254342, 0.0058858227, -0.0357005596, -0.0307280533, 0.023015596, -0.000296511, -0.0198189858, -0.00552557, -0.0765562877, 0.0139433108, 0.00163509173, 0.0410383902, 0.00832133554, 0.0176777635, 0.0197580978, -0.0123196356, -0.0243957192, 0.0207830425, 0.0422967412, 0.0333056375, -0.00905199, 0.0139128668, -0.0282113571, -0.0189462602, 0.0275618862, 0.0241318736, 0.0293885209, -0.0199001692, -0.0232185554, 0.00610907795, 0.0193318836, -0.0212701447, -0.0106249247, -0.0190680362, 0.0172109567, -0.00731161237, 0.0349902026, -1.37057059e-05, -0.0195145458, 0.0283331331, 0.00259788032, -0.00468328828, -0.00561690144, -0.00255855685, 0.0191187765, 0.0112439506, 0.00963042397, -0.000775051187, 0.016368676, 0.0105437413, 0.00827059522, 0.0013953459, -0.0317631476, -0.022122575, -0.0186824128, -0.0487914383, -0.018154718, -0.0323517285, -0.0244363118, -0.020184312, -0.00948835164, 0.00638814736, 0.00765664363, -0.000428117492, 0.00117209053, 0.0134866526, 0.00122917292, 0.00920420885, -0.0315804817, -0.00419618562, 0.0177386515, 0.0186316725, -0.0185301937, 0.0532565452, -0.00597715424, -0.0262832418, -0.0166934114, 0.0126646664, -0.0124109676, -0.0191796627, -0.011629574, -0.00253572408, -0.0142376022, 0.0722941384, 0.00819955952, 0.0127154067, 0.0251263734, -0.00692091556, 0.00227314536, 0.025877323, -0.00623592781, -0.0059010447, -0.0580869801, -0.00645918306, 0.0393944196, 0.0128879221, 0.0121471202, -0.0155771337, -0.0469242148, 0.00697672926, -0.0123602273, -0.0461123772, 0.0242536478, 0.0154959504, 0.0224879012, 0.00458180858, 0.0141259739, 0.0237259548, -0.0114976503, 0.0355787836, 0.0107771447, -0.0426214747, 0.0080727106, 0.0513893217, 0.017200809, -0.00468328828, 0.0156989098, 0.0246595666, 0.0107061081, 0.0178299826, -0.0217978396, -0.0299974, 0.0271153767, -0.0495626852, -0.00220210943, -0.0361876599, -0.0338333324, -0.0235432908, -0.0379534066, 0.00621055765, -0.0138418311, -0.0061243, -0.00836700108, 0.0110206958, -0.00973697752, -0.0172109567, 0.010432113, 0.00509428093, -0.0220819823, 0.00604819, 0.0200523883, 0.022061687, -0.023969505, -0.0143593773, -0.023320036, -0.02534963, -0.000102827478, 0.0203568283, 0.0146232247, 0.00841266755, 0.0384811, 0.0278257336, -0.000738899049, 0.00397546729, -0.0166934114, -0.0208033379, -0.00661140261, 0.0157192051, -0.0308701247, 0.0097166812, 0.016368676, -0.0281504691, -0.0300379917, 0.0280286931, -0.0060025244, -0.016429564, 0.0511863604, -0.0185301937, -0.0558544286, -0.0147044091, -0.0055103479, 0.0202046093, -0.0131416209, -0.0024139483, -0.0101428963, 0.016368676, 0.0156380218, 0.0103763, 0.0239492096, 0.0158917215, -0.00664184662, -0.0555702858, 0.0147855924, -0.000539745146, -0.0374460109, -0.00648962706, -0.0152219553, -0.0280895811, -0.000260358851, 0.0202959403, 0.0276633669, -0.0468024388, -0.00368117611, 0.0193420313, -0.0180836823, -0.0213310327, -0.0285969805, -0.0187534485, 0.000232451945, 0.0255119968, -0.00439407118, -0.0407948382, 0.019047739, 0.0289014187, -0.0418908224, 0.0210468899, -0.00341479201, 0.0306265745, 0.0352337509, -0.0226096772, 0.00773782702, 0.0155568384, -0.00689047156, -0.0439204164, 0.00646933075, -0.0263847224, 0.037385121, -0.00811837614, -0.0229953, -0.0333056375, -0.0377707444, 0.00361521426, -0.0261614677, 0.0231779646, -0.00526172249, 0.0228532292, -0.0241318736, 0.0042240927, 0.0200422406, -0.0263238344, -0.00808793213, 0.0186824128, 0.0131517695, 0.0285969805, -0.0119847525, 0.00744353607, -0.0043103504, 0.0145318927, 0.00647440506, 0.0108989198, -0.00493445061, 0.00279576587, -0.0204075687, -0.04639652, -0.016429564, -0.0155466897, 0.0238680262, -0.00288963458, -0.0377910398, 0.0426620655, 0.0263441298, 0.0179619063, 0.0266079772, 0.0250654854, 0.0209860019, 0.0622679442, -0.0227923412, -0.0434333123, -0.0254105162, -0.0547990389, 0.00777334487, -0.0199306142, -0.00363804726, 0.0362079591, 0.00437123794, -0.024091281, 0.0158206858, -0.0307077579, -0.0045843455, -0.00176955224, -0.0358629264, -0.023969505, 0.0376489684, -0.00419872254, 0.00827059522, 0.0430273935, -0.0217166562, 0.0113961706, -0.000387525593, -0.0357411504, -0.0517140552, 0.022832932, 0.0185910817, 0.0094832778, 0.00142071582, -0.0265876818, 0.0235026982, 0.00698687742, 0.0458282344, 0.0157699455, -0.0310324933, 0.0308092367, 0.0378519297, -0.0418502279, 0.025288742, -0.0478172339, 0.027013896, -0.00940716825, -0.0328185335, 0.000180760719, 0.0166528188, -0.00020835051, 0.0429056175, -0.00588074885, 0.036674764, -0.0288811233, -0.0333462283, -0.00220718351, -0.0277851429, -0.00820970815, 0.0578840226, 0.0137403514, -0.0419314131, 0.00791034289, -0.0448946208, 0.00925494917, -0.00810315367, 0.00259153778, 0.0123703759, 0.0135475397, 0.0192202553, -0.0174545087, -0.00332853408, -0.0361673646, -0.0327779427, 0.00268921209, 0.0178096872, 0.00700209942, 0.00590611855, -0.00190528133, -0.0457876399, -0.00263593532, 0.0275212955, 0.00522113079, -0.022122575, 0.00226933975, 0.0215542894, 0.00505368924, 0.0297335517, 0.0109293638, 0.00153614895, 0.0204684548, 0.0106249247, -0.0109598078, 0.000482345698, 0.0191289242, 0.0639322102, -0.0261614677, 0.000598730228, -0.0350510888, 0.0188549291, 0.000896826852, -0.0493597277, -0.00999067631, 0.009138247, 0.0144405616, -0.020427864, -0.0478172339, 0.00580971269, -0.0724971, 0.0145420413, -7.12339897e-05, -0.00954924, 0.00763634732, -0.0027196561, 0.0112642469, 0.0057437513, -0.00300633605, 0.0709140152, -0.0157192051, -0.0337318517, -0.0097166812, 0.0577216521, 0.00656066276, 0.0432303511, -0.0105335927, -0.0155263944, -0.0206612665, -0.00656066276, 0.0326155759, -0.025877323, -0.0301394705, 0.0440421887, 0.000170929867, -0.0357614458, 0.0406527668, -0.0217775442, -0.0151407709, 0.0320675857, -0.0133242849, 0.00775812333, -0.00406679884, 0.0367559493, 0.0293885209, 0.0178198349, -0.00150951056, -0.0237259548, -0.0196870621, -0.00890991744, 0.0198189858, -0.027074784, 0.00769216148, 0.0328388326, 0.038704358, 0.0278054383, 0.0414443091, -0.0124718556, -0.027013896, -0.0105741853, -0.0109801041, -0.0021399532, 0.0344625078, -0.0202350523, -0.0034553837, 0.0065352926, -0.0295711849, 0.00187103194, 0.00959998, -0.0264253132, -0.0144405616, 0.0215948801, 0.0300582871, -0.0210671853, -0.00261563924, -0.0421343707, -0.00922957901, 0.0107264044, 0.0135272443, 0.0234418102, -0.0472895391, -0.00634248136, 0.00133445812, -0.0266891606, -0.0180227943, -0.0361876599, 0.00850399863, -0.0152828433, -0.0187737439, -0.0362485498, 0.02319826, -0.0332650468, -0.0187230054, 0.00690061972, 0.0257352516, -0.0485884808, -0.0181141272, -0.00718983682, -0.00399576314, -0.00767693948, -0.0194536578, 0.00171500689, -0.00124629762, -0.0143187856, 0.0224270131, 0.00186215248, -0.00594163639, -0.0178299826, 0.037141569, -0.0216760635, -0.0246798638, 0.0575186945, 0.0119543085, 0.00328540523, -0.00240760599, -0.034888722, -0.0384202152, -0.0200320929, -0.0334274136, -0.0134866526, -0.0341377705, 0.0222849417, -0.00357208541, 0.010213932, -0.0421749651, -0.00153361203, 0.0241115764, -0.0254308134, -0.0032042216, 0.0122283036, -0.0430679843, -0.00240760599, -0.02534963, -0.0178198349, 0.0129894018, -0.0121775642, 0.00695643341, 0.0195145458, -0.0133242849, -0.00725072483, 0.025877323, -0.0126849627, 0.00297335512, 0.0119746048, 0.0189868528, -0.00840251893, -0.00747398, 0.0255728848, 0.0100211203, 0.000233720435, -0.0148363318, -0.0226299725, -0.0295305923, -0.0282113571, -0.0200523883, -0.00892514, 0.0244972, -0.00207652827, 0.0176777635, -0.0187230054, 0.0148058888, 0.0251263734, 0.00313318567, -0.0085496651, 0.0175458398, -0.0280489884, 0.00630696351, -0.0186824128, -0.0140955308, 0.00654544076, -0.0124718556, 0.0175559875, -0.011660018, -0.017200809, 0.0352540463, -0.0126951104, 0.00236320845, -0.0156481694, 0.0269733053, 0.0062460755, -0.0406933613, 0.016429564, -0.0361876599, -0.00802197, -0.0177893918, 0.00818941183, 0.0301597677, 0.0285157952, 0.00478476798, 0.0223458298, -0.0238680262, -0.0142680462, -0.00627144566, -0.0117310537, 0.0240506884, 0.00904184114, 0.0420531891, 0.0414849035, 0.0327982381, 0.00855981279, 0.0185504891, -0.0132329529, -0.0355584882, 0.000948835223, 0.0179517586, -0.0267906412, 0.00243424438, -0.00878306851, -0.000450950407, 0.0313572288, -0.0463559292, 0.0282113571, 0.000851795252, -0.0300176963, 0.0154553587, 0.000481394323, -0.00408455776, 0.0167847425, -0.0167238545, 0.00942239, -0.000374840631, 0.00929046702, 0.0148566281, 0.0519170165, 0.0269733053, 0.0110409912, -0.00990949292, 0.0375474878, -0.0186824128, 0.0214731041, 0.00106363406, -0.0457064584, -0.000914585777, -0.0243145358, 0.00348836463, 0.0245174952, 0.0197276548, -0.0296726637, 0.00915854331, -0.0246798638, -0.005830009, -0.00957461, 0.0240100976, 0.00383085874, -0.00241902238, -0.0151306232, 0.0247204546, 0.0336100757, 0.0207323022, -0.0169775542, 0.0215339921, 0.0141361225, -0.0153335826, -0.027967805, -0.0148972198, 0.0369386114, -0.0432303511, 0.0216760635, 0.0032600353, -0.0116803134, 0.0278866217, -0.0280083977, 0.00600759825, -0.0106959604, 0.00144228025, 0.00259788032, -0.0183779746, 0.00986382738, 0.0416066758, 0.0274401102, -0.0267297532, 0.00597715424, -0.0141665665, -0.00364312134, -0.0060177464, 0.00568793714, -0.0127965901, -0.0155974301, 0.0306265745, 0.00481521199, 0.0112135066, -0.000595876132, 0.0136997597, 0.00372684211, 0.0270341914, -0.00531753618, -0.0190984793, 0.00227821921, 0.0446916595, -0.0143492296, 0.0250654854, -0.00390696852, -0.00646933075, 0.00379280373, -0.0285563879, -0.0147957401, -0.0427838415, -0.0175458398, 0.00625114935, -0.0323720239, 0.00419111177, 0.0456252731, 0.00478984183, -0.00635770336, 0.010213932, 0.0046858252, 0.0139940511, -0.0123399319, -0.00161606423, -0.023320036, 0.0223458298, -0.0167340022, -0.0179619063, 0.017444361, 0.0200219452, 0.00238350453, -0.0483449288, 0.0205699354, -0.0165107474, 0.000313001452, -0.00167822058, -0.018032942, 0.0158206858, -0.0118832728, 0.0255322922, 0.0170587376, 0.0157090575, -0.0229141172, -0.0102342274, -0.0192202553, -0.00472388, -0.0702239498, -0.0088642519, -8.57027771e-05, -0.0323923193, -0.0211483706, -0.0114266146, 0.0197885409, 0.0104118176, 0.0254511088, 0.0286375713, 0.0139128668, 0.00249132677, -0.0027196561, -0.0274198148, 0.0094426861, 0.00639829505, -0.0438392311, 0.0129995495, -0.0245580878, -0.0149784042, -0.0107771447, 0.0175965801, -0.0397800431, 0.0160033479, 0.0177690964, -0.00280845072, -0.0191796627, 0.0407339521, -0.0167137068, 0.0126240747, 0.0142578976, -0.0188041888, 0.0187128577, -0.0341580659, 0.00686510187, -0.011416466, 0.0157293528, -0.00365073234, 0.0114063183, -0.000396087969, 0.00231373729, -0.00124249212, 8.33243466e-05, 0.00180633867, -0.0303221345, -0.00398054114, 0.00512979878, -0.0235229954, -0.0400235951, 0.0147551484, -0.0270341914, -0.00527187064, -0.0328185335, -0.00228329329, -0.00814374629, 0.0213716254, -0.0293479301, -0.0155872824, 0.00762112532, -0.0194942504, 0.00361775141, 0.0145420413, -0.00872725435, 0.0477766432, -0.0303627271, -0.000544502, 0.0135881323, -0.0132836932, -0.0332650468, -0.010092156, -0.0142274536, 0.0107568484, 0.00351880863, 0.0481419712, -0.0167035591, 0.019108627, -0.00770230917, 0.00125200581, 0.0341377705, 0.00626637135, 0.00391711667, -0.0103560034, -0.026059987, -0.00334629323, -0.0168456305, -0.00213487912, 0.0155365421, -0.0214325134, 0.024030393, -0.00508413324, -0.0113860229, -0.0196464695, 0.00154883391, -0.019352179, -0.00767693948, 0.0030646869, -0.00234798668, 0.015414767, 0.0280489884, -0.00809808, 0.00645918306, -0.0355584882, -0.00557123544, -0.0292464495, -0.0143492296, 0.018215606, 0.0533783212, -0.0177690964, 0.058858227, -0.00077188, 0.0064490349, -0.00604819, 0.0172312539, -0.0246798638, 0.0152726946, -0.0243145358, 0.0101987096, 0.00169344246, -0.0104422616, 0.00981816091, 0.00806763582, -0.0154046183, -0.0293073375, 0.000235147498, -0.00867144, -0.00183678255, 0.0090367673, -0.0205496401, -0.0416472703, 0.0378925204, -0.0273589268, 0.00175052485, -0.0045995675, 0.00260802824, 0.00594163639, 0.0167847425, 0.0289014187, 0.013506948, 0.00263847224, 0.0292464495, 0.0274401102, -0.00235432899, 0.00280337664, 0.00976742152, 0.000794078631, -0.00163001765, 0.0188752245, -0.0193318836, -0.0390290916, 0.0212092567, 0.00997038092, 0.0229344126, -0.0001327957, 0.0193217359, -0.0174951013, 0.00882873405, -0.0433521271, -0.0226299725, -0.0108684758, -0.00382071082, -0.00858518295, -0.0137910917, 0.0277851429, -0.00184439356, -0.0166934114, -0.0365123972, -0.00509428093, 0.0552861392, -0.00112896168, -0.00462747458, 0.00396531913, -0.0440421887, -0.0258367322, -0.00883380789, 0.00507398508, -0.00997545477, -0.0288811233, 0.0059162667, 0.0393538289, -0.00918898731, -0.00436362717, -0.00663169846, 0.00616489165, 0.00620040949, -0.00146638171, 0.0274604075, -0.0119949, 0.00784945488, -0.0208033379, 0.00955938827, 0.0370603874, -0.0162164569, 0.00860547833, 0.0143289333, 0.0086511448, -0.00484565552, -0.0249437112, -0.0128473304, 0.0219399109, -0.00359745533, -0.0210265946, -0.00742831407, 0.00586045254, -0.0245580878, 0.00116130838, 0.0167543, -0.00753486762, -0.0198291335, 0.0113860229, -0.0100414166, 0.0404092185, -0.00464523351, -0.00525664864, -0.00477462, 0.0117614977, -0.000903803564, -0.00529216649, 0.00494713522, -0.00546468189, -0.0316819623, 0.00815389398, -0.00517546479, 0.00285411649, -0.012553039, 0.00185454148, 0.00330823823, -0.0119137168, -0.0322096571, 0.00957968365, 0.00273995195, -0.010153044, 0.00962027535, 0.00112071645, -0.00398054114, -0.0332650468, 0.0222240537, 0.00980293937, -0.0056118276, 0.00493445061, -0.04854789, -0.0201640166, -0.0271965601, 0.0120253442, -0.0303424299, -0.00570823299, -0.0215948801, 0.00529724034, -0.0120862322, 0.0255525894, -0.0261005796, -0.0618214346, -0.0058858227, -0.0317631476, -0.0264862012, 0.0092397267, 0.0120050488, -0.00628159335, -0.0176168755, -0.0115788337, -0.0321081765, -0.016307788, 0.0167745948, 0.000819448556, 0.022305239, 0.0262832418, 0.0066063283, -0.000366278284, -0.0288202353, 0.00344777294, -0.0133750243, 0.0028921715, -0.0284143165, 0.0210265946, 0.01144691, 0.00217673951, -0.0302612465, -0.00687017571, -0.018520046, -0.0111221755, -0.0297538489, -0.0208642259, -0.0146029294, 0.0285360925, 0.00354925264, -0.00667229, -0.000544184877, 0.000322198059, 0.0173631776, 0.0021399532, 0.0187940411, -0.058858227, 0.0028845605, -0.0282316525, -0.0228735246, 0.0145724854, 0.00239365245, -0.0350307934, 0.00808285829, 0.0196870621, -0.0262832418, 0.0396988578, 0.0062612975, 0.0221631676, 0.0138925714, 0.00257124193, -0.00544946, -0.0253090374, 0.0301394705, -0.0132126566, 0.0253293328, 0.0220819823, 0.0251466706, -0.0276633669, -0.0115280943, -0.0184388608, -0.02319826, -0.0085496651, 0.00360252941, 0.0237462502, -0.0140853822, -0.0132633969, 0.0343407318, -0.00357462256, 0.0040363553, 0.00219069305, -0.01544521, -0.00747905392, -0.000145004975, -0.0155771337, 0.0328997187, -0.0396582671, -0.05378424, -0.00572345499, 0.0393538289, -0.0130401412, 0.00221352605, -0.0306265745, -0.0227111578, -0.00802704412, -0.00873232819, 0.0149276638, -0.0015906943, 0.00628159335, -0.0102393022, 0.0230561886, -0.000706552411, 0.0273386315, 0.0130502898, 0.017200809, -0.00641351705, -0.00430273917, -0.0276227742, -0.0271762647, -0.00544438604, 0.00454375381, -0.0040363553, -0.00450062472, 0.00500548631, 0.000406235922, -0.0121268239, -0.0155568384, 0.00863592234, 0.00239238399, 0.0105437413, -0.015292991, 0.0230967794, 0.0161149763, 0.023786841, -0.00724565051, -0.038095478, -0.018459158, 0.0192405507, 0.0153132873, 0.0197276548, 0.0291449707, -0.00373699, -0.00164143415, -0.0373242348, -0.0032904793, 0.0361267738, -0.0401656665, 0.0144202653, 0.00757038547, 0.0148972198, 0.0102646714, -0.000124233353, -0.0157192051, -0.0117919408, 0.0171094779, -0.0214325134, -0.0261614677, -0.00290485634, 0.00292768935, -0.0450975783, 0.0166731142, -0.00421648147, 0.0107365521, -0.0143390819, -0.00782915857, -0.032026995, 0.0134968, 0.00142705825, 0.005784343, 0.0128777744, -0.00607356, 0.0111729149, -0.00424438855, 0.0159932, 0.00448540272, -0.00501817139, -0.0294494089, 0.0269733053, -0.022000799, -0.00945790857, -0.0137403514, 0.0170891825, -0.00624100165, -0.0176270232, 0.0197378024, -0.00379534089, 0.0124718556, -0.00473149121, 0.00915346947, 0.0290637854, -0.00777334487, 0.00686510187, 0.000566383591, -0.0100160465, -0.038095478, -0.00132557855, -0.00218435051, -0.0216557682, 0.0107264044, -0.00491922861, 0.0219602082, 0.0128067378, -0.0214528088, -0.00822493, -0.00734713, 0.00463508535, 0.0147855924, 0.000717968913, -0.0182257537, 0.0128168864, -0.00267145317, 0.0140853822, 0.0123297833, -0.00530738849, -0.00314333383, -0.00688539771, -0.00395263452, 0.0108278841, -0.0224879012, -0.00255602, 0.00389174651, 0.025816435, -0.0165919308, -0.0101226, 0.0179314632, -0.0227111578, 0.00723042851, -0.0159526095, -0.00209809281, 0.0303424299, -0.00467567705, 0.00332092331, -0.0218790229, -0.0136693157, -0.0184794534, 0.00842788909, 0.00531246234, 0.000534354069, 0.00434333133, 0.0199204646, 0.0263238344, 0.00104777794, 0.000989427092, -0.0331229754, 0.0593859218, 0.013659168, -0.00108900398, -0.0173733253, 0.0048583406, -0.00379280373, 0.00335644116, 0.0139636071, -0.00770738348, -0.0231576674, -0.00885917805, -0.00192304037, -0.0141056785, 0.00417335285, 0.00325749838, 0.00934628, -0.000123678386, 0.00776319718, -0.020184312, 0.0095847575, -0.00381056266, -0.0112033589, -0.00443973672, -0.011568686, 0.00355432648, 0.0229141172, -0.0244769044, -0.0031179639, -0.00378011889, 0.00280337664, 0.00116257684, -0.0222037584, 0.0158409812, 0.00724057667, 0.0200726856, -0.00608370826, -0.0107264044, -0.00392219052, 0.00130655116, 0.0236244742, -0.00979786552, 0.00530738849, 0.0177082084, 0.0032524243, 0.009168691, -0.0107061081, -0.0143695259, -0.00776827103, 0.00517039094, -0.00717968866, -0.0385013968, -0.00539364619, 0.012553039, 0.0129589578, 0.00574882515, -0.00274756295, 0.00620548381, -0.0246798638, -0.0172921419, -0.0132025089, -0.0101327477, -0.0146942604, -0.0209048185, 0.0031813886, -0.0125428913, 0.0189868528, -0.0267094579, 0.0140447905, 0.00367610226, 0.0294088181, -0.00386637659, -0.0044422741, -0.0176777635, -0.00290485634, -0.0109293638, 0.0164803043, 0.00983338337, -0.0182460509, 0.0380548872, -0.0177082084, 0.0122080082, 0.0172921419, 0.022305239, -0.012613927, 0.0047720829, 0.0216760635, 0.00777334487, 0.00932091, 0.000399893441, 0.0113454303, -0.0149479602, -0.0146333724, -0.00669258647, -0.000613000826, 0.0225690864, -0.0374257155, -0.00818941183, -0.0168760736, -0.00854459126, 0.011629574, 0.00373191596, -0.0214934014, -0.0209860019, -0.00429259147, 0.0255931802, -0.0100058988, -0.00984860491, 0.0108583281, 0.0133953206, -0.0065505146, -0.0277851429, 0.0238680262, 0.00157674088, -0.0136794634, -0.019169515, -0.0139534585, -0.00355940056, -0.0312963389, 0.00564734545, -0.013476504, 0.00725072483, 0.0162164569, 0.024030393, 0.00426975824, -0.00649470091, 0.00406679884, -0.013415616, 0.0122181559, 0.0281504691, 0.0135779837, -0.00448540272, -0.0174748041, -0.0131111769, -0.00521098264, 0.0137910917, -0.00982323475, 0.0105437413, -0.000735093607, 0.00611415179, -0.00447271764, -0.0389682055, 0.00530231418, -0.0029150045, -0.00748412777, 0.0112338029, 0.00911287684, -0.0105335927, -0.0440421887, 0.0194638073, -0.00196870626, 0.0291652661, 0.0175458398, -0.0111424709, 0.0113758743, 0.00555601344, 0.00329809031, -0.00037547489, -0.0160540882, -0.0364109166, 0.00534290634, -0.0172718447, -0.0122384522, -0.00175559882, -0.0215745848, 0.00473910198, 0.0374054164, 0.0201437213, 0.0271965601, 0.000226902266, 0.0156887621, 0.00723550282, -0.00380802574, -0.00299872505, 0.00177589478, 0.00611922611, -0.018215606, -0.00909258146, -0.0147044091, -0.000157372822, -0.00210950919, 0.0235229954, -0.00175306178, -0.00471626921, -0.00814882, -0.00537842419, -0.0161251239, -0.0129082175, -0.024984302, 0.0147855924, 0.0292667449, -0.00448793964, 0.0217572488, -0.0104524093, 0.0172921419, -0.0270341914, -0.0202452, -0.00173530285, -0.00467314, 0.00907735899, -0.000898729602, -0.0320066959, -0.00777841918, 0.00633740751, 0.0206308234, 0.00281859864, 0.00978264306, 0.00501309708, 0.0140143465, -0.00906213745, 0.039292939, 0.0152625469, 0.00190781837, -0.00223128498, -0.0296726637, -0.00975219905, -0.00874247588, -0.00848877709, -0.00553064374, -0.0155365421, -0.0045691235, 0.02319826, 0.0156684667, -0.00531246234, 0.00775304902, 0.00645918306, 0.0251466706, -0.0277445503, -0.00911287684, 0.0289217141, -0.0238883216, -0.00824015215, -0.0044524218, -0.0201335736, 0.00114037818, -0.0127255544, -0.0102951154, -0.000736996299, -0.0116397217, -0.00165919308, 0.00362536241, -0.0177386515, 0.0255728848, -0.0202857926, -0.0141665665, 0.0184896011, 0.0156887621, -0.0412819423, -0.00872725435, 0.0162063073, 0.0213107374, -0.0117817931, 0.00174291385, -0.0108380318, 0.0498874225, 0.000101241858, 0.0337115563, -0.0433927216, 0.00207906542, -0.0376489684, -0.00523127848, -0.0217369515, 0.014430413, 0.0149682555, 0.016490452, -0.0173428804, -0.0339754038, -0.000738264818, 0.017505249, 0.00669258647, 0.00179999624, 0.0179517586, -0.0056828633, -0.0225893818, -0.0244769044, 0.0245174952, 0.014430413, 0.0120862322, -0.00106870814, -0.00553064374, 0.0229953, 0.00835685339, -0.00791541673, 0.0309107173, 0.0134054683, -0.0024291703, 0.0141462702, 0.0029073935, 0.014643521, 0.0186418202, 0.0137403514, -0.00246088277, -0.0137809431, 0.0142274536, 0.0138925714, 0.00352895656, -0.0162164569, 0.0195145458, 0.00476447213, -0.0334274136, -0.0298959203, 0.012583483, 0.0191390719, -0.00566256745, 0.0425808839, -0.013415616, -0.0107264044, 0.0117513491, -0.0356802642, -0.0031103529, 0.0163483806, 0.0344625078, 0.0102342274, -0.0396988578, -0.0353961214, 0.00310020475, 0.0152321029, -0.0229344126, 0.0191999599, -0.00541901588, 0.0102595976, 0.0125936307, -0.0147551484, 0.0012691305, 0.022305239, 0.0013991514, 0.0129386615, 0.0295102969, 0.0161251239, 0.00293022627, -0.0612937398, 0.0169166662, 0.00193191983, -0.0184287131, 0.00215644366, 0.00505368924, 0.00166807254, 0.00319153653, -0.00863084849, 0.00149936252, -0.0109395115, -0.00344016193, -0.00731668621, 0.0098587526, -0.0127762947, 0.0210468899, -0.019108627, -0.0323517285, 0.00727609452, 0.00260041724, 0.012644371, 0.0132836932, -0.00333107123, -0.0445292927, 0.0170079973, -0.0316819623, -0.00966594182, 0.0470459908, -0.00475939782, 0.0178401321, 0.00198392826, -0.024030393, 0.0159627572, -0.000960251666, -0.00104016694, 0.0307077579, -0.0561385714, -0.0256337728, 0.0259179156, -0.00179619074, 0.0170384422, 0.012461707, -0.00954924, 0.00803211797, 0.00209936127, 0.0167238545, -0.00781901088, -0.0147044091, -0.018276494, -0.00864099618, -0.0265673865, 0.0141259739, -0.012674815, -0.0188650768, -0.0315601863, 0.00706298696, -0.00415305654, 0.0137606477, -0.0030164842, 0.00903169345, -0.00817419, -0.0327576473, 0.0162570477, -0.0313166343, -0.0109395115, 0.00267906417, -0.01359828, 0.00784438103, 0.0236244742, -0.0173327327, -0.0127965901, -0.0364718027, 0.000210728947, -0.0010547546, -0.00509428093, -0.0121572679, 0.0283331331, 0.0336100757, 0.00764649548, -0.0126849627, 0.0225690864, 0.00604819, 0.00555093959, 0.00479237875, 0.00458180858, 0.00635770336, 0.0303830225, 0.0199306142, -0.01839827, 0.0209657066, 0.0177488, 0.0292667449, -0.0126545187, -0.00600759825, 0.0195652861, 0.00553571759, -0.00764649548, 0.0167644471, -0.00606341194, -0.000948835223, 0.00441944087, -0.00785452873, 0.00920420885, -0.00794586074, 0.00369639811, -0.00879829, 0.00968116336, 0.00555601344, 0.00576912099, 0.0067484, -0.00343001378, -0.00671288231, -0.0179111678, 0.00713909697, -0.0114570586, -0.0204380117, -0.0184490103, 0.0209251139, -9.25209461e-05, 0.019291291, -0.00888962205, -0.0120354928, -0.000240697162, -0.011538242, 0.0396176763, -0.0128574781, 0.0310933795, -0.024862526, 0.00843803678, -0.00403381791, 0.00303170597, 0.00807778444, -0.0155162467, 0.00561690144, -0.000429068867, 0.00093615026, -0.00106934237, 0.0205699354, -0.00107251364, 0.00356954848, -0.0137200551, -0.0147348521, -0.00134714309, 0.0031737776, 0.00499787508, 0.0346654654, -0.00131162512, -0.00570823299, 0.0148160364, -0.00158815726, -0.00867651403, -0.00529216649, -0.0118731251, -0.0161251239, 0.0237462502, 0.0327576473, -0.017566137, 0.00762112532, -0.00953401811, -0.00388159859, -0.00916361716, -0.025166966, -0.00643888721, 0.00683465786, -0.00782915857, 0.0092092827, 0.023969505, 0.00926509686, -0.00253191846, 0.0129691055, -0.00180126471, 0.0209454112, -0.0122688962, 0.000524523202, 0.0112540992, 0.00769723533, 0.0186519697, 0.00969131105, 0.023076484, 0.0177893918, -0.0123602273, -0.00211331481, -0.0158409812, -0.00853444263, 0.00886932574, 0.00749427592, 0.00605326425, -0.02319826, 0.00585537869, 0.0151407709, 0.00967101566, 0.00741816591, 0.00185581, 0.0173733253, 0.00275517395, 0.0161454212, -0.00977756921, -0.00718476297, -0.0251263734, -0.00658095861, -0.0151103279, 0.00257377885, -0.000562261, -0.0155669861, -0.0140955308, 0.00494206138, -0.00702239526, 0.0094122421, -0.00108266156, -0.0137504991, 0.000888581621, 0.0168963708, 0.00274502602, -0.00389682059, 0.0125327427, -0.0235432908, 0.00172388647, -0.0065505146, -0.0101784142, 0.00966594182, 0.0134866526, -0.0166122261, -0.0186621174, 0.0098891966, -0.00986890122, 0.0201031286, 0.0157597978, -0.00481521199, 0.00765156932, 0.0141564179, 0.0254308134, 0.0085902568, -0.0348481275, -0.00792556442, -0.0350916795, 0.00488371076, -0.013537392, -0.016307788, -0.00809808, -0.0142984902, -0.0197986905, 0.0394553095, -0.0163889714, -0.0118731251, 0.0046401592, 0.00638814736, -0.0392320529, -0.00165792461, 0.00654036691, -0.0148160364, 0.00860547833, -0.0047010472, 0.0136388717, -0.0183272343, -0.00207399135, 0.0397800431, 0.00811330229, -0.00328033138, 0.00186342106, -0.0301800631, -0.00444988487, -0.01655134, -0.0159018692, 0.0021551752, 0.0163280834, -0.00181394967, 0.00937165, 0.00772767933, -0.0177082084, 0.0166426711, 0.0021551752, 0.00395517144, -0.0226502698, -0.0392726436, -0.00345792086, 0.0168760736, -0.0030570759, -0.00664692046, -0.00173657143, -0.000641541963, 0.0398206338, 0.00243170722, 0.00220972043, -0.0269124173, -0.00622577965, 0.0147348521, 0.0141564179, 0.00209048181, 0.0157192051, 0.000954543415, -0.00535812834, 0.0416472703, 0.0199103169, -0.0139128668, 0.0119441608, 0.00638307305, 0.00908243284, 0.0142477499, -0.0180735346, 0.0126646664, 0.00476700906, 0.00846848078, 0.00119872892, 0.00257885293, 0.0177792441, 0.0159729049, -0.00347821671, 0.0129183661, 0.0185301937, -0.0167644471, 0.0207830425, -0.00111500826, 0.0183069389, 0.00284143165, 0.0032752573, -0.0121166762, -0.00586552685, -0.00259280647, -0.0140955308, -0.0123399319, 0.00798137859, 0.026242651, 0.0201031286, -0.0142274536, 0.0110612875, 0.00283635757, 0.0140447905, 0.00757546, -0.0218181349, -0.00544946, 0.00184693059, -0.00566764129, 0.00203466811, -0.00853951648, 0.024862526, 0.0099297883, 0.00440421887, 0.0211280733, -3.68161227e-06, 0.0204177164, -0.00221352605, 0.0167340022, -0.00416066777, -0.0122790439, 0.00941731595, -0.00342494, 0.0140041988, 0.0357614458, -0.024984302, -0.0373039395, -0.00793571305, -0.0293073375, -0.00280337664, 0.00862577464, -0.0119340131, -0.00400844822, 0.00690569356, 0.00122790434, -0.000730653817, -0.0160845332, -0.00088667887, -0.0136997597, -0.0111221755, -0.0145115973, -0.010523445, 0.0168963708, -0.00140168832, -0.00737250037, 0.0211483706, -0.00803719275, 0.0059720804, -0.00452345749, -0.00254079793, -0.0174951013, -0.0111627672, 0.0223458298, 0.00995008461, 0.00439153425, 0.0164397117, 0.0131517695, 0.00394502329, 0.00285157957, -0.00667229, 0.0059010447, 0.0204075687, -0.0188143365, -0.0089961756, -0.0200219452, -0.0254714042, -0.0105031487, 0.0013915404, 0.00525157433, -0.0146029294, -0.00140041986, -0.0153335826, -0.00625622366, 0.0243754238, -0.000342176878, -0.0017035905, 0.00839237124, -0.00666721631, -0.00994501077, 0.00190654991, -0.00801689643, 0.0032904793, -0.00122980715, 0.014460857, -0.0317428522, -0.00730653852, 0.0108989198, 0.0133953206, 0.0148667758, -0.00552557, -0.0155466897, -0.0324532092, 0.00748412777, 0.00256743655, -0.0167238545, 0.00816404168, -0.00383339566, 0.00341732893, 0.0160845332, 0.0389276147, 0.0152219553, -0.0122688962, 0.00852429494, 0.0131111769, 0.00705791311, 0.0226299725, -0.0289420113, 0.0231576674, 0.00332346023, -0.0152016589, -0.00515516894, 0.0213310327, 0.00339449593, 0.0193014387, 0.017079033, -0.0225081984, -0.0112236552, 0.0240506884, 0.0130198458, 0.0100414166, -0.0207627472, -0.0088744, 0.0184084177, -0.0111830635, 0.0186215248, 0.0149479602, 0.0332447514, -0.010401669, 0.00199407618, 0.00821985584, -0.0140650868, -0.00469851028, -0.00799152628, -0.0122080082, 0.0148566281, 0.00253191846, -0.0107061081, 0.00236701407, -0.025166966, -0.0129589578, -0.00551542174, 0.00171881239, -0.00111373968, 0.00546468189, 0.00651499676, 0.00415813085, 0.0102494499, 0.00953401811, 0.0323111378, 0.00265369425, -0.02504519, -0.00144354871, 0.00191289233, -0.0128980698, 0.00169090554, 0.0202553477, 0.00319914753, -0.00359745533, 0.00116321107, -0.0183272343, -0.0225487892, 0.00943253841, -0.000592704862, 0.0106959604, -0.0185301937, 0.0152523993, 0.00283635757, 0.00158815726, 0.00207652827, -0.0032042216, -0.00717461482, -0.0150900315, 0.010213932, -0.0227517486, 0.000414798269, -0.00903169345, -0.0129488101, -0.0112033589, 0.00483043399, -0.0234418102, -0.00512979878, 0.00639829505, -0.0122080082, -0.0204177164, -0.0325749852, 0.0128980698, 0.00576404715, -0.0153335826, -0.00248371577, 0.0155872824, -0.0020689175, 0.00213614781, 0.00216786, 0.0029784292, 0.0300785825, 0.0140650868, -0.0157395024, -0.000132082176, 0.000861943234, -0.0140650868, -0.00553064374, 0.00808793213, -0.0065352926, -0.00772767933, -0.0103712259, -0.0179923512, -0.00432049809, -0.0102849677, -0.00759575563, 0.0123196356, 0.00404396607, 0.0140955308, -6.03724948e-05, -0.00296067027, 0.00257885293, 0.0159830526, 0.00486848876, 0.00256489939, -0.0312760435, 0.0223255344, -0.0166122261, -0.00812852383, 0.0130908815, 0.0243957192, -0.00828074384, -0.0295102969, -0.0157293528, 0.00974205136, -0.0267906412, -0.0061293738, -0.0218587276, 0.0327779427, -0.00174671935, 0.00734205637, -0.0180430915, -0.0109496601, -0.0105031487, -0.0283737238, 0.00466299243, -0.00809300598, 0.01544521, 0.00487102568, 0.00421901839, 0.0209454112, 0.00316109275, -0.00609385595, 0.00380548881, 0.00421140762, -0.000393550959, -0.00343762478, -0.00625114935, -0.00488624768, -0.0160134975, -0.00402874406, -0.0066367723, -0.0128777744, 0.0177995395, 0.00729131652, 0.0139839025, 0.0260396916, -0.00192430883, -0.0176270232, 0.0012767415, -0.0245377924, 0.000456024398, -0.00483043399, -0.00548497774, 0.0219196156, 0.00441944087, 0.0032828683, -0.0244566072, 0.0141462702, 0.00250274315, 0.0229344126, -0.0112946909, -0.0116498694, -0.00882366, 0.00979279075, -0.0180024989, 0.0189868528, -0.0236447696, -0.000461415504, 0.0107771447, 0.000205813514, 0.0243145358, -0.00699702557, 0.00209682435, 0.0119949, -0.00616489165, -0.0171297733, -0.00503339339, 0.0271559674, 0.0058858227, 0.00110422599, 0.0180430915, 0.0114976503, -0.0104219653, 0.019352179, 0.00944776, 0.00644396106, -0.00808285829, -0.0162469, -0.00137758697, 0.0150189959, -0.00716954097, 0.00473910198, -0.00212346273, 0.0237462502, -0.0033742, 0.0113251349, 0.00678899186, 0.021229554, -0.000932979, -0.0224067178, 0.0230561886, -0.0184388608, -0.00776319718, 0.0114875026, -0.0209251139, -0.0272168554, 0.0131720649, -0.00655558845, 0.0062765195, -0.0128879221, 0.00409216899, 0.0253090374, -0.0142477499, 0.00767186517, 0.00503593031, 0.0029708182, -0.00529724034, -0.0119137168, 0.0196972098, 0.00471373228, -0.00584015669, 0.0090976553, 0.0376692638, 0.0200219452, -0.0106350724, 0.0320066959, -0.013476504, -0.0175965801, -0.0150088482, 0.0122486, 0.0310933795, 0.00465791812, 0.00558645744, 0.0048278966, 0.00702239526, -0.037263345, -0.00380041474, 0.0188041888, -0.00803719275, 0.000350104965, -0.00928539224, -0.0196667667, 0.0343407318, -0.0140447905, -0.0162874926, 0.00418857485, 0.0104727056, 0.0216963608, 0.00387145067, 0.0046706032, 0.0215339921, 0.00430781348, 0.0175965801, 0.000804860902, -0.00850399863, -0.000669131754, 0.00903169345, -0.00719491066, 0.00519576063, -0.0139636071, -0.0190578885, 0.000853698, 0.0205597878, 0.00326510938, 0.00410485407, 0.0260193944, 0.0201335736, -0.0133039886, -0.00705283927, -0.00815389398, -0.0137302037, -0.0197378024, 0.02135133, -0.00571838114, 0.0158511288, -0.0337521471, 0.00545453373, -0.00368625019, 0.0295914803, -0.0111729149, -0.00986890122, -0.00927524455, -0.0159424618, -0.0179923512, -0.00801689643, -0.0221631676, 0.00690569356, -0.00356954848, -0.0148566281, -0.00477462, 0.000142467979, 0.0139128668, -0.00806256197, 0.00991964061, 0.0118426811, 0.0177589469, -0.00589089654, 0.0133141363, 0.00707820896, -0.0056118276, -0.0109902518, -0.0139534585, 0.00757038547, -0.0197479501, -0.000375157775, 0.0432303511, 0.0134866526, -0.00802197, 0.0169166662, 0.0063171112, -0.0155466897, 0.00289724558, 0.0178604275, -0.0263035391, -0.00848370325, 0.0317022577, -0.0336506702, -0.00212726812, 0.0348481275, -0.0134866526, -0.0303221345, 0.0061445958, -0.00997545477, -0.02135133, -0.0278054383, -0.00676362216, 0.00692598941, 0.0128067378, 0.0368574262, -0.01839827, -0.0152016589, -0.0346248746, 0.000303170615, -0.0295914803, 0.00372176804, 0.0111120269, -1.83436459e-05, -0.016399119, -0.012522595, 0.00630696351, -0.0177893918, -0.0154655064, -0.00709343096, 0.0267703459, -0.011568686, -0.00374967488, 0.0189158171, -0.00594163639, -0.00195348426, -0.00230105221, 0.00195855834, 0.025166966, 0.0028135248, 0.00687524956, -0.00781393703, -0.0176168755, 0.0159526095, -0.00339703308, -0.0125124473, -0.00324227638, -0.00141183636, -0.0140549382, 0.00033742, 0.00549005205, 0.0265470892, -0.00627144566, -0.0119543085, -0.0270544887, 0.0118325334, -0.0152828433, 0.0057285293, 0.00671288231, -0.0119238645, -0.00543423789, -0.0189564079, 0.0246392712, 0.0061293738, -0.0110003995, -0.00503846724, 0.0213919207, -0.0010851986, 0.0325140953, 0.0179010201, -0.00155010237, 0.00111881376, -0.00330823823, 0.00482535968, -0.0109902518, -0.00792556442, 0.0269733053, -0.0123906713, 0.0149175161, 0.00666214246, 0.00964564551, -0.037750449, -0.022061687, -0.00212346273, 0.00204862142, -0.00649470091, 0.00754501577, 0.028860826, 0.00264608325, -0.011477354, -0.00963549782, 0.0235026982, 0.0281707644, 0.00415559392, 0.00539364619, 0.0119644571, -0.00137251301, 0.0110511398, 0.00121775642, -0.00417081593, 0.00524650048, -0.0138316834, -0.0236041788, 0.0117817931, -0.00909258146, -0.0255525894, 0.00276532187, -0.00326510938, 0.0160642359, 0.00894543529, -0.00444988487, -0.0179517586, 0.0108075878, 0.00957968365, 0.00854459126, -0.0103661511, 0.00763634732, -0.0141462702, -0.0176980607, -0.0029708182, -0.00248752115, -0.000422092126, 0.00623592781, 0.0167543, 0.00681436202, 0.00143466925, 0.0137707954, -0.0208236352, 0.00768201333, -0.00335644116, 0.00181521813, -0.020336533, 0.018580934, 0.01344606, -0.00353149348, 0.011477354, -0.0102951154, -0.00167948904, 0.0200828332, 0.0172718447, -0.00172008097, -0.0208236352, 0.00339195901, -0.0118122371, -0.00911287684, 0.0167644471, 0.00898095313, -0.00175940432, 0.0175965801, -0.00911287684, 0.0156278741, -0.0188853722, 0.0117412014, -0.00371415704, -0.0118020894, -0.0117209051, -0.00126278808, -0.000761097763, -0.0192608479, 0.00919913501, 0.0102798939, 0.00238350453, -0.000897461083, 0.0256337728, 0.00803211797, 0.0130198458, -0.0268109366, 0.0172414016, -0.0093817981, -0.0113454303, 0.034178365, -0.00374967488, -0.00139407744, -0.0327170566, 0.0262629464, 0.00149175164, 0.0110308435, -0.00770738348, -0.0154350623, 0.00505368924, 0.0141259739, 0.00784945488, -0.0203771237, 0.0232997388, -0.00481013767, 0.00288202357, -0.00444734795, 0.000720505894, 0.0028845605, 0.0100363428, -0.00272219302, -0.00970146, 0.0189767033, 0.0142477499, 0.0055407919, 0.00533275818, 0.0260802824, 0.00455897534, -0.0175965801, 0.00506637385, 0.0062308535, 0.0157090575, 0.0043813861, 0.00158562034, 0.00242282776, -0.00165158208, -0.019230403, -0.0066367723, -0.00400083698, 0.014613077, -0.00959998, -0.00762112532, 0.00312050083, -0.0253902208, -0.0132025089, 0.00929554086, -0.0110206958, 0.0251263734, 0.000702746911, 0.0184490103, -0.0140853822, -0.0105741853, 0.00163889711, -0.0199001692, -0.000567017822, -0.018520046, -0.0084786294, 0.00115560007, -0.0023124686, 0.0205090474, -0.0223864224, -0.0247610472, 0.00331584923, 0.0386028774, 0.012431263, 0.00584015669, 0.0204786044, 0.0257758442, 0.00854459126, 0.0157496501, 0.00986890122, 0.0142984902, -0.0157496501, 0.00447525503, 0.00675854785, -0.0123196356, -0.00431288732, -0.0403077379, 0.000828328077, 0.00914839469, -0.00821985584, 0.00705791311, 0.00356954848, 0.0160439406, 0.0228126366, 0.0190274436, -0.0157395024, -0.0190578885, 0.0023353016, 0.010401669, 0.0160134975, 0.00673825201, -0.0145115973, 0.0132025089, -0.0219805036, 0.018337382, 0.0184084177, 0.00572345499, -0.0184794534, 0.0281301737, 0.0127052581, 0.0139331631, 0.00968116336, 0.00144862279, 0.01439997, 0.000901900814, 0.00842788909, 0.0140346428, -0.0306468699, 0.00132050458, 0.00723550282, -0.0210062973, 0.0142680462, 0.0138824228, 0.012583483, 0.0147247044, -0.0457470492, 0.00911795069, -0.00285919057, -0.0142274536, 0.0189158171, -0.0057133073, 0.0150494399, -0.0223864224, -0.00801689643, -0.0227111578, 0.00491161738, -0.0232185554, -0.00388413551, -0.0171703659, -0.0281301737, -0.00930568855, -0.00263593532, 0.0296523683, -0.010493001, -0.0188650768, 0.00866129249, 0.0125936307, 0.00193318829, 0.0145115973, 0.0117919408, 0.00127610727, 0.00524650048, 0.0062765195, -0.000245929725, -0.00646425691, -0.000425580482, 0.0122181559, 0.0127255544, 0.0055966056, -0.0087627722, -0.0184084177, 0.000811837614, -0.0130705852, 0.019413067, 0.0291652661, -0.0049141543, -0.0170993302, 0.0123703759, 0.0250857826, -0.00330316415, 0.0171906613, -0.0127052581, 0.0148261841, -0.00309259398, 0.00520590879, -0.00178477424, 0.00983845722, -0.00252684462, 0.00634248136, 0.0216151755, 0.0140955308, -0.00831626169, -0.0118223848, -0.0117412014, -0.0130401412, 0.0174545087, -0.00737757422, -0.020306088, 0.00701732142, 0.0233403314, 0.0154046183, 0.00207018596, 0.0335086, -0.0103357071, -0.00871710666, 0.0137910917, 0.00506637385, 0.00150951056, -0.0118629774, -0.0100515643, -0.0180532392, -0.00321944361, -0.035355527, 0.00284650573, 0.0044372, -0.0164803043, -0.0239492096, 0.0065505146, 0.0106046284, -0.00386130251, -0.00050613, -0.00750442408, 0.00337166316, -0.00444988487, 0.0196261741, -0.00339957, -0.00180380163, -0.00879829, -0.00398561545, 0.00794078689, 0.0195043981, -0.0273995195, 0.0101073785, -0.00890484359, 0.00288709742, -0.00364565826, -0.00448032888, -0.00225411775, -0.010523445, -0.0176067278, 8.34829116e-05, 0.0259585083, 0.0228532292, 0.00252938154, 0.00611415179, -0.0296320729, -0.0102240797, 0.00201817765, -0.00891499128, -0.00578941684, -0.00303170597, -0.0142781939, -0.00882366, -0.0094832778, 0.00546975574, -0.0181141272, -0.00578941684, -0.00354164164, 0.0178807229, 0.0216557682, 0.011568686, 0.00534290634, -0.0215948801, -0.0186925605, -0.0111120269, 0.0157496501, -0.00751457177, -0.00159957376, -0.00996530708, 0.023015596, -0.0141259739, -0.0132938409, 0.0200523883, -0.00828074384, 0.0133547289, -0.00719491066, 0.00289470842, 0.00418603746, 0.00460717827, -0.0137606477, 0.00764142163, 0.0137099074, -0.00749935, 0.00189005944, -0.00398815237, -0.00903169345, -0.0323314331, 0.0230358914, -0.00327779423, 0.000160306212, -0.0056422716, 0.0524853021, -0.00812852383, -0.022366127, -0.00113847537, -0.00767693948, 0.00713402312, -0.0132532492, 0.0325140953, 0.0142578976, -0.0143187856, 0.0137099074, 0.0165310428, -0.00670273416, 0.000163794582, -0.0222037584, -0.0107771447, -0.00892514, 0.00192050333, -0.000838476, 0.0130401412, -0.00884395558, -0.00228583021, -0.00597715424, 0.023320036, -0.000738264818, 0.0491161756, 0.0110206958, 0.0284346119, 0.00525664864, 0.0151407709, 0.0137200551, 0.0303424299, -0.0155162467, -0.00672303, -0.0309716053, 0.0209657066, -0.0265470892, 0.00979786552, -0.00424692547, 0.0116904611, 0.0171196256, -0.00720505882, -0.00792049058, 0.00641351705, -0.0160439406, -0.0131416209, -0.0209454112, 0.00690569356, 0.00256236247, -0.00167568354, -0.010244376, 0.00818941183, -0.0217572488, -0.0147044091, 0.00558138359, 0.000783930707, 0.00191669783, -0.0293682255, 0.0146333724, -0.00476954598, 0.00979279075, -0.000568603456, 0.0111221755, -0.0306265745, 0.0162773449, 0.0138418311, 0.00549005205, -6.74285038e-05, -0.00993486308, 0.0217978396, -0.0257961396, 0.00241141138, 0.00131669908, -0.0101023046, -0.00853951648, -0.0277648456, -0.000926636509, 0.016186012, -0.00907735899, -0.00440675579, 0.0306062773, -0.00353403063, -0.00885410421, -0.0108786244, 0.00662662461, -0.0230358914, -0.00197885418, 0.010183488, -0.00807778444, -0.019047739, -0.00460464135, -0.00891499128, 0.0153741743, -0.0130807338, -0.0379737057, -0.0153640267, 0.00402620714, -0.024213057, -0.0181648657, -0.00963549782, -0.00628159335, 0.0066367723, -0.0190578885, 0.0148667758, -0.0065352926, 0.0124515593, 0.0117817931, 0.00758053362, 0.00160845323, 0.00272726687, -0.0196160264, 0.00311288983, -0.0197580978, -0.0020308625, 0.0150189959, -0.00163636019, -0.00120887696, 0.00747398, -0.0244566072, -0.0141259739, 0.00376489689, -0.00367102819, 0.00655558845, -0.0231170766, -0.0212092567, 0.0174037684, -0.000355178956, 0.00594163639, 0.00399322622, 0.00110359176, 0.0245174952, 0.0234012194, 0.0151306232, 0.00929046702, -0.0048735626, 0.00349597563, 0.0121166762, -0.0166122261, -0.0277039576, 0.00133318955, -0.0293276329, -0.0111323232, 0.00501309708, -0.00871203188, -0.0225893818, -0.0160033479, -0.0187940411, -0.00273234094, -0.00748920208, -0.0215948801, 0.0317834429, 0.0253293328, 0.0117513491, -0.00744861, -0.00786467642, 0.00752472, 0.00259407493, -0.0119644571, -0.00477462, 0.000169344246, 0.00116447953, 0.00124566338, 0.011416466, 0.0176980607, -0.00823000353, 0.00382324774, 0.0159120169, 0.00466045504, -0.0291449707, 0.0232794434, 0.00224270136, -0.00776319718, 0.00276278495, -0.00871710666, 0.00611922611, 0.00377758197, 0.00324735045, 0.0111830635, 0.0162469, 0.0065048486, -0.0106553687, -0.0125631867, -0.0224067178, 0.015414767, 0.0134054683, -0.0155974301, -0.0216557682, -0.00829596538, -0.000878433639, -0.00793063827, -0.02135133, 0.014643521, 0.0209860019, -0.000692599, -0.0041936487, 0.00208540796, -0.00377504481, -0.00698180357, -0.0046401592, -0.00852429494, -0.0100008249, 0.0046858252, -0.0123805236, -0.00321690645, -0.00511457678, -0.00702746911, 0.00400844822, 0.00618518796, 0.0114976503, -0.0139737548, -0.0141158262, 0.0110206958, 0.00887947343, -0.0122181559, 0.00402620714, 0.0109293638, -0.000288265786, 0.00890991744, 0.00797123089, 0.0111221755, 0.0120963799, -0.00412515, 0.012461707, -0.00816911552, 0.0269124173, 0.00697672926, -0.0213919207, 0.00340971793, 0.0218384322, 0.0160236452, -0.00840251893, -0.0207830425, 0.00811330229, -0.0133648766, -0.00577419484, -0.0110003995, 0.0046147895, 0.0156177264, 0.0217978396, -0.0109699555, 0.00821478199, 0.00659618061, -0.0064338129, -0.0147754448, -0.0061445958, -0.00716446666, -0.00253318693, -0.0130604375, -0.00143974321, 0.0226908606, 0.0245580878, 0.00202578842, 0.00324735045, -0.00794078689, -0.0126646664, -0.00388159859, -0.00275263679, 0.00886932574, -0.00428751716, -0.00694121141, -0.00611922611, 0.00166807254, -0.0192506984, 0.0105640367, 0.00892006606, 0.0150291435, -0.0113352826, 0.00742324, 0.0164498594, 0.0147044091, -0.00105602317, -0.00762112532, 0.0157699455, -0.0084177414, 0.0122688962, 0.00102113944, -0.0048431186, -0.0128777744, -0.00797123089, -0.00645918306, 0.0169877019, -0.0024063373, 0.00395517144, -0.0187635962, -0.0026105654, -0.00208540796, -0.0159627572, -0.000397990691, 0.0300785825, -0.0234012194, 0.00123234408, 0.0121166762, -0.0029936512, -0.00210189819, -0.0106655164, -0.0139737548, 0.00868666265, 0.00251289108, 0.0097268289, 0.0120354928, 0.00421394454, -0.00262325024, -0.00626637135, 0.0224473104, -0.00429259147, 0.00240506884, -0.00444734795, 0.0141056785, -0.0102849677, 0.00362282526, 0.0239898, 0.0127357021, 0.0231170766, -0.0303018391, -0.0100363428, 0.00988412276, -0.0304845013, -0.00249259523, -0.0129488101, 0.00353656756, 0.00812852383, 0.00146003917, 0.0103154117, 0.0106350724, 0.050212156, 0.00551542174, -0.00301902113, 0.00199280772, -0.00346806878, -0.00362282526, -0.0010452409, -0.00339449593, -0.0016059163, -0.00638307305, 0.0298147369, -0.00242029084, -0.00126722781, 0.00669258647, 0.022244351, 0.0134054683, -0.00207906542, -0.012613927, 0.012400819, 0.00516785355, 0.0104422616, 0.0097572729, 0.0299771037, 0.0416472703, 0.0107669961, -0.00673825201, 0.00902154576, -0.0116904611, -5.17804119e-06, -0.0129386615, -0.0298147369, -0.0361673646, -0.000212314568, -0.0111323232, 0.01544521, -0.00366341718, -0.0129894018, -0.0217978396, -0.00712387497, 0.026059987, 0.0187230054, 0.0226502698, 0.0158815738, 0.00395009713, -0.0137504991, 0.0021171202, 0.00417081593, -0.0254714042, 0.0153031386, -0.0202959403, -0.0250248946, 0.00140803086, 0.0177792441, 0.00504100416, -0.00455643842, -0.00409977976, -0.0205394924, 0.0110511398, 0.000519766356, -0.0122993393, -0.034523394, -0.023969505, -0.00828581769]
|
31 Jan, 2019
|
PrintWriter append(CharSequence) method in Java with Examples
31 Jan, 2019
The append(CharSequence) method of PrintWriter Class in Java is used to write the specified CharSequence on the stream. This CharSequence value is taken as a parameter.
Syntax:
public PrintWriter append(CharSequence charSequence)
Parameters: This method accepts a mandatory parameter charSequence which is the CharSequence to be written in the Stream.
Return Value: This method returns this PrintWriter instance.
Below methods illustrates the working of append(CharSequence) method:
Program 1:
// Java program to demonstrate
// PrintWriter append(CharSequence) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a PrintWriter instance
PrintWriter writer
= new PrintWriter(System.out);
// Write the CharSequence 'GeeksForGeeks'
// to this writer using append() method
// This will put the charSequence in the stream
// till it is printed on the console
writer.append("GeeksForGeeks");
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
GeeksForGeeks
Program 2:
// Java program to demonstrate
// PrintWriter append(CharSequence) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a PrintWriter instance
PrintWriter writer
= new PrintWriter(System.out);
// Write the CharSequence 'GFG'
// to this writer using append() method
// This will put the charSequence in the stream
// till it is printed on the console
writer.append("GFG");
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
GFG
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java/Split a List into Two Halves in Java/Randomly Select Items from a List in Java/Get first and last elements from ArrayList in Java/Java Program to Find the Length/Size of an ArrayList/Why Array.length() gives error when used in Java?/CharArrayWriter size() method in Java with examples/CharArrayWriter append() method in Java with Examples/Writer append(char) method in Java with Examples/PrintWriter append(CharSequence) method in Java with Examples
|
https://www.geeksforgeeks.org/printwriter-appendcharsequence-method-in-java-with-examples/?ref=ml_lbp
|
Pandas
|
PrintWriter append(CharSequence) method in Java with Examples
|
memcpy() in C, C++, Python | Pandas Series.to_sparse(), Find Maximum and Minimum Element in a Set in C++ STL, Sum of all even occurring element in an array, std::function in C++, How to pass an array by value in C ?, Sorting a 2D Array according to values in any given column in Java, Java Program to Find the Length, Templates in C++ vs Generics in Java, Virtual Functions and Runtime Polymorphism in C++, PrintWriter append(CharSequence) method in Java with Examples, C++ Programming Examples, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, array::fill() and array::swap() in C++ STL, Calculating the Product of List Lengths in a Dictionary – Python, Randomly Select Items from a List in Java, CharArrayWriter size() method in Java with examples, CharArrayWriter append() method in Java with Examples, Merging or Concatenating two Dictionaries in Python, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Competitive Programming – A Complete Guide, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Why Array.length() gives error when used in Java?, Hashing in Data Structure, Size of an ArrayList, Python Program to Swap dictionary item’s position, Sort given array to descending-lowest-ascending form, C++ Map of Functions, Sort an array in descending order based on the sum of its occurrence, How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Ways to change keys in dictionary, Pandas Tutorial, Python – Dictionary values String Length Summation, Frequency of an element in an array, How Does Default Virtual Behavior Differ in C++ and Java?, Initializing a List in Java, How to traverse a C++ set in reverse direction, Floating Point Operations & Associativity in C, C++ and Java, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Dictionaries in Python, Python | Calendar Module, Sort elements by frequency | Set 4 (Efficient approach using hash), Python | Pandas Series.var, Pandas, Comparison of Exception Handling in C++ and Java, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, set cbegin() and cend() function in C++ STL, Python | Pandas Series.to_string(), Foreach in C++ and Java, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, How to Delete an Element from the Set in C++?, STD::array in C++, Find the Kth occurrence of an element in a sorted Array, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
|
GeeksforGeeks
|
[-0.00818785839, 0.0303605162, -0.0162829664, 0.0382752754, 0.0199208688, -0.000872761768, 0.0202918723, -0.00082058931, -0.0457571931, -0.0223427024, 0.023991609, 0.00498536974, 0.0168806948, -0.00667292392, -0.0594431311, 0.0408723056, -0.00831152592, 0.0279696, -0.00345497741, 0.0315559767, -0.00401148386, -0.000948122062, -0.0165199954, 0.00592576293, 0.0375332646, 0.0372034833, -0.0407486372, 0.00739432126, -0.0437372811, -0.0218686406, -0.00135906076, 0.0491786785, 0.0288765, -0.0230641, -0.0193643626, 0.0130263725, 0.0220335312, -0.031885758, 0.010872486, -0.0339468904, -0.0246923957, -0.00547746569, 0.0207144059, 0.0101407832, -0.0229610428, 0.0442731753, -0.00123603677, -0.00116196473, -0.00913598, -0.0132737085, 0.0398829579, -0.00253004301, -0.0025017024, -0.00653895037, -0.000827674463, 0.0345033966, -0.00798174459, -0.0145619176, -0.0218480304, -0.0357606895, -0.0301131811, -0.0216213055, 0.00959458295, -0.043984618, -0.00435414724, -0.0485191159, -0.024506893, -0.0121503901, 0.018467769, -0.0246305615, 0.00707484549, 0.0156234028, 0.0222602561, 0.0484778918, -0.0166333579, 0.0213121343, 0.0411402509, 0.0257023517, -0.00840943, 0.0321537033, -0.0348331779, -0.0243626144, -0.00444432208, 0.028299382, 0.018457463, -0.033596497, -0.0256611295, -0.00474318676, 0.0189212188, 0.0467465371, 0.0156749301, 0.0321537033, 0.0449327417, -0.0110992109, 0.00585362315, 0.0238061082, -0.00682235649, -0.00401148386, -0.0431189425, 0.0306284633, 0.0251252335, 0.00287013035, 0.000633798947, -0.0156749301, -0.0320712589, 0.027557373, -0.00579694193, -0.0190861095, -0.0079868976, 0.00652349181, 0.00959458295, -0.0161489919, 0.0286291633, 0.0339468904, 0.00139255426, 0.00803327281, -0.0226106495, -0.0277016535, 0.0371828713, 0.0585362315, -0.00484624319, -0.0285879411, -0.00343694235, 0.0321124829, 0.00567842647, 0.00935755204, -0.000309009192, -0.0423357114, 0.0234144926, -0.0397592932, 0.0142218303, -0.0622462742, -0.0467465371, -0.0287528317, -0.0200342312, -0.000906255213, -0.0156027908, 0.00686873216, -0.0109034032, -0.00729126483, 0.0134695163, -0.0216625277, 0.0134592103, -0.0029834928, -0.0167982485, -0.0119339712, 0.0255580731, 0.0220129211, -0.0458808616, -0.0184986852, -0.036914926, -0.0229610428, -0.0129027041, 0.00355803408, -0.00539502036, 0.0259702988, 0.0194055848, 0.012387421, 0.00695633, -0.0218686406, -0.0355958, -0.0322155394, -0.00617825193, 0.00693056593, -0.0208689906, 0.0133664599, 0.0387905575, -0.0408104695, -0.00171975943, 0.0349980704, -0.00477668, 0.00776017271, 0.0393264517, -0.00103121158, -0.0240740553, -0.0311437473, -0.00952244271, 0.0102902157, -0.0162417423, 0.0407074131, -0.0285879411, 0.014644363, 0.0235999934, 0.00594122149, 0.026032133, -0.000738143921, -0.00024234438, -0.0166024417, -0.00183054537, -0.0250634, -0.048271779, -0.0115011325, -0.0054877717, -0.0478595532, 0.00166694284, 0.035616409, -0.00981615484, -0.0249603428, -0.00768288039, 0.0287116095, -0.0271657575, -0.00817755237, -0.0249809548, -0.00852279272, 0.00604427792, 0.0168291666, -0.0163963288, -0.0400684625, 0.0425830446, 0.0089968536, -0.034915626, 0.0107591236, 0.00337253185, 0.0100944079, 0.0316178091, -0.0275985952, 0.0124080321, -0.0100686438, 0.00908960495, -0.031576585, 0.0100171156, -0.0287528317, 0.0247336179, 0.00820846949, -0.0520642661, -0.0372447073, -0.026526805, 0.0428303815, -0.0153451487, 0.0268771984, 0.00770864449, 0.00882681, -0.00637921225, -0.00287013035, 0.0272275917, -0.0281551015, -0.0139744943, 0.0145516125, 0.0040990822, 0.0386875, 0.00109626609, 0.00914113317, -0.0142115252, 0.0134695163, 0.0101253251, 0.0200342312, 0.00186661526, 0.00488489, -0.0170868076, -0.0180761535, -0.0153554548, -0.0136550181, -0.0025519426, 0.0355751887, -0.0367088132, 0.0456747487, 0.0296185073, -0.0089504784, 0.0378424376, 0.0321330912, 0.0108003467, 0.0572171025, -0.00971825048, -0.0467877612, -0.0100428797, -0.0317414775, 0.0118515259, -0.0263413042, 0.000281312707, 0.0419028737, 0.0321743153, -0.0168703888, 0.0276192073, -0.0215182472, -0.000734923407, 0.00764681026, -0.0203640126, -0.0385844447, 0.0381722189, 0.0161799081, 0.00162314367, 0.0580827817, -0.0334109962, 0.00430004252, -0.0335346647, -0.0259909108, -0.053300947, 0.0212090779, 0.0203949288, 0.0331842713, -0.000989344786, -0.0384401642, 0.0135416565, 0.0252282899, 0.0492199, 0.0134798223, -0.0331636593, 0.0536719523, 0.0191994719, -0.0211266316, 0.00942453928, -0.0414288118, 0.024774842, -0.0228992086, -0.0166127477, 0.00170172448, -0.00450615631, 0.00954820774, 0.036914926, 0.0134798223, 0.0378630459, -0.0383783318, -0.0324010402, 0.00562689826, -0.0241358895, -0.0189212188, 0.0532185026, 0.0307109095, -0.0537131764, -0.0112434905, -0.00926995371, 0.00466847047, 0.0111404341, 0.00930087082, 0.0323185958, 0.00766742183, 0.00552384136, -0.0161902141, 0.0103726611, -0.0145000834, -0.0336995535, 0.0102850627, 0.0180967636, 0.00851764, 0.0107797356, 0.0206422657, -0.0356370211, -0.0216625277, 0.0153966779, -0.00737886271, -0.0397386812, 0.000311585609, 0.0142321363, -0.0291238353, 0.0402333513, 0.0177051481, -0.00262279413, 0.0239709988, 0.0113465479, 0.0119958045, 0.000461500982, 0.0108209578, 0.0626585, -0.0171795599, -0.022981653, -0.0344003402, -0.0050008283, -0.0108415699, -0.0238061082, -0.0254962388, -0.00627615582, 0.00790960528, 0.00837336, -0.0189109128, 0.0228167623, -0.03590497, -0.00966672227, 0.0161489919, -4.33965506e-05, 0.0153245376, 0.00120383163, 0.0132737085, 0.00360956253, -0.0160459355, 0.0632356182, -0.00790960528, 0.00442371052, 0.00661109, 0.0509924777, 0.00404755352, 0.0184883792, 0.00779624283, -0.00350908213, -0.015901655, 0.0127893416, 0.00801266171, -0.0383577198, -0.0100480327, 0.0117587745, -0.0213945806, -0.0109137092, 0.0473236553, 0.00125793635, -0.00254163705, 0.0104087312, -0.00658532605, -0.000975174422, -0.0244656708, 0.0249397326, 0.0251458455, 0.0345033966, -0.0133149317, -0.00587423425, -0.010104714, -0.00322567602, 0.00547746569, 0.00297318702, -0.00306851463, 0.0247954521, 0.0522703789, 0.0125007834, 0.0437372811, 0.00711606815, -0.0415524803, 0.00432580663, 0.0105066346, -0.00646165805, 0.0127996476, -0.00200960645, -0.0134385992, -0.00406043557, -0.0324422643, 0.0363996401, 0.0138405208, -0.0219510868, 0.0205289032, 0.0421708189, 0.0380897708, -0.0268565882, -0.0211472437, -0.0148401707, 0.000951342576, 0.0101407832, 0.0245481171, 0.0201063715, -0.0207350161, -0.0202300381, -0.0305666309, -0.0182719603, 0.00392903853, -0.0363378078, -0.00388781563, -0.0268359762, -0.0115217436, -0.0237442739, 0.012634757, -0.0240740553, -0.0306902975, 0.00462982431, 0.0313704722, -0.0669044405, -0.00776532572, -0.0451388545, -0.00991405919, -0.0012817682, -0.0331224389, -0.0262588579, -0.0017107419, 0.00390327419, 0.00654925592, 0.0203021783, 0.00622462714, -0.016911611, 0.0122225294, -0.0197456721, -0.0326895975, 0.0382546633, 0.00114521803, -0.00540532637, 0.00787353516, -0.0232702121, -0.0252695139, -0.00382855791, -0.013892049, -0.0256817397, -0.011614495, 0.0125110885, -0.0112022683, -0.00696663605, -0.0321537033, 0.0135519616, 0.0191788599, -0.0357606895, 0.0052301297, 0.00833729096, -0.0360698588, -0.0176639259, -0.0118515259, -0.0253313482, 0.0193437506, -0.00415833946, 0.0220335312, 0.0147474203, -0.0268359762, 0.00152008701, 0.0333285518, -0.0215388592, -0.00631737849, 0.00837336, -0.0134798223, -0.0055393, 0.00555991149, 0.0366469771, -0.0205701254, 0.00192200823, -0.0202712622, -0.0269390326, -0.0231877677, -0.0370592065, 0.0151081188, -0.0186223537, 0.0237854961, 0.00356061058, 0.0135519616, -0.00441340497, 0.0333903842, -0.00365851447, -0.00454480248, -0.0345446207, 0.00199801265, -0.00541563192, 0.0284024384, -0.0172413923, -0.0254962388, -0.0220129211, -0.00154069834, 0.0252489019, -0.00789929926, -0.00764165772, 0.0187460221, -0.0230641, -0.0011581002, -0.00560113415, 0.0171177257, 0.00252875476, -0.0417998135, 0.00529196393, -0.0299895126, -0.0166230518, -0.0222808681, -0.00493384153, 0.0316590331, 0.00716759637, -0.0257641859, -0.00516829547, -0.00430261903, -0.0225282032, -0.00979554374, -0.00274130935, 0.0173032265, 0.0215800814, 0.0556506403, 0.0350599028, 0.0238267183, 0.00401663641, -0.00656471448, 0.0071006096, -0.0337407775, 0.00906899385, 0.00087018538, -0.0386875, 0.0301131811, 0.0198281184, -0.0147783374, 0.0176020917, -0.0372859314, 0.0222808681, -0.00299379835, -0.0239709988, 0.0114083812, 0.0122946696, -0.00604943093, 0.00970279239, -0.0114599103, 0.0205804314, -0.0020611349, 0.0285879411, -0.0075849765, 0.0464579798, 0.0126450621, -0.00693571893, -0.0101820063, 0.0216831397, -0.0169013068, 0.0333491638, 0.0171486419, -0.0319475904, 0.00470969314, -0.0320712589, 0.00855886284, 0.0232289899, -0.000931375311, -0.011109517, -0.0052352827, -0.0241977237, -0.00750768371, 0.00353742274, 0.00429231348, -0.0100841019, -0.0082187755, -0.0155718736, 0.0329987705, 0.0325247087, 0.000700785837, -0.0162005201, -0.00156259793, 0.0295360629, -0.0063689067, -0.00457829563, -0.0126038399, 0.0195910875, 0.0071057626, 0.0318239219, 0.00213069818, 0.00194519607, 0.0106972903, -0.00761074061, 0.00373323052, -0.0123049747, 0.0109137092, 0.00619371049, -0.0282581598, 0.0374302082, 0.00667292392, 0.0293505602, -0.000314001023, 0.00319475913, -0.0209411308, -0.0115938839, 0.0164787732, 0.00107114599, 0.00629676692, -0.00192844926, 0.018478075, 7.25422869e-05, 0.0231465455, 0.00981615484, 0.00798174459, -0.0185811315, 0.0141084678, 0.00801266171, -0.0156027908, 0.0131500401, 0.0378424376, -0.00691510737, 0.00759012904, -0.0117587745, 0.00218995591, -0.00163087295, -0.0171898641, 0.000156275884, -0.0169631392, -0.0228373744, 0.00597729115, -0.024527505, 0.00311231357, 0.0539192893, 0.00878043473, -0.00975432061, 0.0216419157, 0.0232908241, 0.0270627011, -0.0209514368, -0.0026331, -0.00777047826, -0.00134489045, -0.00483336113, -0.0186944939, 0.0235381611, 0.0067450637, 0.00565781537, -0.0382958874, 0.0273924824, -0.00511934375, 0.00530742249, -0.00698209414, -0.0200857595, 0.00978523772, 0.00318702986, 0.0130469836, 0.0214564148, 0.0147886425, -0.0197559781, 0.000852150435, -0.00366882, 0.00105375517, -0.0333491638, -0.0214358028, -0.0201372877, -0.0208689906, -0.0163860228, -0.00917720329, 0.0104293423, 0.0132118743, 0.0281757135, 0.0145619176, 0.00318445335, 0.0153245376, 0.00179834012, -0.0188696906, 0.00491065392, 0.0106869843, -0.0324010402, -0.0100737968, -0.0160974637, -0.00695633, -0.0101923123, 0.0241977237, -0.0315147527, 0.0278665442, 0.020467069, -0.0110064605, -0.0178597327, 0.0304841846, 0.00745100249, -0.0213945806, 0.024506893, -0.0256405175, 0.0457159728, -0.0146031408, 0.0179937072, -0.00643074093, 0.00567842647, 0.00463755336, -0.013376765, 0.00398314325, -0.0145206954, -0.00602366682, -0.0136962412, 0.00398056675, -0.0317826979, -0.00461436575, 0.019951785, -0.0193849728, -0.0377187692, 0.00950698461, -0.0104963295, -0.00528165791, -0.0379661061, -0.0132118743, 0.00301956269, -0.016942529, -0.0158913489, -0.00605458347, 0.0152214812, -0.00736855716, 0.010104714, 0.0161592979, -0.0268359762, 0.0341530032, -0.0142939705, -0.011624801, 0.0223220903, -0.0243626144, -0.0277222637, -0.00281087263, -0.0232702121, 0.0073324875, -0.00246047974, 0.0335346647, -0.0127790365, 0.0308964122, 0.0053589507, -0.00276965, 0.0164581612, 0.0092029674, -0.0131191239, 0.0026331, -0.0262176357, -0.0186635759, 0.00608034804, 0.00728611182, 0.0343385078, -0.0192303881, 0.00331842713, -0.00232521771, -0.00703362282, 0.00640497683, -0.00649772771, -0.00528681092, 0.0296185073, 0.00555991149, -0.0240328331, 0.0146855861, 0.00113169185, -0.00358122191, 0.00805388484, -0.0210957155, 0.0114702154, -0.0390172824, -0.00841973629, 0.0164993852, 0.0412227, -0.0279077664, 0.0587835647, 0.00350135285, -0.00864130817, -0.0126450621, -0.0142115252, -0.0259290766, 0.00547746569, -0.00715213781, 0.0495909043, -0.00855886284, -0.0216419157, 0.00888349116, 0.0129439272, -0.0159634892, -0.0344827846, 0.00213842746, -0.00832698494, -0.00456799, -0.00766742183, -0.0151184238, -0.028299382, 0.0201372877, -0.0248985086, 0.00345240091, -0.0047303047, 0.0132015692, 0.0150462845, 0.00108145166, 0.0460457541, -0.0180761535, 0.0162520483, 0.0190551914, 0.0172929224, -0.00364305591, -0.00694087148, 0.0184883792, 0.0200136192, -0.0144382501, 0.0120885558, -0.0190139692, -0.0149329221, -0.00132556737, 0.00982130785, 0.0289177224, -0.0082187755, 0.0283406042, -0.0244244486, 0.0229198206, -0.0190964155, -0.0274130944, 0.00917720329, 0.00885257404, -0.016427245, 0.0104705654, 0.0370798148, 0.0107900407, -0.0173238385, -0.0571758822, -0.00586908171, 0.0499206856, -0.0157470703, 0.0054826187, 0.0195189472, -0.0404806882, -0.0317002535, 0.0051296493, 0.0354309082, 0.0122946696, -0.0297421757, 0.014644363, 0.0109755434, 0.00160510873, 0.00834244303, 0.00398314325, 0.00225823093, -0.0137992976, 0.0029809163, 0.032833878, -0.0261970237, -0.0290826131, -0.0154275941, 0.0121503901, 0.015169953, -0.0120576387, -0.000727838255, -0.00275161513, -0.0295772851, -0.00361986808, -0.0351423509, -0.0208586846, 0.0220335312, -0.0150875077, -0.0324834846, -0.0175711755, 0.00341375452, -0.0218068063, -0.0166024417, 0.0264031384, -0.00162829657, -0.0248366743, 0.0185089912, -0.00675536972, 0.0130469836, -0.0208277684, -0.0103932722, -0.0145619176, 0.00624523871, -0.00189753226, -0.0154997343, -0.0204155408, -0.00352196419, -0.040934138, 0.0336171091, -0.00290877651, -0.0239091646, -0.0284230504, 0.00266401679, 0.0211472437, -0.0224045366, -0.023002265, -0.0127996476, 0.00967702828, -0.0104293423, 0.00956881884, 0.017447507, -0.0323392078, -0.00941938628, 0.0137683805, 0.0141703021, -0.0219098628, 0.0112744076, -0.0384401642, -0.0067244526, -0.038502, 0.00904838182, -0.019457113, 0.00949152652, 0.00504978048, 0.00938331615, -0.0123358918, 0.0232908241, -0.033864446, -0.0735825151, 0.00572995516, -0.0361523069, -0.0283818264, 0.00528681092, 0.0123358918, 0.000275354745, -0.0191891659, 0.00799720362, -0.0400272384, -0.0291032251, 0.0284436606, 0.00285467179, 0.0244656708, 0.0145413065, 0.00870829448, -0.00457829563, -0.0219304748, 0.00192458474, -0.0206628777, -0.00383113441, -0.0225900374, -0.00834244303, 0.00984191895, -0.00406043557, -0.0214564148, -0.0179009568, -0.0048513962, -0.00463497685, -0.0231465455, -0.0327102095, -0.00968218129, 0.0263206922, -0.010604539, 5.43865863e-05, 0.0059875967, -0.0028186019, 0.0193849728, 0.00144923548, 0.0140054114, -0.0608447, 0.0027928378, -0.0230847113, -0.0217449721, 0.00427685492, -0.0207659341, -0.0138508268, 0.0071057626, 0.0168188605, -0.0516108163, 0.0299895126, -0.00935239904, 0.00686873216, -0.00299637485, 0.0156646259, 0.00639982382, 0.00482820859, 0.0033596498, 0.00159609132, 0.0211060215, 0.0250427891, 0.0294330064, -0.03485379, -0.0227549281, 0.00119545823, -0.0142733594, -0.00504978048, -0.00126953027, 0.0313498601, 0.0121400841, -0.0448915176, 0.0278871544, -0.0136756301, 0.00935755204, -0.00660593715, -0.032875102, -4.93947737e-05, 0.00212168065, -0.016406633, 0.0173032265, -0.0361935273, -0.0497970171, -0.00590515137, 0.0358225256, -0.0179937072, 0.00279799057, -0.00484881969, -0.0295978971, 0.00280314335, -0.00902777072, 0.0071006096, 0.0216006935, -0.013387071, 0.00306851463, 0.0301544033, -0.0094554564, 0.0108518749, 0.0102644516, 0.00746130804, -0.00625554426, 0.0100480327, -0.00985222496, -0.0374095961, -0.00497506419, 0.00959973596, -0.000719464908, 0.00346013019, -7.33876732e-05, 0.00459633069, -0.0128099537, 0.0211472437, 0.0334109962, 0.000714956142, -0.000349104725, 0.00641012937, 0.00656471448, -0.00270008668, 0.00813117716, -0.0217861962, -0.0352041833, -0.00813633, 0.0188799948, 0.000737499795, 0.0129645383, 0.00943999738, -0.0154585112, 0.0210751034, -0.0225900374, 0.00678628637, 0.0250427891, -0.039924182, -0.0116351061, 0.0172207821, 0.000935884076, -0.00999135152, -0.00524043525, -0.000418345968, 9.91820525e-06, 0.00779109, -0.00892986637, -0.0329575464, -0.0108415699, 0.0211884659, -0.0498794653, 0.0179730952, -0.00799720362, -0.00556506403, -0.0323804282, -0.00501371035, -0.0238679424, 0.00909991, -0.00207659346, 0.00454737898, 0.00743039139, -0.00652864482, 0.0242183339, 0.00388008635, 0.000471162552, 0.0146752801, -0.00341375452, -0.0294742286, 0.0321537033, 0.00186532701, -0.00341117824, 0.00221443176, 0.0216006935, 0.0152730094, -0.0162829664, 0.0155203454, 0.00473545725, -0.00523785921, -0.0112228794, 0.00743039139, 0.0401715189, -0.0122843636, 0.00349104707, 0.00734794559, -0.00943999738, -0.0338026136, 0.00804873183, 0.0179730952, -0.0244450588, 0.0176227037, 0.00346785947, 0.00391615648, 0.00515026087, -0.0300925691, -0.00050111342, -0.00562689826, 0.0194983352, 0.00789929926, 0.00741493283, -0.0140054114, 0.0286909975, -0.000312551769, 0.0108003467, 0.00633283705, -0.0139435772, 0.0110579887, -0.0258878544, -0.00808480196, 0.00349877635, -0.00395995518, 0.00509357965, 0.00905868784, 0.03790427, -0.0180143192, -0.0137683805, 0.0113053247, -0.0126450621, 0.00913082715, 0.00677082827, -0.0180864576, -0.000315933343, -0.0113465479, -0.0090174647, -0.00449069776, -0.017426895, -0.0190036632, 0.016911611, -0.00158965029, -0.00231877668, 0.0195807815, 0.0270833131, 0.0238061082, -0.017447507, 0.00614218181, -0.0169013068, 0.0522703789, 0.0119751934, 0.00567327393, -0.0132943196, 0.00297318702, -0.000517860113, -0.00420729164, 0.00903807674, 0.00629676692, -0.0394295119, 0.0102953687, -0.00439794641, -0.0266092513, -0.0064925747, -0.0122637525, -0.00308397296, -0.0126553681, -0.00174681179, -0.0252901241, 0.000639595906, 0.00646681059, -0.0158913489, -0.012377115, -0.00812602416, 0.00413772836, 0.0249603428, -0.0219098628, -0.0142939705, 0.0132427914, -0.00794567447, 0.000534284802, -0.0203743186, 0.00721397204, -0.0210235752, 0.0292062815, -0.0026923574, -0.0123358918, 0.00267174607, -0.00694602448, 0.00696148304, 0.0122122243, 0.0235999934, 0.0212090779, 0.011377464, 0.0110373776, -0.00309685525, -0.0100944079, -0.00919266138, -0.00984191895, 0.00260347105, -0.0278253201, -0.000802554365, 0.0113980761, -0.00011972295, -0.00102026179, -0.0193643626, -0.00568357948, -0.0243420023, -0.0215594713, 0.00169657159, 0.0220953654, -0.00443144, -0.0273718704, 0.0198075064, 0.00478956196, 0.014386721, -0.0137683805, -0.00356833986, 0.0032334053, 0.0276192073, -0.0190861095, 0.000725905935, -0.0281344913, 0.0130366776, -0.0103108268, 0.000348460628, 0.00167080748, 0.00411196426, 0.0306490753, -0.0035528813, -0.00736340415, 0.028052045, 0.00605973648, -0.0297421757, 0.018467769, 0.00788899418, 0.00118708482, 0.0175608695, 0.0198075064, 0.0121606961, -0.0203640126, -0.0308551881, -0.0253519583, 0.000884355686, 0.0173856728, -0.0463755354, -0.0167776383, -0.016447857, 0.0047251517, 0.00423563225, -0.00949152652, -0.0245687272, -0.0206628777, 0.000110141897, 0.031081913, -0.000258124928, -0.0101871593, 0.00286240107, 0.00584847, -0.00591030437, -0.0150565905, 0.0269596446, -0.0163654108, -0.0202197339, -0.00256096013, -0.0260527451, 0.000163924633, -0.0294123944, 0.000333324162, -0.0145928347, -0.011882443, 0.0258260202, 0.0217243619, 0.00205469388, 0.000581304426, 0.0136859352, 0.00627615582, 0.00426397286, 0.00756951794, 0.0148710879, -0.00900200661, -0.0208483785, -0.020992659, -0.0161283799, -0.000480180024, -0.00713152671, -0.00559598114, 0.00353484624, 0.00299122208, -0.0187254101, -0.0345033966, 0.0063689067, -0.0110476827, 0.000391937676, 0.0195086412, 0.0212503, 0.00444947509, 0.00276965, 0.00999650452, 0.014644363, 0.0299276784, 0.018931523, -0.0154997343, 0.0168600827, 0.0172929224, -0.00119674648, 0.000749737781, -0.0284436606, -0.0309170224, -0.00127339491, 0.00504462747, 0.0019516371, 0.00433868868, -0.000377123273, -0.0049802172, 0.0282169357, 0.00235999934, 0.0283818264, 0.00340860174, 0.0187563282, 0.00553414691, 0.0161592979, 0.0114392983, 0.00433611264, 0.0236412175, -0.0381516069, 0.00244759768, -0.00447266269, -0.000149754327, -0.0082599977, 0.0239297766, 0.000321086176, 0.0012199342, -0.00441598147, -6.6624576e-05, 0.000104586492, -0.00830637384, -0.0198487286, 0.017952485, 0.0333697721, -0.0082599977, 0.0157058481, 0.000656020595, 0.0214358028, -0.0299070664, -0.0263413042, -0.00968218129, -0.00576087181, 0.0146340579, -0.00326174591, -0.0322773717, -0.0102283815, -0.00871344749, 0.0173238385, 0.00995528139, 0.0137786865, -0.00444174558, 0.028299382, -0.010604539, 0.0436136127, 0.0170661975, -5.17699118e-05, 0.000411904912, -0.0281963255, -0.00661109, -0.011614495, -0.0130882068, -0.0134695163, -0.0268978104, -0.00294742291, 0.0257641859, 0.0289589446, 0.0182925723, 0.0220747553, 0.0140260225, 0.0193128344, -0.0177875943, 0.00496733515, 0.0243626144, -0.0195910875, 0.0140981628, -0.00364305591, -0.0058639287, -0.00755921192, -0.0122019183, -0.0246717837, 0.00286497758, -0.00978008471, 0.00824969262, 0.0169631392, -0.0194055848, 0.0223427024, -0.0250840113, -0.0239297766, 0.0127687305, 0.0196426157, -0.0375538766, 0.00115165906, 0.0255992953, 0.0359874144, -0.0256611295, -0.0124286432, -0.0326689892, 0.0544139594, -0.000545556657, 0.0228579864, -0.0262588579, -0.0109034032, -0.0365439206, 0.00616794592, -0.0317826979, 0.0185502134, -0.0069924, 0.0146031408, -0.0242801681, -0.0223633125, -0.000516571919, 0.00700270571, 0.0151390359, -0.010862181, 0.0344003402, -0.00600305526, -0.0225694273, -0.0277016535, 0.0169940572, 0.0105942329, 0.0257023517, -0.0147165032, -0.0104138842, 0.00275934441, 0.00934724696, -0.0149638392, 0.0385432206, 0.0116557181, 0.00450100331, 0.0272069797, -0.0176742319, 0.0234351028, 0.0162417423, 0.0171280317, 0.0180967636, -0.0127996476, 0.00907414593, 0.0351629592, -0.000266498304, -0.00233037071, 0.013892049, -0.0124801714, -0.0240328331, -0.0242801681, 0.0261970237, 0.0396150127, -0.00767772738, 0.0251870677, -0.0180349294, -0.0136756301, -0.00385947502, -0.0249809548, 0.0232496019, 0.0084661115, 0.0144691672, 0.00771379704, -0.0268771984, -0.0181173757, -0.00250299065, 0.00165019615, -0.0133458478, 0.0163447987, -0.00259960629, 0.00868253, 0.0343797281, -0.0168703888, 3.55465236e-05, 0.00642558793, 0.0106869843, 0.0250427891, 0.00637921225, -0.00216419157, 0.00671414705, -0.0535070598, 0.0268153641, 0.00389554491, -0.03285449, 0.0207865443, 0.00807964895, -0.00960488804, 0.00301956269, -0.00225436618, 0.0124801714, -0.00351423491, -0.00337768486, -0.00835274905, 0.012634757, -0.0308964122, 0.00302471546, -0.0214358028, -0.0335140526, 0.0112331854, 0.0186120477, 0.0271245353, 0.000785807671, 0.00581240049, -0.0150256734, 0.0129748443, -0.0369355381, -0.0383371077, 0.052311603, -0.0100068096, 0.00722427759, 0.00937301107, -0.0267741419, 0.00919781439, -0.00126824202, 0.00287785963, 0.0396768451, -0.0511161461, -0.00959973596, 0.0336789452, -0.00648226915, -0.00818270538, 0.000175196459, 0.0143042756, -0.00598244416, -0.00435672374, 0.0216213055, 0.0072294306, -0.0296803415, -0.00850218162, -0.0162829664, -0.0183028784, 0.00458087213, -0.0108930981, -0.00803842582, -0.0160047114, 0.00409392919, -0.0142012192, 0.0121400841, -0.00829606783, 0.0216006935, 0.000500147231, -0.0238885526, 0.0137271583, -0.0200857595, -0.00895563141, 0.00103056745, -0.0185708255, 0.00568873202, 0.018436851, -0.00753860082, -0.0134076821, -0.0367294252, 0.00296545774, -0.0197044499, 0.00375899463, -0.0342560634, 0.0251046233, 0.0204464588, 0.020961741, -0.00834244303, 0.0343385078, 0.00308139669, -0.000698209449, 0.0115938839, 0.00144537084, -0.0053795618, 0.0348125696, 0.0248778984, -0.0154997343, 0.0122019183, 0.0198281184, 0.0208174624, -0.0173238385, -0.0110992109, 0.00470711663, -0.00224019587, 0.00684296759, 0.00616279338, 0.0018369864, 0.00131268532, 0.00280829635, -0.0146031408, 0.00360698602, -0.00522497669, 0.0013964189, -0.00932663493, -0.000927510671, 0.000674377545, 0.0188696906, 0.00288816518, 0.00426912541, -0.00219124393, 0.0116660232, 0.0182410441, 0.00369200786, -0.000845709408, -0.00222860207, 0.020456763, -0.0205289032, 0.0175505634, -0.012624451, -0.0154688172, -0.00740462681, -0.0108518749, 0.0268771984, -0.00572480215, 0.0277016535, -0.0163757168, 0.0158501267, 0.00422790274, 0.0123461979, 0.00275934441, 0.00673475815, 0.015911961, -0.00288558891, -0.00352196419, -0.00132041448, 0.0191685539, 0.00506523903, 0.0068738847, -0.0133355428, -0.0125626167, 0.0139744943, -0.00306593813, 0.00362244458, 0.0339675024, 0.00111043639, -0.0166539699, 0.00878043473, -0.00303759752, -0.0195498634, -0.00565781537, -0.000924290158, 0.00408619968, 0.0101974644, 0.0353484638, -0.0287116095, 0.0089710895, -0.00737371, 0.0028186019, 0.0063482956, -0.0113877701, -0.0138714379, -0.0105942329, 0.00309943152, -0.00827030372, 0.019962091, 0.0124698663, -0.00675021671, 0.0108106527, 0.00126888615, 0.0128202587, -0.0204361528, 0.0077344086, 0.00654925592, 0.00369458436, 0.0219304748, 0.00173779437, 0.0137271583, 0.0151390359, -0.0142218303, 0.00877012871, -0.0313910842, 0.00209720479, 0.00909475796, 0.00637405971, 0.0133355428, -0.0327514336, 0.00650803326, 0.0129748443, 0.0193746686, 0.0104138842, 9.1140806e-05, -0.00927510671, -0.00062768, 0.00972340349, -0.0211266316, -0.0155512625, -0.0322567597, -0.00884742104, -0.0147268083, 0.00648742216, 0.0186944939, -0.0125420056, -0.00592061, -0.0114186872, 0.00233294698, 0.0315559767, -0.00690995483, -0.0176123977, -0.00131332933, 0.0185296033, 0.00381567585, -0.00200187718, 0.0100171156, -0.0125317, 0.00402951846, -0.0249603428, -0.0172723103, 0.0160974637, 0.00520178908, -0.0244038366, -0.0249809548, 0.0103211328, -0.00561659271, 0.00102412642, 0.00400375435, -0.00205984665, 0.00813633, 0.0162314363, 0.0224663708, 0.0129233161, -0.00934724696, -0.00681720348, -0.0218686406, -0.00770864449, -0.0211678557, -0.0296597313, -0.00631737849, 0.00336480257, -0.0310200807, 0.0448502935, -0.0186635759, -0.00917720329, -0.00296545774, -0.00787868816, -0.0277840979, 0.0105014825, 0.0049802172, -0.0157161541, -0.000736211601, -0.00343436608, -0.000344273925, -0.0380897708, -0.00357091613, 0.0326277651, 0.00491065392, -0.0124389492, 0.0027928378, -0.0199002568, -0.00447266269, -0.0116866343, -0.00345755368, 0.000689836103, 0.00934724696, -0.00122701935, 0.00549807725, 0.00416864548, -0.0145310005, 0.0100737968, 0.00278768502, -0.0110786, -0.0249191206, -0.0314529166, -0.00364820869, 0.00905868784, 0.0100583378, -0.0194983352, -0.00419956213, 0.00667292392, 0.037636321, 0.00417637452, 0.00226209546, -0.0125523116, 0.00747676659, 0.00156130968, 0.0129851494, -0.0216419157, 0.00907929894, 0.00620401604, -0.00703877537, 0.0228785966, 0.0274130944, 0.00388781563, 0.0127068963, 0.00302471546, -8.19220586e-05, 0.0130160665, -0.00265371124, 0.00805388484, -0.00799205061, 0.0108827921, -0.00689964881, -0.00570934359, 0.0281757135, 0.0180658475, 0.00555991149, -0.00331585063, -0.00857432093, -0.0122740585, 0.00714698527, 0.0105736218, 0.025784798, -0.00925449561, 0.00407589413, -0.0134592103, 0.00145052362, 6.91204768e-05, -0.00813117716, -0.0191582479, 0.0018086459, 0.0239503868, 0.00179318734, -0.0197456721, 0.0140981628, 0.00959973596, 0.0208689906, 0.021992309, -0.0247542299, -0.00904322881, -0.00449327379, 0.00409392919, -0.00711091515, -0.00466847047, 0.00253004301, 0.00715729082, -0.00425109081, 0.0399654061, -7.21598508e-06, 0.0203537066, -0.00991405919, 0.00874951761, -0.0112744076, -0.0199311748, -0.00258285971, -0.00207144045, 0.00693571893, 0.0380691625, -0.0309170224, -0.0270627011, -0.00924934261, -0.033782, 0.00681720348, 0.0034240603, -0.00411196426, 0.0101923123, -0.00895563141, 0.00627615582, 0.00571964914, -0.00706969248, 0.0218068063, -0.000280185515, -0.00884742104, -0.0147474203, -0.0140569396, 0.0104963295, -0.0126553681, -0.00541563192, 0.0324216522, -0.00302471546, -0.0102026174, -0.0132943196, 3.57679346e-05, -0.0259909108, -0.00546716, 0.0226930957, 0.0132840145, -0.00400890736, 0.00891440827, 0.00400117785, 0.0128408698, -0.00069241249, -0.0228167623, 0.00589999836, 0.015169953, 0.000470840489, 0.00413515186, -0.0160768516, -0.030834578, 0.00570419058, 0.0105942329, 0.00176742312, -0.00726550026, -0.0071006096, -0.00227884226, 0.0115835778, 0.015159647, -0.0122431414, 0.00297576352, 0.027289426, -0.0128099537, -0.0109652374, -0.00503947493, -0.0199311748, -0.00223246659, -0.000997718074, 0.0052558938, -0.0423357114, 0.00595667958, 0.0178803448, 0.0197147559, 0.0085124867, 0.00746646104, 0.00559082814, -0.0193128344, -0.00209334, -0.0140260225, -0.0302162375, 0.00332358, -0.000999006326, 0.016952835, -0.000763264, 0.0362965837, 0.00200316543, -0.0143558048, 0.0236412175, 0.00903807674, 0.0244656708, 0.0301337913, -0.0320094228, 0.019251, 0.0196426157, -0.00653379736, -0.00947091449, 0.00815694127, -0.0109240152, 0.0167982485, 0.0308551881, -0.00832183193, -0.00616279338, 0.0303811282, -0.00312261935, 0.0094760675, -0.00332615641, 0.00642043492, -0.00369458436, 0.0055083828, 0.0213121343, 0.00499052275, 0.0252489019, -0.0150565905, -0.00219768495, 0.0172001701, 0.000490807754, -0.00197868957, -0.0175814796, -0.0109652374, 0.0250840113, -0.00404755352, -0.00506781554, 0.019962091, 0.00169141882, -0.0318033099, 0.00639982382, 0.00768803293, -0.00134231406, -0.00420213863, 0.0211678557, 0.0103881201, 0.00815178826, -0.00153039268, 0.0314735286, -0.0164581612, -0.0327720456, 0.00544139603, 0.0163241886, -0.00115230319, 0.00538986782, 0.00661109, -0.00452676741, 0.00928541273, -6.90399684e-05, 0.00166436646, -0.0200960655, -0.0087237535, 0.00180220476, 0.0397592932, -0.0125110885, 0.0131809572, 0.00262665865, -0.00358895119, -0.000155953836, 0.0187872443, -0.00909991, 0.0104705654, 0.0176123977, -0.033885058, -0.00854340382, -0.00264082896, -0.017931873, -0.0229404308, 0.000949410256, -0.00935755204, -0.00684296759, 0.00898654759, -0.0131706521, -0.00837851316, -0.0187460221, 0.00114779454, 0.0110786, -0.0111713512, -0.000188883685, -0.00702847, -0.00688419025, -0.0139332721, -0.00663170125, -0.00890925527, 0.025784798, 0.0144279441, -0.0226518717, 0.00183827465, 0.0054620076, -0.000522368879, -0.00626069726, 0.0152214812, -0.00402436592, 0.00107629888, 0.00372807775, -0.00867222529, -0.0052327062, -0.017952485, 0.0188387726, 0.0109240152, 0.00829606783, -0.0120473336, 0.00828061, -0.00200187718, 0.00686357915, 0.0105324, -0.00426654937, 0.00225565443, -0.0356370211, 0.00408619968, -0.0181895159, -0.00515799, -0.000292906596, 0.0236824397, 0.00352454069, -0.019951785, -0.00834759604, 0.00621432159, -0.0158913489, -0.00345497741, -0.0246099494, 0.0315559767, 0.00803842582, 0.00733764, -0.0187563282, -0.0024398684, -0.0126862852, -0.0318033099, 0.0108312638, -0.0149741452, 0.00622462714, -0.00334934425, 0.0044752392, 0.0326895975, 0.0124389492, -0.00120962854, 0.0153245376, 0.0228373744, 0.0135725727, -0.00106663734, 0.0136653241, -0.020961741, 4.97570836e-05, -0.00555475848, 0.0112537965, 0.0084506534, -0.00238189893, 0.0139538832, 0.0111919623, 0.0221159775, 0.00955851283, -0.00561659271, 0.013139735, -0.025537461, -0.00770349149, -0.00464270636, -0.00635344815, 0.016406633, 0.0177875943, 0.00148015248, -0.00984707195, 0.0198590346, -0.015149341, 0.00964611117, -0.0382752754, -0.0148710879, -0.014397027, 0.00850218162, -0.0210132692, 0.0249191206, -0.018467769, 0.00518117798, 0.0178597327, 0.00504462747, 0.0140363285, -0.00511676725, -0.00610095914, 0.0108003467, -0.00230074185, 0.00595152704, -0.00446750969, 0.0252076797, 0.000968733395, -0.000274871651, 0.032895714, 0.0107385125, -0.0209514368, 0.00735825161, 0.00507554458, 0.0026923574, 0.00868768338, -0.00626069726, 0.013892049, 0.00774986716, -0.0170765016, -0.000592898345, -0.00346528296, 0.0125626167, -0.00228399504, 0.00896078348, -0.00438764086, 0.0117690805, 0.0138508268, -0.0162108261, 0.0155306514, -0.0153863719, -0.0107694296, 0.0123358918, -0.0123049747, -0.025516849, 0.00923903752, -0.0152833154, 0.00987283606, -0.000570676697, 0.00494414708, 0.023496937, -0.00301183341, 0.00251200818, 0.000721397228, -0.0063431426, -0.00130753242, -0.00141574198, 0.00428716047, 0.0157779884, -0.0137683805, -0.00348074152, 0.0298452321, 0.0302780718, -0.00164761965, 0.0352660194, -0.0116763292, -0.0126862852, -0.0209308248, 0.00384659297, 0.0228373744, 0.00752314227, 0.00305820885, -0.00322052324, -0.0046246713, -0.0222808681, 0.00473545725, 0.0168806948, 0.0122843636, 0.0100428797, -0.00795082748, -0.00311489, 0.035616409, -0.0268771984, -0.0010041591, 0.00575056626, 0.0178391226, 0.0362553634, 0.0105633158, -0.0156234028, 0.00966672227, 0.0212090779, 0.0143351927, 0.0126141449, -0.00432838313, -0.0110064605, -0.00705938693, -0.00983161293, 0.0158295166, -0.0153142316, -0.0280314349, -0.0104138842, 0.0306284633, -0.000415125454, -0.000150720487, 0.024012221, 0.0105272466, -0.00727065327, -0.0145928347, -0.0135931848, -0.00728095882, -0.0106869843, 0.00209849305, 0.00136679, 0.0148607828, -0.0182822663, 0.00321021746, 0.0102799097, 0.0144794723, -0.0172310881, -0.0204155408, 0.00164761965, -0.00248495582, -0.00276192068, -0.0108209578, -0.0163241886, 0.0117175514, 0.00401148386, -0.0175196473, 0.00192587287, -0.00643589348, 0.00812087115, -0.0132221803, -0.00491065392, 0.00928541273, 0.00421244418, -0.0135004334, 0.0118103027, 0.00519663608, 0.013139735, -0.0206628777, -0.0173238385, 0.0207247119, -0.0306902975, 0.00553414691, 0.0376157127, 0.0307727437, -0.00923388451, -0.000508520636, 0.012882093, 0.0048513962, 0.00277222646, 0.015417289, -0.033843834, -0.00152523979, 0.0152833154, -0.0296803415, -0.00350908213, 0.0204155408, -0.00698724715, -0.038646277, 0.0176227037, -0.00789929926, -0.0268771984, -0.0190036632, -0.0152420923, 0.0157779884, 0.000378089433, 0.0369767584, -0.00698724715, -0.00724488916, -0.0227549281, 0.00268205185, -0.0112950187, 0.00416864548, 0.0103314389, -1.71291576e-05, -0.012366809, 0.00335449702, -0.00455510803, -0.0113362418, -0.0278459322, -0.00915143918, 0.029062001, -0.0246923957, 0.00716759637, 0.00789929926, 0.00208947551, -0.00980069675, -0.00426912541, 0.00123732502, 0.0068532736, 0.016952835, 0.00701301126, -0.018972747, -0.0150875077, 0.0250015669, -0.00154327473, 0.00423563225, 0.0171177257, 0.00434384169, -0.0150256734, -0.000940392783, 0.00692026038, 0.0259909108, -0.00601336081, -0.0225900374, -0.0120370276, 0.00875467062, -0.00639467081, 0.00132556737, 0.00894532539, 0.00111687742, -0.00192200823, -0.0161386859, 0.0216831397, -0.0156027908, -0.0244862828, 0.00475864531, 0.0187047981, 0.00474576326, 0.0316384211, 0.0242801681, -0.00159093842, 0.00405528303, -0.0144485552, -0.00780139538, -0.022507593, 0.000115938834, 0.0298452321, -0.0191788599, 0.0222190339, 0.00733764, 0.000526233518, -0.0311025251, -0.0146855861, 0.0104499534, 0.00709030405, -0.00278768502, 0.00566296792, 0.0334316082, 0.00343178958, 0.010109867, -0.00530226948, 0.00834759604, 0.0100841019, 0.0107075954, 0.00176355848, 0.0173959788, -0.00770349149, -0.00116711762, 0.000321730273, 0.000239606932, 0.0118618309, -0.0119030541, -0.0216831397, 0.00669868849, 0.000633476942, -0.018941829, -0.000300796877, 0.00173650612, 0.00906384084, 0.0167570263, 0.00879589282, -0.0119030541, -0.00970279239, 0.0018086459, 0.00958427694, -0.0242595579, 0.0195601694, -0.00713152671, -0.014159997, -0.0158398207, 0.0109034032, 0.00467104698, 0.00814663526, 0.0105530107, 0.00986253, 0.00366882, 0.0204464588, -0.0219098628, 0.0122637525, -0.00540532637, 0.00360440952, -0.0277016535, -0.000756822934, 0.0169734452, -0.0205804314, 0.00672960514, 0.00217449735, 0.00334676774, 0.0105839279, 0.0157161541, -0.00524558825, -0.0245893393, 0.0044984268, -0.0251252335, -0.00366624375, 0.0127893416, 0.00121349317, -0.0152111752, 0.00802812073, -0.000168433369, 0.0173238385, -0.0074819196, 0.010357203, -0.0028160254, -0.0137168523, -0.00204181182, -0.00211523962, -0.00419956213, -4.54093788e-05, -0.00212812168, -0.00786322914, 0.0107075954, -0.00778593682, 0.0211678557, 0.00241925707, 0.000107645988, -0.00248882035, 0.00137451931, -0.0106560672, 0.00347301224, 0.0412845314, -0.0149741452, 0.0149741452, -0.0115732728, 0.0298864562, 0.00196580729, 0.00732733449, -0.00592061, 0.00541047892, 0.0181585979, 0.016942529, -0.0001864683, -0.0141703021, 0.0211472437, -0.0169837512, -0.00239606923, 0.00631222548, -0.00600305526, -0.00611126469, 0.00228657154, -0.00256868941, -0.0187975504, 0.00987798907, 0.0202506501, 0.0116866343, 0.014664975, 0.0151184238, 0.0100377267, -0.00934724696, 0.00418152753, 0.00231491216, 0.0109240152, 0.00519406, -0.0051296493, 0.00931117684, -0.0063482956, -0.0391203389, -0.010614845, 0.00220154971, 0.0175505634, -0.00328493374, -0.0120473336, 0.00329523929, -0.0205907375, -0.0129439272, 0.0122637525, -0.00516314292, 0.00459117815, -0.00764681026, 0.00993467, 0.00391615648, -0.0190345813, 0.00182410434, -0.017457813, 0.0147474203, -0.00195679, -0.0117175514, 0.0120370276, 0.00603397237, 0.0054620076, -0.0140672456, -0.00730672292, 0.00721912505, 0.0385844447, 0.00625039171, 0.0100892549, 0.00382082886, 0.0097285565, -0.0115732728, 0.0103211328, 0.00141831848, 0.00706454, -0.000198062175, 0.0161077697, 0.000725905935, -0.0144588612, -0.0167054981, -0.0156955421, 0.00447008619, 0.0105633158, -0.00350135285, 0.00717274938, 0.0120267216, 0.00943999738, 0.0238061082, 0.0381516069, -0.0114805214, -0.0145722236, -0.00696663605, 0.00374868908, 0.0235381611, 0.00127725955, -0.0201579, 0.0134282941, -0.017942179, 0.00491580646, 0.00238061068, 0.0137477694, -0.0206525717, 0.032875102, 0.0188181605, 0.00220670248, 0.0150153674, -0.0065956316, 0.00343694235, -0.00290620024, 0.00500855781, 0.0104963295, -0.0155100403, -0.00726034772, 0.0172620043, -0.0140260225, -0.0140260225, 0.0141703021, 0.00179061096, 0.0176742319, -0.0330606028, 0.0205804314, -0.010872486, -0.00698209414, 0.0174887292, 0.0217037499, 0.00659047859, -0.00197224854, -0.0133458478, -0.0223839246, -0.00299379835, -0.0285879411, -0.00961004104, -0.00942969229, -0.032875102, -0.0119751934, 0.00381309958, 0.0154894283, -0.00729126483, -0.0170352794, -0.00016553489, 0.00401148386, -0.00915143918, 0.00632768404, 0.0137580754, 0.00686873216, 0.0104911765, -0.00345497741, 0.0100016566, 0.00301183341, -0.00954820774, 0.0163138825, -0.000714956142, 0.00772410305, -0.010604539, 0.00140672456, -0.00389812142, -0.0174990352, 0.00979554374, 0.0231053215, -0.00461694226, -0.0117896916, 0.0161180738, 0.0180246253, -0.0171589479, 0.00700270571, -0.00363532663, 0.0150772016, 0.0116660232, -0.00234711729, -0.00513737882, 0.00928026, -0.0266916957, 0.00655440893, 0.0155821797, 0.02932995, -0.00889895, -0.00676567527, 0.000170848754, -0.0232289899, 0.00589999836, 0.00568357948, -0.0205289032, 0.013129429, 0.0140569396, 0.0206216536, 0.00129787088, 0.0113465479, 0.00277480274, -0.0166127477, 0.00449327379, -0.00462724781, -0.00862584915, -0.0125317, -0.013644713, -0.0156749301, -0.0176123977, -0.0160974637, 0.00460921274, 0.0156646259, -0.0112537965, -0.0218892526, 0.00783231296, 0.0120061105, 0.00343951886, -0.00564235682, -0.00689449627, -0.00357091613, -0.012387421, 0.02627947, 0.000475671288, -0.00801266171, -0.0202506501, -0.0145206954, -0.0133458478, 0.0268359762, -0.0305872411, 0.0176330097, -0.0220335312, 0.00600305526, -0.0053589507, 0.000422854704, -0.00341890752, 0.00586908171, -0.00460663624, 0.00775502, 0.0144382501, 0.0365439206, 0.00376157113, 0.00773956161, -0.0201475937, -0.00904322881, -0.00644104648, 0.0112950187, -0.00328493374, -0.00569388503, -0.0107179014, -0.0113465479, -0.0119854994, 0.0126553681, -0.0196323097, -0.00196838379, 0.00417895103, 0.000442177843, 0.0160253234, 0.00603397237, -0.0125626167, -0.0244862828, -0.0113362418, -0.018962441, 0.00896593649, -0.015922267, -0.00445462763, 0.00613187626, 0.0334934406, -0.0231465455, -0.0145825297, 0.0181998201, -0.00395995518, 0.0123358918, 0.00669868849, 0.0139744943, 0.00527392887, 0.00165921357, -0.00995528139, 0.0032334053, 0.00924419, -0.000687903783, -0.00935755204, 0.012634757, -0.0140878567, -0.025537461, 0.00535379769, 0.017952485, -0.0279283766, -0.00726034772, 0.0405219123, -0.0124286432, -0.0298040099, -0.0124389492, -0.000459890725, 0.0102489935, -0.0165509135, 0.00832183193, 0.0183544066, -0.00392903853, 0.00384916947, 0.00644619949, -0.00658532605, 0.00238705194, -0.00462982431, -0.018436851, -0.00290104724, 0.00963580515, 0.0070799985, 0.00363790314, -0.0137580754, 0.0118309138, 0.000592576282, 0.0227961522, -0.0116866343, 0.049013786, 0.00170430087, 0.0161592979, 0.0191788599, 0.0206319597, 0.0124492543, 0.00776017271, -0.0149638392, -0.00308912597, -0.0217037499, 0.0336171091, -0.0293917824, 0.0182719603, -0.0127481194, -0.00142604765, 0.0181070697, -0.000929443, -0.0110786, 0.00306851463, -0.00925449561, -0.00580724748, -0.0172104761, -0.00644619949, 0.00540532637, 0.00313807791, -0.0138302147, 0.0148298657, -0.0135313505, -0.0142424423, -0.00486170175, 0.0131912632, 0.0207556281, -0.0198075064, 0.0128614819, 0.0106457612, 0.0173650607, 0.00348331803, 0.00938331615, -0.0191067196, 0.00629676692, 0.0135210445, 0.00857947394, -0.00518890703, -0.0203537066, 0.0193746686, -0.0334934406, 0.00188336195, 0.0129954554, -0.00138868962, -0.0215800814, -0.0319888145, -0.0197765883, 0.00889379717, 0.00202635326, -0.00662654871, 0.0279696, -0.0006408841, -0.00680174492, -0.0157573763, -0.000199672446, -0.0148092536, 0.00556506403, 0.0120164165, -0.0091823563, -0.018931523, -0.0184883792, -0.00797143951, 0.00580209447, -0.0315353647, -0.021477025, -0.00622462714, -0.00518890703, -0.0286703855, -0.00494414708, 0.00135004334, 0.00982646085, 0.000547489, 0.00308397296, 0.0226518717, -0.0048771603, 0.00730672292, 0.00732218148, 0.00062445947, 0.00188593846, -0.000701429963, -0.0236412175, -0.0031715713, -0.0267123077, -0.00911536906, 0.0188387726, -0.0114908265, 0.00241539232, 0.00211652787, -0.0242389459, -0.0188387726, -0.00203923532, 0.00844034739, 0.00546716, -0.00653379736, -0.0223633125, 0.00745100249, 0.00441340497, 0.00146598218, 0.00805903692, 0.00771379704, 0.0332667157, 0.00356576336, 0.011367159, 0.00394707313, -0.00774471415, -0.00120383163, -0.0113259358, -0.0124904774, -0.0144176381, 0.00245275046, -0.0138302147, -0.00633283705, 0.00392903853, -0.00785807706, -0.0326895975, -0.000540725829, -0.0221984219, 0.00346270669, -0.0123977261, -0.0312674157, 0.0335758887, 0.0141187739, -0.00106921373, -0.000805774936, -0.00531257503, 0.0109858485, 0.0102850627, -0.0068481206, -0.00453707296, -0.0056320508, 9.46833825e-05, 0.0205907375, 0.0100377267, 0.0273512602, 0.00680174492, 0.0125420056, 0.00295772846, 0.0180967636, -0.0285054948, 0.019962091, -0.00980584882, 0.00496733515, 0.0140466345, -0.0126450621, 0.00314065418, 0.0120782508, 0.000796757464, 0.0114496043, 0.023991609, 0.00462982431, -0.00275161513, -0.0190758035, -0.0231671557, 0.0173856728, 0.000126566563, -0.0264855828, 0.000460534822, -0.0115526607, 0.00852794573, -0.0169837512, -0.0223014802, 0.00207401696, 0.0125213945, -0.00331585063, 0.00140414818, 0.000166984129, -0.00100609148, 0.00272842729, 0.000657952914, -0.0129542323, 0.00180349301, 0.0118927481, -0.0132530974, -0.0156027908, 0.00300152763, -0.0100428797, 0.00670384103, 0.00709545659, -0.00590515137, 0.00591030437, -0.00569388503, 0.0295772851, 0.0100944079, -0.0137580754, -0.00263567618, 0.00507296808, -0.00552899437, 0.0181689039, 0.0161283799, 1.66863356e-05, -0.00230331812, 0.00292165857, 0.00372807775, -0.0157264583, 0.0221365876, 0.00627615582, -0.0254962388, -0.00583301159, 0.0118515259, 0.0185192972, -0.00660593715, -0.0288971104, 0.00432323059, -0.00517860148, 0.00133458478, 0.00436702929, 0.0104499534, 0.0101459362, -0.00336995558, -0.0119751934, 0.00380021753, -0.00317930058, 0.00171718304, -0.00808480196, 0.00784777105, 0.00312261935, 0.000311424606, -0.0105736218, 0.00441855798, 0.018931523, 0.00599274971, -0.0106560672, -0.0116351061, -0.0152111752, -0.0187872443, -0.00161154987, -0.00702331727, 0.00193875504, -0.00444689859, -0.00374868908, 0.00324886385, 0.0254962388, -0.0204464588, -0.00168240129, 0.00272069802, 0.00668838248, -0.0131500401, 0.00552899437, 0.0127481194, 0.0157779884, -0.00412742235, 0.00478698593, 0.015942879, -0.00365593797, 0.0161283799, -0.0126862852, -0.0250840113, -0.014912311, 0.00104409363, -0.012624451, 0.0312674157, -0.00238705194, 0.00771379704, -0.0196116976, -0.00335707352, 0.00408619968, -0.0207865443, -0.00364305591, 0.0306078531, -0.00875467062, 0.00816724729, 0.00824454, -0.00898654759, 0.00456026103, -0.0159634892, -0.016447857, 0.00878043473, -0.00167853676, 0.000508520636, 0.0182410441, -0.00467362348, -0.00648226915, -0.000911408104, 0.0201682039, -0.00119030534, 0.00378218247, 0.00571964914, 0.000238479741, -0.00150978134, 0.00150076381, 0.0191685539, -0.00110077485, 0.0236824397, -0.0289177224, 0.000879846921, 0.012366809, -0.0300513469, 0.018952135, 0.0142630534, -0.0122225294, -0.00524816476, -0.0099398233, 8.60684813e-05, 0.00745100249, 0.0578766689, 0.00276192068, -0.0127378134, 0.0115938839, 0.0102026174, -0.0187975504, 0.000720109, -0.0185605194, 0.0068738847, -0.0208896026, 0.0226312615, -0.0130263725, -0.000541692, 0.0157882925, 0.0148710879, 0.00112267444, 0.00668838248, -0.0164684672, -0.00147113507, -0.00437733531, 0.00400375435, 0.012871787, 0.0313704722, 0.0284024384, -0.00326947519, -0.010862181, 0.00625554426, -0.00855371, 0.00423305575, -0.00476379786, -0.0212915223, -0.0441907309, -0.00992951728, -0.0152523983, -0.00196709554, 0.00629161438, -0.0184986852, -0.0176227037, -0.00792506337, 0.0196529217, 0.0198384225, 0.0168806948, -0.0133458478, -0.0233114362, -0.00240895129, -0.00100093859, -0.0100531857, -0.0148092536, 0.0154894283, -0.0108106527, -0.0260115229, 0.0102129234, 0.00894532539, 0.0105736218, 0.00780654838, 0.000112315749, -0.0225694273, 0.00993467, 0.0124286432, -0.0292062815, -0.0356782451, -0.0313498601, -0.0231053215]
|
31 Jan, 2019
|
PrintStream append(CharSequence, int, int) method in Java with Examples
31 Jan, 2019
The append(CharSequence, int, int) method of PrintStream Class in Java is used to append a specified portion of the specified charSequence on the stream. This charSequence is taken as a parameter. The starting index and ending index to be written are also taken as parameters.
Syntax:
public void append(CharSequence charSequence, int startingIndex, int endingIndex)
Parameters: This method accepts three mandatory parameters:
charSequence which is the charSequence to be written in the Stream.
startingIndex which is the starting index from which the portion of character is to taken.
endingIndex which is the ending index to be written on the stream.
Return Value: This method do not returns any value.
Below methods illustrates the working of append(CharSequence, int, int) method:
Program 1:
// Java program to demonstrate
// PrintStream append(CharSequence, int, int) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a PrintStream instance
PrintStream stream
= new PrintStream(System.out);
// Get the charSequence
// to be written in the stream
CharSequence charSequence = "GeeksForGeeks";
// Get the starting index
int startingIndex = 0;
// Get the length of char
int endingIndex = 5;
// Write the portion of the charSequence
// to this stream using append() method
// This will put the charSequence in the stream
// till it is printed on the console
stream.append(charSequence,
startingIndex,
endingIndex);
stream.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
Geeks
Program 2:
// Java program to demonstrate
// PrintStream append(CharSequence, int, int) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a PrintStream instance
PrintStream stream
= new PrintStream(System.out);
// Get the charSequence
// to be written in the stream
CharSequence charSequence = "GFG";
// Get the starting index
int startingIndex = 2;
// Get the length of char
int endingIndex = 3;
// Write the portion of the charSequence
// to this stream using append() method
// This will put the charSequence in the stream
// till it is printed on the console
stream.append(charSequence,
startingIndex,
endingIndex);
stream.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
G
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java/Split a List into Two Halves in Java/Randomly Select Items from a List in Java/Get first and last elements from ArrayList in Java/Java Program to Find the Length/Size of an ArrayList/Why Array.length() gives error when used in Java?/CharArrayWriter size() method in Java with examples/CharArrayWriter append() method in Java with Examples/Writer append(char) method in Java with Examples/PrintWriter append(CharSequence) method in Java with Examples/PrintStream append(CharSequence, int, int) method in Java with Examples
|
https://www.geeksforgeeks.org/printstream-appendcharsequence-int-int-method-in-java-with-examples/?ref=ml_lbp
|
Pandas
|
PrintStream append(CharSequence, int, int) method in Java with Examples
|
memcpy() in C, C++, Python | Pandas Series.to_sparse(), Find Maximum and Minimum Element in a Set in C++ STL, Sum of all even occurring element in an array, std::function in C++, How to pass an array by value in C ?, Sorting a 2D Array according to values in any given column in Java, Java Program to Find the Length, Templates in C++ vs Generics in Java, Virtual Functions and Runtime Polymorphism in C++, PrintWriter append(CharSequence) method in Java with Examples, C++ Programming Examples, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, array::fill() and array::swap() in C++ STL, Calculating the Product of List Lengths in a Dictionary – Python, Randomly Select Items from a List in Java, CharArrayWriter size() method in Java with examples, CharArrayWriter append() method in Java with Examples, Merging or Concatenating two Dictionaries in Python, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Competitive Programming – A Complete Guide, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Why Array.length() gives error when used in Java?, Hashing in Data Structure, Size of an ArrayList, Python Program to Swap dictionary item’s position, Sort given array to descending-lowest-ascending form, C++ Map of Functions, Sort an array in descending order based on the sum of its occurrence, How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Ways to change keys in dictionary, Pandas Tutorial, Python – Dictionary values String Length Summation, Frequency of an element in an array, How Does Default Virtual Behavior Differ in C++ and Java?, Initializing a List in Java, How to traverse a C++ set in reverse direction, Floating Point Operations & Associativity in C, C++ and Java, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Dictionaries in Python, Python | Calendar Module, Sort elements by frequency | Set 4 (Efficient approach using hash), Python | Pandas Series.var, Pandas, Comparison of Exception Handling in C++ and Java, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, set cbegin() and cend() function in C++ STL, Python | Pandas Series.to_string(), Foreach in C++ and Java, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, How to Delete an Element from the Set in C++?, STD::array in C++, Find the Kth occurrence of an element in a sorted Array, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, PrintStream append(CharSequence, int, int) method in Java with Examples, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
|
GeeksforGeeks
|
[0.0126024568, 0.00726711, -0.0141087724, 0.0169144291, 0.00300400704, -0.00506225508, 0.00833647884, 0.00301550562, -0.0341048241, -0.0112858675, 0.0169719215, 0.00356456335, 0.019570604, 0.0016011789, -0.0229166932, 0.0278495885, -0.0128209293, 0.0180182923, -0.00280996831, 0.0275046322, -0.0198005755, 0.000822149334, -0.0444075614, 0.00519736344, 0.00604251, 0.0293674041, -0.0387732498, 0.00923911855, -0.0729930624, -0.0269986931, 0.00525485631, 0.0473282039, 0.0206859671, -0.0190646648, 0.00094575918, -0.00289477035, 0.0221232902, -0.0355076529, -0.00505938055, -0.0557451732, -0.0380833372, 0.000148583364, 0.00328859733, 0.0196855888, -0.0278955828, 0.0376923829, -0.016879933, -0.0152931269, -0.0405210368, -0.0347487442, 0.0365885198, 0.00531522417, -0.00958982576, -0.00894590467, 0.0055394466, 0.0311611835, 0.00628973, -0.000290878437, -0.0286084954, -0.0424987935, -0.00138629891, -0.0144767268, 0.0110271499, -0.0309772063, 0.0153161241, -0.0430967212, -0.00669218041, -0.00913563091, -0.00612300029, -0.0156150879, 0.00307587325, 0.0177308284, 0.0505938046, 0.0664618611, -0.0282635391, 0.00627248175, 0.0314141512, 0.0342198089, -0.0236870982, 0.0177998208, -0.0271596741, -0.00580391428, -0.011050147, 0.0258718319, 0.0144767268, -0.0269297026, -0.0237330925, -0.019099161, 0.0245839898, 0.0221692845, 0.017362874, -0.00582691142, 0.0296663661, -0.0121195158, 0.00930236094, 0.0485700518, -0.000890422205, -0.0196625926, -0.0351626948, 0.0410729684, 0.0101532564, 0.0213758815, -0.00355593953, -0.0236411039, -0.0105384588, 0.0275966208, -0.0110558961, -0.0254348852, 0.00937135238, 0.00832498074, 0.00365080289, -0.0203295108, 0.0111421356, 0.0459713712, -0.00139923487, -0.00902639423, 0.0180757865, -0.0235721134, 0.0472362153, 0.046845261, -0.00672667613, 0.00278265914, -0.0134763494, 0.0527095459, 0.00738209579, -0.0142927496, -0.00802026782, -0.0312531739, 0.00292782881, -0.0423838086, 0.0125334654, -0.0397851281, -0.00945184194, -0.019869566, 0.00487252837, -0.000176701011, -0.00820999406, -0.00105858909, 0.00101187604, -0.00723836338, 0.0199040622, 0.000856645056, -0.00373129291, -0.0178573132, -0.0313681588, 0.0169834197, 0.013729318, 0.0327479877, -0.0316671208, -0.0144997239, -0.0436256565, -0.0111766309, -0.0101245102, 0.0069911438, 0.00412799465, 0.00636447035, 0.0184437409, 0.0117688086, 0.00268492126, -0.0111651327, -0.0389342308, -0.0100440197, 0.00470867334, 0.00641621416, -0.010262493, 0.0283095334, 0.0262627825, -0.0441315956, 0.00558256637, 0.0357836187, 0.0118550481, 0.00861819461, 0.0237560906, 0.00191882753, -0.0445455424, -0.0381293297, -0.00828473549, -0.00432059588, 0.000504141382, 0.0289994478, -0.0368184894, 0.0110846423, 0.00512262248, -0.00692215236, 0.0179033075, -0.00326847471, 0.00238595787, -0.0318281, -0.0139707886, -0.0495359339, -0.0138213076, -0.0129129188, -0.0234111324, -0.00734185101, 0.0158795547, 0.0375084057, -0.0259868167, -0.00018775044, -0.00773855206, 0.0337368697, -0.0171099044, -0.00968181435, -0.0255268738, -0.00919312425, 0.0323570371, 0.01640849, -0.0414179265, -0.0203065127, 0.0328859724, 0.00253543956, -0.0394631661, 0.000804182782, 0.0087561775, -0.0222612731, 0.0188461915, -0.0092908619, 0.00845721457, 0.00121094543, 0.00753732678, -0.0342888, 0.00750283105, -0.00579816476, 0.0548252836, 0.00943459477, -0.0202605184, -0.0384742878, -0.00699689286, 0.0215598587, -0.0335068963, -0.0161210261, 0.0280565638, -0.0181217808, -0.0279645752, 0.00997502822, 0.0299193356, -0.0380833372, -0.0266077407, 0.00350419572, 0.0255958643, 0.0376923829, 0.0091701271, 0.00241039228, -0.00266479864, 0.0234571267, 0.00895165373, 0.0419238657, 0.0148446821, 0.0291144345, -0.00515424367, -0.0224682484, -0.0200190488, -0.0267687216, -0.0179493017, 0.0468912572, -0.0387042612, 0.040705014, -0.00741659151, 0.0252049137, 0.0276656114, 0.0367954932, 0.0180182923, 0.0458793826, 0.00925061665, -0.0330009572, 0.00900339708, -0.0147526935, 0.0132693751, -0.00773855206, -0.00628398033, 0.0211804062, 0.0259868167, -0.00223647617, 0.0201455317, -0.0125564625, 0.0033777114, 0.0134533523, -0.00996927917, -0.0347027481, 0.0240550544, 0.0243310202, -0.022709718, 0.0467532724, -0.0473741964, -0.00980254915, -0.0189956743, -0.037531402, -0.0536754243, 0.00793977734, 0.00851470698, 0.0161900166, -0.0126599493, -0.035484653, 0.000647873792, 0.0335758887, 0.0431197174, 0.02554987, -0.0451894663, 0.0261248, -0.0206744671, -0.0126944454, -0.0053784661, 0.00399288582, 0.0245379955, -0.0534454547, -0.00236296048, -0.0178343151, -0.026193792, 0.022399256, 0.0303102881, -0.00176647119, 0.0407280102, -0.077638492, -0.047006242, 0.00129071693, 0.00313624088, -0.00750283105, 0.0713832602, 0.0266307388, -0.0260098148, -0.033138942, 0.00770980585, -0.0119585358, 0.0304712672, 0.0176388398, 0.0169144291, -0.0171673968, 0.00295226346, 0.0216403492, 0.00910113566, -0.0176158417, -0.0251359213, 0.010728186, 0.00327134924, -0.0203870032, -0.00452757068, 0.0346567556, -0.0352776796, -0.0214793701, 0.0043407185, 0.00243770145, -0.0211229138, -0.0162475109, 0.00280565629, -0.0382673144, 0.02554987, 0.0203870032, -0.0212378986, 0.0339208469, 0.000854489102, 0.0295513812, 0.000593974139, 0.00154656055, 0.0579988956, -0.0603446104, -0.0186852124, -0.0414179265, -0.0351626948, -0.0178803094, -0.010417724, -0.0300803166, 0.0192946363, -0.00803176593, -0.0130509017, 0.0106534455, 0.02335364, -0.0304712672, -0.00221635355, 0.0223302655, -0.00537271705, 0.01167682, -0.0156840794, -0.00696814666, 0.0253428966, -0.0226637237, 0.0517436638, -0.008164, 0.0186392181, -0.0106476955, 0.0346797518, 0.014350242, 0.00300400704, 0.0359445959, 0.0102739921, -0.0166614596, 0.0187312067, 0.00669792946, -0.047834143, -0.0130164055, -0.000103128, -0.0172248911, -0.00780754397, 0.0507777818, 0.00413661823, 0.00308162253, 0.0153966146, 0.00465980452, -0.0344727784, -0.0318281, 0.0220198035, 0.00597351836, 0.0410729684, 0.00554807065, 0.00836522505, -0.0135108456, -0.00338058593, 2.66578681e-05, 0.00585565763, -0.0241930373, 0.00814100262, 0.0332999229, 0.0138558028, 0.0294133984, -0.0023270275, -0.0366805084, -0.0101417582, 0.0245379955, -0.00471442239, 0.017661836, -0.00345245213, -0.0111248875, -0.00830773264, -0.00630122842, 0.00435796613, 0.0105097126, -0.0273436513, -0.00903789327, 0.0172938816, 0.0286544897, -0.0289534535, -0.0106246984, -0.0545493178, 0.000522826565, -0.00323685352, 0.0168109406, -0.0167074539, -0.00794552732, -0.0264007673, -0.0184322428, -0.0364965312, -0.0237330925, -0.0315291397, 0.00580103928, -0.0352086872, -0.0241240449, -0.0229741856, -0.000966600375, -0.0454654321, -0.0266997293, 0.00321960566, 0.0219048169, -0.065358, 0.00657144515, -0.00418548752, 0.00822724216, 0.0223072674, -0.0319890827, -0.0159830432, -0.0189726762, 0.011366358, 0.0265387502, 0.010090014, -0.0155116, -0.0238710772, 0.00211861543, -0.0137063209, -0.0269297026, 0.041026976, -0.0143042477, -0.00588440429, 0.00932535809, -0.00134892855, -0.00497314101, -0.0190646648, -0.0134533523, -0.00743958866, 0.0165579729, 0.00201225351, -0.0153276231, 0.00226665987, -0.0465233028, 0.0332079343, 0.0062954789, -0.0171329025, 0.00292782881, 0.00464255642, -0.0159025528, -0.0168224405, -0.0162015166, -0.0223762598, 0.0177423265, 0.00688190712, 0.0166269634, -0.00749133248, -0.0121885072, 0.00852620602, 0.0340128355, -0.0271596741, 0.0154196117, -0.00341795641, -0.0134418532, -0.0298733413, 0.00369392266, 0.0182942599, -0.028723482, -0.00340070855, -0.0340818241, -0.0379913487, -0.0238480791, -0.0164544843, 0.0108201746, -0.0109064141, 0.00576079451, 0.00550782541, -0.0147756906, -0.0151781412, 0.0210079271, 0.00663468754, -0.0282175448, -0.00121597608, -0.00665193517, 0.00552219851, 0.0103659807, -0.0120965187, -0.0376463905, -0.0340128355, 0.00789378304, 0.0180987827, -0.0058067888, 0.00838247314, 0.0313451625, -0.00915862806, 0.00498176506, 0.00243770145, 0.0294823889, 0.00994053297, -0.0300113242, -0.00595627027, -0.02807956, -0.0183862485, -0.0103659807, -0.0324030332, 0.015143645, 0.00749133248, -0.00895165373, -0.0282865353, 0.00646220846, -0.0244690031, -0.00922187, 0.0242620278, 0.004415459, 0.0330239572, 0.0501338616, 0.0434646755, 0.0229741856, -0.00895740278, -0.0360825807, 0.00766956061, -0.0117515605, -0.00538421562, 0.0221692845, -0.0345877632, 0.0237100963, 0.045120474, -0.0242620278, -0.00901489612, -0.030448271, 0.0220543, -0.0114181014, -0.0254808795, 0.0155116, 0.0125104673, -0.01894968, -0.00862969272, -0.0156035889, 0.0252049137, 0.017822817, 0.0452814549, 0.000996065559, 0.058688812, 0.00471442239, 0.00296376203, 0.00988304, 0.0245609917, -0.0156495832, 0.0151896393, 0.00484953122, -0.0249519441, 0.00670942804, -0.0300113242, 0.0114181014, 0.0160175376, -0.0103947269, -0.0207434595, -0.0152241355, -0.0355306491, -0.00916437712, 0.0110156508, -0.016098028, -0.0196625926, -0.00361055788, 0.000415386632, 0.0542273596, 0.0228477, -0.0017089782, 0.00298101, 0.00226091058, 0.000964444363, 0.0286314934, 0.0116595719, -0.0209389348, 0.00461093523, -0.00467417762, 0.057171, 0.0023572112, -0.00452757068, -0.015626587, -0.0106879408, 0.0209274366, -0.0212838929, 0.00356743811, 0.00107799296, -0.0470292382, 0.0480641127, 0.0153391212, 0.00171329011, -0.0201340336, 0.0134303551, -0.028401522, 0.00217323378, 0.00457356498, -0.0127289407, -0.00708888192, -0.000493720756, 0.000348191737, -0.0256188624, 0.00573779736, 0.0138213076, 0.0213643834, -0.0178343151, -0.00100828276, -0.00216029794, -0.000482222182, 0.017995296, 0.0355306491, -0.0128784226, 0.0127634369, -0.0171788968, -0.0010291239, 0.00272947829, -0.00565730734, 0.000236619453, -0.00595052121, -0.000304533023, 0.0117343124, -0.0289764516, -0.00282577891, 0.0511457361, 0.0149366707, -0.00539571419, 0.00800302, 0.0371634476, -0.00044700774, -0.0179378036, -0.0153736174, -0.0138558028, -0.0110788932, -0.0184092447, -0.00819849595, -0.00223360141, 0.00829048455, -0.0261018034, -0.0303562824, 0.0362665579, -0.00554807065, -0.00348407333, -0.0050967508, -0.0272286646, 0.0340818241, 0.0304252729, -0.0063414732, 0.0218703207, 0.0178573132, -0.0244000107, 0.0120850196, 0.00375141553, 0.00070069544, -0.0315521359, -0.0559291504, -0.000892578159, -0.020996429, -0.013257876, -0.00249375706, 0.0384742878, 0.00434646755, 0.0301033128, 0.0106879408, -0.0023428381, 0.0103429835, 0.00467130309, -0.0159140509, -0.0162935052, -0.00906089, -0.0359216, -0.0124759721, 0.000622361258, -0.00830773264, -0.00926211569, 0.0111076394, 0.00890565943, 0.0119585358, 0.000694586779, -0.00657719467, -0.0221577864, 0.0199615546, 0.0132463779, -0.00922761951, 0.0413949303, -0.00710038049, 0.0393021852, -0.00846296363, 0.0278265923, -0.0244920012, 0.0108776679, -0.00344957761, 0.00986579154, 0.00544170849, -0.0202145241, -0.00737634674, -0.0110041527, 0.00651970133, -0.00500188721, -0.0159945413, 0.0137063209, -0.0233076457, -0.0433956869, 0.0139707886, -0.00489265099, 0.00718087051, -0.0176158417, -0.0195936, -0.00299250847, -0.0282865353, -0.00827898644, -0.00393826747, 0.00956107862, -0.0223417636, 0.00437808875, -0.00395839, -0.0417168923, 0.032656, -0.0125104673, -0.0336448811, 0.0155230984, -0.0315291397, -0.0191221572, 0.0104349721, -0.0053324718, -0.00665768469, 0.0023112169, 0.021916315, -0.0315981284, 0.040705014, 0.00311899302, 0.00390952127, 0.0185587276, 0.00733610149, -0.0152931269, -0.00849171, -0.0184092447, -0.0157300737, 0.008681437, -0.00901489612, 0.0159715433, -0.0344957747, -0.00355593953, 0.00165004795, -0.0286314934, -0.0164314881, 0.00922761951, -0.021295391, 0.0318970941, 0.0246529803, -0.00222066557, 0.0119240396, -0.0119815329, -0.00669792946, 0.0213183891, -0.0135913352, 0.0101705045, -0.0492599681, -0.00914713, 0.0190186705, 0.0493059605, -0.0053180987, 0.0353696682, 0.0181677751, -0.0203755051, -0.0281945467, -0.0156380851, -0.0268837065, 0.0140972733, -0.0271596741, 0.0270446874, -0.00833647884, -0.0125104673, 0.0148676792, -0.00164286129, -0.00942309573, 0.00264180149, 0.0108431717, 0.00472017191, -0.000363103958, -0.00956107862, -0.00350707048, -0.00549920136, 0.0219853073, -0.0337828621, 0.00938285049, 0.00717512099, 0.0152471326, 0.00701989, -0.0113318618, 0.0303332843, -0.0143387439, 0.0193061363, 0.0434416793, 0.0070371381, -0.00420561, -0.00740509294, 0.0202835165, 0.00514849462, -0.0218818206, 0.000812806713, -0.0164659824, -0.0231466647, 0.0200190488, -0.0140857752, 0.0150401583, -0.0188116953, 0.0331159458, -0.0365655199, 0.0166384615, -0.00138773629, -0.0353466719, -0.00160836556, -0.0111593837, -0.00951508433, 0.0072728591, 0.0416249037, 0.0185012333, -0.0146147097, -0.0336218812, -0.00529510155, 0.0298503432, -0.0234456286, -0.00579529, 0.0325410143, -0.0210769176, -0.0125794597, -0.00528935203, 0.0430277288, 0.00262311613, -0.0330009572, 0.0100037744, -0.00592752406, 0.0143042477, -0.023192659, 0.000398138742, 0.0159025528, -0.0285395049, 0.0297123604, 0.0459253751, -0.000609066046, -0.0466842838, 0.0124759721, 0.00225228653, 0.0138558028, -0.00401588297, -0.00810650736, -0.0234226305, -0.0137178199, -0.00395839, -0.0253428966, -0.0140972733, 0.0144767268, -0.0140282819, -0.0403600559, -0.0162130147, 0.0117745576, -0.0254578814, -0.00199931767, 0.0123724844, -0.00102193735, -0.0202375222, 0.0438556299, -0.0119240396, 0.00664043659, -0.00873892941, 0.00540433824, -0.029344406, 0.00396988867, -0.0032282297, -6.18723061e-06, -0.0231811609, -0.0191336572, -0.0229396913, 0.0290684402, 0.0208009519, -0.00718662, -0.0223417636, -0.00401300844, 0.0128439274, -0.0352316834, -0.0132233808, -0.0168454368, -0.0121080168, -0.0277346037, 0.0188576896, 0.00617474364, -0.0270216912, -0.0277576, 0.0317361131, -0.0123609863, -0.017673336, 0.0214793701, -0.0468222648, -0.00402738154, -0.0171099044, 0.0248139612, -0.0110846423, 0.0155116, 0.0163165014, -0.00687615806, -0.00318511, 0.0123839835, -0.0299423318, -0.0710153058, 0.0199845526, -0.0319660865, -0.00984279439, 0.00400151, 0.0256188624, 0.0268607102, -0.0200075489, 0.0495819263, -0.0196510926, -0.0232961476, 0.0111076394, -0.00101043878, 0.0140972733, 0.0125909578, 0.0191566534, -0.00409924798, -0.023043178, -0.0092161214, -0.0363355502, -0.015465606, -0.0165924672, 0.000254945335, -0.00167160772, 0.0086354427, -0.0311381854, -0.0103084873, -0.0145917125, -0.00345820142, -0.0118895434, -0.00529222703, -0.0132348789, 0.0153276231, -0.0177998208, 0.0160635319, -0.0110041527, -0.0258718319, 0.0403600559, 0.00944609288, 0.0197890755, -0.0471442267, 0.0156150879, -0.015626587, -0.0265617464, 0.0205594823, -0.0190071724, -0.0055854409, -0.00274672615, 0.0175238531, -0.0518816449, 0.0480181202, 0.00191882753, -0.00990603678, 0.00548770279, 0.0136488285, -0.0146262087, -0.0158450585, -0.0155345974, -0.0155116, 0.0165809691, 0.0215138644, 0.00948058907, -0.0352776796, -0.0116135776, -0.00346682547, -0.0227327161, -0.00685891, 0.0092736138, 0.0349557176, -0.00456494093, -0.0379683487, 0.0134648513, -0.0163739938, 0.0262857806, 0.00933110714, -0.0352316834, 0.0135453409, 0.0179837979, -0.0143387439, -0.00476904074, -0.0345877632, -0.0526175573, -4.91834271e-06, 0.0286314934, -0.0133958589, -0.0177423265, -0.00131730735, -0.0211344119, -0.00136976968, -0.00844571553, 0.00934835523, 0.0358296111, 0.001124706, 0.00768680871, 0.0120390253, -0.0104234731, 0.0119700339, 0.0191681515, 0.00993478298, -0.0146607039, 0.00042185458, 0.00666343374, -0.0306552462, -0.00698539428, 0.0106304483, 0.00320810708, 0.0171099044, 0.00223503867, 0.00576366903, -0.026354773, 0.0220313016, 0.0228017066, -0.00454769284, 0.00986579154, -0.00697389571, -0.0118895434, 0.0160175376, 0.00697964523, -0.0367954932, -0.00273953937, -0.00410787202, 0.0101935016, 0.0022652226, 0.00573204784, -0.00218904437, -0.00677842, 0.0320810713, -0.0183632504, -0.00910688471, 0.0346337594, -0.0385662764, 0.00559406495, 0.00497314101, 0.0078535378, -0.00965306815, -0.0157875661, 0.00219048164, -0.0114468476, 0.00086886232, -0.0154886032, -0.0122115044, -0.000801308081, 0.0221577864, -0.0571250021, -0.0160405356, -0.0048754029, -0.00568030449, -0.0139937857, 0.00490127457, 0.00261161756, 0.0163165014, 0.00535546895, 0.0113951042, 0.0142237581, -0.00493002124, 0.00753732678, -0.0187082086, 0.00792252924, 0.0019202648, 0.00406475225, -0.0123264901, 0.0467762724, -0.015925549, -0.0181792732, -0.0223302655, 0.0127289407, -0.0173973683, -0.0156955775, 0.0141202705, 0.00666918326, -0.0380603373, 0.000748845807, 0.0101877525, 0.0476961583, 0.00936560333, 0.000207333986, 0.0246299841, -0.0107454341, -0.0334149078, -0.0027840964, -0.00937135238, -0.0355536453, 0.0129704112, 0.00700264238, -0.00150200352, 0.000644999149, -0.0265847445, 0.00551357493, 0.00569755211, 0.00456781546, 0.0127174426, 0.00905514136, -0.00242332811, 0.0129589131, 0.0147181973, 0.0174893588, 0.000204818658, -0.0202950146, 0.0144192344, -0.00842846744, -0.00368817337, -0.00600801408, -0.00241326704, 0.00874467939, 0.00156668318, 0.0272286646, -0.0106304483, -0.0124874702, 0.00681291567, -0.0249749403, 0.00861244556, 0.0193751268, -0.0225947332, -0.0103602307, -0.0146147097, -0.00308449729, 0.000753876404, -0.014982665, -0.0396011509, 0.00674392423, -0.0144307325, 0.00604251, 0.0190876629, 0.0194901135, 0.012303493, -0.0127519378, 0.0177538265, -0.0216633473, 0.0301953014, 0.0158910546, 0.00669218041, -0.000781185576, 0.00652545085, -0.00449307449, -0.00407050131, -0.0109984027, 0.00173628738, -0.0193981249, 0.0159025528, -0.00489265099, -0.0236870982, 0.00213011401, -0.0262627825, -0.0207434595, 0.002444888, -0.00917587616, -0.00388364936, -0.0247219726, 0.0108776679, -0.00442120852, -0.00789953209, -0.0195361078, -0.00507662818, 0.0041337437, 0.0037629141, -0.00892290752, 0.0058211619, 0.00292207953, -0.000473598251, -0.0057924157, 0.00850895792, -0.00671517756, 0.0217553359, 0.00646220846, -0.0131313913, 0.0043407185, 0.0015034409, -0.00119800947, 0.0155230984, 0.0104349721, 0.0175583493, 0.0132233808, 0.00887691323, -0.0147756906, 0.0121195158, -0.000385921478, -0.00539858872, 0.0172478873, -0.00950358622, 0.00226091058, 0.0236411039, -0.0211229138, -0.00224653725, -0.0325410143, 0.000692790141, -0.019559104, -0.0140742762, 0.00231840345, 0.0233191438, 0.0172133911, -0.0025483754, 0.0121770082, 0.0144652287, 0.00324835209, -0.0179493017, -0.0105442088, -0.0031247423, 0.0191106591, -0.00222354, -0.0108316736, -0.0182252675, 0.038520284, 0.0021617352, 0.0114353495, -0.0116423238, 0.0116308257, 0.01861622, -0.00807776, 0.00417398894, 0.0379453525, 0.00884241704, -0.0324490257, 0.0142237581, 0.0101705045, 0.00347832404, 0.0228477, 0.0194901135, 0.010101513, -0.0170754083, -0.0420618467, -0.0108604198, 0.000835803861, 0.0172363892, -0.0259408224, -0.0241010487, -0.0187427048, -0.0036594267, 0.0035415662, -0.0158680566, -0.00743383961, -0.01861622, 0.0199500564, 0.0384052955, -0.00146535179, -0.00198925636, -0.00696239714, 0.027136676, -0.00765806204, -0.0181792732, 0.0308622196, -0.00269067055, -0.0210769176, -0.00872168224, -0.0239630658, -0.0152931269, -0.0212264, -0.00741084246, -0.00442983257, -0.00648520561, 0.0248139612, 0.00355881406, 0.0145572172, 0.00240033097, 0.00304425205, 0.0238710772, 0.00892865658, 0.0330009572, 0.0116135776, 0.00112255, -0.0234801248, 0.0106361974, -0.00367092551, 0.00765231298, -0.0145687154, -0.0140512791, 0.0107569322, -0.012314992, -8.84852561e-05, -0.0422458276, 0.0218128283, -0.00266767316, -0.0113778561, 0.028884463, 0.0267457236, 0.0109294113, -0.0210999157, 0.0199845526, 0.0201225355, 0.0215138644, 0.0249979384, -0.0105039636, 0.00949208718, 0.0303562824, 0.0300803166, -0.00156955782, -0.0293674041, -0.0263317749, -0.0107224369, 0.0010370292, 0.00522323512, 0.00914138, -0.0227327161, 0.0165924672, 0.0168224405, 0.00722111575, 0.0306322481, 0.00402738154, 0.0108144255, 0.00714062527, 0.00144666655, -0.000786216231, -0.00706013525, 0.0259868167, -0.0366345122, 0.00503063388, 0.00135539647, -0.000209310296, 0.00198925636, 0.0104809664, -0.023192659, 0.0153506203, -0.00521748606, -0.0202145241, -0.00274385139, -0.00280421902, -0.0187427048, 0.0109811546, 0.00553369708, -0.00176215917, 0.0110156508, 0.00208843173, 0.0206514709, -0.0344497822, -0.0305172615, -0.0259178262, 0.00669218041, 0.0141317695, 0.000148942694, -0.0312071778, -0.0315061398, 0.00084442785, 0.0109466594, 0.0107856793, 0.012774935, 0.00413949322, 0.0216403492, -0.0236411039, 0.0330009572, 0.0177193303, 0.00493289577, -0.00683591282, -0.0212608967, -0.000200686365, 0.0127979321, -0.00108661689, -0.0092908619, -0.00966456626, 0.00720386766, 0.0337368697, 0.0156725813, -0.00818699691, 0.0187886991, 0.0144997239, 0.0338978469, -0.003509945, -0.0161325242, 0.0148906764, -0.0210999157, 0.0149366707, -0.0310691949, 0.000869581, 0.000564509, -0.0077558, -0.0211229138, 0.0170869064, 0.00350419572, -0.000972349662, 0.0109926537, -0.0184897352, 0.0186507162, -0.0206859671, -0.0295053869, 5.90201162e-05, -0.000687759544, -0.0345187709, -0.00841122, 0.00614599744, 0.0288154706, -0.00615174649, -0.00526348036, -0.0192141458, 0.044798512, 0.00210855436, 0.0196740907, -0.0108661689, -0.00877342559, -0.0401300862, 0.0126024568, -0.0344037861, 0.0152356336, -0.0258258376, 0.0307012405, -0.0270676855, -0.0226752236, 0.0128784226, -0.0165004786, 0.0150976507, -0.018466739, 0.0108604198, -0.0166729577, -0.0209849291, -0.0194211211, 0.0173398759, -0.00683591282, 0.0353006758, -0.0275046322, -0.0202490203, -0.0207549576, 0.0330239572, -0.0104004759, 0.0314141512, 0.00497314101, 0.00343232951, 0.0359445959, -0.0101245102, 0.00411074655, 0.00458218856, 0.0140167829, 0.0365885198, -0.0223647617, 0.0321040675, 0.0290684402, -0.000690993504, 0.000946477812, 0.00811800547, 0.00133239932, -0.0185127333, -0.0250669308, 0.0169259273, 0.0487080328, 0.00295513798, 0.00497026648, -0.0285855, -0.00167160772, -0.0153506203, -0.00901489612, -0.00479491288, -0.00227528391, 0.0310232, 0.0111881299, -0.0123839835, -0.00441258447, -0.0241010487, 0.0131888846, -0.00311611826, -0.00206687185, -0.00488402694, 0.0155460956, 0.0237790868, -0.0169604234, 0.025710851, 0.00210711686, 0.026193792, 0.0188116953, -0.0020754959, -0.00738209579, 0.0125449635, -0.0287694763, 0.0251819156, -0.00375429029, -0.0389112346, 0.0268607102, 0.0145917125, 0.00765806204, 0.00205249852, -0.0172133911, 0.00491852267, -0.00344670285, 0.0163395, 0.0115675833, -0.00161555212, -0.0235491153, 0.00212580222, -0.0368414894, -5.8526035e-05, 0.025710851, 0.0225717351, 0.0181217808, 0.00806626212, 0.00696239714, -0.00074237783, 0.0210194252, -0.0210424233, -0.0305862539, 0.03281698, -0.0113721071, -0.000540074485, 0.0103314845, -0.0186047219, 0.0150861526, 0.00425735349, 0.0141547667, 0.0324030332, -0.0283325296, -0.0150056621, 0.0172938816, -0.00299250847, -0.00657144515, -0.00366805075, -0.00160549092, -0.0031707366, -0.00923911855, 0.00104780914, -0.0073188534, -0.0342198089, -0.00702563953, -0.018777201, -0.0166269634, 0.00600226503, 0.00289333309, -0.00891140848, -0.0188691895, 0.000269138924, -0.00904364232, -0.000591458811, -0.0190761629, 0.0151896393, -0.00219191913, -0.0317821093, 0.0174893588, -0.0191106591, -0.0143272448, 0.00249375706, -0.0157990642, 0.00710038049, 0.0140742762, 0.0058527831, -0.00249231979, -0.0202490203, 0.00945184194, -0.00463105785, 0.00147756899, -0.0283325296, 0.0165234767, 0.027136676, 0.00560268899, -0.0104292231, 0.0190301687, -0.00344957761, 0.0113031156, 0.00887116324, 0.00252681552, -0.00560843805, 0.02807956, -0.00223503867, -0.0190071724, 0.0227557123, 0.00825023931, 0.0169374254, -0.0205364842, -0.0102279969, 5.12944971e-05, -0.0115503352, 0.0063874675, 0.0058987774, 0.00895740278, 0.00684741139, 0.013085397, -0.0143157467, -0.00791678, -0.00740509294, -0.0121080168, -0.00421423372, -0.0144882258, 0.0233076457, 0.0119240396, 0.00718087051, -0.00240895501, -0.0038807746, 0.00850895792, 0.0103372335, -0.00559119042, -0.00444995519, -0.00733035197, 0.0102107497, -0.0145687154, 0.00652545085, -0.0235951096, -0.00922761951, -0.00222354, -0.0115733324, 0.0182482656, -0.0236181077, 0.0269526988, -0.0251359213, 0.013890299, 0.00185271061, 0.00444133114, 0.0124989692, -0.0172593854, -0.000482581527, -0.0149021745, -0.00521461153, 0.000973068294, 0.010739685, 0.00352144381, 0.014361741, -0.00352144381, 0.00176503381, 0.00916437712, 0.00513412105, 0.00997502822, 0.0254808795, -0.0145687154, -0.0125334654, 0.00203812541, -0.0119815329, -0.0030528761, -0.0120620225, -0.000743815152, 0.00144091726, -0.00433209445, 0.0231696628, -0.0303102881, 0.00478916336, 0.00578954071, 0.00561993662, 0.0121195158, -0.0118895434, -0.0339208469, -0.00156668318, 0.00593902264, 0.0102337468, 0.0120045301, 0.0193636287, -0.0038779, 0.012613955, 0.0032426028, 0.00439821137, -0.00389227318, 0.0127634369, 0.00719236908, -0.0184092447, 0.0112456223, 0.0065312, 0.00650820276, 0.029183425, -0.0119010424, -0.00734185101, -0.027780598, 0.0039267689, 0.00748558296, -0.0025943697, 0.0179378036, -0.0198350698, 0.00986004248, 0.0185012333, 0.0177078303, -0.00445570424, -0.0169489235, -0.00129287294, -0.00449594948, 0.0135453409, -0.0266307388, 0.000562353, -0.022709718, 0.000552651065, -0.0146147097, -0.00089401548, 0.0144077353, -0.0132348789, -0.00613449886, -0.00615174649, 0.0131083941, 0.0314141512, -0.00747408438, -0.0295513812, -0.00451894663, 0.00448445091, -0.0144307325, -0.00994628202, 0.00985429343, -0.00910113566, -0.00401588297, -0.0362895541, -0.0124069806, 0.00767531, -0.00815250166, -0.0275736228, -0.015143645, 0.00796277449, -0.00502201, 0.00342945498, 0.0102394959, 0.0113721071, 0.0199960507, 0.0155116, -0.0101360083, -0.000513484, -0.00338058593, 0.00108446088, -0.0125794597, 0.00300113251, -0.0106649436, -0.0247219726, -0.00172910071, -0.00685891, -0.024606986, 0.0209274366, -0.010101513, -0.0113376118, 0.0103774788, 0.00502775935, -0.0281255562, 0.0181102827, -0.00664043659, -0.0128899217, 0.00707163382, 0.0089804, -0.00860094652, -0.0302183, -0.00235433667, 0.00535546895, -0.00409062393, -0.0229511894, 0.0100785159, -0.0133728618, 0.00115345244, -0.00949783716, -0.0144882258, 0.0122919949, 0.0140972733, -0.00945184194, -3.56186829e-05, 0.0112341242, -0.00570617616, 0.0137638142, 0.00252106623, -0.00588440429, -0.00288902107, -0.0157875661, -0.0077615492, -0.00599651551, 0.00242045359, -0.015925549, -0.00483515766, 0.00803751592, 0.0325640105, 0.00393539295, 4.75215238e-05, -0.0111938789, 0.0121425129, -0.00830198359, 0.00525773084, -0.0204329975, 0.00546183111, -0.00189726765, -0.0018426493, 0.0134878485, 0.0213873796, 0.00807776, 0.0146147097, 0.011354859, 0.00357031263, 0.00518873939, 0.00318223517, 0.0130738989, 0.00718662, 0.0270446874, 0.00298963394, -0.00951508433, 0.0306092519, 0.0134418532, -0.00469142525, -0.0116078286, 0.000947915134, -0.0288154706, 0.0183287542, 0.00427460158, 0.0233996343, -0.00815250166, 0.0179608, -0.0189611781, 0.000363822619, 0.0128554255, -0.0130049074, -0.00239170715, 0.00158824294, 0.010739685, 0.0114928428, -0.0220543, 0.0078247916, 0.00942884479, 0.0215713587, 0.0115618343, -0.000341005099, -0.00664618611, 0.00146463315, 0.00360768312, -0.00915287901, 0.00214017532, 0.0165809691, 0.012625454, -0.018305758, 0.028240541, -1.05553481e-05, 0.0218128283, -0.0089804, 0.0034955719, -0.00403313106, -0.0160635319, -0.00176934584, 0.0069911438, 0.00597926788, 0.0331619382, -0.0189841744, -0.0169719215, -0.00524910726, -0.0274816342, 0.00971631, -0.00715212384, -0.00840547, 0.00684166187, 0.00698539428, 0.00394689152, 0.00509387627, -0.0129589131, 0.00848021172, -0.000202662675, -0.0058240369, -0.0313451625, -0.0111708818, 0.0127289407, 0.00874467939, -0.00611725077, 0.0345417708, 0.002919205, -0.00390952127, -0.00502488436, 0.0208009519, -0.0253658928, 0.000651826442, 0.0200075489, 0.00209561829, -0.00628398033, -0.00945184194, 0.00171903952, 0.00169460499, -0.00599076645, -0.0168224405, -0.0166959558, 0.00292926631, -0.002209167, 0.00316211279, -0.0140282819, -0.0221922826, 0.0025799966, 0.00340358308, -0.00430334779, -0.00891715754, -0.00771555491, -0.0138788, 0.0154771041, 0.0160520338, -0.0166499615, 0.0116135776, 0.00527785346, 0.00578091713, -0.00261305505, -0.0033202183, -0.0137983104, -0.00453331973, -0.00773855206, -0.0175353531, -0.0355306491, 0.017201893, 0.00908963662, 0.00825598929, -0.0030528761, 0.00988304, 0.00513699604, -0.0165119786, -0.00704288762, 0.00715212384, -0.0205824785, 0.000131604975, -0.00157243246, 0.0157300737, 0.00514561962, 0.0306782424, 0.0250439327, -0.00899764802, 0.0303332843, 0.000744533783, 0.0150516564, 0.0160865299, -0.0338978469, 0.0129589131, 0.0101532564, 0.00156955782, 0.00758907059, 0.0124874702, -0.0144652287, 0.0087561775, 0.0339438431, -0.00588440429, -0.0155575946, 0.0238710772, -0.00952083431, -0.00630122842, 0.00405325368, 0.0127519378, -0.00890565943, 0.0110846423, 0.0235376172, 0.00323972828, 0.00908963662, -0.0102682421, -0.00185702252, 0.0287694763, -0.0100382706, -0.00415386632, -0.0133613637, -0.0159370489, 0.0387732498, 0.00253400207, 0.00618049316, 0.0191911496, -0.00215886068, -0.0293904, 0.0133498646, 0.00722686481, -0.0081927469, 0.00843996648, 0.0290454421, 0.00233996334, -0.00681291567, -0.0087561775, 0.0131083941, -0.00464255642, -0.0210079271, -0.00355881406, 0.03502471, 0.000216137589, 0.00531234918, -0.00131946336, 0.0109121632, 0.012625454, -0.00711187907, -0.0169029292, -0.034863729, -0.00449307449, 0.00462530833, 0.0281945467, -0.0132923722, 0.00760056917, 0.00647945656, -0.00984854344, 0.00513699604, 0.0219048169, 0.000105733146, -0.00124903454, 0.035185691, -0.0190416686, -0.00570617616, -0.00455919141, -0.0102337468, -0.0155230984, -0.00595052121, 0.000514202635, -0.00511399843, 0.014994164, -0.0278035942, -0.0111766309, 0.00297813513, -0.002799907, 0.0151781412, -0.0162475109, 0.0100670168, -0.0046080607, -0.00662318897, -0.0202260222, -0.0133153694, -0.0100095244, 0.0203295108, 0.0125794597, -0.0139822876, -0.00951508433, -0.0042861, -0.000998221454, -0.0101820026, 0.0178688113, 0.000651826442, 0.00471442239, -0.0019978804, 0.000905514113, -0.00255556195, -0.014200761, 0.0129704112, 0.00858369842, 0.0160635319, -0.00965306815, 0.0103084873, -0.0112571213, 0.0123839835, 0.0108546708, -0.0120735215, 0.000493720756, -0.0322420523, 0.0271826703, -0.0106419465, -0.00956682861, 0.0215368625, 0.0175353531, -0.00791103113, -0.0134303551, -0.0204444956, 0.011832051, -0.00809500832, -0.00527497893, -0.0229051951, 0.00641621416, 0.0124069806, 0.0147756906, -0.0234686248, 0.00957257766, -0.00631847605, -0.0225832332, 0.0243540164, 0.000320882566, -0.00036454128, -0.00803176593, -0.0171214025, 0.039578151, 0.015776068, -0.0105384588, 0.0202605184, 0.0362205654, 0.0243770145, -0.007732803, 0.0188001972, -0.02807956, -0.0174088683, 0.00762931537, 0.00915862806, 0.000771842955, -0.00599076645, -0.00583841, 0.0147526935, 0.0114525976, 0.00931385905, -0.0113203637, 0.0192256458, -0.0265847445, -0.0034237057, -0.00231552892, 0.00718087051, 0.00641621416, 0.0159140509, 0.00169891689, -0.00942309573, 0.00956682861, -0.00515424367, 0.00292351702, -0.0266307388, -0.0058987774, -0.0198120736, 0.00352431834, -0.012935916, 0.0224452503, -0.00767531, 0.00624948461, 0.00179234298, -0.00162992533, -0.000833647908, -0.00316211279, -0.0126484511, 0.00416823942, 0.00433209445, 0.0119010424, -0.00858944841, 0.0184897352, -0.000309204304, -0.0134648513, 0.0228706989, 0.00277116057, -0.0306552462, 0.0067554228, 0.00538134109, -0.00541296182, 0.00616899459, -0.0138788, 0.000699617434, -0.00313911564, -0.02114591, 0.00173772464, 0.00450169854, -0.00014058825, -0.0106764426, -0.0083134817, -0.012303493, 0.00911263376, 0.00500476221, -0.0128784226, 0.018305758, -0.0278955828, -0.015465606, 0.00692215236, -0.00518011535, -0.0255958643, -0.0072901072, -0.00549632683, 0.00697964523, -0.00843421742, 0.0123954816, 0.0150976507, -0.00355593953, -0.000270755903, -0.00965306815, -0.00815250166, 0.00438958732, -0.00225516129, 0.0114928428, 0.0134648513, -0.0158795547, 0.0114296, 0.0197315831, 0.0324030332, -0.0103602307, 0.0301723052, -0.0143272448, -0.0115618343, -0.0486160442, -0.00684166187, 0.0247679669, 0.0128784226, -0.0136833237, -0.013407358, -4.04696511e-05, -0.0073188534, -0.00126771978, 0.0115388371, -0.00662893802, -0.00853195507, 0.0123379892, 0.00126987568, 0.0330009572, -0.0107166879, -0.011050147, 0.00857794937, -0.00333171687, 0.0423148163, 0.00639896607, -0.0257798433, -0.000929948583, 0.0186507162, 0.000430119195, 0.0189151838, -0.00450744806, -0.00780754397, -0.00800876878, -0.0116998171, -0.00989453774, -0.0139707886, -0.0318970941, -0.0293214079, 0.0285165068, 0.009630071, -0.0147871887, 0.0233881362, -0.0124184787, -0.0218933187, -0.0100555187, -0.0126484511, -0.0155575946, -0.00741659151, 4.14353563e-05, 0.00995778, 0.0231236685, -0.0200305469, 0.000588584167, 0.0246989746, 0.0117055662, -0.0229511894, -0.00954383146, 0.0108431717, 0.00488115195, -0.0120850196, -0.0114928428, -0.0170409121, -0.00124831591, -0.00743383961, -0.0263777692, -0.00955533, -0.0103199864, 0.00511687342, -0.00739359437, -0.00520886201, 0.00477479026, -0.0124874702, -0.0110788932, 0.0231006704, 0.0065024537, 0.0143732401, -0.0155460956, -0.0180872846, 0.0111306366, -0.0360595845, 0.0115445862, 0.0417398885, 0.036611516, 0.019248642, 0.00445857877, -0.00507375365, 0.00892290752, -0.0134533523, 0.00658294372, -0.0194441192, 0.0196165983, 0.0127404397, -0.0307242367, -0.011993031, 0.0136028342, -0.00343520427, -0.0299423318, 0.034564767, -0.0128094312, -0.0311841816, -0.0215138644, -0.00562856067, 0.0251129251, 0.00548195373, 0.0272056684, -0.00578954071, 0.00740509294, -0.0197890755, -0.00764656346, -0.00792827923, 0.00105858909, 0.0215483606, -1.76970516e-05, -0.007497082, 0.010894916, -0.00229396904, -0.00900914613, -0.0244230088, -0.00893440563, 0.0238020848, -0.0129244169, 0.0157530699, 0.0125564625, 0.00808351, -0.00469717477, -0.0137868114, -0.0123609863, 0.0134763494, 0.0240320563, 0.0154196117, -0.000802745461, -0.0010686504, 0.0175238531, 0.00864694081, 0.00746833533, 0.0114698457, 0.000924199296, -0.00279415771, 0.0010808676, -0.00705438619, 0.0292294193, -0.00176215917, -0.0144652287, -0.0211114138, 0.00879067369, -0.00155949651, 0.0125334654, 0.00512549747, 0.0135223437, 0.0141892619, -0.00028674613, 0.022249775, -0.00907238852, -0.0296203718, 0.00652545085, 0.00224366272, 0.00620349031, 0.0231236685, 0.0207549576, -0.000437665149, 0.00738784531, -0.019720085, -0.0110214, -0.0279185809, 0.00669792946, 0.0185357295, -0.0306322481, 0.00853770413, -0.00714062527, -0.0133958589, -0.0142812505, -0.00723261433, 0.0178803094, 0.0209504347, 0.00784204, -0.00062451727, 0.0151781412, -0.00819849595, 0.00845146459, -0.00450457307, 0.00804901402, -0.0038980227, 0.0227327161, -0.00654269848, 0.00779604539, -0.00409062393, 0.00971056055, -0.00256274873, -0.00788228493, -0.0101475073, -0.00555669423, 0.00830198359, -0.0140972733, 0.00357318739, 0.00228390773, 0.00231696619, 0.000668715, 0.00502775935, 0.00726136053, 0.0258488338, -0.0131658874, -0.0103199864, 0.00783629064, -0.0195131097, -0.0196165983, 0.0171099044, 0.000170322892, -0.0038089084, -0.000323577551, 0.00111967535, 0.0165579729, 0.00202087755, 0.0143847382, 0.0209734309, 0.0116595719, -0.00069207151, -0.0301493071, 0.000781904208, 0.00611150172, 0.0177653246, -0.0196970869, 0.0206974652, 0.00490989862, 0.00506800413, 0.00637022, 0.00896315183, -0.00602526218, 0.00403025653, 0.0194441192, -0.00742234103, -0.0107914284, 0.0122919949, -0.0158680566, 0.00203381339, 0.0252049137, -0.00515424367, -0.00776729872, 0.00833647884, -0.00317648589, 0.0233191438, -0.0176043436, 0.0281025581, -0.0212608967, -0.0255268738, 0.00205106125, -0.00277978461, 0.00435221707, -0.000359690312, 0.00363355502, -0.00722686481, 0.0105442088, 0.00572342379, 0.00861819461, 0.0120160282, 0.00400438439, -0.0130049074, 0.000585709524, -0.0169374254, -0.00242620287, 0.0262857806, -0.0117515605, 0.011521589, -0.0035271931, 0.0226292294, -0.0271596741, -0.000536840525, -0.0124759721, 0.0187312067, 0.00436371565, 0.0365195274, 0.00695664808, -0.0275506265, 0.0123724844, -0.00478916336, 0.00687040854, 0.0203065127, 0.00318798446, 0.0127059435, -0.00989453774, -0.00161555212, -0.0194556173, -0.0068301633, 0.0211229138, 0.0150516564, 0.0138788, 0.0168914311, 0.00755457487, -0.00200506696, 0.00507375365, 0.00146607042, 0.0146492058, 0.00789953209, 0.00643346226, 0.00273235282, -0.00282865367, -0.0276886094, 0.00760631822, -0.0146032115, 0.00287033594, -0.0159370489, -0.0225947332, 0.00598501693, -0.0157875661, -0.00198350707, 0.00937135238, 0.00961282291, 0.00812950451, -0.013257876, -0.0132348789, 0.0130624, -0.0124069806, -0.0060885041, -0.0181677751, 0.00473167049, 0.000526779215, -0.0205709804, 0.0196050983, 0.0155116, 0.0221232902, -0.0323800333, -0.018156277, 0.011360609, 0.0321960561, 0.0220657978, 0.019099161, 0.0021473621, 0.0238940734, -0.000137803436, -0.00460518617, -0.00652545085, 0.0038664015, 0.0104867155, -0.00484953122, -0.00907813851, -0.0260098148, -0.00862394366, -0.00422573229, 0.0172823835, 0.00557394233, 0.004415459, 0.0220428, 0.00200650422, 0.00872168224, 0.0247909632, 0.0406590216, -0.00219766842, -0.0463163257, -0.00193463801, 0.00289189583, 0.0336908735, -0.000687040854, -0.0164199881, 0.0140857752, -0.00891715754, 0.0186622143, -0.0200765412, 0.0123264901, -0.00216748449, 0.0344497822, 0.00787078589, 0.000183079144, -0.00421135919, 0.00243195216, -0.00414236775, 0.00209705555, 0.013085397, -0.00355019025, -0.0199155603, -0.00101259479, 0.00472304644, -0.014361741, -0.0114123523, 0.0106304483, -0.00835947599, 0.00803176593, -0.0194556173, 0.023986062, -0.0117975548, 0.0019720085, 0.0248139612, 0.0329319648, 0.0104752174, 0.0101130111, -0.00133096194, -0.00177222048, -0.00236583524, -0.0152011383, -0.0158910546, -0.0185817238, -0.0123954816, -0.021605853, -0.0043694647, 0.026354773, 0.00197344576, -0.00394114247, -0.00124472252, -0.00820424501, 0.00242045359, 0.00689340569, 0.0170984063, 0.00603101123, 0.0205249861, 0.000481862866, 0.00477479026, -0.0103889778, -0.00830773264, 0.0112801185, 0.0045936876, -0.00143085595, -0.0282175448, -0.00816975, -0.00737634674, -0.0112283751, 0.0207204614, 0.0158105642, -0.0195476059, -0.0185702257, 0.0148101859, 0.0161095262, -0.0101992507, -0.00698539428, 0.0133268675, 0.0139247943, 0.00606550695, 0.000561275, -0.0163969919, -0.00309312111, -0.00573779736, 0.00710612955, 0.0341048241, 0.0364505351, 0.00861819461, -0.00397276366, 0.0195246078, -0.00422573229, 0.00592177454, 0.0187312067, -0.0219048169, 0.0151896393, -0.019892564, 0.0114583466, 0.0139132962, -0.0097623039, 0.00842271838, -0.00628973, 0.0111363856, -0.00023446347, -0.0196970869, 0.00255556195, -0.00409062393, -0.00390089722, -0.00218904437, -0.0196970869, 0.00955533, 0.0229971837, -0.0201455317, -0.0104982145, -0.000892578159, -0.00735334959, 0.0072901072, -0.0129474141, 0.00148906757, -0.0164314881, -0.00679566758, 0.0116998171, 0.0255268738, -0.00226665987, -0.0112283751, -0.0108489217, -0.0176158417, 0.00441258447, -0.00564293377, 0.00815825071, -0.027780598, 0.0125794597, -0.0021473621, 0.0146952, -0.00949208718, -0.00111967535, -0.00137911236, 0.00552219851, 0.0100842649, 0.0281945467, -0.00666918326, -0.00576366903, -0.0137063209, -0.00822724216, 0.00733610149, -0.0118435491, 0.00741084246, 0.00832498074, -0.0264007673, 0.00456494093, 0.00258430839, 0.0113031156, -0.00239170715, -0.00182540144, -0.0073188534, 0.00381178316, 0.017201893, 0.0103774788, -0.0111938789, -0.0141432676, -0.000771124323, -0.0277346037, 0.00607125647, -0.0192141458, -0.0105097126, 0.0183862485, 0.0242850259, -0.026193792, -0.00818699691, 0.0211229138, 0.013568338, 0.00534109585, 0.00231696619, 0.00504788198, -0.0103774788, -0.0145687154, -0.0122689977, 0.00904364232, 0.00317648589, 0.0119815329, -0.00780754397, 0.0155575946, 0.0140742762, -0.0261248, 6.67008135e-05, -0.00524623226, -0.0273896456, -0.00334609021, 0.0420618467, -0.0168224405, -0.013407358, -0.0175928455, 0.00840547, -0.012935916, -0.0337368697, 0.0110328989, 0.0252969023, -0.00430334779, -0.0105499579, 0.0170984063, -0.000794840162, 0.01167682, -0.000149930856, 0.00511399843, -0.00138270564, -0.000832929218, 0.00910113566, -0.00623798603, -0.00945759192, -0.0083882222, 0.0213643834, 0.00694514951, -0.0044010859, 0.032977961, 0.0134878485, 0.0121080168, 0.0142122591, 0.0091873752, 0.0211229138, 0.00340933236, -0.0158220623, -0.00141145207, -0.0133843608, 0.0198465697, -0.026653735, 0.00183977466, -0.00182540144, -0.0193061363, 0.00720961718, -0.0172708854, -0.0166039672, 0.0134878485, 0.000963725732, 0.0035990593, -0.00117573095, -0.00334034092, 0.0186852124, 0.0168569349, -0.0124989692, 0.0301493071, -0.000337411795, -0.0223187674, -0.0107971774, -0.0129704112, 0.00250956765, -0.0077558, 0.023664102, 0.0122460006, 0.0181332789, 0.00101475068, 0.0143272448, -0.013407358, 0.00166010915, 0.00821574405, 0.00810650736, -0.0278035942, -0.0191221572, 4.76955756e-06, -0.0323570371, 0.0127059435, 0.0108489217, -0.00780179445, -0.0165119786, -0.0119470367, -0.0231006704, 0.0035875605, 0.00483515766, -0.0172248911, 0.0177308284, -0.0163165014, -0.00720386766, -0.00132880604, -0.0265617464, -0.00359043526, 0.0137523161, 0.0116250766, 0.00265617459, -0.00309312111, -0.026193792, -0.00936560333, -0.0053784661, -0.0276426151, -0.0138443047, -0.00961857196, -0.0245609917, -0.0246759783, -0.0171329025, 0.0105327098, -0.00479778741, 0.00353294238, 0.00468855072, 0.0305402596, 0.0142582534, 0.00805476308, -0.00102409336, -0.00204531197, 0.00547332969, 0.00403888, -0.0260098148, 0.0124529749, -0.0264007673, -0.0127519378, 0.0138098085, -0.0318051055, -0.00298675918, 0.00860669557, -0.0371174552, -0.023043178, -0.0146492058, 0.0222037807, 0.0121080168, -0.0124874702, -0.00825023931, 0.0244230088, 0.00988878869, -0.00197632052, -0.0056314352, 0.0051571182, 0.0200075489, 0.00493002124, 0.00240608025, -0.00778454635, -0.0138673019, -0.00725561148, -0.0162705071, -0.0146607039, -0.0087101832, 0.00225228653, -0.0233996343, 0.0048150355, -0.00910113566, 0.00164429867, -0.00742234103, -0.00495876744, -0.0114985919, -0.0145917125, -0.0131658874, -0.0226292294, 0.019570604, -0.00362205645, -0.0103889778, -0.00280421902, 0.00518873939, 0.00904939137, 0.0167074539, 0.0133613637, -0.00429759873, -0.0117055662, -0.00105715182, 0.00911263376, 0.0138788, 0.0146377068, -4.58371578e-05, 0.0124989692, 0.0101130111, -0.00694514951, -0.023986062, 0.00415674085, -0.00682441425, -0.000738065864, 0.0135338427, -0.0148906764, -0.0137868114, 0.0121425129, -0.00108949153, 0.0203065127, 0.0155230984, -0.00921037234, 0.0104062259, -0.0166614596, -0.0245839898, 0.0256418586, -0.0083422279, -0.0182367656, -0.0174778588, -0.00988878869, 0.000113818089, -0.00590452692, -0.0244230088, -0.00529222703, -0.00612300029, 0.00664618611, -0.0065024537, -0.0163739938, 0.0038980227, -0.00595627027, -0.00641046464, -0.0115963295, 0.00635297177, 0.0115618343, -0.0181677751, -0.00874467939, 0.0111306366, 0.00109380356, 0.0108719189, 0.000701773446, -0.00517436629, 0.0194556173, -0.00993478298, 0.0144882258, 0.0133153694, -0.0033777114, -0.0153621184, 0.00572054926, 0.000997502822, 0.0191796515, 0.0179837979, 0.0048984, -0.000260694622, 0.0119355386, 0.0148561802, 0.00102481199, 0.0164659824, -0.00311611826, -0.00805476308, -0.00995203108, 0.00781329349, 0.0110731442, -0.0130164055, -0.0151206478, 0.015626587, 0.00457069, -0.000148942694, 0.0188461915, 0.00327997329, 0.00427747611, -0.00593327312, -0.00865269, -0.00176072191, -0.00423723087, -0.0042861, -0.0019403873, 0.00550207635, -0.00347257475, 0.0060597579, -0.0157415718, -0.00442120852, 0.0184437409, 0.00622073794, -0.0269297026, -0.0131198931, -0.00390377198, -0.00770405633, 0.0180297922, -0.0211919043, -0.00255556195, -0.0184897352, -0.00986004248, 0.0117343124, 0.0166269634, -0.00891715754, -0.0190761629, -0.00718087051, -0.000141217082, -0.00766956061, 0.0144882258, 0.0106132, 0.0172363892, 0.0101877525, 0.013096896, 0.0163165014, 0.000549776421, 0.022100294, -0.0103487326, -0.00950933527, -0.0195246078, -0.001637112, -0.000556603714, 0.0193866249, 0.00126915704, -0.0025943697, -0.00518299034, 0.0035990593, -0.000154692, -0.0276426151, 0.00235289941, 0.0374164172, -0.00651395228, 0.0273436513, 0.00427172659, 0.00755457487, 0.00793977734, -0.0137523161, -0.014511223, 0.00268635852, -0.0126024568, 0.001637112, 0.00490414957, 0.0144307325, -0.00273091556, 0.00413086917, 0.0179033075, 0.00176215917, 0.00399288582, 0.0147641916, -0.00125909573, -0.00889416, 0.00277690985, 0.0209734309, -0.00278122188, 0.0159370489, -0.0288384687, -0.00431197183, -0.00250525563, -0.0314371511, 0.0254118871, 0.0232616514, 0.00761781679, -0.0086354427, -0.00670942804, 0.0106591946, 0.00706013525, 0.0521576107, 0.0157415718, -0.00029141744, 0.0156610813, -0.000126125175, -0.0180527885, 0.0217553359, -0.00960132387, 0.0020280641, -0.020662969, 0.030448271, -0.0109466594, -0.00334609021, 0.012464473, 0.00643346226, 0.00523185916, -0.00980254915, -0.0117113153, 0.0174663607, -0.00998652726, 0.01151009, 0.00618049316, 0.0163509976, 0.0183172561, -0.0164774824, -0.0197890755, 0.00948633812, -0.00126268913, 0.00449882401, 0.00564868329, -0.00942884479, -0.0439016223, -0.0124414759, -0.0202145241, -0.00550207635, 0.00493289577, -0.0336908735, -0.0182712618, -0.0131888846, 0.0196395945, 0.0480181202, -0.0100612678, -0.0146032115, -0.000358792, -0.00539571419, -0.0060137636, -0.00171041547, -0.0248829518, 0.0100440197, 0.00438958732, -0.038819246, -0.00393251842, 0.0157185756, -0.00245926133, -0.00222066557, -0.00363930431, -0.0371404514, 0.0117573095, 0.0101475073, -0.0181907713, -0.0210769176, -0.042590782, -0.00557681685]
|
21 Feb, 2019
|
Pattern split(CharSequence,int) method in Java with Examples
21 Feb, 2019
split(CharSequence, int) method of a Pattern class used to splits the given char sequence passed as parameter to method around matches of this pattern.The array returned contains each substring of the input sequence created by this method. The substrings in the array are in the order in which they occur in the input. If this pattern does not match any subsequence of the input then the resulting array has just one element, namely the input sequence in string form. The limit parameter passed as int help to calculate the number of times the pattern is applied and affects the length of the resulting array. If the limit n is greater than zero then the pattern will be applied at most n – 1 time. If n is non-positive or Zero then the pattern will be applied as many times as possible.
Syntax:
public String[] split?(CharSequence input, int limit)
Parameters: This method accepts two parameter one input which represents character sequence to be split and other limit which represents The result threshold as mentioned in description.
Return value: This method returns the array of strings computed by splitting the input around matches of this pattern.
Below programs illustrate the split(CharSequence, int) method:
Program 1:
// Java program to demonstrate
// Pattern.split(CharSequence) method
import java.util.regex.*;
public class GFG {
public static void main(String[] args)
{
// create a REGEX String
String REGEX = "geeks";
// create the string
// in which you want to search
String actualString
= "Welcome to geeks for geeks";
// create a Pattern using REGEX
Pattern pattern = Pattern.compile(REGEX);
// create limit to 2
// so it can applied at most limit - 1 time
int limit = 2;
// split the text
String[] array
= pattern.split(actualString, limit);
// print array
for (int i = 0; i < array.length; i++) {
System.out.println("array[" + i
+ "]=" + array[i]);
}
}
}
Output:
array[0]=Welcome to
array[1]= for geeks
Program 2:
// Java program to demonstrate
// Pattern.split(CharSequence) method
import java.util.regex.*;
public class GFG {
public static void main(String[] args)
{
// create a REGEX String
String REGEX = "ee";
// create the string
// in which you want to search
String actualString
= "aaeebbeecceeddee";
// create a Pattern using REGEX
Pattern pattern = Pattern.compile(REGEX);
// create limit to 2
// so it can applied at most limit - 1 time
int limit = 0;
// split the text
String[] array
= pattern.split(actualString, limit);
// print array
for (int i = 0; i < array.length; i++) {
System.out.println("array[" + i
+ "]=" + array[i]);
}
}
}
Output:
array[0]=aa
array[1]=bb
array[2]=cc
array[3]=dd
Reference: https://docs.oracle.com/javase/10/docs/api/java/util/regex/Pattern.html#split(java.lang.CharSequence, int)
|
Pandas/Pandas Tutorial/Python | pandas.date_range() method/Python | Pandas Working With Text Data/Python | Pandas Series.str.swapcase()/Python | Pandas Series.sort_values()/Python | Pandas Series.var/Python | Pandas Series.sum()/Python | Pandas Series.shift()/Python | Pandas Series.to_string()/Python | Pandas Series.to_sparse()/Dictionaries in Python/Python – Dictionary values String Length Summation/Calculating the Product of List Lengths in a Dictionary – Python/Python – Access Dictionary items/Dictionary items in value range in Python/Python | Ways to change keys in dictionary/Python Program to Swap dictionary item’s position/Merging or Concatenating two Dictionaries in Python/Print with your own font using Python !!/Get Current time in Python/How to Get Current Date and Time using Python/Python | Calendar Module/Python calendar module | setfirstweekday() method/Is sizeof for a struct equal to the sum of sizeof of each member?/Array of Structures vs Array within a Structure in C++/array::fill() and array::swap() in C++ STL/STD::array in C++/set cbegin() and cend() function in C++ STL/Difference between std::set vs std::vector in C++ STL/set vs unordered_set in C++ STL/How to Delete an Element from the Set in C++?/How to traverse a C++ set in reverse direction/Find Maximum and Minimum Element in a Set in C++ STL/Counting Inversions using Set in C++ STL/Commonly Asked C++ Interview Questions | Set 2/C++ Programming Examples/When do we pass arguments by pointer?/Variable Length Arrays (VLAs) in C/How to pass an array by value in C ?/memcpy() in C/C++/C++ Map of Functions/Passing Pointers to Functions In C++/std::function in C++/Virtual Function in C++/Virtual Functions and Runtime Polymorphism in C++/How Does Default Virtual Behavior Differ in C++ and Java?/Comparison of Exception Handling in C++ and Java/Foreach in C++ and Java/Templates in C++ vs Generics in Java/Floating Point Operations & Associativity in C, C++ and Java/Competitive Programming – A Complete Guide/Hashing in Data Structure/Sort elements by frequency | Set 4 (Efficient approach using hash)/Sort elements by frequency using STL/Frequency of an element in an array/Sum of all even occurring element in an array/Find the elements appearing even number of times in an Array/Find the Kth occurrence of an element in a sorted Array/Sort an array in descending order based on the sum of its occurrence/Sort given array to descending-lowest-ascending form/Sort given Array based on the fractional values/Sorting a 2D Array according to values in any given column in Java/Split a String into a Number of Substrings in Java/Initializing a List in Java/How to Find a Sublist in a List in Java?/Min and Max in a List in Java/Split a List into Two Halves in Java/Randomly Select Items from a List in Java/Get first and last elements from ArrayList in Java/Java Program to Find the Length/Size of an ArrayList/Why Array.length() gives error when used in Java?/CharArrayWriter size() method in Java with examples/CharArrayWriter append() method in Java with Examples/Writer append(char) method in Java with Examples/PrintWriter append(CharSequence) method in Java with Examples/PrintStream append(CharSequence, int, int) method in Java with Examples/Pattern split(CharSequence,int) method in Java with Examples
|
https://www.geeksforgeeks.org/pattern-splitcharsequenceint-method-in-java-with-examples/?ref=ml_lbp
|
Pandas
|
Pattern split(CharSequence,int) method in Java with Examples
|
memcpy() in C, C++, Python | Pandas Series.to_sparse(), Find Maximum and Minimum Element in a Set in C++ STL, Sum of all even occurring element in an array, std::function in C++, How to pass an array by value in C ?, Sorting a 2D Array according to values in any given column in Java, Java Program to Find the Length, Templates in C++ vs Generics in Java, Virtual Functions and Runtime Polymorphism in C++, PrintWriter append(CharSequence) method in Java with Examples, C++ Programming Examples, How to Find a Sublist in a List in Java?, set vs unordered_set in C++ STL, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, array::fill() and array::swap() in C++ STL, Calculating the Product of List Lengths in a Dictionary – Python, Randomly Select Items from a List in Java, CharArrayWriter size() method in Java with examples, CharArrayWriter append() method in Java with Examples, Merging or Concatenating two Dictionaries in Python, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Competitive Programming – A Complete Guide, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Why Array.length() gives error when used in Java?, Hashing in Data Structure, Size of an ArrayList, Python Program to Swap dictionary item’s position, Sort given array to descending-lowest-ascending form, C++ Map of Functions, Sort an array in descending order based on the sum of its occurrence, How to Get Current Date and Time using Python, Print with your own font using Python !!, Python | Ways to change keys in dictionary, Pandas Tutorial, Python – Dictionary values String Length Summation, Frequency of an element in an array, How Does Default Virtual Behavior Differ in C++ and Java?, Initializing a List in Java, How to traverse a C++ set in reverse direction, Floating Point Operations & Associativity in C, C++ and Java, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Python calendar module | setfirstweekday() method, Dictionaries in Python, Python | Calendar Module, Sort elements by frequency | Set 4 (Efficient approach using hash), Python | Pandas Series.var, Pandas, Pattern split(CharSequence,int) method in Java with Examples, Comparison of Exception Handling in C++ and Java, Split a String into a Number of Substrings in Java, Sort given Array based on the fractional values, set cbegin() and cend() function in C++ STL, Python | Pandas Series.to_string(), Foreach in C++ and Java, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, How to Delete an Element from the Set in C++?, STD::array in C++, Find the Kth occurrence of an element in a sorted Array, Find the elements appearing even number of times in an Array, Python | Pandas Working With Text Data, Get Current time in Python, PrintStream append(CharSequence, int, int) method in Java with Examples, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
|
GeeksforGeeks
|
[-0.00467749638, 0.000204125332, -0.0136890607, 0.0179956537, 0.015055906, 0.029782122, -0.00277318526, 0.00778209046, -0.030056864, 0.00381892524, -0.0042001307, -0.0010448813, 0.0259357225, -0.0137234041, 0.0199875403, 0.0236965679, -0.0209766142, 0.000385927793, 0.0180918146, 0.014932272, -0.0252076536, -0.030001916, -0.0561849065, -0.00665907888, -0.0233531389, 0.0391783267, -0.0140393581, -0.00411083922, -0.0401674, -0.0276803393, 0.0052338508, 0.0160449799, 0.0202073343, -0.0222129561, -0.0282985102, -0.00372276525, 0.0182841346, 0.00822167844, -0.0125557464, -0.038683787, -0.00023632175, -0.0219107401, 0.0201111734, -0.0141355181, 0.00151366123, 0.0632457957, -0.0315954238, -0.000765845587, -0.0146300551, -0.0262516756, 0.00665907888, 0.0104539646, 0.0145201581, -0.00853763334, 0.0187374596, 0.0289029442, -0.0202073343, 0.00428942218, -0.00405932497, 0.0252763387, 0.0405245647, -0.03022171, -0.0157977119, -0.00909398682, 0.000863722758, -0.0119719179, -0.0403047726, -0.0121092899, 0.0312382579, -0.00846894737, 0.0119307069, 0.00541930227, 0.0195067395, 0.001390027, -0.0226250719, -0.0221442711, 0.0230509229, -0.00578333624, -0.0124389809, 0.00249672541, -0.0426126122, 0.000593272795, -0.00443366216, 0.011079004, -0.0161548778, -0.0164158829, 0.00274742814, -0.0321723856, 0.0234355628, -0.0274193324, -0.0102204327, 0.0169516318, 0.0160999298, 0.00045074994, -0.00579020474, 0.0339307375, 0.0501405634, 0.0125694843, -0.029809596, 0.0188473575, -0.0234080888, -0.0325020738, -0.0121779758, -0.0214711521, 0.059564244, -0.00329519669, -0.015220752, 0.0100075072, 0.0176659636, -0.0118894959, 0.000907509879, 0.0109141581, 0.0323921777, 0.0431071483, -0.0390134789, 0.0121298954, -0.00396316499, -0.0380793549, -0.00941681, 0.0237927288, 0.00204683398, 0.0412114225, -0.0188748315, 0.0172126368, -0.0347824395, 0.0210040882, 0.0102410382, 0.00723947305, -0.0360737331, -0.0407993086, -0.00260318816, -0.037365023, -0.00902530178, -0.0245757457, 0.0207705572, 0.00380175374, -0.0310734119, 0.0239987858, -0.0133318948, -0.0240262598, 0.0105501246, 0.0287380982, 0.00984266121, -0.0237652529, -0.0276803393, -0.0106394161, 0.0290677901, 0.0271033794, -0.015316912, 0.0484371595, -0.0640700236, -0.0187924094, -0.0232157689, 0.00671746209, 0.00969155319, 0.0157015529, 0.0154680209, 0.0282160882, 0.0181742366, -0.0379145071, 0.0202485453, 0.0143553121, 0.0103303296, -0.0164845698, -0.0183940325, 0.00863379333, -0.011079004, -0.0232020319, -0.0104677016, 0.0346725434, -0.0122810043, 0.0490965433, 0.0342879035, 0.0191907864, -0.0136821922, -0.0230097119, -0.010845473, 0.0170890037, 0.00326085393, 0.0314855278, -0.0330240875, -0.0011908384, 0.0267599504, -0.00563909626, 0.0147674261, -0.00111184979, 0.0170203168, 0.00327974232, 0.0162510369, -0.0559376366, -0.0262791496, 0.0171851628, 0.000569662079, 0.0380244069, -0.00165875978, 0.0103715416, -0.0403322466, -0.011683438, -0.0109072896, 0.0133593697, 0.000724204874, -0.0263478365, -0.0286007281, 0.00961599872, 0.0168005228, 0.0358539373, -0.0452776179, -0.00809117593, 0.0318976417, -0.0095816562, -0.0352220275, 0.000147888903, -0.0113194045, -0.0407443605, 0.0237240419, 0.0109004211, -0.0191633124, -0.00634655915, 0.0310734119, -0.0257296655, 0.0216497332, 0.0315679498, 0.0364309, 0.0132357348, -0.0236965679, -0.0324746, -0.037337549, 0.0266912654, -0.00817359891, -0.0393981189, 0.0267874245, -0.0170752667, -0.0537946448, 0.00418639369, 0.0194105804, -0.053272631, -0.00524415355, 0.0123084784, -0.014904798, 0.0492613874, 0.00569404475, 0.0172675867, -0.0147536891, 0.0068479646, 0.0101586161, -0.00165446685, -0.0208529793, 0.00710210204, -0.00218935683, -0.0113880895, -0.0379419848, -0.000276889245, -0.0155504439, 0.0392607488, -0.0433818921, 0.0493438095, -0.00495567359, 0.0120612094, 0.0466788039, 0.0336559936, 0.0386013649, 0.0322273336, 0.0139912777, 0.0018837055, -0.0016604769, 0.0158389229, 0.00125179696, -0.0233394019, -0.00243662531, -0.00448174216, 0.0452776179, -0.0392332748, 0.00677241059, -0.00125523121, 0.00132906833, -0.0237515159, 0.00292085949, -0.0131464442, 0.045909524, 0.0398926586, -0.0167455748, 0.0387662128, 0.00641181041, -0.00577646773, -0.0125900898, -0.0234493, -0.0274468083, 0.00939620472, -0.00873682182, -0.000621176325, 0.00126553408, -0.0380244069, -0.0218008421, 0.0290952642, 0.0162510369, 0.0498658232, -0.0122672664, 0.00627443893, -0.0396453887, -0.00741118751, -0.0697297305, -0.0245482717, 0.0266363155, -0.00423103943, -0.0352220275, -0.00956791826, 0.00707462756, 0.0181192886, -0.00731502753, 0.00301701948, 0.00215673121, -0.0848405808, -0.00681362208, 0.0238202028, -0.0361836292, -0.0207156092, 0.0635205358, 0.0164983068, -0.011683438, -0.0176659636, 0.0289853681, -0.0301118121, 0.000107321415, 0.0317327939, 0.0091626728, 0.00539182778, -0.0241498929, 0.0272270124, 0.00184592826, -0.00658695912, -0.015055906, 0.015000958, -0.0162922498, -0.00292772823, -0.0196578484, 0.015055906, 0.0350022353, 0.00138144125, 0.0311558358, 0.00209834822, -0.0202210713, 0.014946009, 0.0276391283, -0.0106737586, 0.0162922498, -0.00433750218, -0.0192319974, 0.014616318, -0.0183390826, 0.0193831064, 0.0011092741, -0.015632866, 0.0139981462, 0.00362317101, -0.0140256211, -0.0925883278, -0.0427499823, 0.00558071351, 0.037777137, 0.00848268438, -0.0142179411, 0.00831783842, -0.0127137238, -0.0170203168, 0.0235729329, -0.0256197676, -0.0235729329, 0.00954731274, 0.00502092484, -0.00127326127, 0.00717078755, 0.0423378684, 0.0118276784, -0.0202897564, -0.0122810043, 0.0121711064, 0.0495086573, -0.0379969329, 0.0142591521, 8.46766e-05, -0.0141217811, 0.0337658934, -0.00721886754, -0.0340955853, -0.0130708897, 0.014726215, -0.0329966135, 0.0110034496, 0.0273918584, 0.0178857576, -0.0121298954, 0.0422005, 0.014959746, -0.0178033337, 0.0271308534, 0.00560475327, -0.0397552848, 0.00026916209, -0.000521582086, -0.0207156092, 0.0190671515, -0.0167318378, -0.0258258246, -0.00698533608, -0.00553263351, 0.022350328, -0.0389310569, 0.000853849167, -0.0235591959, 0.0166219398, 0.0237103049, 0.0574761964, -0.0358539373, -0.0370628051, 0.014877324, 0.0130914953, -0.00627100468, 0.037777137, -0.0239850488, 0.0310459379, -0.0165395178, 0.0295348521, 0.0021275396, 0.0123016099, -0.0289304182, -0.00259460253, 0.00899782684, -0.003781148, -0.0404696167, -0.0192182604, -0.0494262315, 0.00392538821, -0.00245551392, 0.0426950343, -0.0155504439, -0.0311558358, 0.00105089124, 0.0234218258, -0.011477381, -0.0106119411, -0.014588844, 0.015165804, -0.0339307375, -0.0161960889, -0.0390959047, 0.014616318, -0.0642898157, -0.00213440834, 0.000320247083, 0.0192594714, -0.0360737331, 0.0196303744, -0.0442061201, -0.0119101014, 0.0437665321, -0.029617276, -0.0356616192, -0.0118826265, 0.022721231, 0.029809596, -0.0169653688, 0.0189709924, 0.00301015098, -0.00693038758, 0.00667281635, -0.000541329209, 0.00216188258, 0.0174736436, -0.0141080441, -0.0285457782, 0.0173362717, -0.045414988, -0.0153718609, -0.0124664558, 0.0355517194, -0.0118482839, 0.00644271914, -0.0347824395, -0.0235317219, -0.00547425076, 0.0228860769, 0.0338208415, -0.029974442, -0.00168709259, 0.00449204491, -0.0235591959, 0.00456073089, 0.015055906, -0.00422760518, 0.0186550375, -0.00151537836, 0.0249191727, -0.0483547375, -0.00285732537, -0.0259357225, 0.00254137116, -0.0669273511, 0.00494880509, 0.00597565621, -0.00414861646, -0.0158526599, -0.0303865559, 0.0076172445, 0.0199875403, 0.00891540479, -0.0429423042, -0.0550309867, 0.0479700975, 0.00936186127, 0.00588293048, -0.00594474794, -0.0133112893, -0.015632866, -0.000358453515, -0.00850329, 0.0139294611, 0.00504839933, 0.0180780776, -0.0675867349, -0.0121092899, -0.0174186938, 0.0472282916, -0.00887419283, 0.0137577467, -0.0141904661, -0.0109897126, 0.00968468469, -0.00777522195, 0.00143381406, -0.0178994946, 0.0273094364, -0.00250359392, 0.00384639949, 0.0423928164, -0.0389310569, -0.0263890475, 0.00246581668, 0.0117727295, -0.0063980734, 0.0174736436, 0.00625039916, 0.0169241577, -0.0351121314, 0.0103165926, -0.00497284485, 0.0108111296, -0.0186550375, 0.00539526204, 0.0122741358, 0.0201249123, 0.0398926586, 0.0242735278, 0.0419532284, 0.0134349242, -0.00330721657, -0.00617484469, 0.0256609786, -0.011408696, 0.0192319974, 0.0436566323, -0.0217871051, 0.0172813237, 0.0263890475, 0.00497284485, 0.0259906705, -0.0155092319, 0.00765158748, 0.00475648511, -0.036403425, 0.0417059585, -1.92910247e-05, 0.00672089634, 0.00344115379, -0.00382579374, 0.0194105804, 0.00456073089, 0.015413072, 0.00774774747, 0.0243147388, 0.0112781925, 0.000784304866, 0.00279379101, 0.0282710362, 0.0167318378, 0.00484921085, 0.00356478803, 0.0155916549, 0.00640837615, -0.0411015265, 0.0131395748, 0.0349198133, -0.00452295365, -0.0205919743, -0.0235179849, -0.0117933359, 0.0131945238, 0.0209766142, 0.00919701625, 0.00217561959, -0.037722189, 0.0667075589, 0.00276975101, 0.0322822817, -0.0178308096, 0.0207018722, 0.0144789461, 0.00196441123, -0.00887419283, 0.0253725, 0.0268423725, -0.0195891634, 0.0243284758, 0.0221580081, 0.0116353584, -0.00213612546, -0.0101036672, 0.00292944536, -0.037804611, 0.00938246679, -0.000438086019, -0.00148361118, -0.0369254351, 0.00318358233, -0.00486981636, 0.00105518417, 0.00158663979, 0.00911459327, -0.0397003368, -0.003719331, 0.0170752667, -0.015055906, 0.011079004, 0.000405674946, -0.00845521, -0.0236004088, 0.0120886844, -0.00963660423, 0.010735576, -0.0147399521, -0.0091626728, 0.0184352435, -0.0202210713, 0.0127343293, 0.0323097557, -0.0125145353, -0.005621925, -0.0202485453, 0.00249672541, 0.00567687349, -0.0217458941, 0.00301873661, 0.00126038271, -0.00352014229, 0.0161274038, -0.0174873807, -0.00491102785, 0.0412388965, 0.0271858014, 0.0271171164, 0.0323921777, -0.00109124416, 0.0011333141, -0.0119444439, -0.0185039286, 0.00379831949, -0.000368756388, -0.0128442263, 0.0144239981, -0.00123548415, -0.00614393642, -0.0177071746, 0.0119581809, 0.0121848444, 0.0106394161, -0.0135722952, -0.00133593695, 0.0282985102, 0.0424477644, 0.0426950343, -0.00211208547, 0.0184489805, -0.00709523307, 0.00651827315, 0.0169653688, 0.00542960502, -0.0124046383, 0.000162913901, -0.0288479961, 0.00377084524, -0.0246719047, -0.00876429584, 0.0103578046, 0.0336010456, -0.0232981909, 0.00926570129, -0.0102616446, 0.00934125576, 0.0131670497, -0.00658352487, -0.00286762812, 0.0108386045, -0.0168692097, -0.0458545759, -0.00520294206, -0.00831097, 0.00621262193, 0.00203824835, -0.00886732433, -0.00192491687, -0.0132288663, -0.011326273, 0.022061849, 0.0272682253, 0.0248092767, 0.0113743525, -0.0172401126, -0.0159488209, 0.00287964824, -0.00178239401, -0.0233531389, 0.0288479961, -0.000552490645, 0.011285061, -0.0279138703, -0.0182291865, 0.00712957606, 0.00296035386, 0.00508274231, 0.0101654846, -0.00470153661, -0.0132082608, 0.00728755305, 0.0133318948, 0.011257587, -0.00809804443, -0.0286007281, -0.0045813364, -0.0106600216, -0.0509922653, 0.0190259404, -0.00418295944, -0.030194236, -0.000541758491, -0.00508617656, -0.000378629949, -0.0130090723, -0.0158389229, 0.0129953353, 0.00877803285, 0.02229538, -0.0203859173, 0.0119650494, 0.0360462591, 0.00590353645, -0.0175835397, 0.00176007114, -0.0119787864, 0.0157015529, -0.00432033092, 0.0258395616, -0.00869561, 0.0244658478, -0.0286556762, 0.0186000895, 0.0139569351, -0.0242323168, -0.0317053199, 0.0132082608, 0.0122672664, 0.000261434965, 0.00914893579, 0.0046362849, 0.01124385, -0.0106462846, -0.0350571834, 0.00844834186, -0.0121917129, -0.00295176823, 0.0200012773, -0.0311558358, -0.00232844544, 0.0362660512, 0.0114567755, 0.00358539377, 0.0317877457, -0.0129197808, 0.0113880895, -0.0192182604, 0.0348099135, -0.00892227329, -0.00654231338, 0.00954731274, -0.002731974, -0.0194655284, 0.0216772091, -0.0159076098, -0.0186687745, -0.0189984664, -0.0315404758, -0.0219107401, 0.0250977557, -0.0325845, 0.0100075072, 0.0365407951, -0.00730815902, -0.00984266121, -0.0191770494, 0.00260662241, -0.0128098838, 0.00501405634, 0.011394958, -0.0140530951, -0.00354074803, -0.0168692097, 0.0175835397, 0.0110996095, -0.0187099855, -0.00367468526, -0.0192732085, 0.0542891808, 0.0295073781, 0.00499688508, 0.052805569, -0.0060237362, -0.00101826561, 0.0236416198, 0.0161136668, 0.000914378441, 0.0090596443, 0.0194105804, 0.0186000895, -0.0178720206, -0.00183219113, 0.000209598715, 0.000674407755, 0.0273094364, -0.0209766142, -0.0167181, 4.10504399e-05, 0.0392332748, -0.0199600663, 0.0364858471, -0.00686513633, -0.0172950607, 0.0107012326, 0.0085170269, -0.0144102611, 0.0176247526, 0.00457790215, -0.0056287935, 0.0118826265, -0.0062813079, 0.00688574184, 0.0391508527, 0.00265985401, 0.0182841346, 0.0183253456, -0.0406619385, -0.000696301344, -0.00359569653, 0.00522698229, 0.0123222154, -0.0293150581, 0.00770653598, 0.0144652091, -0.0163334608, -0.0231196079, -0.00337590231, 0.00967781618, -0.0219656881, 0.0281611383, -0.0210453, -0.00208804547, 0.0135448212, 0.000968468434, 0.00252591679, -0.014946009, 0.00710210204, 0.0279001333, 0.00610615918, 0.00621605618, -0.010735576, -0.0380244069, -0.0101036672, 0.0136135062, -0.000673549192, -0.00146042975, -0.0435192622, -0.00861318689, -0.0144789461, -0.00313550234, -0.00923135877, 0.011092741, -0.0274468083, 0.00866126735, 8.53741876e-05, -0.0186413, 0.00404558796, -0.0175285917, -0.011394958, 0.00899782684, 0.00240056543, 0.00951297, 0.000810062047, 0.00384296523, -0.052256085, 0.0143690491, 0.00914893579, -0.0264302585, 0.00972589571, -0.00835905, 0.0164296199, -0.0193968434, -0.015632866, 0.0160861928, 0.00822854694, -0.0337384194, 0.0452226661, 0.00261349115, -0.0159625579, -0.0188198835, 0.0475305058, -0.038656313, 0.00897722133, 0.0380244069, -0.0183253456, -0.00613706792, -0.0250565447, 0.007452399, -0.0438214801, 0.0163059868, 0.00948549621, 0.0114430385, 0.0137234041, -0.011765861, 0.011381221, -0.0207156092, -0.00040996779, -0.0521461852, -0.0219794251, -0.0075073475, 0.0470634438, 0.022460226, -0.0257434025, 0.0245757457, 0.00485607935, 0.00274742814, 0.0236828309, 0.00410397071, -0.000501834904, -0.00717078755, 0.0192182604, 0.00818733592, -0.029370008, -0.0465139598, -0.0336285196, -0.0275567044, -0.0351945534, -0.0230509229, 0.0116078844, 0.0190259404, -0.0411839485, -0.00965034124, -0.0123909013, 0.00858571287, -0.0319525898, -0.000333769596, -0.0165395178, 0.00787825, -0.000994225615, 0.00460537663, 0.0168554727, 0.0192732085, 0.000373693154, 0.00523728505, 0.0297271721, -0.0321998596, -0.0250565447, -0.0168142598, 0.0116765695, -0.00648393063, 0.00459850812, 0.00588293048, 0.0175835397, 0.0106325466, -0.0365133211, 0.0286831502, 0.000697159907, -0.00888106134, 0.0239713117, 0.0558552146, -0.0167043637, -0.0426126122, -0.015522969, -0.0104539646, -0.0100761931, 0.0269522704, 0.00428255368, -0.0104333581, -0.0278314482, -0.00766532449, 0.0290952642, 0.00949923322, -0.00106462836, 0.0715430304, -0.00488698808, 0.0130983638, 0.0143965241, -0.00604777643, -0.0205370262, -0.00908025, 0.00269076251, -6.91149908e-05, 0.0272270124, -0.0208941922, 0.0292326361, -0.0366232172, -0.00305651384, 0.021869529, 0.022748705, -0.0133456327, -0.0233943518, -0.044618234, 0.00525102206, 0.0051308223, -0.00239197956, -0.0167455748, 0.0191358365, 0.0157565, 0.0415411144, 0.0203172322, -0.00661099888, -0.0216634721, 0.0243971627, 0.00504153082, 0.00520981057, 0.0113468785, -0.00771340448, -0.0335186236, 0.0118620209, 0.0209354032, 0.0059001022, 0.0190534145, 0.00921075325, -0.0158526599, -0.0126931183, 0.0277627613, 0.0428873524, 0.0103303296, -0.0272819623, -0.00730815902, 0.00160209404, 0.0090459073, 0.0101654846, -0.011065267, -0.0137234041, -0.0105844671, 0.0115185929, 0.015646603, -0.0118345469, -0.0130022038, -0.0088123763, 0.0268561095, -0.00621262193, 0.0133593697, 0.0490141176, -0.0364309, -0.015220752, 0.0124252439, 0.0123428209, -0.00852389634, -0.00835905, 0.000164631041, -0.0117727295, 0.0145613691, -0.00724634202, 0.00844147336, -0.007452399, 0.0195204765, -0.0405245647, 0.0101448782, -0.00348236528, 0.00328317657, 0.0192594714, 0.0126656443, -0.0126587758, 0.0203447063, -0.0289029442, 0.00175835402, -0.0243147388, -0.00071690703, -0.0160724539, -0.0137852207, 0.0287106242, 0.0143827861, 0.0212650932, 0.00932751875, 0.0659932271, 0.00789198745, -0.0163746718, 0.00269763102, -0.00385326799, -0.0232020319, -0.00745926751, -0.00480456511, 0.0203996543, -0.010831736, 0.0238614138, 0.00266672252, 0.0259769335, -0.00116078835, 0.0115048559, 0.0254274476, -0.000837536296, 0.011216376, -0.022693757, 0.022583859, -0.00885358732, 0.0191633124, -0.00182703976, 0.00304621109, 0.00622292468, -0.00558758201, -0.00349953654, -0.00358195952, -0.0277490243, 0.0276253894, 0.00708149606, -0.0188885685, -0.0152757009, 0.00494193658, -0.0172813237, 0.00853763334, -0.0193693694, 0.0022666282, -0.00516859908, -0.00621949043, 0.0160312429, 0.00399063947, -0.00311661395, 0.00832470693, 0.00439931918, -0.0424752384, -0.0308536179, -0.0236828309, -0.0255785566, 0.00504839933, 0.0285732523, -0.0183253456, -0.00342226517, 0.000264010683, -0.00947862677, 0.00246925117, -0.00622979319, -0.0108523415, -0.0188061465, -0.0199875403, -0.0110721355, 0.000198115333, 0.0410465784, -0.000424134225, 0.00195239112, 0.0193968434, -0.0192319974, 0.0299194921, 0.0196166374, 0.0104883071, -0.00796067342, -0.0191495735, 0.00400781073, -0.00838652439, 0.00652514212, 0.0173774827, -0.0025688454, 0.011367484, 0.00700937631, -0.0212925691, -0.0326119736, -0.0213612542, -0.00875055883, -0.00514112506, -0.0173087977, -0.0157839749, -0.021883266, -0.00168022409, -0.0104814386, -0.00768593047, -0.0218008421, -0.00643928489, -0.0197540093, -0.0132769467, -0.0175423287, 0.0127343293, -0.00222713407, 0.0135722952, -0.0214024652, 0.0253038127, 0.00598939322, 0.022927288, 0.0123771643, -0.00505526783, -0.00598252472, -0.00197986537, 0.0119375754, 0.00613706792, 0.00796067342, 0.0121092899, 0.0206057113, 0.0332438797, -0.00670715887, -0.0223915391, -0.00508961082, 0.0183253456, -0.022982236, -0.0295073781, -0.000753825589, 0.0162510369, -0.0347824395, -0.0290403161, -0.00932751875, -0.022089323, 0.0109759755, -0.0245070588, 0.00849642139, 0.0285732523, 0.0188748315, -0.00964347273, -0.00078258774, 0.0102341697, 0.00789198745, -0.00875055883, -0.00937559828, -0.015522969, -0.00129558414, -0.00619888492, 0.015646603, -0.0181742366, 0.011683438, 0.0456073061, 0.014492684, -0.0182154495, -0.00489042234, -0.00894287881, -0.0128442263, 0.0214162022, 0.0337109454, -0.0114705125, -0.0185726136, -0.0034171138, -0.00808430742, -0.000700164877, 0.0245757457, 0.00860631838, -0.0101448782, -0.014781164, -0.0199325923, -0.00467406213, 0.0205507632, 0.022515174, -0.00366781652, -0.0164296199, -0.0376122929, 0.00551889651, -0.00943054724, -0.0279825553, -0.0254686587, 4.31163789e-05, 0.011216376, 0.0119993929, 0.0104883071, -0.0124252439, -0.00430659344, 0.0147674261, -0.0160999298, -0.00131447264, 0.0233531389, -0.00449547917, -0.022089323, -0.0197540093, -0.0186275635, 0.000683852064, -0.0301118121, -0.00397346821, -0.0168005228, -0.0156053919, 0.0232844539, 0.0183390826, 0.00668311911, 0.0110171866, -0.000967609871, 0.00628474215, -0.0197814833, 0.0127137238, 0.0109485015, -0.0174736436, 0.00935499277, 0.00908025, -0.00210521673, -0.0026169254, -0.0265813675, -0.000335916033, -0.00802935846, -0.0143003641, -0.0169378947, -0.0128510958, -0.00669685612, -0.0232569799, 0.0188061465, 0.0118276784, -0.0244246367, 0.000273454963, -0.00676554209, -0.00892227329, 0.00877116434, -0.0082834959, -0.00240056543, 0.0247818027, 0.0189160425, -0.0160999298, 0.0047908281, -0.0200562254, -0.0399476066, -0.0318426937, 0.0113056665, -0.00664877612, -0.00553606777, -0.0196303744, -0.0414861664, 0.00878490135, 0.0365957431, -0.00921762176, -0.00124492834, 0.0330515616, 0.0101448782, -0.0245345328, -0.0260730926, -0.00386357098, 0.0128236208, 0.0337933674, -0.037722189, 0.011312536, 0.0118139414, -0.00023159961, 0.00109897123, -9.19207887e-05, -0.0157977119, 0.0272819623, 0.00315954234, -0.029754648, 0.0218970031, 0.00221511396, -0.0157839749, 0.00666594738, -0.00118482835, 0.0205507632, -0.0131601812, -0.000788168458, 0.0228448659, -0.0289578922, -0.00573525624, -0.0141629921, 0.00615080493, 0.0283534583, -0.000872308447, 0.00664877612, -0.00140462269, 0.0104539646, 0.0022597597, 0.0232981909, 0.00448174216, 0.0125969583, 0.00372276525, 0.0101586161, -0.00395629648, -0.00687887333, 0.00266672252, -0.00960226171, -0.00882611331, -0.0011453341, -0.0135929007, -0.0034480223, -0.0242597908, -0.0132151293, -0.00395286223, 0.0213063061, 0.00492819911, -0.0129129123, -0.00649766764, 0.0383541, 0.00629847916, -0.0165807288, 0.030249184, 0.0314855278, -0.0113743525, 0.00229925406, -0.0213612542, 0.0161686148, -0.00394942798, 0.0181055516, -0.0379694588, 0.0324746, 0.00402498245, -0.000203910691, 0.00722573604, -0.0278863963, 0.00275086239, -0.0056287935, -0.0344252735, -0.0175972767, -0.0154680209, -0.0211689342, 0.0209216662, 0.0042550792, 0.0100761931, 0.00225117407, -0.00753482198, -0.0101929586, 0.0281886123, -0.0170065798, -0.014959746, 0.00169825403, -0.000755542773, -0.00357509102, 0.00411770819, -0.0104608331, 0.00414861646, -0.0157427639, 0.0346450694, -0.0393156968, 0.0123496894, 0.014794901, -0.029370008, -0.00503809657, -0.00984266121, 0.0289578922, 0.0373924971, -0.00891540479, -0.0418982804, 0.0112507185, -0.0165257808, 0.00966407824, -0.0245757457, -0.000872737728, -0.0155916549, 0.00125523121, -0.022776179, 0.038628839, 0.00252248254, -0.0348373875, 0.0296447501, 0.0210315622, 0.00350297103, 0.0215261, 0.00870934688, -0.00760350749, 0.00478739338, 0.0337933674, 0.0206606593, 0.00814612489, -0.010941633, 0.0166906267, -0.0127480663, -0.0169791058, 0.0101105357, 0.0237927288, 0.031375628, 0.00716391904, 0.0100487182, -0.0336834677, -0.0190122034, 0.00535405055, -0.00582798198, -0.000516001368, 0.00831097, 0.0051308223, -0.0133112893, -0.0129953353, -0.0136135062, -0.0232707169, 0.0385464169, -0.0248779617, -0.0258945115, -0.00325055094, -0.00406275922, 0.0529704168, -0.0334636755, -0.00789198745, 0.00620918768, 0.0106943641, 0.0164983068, 0.0128991753, 0.00364377652, -0.00823541638, -0.0124046383, 0.00109124416, 0.0115391985, -0.0282985102, 0.0184627175, 0.00523041654, -0.00686513633, 0.00433750218, 0.00357165653, 0.00474618236, -0.015440546, -0.00761037599, 0.00643241638, -0.00852389634, -0.00137714832, 0.0238476768, -0.0351121314, -0.0200424884, 0.0196990594, -0.0104333581, 0.03002939, -0.0185451396, 0.0111408215, -0.00394599373, 0.00117023266, -0.0528605171, -0.0179956537, 0.0121024214, -0.0253038127, 0.0169653688, 0.0234493, 0.00508961082, -0.00128957408, 0.0179407056, -0.00337418518, 0.0136959292, -0.00460881088, -0.00275429664, 0.0135036092, -0.0141355181, -0.00062933279, -0.0182291865, -0.00941681, -0.00116508128, -0.0247268528, 0.0292326361, 0.00142265263, -0.030249184, 0.0134555297, 0.0128785698, -0.00336044817, 0.0125694843, 0.00703341607, 0.0157702379, 0.00617827894, 0.00128356414, 0.00227693119, -0.0191083625, 0.00972589571, 0.0127892783, -0.0271858014, -0.00437527942, 0.00694412459, -0.00933438726, 0.00665221037, 0.00196441123, -0.00438901642, -0.00094872131, 0.015880134, 0.0192182604, 0.00119513122, -0.015220752, 0.00721199904, 0.00258601666, -0.00297065661, -0.037722189, -0.00437871367, 0.00689604459, 0.00601343345, -0.00510678208, 0.0140462266, -0.00937559828, 0.00321792532, 0.0159900319, 0.00129472557, 0.00418982795, 0.0379145071, -0.00112386979, -0.00446113665, 0.0432445183, 0.00637746789, 0.0171989, -0.00529223355, 0.0135310842, -0.00201935973, -0.000630191353, 0.0197540093, 0.0275017563, 0.0158389229, -0.0233668759, 0.00698533608, -0.00115306128, 0.000547339208, -0.00765158748, -0.00434780493, -0.00590697071, -0.0144652091, -0.00850329, 0.0112095065, 0.0118345469, 0.00359226228, -0.0117383869, 0.0114018265, -0.0038360965, -0.00767906196, -0.00343943667, -0.015522969, 0.0238202028, -0.00202794536, -3.87162e-05, -0.00739745051, -0.0184764545, 0.00890166685, -0.0119238384, 0.00368498801, -0.00578333624, 0.0215398371, 0.0219244771, -0.0082766274, -0.015536706, 0.0106188096, 0.00857884437, -0.0168005228, 0.00332267093, -0.00726694753, -0.000935842749, 0.000907509879, -0.0138813807, -0.0268148985, -0.00833157636, 0.00861318689, -0.0233943518, 0.0344527476, -0.00967781618, 0.0026547024, -0.0275017563, -0.00988387316, 0.0262516756, -0.011491118, -0.0232981909, -0.00348923379, 0.0160999298, -0.00567000499, 0.00504496507, 0.00107922417, 0.0134417927, -0.00444053067, 0.0156191289, -0.00329176243, 0.00984266121, -0.00926570129, 0.00064178207, -0.011422433, -0.0181467626, 0.0162647739, 0.00118225266, 0.000235248532, 0.00267530815, -0.0075554275, 0.0104814386, 0.00899782684, -0.0159625579, 0.00230097119, -0.000647792069, -0.00691665057, -0.0258395616, 0.0164708328, 0.0125214038, -0.000898065569, -0.00954731274, -0.00808430742, 0.0205370262, -0.0217046831, -0.00418639369, 0.00125007983, -0.0161548778, 0.0101242727, 0.000761982054, 0.0138264326, -0.00887419283, 0.0104539646, 0.0255922936, -0.0186000895, -0.00767906196, -0.00589666795, -0.0024606653, -0.022968499, -0.00495567359, -0.0175423287, 0.00326600531, -0.0176384896, 0.0198913794, -0.0194105804, -0.015413072, -0.0165532548, -0.0387387387, 0.0030908566, -0.00608211895, -0.00156689261, -0.0211002491, -0.014685004, -0.00242803968, -0.0085170269, -0.0142454151, -0.00132305839, -0.0272682253, -0.00114705123, -0.0180918146, -0.03022171, 0.030276658, 0.0103715416, -0.00714331307, 0.00181673688, 0.0200562254, -0.0112919295, 0.00644271914, -0.0239300989, 0.00768593047, 0.0168417338, 0.0105089126, 0.00813238695, 0.0110996095, -0.00348236528, -0.0002725964, -0.0137577467, -0.00409366796, -0.0219656881, -0.0134143177, -0.000792461331, -0.0164433569, -0.0411015265, 0.0067861476, 0.00576616498, -0.0124321124, -0.0119513124, 0.00045074994, -0.00694755884, 0.00411427347, -0.000386142434, -0.0137371412, -0.0136959292, -0.0130159408, -0.00178926263, -8.92109256e-06, 0.015124592, -0.0190122034, -0.000108931235, -0.0411564745, 0.0143278381, -0.0170477927, -0.0218970031, 0.00176178827, 0.00392538821, -0.0113056665, -0.00726694753, 0.00112043554, 0.0237652529, 0.0104608331, 0.0115941465, 0.00225289119, 0.0066693821, -0.0109965811, -0.015179541, 0.00578333624, -0.001878554, 0.0141629921, 0.00586232496, 0.0027869225, 0.000886904134, 0.000682993501, 0.00508617656, -0.011271324, -0.0191633124, 0.0061336332, -0.00417952519, 0.014712478, 0.00241773669, -0.0177209117, -0.00864066184, -0.00548111927, -0.00868187286, 0.005573845, 0.00134709838, 0.00139431981, 0.015193278, 0.00770653598, -0.00758290198, 0.00362660526, 0.00347377942, -0.0120474724, 0.00347377942, 0.00274399389, 0.0191633124, 0.011408696, 0.0239438359, 0.0129197808, -0.00745926751, -0.0215947852, -0.00409023371, -0.0349747613, -0.0137234041, -0.0140668321, -0.00446113665, 0.00817359891, 0.0107905241, -0.0142454151, -0.0133112893, 0.00174289977, -0.000381420308, -0.00637746789, 0.0201798603, 0.00709523307, 0.0106668901, -0.00831097, 0.0142866261, 0.0140668321, 0.00862005632, 0.0185863525, -0.00386013649, -0.0299194921, -0.0184352435, -0.00270793401, -0.0258945115, 0.00820794143, 0.00197471399, 0.0130228093, -0.00181673688, 0.00776148448, -5.92615424e-06, 0.0158526599, -0.0192457344, -0.0264027845, 0.000456759939, 0.00114361697, 0.00260662241, 0.00892227329, 0.00963660423, 0.0248916987, -0.0104402266, -0.00927257, 0.015687814, -0.0163746718, 0.0108042611, 0.0195204765, -0.0108523415, -0.0120199984, -0.000451608503, 0.0138401696, -0.01114769, 0.015124592, -0.00366094802, -0.00431689667, 0.0114293015, -0.0102410382, -0.0272407494, -0.0177209117, 0.0109897126, 0.00654574763, 0.0242048427, -0.0254137106, 0.00136512832, -0.00579363899, -0.00522011332, 0.00151709549, 0.0192594714, 0.0106943641, 0.022776179, 0.0044714394, -0.010735576, 0.011669701, 0.00774774747, -0.0032059052, -0.0293425322, -0.0175698027, 0.0126999868, -0.0016081041, -0.0248642247, 0.0137234041, -0.00799501594, 0.0172126368, 0.00348923379, 0.00306509947, -0.0161823519, 0.00207430823, -0.0180780776, 0.03041403, 0.014698741, 0.00137371407, 0.0262104645, -0.00829036441, 0.0263753105, 0.00148790411, -0.000714760623, -0.00210865121, -0.00703341607, -0.00693382183, -0.0163197238, -0.0341230594, 0.0193418935, -0.00205713673, 0.0259082485, 0.000631908479, 0.0113331415, -0.00794693641, 0.0183253456, -0.00428255368, 0.0129129123, -9.83064165e-05, 0.00911459327, -0.00934812427, -0.00618514791, 0.0123565579, 0.0257708766, -0.00797441, 0.00732876454, 0.00974650122, 0.00788511895, 0.0132769467, 0.0269110594, -0.0236828309, -0.0120474724, -0.0138607752, 0.00403528521, -0.0212376192, 0.00114705123, -0.0392882228, -0.00229581958, 0.00807743892, -0.00443022791, -0.00355448527, 0.011765861, 0.0024778368, -0.00502092484, -0.00431002816, 0.0273369104, 0.00611646194, 0.0176247526, 0.0110996095, -0.0100899301, 0.0163334608, -0.011491118, 0.0184215065, -0.00369185652, -0.015083381, 0.00159951835, -0.00202451111, -0.0130022038, 0.0102959871, -0.00829036441, -0.00382922799, -0.00726694753, 0.0139363296, -0.0216222592, 0.00471870787, 0.00257914816, -0.0210315622, -0.0044714394, 0.0116971759, 0.00910772476, -0.030661298, -0.0118002044, 0.000465345656, -0.0105913356, 0.0156053919, 0.0152619639, 0.0331889316, 0.0130159408, 0.0131807867, -0.0101242727, 0.0283534583, 0.00603403896, 0.00364377652, -0.0160724539, -0.0214024652, 0.00741118751, 0.00575586222, 0.00912833, -0.0160861928, -0.00721886754, 0.0185863525, -0.00339135667, 0.00688230759, 0.0326943956, -0.00352014229, 0.0163197238, 0.0334911495, -0.00572151924, -0.00993195269, -0.011092741, 0.0010569013, 0.00192491687, -0.0172813237, -0.00574899325, -0.0105569931, -0.00783017, -0.00662817061, -0.015220752, 0.0204958133, -0.0147536891, 0.00493850233, 0.0016390126, 0.00297580822, 0.000362102437, 0.0173225347, -0.00337246805, -0.00257914816, 0.0270072185, 0.0198639054, 0.015330649, 0.0138813807, 0.0105707301, -0.014588844, 0.0129953353, -0.0281886123, 0.011175164, 0.00493850233, -0.00622635894, -0.0230783969, 0.0155092319, 0.00311317947, 0.0125214038, -0.00822167844, 0.0121092899, 0.0109210266, -0.0128923068, 0.00862692483, 0.0033381253, 0.00868187286, -0.00057266705, 0.00308398809, -0.00205541961, -0.00593444472, 0.0194380544, -0.0113056665, -0.0138401696, 0.00111099123, -0.00231127394, 0.0323097557, 0.0123565579, -0.0106325466, 0.00449547917, -0.0242323168, -0.0064049419, -0.0185451396, 0.0235179849, 0.0259906705, 0.0222129561, -0.0244521108, -0.00349781942, -0.010845473, -0.00956791826, 0.0173637457, 0.011683438, -0.00879863836, -0.00774087897, -0.0104264896, 0.029754648, 0.0155916549, 0.000363819592, 0.015330649, 0.0199738033, 0.0196303744, -0.0175835397, -0.00302045397, -0.00571465073, -0.0092863068, -0.00315267383, 0.00776835298, 0.0160861928, -0.00267530815, -0.0118620209, 0.00586232496, 0.0184627175, 0.011133953, -0.0109622385, 0.0056906105, -0.0295348521, 0.00257056253, 0.00251217955, 0.00664190762, 0.00388761098, -0.0102204327, -0.00335357944, -0.014987221, -0.0182841346, -0.0160037689, -0.00360256527, -0.0179407056, -0.0158114489, -0.0215261, 0.0133181578, -0.0282710362, 0.0192869455, -0.0264439955, 0.0178857576, -0.0176110137, -0.00652514212, -0.0126175638, -0.00384296523, -0.00277318526, -0.0181192886, 0.00835218187, 0.00556010799, -0.00534718204, 0.00903903879, 0.0123909013, -0.00251561403, 0.0195479523, 0.0134761352, -0.0281611383, -0.022336591, 0.00773401046, 7.3085881e-05, 0.0187099855, -0.0185314026, -0.0251389686, 0.0155092319, 0.00445770239, -0.00339479093, -0.0121024214, 0.00609929068, -0.0196715854, -0.00943054724, -0.0318976417, -0.0145338951, 0.0105775986, -0.011587278, 0.0047908281, 0.00244005956, -0.00962286722, 0.00384639949, 0.0037880165, -0.00873682182, -0.000910085568, -0.0119513124, 0.00223400258, -0.0129815983, 0.000289553165, 0.00671059312, -0.0105707301, -0.0176934376, 0.0100212442, -0.00887419283, -0.000985639868, -0.00398033671, -0.00346347666, -0.0110103181, 0.0168142598, -0.00326085393, 0.0198089574, 0.00280409399, -0.0109141581, 0.0140943062, -0.00166734552, -0.0047976966, -0.0104677016, -0.0222266931, 0.022899814, -0.00644615339, -0.0164158829, -0.00472901063, 0.00180299976, -0.0385189429, 0.0102822501, 0.00853076484, -0.0121024214, -0.0126725128, 0.00583485048, 0.0246993788, 0.00105604273, -0.0316503718, -0.0130365463, 0.00568717625, 0.0107905241, 0.0196578484, 0.00403528521, 0.00304792821, 0.00775461597, -0.0117589924, -0.0189160425, 0.015687814, -0.000100989448, 0.00890166685, 0.0160037689, -0.00961599872, 0.00772714196, -0.0111820325, -0.022336591, -0.0310459379, 0.014588844, -0.00784390699, -0.00869561, 0.0470359698, -0.0186413, -0.000569662079, -0.0165395178, 0.00416235346, 0.00467406213, -0.00543303927, 0.00142179406, -0.00179097976, 0.00129901839, -0.0100761931, -0.00325055094, 0.0147399521, 0.03002939, 0.0243284758, -0.0108523415, 0.00506557059, 0.0158114489, 0.00632595317, -0.000725922058, -0.0235042479, 0.0106600216, -0.0207705572, -0.00659382762, -0.011587278, -0.0123428209, 0.00320247095, 0.00589666795, -0.0381343029, 0.002865911, 0.00967781618, -0.00130502833, 0.0242185798, 0.00242460542, -0.00345317367, -0.0133250263, -0.0081529934, -0.0197677463, -0.00956105, -0.0101586161, 0.0139294611, 0.0197540093, 0.00123720127, 0.00397346821, -0.0314855278, -0.0138058262, -0.00429972494, -0.00436841091, -0.00429629069, 0.00796067342, -0.0118208099, -0.0105844671, -0.0159900319, 0.0175011177, -0.015632866, -0.0170890037, 0.00241773669, 0.0126862498, -0.0171439517, -0.00719826203, -0.00584515324, 0.0128373578, 0.0129472557, 0.000294704601, -0.0143415751, -0.0145338951, -0.0033690338, 0.0113606155, -0.00296893949, -0.00933438726, 0.0080430964, -2.32619168e-05, -0.0190946255, -0.0018236055, 0.000187812475, 0.00390821649, -0.00437527942, 0.00499001658, 0.0148635861, -0.00632938789, 0.00175577833, 0.0118551524, 0.00155057979, 0.0128510958, 0.00166476972, -0.00710897055, 0.0115185929, 0.00514455931, 0.00890166685, 0.00550172478, -0.0288754702, 0.00288995099, 0.0188061465, -0.00339135667, 0.0214299392, 0.0100349812, 0.0136272442, -0.0181467626, -0.0015960841, 0.0194105804, 0.0018596655, -0.0200150143, -0.0172401126, 0.015399335, 0.00699220458, 0.00866126735, 0.00285045663, 0.0120062614, -0.00587606197, 0.00945115276, 0.0157427639, -0.0242185798, -0.0126106953, 0.00879177, -0.00293287961, 0.0326943956, 0.00535405055, -0.0215947852, 0.0106806271, 0.0120406039, -0.00930691324, -0.014712478, -0.0124183754, 0.0117315184, 0.0243559517, -0.00411083922, 0.0105295181, -0.0176659636, -0.00687200483, -0.00581424497, -0.00915580429, 0.0164021458, -0.00548455352, 0.00160638697, -0.0292601101, -0.0139294611, 0.00252591679, 0.0159900319, 0.0164021458, 0.0130228093, 0.0031749967, -0.0183253456, 0.0132426042, 0.0143965241, 0.00592070771, -0.00431346241, -0.00454699341, -0.0218008421, 0.0191770494, -0.0122260554, 0.00735623902, 0.00891540479, 0.00149563118, -0.0226250719, 0.000149176762, -0.00275773113, 0.011216376, -0.00429972494, 0.0271995384, 0.0118276784, 0.0107836556, -0.0164845698, -0.0245207958, -0.00171971833, 0.00227006245, -0.00765158748, 0.015055906, 0.000582540641, 0.00176522264, 0.0163884088, 0.0131189693, 0.00352357654, 0.00842086691, -0.00417265669, -0.0109347645, -0.00983579271, -0.00150078267, 0.000159157658, -0.000564939925, 0.0143003641, -0.00227693119, 0.00183219113, -0.000238253531, 0.0167455748, 0.00434780493, -0.00790572446, -0.000776148459, 0.0157290269, -0.00340681104, -0.00297580822, 0.0214162022, -0.0053025363, -0.0066693821, 0.0140256211, 0.015165804, -0.00214642822, 0.00244692829, 0.00157376123, 0.0288754702, 0.0023215767, -0.00767906196, -0.00676897634, -0.0116284899, 0.00593101047, 0.00693038758, 0.0177346487, -0.00889479835, -0.0188336205, -0.0206881333, 0.00358539377, 0.00354418228, 0.0109485015, 0.00954731274, -0.00838652439, 0.00723260455, 0.0101105357, -0.0268698484, 0.0029740911, 0.0297271721, 0.00417952519, 0.00695442734, -0.00222369959, 0.00393225672, 0.0117933359, 0.0124046383, 0.00370215951, 0.0242597908, 0.00947175827, 0.00582454773, -0.00927257, 0.00903217, -0.0101723531, 0.00355791952, -0.00608555321, 0.0332988277, -0.00519263931, 0.00491789635, 0.0157839749, 0.000180943898, -0.015014695, -0.00267015677, 0.0121985814, 0.0181879736, 0.0147674261, 0.00876429584, 0.00780269597, -0.0169378947, 0.0252488647, 0.0130571527, 0.00538839353, 5.63437425e-05, 0.0106119411, 0.015124592, -0.0154680209, -0.0102685131, 0.00891540479, 0.00220137672, -0.0113056665, 0.00653544487, -0.00799501594, -0.00410740497, -0.0137165347, -0.0213612542, -0.0168142598, 0.00872995332, 0.0099388212, -0.037255127, -0.0236416198, 0.00633282214, -0.00501749059, -0.00612333044, -0.0258258246, 0.0208804533, -0.0237377789, -0.00624696491, 0.000959882746, 0.022982236, 0.0138951177, -0.0394805446, -0.029864544, 0.00528879929, 0.0311833099, 0.00394255947, 0.0135585582, -0.00582454773, -0.00347721367, -0.0117315184, 0.00777522195, 0.00629504491, -0.0235866718, 0.00779582746, -0.00332095381, -0.0169241577, -0.0470634438, -0.00991821568, 0.00114189985, -0.00998003315, -0.00318701658, 0.014849849, 0.00405932497, 0.00191633112, -0.00654918188, 0.0281886123, 0.0321449079, 0.0226388089, -0.0105226496, 0.00835905, 0.00336044817, 0.0244521108, -0.014698741, -0.00471870787, 0.0316778459, -0.014698741, 0.0202897564, 0.00415548496, 0.0110858725, -0.00648049638, 0.011573541, 0.0213200431, -0.0090459073, -0.0200837, -0.00855823886, -0.0183665566, 0.0116078844, -0.00643241638, 0.0138951177, -0.00834531337, -0.00807057, -0.00161153835, 0.0112781925, -0.000716477749, 0.0171439517, -0.00966407824, -0.0155916549, 0.0139775407, 0.00630878191, -0.0125351408, -0.00255510816, 0.0188473575, 0.0176797, -0.00773401046, 0.00646332465, 0.00438901642, 0.000330335315, 0.00518233655, -0.00875742733, 0.00383266225, -0.0263753105, 0.0124801928, -0.0140530951, 0.00161668973, -0.000821223424, -0.0175972767, -0.0182017125, -0.00285389111, 0.0028968195, -0.00609929068, -0.00217905408, 0.0264165215, -0.0210727733, 0.00461911364, 0.0133662382, 0.0328042917, -0.0221717451, -0.0117109129, 0.00656291889, 0.0207705572, -0.00771340448, 0.00679988461, -0.00126209983, 0.00253450242, -0.00141921837, 0.00413487945, 0.0251527056, 0.00167850684, -0.00966407824, 0.0134898722, 0.00314752245, -0.00194895687, -0.0169104207, -0.00380862225, 0.0184764545, 0.00520294206, -0.00130588701, -0.015303175, -0.00512738805, -0.0374749191, -0.000710897031, 0.00425851345, 0.00988387316, 0.00429285644, -0.00313035096, 0.0209216662, 0.000750820618, -0.00422417093, 0.0133456327, -0.00208632834, 0.0159762949, 0.00294489949, -0.0109622385, 0.00660069613, -0.0134143177, -0.000730214873, -0.0102341697, -0.0057386905, -0.0107905241, 0.000526304182, 0.0384639949, 0.00483203912, 0.0173225347, -0.0100487182, -0.00174289977, 0.00784390699, 0.00412457669, -0.00574899325, 0.00735623902, -0.00222541671, 0.00639120489, 0.00110583985, -0.00687543908, -0.0119375754, -0.00919014681, -0.00976023823, 0.0114293015, 0.00848955289, 0.00609242218, -0.011120216, -0.0260730926, -0.0279001333, 0.00497284485, 0.00393225672, -0.00321620819, -0.0239850488, 0.00519607356, 0.015055906, 0.00877803285, -0.0168829467, -0.000906651316, -0.0085170269, -0.0178445466, 0.00831783842, 0.0068410961, -0.0118551524, -0.00123720127, 0.0158938728, -0.0209354032, 0.015220752, -0.00336559955, 0.0169516318, 0.00695786206, -0.015207015, -0.000432505301, -0.00760350749, 0.0159076098, 0.0176934376, -0.014698741, 0.0256747156, -0.00503466232, 0.0253725, -0.0170065798, -0.0125420094, -0.0117246499, -0.0144377351, 0.00908711832, 0.0283809323, 0.0112781925, 0.0209766142, 0.0205645, 0.0208255053, -0.0135654267, -0.0103303296, 0.0140943062, 0.0202348083, -0.00162098266, -0.00747987302, -0.0104883071, 0.0155641809, 0.000778294867, -0.0236690938, -0.00984953, 0.00687200483, 0.000565798488, -0.0184215065, 0.0429697782, 0.0107218381, -0.0089291418, -0.0119375754, 0.0245207958, -0.00114790979, -0.0018596655, 0.0265676305, -0.0193006825, -0.0152619639, -0.00421043346, 0.0132494727, -0.00891540479, -0.00724634202, -0.0128510958, 0.00733563304, 0.0118620209, 0.00618858216, 0.011037793, -0.030194236, -0.00901843328, -0.00717078755, -0.0135448212, -0.0347549655, 0.0117933359, 0.00375367375, -0.00907338131, -0.0177071746, -0.00115821266, 0.00575586222, 0.00173345546, -0.0200012773, 0.0301392879, -0.0183665566, 0.015536706, 0.0016965369, 0.014685004, 0.0323921777, 0.00238339393, -0.0129747298, 0.0045882049, -0.00256712828, 0.0271858014, -0.0206606593, 0.00116851553, 0.0118963644, 0.00177380827, 0.0349472873, -0.00816673, 0.0135585582, 0.014973484, 0.007624113, -0.00785764493, 0.00980831869, -0.00494537083, 0.00685139885, 0.0162785128, -0.0242460538, 0.0105363866, -0.00505870208, 0.00297065661, -0.0123840328, -0.00812551845, -0.0218970031, 0.011092741, 0.0233531389, 0.000480799936, 0.0201249123, -0.00687543908, 0.0121092899, -0.015138329, 0.0122603979, 0.00991821568, 0.0276666023, 0.00846894737, -0.00276975101, 0.0274880193, -0.00491102785, -0.000516001368, 0.0245894827, -0.00635686191, -0.0068479646, -0.00579020474, -0.00947175827, -0.00386013649, -0.0160999298, -0.0110446615, 0.00767906196, 0.00381549099, 0.00183219113, 0.00349438516, -0.0245757457, -0.00166391116, -0.0107973926, 0.011394958, -0.0127343293, -0.022693757, -0.0165532548, -0.010749313, 0.00584171899, -0.0095953932, -0.0212513562, -0.00447830791, -0.0191358365, -0.0276116524, 0.00219965959, -0.00138401694, -0.00614393642, 0.00637746789, 0.0201386493, 0.0249466486, -0.00567343924, -0.00157290266, 0.0135997692, -0.00975337, -0.00754855899, 0.00900469627, -0.00345660816, 0.0103097241, -0.0015909326, -0.0186962485, 0.011463644, 0.00595161645, 0.00877116434, 0.00465689087, 0.00484921085, -0.0354143493, -0.0281336643, 0.00345660816, 0.00573182199, -0.00283843675, -0.0135310842, 0.00951983873, -0.0040284167, 0.00876429584, -0.00564939901, -0.0167455748, 0.0243834257, -0.015248226, -0.030496452, -0.00637746789, -0.00470153661, -0.00883985, -0.0184627175, 0.00153512554, -0.00289166812, -0.00353044528, -0.0217596311, -0.0199875403, 0.0130022038, -0.0160724539, -0.00780269597, -0.0328042917, -0.0220343731, 0.0582454763, -0.0110171866, 0.0100624561, 0.00411083922, 0.00527849654, -0.0106600216, -0.00465345662, 0.0125763528, -0.0166356768, 0.0285457782, 0.00411770819, 0.00716391904, -0.00648736488, -0.0209628772, 0.022968499, 0.0122397924, -0.000648650632, -0.0190122034, -0.0062813079, -0.0180918146, -0.00730129052, 0.00127411983, -0.00109210273, -0.0131189693, 0.0126381693, 0.00811865, 0.00417265669, -0.0245620087, -0.0176247526, 0.0551958308, 0.0133799752, 0.0122810043, -0.015028432, -0.00165274972, -0.022899814, -0.0206606593, 0.0311008878, -0.00557727925, 0.0281886123, -0.0312107839, 0.00689604459, 0.00936873, -0.00738371303, -0.0234080888, -0.00404215371, -0.0188198835, 0.0184764545, 0.00311661395, -0.0095885247, -0.00189229113, -0.00482173637, -0.00675867312, -0.0234493, 0.0134623982, -0.00862005632, -0.0191083625, -0.00480799936, 5.23460185e-05, 0.000424563506, 0.00656635314, 0.0062813079, -0.00472901063, 0.00111184979, -0.00191117974, 0.0102822501, 0.0457996279, -0.00696129631, 0.00821481, -0.0126381693, -0.000969327, 0.0226250719, 0.00604434218, -0.00430315919, -0.0022116797, -2.48180768e-05, 0.00861318689, 0.014836112, 0.022322854, -0.00111184979, 0.0123496894, -0.0384914689, 0.0114705125, 0.0143141011, 0.0236690938, -0.00100109412, 0.00475991936, 0.00350812241, -0.0155504439, 0.00912146177, 0.0174873807, 0.0168966837, -0.0102547761, -0.00940307323, 0.0119925244, -0.00992508419, -0.0185726136, 0.00730815902, -0.0060237362, -0.0105157811, -0.00472557638, -0.00681018736, 0.0124733243, -0.00123033265, -0.0041383137, -0.00565626798, -0.0121642379, 0.0261967275, -0.00632595317, -0.0135242147, -0.0205232892, -0.00890166685, -0.0201523863, -0.01105153, 0.00975337, -0.00809117593, 0.0104058841, -0.00841399841, 0.00395629648, 0.015124592, -0.0045882049, 0.0134555297, -0.0166631527, 0.0242872648, -0.00973963272, 0.011175164, 0.00376397651, -0.00392882247, 0.0177895967, 0.00420699921, -0.0155504439, -0.0143278381, -0.0171851628, 0.0235729329, 0.00830410141, 0.00967781618, 0.00693038758, 0.00798127893, 0.0100075072, -0.0138813807, 0.00142866268, -0.0121573694, 0.0141904661, 0.0388211608, 0.0328317657, 0.00338105368, 7.13687405e-05, 0.00635342766, -0.00373993651, -0.00344630517, 0.00706089055, 0.00161583116, -0.00529223355, 0.0183940325, 0.00947175827, 0.0237652529, -0.00108008273, 0.0264439955, -0.0191358365, -0.00740431901, 0.0196166374, 0.023380613, -0.00231814245, -0.0125626158, 0.00841399841, -0.00271480251, -0.0392882228, -0.0124252439, -0.0139294611, 0.00390478224, -0.00658009062, 0.00997316465, 0.0110034496, -0.00125007983, 0.00116078835, -0.0286007281, -0.00386700523, 0.000252419966, 0.0319800638, 0.0102822501, -0.00608555321, 0.0203859173, 0.00849642139, -0.0156053919, 0.0110583985, -0.0134692667, -0.015207015, -0.0276253894, 0.0196715854, -0.000778294867, -0.0118894959, 0.00567343924, 0.0277215503, -0.00661099888, 0.00769966748, -0.0138882492, -0.00732189603, -0.00111700129, 0.00930004474, -0.00449204491, 0.022762442, -0.000402884587, -0.0118894959, 0.00576273073, 0.0046431534, 0.00146729837, -0.00332438806, 0.0126450378, -0.0107424445, -0.00103200274, -0.0239713117, 0.00483203912, 0.0215673111, 0.0442610681, -0.0289029442, -0.014877324, 0.00845521, 0.00824915338, 0.0239575729, 0.00368155376, -0.0191633124, 0.0159762949, -0.0279001333, 0.0157977119, 0.00259460253, -0.00199016836, 0.0117864665, -0.0115254615, -0.0121985814, 0.00557041075, 0.0189572535, -0.00782330148, 0.014726215, -0.00957478676, -0.00862692483, 0.0067861476, 0.00547081651, -0.00542273652, 0.00942367874, -0.036815539, -0.0163197238]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.